diff --git a/README.md b/README.md index 60b0312..c50d72d 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ Welcome to C3Box, a CLIP-based continual learning toolbox torch.Tensor: + + cos_theta = torch.matmul(x, mu.reshape(-1)) # Shape: (N,) + + cos_theta = torch.clamp(cos_theta, -1.0 + 1e-6, 1.0 - 1e-6) + + theta = torch.acos(cos_theta) # Shape: (N,) + sin_theta = torch.sqrt(1 - cos_theta ** 2) # shape: (N,) + + coeff = theta / (sin_theta + 1e-6) # shape: (N,) + + mask_stable = theta > 1e-4 + scaling = torch.ones_like(coeff) # shape: (N,) + scaling[mask_stable] = coeff[mask_stable] + + # Shape: (N, D) + vec_diff = x - cos_theta.unsqueeze(1) * mu.unsqueeze(0) + + u = scaling.unsqueeze(1) * vec_diff # Shape: (N, D) + + return u + + @torch.no_grad() + def _get_visual_base_matrix(self, data_manager: DataManager): + logging.info("Computing visual base matrixs...") + sample_dataset = data_manager.get_dataset( + range(0, data_manager.get_total_classnum()), "train", "train") + sample_loader = DataLoader( + sample_dataset, batch_size=1, shuffle=False, num_workers=num_workers) + sample_data = [[] for _ in range(data_manager.get_total_classnum())] + self.visual_base_matrices = torch.zeros( + data_manager.get_total_classnum(), 512, self.K).to(self._device) + prog_bar = tqdm(sample_loader) + for _, input, target in prog_bar: + input = input.to(self._device) + target = target.to(self._device) + with torch.no_grad(): + image_features = self._network.encode_image(input) + sample_data[target.item()].append(image_features) + sample_data = [torch.cat(features, dim=0) for features in sample_data] + # SVD decomposition + for label in range(len(sample_data)): + data = sample_data[label] + mu_c = torch.mean(data, dim=0, keepdim=True) + mu_c = F.normalize(mu_c, dim=-1) + data = self.log_map(data, mu_c).squeeze(0) + U, S, Vh = torch.linalg.svd(data.cpu(), full_matrices=False) + U = U.to(data.device) + S = S.to(data.device) + Vh = Vh.to(data.device) + base_matrix = Vh[:self.K, :].t() # [D, K] + self.visual_base_matrices[label] = base_matrix # store base matrix + + @torch.no_grad() + def _get_textual_base_matrix(self, data_manager: DataManager): + logging.info("Computing textual base matrixs...") + self.textual_base_matrices = torch.zeros( + data_manager.get_total_classnum(), 512, self.K).to(self._device) + with open(os.path.join(self.text_des_path, "classnames.txt"), 'r') as f: + classnames = f.readlines() + classnames = classnames[:data_manager.get_total_classnum()] + prog_bar = tqdm(classnames) + for idx, classname in enumerate(prog_bar): + classname = classname.strip() + descriptions = [] + with open(os.path.join(self.text_des_path, classname.replace(" ", "_").replace("/", "_") + "_descriptions.txt"), 'r') as desc_f: + descriptions = desc_f.readlines() + desc_features = [] + for desc in descriptions: + desc = desc.strip() + text = self._network.tokenizer( + [desc]).to(self._device) + with torch.no_grad(): + text_feature = self._network.encode_text(text) + desc_features.append(text_feature) + desc_features = torch.cat(desc_features, dim=0) # [N, D] + mu_c = torch.mean(desc_features, dim=0, keepdim=True) + mu_c = F.normalize(mu_c, dim=-1) + desc_features = self.log_map(desc_features, mu_c) + desc_features = desc_features.squeeze(0) + U, S, Vh = torch.linalg.svd( + desc_features.cpu(), full_matrices=False) + U = U.to(desc_features.device) + S = S.to(desc_features.device) + Vh = Vh.to(desc_features.device) + base_matrix = Vh[:self.K, :].t() # [D, K] + self.textual_base_matrices[idx] = base_matrix # store base matrix + self.textual_base_matrices = self.textual_base_matrices[data_manager._class_order].to( + self._device) + + def incremental_train(self, data_manager: DataManager): + self._cur_task += 1 + self._total_classes = self._known_classes + \ + data_manager.get_task_size(self._cur_task) + self.task_sizes.append(self._total_classes) + self._network.append_S(device=self._device) + logging.info( + "Learning on {}-{}".format(self._known_classes, self._total_classes)) + train_dataset = data_manager.get_dataset(np.arange(self._known_classes, self._total_classes), + source="train", mode="train") + self.train_dataset = train_dataset + self.data_manager = data_manager + self._network.to(self._device) + self.train_loader = DataLoader( + train_dataset, batch_size=self.batch_size, shuffle=True, num_workers=num_workers) + test_dataset = data_manager.get_dataset( + np.arange(0, self._total_classes), source="test", mode="test") + self.test_loader = DataLoader( + test_dataset, batch_size=1, shuffle=False, num_workers=num_workers) + if len(self._multiple_gpus) > 1: + print('Multiple GPUs') + self._network = nn.DataParallel(self._network, self._multiple_gpus) + if len(self._multiple_gpus) > 1: + self._network = self._network.module + if self.text_features is None: + self._get_class_name_features() + self.text_features = self.text_features.to(self._device) + self.text_features = self.text_features[data_manager._class_order] + if self.textual_base_matrices is None: + if self.precomputed_basis_path is not None and os.path.exists(os.path.join(self.precomputed_basis_path, 'textual_base_matrices.pth')): + print("Loading precomputed textual base matrices from {}".format( + self.precomputed_basis_path)) + loaded_dict = torch.load(os.path.join( + self.precomputed_basis_path, 'textual_base_matrices.pth')) + self.textual_base_matrices = loaded_dict['textual_base_matrices'].to( + self._device) + else: + self._get_textual_base_matrix(data_manager) + if self.precomputed_basis_path is not None: + save_path = os.path.join( + self.precomputed_basis_path, 'textual_base_matrices.pth') + torch.save( + {'textual_base_matrices': self.textual_base_matrices.cpu()}, save_path) + if self.visual_base_matrices is None: + if self.precomputed_basis_path is not None and os.path.exists(os.path.join(self.precomputed_basis_path, 'visual_base_matrices.pth')): + print("Loading precomputed visual base matrices from {}".format( + self.precomputed_basis_path)) + loaded_dict = torch.load(os.path.join( + self.precomputed_basis_path, 'visual_base_matrices.pth')) + self.visual_base_matrices = loaded_dict['visual_base_matrices'].to( + self._device) + else: + self._get_visual_base_matrix(data_manager) + if self.precomputed_basis_path is not None: + save_path = os.path.join( + self.precomputed_basis_path, 'visual_base_matrices.pth') + torch.save( + {'visual_base_matrices': self.visual_base_matrices.cpu()}, save_path) + self._network.update_stat( + self._known_classes, self._total_classes, self.train_loader, self._device) + self.train(self.train_loader, self.test_loader, data_manager) + self._update_stat(self.train_loader, data_manager) + + def train(self, train_loader, test_loader, data_manager: DataManager): + self._network.train() + augmentation_transform = T.Compose([ + T.RandomHorizontalFlip(p=0.5), + T.ColorJitter(brightness=0.2, contrast=0.2, + saturation=0.2, hue=0.1), + ]) + if self.args['optimizer'] == 'sgd': + optimizer = optim.SGD(self._network.parameters( + ), momentum=0.9, lr=self.init_lr, weight_decay=self.weight_decay) + elif self.args['optimizer'] == 'adam': + optimizer = optim.AdamW(self._network.parameters( + ), lr=self.init_lr, weight_decay=self.weight_decay) + scheduler = optim.lr_scheduler.MultiStepLR( + optimizer, milestones=self.milestones, gamma=self.gamma, last_epoch=-1) + prog_bar = tqdm(range(self.epochs)) + for _, epoch in enumerate(prog_bar): + loss = torch.tensor(0.0).to(self._device) + loss_c = torch.tensor(0.0).to(self._device) + if self._cur_task > 0: + random_class_order_list = list(range(self._known_classes)) + random.shuffle(random_class_order_list) + batch_id = -1 + for i, (_, inputs, targets) in enumerate(train_loader): + batch_id += 1 + inputs = inputs.to(self._device) + targets = targets.to(self._device) + real_targets = targets.clone() + sg_inputs = None + sg_targets = None + if self._cur_task > 0: + sg_inputs = [] + sg_targets = [] + for i in random_class_order_list: + class_mean = self._network.class_mean_list[i] + class_cov = self._network.class_cov_list[i] + sampled_feature = self.sample( + class_mean, class_cov, int(self.samples_per_class), shrink=False) + sg_inputs.append(sampled_feature) + sg_targets.append(torch.ones( + int(self.samples_per_class), dtype=torch.long, device=self._device)*i) + sg_inputs = torch.cat(sg_inputs, dim=0) + sg_targets = torch.cat(sg_targets, dim=0) + targets = torch.cat([targets, sg_targets], dim=0) + batch_visual_basis = self.visual_base_matrices[:self._total_classes] + batch_textual_basis = self.textual_base_matrices[:self._total_classes] + outputs = self._network( + inputs, self.text_features[:self._total_classes], batch_visual_basis, batch_textual_basis, self._cur_task, memory_data=sg_inputs) + loss_c = F.cross_entropy(outputs, targets.detach()) + # Occ Loss + score_clean_gt = self._network._get_visual_score( + inputs, self._cur_task) # [B, K] + + occ_inputs = self._generate_occluded_inputs( + inputs, self._device) + score_occ_gt = self._network._get_visual_score( + occ_inputs, self._cur_task) # [B, K] + + class_name = self.classnames[data_manager._class_order[real_targets[0].item( + )]] + occ_des_file = os.path.join(self.occ_des_path, class_name.replace( + " ", "_").replace("/", "_") + "_descriptions.txt") + with open(occ_des_file, 'r') as f: + occ_descriptions = f.readlines() + occ_description = random.choice(occ_descriptions).strip() + occ_score = self._network._get_textual_score( + occ_description, self._cur_task) # [K] + clean_score = self._network._get_textual_score( + # [K] + "a photo of a {}.".format(class_name.replace("_", " ")), self._cur_task) + + loss_mask = torch.mean(torch.relu( + score_occ_gt - score_clean_gt)) + torch.mean(torch.relu(occ_score - clean_score)) + + M = 3 + view_scores_list = [] + text_scores_list = [] + aug_des_file = os.path.join(self.aug_des_path, class_name.replace( + " ", "_").replace("/", "_") + "_descriptions.txt") + with open(aug_des_file, 'r') as f: + aug_descriptions = f.readlines() + for _ in range(M): + aug_inputs = augmentation_transform(inputs) + aug_description = random.choice(aug_descriptions).strip() + aug_scores_matrix = self._network._get_visual_score( + aug_inputs, self._cur_task) + aug_scores_txt = self._network._get_textual_score( + aug_description, self._cur_task) + text_scores_list.append(aug_scores_txt) + view_scores_list.append(aug_scores_matrix) + + aug_description = random.choice(aug_descriptions).strip() + stacked_scores = torch.stack(view_scores_list) # [M, B, K] + mean_scores = stacked_scores.mean(dim=0) # [B, K] + stacked_text_scores = torch.stack(text_scores_list) # [M, K] + mean_text_scores = stacked_text_scores.mean(dim=0) # [K] + loss_cons = torch.tensor(0.0, device=self._device) + for m in range(M): + loss_cons += F.l1_loss(view_scores_list[m], mean_scores) + loss_cons += F.l1_loss( + text_scores_list[m], mean_text_scores) + loss = loss_c + self.vib_lambda * (loss_mask + loss_cons) + + loss.backward() + optimizer.step() + optimizer.zero_grad() + prog_bar.set_description("Epoch [{}/{}] Loss: {:.4f} Cls Loss: {:.4f}".format( + epoch + 1, self.epochs, loss.item(), loss_c.item() + )) + scheduler.step() + + def _update_stat(self, train_loader, data_manager: DataManager): + sample_loader = DataLoader( + self.train_dataset, batch_size=128, shuffle=False, num_workers=num_workers) + sample_data = [] + sample_target = [] + for _, input, target in sample_loader: + input = input.to(self._device) + target = target.to(self._device) + with torch.no_grad(): + ori_ima_feat = self._network.encode_image(input) + sample_data.append(ori_ima_feat) + sample_target.append(target) + sample_data = torch.cat(sample_data, dim=0) + sample_target = torch.cat(sample_target, dim=0) + self._network.analyze_mean_cov(sample_data, sample_target) + + def sample(self, mean, cov, size, shrink=False): + vec = torch.randn(size, mean.shape[-1], device=mean.device) + if shrink: + cov = self.shrink_cov(cov) + sqrt_cov = torch.linalg.cholesky(cov.cpu()) + sqrt_cov = sqrt_cov.to(mean.device) + vec = vec @ sqrt_cov.t() + vec = vec + mean + return vec + + def shrink_cov(self, cov): + diag_mean = torch.mean(torch.diagonal(cov)) + off_diag = cov.clone() + off_diag.fill_diagonal_(0.0) + mask = off_diag != 0.0 + off_diag_mean = (off_diag*mask).sum() / mask.sum() + iden = torch.eye(cov.shape[0], device=cov.device) + alpha1 = 1 + alpha2 = 1 + cov_ = cov + (alpha1*diag_mean*iden) + (alpha2*off_diag_mean*(1-iden)) + return cov_ + + @torch.no_grad() + def get_most_similar_task(self, inputs): + assert inputs.shape[0] == 1 + self._network.eval() + inputs = inputs.to(self._device) + with torch.no_grad(): + image_features = self._network.encode_image(inputs) + dists = [] + for task_id in range(self._cur_task + 1): + # [C_task, D, K] + visual_basis = self.visual_base_matrices[self.task_sizes[task_id] + :self.task_sizes[task_id+1]] + base_matrix = rearrange(visual_basis, 'C D K -> C K D') + base_matrix = rearrange( + base_matrix, 'C K D -> (C K) D') # [(C_task*K), D] + cost_matrix = self._compute_cost_matrix( + image_features, base_matrix) # [1, (C_task*K)] + sinkhorn_distance = self._sinkhorn_distance(cost_matrix) # [1] + dists.append(sinkhorn_distance) + max_task_id = torch.argmax(torch.tensor(dists)) + return max_task_id.item() + + @torch.no_grad() + def _eval_cnn(self, loader): + self._network.eval() + y_pred, y_true = [], [] + for _, (_, inputs, targets) in enumerate(loader): + inputs = inputs.to(self._device) + with torch.no_grad(): + task_id = self.get_most_similar_task(inputs) + outputs = self._network.forward_inference(inputs, self.text_features[:self._total_classes], + self.visual_base_matrices[:self._total_classes], + self.textual_base_matrices[:self._total_classes], task_id) + transf_image_features_raw_ = self._network.visual_forward_( + inputs) + transf_image_features_raw_ = transf_image_features_raw_ / \ + transf_image_features_raw_.norm(dim=-1, keepdim=True) + outputs_gda = transf_image_features_raw_ @ self._network.W + self._network.b + outputs = (1 - self.g_lambda) * outputs + \ + self.g_lambda * outputs_gda + predicts = torch.topk( + outputs, k=self.topk, dim=1, largest=True, sorted=True + )[ + 1 + ] # [bs, topk] + y_pred.append(predicts.cpu().numpy()) + y_true.append(targets.cpu().numpy()) + + return np.concatenate(y_pred), np.concatenate(y_true) + + def _generate_occluded_inputs(self, inputs, device): + B, C, H, W = inputs.shape + occluded_inputs = inputs.clone() + + rho_min, rho_max = 0.1, 0.4 + eta_min, eta_max = 0.33, 3.0 + + for i in range(B): + rho = np.random.uniform(rho_min, rho_max) + area = int(rho * H * W) + + eta = np.random.uniform(eta_min, eta_max) + + h = int(np.sqrt(area * eta)) + w = int(np.sqrt(area / eta)) + h = np.clip(h, 1, H) + w = np.clip(w, 1, W) + + if H - h > 0: + u = np.random.randint(0, H - h + 1) + else: + u = 0 + + if W - w > 0: + v = np.random.randint(0, W - w + 1) + else: + v = 0 + + noise = torch.rand((C, h, w), device=device) + occluded_inputs[i, :, u:u+h, v:v+w] = noise + + return occluded_inputs + + def _compute_cost_matrix(self, query_emb: torch.Tensor, task_basis: torch.Tensor): + query_norm = F.normalize(query_emb, p=2, dim=1) + basis_norm = F.normalize(task_basis, p=2, dim=1) + + cosine_sim = torch.matmul(query_norm, basis_norm.T) + + cost_matrix = 1.0 - cosine_sim + return cost_matrix + + def _sinkhorn_distance(self, cost_matrix: torch.Tensor): + B, N_b = cost_matrix.shape + device = cost_matrix.device + + mu = torch.ones(B, 1, device=device) + + nu = torch.ones(B, N_b, device=device) / N_b + + f = torch.zeros(B, 1, device=device) + g = torch.zeros(B, N_b, device=device) + + log_K = -cost_matrix / 0.1 + + for _ in range(50): + term1 = g + log_K + f = torch.log(mu) - torch.logsumexp(term1, dim=1, keepdim=True) + term2 = f + log_K + g = torch.log(nu) - (f + log_K) + + wd = (f * mu).sum(dim=1) + (g * nu).sum(dim=1) + return wd \ No newline at end of file diff --git a/utils/area/descriptions/Aircraft/classnames.txt b/utils/area/descriptions/Aircraft/classnames.txt new file mode 100644 index 0000000..143fcdd --- /dev/null +++ b/utils/area/descriptions/Aircraft/classnames.txt @@ -0,0 +1 @@ +['707-320', '727-200', '737-200', '737-300', '737-400', '737-500', '737-600', '737-700', '737-800', '737-900', '747-100', '747-200', '747-300', '747-400', '757-200', '757-300', '767-200', '767-300', '767-400', '777-200', '777-300', 'A300B4', 'A310', 'A318', 'A319', 'A320', 'A321', 'A330-200', 'A330-300', 'A340-200', 'A340-300', 'A340-500', 'A340-600', 'A380', 'ATR-42', 'ATR-72', 'An-12', 'BAE 146-200', 'BAE 146-300', 'BAE-125', 'Beechcraft 1900', 'Boeing 717', 'C-130', 'C-47', 'CRJ-200', 'CRJ-700', 'CRJ-900', 'Cessna 172', 'Cessna 208', 'Cessna 525', 'Cessna 560', 'Challenger 600', 'DC-10', 'DC-3', 'DC-6', 'DC-8', 'DC-9-30', 'DH-82', 'DHC-1', 'DHC-6', 'DHC-8-100', 'DHC-8-300', 'DR-400', 'Dornier 328', 'E-170', 'E-190', 'E-195', 'EMB-120', 'ERJ 135', 'ERJ 145', 'Embraer Legacy 600', 'Eurofighter Typhoon', 'F-16A/B', 'F/A-18', 'Falcon 2000', 'Falcon 900', 'Fokker 100', 'Fokker 50', 'Fokker 70', 'Global Express', 'Gulfstream IV', 'Gulfstream V', 'Hawk T1', 'Il-76', 'L-1011', 'MD-11', 'MD-80', 'MD-87', 'MD-90', 'Metroliner', 'Model B200', 'PA-28', 'SR-20', 'Saab 2000', 'Saab 340', 'Spitfire', 'Tornado', 'Tu-134', 'Tu-154', 'Yak-42'] \ No newline at end of file diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/707-320_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/707-320_descriptions.txt new file mode 100644 index 0000000..b886977 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/707-320_descriptions.txt @@ -0,0 +1,10 @@ +0458781.jpg The 707-320 is viewed from the side against a clear sky, featuring a white fuselage with blue and red tail markings, set on an airport tarmac with some vehicles and a fence in the foreground. +1319365.jpg The 707-320 is depicted in a side profile on a runway with a white fuselage featuring a red and gold stripe along its length, the tail exhibits a logo with red and gold accents, and the background shows an open airport field under a clear blue sky. +1042824.jpg In the image, the 707-320 is seen from the side against an airport runway background, featuring a light-colored fuselage with the "Lufthansa Cargo" logo, a distinct dark stripe along the windows, four engines under the wings, and a recognizable forward-raked tail fin. +0732667.jpg The image shows a side view of a white and dark stripe-painted Boeing 707-320 jet on the tarmac with distinct tri-gear undercarriage, bounded by an airport runway and distant city skyline, accompanied by "royal air maroc" branding. +1288661.jpg The 707-320, viewed from the side on a grassy airfield, features a white fuselage with "Nile Safaris Aviation" written in bold on the side, accented by a black logo on the tail fin, and stands against a clear sky backdrop. +1025794.jpg The 707-320 in the low-resolution image is primarily white with a distinctive gray underbelly and a visible "Condor" logo on the fuselage, viewed from a side angle against a runway backdrop, featuring four jet engines under low-slung wings and a distinctive T-tail design. +0864665.jpg The 707-320 in the image appears in a white and red color scheme with a distinct logo on the tail, photographed from a side angle on an airport tarmac with visible warehouse structures and service vehicles in the background. +0113201.jpg The 707-320 in the image is predominantly white with a sleek, streamlined body, featuring a visible Omega Air Tanker - Transport logo on the tail, seen from a side view on a tarmac with a cityscape backdrop. +0979376.jpg The 707-320 is viewed from the left side in a grassy outdoor setting, painted in a classic livery with a white upper fuselage and a dark blue lower section, featuring a distinctive red airline logo on the fuselage and tail, under a clear sky. +0869692.jpg The Boeing 707-320 is seen in a side profile at an airport, featuring a white fuselage with dark blue and red stripes, distinctive tail fin design, and set against a backdrop of green grass and a partly cloudy sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/727-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/727-200_descriptions.txt new file mode 100644 index 0000000..cd52eb5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/727-200_descriptions.txt @@ -0,0 +1,10 @@ +0314131.jpg The 727-200, seen in a side profile view against a clear blue sky, features a predominantly white fuselage with green and blue accents near the tail, and displays the distinctive three-engine arrangement typical of this model, complemented by its mid-air landing pose with extended landing gear. +1459191.jpg The 727-200 is depicted in a side view with a predominantly white fuselage accented by a light blue tail and engines, set against a clear blue sky, featuring the characteristic T-tail and triple-engine configuration distinctive to its model. +1691787.jpg A white Boeing 727-200 with blue and red accents is captured in a low-angle, airborne climb against a clear blue sky, featuring a T-tail and three rear engines. +0250399.jpg The 727-200, viewed from below against a clear sky, appears as a dark silhouette with a distinctive T-tail and swept-back wings with visible flaps extended. +1019011.jpg The 727-200 aircraft is shown in a side view on the runway, painted in yellow with red accents and DHL branding, set against an airport backdrop with another plane taking off in the background. +0063113.jpg The 727-200, viewed from the side on an airport tarmac, features a white fuselage with blue and purple stripes and a logo toward the rear, set against a backdrop of grass fields and distant trees. +0875281.jpg The 727-200 features a primarily white fuselage with a prominent blue stripe along the windows, displaying the "Sky Trek" logo with a large yellow star on its tail and forward fuselage, viewed from the side against an airport tarmac and industrial buildings in the background. +0063291.jpg The 727-200 jet, viewed from the side, features a distinctive beige and orange livery with a stylized sun emblem on the tail, set against a flat airport terrain with hazy, distant cityscape in the background. +0275123.jpg The 727-200 features a red and gray color scheme with a prominent white logo on the tail, viewed from the side on a runway, set against a backdrop of mountains and a clear blue sky, with distinctive rear-mounted engines and a T-tail. +1197395.jpg The image shows a side view of a Boeing 727-200 with a predominantly white fuselage and blue tail, featuring large text and a logo, positioned on a grassy area near a runway with a hilly landscape in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/737-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/737-200_descriptions.txt new file mode 100644 index 0000000..48b0aff --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/737-200_descriptions.txt @@ -0,0 +1,10 @@ +1339026.jpg The 737-200 appears in a banking ascent with a white fuselage, blue underbelly, and red "Qantas" logo, featuring a dark tail with a distinctive logo against a cloudy sky background. +0826475.jpg The 737-200 appears in a grayscale image, showcasing a sleek white fuselage with a prominent dark "W" logo on the side, captured from a side view angle against an airport tarmac with distant buildings in the background. +1514479.jpg The 737-200 displays a white fuselage with a bold yellow tail and dark blue accents, viewed from a side angle in flight against a cloudy sky, with notable "SUDAN" text on the fin and landing gear deployed. +1411216.jpg The 737-200 appears in a grayscale image, showing a side view with Britannia Airways livery, featuring a distinct stripe pattern on the fuselage and tail, positioned on an airport tarmac with boarding stairs and ground crew visible. +1036858.jpg The 737-200 in the image features a white fuselage with the "AeroGal" logo in blue and red, a prominent blue tailfin with the logo, observed from a left side view on a tarmac with a clear sky and greenery in the background, displaying classic short, low-set engines characteristic of the model. +1094669.jpg The 737-200 in the image has a plain white fuselage with a classic design featuring two forward-mounted engines, parked on an asphalt runway in clear daylight, with minimal text or markings and a small aircraft in the foreground. +0789826.jpg The 737-200 is seen from a side profile on an airport tarmac, featuring a cream-colored fuselage with blue and orange tail markings, appearing slightly weathered against a backdrop of hangars and a clear sky. +1296896.jpg The 737-200 is captured in a side profile view on an airport tarmac, featuring a white fuselage with a striking blue underbelly and horizontal red and blue stripes along the sides, accented by a colorful tail logo, set against a clear sky with scattered clouds. +0147048.jpg The 737-200 features a white fuselage with a dark blue underbelly and stripe, a prominent "Braniff" logo in red on the side, viewed from a side angle at an airport terminal with the terminal building and sky in the background. +0247942.jpg The 737-200 appears in a three-quarter side view on the tarmac, featuring a white fuselage with a dark stripe along the windows, complemented by red and blue accents, and is set against a partly cloudy sky backdrop. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/737-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/737-300_descriptions.txt new file mode 100644 index 0000000..80e51ad --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/737-300_descriptions.txt @@ -0,0 +1,10 @@ +0074247.jpg The 737-300 in the image is painted white with a blue tail and engines, featuring Garuda Indonesia branding, captured from a side angle on an airport tarmac with other aircraft and terminal buildings in the background. +1323729.jpg The 737-300 is viewed from a side angle in flight against a light sky, featuring a white fuselage with blue accents and the "flybe" logo prominently displayed in large text, with engines and tail fins visible. +0066279.jpg The 737-300 in the image features a predominantly white fuselage with prominent blue "EBA" branding, a blue tail, and engine nacelles, viewed from the side on a runway with a backdrop of green trees and overcast sky, highlighting its classic single-aisle design and winglets. +1955376.jpg The 737-300 features a silver fuselage with prominent red branding and accents, viewed from a side angle during landing with extended landing gear over a grassy airfield and distant tree-lined background. +0062667.jpg The 737-300 in the image is painted in a white and blue livery with the Lufthansa logo, viewed from the side on an airport tarmac with a clear sky and distant terminal buildings in the background, showcasing its distinct nose shape, winglets, and two jet engines. +0248336.jpg Two Continental Airlines 737-300 airplanes, predominantly white with a navy tail and gold globe logo, are parked side by side on an airport tarmac, viewed from a high angle, with jet bridges and ground equipment in the vicinity. +1062304.jpg The 737-300 has a distinctive red nose and white fuselage with a portrait on the tail, viewed from the front-left angle on a tarmac with a grassy field and trees in the background. +1730435.jpg The 737-300 displays a white fuselage with a blue and yellow stripe livery, viewed from a side angle on an airport tarmac, featuring a prominent "Ukraine International" logo and grassy fields in the background. +2227920.jpg The 737-300 is viewed from the front on a tarmac, painted white with a gray underside and red and blue accents on the tail, featuring winglets at the tips and accompanied by airport infrastructure and another aircraft in the background. +2248581.jpg The 737-300 is depicted in a side view with a white fuselage featuring colorful tail art of tropical imagery and the "Cayman Airways" logo, against a clear sky backdrop, showing the aircraft in flight with extended landing gear. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/737-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/737-400_descriptions.txt new file mode 100644 index 0000000..beb7be5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/737-400_descriptions.txt @@ -0,0 +1,10 @@ +0242845.jpg The 737-400 in the image features a predominantly white fuselage with a colorful tail logo, captured in a side view while taking off amidst lush greenery and trees in the background, with visible main landing gear extended. +1368847.jpg The 737-400 in the image is painted white with a green tail displaying a stylized bird logo, seen in a side view against a clear blue sky, featuring distinctive winglets and landing gear deployed. +1846193.jpg A Qantas 737-400 with a white body and prominent red tail featuring a kangaroo logo is viewed from the side on an airport tarmac, with its engines, wings, and landing gear clearly visible against a backdrop of distant trees and hills. +1503757.jpg The 737-400 features a white fuselage with a deep blue tail adorned with red circle patterns, viewed from the side against a clear blue sky as it flies above the runway, with extended landing gear and clear airline branding visible. +2117477.jpg A white 737-400 with red and green markings and logo is captured in a side view as it ascends, set against a clear blue sky, with visible landing gear retracting and smooth metal texture reflecting sunlight. +0302648.jpg The 737-400 in the image is painted predominantly white with maroon accents and celebratory text near the window line, seen from the side on an airport tarmac with a backdrop of trees and industrial buildings. +1702255.jpg The image shows a white 737-400 with a blue tail and red engine nacelles, captured in a side view as it lands on a runway surrounded by grassy fields under a partly cloudy sky. +1398863.jpg A white 737-400 with a red and blue stripe and the Malaysia Airlines logo is captured in flight from a side view against a clear blue sky, displaying its landing gear and winglets. +0127627.jpg The 737-400, seen from a side profile in mid-flight against a partly cloudy sky, features a green and white livery with a distinct shamrock emblem on the tailfin and smooth fuselage. +2120181.jpg This low-resolution image shows a vividly colored 737-400 with a bright blue fuselage, a prominent bird-themed design on the nose and tail, mid-flight against a clear blue sky, illustrating its side profile and visible winglets. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/737-500_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/737-500_descriptions.txt new file mode 100644 index 0000000..66f85a1 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/737-500_descriptions.txt @@ -0,0 +1,10 @@ +1543563.jpg In the image, a 737-500 aircraft with a white fuselage and bright lime green tail is captured in a side profile as it ascends against a backdrop of lush greenery and a clear sky, displaying the recognizable airBaltic logo and a partially visible undercarriage. +1216716.jpg The 737-500 aircraft is white with vivid red and green tail and engine markings, captured in-flight with landing gear extended against a cloudy sky background, prominently displaying an airline logo on its body. +0114439.jpg The 737-500 aircraft is painted in a white and dark blue livery with "Lufthansa" prominently displayed on the fuselage, viewed from the side on an airport tarmac with terminal buildings and another similarly branded aircraft in the background. +1033079.jpg The 737-500 appears in a side profile with a white fuselage featuring colorful stripes and logos, set against a clear blue sky with its landing gear extended and engines visible. +0074245.jpg A white 737-500 is viewed from the side on an airport tarmac, featuring a blue tail with a bird-like logo and the word "ANGEL" in red on the fuselage, set against a background of grassy areas and airport infrastructure. +1384649.jpg The 737-500 in the image features a white fuselage with blue and red accents, seen from a side view in-flight against a backdrop of hills and scattered buildings, with prominent landing gears extended and a text logo towards the front. +1405447.jpg The 737-500 in the image, viewed from the left side as it approaches landing, features a white fuselage with a red tail and winglets displaying a logo, red engine casings, and a subtle visible contrast against a blurred airport and rural backdrop. +0130599.jpg The image shows a white Boeing 737-500 with a blue and red logo on the fuselage, viewed from the side on an airport tarmac, with its engines and landing gear clearly visible against a background of terminal buildings and parked aircraft. +1258418.jpg The 737-500, viewed from the side at ground level, features a predominantly white and vibrant orange color scheme with "smartWings.com" branding, set against a clear sky and airport tarmac background with distinct large engine nacelles and wingtips. +1749186.jpg The low-resolution image shows a white 737-500 viewed from a frontal angle below, highlighting its landing gear extended against a clear blue sky, with distinctive engine intakes and the classic fuselage shape clearly visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/737-600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/737-600_descriptions.txt new file mode 100644 index 0000000..7280a58 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/737-600_descriptions.txt @@ -0,0 +1,10 @@ +1229599.jpg The 737-600 depicted in the side view features a white fuselage with blue and red tail markings, a blue vertical stabilizer, and exposed landing gear, set against a clear blue sky. +0745448.jpg The 737-600 features a distinctive blue and white mountain landscape livery over a gray fuselage with red accents, viewed from the side on the tarmac near airport buildings and other aircraft, characterized by its short fuselage and twin-engine configuration. +1730978.jpg The 737-600 aircraft, viewed from the side amidst grassy surroundings, features a white fuselage with "Scandinavian Airlines" markings, a prominent blue tail fin displaying "SAS," and a vivid orange engine casing, while landing with slight tire smoke visible against a clear sky backdrop. +1773981.jpg The image shows a side view of a white Boeing 737-600 with blue underbelly accents and red tail and winglet tips, flying against a clear blue sky, with distinctive airline branding including a red arrow and text on the fuselage. +0928043.jpg The 737-600 in the image appears with a white fuselage and blue accents, positioned in a side view on a tarmac with an airport terminal in the background, featuring a distinctive red, white, and green tail fin and visible engines beneath the wings. +1718899.jpg The aircraft is a white 737-600 with a blue vertical stabilizer featuring the "SAS" logo, distinct red engine covers, captured in flight from a side and slightly below angle against a clear blue sky with the moon visible in the background. +1885885.jpg The 737-600 aircraft appears in a side view, featuring a predominantly white fuselage with red lettering and an emblem on the tail fin, amid an airport setting with other planes and buildings faintly visible in the background. +1215384.jpg The airplane is a white and blue 737-600 with "SAS" on the tail fin, seen in side view, flying against a backdrop of clouds and displaying distinctive red engine nacelles. +1615563.jpg The 737-600 appears in a white and red livery, seen from a low front angle as it approaches to land against a cloudy sky, with its landing gear extended and distinctive winglets absent. +0784350.jpg The 737-600 displays a distinctive white fuselage with prominent SAS and Braathens branding, blue and red liveries on the tail and engines, flying against a cloudy sky with landing gear extended, showcasing its short body and typical Boeing nose shape. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/737-700_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/737-700_descriptions.txt new file mode 100644 index 0000000..e8bb21f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/737-700_descriptions.txt @@ -0,0 +1,10 @@ +0984409.jpg A white 737-700 with navy and gold stripes is seen in a side view on an airport tarmac, featuring a uniquely curved tail design, with other aircraft and an overcast sky in the background. +0957983.jpg The 737-700 displayed is in flight with a white fuselage featuring green and gold accents, viewed from a side angle with a clear, blue sky in the background, and distinct Arabic script and a logo near the tail. +2188154.jpg The 737-700 appears in a side view with a distinctive light blue fuselage marked by red and white branding, featuring winglets and landing gear noticeably extended, set against a backdrop of a clear sky. +0622056.jpg The 737-700 in the image features a predominantly white fuselage with a red tail and green accents, viewed from the side, with landing gear deployed on a tarmac surrounded by a flat landscape and distant body of water, while distinct airline logos and Arabic script are visible on the tail. +1060500.jpg The 737-700 is depicted in a smooth, white livery with red stripes, seen from a side view on an airport tarmac, featuring distinctive engine nacelles, a gray underbelly, and a backdrop of green grass and a cloudy sky. +1315141.jpg The 737-700 in the image is viewed from the left side, featuring a vibrant red color with "Sterling.eu" in bold white letters, a heart graphic at the tail, and is set against a clear, open sky background with a grassy runway beneath. +0183579.jpg The 737-700 is painted in a light blue with a darker blue stripe, seen from the side and parked on an airport tarmac with a terminal in the background, featuring distinctive white star logos on the tail and near the front. +1503761.jpg The 737-700 is predominantly white with prominent orange branding and engines, viewed in profile against a clear blue sky, with its landing gear extended. +0497534.jpg The 737-700 is seen from a side view on an airport tarmac, featuring a white fuselage with a dark green tail displaying a gold emblem, complemented by subtle lettering along the body. +1446341.jpg The image shows a white 737-700 airplane with green, yellow, and red tail markings, viewed from the side in flight against a cloudy sky, featuring a distinct logo on the fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/737-800_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/737-800_descriptions.txt new file mode 100644 index 0000000..de41160 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/737-800_descriptions.txt @@ -0,0 +1,10 @@ +0081597.jpg The 737-800 is viewed from the side, featuring a white fuselage with blue lettering and a colorful tail design, set against a backdrop of a grassy field and clear sky. +1390305.jpg The 737-800 is viewed in profile against a clear sky, showcasing a white fuselage with a blue tail featuring a prominent "XL" logo and a subtle gradient, accompanied by blue engine nacelles and a sleek appearance. +1320110.jpg The 737-800 is seen from a side view on the tarmac with a white and red livery featuring large "AIR BERLIN" text, parked behind service vehicles, against an airport environment with another plane and cityscape in the background. +1852201.jpg The 737-800 features a blue and white color scheme with a red logo on the tail, visible from a side profile on a tarmac against a backdrop of trees under a clear sky. +0988468.jpg The 737-800 is predominantly white with green and blue accents, viewed in profile from the side against a clear blue sky, displaying winglets and a Transavia logo on the tail. +1662016.jpg The 737-800 is captured in a side view with a smooth white body adorned with red and orange decorative patterns, featuring a distinct tail design, set against a backdrop of an airport runway and taxiway with other aircraft in the distance. +1545691.jpg The 737-800 is painted in a bright blue and orange livery with a prominent "S" logo on the tail, captured from a side angle as it is landing on a runway, set against an airport backdrop with terminals and another aircraft in the background. +1036818.jpg A white 737-800 with blue tail and engines is viewed from the side on an airport tarmac, against a backdrop of green foliage and multistory urban buildings. +1237622.jpg The 737-800 in the image is viewed from the side in mid-flight with a white fuselage accented by a dark blue underside and tail displaying a red and white logo, against a clear sky background. +0257025.jpg The 737-800 is painted white with a dark blue Britannia logo, flying in profile view with trees in the background and extended landing gear visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/737-900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/737-900_descriptions.txt new file mode 100644 index 0000000..57e368a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/737-900_descriptions.txt @@ -0,0 +1,10 @@ +1910716.jpg The 737-900 is predominantly white with distinctive brown and multicolored star patterns on the tail, viewed from a slight left-side angle as it lifts off against a backdrop of trees and a gray sky. +0864570.jpg The 737-900 features a light blue and white livery with a sleek fuselage design, seen in a side profile with extended landing gear, set against a pale blue sky, with distinctive winglets and a prominently displayed airline logo on the tail. +0722225.jpg The 737-900 features a predominantly white fuselage with a distinctive teal and blue stripe running along the length, a unique design on the vertical stabilizer, viewed from a slightly elevated angle on a sunlit tarmac, with another aircraft visible in the background. +1582314.jpg The 737-900 appears in a blue and white livery with a sleek, shiny surface, viewed from a front-side angle with extended landing gear against a cloudy sky backdrop, featuring distinctive branding on the tail and fuselage. +0936143.jpg The Boeing 737-900 appears in a side profile view flying against a clear blue sky, featuring a white fuselage with a blue stripe and tail adorned with the KLM logo, complemented by visible landing gear and engine detailing. +0641165.jpg A white 737-900 with blue lettering and a native face logo on the tail is positioned sideways on the tarmac against a desert-like airport backdrop with distinctive rocky formations. +0723572.jpg The 737-900 appears in a side view pose with a blue and white color scheme, displaying a KLM logo on the tail, as it flies against a clear blue sky with landing gear extended. +2071807.jpg The 737-900 is painted white with prominent red accents, including a red tail and engines, seen in a side profile view against a mostly cloudy sky, and features distinct logo detailing along the fuselage. +1818747.jpg The image shows a white Boeing 737-900 with a colorful, star-patterned tail and dark stripes along the rear, viewed in profile against a clear blue sky. +1313348.jpg The 737-900 in the image is painted in a blue and white livery with a distinctive logo, captured in a side view while landing on a runway, against a backdrop of a clear sky and an airport landscape with visible terminal and light poles. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/747-100_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/747-100_descriptions.txt new file mode 100644 index 0000000..bbec8d4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/747-100_descriptions.txt @@ -0,0 +1,10 @@ +1013082.jpg The interior of the 747-100 features rows of blue-patterned seats with beige tray tables, a ceiling with folded oxygen masks deployed, and a backdrop of light blue, patterned wall panels, all viewed from a front-facing aisle perspective. +0852827.jpg A white Boeing 747-100 with blue tail markings is captured from a low-angle, frontal viewpoint during landing, set against a clear sky and featuring its extended landing gear. +1099245.jpg The "747-100" appears in a side view against a gray sky, showcasing a white fuselage with notable red and blue tail graphics, and engines positioned beneath large swept-back wings. +0944156.jpg The 747-100 appears in white with a dark blue tail featuring a golden emblem, captured from a side view as it lands on a runway against a backdrop of a hazy cityscape and a green field. +1062971.jpg The 747-100 is captured in a left side view on a runway, displaying a monochrome color scheme with British Airways branding and a dark paint on the upper section of the fuselage and tail, set against a blurred background of an airport terminal and distant landscape. +0880570.jpg The 747-100 is painted white with red and gold stripes, depicted in a right side view during flight, set against a clear blue sky, featuring distinctive four engines beneath its wings and a notable hump near the front. +0558306.jpg The 747-100 in the image is painted predominantly white with red and gold stripes along the fuselage, seen from a side view on a runway, with distinctive humpbacked upper deck and four engines, set against a slightly blurred background of grass, buildings, and a cloudy sky. +1428220.jpg The image depicts a grayscale 747-100 aircraft with TWA livery, captured in a side-on view flying low with its landing gear extended over an urban landscape with trees and buildings visible in the background. +0989834.jpg A low-resolution black and white image shows a Boeing 747-100 in side profile, painted in a classic United Airlines livery with large text on the fuselage and a distinct stripe running along the length, situated on an airport tarmac with hangars and overcast skies in the background. +0114120.jpg The 747-100 in the image is viewed from the side, featuring a red and gray color scheme with white text on the fuselage, set against a tarmac and airport backdrop with mountains in the distance, displaying its characteristic humpback design and four engines. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/747-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/747-200_descriptions.txt new file mode 100644 index 0000000..432d264 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/747-200_descriptions.txt @@ -0,0 +1,10 @@ +1031438.jpg The 747-200, predominantly white with visible "TradeWinds Cargo" branding, is captured mid-flight in a right side view against a backdrop of cloudy blue sky, showcasing its distinctive humpbacked fuselage, elevated horizontal stabilizers, and four underwing engines. +0454783.jpg The 747-200 is predominantly white with blue accents, featuring "HYDRO AIR CARGO" branding, seen in a side view against a plain gray sky background, with distinctive engines and landing gear in plane configuration. +1137740.jpg The 747-200 in the image is predominantly white with a plain blue tail, captured from a side view in flight against a clear blue sky, and features its characteristic humpbacked upper deck and four-engine setup. +1059813.jpg The 747-200 is shown in a lateral mid-flight view against a cloudy sky, with a white fuselage featuring black text and a navy blue tail showcasing a logo, highlighting the distinct hump of the upper deck. +0829998.jpg With its white fuselage and dark blue tail logo, the 747-200 is captured in a side profile during takeoff against a backdrop of clear blue skies and distant mountains, displaying its distinctive humpbacked upper deck and four engines beneath a textural combination of grassy fields and runway. +0097750.jpg The 747-200 in the image is viewed from the side, displaying a sleek, dark blue and gray fuselage with "United Airlines" branding, set against a clear blue sky, highlighting its four engines, distinctive hump, and landing gear extended. +0447749.jpg The 747-200 is viewed from the side on a grassy airport tarmac, featuring a white fuselage with minimal markings, except for a logo near the tail, and its large, characteristic hump and four engines. +0744732.jpg The 747-200 in the image is white with red accents and a prominent red tail logo, viewed in profile on a runway with a dry, brushy landscape and a line of trees in the background. +0880573.jpg The 747-200 in the image features a white fuselage with red and blue accents, viewed in profile against a clear blue sky with distant mountains, distinguished by its upper deck hump and four engines under the wings. +1245887.jpg The 747-200, viewed from below against a clear blue sky, features a white fuselage with a distinct blue tail fin, displaying four engines beneath its wings and a notable hump indicative of its upper deck. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/747-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/747-300_descriptions.txt new file mode 100644 index 0000000..0765234 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/747-300_descriptions.txt @@ -0,0 +1,10 @@ +1132269.jpg A Qantas Boeing 747-300 is seen taking off, viewed from a side angle, adorned with a white fuselage, red tail featuring a white kangaroo logo, and set against an airport background with other aircraft visible on the tarmac. +0963590.jpg The 747-300, in a white livery with green accents and a logo on the tail, is captured in low resolution during takeoff against a clear sky, with its landing gear still extended and runway visible below. +1828267.jpg The 747-300 aircraft is predominantly white and blue with distinct curved blue lines and is viewed from below in mid-flight against a clear blue sky, featuring extended landing gear and a recognizable hump-backed upper deck. +0785021.jpg The 747-300 appears white with blue and green tail markings, seen in side profile as it lands on a runway with a clear blue sky and trees in the background, featuring a distinct upper deck hump and four engines. +0458674.jpg The 747-300 appears with a striking red, white, and orange livery featuring a distinctive logo on the tail, viewed in profile on a grassy airfield under a clear blue sky, highlighting its upper-deck hump and four engines. +1256683.jpg The image shows a Dragonair-liveried Boeing 747-300 flying upward at an angle, with a white fuselage featuring red logos and text, visible wing-mounted engines, and a clear sky background. +1206755.jpg The 747-300 appears in a side view with a predominantly white fuselage featuring green patches near the wings, situated on a runway against a clear blue sky and a sparse desert backdrop. +1365495.jpg The 747-300 has a white fuselage with a distinctive logo on the tail and near the front, featuring a clean, smooth texture, viewed from a side profile in mid-flight against a clear blue sky, with its landing gear deployed and engines visible under the wings. +0710666.jpg The 747-300 appears in a light gray with a vibrant red and orange stripe along the fuselage, viewed from below at a diagonal angle against a clear sky, with its four engines and landing gear visibly deployed. +0447773.jpg The 747-300 appears in a side view with a predominantly white fuselage adorned with red dragon-themed logos, showing a distinct stretched hump over the upper deck, set against a clear blue sky background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/747-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/747-400_descriptions.txt new file mode 100644 index 0000000..5adaf2b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/747-400_descriptions.txt @@ -0,0 +1,10 @@ +0127504.jpg The 747-400 in the image appears with a predominantly white fuselage and a red tail logo, viewed from a low angle as it flies against a clear blue sky, with its four engines and iconic humpback upper deck distinctive despite the low resolution. +1233576.jpg The white Boeing 747-400 with red and green stripes along the fuselage is captured in a side-view during landing against a clear blue sky, accentuating its four engines and distinctive humpback upper deck. +1305614.jpg The 747-400 features a predominantly white exterior with "DRAGONAIR CARGO" branding in large letters, viewed from a side angle in flight against an overcast sky, highlighted by the distinctive hump and four-engine configuration typical of this aircraft model. +1942524.jpg The 747-400 appears white with blue and red accents, viewed from the side on an airport tarmac, with distinct upper deck windows and a logo on the tail, positioned near a control tower in a clear sky environment. +2222716.jpg The 747-400, viewed from the side on a tarmac with a mountainous backdrop, features a predominantly white fuselage with a dark blue tail and red accents, and exhibits four engines below its wings. +1143409.jpg The 747-400 features a vibrant multicolored livery with a prominent Air Pacific and Fiji branding, viewed in side profile on a runway, set against a partly cloudy sky and grass-covered landscape, with distinct winglets and the classic hump of a 747 aircraft. +1018463.jpg The 747-400, painted in Iberia's classic red, yellow, and white livery, is captured in a side view as it takes off amidst a green landscape with mountainous terrain in the background, showcasing its distinct humpbacked upper deck and four engines. +0964235.jpg The image shows a white 747-400 with blue and green accents, viewed from the side and slightly below as it is in flight against a clear sky, featuring the distinctive humpbacked upper deck and four engines with extended landing gear. +1515540.jpg The 747-400 appears predominantly white with blue and gold accents, viewed from the side in flight with a clear sky and partial green landscape in the background, featuring a distinctive hump on the fuselage and a prominent dark tail fin with a logo. +2197330.jpg The 747-400, viewed from the front and slightly to the right, features a white fuselage with a dark brown tail displaying a logo, while the sunlit tarmac surrounds its landing gear, all against a backdrop of grassy fields and leafless trees. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/757-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/757-200_descriptions.txt new file mode 100644 index 0000000..6e5d8bf --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/757-200_descriptions.txt @@ -0,0 +1,10 @@ +1917720.jpg The image shows a side view of a white and red 757-200 aircraft with Shanghai Airlines branding, featuring a clear sky background, extended landing gear, and distinctive tail design. +0708641.jpg The 757-200 in the image displays a white fuselage with blue and orange accents, captured in a side view during flight with the landing gear extended, set against a clear blue sky above a horizon of trees. +1566616.jpg The image depicts a British Airways 757-200 in flight, viewed side-on against a clear blue sky, featuring a white fuselage with a blue underbelly and tail adorned with a red, white, and blue wave design. +0685368.jpg The 757-200 features a silver metallic body with maroon stripes, viewed from a rear-side angle as it ascends against a dark cloudy sky, with airport buildings and a grassy runway visible below. +1356930.jpg The 757-200 features a white fuselage with a blue tail and engines, adorned with a distinctive red emblem, seen in a left-side profile in flight against a cloudy sky. +0275117.jpg The 757-200 features a white fuselage with "United Parcel Service" in black lettering, a brown tail with the UPS logo, viewed in a side profile on a runway with mountainous terrain in the background. +0458643.jpg The 757-200 is viewed from the side, showing a white fuselage with a colorful tail fin, displaying a combination of green, yellow, and red on an earthy landscape backdrop. +0814906.jpg The 757-200 features a white fuselage with "belair" in bold orange letters, a red tail with a white cross, viewed from the side on a tarmac, with gray engines and a distant forested background under an overcast sky. +1253857.jpg The 757-200 features a vibrant orange upper fuselage transitioning to white with a prominent "TNT" logo on the white lower fuselage, observed in a banked ascent against a clear blue sky, highlighting its streamlined body and twin-engine configuration. +1207125.jpg The low-resolution image shows a 757-200 in a left-side view, predominantly painted white with a red stripe along the fuselage, featuring a prominent gray underbelly and engines, positioned on an airport tarmac with a clear sky and distant mountains in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/757-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/757-300_descriptions.txt new file mode 100644 index 0000000..2671080 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/757-300_descriptions.txt @@ -0,0 +1,10 @@ +1213050.jpg The 757-300 in the image is parked on an airport tarmac, featuring a white body with distinct blue tail and winglets, large printed branding along the fuselage, and a background of runway markings under an overcast sky. +0924405.jpg The 757-300 is depicted in a left-side profile view, featuring a white fuselage with a blue and gold tail logo, dark engine nacelles, and a clear sky background, highlighting its elongated body and distinctive landing gear. +0658111.jpg The aircraft is a white 757-300 with blue and orange accents, viewed from the side on a tarmac with taxiway markings and a hazy sky in the background, featuring a sleek, elongated fuselage and a distinct tail design. +0313720.jpg The image shows a white and silver airplane with blue Continental branding on the tail fin, viewed from the side on a tarmac against a backdrop of airport buildings and a partly cloudy sky. +1017288.jpg The 757-300 features a white fuselage with a blue tail and engines, viewed from the side in mid-flight against a mountainous backdrop. +0924404.jpg The 757-300 aircraft is viewed from a side angle in-flight against a clear blue sky, featuring a predominantly silver body with a bold red vertical stabilizer and wingtips, displaying distinctive airline branding on the fuselage. +1004797.jpg The 757-300 appears in a side profile view with a white fuselage featuring a Continental logo on the tail fin, against a backdrop of a grassy field and airport runway under clear blue skies. +1307073.jpg The 757-300 appears with a white fuselage featuring blue and gray accents, viewed in a lifting-off pose from the runway with airport buildings in the hazy background, prominently showcasing its elongated, slender shape and landing gear in motion. +1944650.jpg The 757-300 in the image appears primarily white with a sleek, streamlined body, blue engines, and a tail fin featuring a red and blue logo, viewed from the side on an airport tarmac with a hazy urban and mountainous background. +1345218.jpg The 757-300 features a predominantly white fuselage with a blue tail and logo, captured in a side profile view against an overcast sky and airport runway setting, with visible extended landing gear and distinct engine nacelles. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/767-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/767-200_descriptions.txt new file mode 100644 index 0000000..cc9cf5c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/767-200_descriptions.txt @@ -0,0 +1,10 @@ +1529607.jpg A white aircraft with a blue stripe and emblem is in a left-side view against a clear blue sky, displaying two underwing engines and landing gear extended, with visible airline markings. +0936782.jpg The 767-200 in the image features a dark blue fuselage with a white upper and red accent stripes, viewed from the side as it descends for landing over a grassy field and trees, with twin engines and the airline’s name visible on the body. +0197363.jpg A white Boeing 767-200 with red accents and "AIRBORNE EXPRESS" in bold red letters is taxiing on a tarmac, viewed from the side with a clear blue sky and distant mountainous landscape in the background. +1390310.jpg The 767-200 in the image is predominantly white with dark blue on the tail and engine nacelles, features a side view showcasing its extended landing gear, against a plain sky background, and is marked by a logo on the tail and fuselage. +1307327.jpg The 767-200 appears in a side view with a white fuselage displaying Air China livery and Chinese characters, complemented by a blue horizontal stripe, against a clear sky background, with landing gear extended and distinct red logo on the tail. +2197329.jpg The 767-200 appears with a dark blue and white body featuring a prominent "Maersk" logo on the tail, viewed from the side on an airport tarmac adjacent to a Lufthansa Cargo building. +0109462.jpg The 767-200 aircraft appears in a side profile view on a runway, with a white fuselage featuring blue stripes, red lettering, and a red logo on the tail, set against a backdrop of green grass and distant trees. +1703213.jpg The 767-200 is viewed in profile from a side angle, featuring a predominantly white fuselage with a vibrant red and green tail adorned with a tropical motif, set against a clear blue sky background with a few clouds visible. +1222396.jpg The 767-200 in the image appears with a white fuselage and a prominent red tail, positioned in a side view against a desert environment with visible engine damage and partially disassembled wing components. +1389713.jpg The 767-200 appears with a smooth white fuselage featuring a prominent blue "XL" logo, viewed from the side in flight against a clear gray sky, with extended landing gear and distinctive blue accents on the tail fin. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/767-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/767-300_descriptions.txt new file mode 100644 index 0000000..0087705 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/767-300_descriptions.txt @@ -0,0 +1,10 @@ +1531356.jpg A Delta Airlines 767-300 with a predominantly white fuselage, featuring stylized blue and red accents on the tail, is viewed in side profile against a clear blue sky as it is in flight. +0097757.jpg The 767-300 features a red and white color scheme with a prominent LTU logo on the tail, viewed from a side angle on a tarmac against a clear blue sky and distant airport buildings. +0498141.jpg The 767-300 in the image is viewed from the side on a tarmac, featuring a white fuselage with "belair" branding in green and blue, a red tail with a white cross, and situated against an industrial airport backdrop with a large building. +0907432.jpg The 767-300 in the image is viewed from the side on an airport tarmac, featuring a white fuselage with green and red accents, a distinct tailfin logo, and visible wing flap details against a clear sky backdrop. +1518619.jpg The 767-300 appears in profile view with a white body featuring a red and blue stripe along the fuselage, carrying "EgyptAir" livery, set against a grassy field and a blurred blue sky background. +0788471.jpg The 767-300 is viewed from the side on a runway, featuring a predominantly white fuselage with blue tail markings, distinctly showing the "BelgiumExel.com" logo, against a grassy foreground and clear sky background. +1375584.jpg The 767-300 aircraft is depicted in flight with a predominantly white fuselage featuring a blue and gold stripe with an American flag emblem on the tail, viewed from a side angle against a cloudy gray sky. +1553071.jpg The 767-300 appears in a bottom-up view with a smooth, white fuselage featuring green and red stripes along its side, prominently displaying its landing gear against a clear blue sky backdrop, with dark-colored engine nacelles on each wing. +0068813.jpg A white aircraft with "Spanair" branding, featuring a side profile view against a clear blue sky, displaying a sleek fuselage, twin engines, and distinctive tail fin logo. +2010056.jpg The image shows a close-up of a 767-300's tail section with a turquoise and red flower design against a partly cloudy sky, highlighting its clean white fuselage and silver horizontal stabilizer and fin. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/767-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/767-400_descriptions.txt new file mode 100644 index 0000000..db32c07 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/767-400_descriptions.txt @@ -0,0 +1,10 @@ +2220738.jpg A United Airlines 767-400 is captured in a side view, climbing at takeoff with a predominantly white fuselage featuring the signature blue and gold tail design, set against an airport runway and clear sky backdrop. +2204928.jpg The aircraft is a white 767-400 featuring a blue tail with a globe logo and "UNITED" in bold letters on the fuselage, viewed from the side on a snowy taxiway with a clear sky background. +1345042.jpg The aircraft, primarily white with a blue tail and red accents, is positioned in a side view on the tarmac with mountains in the distant background, emphasizing its elongated fuselage and prominent landing gear. +1521848.jpg The 767-400 in the image appears in a side view with a white fuselage adorned with the "Continental" logo and blue tail featuring a globe design, against a clear blue sky background. +1980188.jpg The 767-400 is depicted in flight from a side angle against a partly cloudy sky, featuring a sleek silver body with the "SkyTeam" logo, a dark blue tail fin adorned with a white emblem, and dark-colored engines. +1103084.jpg The aircraft, viewed from the side, is predominantly white with a blue tail featuring a globe logo, resting on a grassy runway with a partly cloudy sky in the background. +0936086.jpg The aircraft appears in a white livery with dark blue and red accents, viewed from the left side taxiing on an airport runway, with hills in the background and distinctive winglets visible on the tips. +1790505.jpg A white Delta aircraft with blue underbelly and engines is flying in a side view against a clear blue sky, featuring a red and blue tail fin design. +1810723.jpg The 767-400, painted in a white and blue livery with a prominent globe on the tail, is captured in a side view on a runway amidst grassy fields and distant trees. +1708101.jpg The 767-400 aircraft is viewed from a side angle in flight, displaying a white fuselage with blue and gold tail branding, against a clear blue sky with subtle cloud patterns below. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/777-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/777-200_descriptions.txt new file mode 100644 index 0000000..44db630 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/777-200_descriptions.txt @@ -0,0 +1,10 @@ +0752124.jpg The 777-200 appears in a side profile view with a white fuselage and blue accents, displaying the "Singapore Airlines" livery, set against a background of green trees and a gray runway, with visible winglets and engines beneath the wings. +0658068.jpg The 777-200 appears in a side profile view, showcasing a white fuselage accented by a blue tail and engine nacelles, against the backdrop of a clear sky and runway, with distinct airline branding visible on the tail and body. +0704510.jpg The Boeing 777-200 features a predominantly white fuselage with a blue tail adorned with a prominent starburst logo, viewed from the side as it approaches landing, set against a mountainous backdrop and a tarmac with another aircraft visible in the distance. +2172265.jpg The 777-200 aircraft features a predominantly white fuselage with a red and orange sunburst pattern on the engine nacelles and tail, viewed from the side in flight, set against a cloudy sky, with notable landing gear and wings extending. +1608837.jpg The Boeing 777-200 is in a side profile with landing gear down, featuring a smooth white body adorned with blue and red stripes on the tail, set against a clear blue sky. +0123345.jpg The 777-200, painted in predominantly white with green highlights and the Cathay Pacific logo, is viewed from the side against a backdrop of green mountains and urban buildings, with the aircraft's distinct elongated fuselage and raked wingtips clearly visible. +2084802.jpg The 777-200 aircraft is predominantly white with Emirates' branding and a red, green, and black striped tail, viewed from the side in mid-flight against a clear blue sky, displaying its extended landing gear and engines. +1706735.jpg The 777-200 appears in a classic British Airways livery with a white fuselage, a navy underside, and a distinctive red, white, and blue tail fin, captured in a side view against a clear blue sky as it is in a landing approach with landing gear visible. +2212065.jpg The 777-200 features a bold yellow and white livery with the "Scoot" logo prominently displayed, viewed from the side on a runway with a backdrop of airport buildings and trees, distinguished by its sleek fuselage and twin-engine configuration. +1792328.jpg The 777-200 is depicted in flight with a white fuselage featuring green and red accents, including a prominent logo on the tail fin, viewed from below against a clear sky, highlighting its twin-engine layout and landing gear extended amidst sparse clouds. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/777-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/777-300_descriptions.txt new file mode 100644 index 0000000..19929bc --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/777-300_descriptions.txt @@ -0,0 +1,10 @@ +1910714.jpg The 777-300 appears with a white fuselage featuring a red tail and logo, viewed from the side on a runway with a blurred green landscape and light haze in the background, prominently displaying its elongated body and multiple passenger windows. +1783026.jpg The 777-300 features a predominantly white fuselage with gold lettering and a red, green, and black tail design, captured in a side view just above the runway with visible mountain scenery in the background. +1557747.jpg The 777-300 appears in profile view with smooth, white fuselage bearing the Emirates logo, and its vertical stabilizer showcases red, green, and black colors against a clear blue sky background. +1620516.jpg The aircraft, a Boeing 777-300, is parked on a tarmac with a white fuselage featuring a red tail with white stars, viewed from the side against a backdrop of airport buildings and a control tower. +2015492.jpg The 777-300 features a white fuselage with blue accents and a blue tail with white lettering, viewed from the side on a runway at sunset, with distinct engines under the wings and a forested background. +0939993.jpg The 777-300, viewed from a side angle in flight against a partly cloudy sky, features a white fuselage with a distinctive teal and red tail design and clear wing and engine detailing despite the image's low resolution. +1857207.jpg The 777-300 appears predominantly white with bold "oneworld" branding, blue and red accents near the tail, viewed from the side on a grassy field with a clear sky backdrop and two engines under the wings. +2119860.jpg The 777-300 aircraft, with a primarily white fuselage accented by a blue stripe and featuring the ANA logo on the tail, is captured in a slightly upward angled side view, flying against a backdrop of dense gray and white clouds, with its landing gear extended. +1627991.jpg The 777-300 appears in a side profile view against a clear blue sky, featuring a white fuselage with blue text and a red tail fin emblazoned with a white emblem, and visible gear extended for landing. +2221303.jpg A Thai Airways 777-300 with a white fuselage and purple tail featuring gold and pink accents is captured from a rear side angle against a clear blue sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A300B4_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A300B4_descriptions.txt new file mode 100644 index 0000000..920658a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A300B4_descriptions.txt @@ -0,0 +1,10 @@ +1291894.jpg The A300B4 appears in a side view displaying a smooth, white fuselage with "MIDEX" branding, set against an airport tarmac environment with twilight lighting, featuring large round engines and a visible tail with distinctive markings. +0901506.jpg The A300B4 aircraft features a red and white exterior with distinct diagonal stripes, viewed from the side in mid-flight against a clear blue sky; its trademark two-engine design and the company's logo are prominently visible on the fuselage and tail, indicating its distinctive commercial branding. +1609206.jpg The A300B4 features a white fuselage with a purple tail displaying a yellow flower emblem, captured in a side view flying against a clear blue sky, with the landing gear extended and some visible registration markings on the fuselage. +0576242.jpg The A300B4 is captured in a side profile view flying against a blue sky with scattered clouds, featuring a white fuselage with a distinctive yellow sunburst logo and "SCANDIC" branding on the forward section, complemented by a blue and yellow tail fin. +0136190.jpg The low-resolution image displays a white and green A300B4 aircraft with "Channel Express" branding on its fuselage, seen from a side-view on a runway with a forested background, highlighting its wide body and classic twin-engine structure. +0584536.jpg The A300B4 is seen from a frontal viewpoint on a tarmac with its white fuselage featuring a blue tail, displaying a sleek, rounded nose and rectangular cockpit windows, set against a blurred backdrop of greenery and airport structures. +0812096.jpg The A300B4 is depicted in a side profile view, featuring a white fuselage with prominent teal and white branding on the tail and engines, set against a clear sky above a flat, grassy airfield with a distant treeline. +1423425.jpg The A300B4 in the image is a side-view of a white cargo aircraft with a blue tail and blue and red text on the fuselage, positioned on a tarmac with an airfield background, under a partly cloudy sky. +2252347.jpg The A300B4 is painted in vivid yellow with red DHL branding, captured in a side profile view during landing against a clear blue sky, with large white-engine nacelles and the signature high-mounted wings visible. +0768404.jpg The A300B4 appears in a side profile, flying against a cloudy sky with a white fuselage marked with "ACS" and a dark blue tail fin, located above a nondescript urban environment featuring low buildings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A310_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A310_descriptions.txt new file mode 100644 index 0000000..1235de3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A310_descriptions.txt @@ -0,0 +1,10 @@ +1313523.jpg The A310 features a white fuselage with red and orange accents, notably the Air India design on the tail and engines, viewed from the side in flight against a clear blue sky. +2221716.jpg The A310, viewed from above in a desert environment, features a predominantly white fuselage with the words "flywhite.com" and "white" in large letters, complemented by a distinctive red engine, grey wings, and a visible vertical stabilizer showcasing a contrasting grey color. +1561989.jpg The A310 in the image features a white fuselage with blue diagonal stripes and a blue tail, seen from a side view in flight against a cloudy sky backdrop, showcasing its twin-engine configuration and classic wing-mounted engines. +1027362.jpg The A310 appears white with blue accents and a logo near the tail, showing a side view with landing gear extended and a cloudy sky as the background. +0829651.jpg The A310 appears in a side profile view with a predominantly white fuselage featuring a red tail and accents, bearing the "Air Djibouti" logo, against a backdrop of a cloudy sky, with visible landing gear and engines under the wings. +2067976.jpg The A310, viewed from the side, features a white fuselage with a blue geometric tail design and logo, against an airport tarmac with industrial buildings in the background, distinctive for its two engines and colorful airline branding. +1583433.jpg The image shows an airplane with a faded white and pink color scheme, parked on an airport tarmac visible from the side, featuring a prominent pink tail fin with a gold fleur-de-lis and engines slightly darker than the fuselage, with a control tower and clear sky in the background. +1758544.jpg The A310 in the image appears in a side profile view against a clear blue sky and grass runway, with a sleek white fuselage, smoothly contoured body, and visible engines under the wings. +1555111.jpg The A310, painted in a white and red Air India Cargo livery with an orange and red sunburst on the tail and engine covers, is positioned on a runway in a side view against a blurred airport background and grassy foreground. +0438661.jpg The A310 appears in a light-colored livery with blue branding on the fuselage, captured in a rear-side view during takeoff with a control tower and a flat, grassy landscape in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A318_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A318_descriptions.txt new file mode 100644 index 0000000..2e5aafe --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A318_descriptions.txt @@ -0,0 +1,10 @@ +1658655.jpg The Airbus A318 appears in a side view ascending against a clear blue sky, featuring a predominantly white fuselage with large green lettering and a distinct animal image on the tail, and visible accumulated texture of the wings and engines. +1302677.jpg An Airbus A318 with a white fuselage and blue accents, displaying the Air France livery, is captured in a side view on a runway with a clear sky and grassy surroundings, highlighting its short frame and distinctive engine mounts. +1981975.jpg The A318 in the image features a white body with dark blue accents and markings, viewed in a side profile on a runway with a lush green landscape in the background and displaying distinctive airline branding and winglets. +0458784.jpg The A318 in the image is predominantly white with a striking blue and orange tail featuring bold "A318" lettering, viewed in profile as it taxis on an airport runway, set against a clear sky and green grass in the background. +1355481.jpg A white A318 with blue and yellow stripes is positioned on a rain-soaked tarmac facing left, against a backdrop of grassy fields and a tree-lined horizon. +1380336.jpg The A318 is seen from a side view in flight, featuring a white fuselage with blue accents and a logo, and a cityscape with modern buildings in the background. +0481842.jpg The A318 is captured in a side view on a runway with a white fuselage featuring large green lettering and a tail displaying a detailed nature-themed image against a backdrop of dry, grassy plains and distant hills. +0934705.jpg The low-resolution image shows a white A318 with blue and red tail fin stripes, seen from a side angle on a taxiway with grassy fields and distant trees in the background. +0505611.jpg The A318 in the image is primarily white with distinct gray branding and a rabbit-themed tail, captured from a side view on a runway with an airport and hilly cityscape in the background. +1686856.jpg The A318 aircraft is primarily white with blue and red accents, viewed from a side angle during flight, featuring the Air France livery against a neutral sky backdrop, with landing gear extended and notable for its compact fuselage and distinctive vertical stabilizer design. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A319_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A319_descriptions.txt new file mode 100644 index 0000000..80c31be --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A319_descriptions.txt @@ -0,0 +1,10 @@ +1783696.jpg The Airbus A319 is predominantly white with bold black "STAR ALLIANCE" text across its fuselage, featuring a distinctive black tail with a white star logo and is positioned on a tarmac with a grassy field and distant structures in the background, viewed from the side showcasing its left wing and two engines. +2133746.jpg The A319 features a white fuselage with blue wave-like stripes, visible landing gear, and wingtips viewed from a side angle against a clear blue sky. +0973383.jpg The A319 aircraft features a white fuselage with a blue underbelly and a distinctive red and blue checkerboard tail design, viewed from the side in flight against a clear blue sky, highlighting its landing gear and wing details. +1589410.jpg The A319 is painted white with a blue tail displaying a yellow logo, positioned on a grassy airport field with mountains and a cloudy sky in the background, viewed from the side with visible landing gear and engines. +1327284.jpg The A319 displays a blue and white livery with a bird logo on the tail, captured from a side view in-flight against a clear sky, revealing the distinctive engines under the wings and extended landing gear. +1300487.jpg The A319 has a predominantly white fuselage with blue accents and Azerbaijan Airlines branding, viewed in a right side profile with clear text and logo, set against a clear blue sky and grassy airfield background. +1363952.jpg The A319 is predominantly white with a blue tail featuring a red and gold logo, seen from a side view as it glides against a backdrop of fluffy, overcast clouds, with its landing gear extended and two engines visible under the wings. +1564781.jpg The A319 features a white fuselage with a colorful pixelated tail logo and a prominent red and white 'Supreme' decal, captured in a side view landing stance against a backdrop of trees, with another aircraft in the background on the runway. +1671731.jpg The A319 features a sleek, metallic silver body with prominent red and white "NIKI" branding, seen from a side angle during takeoff against a snowy mountain backdrop, showcasing extended landing gear and distinct winglet details. +2088369.jpg The A319 is painted in a light gray and yellow scheme with "germanwings" branding, seen in a side profile view on a tarmac against a clear sky and airport equipment in the background, with distinctive winglets and engines aligned beneath the wings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A320_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A320_descriptions.txt new file mode 100644 index 0000000..d3c873a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A320_descriptions.txt @@ -0,0 +1,10 @@ +0274254.jpg An A320 in a predominantly white livery with a bold, blue logo on the fuselage and a star-emblazoned dark blue tail is viewed in flight from the side against a backdrop of water and greenery, with the landing gear extended and preparing to land on a runway. +1110808.jpg The A320 is depicted in a lateral view with white fuselage and a teal tail fin featuring a stylized bird logo, set against a clear blue sky, and is equipped with extended landing gear during flight. +1683877.jpg The A320 appears in mid-flight with a predominantly white fuselage, featuring the word "FRONTIER" in large grey letters and a distinctive wildlife tail design against a clear blue sky background, highlighting its side profile. +1320095.jpg The A320 is viewed from a side angle on an airport tarmac, painted in a white livery with red accents on the tail and a blue airline logo, against a forested background under overcast skies. +0923532.jpg The A320 is painted white with green accents, featuring the "Mahan Air" branding on the fuselage, viewed in a side profile on an airport tarmac with a mountainous background under a clear sky. +0851314.jpg The A320 features a sleek navy blue and light gray fuselage with a gold lion emblem on the tail, captured from a side profile on a tarmac with a mountainous, forested background. +2236969.jpg The A320 is painted in a vibrant red with prominent white branding, viewed from a side profile showing its two engines and undercarriage against a grassy runway background and clear sky. +2008530.jpg The A320 appears in a side view on a tarmac, predominantly white with blue accents and logo on the tail, featuring a clean, streamlined body against a hazy airport backdrop with yellow barriers. +1553898.jpg The A320 is predominantly white with green and red stripes, viewed laterally from the side, positioned on a runway with grass in the foreground and a clear blue sky above, featuring distinctive logos on the fuselage and vertical stabilizer. +1980084.jpg The A320 is painted white with a blue underbelly and tail featuring red accents, seen in a climbing position against a clear blue sky, and displays distinct wing-mounted engines and a branded livery. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A321_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A321_descriptions.txt new file mode 100644 index 0000000..2a5f6fc --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A321_descriptions.txt @@ -0,0 +1,10 @@ +2206288.jpg The A321 in the foreground is predominantly white with a vivid green, red, and yellow tail and engine decals, viewed from a side angle on a runway with grass and a parked British Airways aircraft in the background, featuring a smooth texture and sharp typography. +1207261.jpg The A321 appears in a side view in mid-flight against a clear sky, exhibiting a white fuselage with "airblue" branding in blue, complemented by a distinctive blue tail fin featuring a crescent moon pattern. +1598389.jpg A white airplane with turquoise accents along the engines and logo is captured in a left-side view against a backdrop of cloudy skies, featuring a sleek, elongated body and visible landing gear extending downward. +0851313.jpg The A321 is painted white with a distinct red "Leisure" logo on the side, complemented by a stylized British flag on the tail, viewed in profile against a backdrop of forested mountains and clear skies, with landing gear extended on the runway. +2008019.jpg The A321 has a white body with red accents, featuring "atlasjet" in large red letters and a "10 Year" emblem near the tail, against a clear blue sky, captured in profile view during flight with visible landing gear extended. +1616512.jpg The A321 features a white fuselage with a prominent red and blue tail design, viewed from the side as it taxis on a runway with a forested background. +2221573.jpg The A321 appears in an overhead view with a smooth beige fuselage, a dark blue tail featuring a golden emblem, against a gray airport tarmac with yellow taxiway markings. +2031397.jpg The A321 appears in a left-side profile, featuring a clean white fuselage with "STAR ALLIANCE" branding in large black letters, a dark blue tail with a star emblem, a smooth texture, and is set against a clear blue sky. +1255792.jpg The A321 displays a white fuselage with "Spanair" branding in blue on the side, viewed in profile against a clear blue sky, featuring a subtle gradient logo on the tail and dark-colored engines underneath the wings. +1599803.jpg The Airbus A321 in the image features a predominantly white fuselage with gray underbelly, a bold horizontal red, blue, and yellow design on the tail fin, viewed in profile on the tarmac of an airport with multiple terminal buildings and distant aircraft in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A330-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A330-200_descriptions.txt new file mode 100644 index 0000000..b9af1e6 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A330-200_descriptions.txt @@ -0,0 +1,10 @@ +2239590.jpg The A330-200, viewed from the side against a cloudy sky, features a vibrant red-orange livery with white accents on the fuselage and tail fin, and displays its retracted landing gear in flight. +1292389.jpg The A330-200 is painted in green and white, featuring a distinct logo on its tail, captured in profile view against a clear blue sky, with landing gear deployed during approach. +2238330.jpg The A330-200 is predominantly white with a blue tail and underbelly, featuring the "Livingston" branding in blue on the fuselage, shown in a side view against a clear sky with landing gear deployed and bird motifs on the tail and engine. +2260895.jpg The A330-200 in the image features a white and blue livery with prominent red circular accents on the tail, seen from a low angle capturing an upward climb against a clear blue sky. +1585032.jpg The A330-200 displays a vibrant red and white livery with "airberlin" branding, viewed from the side on a tarmac with a cityscape and trees in the background, featuring distinctive red winglets and a white tail with a prominent logo. +1355622.jpg The A330-200 in the image is a white body aircraft featuring blue and orange branding on the tail and fuselage, viewed from a side angle against a clear sky as background, with distinctive winglets and landing gears deployed. +1251686.jpg The Airbus A330-200 appears in a front-on view with a white fuselage featuring a centralized airline logo, a sleek nose, and twin engines beneath the wings, set against an overcast sky and industrial background. +0257026.jpg The A330-200, viewed from the side in mid-air, displays a predominantly white fuselage with distinctive gold and black accents and a logo on the tail, set against a clear blue sky and a forested landscape. +1870658.jpg The A330-200 appears in profile view with a smooth, dark teal body and a large golden lotus logo on the tail fin, resting on a tarmac with other airplanes and airport structures in the distant background. +0783815.jpg The A330-200 is painted in a clean white with red accents, prominently displaying the Swiss logo, photographed from a side angle at an airport with a terminal and snow-dusted trees in the background, featuring distinctive winglets and a twin-engine layout. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A330-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A330-300_descriptions.txt new file mode 100644 index 0000000..249cbcd --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A330-300_descriptions.txt @@ -0,0 +1,10 @@ +1885667.jpg The A330-300 appears in a side view on a tarmac, featuring a white fuselage with "oneworld" branding and a Cathay Pacific logo on the tail, set against a backdrop of airport buildings and trees. +1921652.jpg The A330-300 features a predominantly white fuselage with red and yellow accents, seen in side profile during landing, against an airport runway and terminal buildings in the background. +0744232.jpg The A330-300 is viewed from the side on a runway with a sandy, arid background, featuring a white fuselage with a prominent "MyTravel" logo, blue and red accents, and blue engines and tail. +1584007.jpg The A330-300 in the image is predominantly white with a green tail and red accents, viewed in a side profile on a runway with clear skies and grassy terrain in the background. +0454744.jpg The image shows an A330-300 aircraft viewed from the side on a clear day, featuring a white fuselage with dark blue engine nacelles and tail fin, distinctive airline branding near the front, against a backdrop of open grass and a clear sky. +1545070.jpg The A330-300 features a white fuselage with a blue stripe along the bottom and a prominent pink floral logo on the tail, captured in a side view during takeoff at an airport, against a backdrop of greenery and distant mountains. +0857160.jpg The A330-300 is predominantly white with a blue tail featuring a dot pattern and engines, viewed from a front-left angle on an airport runway, with construction cranes and greenery in the distant background. +0100207.jpg The A330-300 appears with a white fuselage featuring "Premiair" branding and a distinctive blue tail with an abstract emblem, captured at a side angle on a hazy day with an airport hangar and grassy foreground in the background. +2241971.jpg The A330-300 is painted in a white livery with red and yellow accents, viewed from the side on a runway with grass surrounding the tarmac, and features a prominent red tail with a yellow swirl design and clear branding on the fuselage. +2084967.jpg The A330-300 appears in cream and blue livery with visible landing gear extended, viewed from below and to the side against a clear blue sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A340-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A340-200_descriptions.txt new file mode 100644 index 0000000..8d236ff --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A340-200_descriptions.txt @@ -0,0 +1,10 @@ +0523012.jpg The A340-200 in the image features a white fuselage with a red and white tail fin marked by an emblem, viewed from a side angle against a clear blue sky, with distinctive four-engine layout and clean lines. +1223334.jpg The A340-200 appears in white with distinct black lettering and colorful tail markings, viewed in profile mid-flight against a clear blue sky, featuring four engines and sleek wings. +1111277.jpg The A340-200 is painted in blue and white with the Aerolíneas Argentinas livery, viewed from the side with its landing gear down against a backdrop of cloudy sky, displaying distinct four-engine configuration and a streamlined fuselage. +0799600.jpg The A340-200 is seen from below, flying against a clear sky, featuring a deep blue and black fuselage with gold and red detailing, complemented by distinctive white underwings and four visible engines. +1446249.jpg The A340-200 is captured in a side profile during flight against a clear blue sky, featuring a white body with a colorful tail displaying a green, red, yellow, and blue design, and is equipped with four engines beneath its wings. +1266977.jpg The A340-200 is viewed from the side against a partly cloudy sky, featuring a white body with blue accents and text, a four-engine configuration, and a sleek fuselage design. +0849197.jpg The A340-200 is captured in a clear sky, banking slightly to the right, with a white and blue color scheme featuring prominent airline branding along the fuselage, displaying four visible engines beneath its wings, and wings slightly angled upwards, set against a smooth blue sky background. +0072870.jpg The A340-200 is white with a colorful tail logo, viewed from the side on a runway, featuring four engines beneath its wings and a distant urban backdrop. +0996579.jpg The A340-200 is viewed from the side against a clear sky, featuring a predominantly white fuselage with blue accents on the tail and engine nacelles, visible winglets, and a bird flying in the background. +0136500.jpg The A340-200 appears in a rear three-quarter view with a white fuselage and dark tail, taking off against a cloudy sky with a forested horizon, showcasing four engines and a long, sleek body. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A340-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A340-300_descriptions.txt new file mode 100644 index 0000000..49b60c8 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A340-300_descriptions.txt @@ -0,0 +1,10 @@ +0966176.jpg The A340-300 in the image is predominantly white with the Air Namibia logo and a colorful tail fin, seen in a side view as it is taking off against a backdrop of a blurred cityscape and an overcast sky. +0710650.jpg The A340-300, viewed from the side against a clear blue sky, features a white fuselage with a blue stripe and Olympic Rings logo, while its landing gear is deployed and the text "OLYMPIC" is visible along the body. +0174852.jpg The A340-300 appears predominantly white with a red tail featuring a logo, captured from the side during takeoff against a clear blue sky and distant industrial buildings. +1469661.jpg The A340-300 appears in an airborne pose against a clear sky background, featuring a white fuselage with "Philippines" text and a multicolored tail fin design. +0529811.jpg The A340-300 is depicted in flight against a hazy sunset cityscape, featuring a clean white fuselage with "SWISS" branding and a red tail fin adorned with a white cross, viewed from a side angle with extended landing gear and illuminated windows. +0066413.jpg The A340-300, viewed from the side on an airport tarmac, features a predominantly white exterior with blue and orange tail markings, a sleek fuselage supported by four visible engines, set against a clear, overcast sky and distant airport infrastructure. +2175375.jpg The A340-300 is shown flying against a clear sky backdrop, predominantly painted in white with a sleek texture, featuring a distinctive horizontal tricolor stripe and national emblem on the vertical stabilizer, viewed from the side with its landing gear extended. +2124076.jpg The A340-300 is captured in a side profile on a runway, featuring a white fuselage with a distinctive blue logo and text, set against a background of clear blue water and a yellow ship, with the airport tarmac showing texture and alignment markings. +2068053.jpg The A340-300 is parked on a tarmac with a white fuselage featuring a vivid green, red, and white tail design, viewed in profile against a clear blue sky and distant buildings in a low-resolution image. +0738965.jpg The A340-300 is captured in a right-side profile, descending against a clear blue sky, with a white fuselage adorned with a blue and gold stripe, and its distinct four-engine configuration prominently displayed along the wings, while the vertical stabilizer features a striking gold logo. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A340-500_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A340-500_descriptions.txt new file mode 100644 index 0000000..814c28c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A340-500_descriptions.txt @@ -0,0 +1,10 @@ +0936118.jpg The A340-500 appears in a side view with a white fuselage featuring "Emirates" branding in large gold letters, a smooth texture with four engines under the wings, set against a clear blue sky with its landing gear visible below. +0727643.jpg The image shows a white A340-500 aircraft with a smooth texture and distinctive large wing span, viewed from below against a clear blue sky, displaying the Emirates livery with red, green, and black tail colors, and a slight upward angle revealing the landing gear and nose. +2222666.jpg The A340-500 is painted white with red, green, and black stripes on the tail and features the "Emirates" logo in gold on the fuselage, viewed from the side on an airport tarmac, with a distinctive long fuselage and four engines visible against a backdrop of terminal buildings and another aircraft. +1136154.jpg The A340-500 in the image is painted white with "Emirates" in gold lettering, featuring the UAE flag colors on the tail fin, positioned in a side profile viewpoint on a runway with a clear sky and distant landscape in the background, and characterized by its long fuselage and four-engine layout. +0896575.jpg The A340-500 is painted predominantly white with notable red, green, and black stripes on the vertical stabilizer, viewed in an upward angle showing the aircraft climbing against a clear blue sky, featuring four jet engines beneath the wings and prominent gold lettering on the fuselage. +1633998.jpg The A340-500 is shown in a side profile with a cream-colored fuselage and green, white, red, and black tail fin livery, featuring Arabic text, against a clear blue sky with landing gear deployed. +1081563.jpg The A340-500, viewed from the side in flight against a clear sky, features a sleek white fuselage with a prominent "Emirates" logo, a long, quad-engine configuration beneath the wings, and a distinctive red, green, and black tail design. +1103339.jpg The A340-500 appears in a side view with a predominantly white fuselage featuring the Emirates livery and a vibrant red, green, and black tail design, flying against a clear blue sky with a cloud in the background. +1708096.jpg The A340-500 is depicted in a side view flying against a clear sky, featuring a white fuselage with a distinct purple tail adorned with a gold and pink emblem, and the airline's name marked in bold letters near the front. +1218928.jpg The A340-500 is painted in a sleek white with a notable red, green, and black tail design, viewed from the side in flight against a clear sky with minimal clouds, showcasing its four engines and extended fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A340-600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A340-600_descriptions.txt new file mode 100644 index 0000000..fb28203 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A340-600_descriptions.txt @@ -0,0 +1,10 @@ +1364591.jpg The A340-600, viewed from the side in flight against a clear blue sky, features a white fuselage with a prominent red and yellow horizontal stripe and bold airline branding along the body, complemented by four engines under its long, slender wings and a distinct vertical stabilizer with a colorful emblem. +1787740.jpg The A340-600 appears in a side profile with a white body and a red stripe along the windows, featuring sleek, extended wings and four engines, set against a green grass foreground and a cloudy blue sky background. +0418967.jpg A yellow Airbus A340-600 with unpainted wings and engines is parked on an airport tarmac, viewed from the side, with a hangar labeled "Lufthansa" in the background. +1723906.jpg The A340-600 is in a side profile view against a grassy foreground, displaying a white fuselage with maroon "Qatar" branding and a maroon tail logo, complemented by four engines under its wings set against a clear sky. +0369472.jpg The A340-600 is viewed head-on in a light gray color with a smooth texture, featuring four engines and a recognizable tail logo, set on an airport tarmac with overcast skies and other aircraft in the background. +1263090.jpg The A340-600 features a vibrant livery with green, orange, and blue sections adorned with "Better Life" text and "Expo Shanghai China" logo, viewed prominently from a close side angle against an industrial backdrop with grass and structural elements. +1390327.jpg The A340-600, viewed from the side in flight, features a white fuselage with green and red tail branding, four underwing engines, and is set against a clear blue sky with landing gear deployed. +1233628.jpg The A340-600 aircraft appears in a forward-facing pose on a wet tarmac, featuring a white fuselage with a blue, red, and gold stripe, red and green tail emblem, and Chinese characters on the side, set against a cloudy sky and airport fencing in the background. +1840139.jpg The A340-600 is in a side-view pose with a smooth white body and red accents on the tail, engine nacelles, and wingtips, featuring a "Virgin Atlantic" logo, flying against a backdrop of mountains and clear sky above a distant shoreline. +1420117.jpg The A340-600 is depicted in a side view against a grassy runway backdrop, featuring a sleek white fuselage with a dark blue tail adorned with a yellow logo, complemented by multiple passenger windows and four engines mounted under straight wings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/A380_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/A380_descriptions.txt new file mode 100644 index 0000000..e7813f5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/A380_descriptions.txt @@ -0,0 +1,10 @@ +1891966.jpg The A380 is seen from a side view on an airport runway in a cityscape setting, featuring a predominantly white body with a prominent red, green, and black tail fin, and the airline logo in gold, alongside visible engines and landing gear. +1948194.jpg The image shows a close-up, angled view of the white wing of an A380 with visible engine nacelles, set against a densely detailed urban landscape below, highlighting the aircraft's sleek and expansive design despite low resolution. +1979061.jpg A Lufthansa Airbus A380 with a white fuselage, blue tail fin marked with the yellow company logo, is captured in a left side view as it taxis on a green grass-bordered runway with a clear blue sky and distant airport activity in the background. +2026616.jpg The A380 is painted in a blue and white livery with sleek textures, viewed from a side angle on a runway with a clear blue sky and grassy airfield in the background, featuring the distinct Singapore Airlines logo on the tail fin. +2235142.jpg The A380, in white with a prominent Singapore Airlines livery, is viewed from a side angle at an airport terminal with surrounding ground service vehicles and distant airport infrastructure in the background. +1855197.jpg The A380 is predominantly white with a smooth texture, displaying the "AIRFRANCE" branding and tricolor stripes on the tail, viewed from the side with a clear blue sky background and positioned on a runway beside large hangars. +1855337.jpg The A380 is predominantly white with a dark blue tail featuring a yellow circle, viewed from the side on a runway with a clear sky and distant aircraft in the background, showcasing its massive two-deck structure and distinctive four-engine configuration. +1879734.jpg The A380 is in a front-facing landing position against a backdrop of partly cloudy sky, showcasing a white body with a clean texture, visible engines under the wings, and landing gear extended. +2218512.jpg The A380 is painted in a predominantly white color with a dark blue tail and engine nacelles featuring a golden logo, viewed in a left side profile against a clear sky, as it approaches for landing with its landing gear extended. +2215392.jpg The A380 in the image is predominantly white with purple accents and a gold logo, viewed from the side in flight against a clear blue sky, showcasing its massive size and distinct four-engine layout. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/ATR-42_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/ATR-42_descriptions.txt new file mode 100644 index 0000000..98253ca --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/ATR-42_descriptions.txt @@ -0,0 +1,10 @@ +0454780.jpg The ATR-42 in the image is predominantly white and blue with orange stripes, viewed from a side angle on a wet tarmac, featuring twin turboprop engines and having grassy fields and another aircraft's tail in the background. +1110774.jpg The ATR-42 is depicted in a left side profile, mid-flight against a clear blue sky, with a predominantly white fuselage featuring blue and red accents, a textured surface with visible panel lines, prominent propellers attached to each wing, and distinctive airline branding on the tail. +1557910.jpg The ATR-42 is shown in a frontal view with a light gray body and a distinctive Air France livery focused against a clear blue sky, featuring prominent dual propellers and extended landing gear. +0064202.jpg The ATR-42 in the image appears as a silhouetted aircraft in flight against a hazy, sepia-toned sky, viewed from a side angle, with discernible wings and dual engines, set against a distant tree-lined horizon and a dark runway below. +1093637.jpg A low-resolution image of an ATR-42 shows an airplane with a white fuselage adorned with blue and black geometric stripes, viewed from the side on an airport tarmac, with its engines and propellers visible against an urban background. +1116281.jpg The ATR-42 aircraft, photographed in flight from a side angle, features a blue and white color scheme with a notable logo on the tail and “TAROM” branding on the fuselage, set against a clear blue sky. +0967812.jpg An ATR-42 aircraft, viewed from the side, is painted in white with teal accents and the "Air Dolomiti" logo, featuring distinctive high wings and twin turboprop engines, set against a blurred airport runway and forested background. +0167073.jpg The ATR-42 in the image is painted with a blue and white livery featuring the KLM logo, viewed from the left side on a grassy runway against an airport background with its distinct high-wing, twin-turboprop design clearly visible. +1404365.jpg The ATR-42 in the image is painted white with red accents and bears the "GUARDIA COSTIERA" livery, viewed from the side on an airport tarmac with its distinctive high-wing, twin-engine turboprop contrasted against a cloudy sky backdrop. +1726753.jpg The ATR-42 in the image is viewed from below at an angle against a clear sky, displaying a white fuselage with blue, red, and gray stripes, a logo on the tail, and distinct propellers on each wing. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/ATR-72_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/ATR-72_descriptions.txt new file mode 100644 index 0000000..15312dc --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/ATR-72_descriptions.txt @@ -0,0 +1,10 @@ +0136161.jpg The ATR-72 appears in a side view with a blue and white livery, featuring twin propellers, rolling on a runway with grassy surroundings and an overcast sky in the background. +0155603.jpg The ATR-72 in the image is predominantly white with a dark blue and white tail and engine nacelle, viewed from the side with its landing gear on a runway, against a backdrop of grass, a narrow strip of beach, and the ocean in the distance. +2132459.jpg The ATR-72 is flying in a side view against a clear blue sky, displaying a vibrant orange and white color scheme with "firefly" logos, featuring a high-wing design and twin-engine propellers. +0957905.jpg The ATR-72 is viewed from the side flying left to right, painted in white with blue and red stripes on the tail and the "Air France" logo, set against a clear blue sky background. +2188370.jpg The ATR-72 in the image is painted predominantly white with red, orange, and yellow accents, viewed from the side on a runway with an airport terminal and another aircraft in the background, featuring its two propellers and distinctive fuselage livery. +0952519.jpg The ATR-72 features a white fuselage with a blue tail adorned with a tropical flower, a side view showing two propeller engines, and is positioned on an airport tarmac bordered by grass and trees in the background. +2072219.jpg A white ATR-72 with blue and red branding is viewed from the side in flight against a clear blue sky, featuring a red tailfin, black nose cone, and retractable landing gear. +1459119.jpg The ATR-72 is shown in a left side view with a red and white color scheme featuring a striking horizontal stripe, set against a clear blue sky background, notable for its twin-engine turboprop design with a prominent tail logo. +1157334.jpg The ATR-72 in the image has a white fuselage with a blue stripe along the windows, seen from a side view against a clear blue sky, with distinguishable features like twin engine propellers and a distinctive curved tail fin with a logo. +1992926.jpg The ATR-72 in the image is predominantly white with a blue tail fin, featuring the airline's logo, seen in a side view with its landing gear deployed against a clear blue sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/An-12_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/An-12_descriptions.txt new file mode 100644 index 0000000..7bec4db --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/An-12_descriptions.txt @@ -0,0 +1,10 @@ +1270710.jpg The An-12 is shown in a side view flying position against a clear blue sky, featuring a clean white fuselage with blue propeller tips, marked with "UN-11014" and a visible ATMA logo near the nose. +1639638.jpg An aging An-12 aircraft, viewed from the side, shows its weathered white and light gray exterior with visible rust and dirt streaks, parked on a grassy area with a fence nearby and a control tower in the background under a clear sky. +1008572.jpg The An-12 appears in the image with a white fuselage and a red stripe near the tail, viewed from the side against a cloudy sky, featuring blue propeller tips and green landing gear, with distinctive round windows and a visible emblem on the tail fin. +0885174.jpg The An-12 in the low-resolution photo is a white cargo aircraft with blue accents, captured in a side profile on the ground, featuring four propeller engines and a grassy runway with industrial buildings in the background. +2120028.jpg The An-12 aircraft appears in white with a red stripe along the fuselage, viewed from a frontal-left angle, featuring its distinctive four turboprop engines and set against a clear blue sky. +1198418.jpg The An-12 is depicted in a side view flying against a clear sky, showcasing a predominantly white fuselage with a slightly weathered texture, blue-tipped propellers, and distinct registration markings on the tail. +1274803.jpg The An-12 has a light gray body with a long blue stripe running along its fuselage, viewed from the side, with distinct four-engine propellers and a T-tail, set against a blurred grassy and wooded landscape on a runway backdrop. +0793020.jpg The An-12 is viewed from the side against a cloudy sky, showcasing its gray fuselage with black propellers, high-mounted wings, and prominent landing gear compartments on the underside. +1291069.jpg The An-12 is viewed from the side against a grass-covered runway, featuring a clean white fuselage with a prominent red stripe along the middle, four visible propeller engines, and a clear sky above. +1098896.jpg The An-12 appears in a side profile flight pose with a light gray body, a distinctive blue stripe along the fuselage, dark propeller blades, green landing gear, and a clear sky in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/BAE-125_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/BAE-125_descriptions.txt new file mode 100644 index 0000000..042ff06 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/BAE-125_descriptions.txt @@ -0,0 +1,10 @@ +1216808.jpg The BAE-125 is a sleek, white jet with streamlined red and black stripes, viewed from the side in a landing pose against a clear blue sky, distinguished by its swept-back wings and twin engines mounted at the rear. +1563979.jpg A white BAE-125 is captured in a side profile on a runway, with a prominent grey stripe along the fuselage, under a partly cloudy sky with industrial structures and greenery in the background. +0757655.jpg The BAE-125 in the image is a sleek, white jet with gold and black accent lines, captured in a side view taxiing on a runway beside a blurred, grassy field and a distant suburban backdrop, displaying its distinct smooth fuselage and sharp, pointed nose. +1030259.jpg The BAE-125 is depicted in a side profile against an overcast sky, featuring a white and light blue fuselage with a gold stripe, highlighting its sleek design and engine nacelles, set on an airport tarmac with a runway and control tower in the distant background. +1234384.jpg The BAE-125 in the image is a white jet with blue and red stripes, viewed from the side on a runway, featuring a sleek fuselage and distinctive T-tail against a backdrop of grass and overcast sky. +0741746.jpg The BAE-125 is a sleek white jet with subtle maroon accents, viewed from the side against a blurry runway and overcast background, featuring rounded windows and slender wings with winglets. +1795167.jpg The aircraft, a BAE-125, is viewed from the left side in flight against a clear blue sky, featuring a white fuselage with a horizontal stripe in a contrasting darker color, and its twin engines mounted below the wings. +1006795.jpg The BAE-125 is shown in a side view with a sleek white and blue exterior, featuring a streamlined fuselage and engines mounted mid-wing, as it prepares to land on a runway flanked by grassy fields and distant trees. +1417777.jpg The BAE-125 jet is viewed from below at an angle, featuring a sleek white body with prominent red and black stripes, and the landing gear extended, set against a clear blue sky. +1662815.jpg The BAE-125 jet is white with dark blue stripes, viewed in profile on a wet tarmac, with a background of overcast skies and distant fencing. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/BAE_146-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/BAE_146-200_descriptions.txt new file mode 100644 index 0000000..da29356 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/BAE_146-200_descriptions.txt @@ -0,0 +1,10 @@ +1111339.jpg The BAE 146-200 features a predominantly white fuselage with red and blue accents and a distinct logo near the tail, captured from a side angle in flight against a clear sky. +1212178.jpg The BAE 146-200 is viewed from the side in flight against a clear blue sky, featuring a predominantly white fuselage with a red and blue logo on the tail and the "belleair" branding visible, complemented by its distinctive high-wing design and four underwing engines. +0336468.jpg The BAE 146-200 aircraft is primarily orange with a white tail and fuselage bearing the "TNT" logo, viewed in a side profile on an airport tarmac with a cloudy sky background and distant hills. +1255846.jpg The BAE 146-200 in the image is white with Brussels Airlines branding, viewed from the side against a cloudy sky, featuring a T-tail and four underwing engines. +1084922.jpg The BAE 146-200 in the image is a white aircraft with prominent blue "flybe" branding on the fuselage, viewed from the side in flight against a cloudy sky, featuring a T-tail and high-wing configuration with four engines mounted under the wings. +0713739.jpg The BAE 146-200 is shown in a left-side profile with a white body, dark green tail, and bold red graphics, flying against a clear blue sky, and features four compact jet engines under its wings. +0922639.jpg The BAE 146-200 features a predominantly white fuselage with blue and yellow accents and winglets, viewed from a side perspective in flight against a clear blue sky, with notable features including the high-wing configuration and four-engine setup. +1937250.jpg The BAE 146-200 is captured in a side-on view on a runway, featuring a white fuselage with red and gray accents, city branding near the cockpit, and a bright red tail fin, set against a clear sky and grassy field background. +1781350.jpg The BAE 146-200 in the image is predominantly white with a blue tail displaying a sunset logo, photographed from below at an angle during flight, against a cloudy sky, highlighting its four-engine design and distinctive high wing configuration. +1159626.jpg The BAE 146-200 in the image is predominantly white with a distinct dark blue tail featuring a pattern of yellow circles, viewed from a slightly elevated angle on a tarmac with a grassy background, with its characteristic high-wing design and four-engine configuration visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/BAE_146-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/BAE_146-300_descriptions.txt new file mode 100644 index 0000000..932a37f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/BAE_146-300_descriptions.txt @@ -0,0 +1,10 @@ +0809054.jpg The BAE 146-300 is seen in a side profile on a gray tarmac with a white fuselage and blue and red tail fin, primarily white color scheme, set against a forested backdrop with faint cloud cover, featuring its distinctive four-engine configuration. +1902199.jpg A white BAE 146-300 with a red tail featuring a white cross is captured in a left-side view on a tarmac with grass and airport structures in the background. +1289187.jpg This BAE 146-300 is seen from a broadside viewpoint on a runway, featuring a white fuselage with large blue "flybe" branding on the side, complemented by a subtle overcast sky and green grass in the background. +0134592.jpg The BAE 146-300 in the image is predominantly white with "British" and "BAF" branding, viewed from the side on a tarmac, featuring a high-wing design with four engines underwing and a distinctive T-tail, with a blurred airport environment in the background. +0758359.jpg The BAE 146-300 appears in a clean white livery with "FLIGHTLINE" written on the fuselage, viewed from a side angle on the tarmac, highlighting its high-wing design and distinctive four-engine layout against an airport backdrop with a large hangar. +0647819.jpg The BAE 146-300 aircraft, viewed from a three-quarters angle in a desert environment, is primarily white with a prominent green upper half, featuring distinctive high-mounted wings with four engines and a T-tail design. +0412779.jpg The BAE 146-300 is depicted in a side profile on a runway with a sleek grey and blue livery, featuring a red and blue tail logo, against a clear sky and distant treeline background. +1549188.jpg The BAE 146-300 in the image has a white fuselage with blue and orange branding, featuring a T-tail and high-wing design, visible from a side-on runway angle with a mountainous and forested background. +0077518.jpg The BAE 146-300 in the image is predominantly white with "crossair" branding, viewed from the side on an airport taxiway against a backdrop of sparse trees and a hangar, featuring its distinctive high-wing design and four small underwing engines. +1100462.jpg The BAE 146-300 appears in flight with a white fuselage and blue tail adorned with a spiral design, showcasing the "SN Brussels Airlines" livery against a cloudy sky backdrop, with distinctive high wings and four jet engines under the wings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Beechcraft_1900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Beechcraft_1900_descriptions.txt new file mode 100644 index 0000000..7e8794b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Beechcraft_1900_descriptions.txt @@ -0,0 +1,10 @@ +1355211.jpg The Beechcraft 1900 is captured side-on in flight, featuring a predominantly white upper body with a green and orange stripe running along the fuselage, set against a cloudy sky, with distinctive black engine nacelles and visible landing gear. +1094916.jpg The Beechcraft 1900 is shown in a side view on a runway with a plain white fuselage, minimal markings, and a featureless, blurred background of large structures. +1548200.jpg The Beechcraft 1900 appears in a side view with a white and blue color scheme, adorned with a bird graphic on the tail, flying against a clear blue sky with its landing gear extended. +0574352.jpg The Beechcraft 1900 is shown in a left-side view featuring a blue and white color scheme with a distinct star and cloud design, set against an airport runway backdrop with clear skies. +0127503.jpg The Beechcraft 1900 in the image is seen from a side view on an airport tarmac, featuring a white fuselage with red and orange stripes, a distinctive tail logo, and twin engines with spinning propellers, set against a terminal building background. +0048339.jpg The Beechcraft 1900 is white with blue and red accents, viewed from the side on an airport taxiway with a desert cityscape and mountains in the distant background. +0048340.jpg The Beechcraft 1900 is painted in a vibrant livery with bold yellow and purple colors, including a sun motif on the tail, viewed from the side on an airport taxiway with desert foliage and mountains in the background. +1540395.jpg The Beechcraft 1900 in the image appears to be a light gray aircraft with a sleek body and dark red and gray stripes, viewed from the side on a tarmac with a backdrop of green trees. +1879805.jpg The Beechcraft 1900 in the image is primarily white with red and gray stripes, viewed from the side on an airport tarmac, featuring distinctive circular windows and a backdrop of trees and buildings under a clear sky. +0848067.jpg The Beechcraft 1900 in the image is painted white with a red and black striped livery, viewed from the left side on a sunlit tarmac with clouds in the sky, featuring a distinctive protruding nose and multiple circular windows along its fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Boeing_717_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Boeing_717_descriptions.txt new file mode 100644 index 0000000..414da77 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Boeing_717_descriptions.txt @@ -0,0 +1,10 @@ +0038671.jpg The Boeing 717 in the image features an unfinished, yellow primer paint with patches of metallic silver on the nose, viewed from a frontal-port angle, set in an industrial area with scaffolding and a modern building in the background. +0440054.jpg The Boeing 717 in the image features a white fuselage with blue accents, viewed from a slightly front-left angle with a jet bridge connected in an airport setting, and is distinguished by its sleek, elongated nose and rear-mounted engines. +0337951.jpg The Boeing 717, viewed from the side, features a white fuselage with a stylized gold and red emblem near the front, a distinctive red, black, and gold striped tail, and is situated on an airport tarmac with a large hangar in the background. +1378453.jpg The Boeing 717 is in a left side view against a clear blue sky, featuring a white fuselage with a blue and green tail, complemented by red and blue stripes along the body and the "airtran" branding visible near the front. +1338357.jpg The Boeing 717, viewed from the side in flight against a clear blue sky, features a predominantly white fuselage with a distinctive purple and red design on the tail, accompanied by dark engine nacelles and "HAWAIIAN" written in bold on the side. +1073334.jpg The Boeing 717 features a distinctive white fuselage with gold artistic patterns depicting Cambodian landmarks, viewed from the side on an airport taxiway with lush greenery in the background and a prominent red-and-blue tail logo. +0498907.jpg The Boeing 717 is partially wrapped in a purplish-pink and white protective plastic with abstract patterns, viewed from the rear left with its distinctive T-tail and engines mounted at the rear, against an airport apron background with maintenance equipment visible. +1346116.jpg The Boeing 717 is in a side view mid-landing, predominantly white with blue and red accents, featuring a logo on the tail, over a runway with a grassy field, trees, and overcast sky in the background. +1149063.jpg The Boeing 717, captured from a side view on a runway, features a white fuselage with QantasLink branding, a prominent red tail with the Qantas kangaroo, and is set against a grassy background with a faint rainbow to the right. +1879981.jpg The Boeing 717 appears in a white and blue color scheme with a prominent teal "a" on the tail, viewed in profile during landing with palm trees and urban buildings in the background, highlighting its short fuselage and tail-mounted engines. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/C-130_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/C-130_descriptions.txt new file mode 100644 index 0000000..a1c3e2c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/C-130_descriptions.txt @@ -0,0 +1,10 @@ +0773398.jpg The C-130 in the image appears in a side view with a two-tone camouflage pattern, featuring a smooth texture, parked on a runway with a line of trees in the background and distinct, wide wings and four propeller engines visible. +0635837.jpg The C-130 appears in a smooth, matte gray finish, viewed from the side as it rolls on a runway, set against a backdrop of lush green grass and distant buildings. +1668963.jpg A grey C-130 with military markings is parked on a tarmac, seen in a side view showing its open cargo door and distinctive four-engine propeller configuration, against a clear sky background. +1152062.jpg A light gray C-130 with a star emblem and military markings on the fuselage is viewed laterally on an airport tarmac, with city buildings and other aircraft visible in the background. +1647400.jpg The C-130 appears in a matte olive green color with visible panel lines and minimal markings, is shown in left profile on the runway with mountains in the background, features four propellers and a distinct roundel near the tail, emphasizing its military purpose. +0610659.jpg The C-130 in the image is a light gray aircraft with a prominent diagonal white stripe and dark number "1344" on the nose, viewed from the side on a runway with trees in the background, featuring four propellers and a high tailplane. +1534869.jpg The C-130 appears in a matte gray color with a smooth texture, viewed from the front-left side on a tarmac with cloudy skies, featuring prominent four-bladed propellers and a large cargo ramp at the rear, with people and vehicles in the background. +1085194.jpg The C-130 appears in a side view with a distinctive camouflage pattern of brown and green tones, displaying artwork and insignias on the tail against a backdrop of grassy fields and trees under a clear sky. +1768029.jpg The C-130 displays a camouflage color scheme with beige, green, and gray, viewed from the side in a takeoff pose on a runway, with a blue sky and distant building, featuring four distinctive black propellers. +0883339.jpg The C-130 aircraft is painted in a light tan and brown camouflage pattern with distinct military markings on its fuselage, captured in a right-side profile view flying against a clear sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/C-47_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/C-47_descriptions.txt new file mode 100644 index 0000000..73c5446 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/C-47_descriptions.txt @@ -0,0 +1,10 @@ +0704272.jpg The C-47 is light gray and white with a blue stripe along its fuselage, viewed from a side angle in a grassy field with snowy mountains in the background, featuring a visible tail number "963" and a star emblem on the tail. +0704643.jpg The C-47 is depicted in a side view with a light gray body and red accents, grounded on grass with a museum backdrop and mountains in the distance, featuring distinct round windows and polished metal surfaces. +0548477.jpg The C-47 in the image appears in grayscale with a rough, weathered texture, viewed from a side angle above a grassy and rocky terrain, featuring distinct wing flaps and a rudder with a visible registration mark. +1649746.jpg The C-47 features a vivid orange and silver color scheme with distinct black registration numbers on the fuselage, viewed from the side in a hangar with a fabric backdrop, showcasing its rounded nose and dual engines. +1584294.jpg The C-47 in the image appears with a classic silver and white color scheme accented by green stripes, viewed in a left-side profile mid-air against a clear gray sky, featuring distinctive round windows and a visible registration code on the fuselage. +0735009.jpg The C-47 in the image is painted white with red accents and black text, viewed from a low side angle on a concrete airstrip with grass peeking through, under a partly cloudy sky, featuring distinctive round engines and registration numbers on the tail. +0492493.jpg A polished silver and white C-47 with red and blue accents sits on a wet tarmac, prominently displaying its engines and distinctive vertical tail fin against a backdrop of trees and overcast sky, reflecting its image in a water puddle beneath. +1002385.jpg A black and white C-47 is viewed from the side on an airfield, showing a smooth metallic texture with distinct fuselage markings and a large vertical tail fin featuring a logo against an overcast sky and hangar backdrop. +1031442.jpg The image shows a C-47 in side profile with a gleaming metallic fuselage, accented by a blue stripe, set on a tarmac under a partly cloudy sky, with the distinct twin-engine design and tail number visible. +1119448.jpg The C-47 is viewed from a rear side angle on a tarmac, featuring a silver metallic body with visible rivets, roundels on the fuselage and tail, and sits under a partially cloudy sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/CRJ-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/CRJ-200_descriptions.txt new file mode 100644 index 0000000..f6a28a0 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/CRJ-200_descriptions.txt @@ -0,0 +1,10 @@ +0222923.jpg The CRJ-200 appears predominantly white with a vibrant red and blue tail design, viewed from the side on a tarmac against an airport backdrop with distant mountains, featuring a distinctive elongated fuselage and multiple small windows. +0870126.jpg A CRJ-200 in white with red and blue accents featuring a sleek, streamlined body is positioned on a runway, with grass and a windsock visible in the background, captured from a frontal angle showing its distinctive nose and engine placement. +1037465.jpg The CRJ-200 in the image is painted white with a distinctive striped red, black, and gold pattern along the fuselage, viewed from a side angle in flight, set against a clear blue sky, with prominent features including the T-tail and under-wing engines visible. +1116482.jpg The CRJ-200 features a white fuselage with blue accents and logo on the tail, viewed from the side against a large airstrip and hangars, highlighting its elongated shape and twin-engine design. +0340217.jpg The CRJ-200 is viewed from the side on an airport taxiway, with a silver-gray fuselage and "Styrian Spirit" lettering, featuring a distinctive logo on the tail and set against a clear sky and airport hangars in the background. +1567620.jpg The CRJ-200 is depicted in a slight banked climb with its underside and engines exposed, bearing a white fuselage with blue branding and logo design on the tail, set against a clear blue sky. +1709125.jpg The CRJ-200 is shown in a side profile view flying against a clear blue sky, with a white fuselage featuring "STAR ALLIANCE" branding in bold letters and a distinctive dark tail adorned with star insignia. +2192666.jpg The CRJ-200 appears with a smooth white fuselage featuring red and black accents, pictured in a side-view angle with its landing gear extended against a clear blue sky, and noticeable circular engines mounted on the rear fuselage. +0921743.jpg The CRJ-200 is seen in a left side view mid-flight with a smooth white fuselage featuring "STAR ALLIANCE" and "ADRIA" logos, accented by a navy tail with a distinct star emblem, set against a clear sky backdrop. +1355445.jpg The CRJ-200 is predominantly white with smooth textures, displaying the Eurowings logo near its tail and forward fuselage, viewed from the left side in flight against a clear blue sky backdrop, featuring small engines mounted on the rear fuselage and a distinctive T-tail. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/CRJ-700_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/CRJ-700_descriptions.txt new file mode 100644 index 0000000..b6923cf --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/CRJ-700_descriptions.txt @@ -0,0 +1,10 @@ +2189858.jpg The CRJ-700 is white with a dark blue tail and red accents, viewed in a side profile on a sunny airport tarmac against a backdrop of concrete structures and a blue sky, featuring a sleek fuselage and neatly aligned windows. +0929800.jpg The CRJ-700 is white with minimal markings, viewed from the side in mid-flight against a clear blue sky, with visible engines on the wings and a distinctive green logo on the fuselage. +1232502.jpg The CRJ-700 is painted white with blue and yellow tail markings, viewed in a side profile with a logo indicating Lufthansa Regional, situated on the tarmac in front of a modern airport terminal with visible jet bridges. +1481647.jpg The CRJ-700 in the image is captured from a low angle, showing off its white fuselage with "STAR ALLIANCE" livery, under clear blue skies, with distinctive winglets and a long, sleek nose, as its landing gear is deployed. +0245920.jpg The CRJ-700 in the image is painted white with red accents and a distinct logo on the fuselage, viewed from a side profile at an airport with hangars and forested hills in the background. +1186595.jpg A CRJ-700 is seen from the side with a white fuselage featuring a red horizontal stripe and logo, parked on a tarmac against a mountainous backdrop with distant buildings, emphasizing its elongated shape and distinctive T-tail design. +1283832.jpg The CRJ-700 features a white fuselage with blue and yellow tail markings, viewed at a slight frontal angle on a tarmac surrounded by trees, with its distinguishing long, slim nose and upward-slanting wingtips evident. +2070642.jpg The CRJ-700 is viewed from the side on a snowy airport runway with a forested background, featuring a white fuselage adorned with "Lufthansa Regional" branding and a distinctive tail logo in yellow and blue. +0917341.jpg The CRJ-700 is predominantly white with Delta Connection branding and a distinct blue and red tail, viewed in profile on an airport tarmac with a clear sky and minimal background clutter. +1338551.jpg The CRJ-700 in the image is painted in a white and blue livery with a dark blue tail, seen from a side angle as it ascends against an airport runway backdrop with a control tower and distant mountains. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/CRJ-900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/CRJ-900_descriptions.txt new file mode 100644 index 0000000..d950229 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/CRJ-900_descriptions.txt @@ -0,0 +1,10 @@ +1852175.jpg The CRJ-900 is seen in a side view with a white fuselage featuring a maroon and gold tail design, grounded on a tarmac with grass and a mountainous landscape in the background. +1558772.jpg The CRJ-900 features a sleek white fuselage with blue and gray accents, viewed from the side in flight against a clear sky, with distinctive tail branding and engines under the wings. +1475593.jpg The CRJ-900 is depicted in flight from a side view against a clear blue sky, featuring a predominantly dark exterior with vibrant, multicolored swirls and the visible "SkyWest" branding on its fuselage and tail. +1542646.jpg The CRJ-900 is painted in a clean white body with a blue tail fin displaying the airline logo, viewed from a slightly elevated angle on an airport taxiway, with distinctive dark engine nacelles and landing gear visible in the mid-ground against a backdrop of grassy fields and a tarmac surface. +1204209.jpg The CRJ-900 is captured in a left-profile view mid-flight against a clear sky, with a predominantly white fuselage featuring minimal branding, dark-tipped wings and tail with visible streak of airflow, and landing gear partially extended. +1647811.jpg This CRJ-900 is viewed from the side against a muted sky; it features a primarily white fuselage with subtle airline branding near the front, dark blue engines, and tail, with a distinctive golden logo on the tail. +2101213.jpg The CRJ-900 is painted white with a blue tail featuring a yellow design, viewed in profile as it flies against a clear blue sky, showcasing its elongated fuselage and distinctive winglets. +1920543.jpg The CRJ-900 is captured in a side profile view, featuring a sleek white fuselage with blue tail and engine accents, marked by Scandinavian Airlines branding, against a clear blue sky background. +1906657.jpg The CRJ-900 is predominantly white with a dark blue tail featuring a yellow logo, viewed from the side on a runway with an urban background, showcasing its elongated fuselage and distinctive T-tail. +1342007.jpg The CRJ-900 is pictured in a side view with a white fuselage featuring blue and red accents, a prominent tail fin design at a low angle above a smooth, gray tarmac, set against a backdrop of distant, hazy mountains. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_172_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_172_descriptions.txt new file mode 100644 index 0000000..37fe6c7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_172_descriptions.txt @@ -0,0 +1,10 @@ +2212872.jpg The Cessna 172 in the image features a distinctive blue and white color scheme with dark blue stripes, a visible registration number "N546ER," parked in a sunlit airfield environment alongside other aircraft, highlighting its high-wing design and sturdy landing gear. +1250251.jpg A white Cessna 172 is parked on a tarmac with its wing featuring a distinct red stripe; the side view highlights its single-engine propeller and registration marking, set against a backdrop of a clear sky and distant greenery. +1647142.jpg A white Cessna 172 with a maroon stripe along the fuselage and tail is parked on a grassy airfield, viewed from the front-left angle, with a cloudy sky and other small aircrafts in the background. +2244487.jpg The Cessna 172 is white with blue and gold stripes, viewed from the side on a grassy airfield with other small aircraft in the background, featuring a high wing and a four-seat cabin configuration. +1028490.jpg The Cessna 172 in the image is white with green accents, viewed from below at an angle, flying against a clear sky, and features visible landing gear and a distinctive stripe along the fuselage. +1249912.jpg A white Cessna 172 with the registration OE-DAS is parked on a concrete airstrip, viewed from the side with light shadows indicating a sunny day, featuring distinctive black lettering on its fuselage and surrounded by industrial hangars and trees in the background. +1125619.jpg A white Cessna 172 with blue accents and a visible registration code on the fuselage is parked on a concrete tarmac, viewed in profile from the left side with a backdrop of trees and a white hangar. +1221755.jpg The Cessna 172 is maroon and white, with a frontal three-quarter view on a tarmac surface, displaying its single propeller and strut-braced wings, set against a grassy landscape with a distant treeline. +2072465.jpg In the image, a white Cessna 172 with red stripes and registration "G-BRZS" is captured in-flight with its landing gear extended, viewed from the side, against a background of grass and residential buildings. +2122883.jpg The Cessna 172 is white with thin blue and red stripes, viewed from the right side on the ground, with an open grassy field and windsock in the background, featuring its distinct high-wing configuration and tricycle landing gear. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_208_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_208_descriptions.txt new file mode 100644 index 0000000..24fcf20 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_208_descriptions.txt @@ -0,0 +1,10 @@ +1337502.jpg The Cessna 208 is captured in flight from a side view, showcasing a blue and white paint scheme with visible branding and a distinctive rose graphic on the nose, set against a clear sky background. +0362903.jpg A white Cessna 208 with FedEx branding in purple and orange is parked side-on in an urban environment, characterized by a distinct high-wing configuration and noticeable undercarriage against a backdrop of concrete structures and greenery. +2116123.jpg A white Cessna 208 is parked on a grassy field viewed from its left side, with trees in the background and distinctive registration markings on the fuselage. +0789704.jpg The Cessna 208 is white with red stripes along the fuselage, viewed from the side on a tarmac with forested backgrounds, and features a high-wing design with a front propeller and fixed tricycle landing gear. +0304640.jpg The Cessna 208, with a predominantly white fuselage featuring "FedEx" branding in purple and orange, is captured in a side view flying low over a beach with distinct waves, a stone-lined shore, and brightly colored resort buildings in the background. +1146069.jpg The Cessna 208 has a sleek white fuselage with a dark, glossy tail and engine accents, positioned on a grassy airstrip with its wings and high-mounted engines in full profile against an overcast sky. +1043786.jpg The Cessna 208 displays a vibrant yellow body with red accents and a DHL logo, seen from a side angle against a clear blue sky, with the distinctive high-wing design and tricycle landing gear clearly visible. +1449582.jpg The low-resolution image shows a yellow Cessna 208 with distinct red stripes and "DHL" markings, viewed in profile during landing, against a backdrop of resort-style buildings and trees near a coastline. +1156006.jpg A Cessna 208 is seen from the side, featuring a sleek white and dark blue color scheme with a glossy texture, parked on a tarmac with clear skies and mountains in the distance, highlighting its distinctive high-wing design and multiple cabin windows. +0659387.jpg The Cessna 208 is in a side view on a grassy and paved airfield, featuring a white fuselage with blue and red stripes, two-tone propeller tips, large windows, and a visible tail number on its stable, robust landing gear. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_525_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_525_descriptions.txt new file mode 100644 index 0000000..55e5fc4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_525_descriptions.txt @@ -0,0 +1,10 @@ +1960029.jpg The Cessna 525, viewed from the side and slightly below against a clear blue sky, features a sleek white fuselage with blue and black stripes, distinctively shaped windows, and angled winglets. +1716441.jpg The Cessna 525 appears in a side view on a tarmac with a sleek, white body accented by a blue horizontal stripe, featuring a distinctive T-tail and twin engines mounted on the rear fuselage, set against a background of blurred greenery and a distant large aircraft approaching a runway. +0543868.jpg The Cessna 525 appears in a side view on an airport tarmac, displaying a sleek white body with black and blue stripes, distinctive circular engine nacelles at the rear, and a pronounced tail fin bearing a logo, set against a backdrop of runway markings and construction material piles. +1719897.jpg The Cessna 525 appears in a side view with a sleek white fuselage featuring minimalistic dark accents and distinct registration markings, highlighted against a clear blue sky in flight with its landing gear deployed. +1349012.jpg The Cessna 525 is depicted in a side profile view on a tarmac, featuring a white fuselage with blue stripe accents, a pointed nose, distinct cockpit windows, small engines mounted on the rear fuselage, and a clear sky with sparse clouds in the background. +1135961.jpg The Cessna 525 is depicted in a side view on an airport tarmac, featuring a sleek maroon and gold color scheme with a smooth, glossy texture, against a backdrop of airport buildings and distant hills under a clear sky. +1369872.jpg The Cessna 525 appears in a side view mid-takeoff on a runway, featuring a sleek white fuselage with blue accent lines, a smooth texture, and a grassy area with trees in the background. +1363679.jpg The Cessna 525 appears in a side profile with white and red coloring, featuring sleek, smooth textures, parked on a tarmac against a hangar backdrop, with distinctive red engine inlets and a red vertical stabilizer tip. +1444715.jpg The Cessna 525 is viewed from the side against a clear blue sky, featuring a sleek white body with dark horizontal stripes and distinct registration markings on the tail, illuminated by sunlight. +0845899.jpg The Cessna 525, predominantly white with a blue horizontal stripe along the fuselage, is positioned in side view on a tarmac, featuring an extended entry door and airfield environment with a visible tower in the cloudy background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_560_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_560_descriptions.txt new file mode 100644 index 0000000..7a704ea --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Cessna_560_descriptions.txt @@ -0,0 +1,10 @@ +0526028.jpg The Cessna 560 in the image is silver with dark blue accents, captured in a mid-air left side view against a clear sky and tree-lined horizon, showcasing its sleek, elongated fuselage and tapered design. +0759286.jpg A sleek white jet with blue and red stripes along the fuselage is captured in a side view on a runway, set against a pastoral backdrop with houses and trees, showcasing its elongated body and swept wings. +1806232.jpg The Cessna 560 appears in a side view with a predominantly white body featuring a dark and light blue stripe along the fuselage, set against a runway background with trees and another airplane in the distance. +2231272.jpg The Cessna 560 is predominantly white with blue accents, partially visible on the fuselage and tail, sitting on an airfield in front of a corrugated metal hangar, with a side profile showcasing its sleek shape and red engine covers. +1158577.jpg The Cessna 560 appears in a vibrant yellow color with a glossy texture, is viewed from the side showcasing its elongated body and small windows, positioned on a tarmac with various posts and greenery in the background, and features distinct branding on the tail and fuselage. +0521262.jpg The Cessna 560 is viewed from the side, displaying a white fuselage with a dark stripe along the windows, a pointed nose, and swept-back wings, positioned on a runway with a hangar and forest in the background. +1703202.jpg The Cessna 560 in the image is white with a blue stripe and a Swiss flag on the tail, viewed in a side profile mid-flight against a clear blue sky, highlighting its engine nacelles and swept-back wings. +2001289.jpg The Cessna 560 appears in a clean white livery with a dark underbelly stripe, showing an in-flight side view against a clear sky background, showcasing its retractable landing gear extended and twin engines mounted on the rear fuselage. +1714816.jpg The Cessna 560 appears in a light gray color with elegant red and black stripes on the fuselage, viewed in profile against a clear blue sky, showcasing its distinctive twin-engine configuration and T-tail design while the landing gear is extended. +1889545.jpg A white Cessna 560 with black and red stripes along its fuselage is captured in a side view on a runway, featuring a forested background and landing gear extended, highlighting its sleek, elongated body and distinctive nose shape. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Challenger_600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Challenger_600_descriptions.txt new file mode 100644 index 0000000..67531a1 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Challenger_600_descriptions.txt @@ -0,0 +1,10 @@ +1447563.jpg The Challenger 600 is predominantly white with a sleek, smooth texture, captured mid-flight from a low angle against a clear blue sky, featuring prominent dark accents under the fuselage and distinct T-tail design. +1425171.jpg The Challenger 600 is depicted in mid-flight with a side view, featuring a sleek gray body accented with red and white stripes, visible Danish Air Force markings, and a cloudy sky background. +1363740.jpg A gray Challenger 600 with Danish markings stands parked on an airfield under a clear sky, featuring a polished exterior, a mid-fuselage wing configuration, and a distinctive red and white tail emblem. +1079421.jpg The Challenger 600 in the image is predominantly white with dark blue accents, captured in a side view as it is in flight with gear down against a clear blue sky, featuring sleek horizontal lines and a smaller aircraft faintly visible in the distant background. +1037167.jpg A white Challenger 600 jet with German flag markings is parked on an airport tarmac under a partly cloudy sky, viewed in profile from the left side, showcasing its sleek fuselage and distinctive T-tail. +1361462.jpg The Challenger 600 is shown in a side view with a smooth white exterior accented by a blue stripe along the fuselage, against a plain sky background, and features notably sleek wings and balanced landing gear. +1062392.jpg The Challenger 600 is shown in a side view flying against a cloudy sky, featuring a sleek white body with green accents, distinct winglets, and visible landing gear. +0501286.jpg A white Challenger 600 is photographed head-on on a snowy tarmac with a gray sky backdrop, flanked by cargo aircraft and distinctive vertical stabilizers. +1693795.jpg The Challenger 600 in the image has a sleek white and dark blue color scheme with a glossy texture, seen in a left side profile against a clear blue sky, featuring distinctive, prominent winglets and a unique dual-engine configuration. +0905853.jpg The Challenger 600 in the image is a white aircraft with a distinctive red cross on the fuselage and tail, captured in a side view with landing gear extended against a clear blue sky, accentuated by a noticeable Swiss national emblem on the tail. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DC-10_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DC-10_descriptions.txt new file mode 100644 index 0000000..a53b1ee --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DC-10_descriptions.txt @@ -0,0 +1,10 @@ +0822345.jpg The DC-10 is painted white with blue accents, prominently featuring "Avensa" and "Venezuela" in blue lettering, viewed from the side in-flight against a clear sky, with distinguishing features like the three-engine layout and recognizable tail logo visible despite the low resolution. +1707735.jpg The low-resolution image shows a predominantly white DC-10 aircraft from a side view during takeoff or landing, featuring a distinct blue and red stripe along the fuselage and a recognizable logo on the tail against a backdrop of a flat, grassy airfield with a clear sky. +1093670.jpg The DC-10 is predominantly white with green and red accents, featuring a bold red logo on the tail and engines, viewed from a low angle during landing with its landing gear down against a cloudy sky backdrop. +1358858.jpg A white DC-10 cargo aircraft is displayed in profile from the side, against an airport terminal backdrop, with distinctive blue engine nacelles and a prominent stabilizer fin logo. +1344995.jpg The DC-10 in the image is predominantly white with red accents and a Swissair logo on the tail, viewed from the side on an airport tarmac with hangars and another airplane in the background, emphasizing its three-engine design and large tail fin. +0538339.jpg The DC-10 in the image has a white body with an orange and red stripe running along its length, displaying the "NATIONAL" logo and a distinctive sun emblem on the tail, viewed from the side with a cloudy sky and airport buildings in the background. +1133613.jpg The DC-10 appears with a silver and red body featuring "Northwest" branding, seen in a side profile view on a grassy airport tarmac, with its distinct tri-jet engine configuration and tail fin logo clearly visible against a hazy blue sky. +0318420.jpg The DC-10 appears predominantly white with a blue tail, featuring a sideways view allowing clear visibility of the iconic tri-engine configuration and the fenced, grassy environment under a cloudy sky. +0771162.jpg The DC-10 in the image is a white aircraft with distinct orange-yellow accents on the tail and a logo on the fuselage, viewed in profile against a clear blue sky and airport runway, featuring a trijet engine configuration with a prominent vertical stabilizer and engines under the wing and tail. +0064928.jpg The DC-10 appears in a side profile with a white fuselage featuring red, blue, and orange stripes, set against an airport tarmac with terminal buildings in the background, showcasing its distinctive trijet configuration and high-mounted tail engine. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DC-3_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DC-3_descriptions.txt new file mode 100644 index 0000000..2bbb899 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DC-3_descriptions.txt @@ -0,0 +1,10 @@ +1569049.jpg The DC-3 appears in a metallic silver color with blue accents and a red-tailed fin, viewed from a side angle on the tarmac, set against a backdrop of scattered clouds in a clear blue sky, featuring distinct engine nacelles and a sleek, rounded fuselage. +0306459.jpg The DC-3 is painted white with a prominent dark blue stripe along the fuselage, viewed from the side with trees in the background, displaying its distinctive rounded nose and twin radial engines beneath a clear sky. +0730802.jpg The DC-3 is shown in a side view with a polished metallic body featuring red and white accents, parked on an airport tarmac in front of a large, red hangar. +0723210.jpg The DC-3 is captured in a rear-side view on an airport tarmac, featuring a striped tail design and a smooth, metallic exterior with bold visible registration, set against a backdrop of 1970s era commercial airliners and large fuel tanks, with a single person walking nearby. +0551410.jpg The low-resolution image shows a side view of a DC-3 with a light-colored body and distinctive stripes on the tail, parked on a runway with a tree-lined backdrop, featuring visible airline branding on its fuselage. +0547017.jpg The DC-3 is seen in a side view on the tarmac, displaying a sleek, light-colored body marked with "Nevada Airlines," accented by darker stripes and text, set against a background featuring palm trees and a building. +0548759.jpg The DC-3 in the image is seen from a side angle on a tarmac with a predominantly light-colored body featuring a matte texture, dark stripes near the tail and engine nacelles, and military markings including "ARMADA DE MEXICO," set against a hazy sky and an adjacent stationary aircraft. +1350775.jpg The DC-3, suspended in an indoor museum setting, is viewed mostly from the underside and side, showcasing its gleaming metallic body adorned with horizontal stripes and the "EASTERN" emblem, with large windows visible alongside its wings, set against a backdrop of other vintage aircraft and structural beams. +0620014.jpg The DC-3 appears in a monochromatic scheme with a smooth texture, viewed from a side angle showing clear lines, parked on a grassy area with a backdrop of other aircraft and a distant hangar. +1543346.jpg A DC-3 with a polished silver body and red stripes along the fuselage is parked on a grassy field under a clear blue sky, with the left side prominently displayed showing its distinctive round nose and twin-engine configuration. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DC-6_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DC-6_descriptions.txt new file mode 100644 index 0000000..84ec8aa --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DC-6_descriptions.txt @@ -0,0 +1,10 @@ +0062694.jpg The DC-6 is predominantly silver with a blue tail displaying white lettering, viewed from a rear-side angle on an airport tarmac with airport fencing and other aircraft partially visible, highlighting its distinct tail fin and rounded fuselage despite the low resolution. +1945292.jpg The DC-6 has a primarily white fuselage with green and black accents, positioned in a side view on display under a cloudy sky, featuring distinguishing elements like rounded windows, a sleek nose, and a fenced-off tarmac. +0539186.jpg The DC-6 displays a distinct yellow and red-striped fuselage with "aviateca" branding, seen in a port-side profile at an airport with a clear sky, featuring four silver propeller engines and a white underbelly, resting on a tarmac with additional aircraft in the background. +1226979.jpg The DC-6 has a white and red color scheme with a sleek, slightly reflective texture, viewed from the side and slightly below in-flight with a backdrop of bare trees and overcast sky, featuring distinctive engines and a logo on the tail. +1723103.jpg The DC-6 is seen from an underneath diagonal angle, featuring a polished silver metallic body with blue and red stripes, intricate detailing of four propellers, and the Red Bull logo prominently displayed against a clear sky background. +1831582.jpg The DC-6 appears in polished metallic and white paint with U.S. Air Force markings, seen from a side view on a desert airfield with a clear blue sky, featuring distinct radial engines and a sleek fuselage. +0920945.jpg The DC-6 is shown in a side view with a white body adorned with thin dark stripes and “Air Atlantique” text, featuring distinctive radial engines and propellers, positioned on an airport tarmac with a clear sky and a hint of an airfield background. +0548883.jpg The DC-6 in the image is viewed from a rear side angle, featuring a classic polished metal texture with a distinctive white upper fuselage and horizontal maroon stripe, set against an industrial airport backdrop with visible hangars and tarmac. +0586769.jpg This low-resolution image shows a vintage DC-6 airplane with a light-colored, seemingly weathered fuselage and darker engine nacelles, viewed from the side against a sparse airfield with vehicles nearby, highlighting its distinctive propeller configuration and elongated body. +1541799.jpg The DC-6, in a side view with a silver metallic body and blue accents, displays "Everts Air Cargo" against a backdrop of rugged snow-covered mountains and an airport tarmac, with distinct radial engines and a classic four-engine configuration. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DC-8_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DC-8_descriptions.txt new file mode 100644 index 0000000..75034f4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DC-8_descriptions.txt @@ -0,0 +1,10 @@ +0147042.jpg The DC-8 is painted in a white and gray livery with a prominent Delta logo on the tail, viewed from the side on an airport tarmac, with a clear city skyline in the background and distinct red and blue stripes along its fuselage. +0109461.jpg The DC-8 is painted mainly in white with blue accents, featuring a prominent tail design with white stars, viewed in a side profile on a tarmac with a distant urban landscape under a clear blue sky. +0546334.jpg The DC-8 in the image is seen from a side angle on an airport tarmac, featuring a white fuselage with blue stripes and the logo "AVIACO" on the side, with its nose facing slightly to the left amidst a misty background with visible terminals and other aircraft. +0564160.jpg The low-resolution image of the DC-8 shows a side view of a vintage aircraft with a predominantly light color scheme, featuring a horizontal line across its body and distinct three-stripe airline livery; it is situated on a runway with a mountainous landscape in the background. +1338156.jpg A vintage jet with a predominantly white fuselage and a dark stripe along the windows, viewed from the side on a runway, featuring four engines beneath the wings and set against a muted, overcast airport landscape. +1014104.jpg The DC-8 is pictured in a side profile view on a runway, primarily featuring a light gray color with dark lettering "SPAN" visible on its fuselage, contrasted against a blurred airport background with another aircraft visible, surrounded by a generally hazy sky. +1295641.jpg The DC-8 is parked on a tarmac in a side profile view, featuring a white fuselage with orange and brown stripes, "Seychelles International" lettering, and a distinctive bird logo on the tail, set against a grassy, open landscape. +0195744.jpg An airplane with a predominantly white body featuring a red tail and lettering, seen in profile view on a runway with grassy fields and distant buildings in the background, displaying characteristic jet engines beneath the wings. +0274630.jpg A white DC-8 with "Cygnus Air" branding in blue and red is captured in a side profile during takeoff or landing on a runway, set against a blurred backdrop of trees and a dusky sky. +0062699.jpg The DC-8 appears in a side profile view with a dark green and white livery featuring "MasAir" branding, parked on a runway with a blurred airport terminal in the background and grass in the foreground. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DC-9-30_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DC-9-30_descriptions.txt new file mode 100644 index 0000000..85260c3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DC-9-30_descriptions.txt @@ -0,0 +1,10 @@ +0540717.jpg The image depicts a DC-9-30 in flight from a side view with a metallic silver fuselage, red tail featuring a prominent logo, and a blue and orange stripe running along the body against a clear sky backdrop. +0174937.jpg The DC-9-30 is painted in a white and dark navy livery with a prominent sunburst design on the tail, viewed from the side on an airport tarmac with a backdrop of trees and a clear sky. +0198449.jpg The DC-9-30 is painted in white with a red and blue "Macedonian Airlines MAT" logo on the fuselage, viewed from a side angle on an airport taxiway with verdant fields and structures in the distant background, featuring distinctive rear-mounted engines and a T-tail design. +0074747.jpg The DC-9-30 in the image is predominantly white with a red stripe along the fuselage and a visible "Midway" logo, viewed from the side on a grassy area with trees in the background, displaying its distinctive T-tail and two engines mounted at the rear. +1070337.jpg The DC-9-30, painted in Alitalia's signature green and white livery with a red stripe, is captured in a side view taxiing on a tarmac surrounded by airport buildings and ground equipment under an overcast sky, highlighting its sleek fuselage and distinctive T-tail. +1196996.jpg The image shows a KLM DC-9-30 aircraft in flight viewed from below with a slight angle, featuring a light-colored fuselage with a stripe along the windows, a logo on the tail, and its landing gear extended against a cloudy sky background. +1376992.jpg The DC-9-30 appears in a side profile view with a distinctive, vibrant blue and green gradient paint scheme, featuring a motif on the tail, set against an airport ground with a hangar and clear blue sky in the background. +1540064.jpg The DC-9-30, viewed in a side profile with a slight upward angle during landing, features a gray fuselage with red tail and winglets, adorned with the NWA logo, set against an airport runway with greenery and industrial buildings in the background. +1296897.jpg The DC-9-30 is viewed from the side on an airport tarmac, showcasing a predominantly white fuselage with green stripes on the tail, set against a clear sky and airport structures in the background. +1377001.jpg The DC-9-30 is painted in a vibrant yellow, red, and orange color scheme with large logo decals, viewed from a side profile against a grassy foreground and industrial background with a white building. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DH-82_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DH-82_descriptions.txt new file mode 100644 index 0000000..f5f14de --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DH-82_descriptions.txt @@ -0,0 +1,10 @@ +0767364.jpg The DH-82 in the image is a biplane with a dark, monochrome texture featuring a central stripe, viewed from the left side in a grassy field with another similar aircraft and a crowd in the background. +2219120.jpg The image shows a camouflage-painted biplane, viewed from the side, with a pilot visible in the open cockpit as it taxis over a grassy field with trees and sky in the background. +2022003.jpg This DH-82 exhibits a blue and white fuselage with a classic biplane structure, viewed from a frontal angle on a grassy field with trees in the background, featuring distinct struts and wires supporting the dual wings. +1578204.jpg The DH-82 biplane features a deep red fuselage with prominent white lettering on the side, positioned on a grassy field with a backdrop of trees, highlighting its classic dual-wing structure and exposed cockpit design. +1999287.jpg The DH-82 biplane is shown in a side profile within a hangar, featuring a silver body with red and yellow markings, fabric-textured wings, and a wooden propeller, accompanied by a mannequin in a blue uniform standing beside it. +1398071.jpg The DH-82 is a blue biplane with a gray semicircular engine cowling and tail, viewed side-on within a hangar, featuring visible struts and discernible registration markings on its fuselage. +0872412.jpg The DH-82 in the image is seen from the front three-quarter view, showcasing its red fuselage with black markings and open cockpits, set against a backdrop of an airfield with grass and distant trees, featuring distinctive biplane wings and a spinning propeller. +0768014.jpg A vintage biplane with a camouflage pattern and roundel markings is parked on a grassy field, viewed from the side showing its tail number, featuring an open cockpit and distinct strut supports with another plane and trees in the distant background. +1058406.jpg The DH-82 is painted in a vibrant blue with striking yellow wings and a red tail with white and blue stripes, viewed from the side amidst a grassy area and positioned near a hangar, showcasing its open cockpit, biplane structure, and undercarriage details. +0735046.jpg The DH-82 biplane, viewed from the rear quarter on a grassy airfield, features a light-toned fuselage with bold registration markings along the side and classic double wings, while other aircraft appear in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DHC-1_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DHC-1_descriptions.txt new file mode 100644 index 0000000..cdb07d4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DHC-1_descriptions.txt @@ -0,0 +1,10 @@ +1735455.jpg The DHC-1 is shown from a front-side angle with a silver metallic body and yellow wingtips, parked outdoors on a grassy airfield with trees and additional aircraft in the background, featuring a bubble canopy and a distinctive rounded nose. +1730214.jpg The DHC-1 in the image is painted silver with yellow bands and a red emblem on the side, viewed from a side angle on a grassy field with trees and a partially cloudy sky in the background, featuring distinctive rounded wingtips and a bubble canopy. +2137874.jpg The bright red DHC-1 aircraft is shown taxiing on a runway from a rear three-quarter angle, featuring military insignia on its side and its glossy texture standing out against a gray, overcast sky and adjacent large AWACS plane in the background. +1534866.jpg The DHC-1 in the image is a silver aircraft with a sleek, smooth texture, accented by red, white, and blue stripes along the fuselage, viewed from the side against a background of a clear sky and distant trees, featuring distinct circular insignias and a yellow band on the tail. +1511748.jpg The DHC-1 in the image is a red and white low-wing monoplane with a two-seat tandem cockpit, primarily viewed from the left side in a grassy airfield, featuring a distinctive sharp nose and black propeller with a red stripe running along the fuselage and vertical stabilizer. +2041568.jpg The DHC-1 in the image is a silver aircraft with a yellow stripe on its wing, viewed from a three-quarters angle in a hangar setting with visible rafters and another plane partially visible in the background. +1386022.jpg The DHC-1 in the image is primarily red with white accents and silver propeller, viewed from a frontal side angle, flying low over a grassy field with trees in the distant background, and features a distinctive bubble canopy and classic tail design. +2194700.jpg The DHC-1 in the image is primarily white with yellow bands and a large roundel on the fuselage, viewed from a side angle on the ground with a hangar and some trees in the background, showcasing its low-wing monoplane design and bubble canopy. +2132426.jpg This DHC-1 aircraft is captured in a low-altitude side view with an orange tail and vertical stabilizer, a polished silver body with horizontal black and white stripes, and is flying over a grassy field with trees and partly cloudy skies in the background. +1716062.jpg The DHC-1 in the image is a classic low-wing aircraft featuring a red and white color scheme with RAF roundels, captured in-flight from a side-view against an overcast sky, highlighting its bubble canopy and tail design. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DHC-6_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DHC-6_descriptions.txt new file mode 100644 index 0000000..056bdd1 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DHC-6_descriptions.txt @@ -0,0 +1,10 @@ +1061155.jpg A white DHC-6 with blue stripes flies upward, set against a clear blue sky, featuring distinct twin propellers, high wings, and a visible landing gear. +0440147.jpg The DHC-6 in the image has a blue and white color scheme with a sleek texture, captured from a low-angle, side-toward skyward view, showing its dual propellers and high-wing structure, flying against a clear blue sky. +1449320.jpg The DHC-6 in the image is a light-colored aircraft with high-mounted wings, elegant tapering dorsal strakes, and dual propellers, captured in flight from a side angle against a clear sky, featuring distinctive linear patterns and lettering on its body. +1053135.jpg The DHC-6 is captured in a frontal low-altitude approach above a runway with a white fuselage, blue underbelly, red and blue-striped nose, and white wings, set against a backdrop of turquoise ocean and sandy beach. +2084816.jpg The DHC-6 is in a side view on a tarmac, featuring a gray and white body with striking black and red graffiti-style text along the fuselage and tail, set against a clear sky and industrial background. +1943367.jpg The DHC-6 in the image has a white body with minimal markings, seen in a side profile while airborne against a clear blue sky, featuring its distinctive short wings and high-mounted engines typical of the model. +0554600.jpg The DHC-6 in the image is viewed from the side on a tarmac, with a predominantly white body featuring dark stripes along the fuselage and tail against a clear, open background, and large twin propeller engines mounted on the high wings. +0713822.jpg The DHC-6 in the image is a white aircraft with dark horizontal stripes along the fuselage, viewed from a front-right angle on a tarmac, with visible trees and other aircraft in the background. +0606126.jpg The DHC-6 appears in a side profile view with a light-colored fuselage featuring "Rio" branding, parked on a tarmac in front of a large industrial building, and showcases a high-wing configuration with twin engines and distinct landing gear visible. +2011623.jpg The DHC-6 features a red and white color scheme with green accents, floating on clear blue water, viewed from a side angle with distinctive twin propellers and a seaplane configuration. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DHC-8-100_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DHC-8-100_descriptions.txt new file mode 100644 index 0000000..683dbd5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DHC-8-100_descriptions.txt @@ -0,0 +1,10 @@ +0127502.jpg The DHC-8-100 in the image is a white turboprop aircraft with a black tail featuring a red maple leaf, photographed from a side view on the tarmac of an airport with a backdrop of other airport structures and an open sky. +0056324.jpg The DHC-8-100 appears in flight with a white fuselage featuring a prominent logo and striping, viewed from a slight side angle against a clear sky, with distinct black propellers and a horizontal stabilizer visible. +1187963.jpg The DHC-8-100 aircraft features a white fuselage with prominent yellow sunburst logos and "Caribbean Sun" branding, viewed from the left side in-flight against a clear blue sky, highlighting its distinct T-tail and twin-engine propellers. +0177655.jpg The DHC-8-100 is viewed from the side on a concrete runway, showcasing a white fuselage with a distinctive red, yellow, and black-striped tail and engine nacelles, marked with "tyrolean" branding, set against a verdant grass and asphalt background. +1031522.jpg The DHC-8-100 appears in a bright white and orange livery with "Caribbean Sun" branding and sun motifs, captured from a side angle on a runway with a forested backdrop, highlighting its twin engines and sleek fuselage despite the distance. +0302923.jpg The DHC-8-100 has a distinctive white and orange livery with a prominent sunburst design, viewed from the side on a runway with a backdrop of mountains and scattered clouds, featuring its signature twin-engine turboprop configuration and T-tail. +1272644.jpg The DHC-8-100 is shown in profile against a clear blue sky, featuring a bright red tail with a distinct emblem, a white fuselage with red markings, and extended landing gear in a landing approach. +1036865.jpg The DHC-8-100, predominantly white with dark blue accents on the lower fuselage and tail featuring "AIRES" in bold white lettering, is captured in a side profile view on a tarmac with grassy vegetation in the background, and distinguished by its high-wing design and two propeller engines. +1240265.jpg The DHC-8-100 is a small, twin-engine turboprop aircraft primarily white with red and blue accents, featuring a high wing design and distinctive black engine nacelles, captured in a side view flying against a clear blue sky with its landing gear extended and the "Era" logo on its tail and fuselage. +0063926.jpg The DHC-8-100 features a predominantly white fuselage with navy blue tail and engines, shown in a side view on an airport runway against a muted, grassy background, displaying logos on the tail and fuselage, along with distinctive dark-colored propeller blades. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DHC-8-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DHC-8-300_descriptions.txt new file mode 100644 index 0000000..ad81626 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DHC-8-300_descriptions.txt @@ -0,0 +1,10 @@ +2088459.jpg The DHC-8-300 aircraft is captured in profile against a clear blue sky, featuring a predominantly white fuselage with blue and red tail accents, while its engines and under-wing areas add sharp contrast against the minimalistic background. +0250398.jpg A low-resolution image shows a DHC-8-300 in dark silhouette against a clear sky, viewed from beneath with visible spinning propellers and landing gear extended, creating a dramatic upward perspective. +0872421.jpg A white DHC-8-300 with blue and purple markings is taxiing on an airport tarmac, viewed from a three-quarter front angle, with the terminal and control tower visible in the background. +2243615.jpg The DHC-8-300 features a predominantly white fuselage with distinct red and blue logo markings on the tail and body, viewed from the side on a snowy tarmac, with a line of trees in the background. +1059775.jpg The DHC-8-300, viewed from the side on a tarmac with a clear sky, displays a white and blue livery with logo markings on the tail and fuselage, featuring prominent landing gear and a partially visible propeller against a green and industrial backdrop. +1043776.jpg The DHC-8-300 features a predominantly white fuselage with blue wingtips and tail, highlighted by yellow and red accents, viewed side-on on a tarmac with a clear sky and distant mountains in the background. +0193709.jpg The DHC-8-300 is pictured in a side view on a tarmac with grass surrounding the runway, featuring a white fuselage with a prominent blue stripe running along the windows, a blue tail fin with a white logo, and two black propellers. +2205027.jpg The DHC-8-300 is painted white with a dark blue tail featuring orange circles, viewed in profile on a tarmac with grass and a concrete barrier in the background, while showing its extended nose and four-bladed propeller. +1043727.jpg The DHC-8-300 aircraft is captured mid-flight from a side view, featuring a white fuselage with distinct orange floral patterns along the tail and rear, a smooth texture with visible windows and black propeller blades, set against a clear blue sky background. +1600342.jpg The DHC-8-300 in the foreground has a white and blue color scheme with pronounced horizontal stripes and ANA livery, seen in a side view on the tarmac with a blurred terminal and lush greenery in the background, while its propeller engines and landing gear are prominently visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/DR-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/DR-400_descriptions.txt new file mode 100644 index 0000000..5c9a40c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/DR-400_descriptions.txt @@ -0,0 +1,10 @@ +1736063.jpg The DR-400 in the image appears to be flying with a slight upward angle, showcasing its low-wing monoplane design and tricycle landing gear, predominantly white with a contrasting stripe along the fuselage and wings, set against a clear sky background. +1606079.jpg The DR-400 in the image is primarily blue and white with a sleek fuselage, visible from a side profile with its distinct low-wing configuration, cruising through a clear sky background. +1634649.jpg The plane is mostly white with red accents on a smooth fuselage, viewed from the side in a parked position on an airstrip, and features a distinctive tilted wing and T-tail design against a backdrop of blue sky and a hangar. +1773350.jpg The DR-400 in the image is predominantly white with a red stripe and a black nose, viewed in a side angle within a hangar environment, featuring distinctive low-mounted wings and tricycle landing gear. +1603712.jpg The DR-400 aircraft is captured in a front-right angled view on a grassy airfield, featuring a vibrant yellow and white color scheme with a spinning propeller, a distinctive bubble canopy, and a Swiss flag marking on the vertical stabilizer against a background of distant trees. +1767219.jpg The DR-400 in the image is predominantly white with blue accents and a sleek body, viewed from the front left in a hangar environment with a metallic door, featuring its distinctive bubble canopy and tricycle landing gear. +1246392.jpg The DR-400 in the image displays a sleek white body with blue stripes and a gold accent, viewed from a side angle in a hangar setting, featuring a distinctive bubble canopy and low-wing design. +1709293.jpg The DR-400 in the image is a low-wing aircraft with a bright yellow and white color scheme, viewed from the starboard side in a hangar, featuring a distinctive bubble canopy and a propeller with black and white stripes. +1622729.jpg A small aircraft primarily white with red stripes, viewed from a side angle on grassy terrain with other planes in the background, features a bubble canopy and low wings. +2199064.jpg The DR-400 in the image is a light aircraft with a predominantly white body featuring red accents and a distinct horizontal stripe along the fuselage, seen in a side profile with a slight upward angle against a backdrop of an airport hangar. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Dornier_328_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Dornier_328_descriptions.txt new file mode 100644 index 0000000..0f18c5e --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Dornier_328_descriptions.txt @@ -0,0 +1,10 @@ +0964904.jpg The Dornier 328 is painted white with sleek blue accents, viewed from the front-left angle during takeoff against a blurred green airfield and suburban backdrop, with its twin propellers spinning and the landing gear extended. +0749201.jpg The Dornier 328 in the image is navy blue with white trim, viewed from the side on a tarmac with a distant city skyline against a partly cloudy sky, featuring a distinctive tail design and dual propellers. +1407339.jpg The Dornier 328 in the image displays a white fuselage with a red vertical stabilizer featuring a logo, viewed from a side angle on the tarmac with a hangar in the background, and is marked by engines mounted under high wings and a distinct elongated nose. +1213738.jpg The Dornier 328 is predominantly white with a dark blue stripe along its fuselage and "skywork-airlines.ch" text, captured in a side view while taxiing on an airstrip with a grassy foreground and overcast sky. +1443841.jpg The Dornier 328 in the image is captured in a left-side view against a clear blue sky, displaying a red and white color scheme with visible logos on the fuselage and prominently showing its landing gear extended and two propeller engines on the wings. +0522914.jpg The Dornier 328 is a white aircraft with dark blue lettering and accents, captured in an upward tilt against a mountainous backdrop with patches of snow, highlighting its distinctive wing shape and dual-engine configuration. +0443972.jpg The Dornier 328 is predominantly white with a red checkerboard tail and red lettering, viewed in profile on a grassy airfield adjacent to a modern, boxy building, featuring distinctive high wings with engines mounted beneath them. +0517625.jpg The Dornier 328 is white with a sleek, smooth texture, seen in a side view on an airport tarmac with mountains and leafless trees in the background, featuring distinctive elongated oval windows and twin engines mounted on high wings. +1458702.jpg The Dornier 328 is predominantly white with red and blue accents, viewed from a side angle in mid-flight, against a clear blue sky, featuring a distinctive high-wing design and a T-tail. +1455391.jpg The Dornier 328 is captured in flight from a side view against a clear blue sky, featuring a white fuselage with blue trim and visible propeller motion, displaying the Cirrus Airlines branding prominently. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/E-170_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/E-170_descriptions.txt new file mode 100644 index 0000000..100a634 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/E-170_descriptions.txt @@ -0,0 +1,10 @@ +1795569.jpg The E-170 is seen from a side view angle during landing, featuring a white fuselage with a blue tail bearing a distinctive white "F" logo, against a backdrop of grassy terrain and distant trees under clear skies. +1889561.jpg The E-170 in the image is a white airliner with blue tail and engine nacelles, captured in a left-side view flying against a clear blue sky, featuring a distinctive logo on the tail and wings slightly angled upwards. +1092244.jpg The E-170 is depicted in a side profile view with a clear sky backdrop, showcasing its white fuselage accented by black and blue airline branding, a streamlined nose, and winglets extending upward. +2213540.jpg The E-170 is captured in a side view as it lands on a runway, displaying a predominantly white fuselage with a large blue LOT logo, darker blue engines, and a cityscape background under a clear sky. +2123937.jpg The E-170 is painted in a distinctive white and blue livery with a strip of blue featuring a dark emblem on the tail, viewed from the side against an open grassy field, with recognizable text and motifs highlighting its unique airline branding. +1052982.jpg The E-170 aircraft is predominantly white with a green and red stripe running along the fuselage, viewed from the front-left angle on a tarmac with a clear sky, featuring a distinctive high wing with two engines and particular airline branding visible. +0664002.jpg The E-170 in the image has a white fuselage with green and red accents, captured from a side angle in mid-flight against a clear blue sky, featuring Alitalia branding with visible landing gear extended and distinctive winglet tips. +0912833.jpg The low-resolution image shows a predominantly white Embraer E-170 viewed from a wing perspective, featuring green and red accents on the tail with an airport runway and terminal in the background. +0927430.jpg The E-170 is viewed from the rear quarter in an airport environment, featuring a white fuselage with green and red vertical stabilizer accents, grey textured wings, and visible retractable landing gear, with airport markings and another aircraft in the background. +0758399.jpg The E-170 is dark blue with a white and red stripe along the fuselage, sitting on a runway with a side view in an airport environment, featuring two under-wing engines and a distinctive rectangular tail featuring a stylized flag logo. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/E-190_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/E-190_descriptions.txt new file mode 100644 index 0000000..795f472 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/E-190_descriptions.txt @@ -0,0 +1,10 @@ +2115317.jpg A white Embraer E-190 with "oneworld" and "Finnair" liveries is captured in a left side view, flying over a green field with blurry trees in the background, and it features a distinctive dark blue tail logo. +2265625.jpg The E-190 aircraft features a smooth white fuselage with a blue and yellow tail fin, viewed from below and slightly to the side against a clear blue sky, showcasing its two engines and distinctive vertical stabilizer. +1353567.jpg The US Airways E-190, captured in a side view as it takes off, features a clean white fuselage with a blue tail and red accents, set against a runway with a city skyline in the distant background. +1818400.jpg The E-190 aircraft is predominantly silver with red "NIKI" branding on its tail and fuselage, viewed from the side against a clear blue sky, featuring a line drawing of a fly on the fuselage as a distinguishing element. +1913802.jpg The E-190 aircraft appears in a right side view with a white fuselage featuring blue and red accents near the tail, extended landing gear, and is set against a clear sky background. +2162833.jpg The E-190 is primarily white with minimal branding and green, red, and white stripes on the tail, viewed from the side as it flies against a clear blue sky backdrop, with its landing gear extended for descent. +1909952.jpg The E-190 features a white fuselage with blue and red tail markings, seen from a side view against a backdrop of lush greenery, with visible features including its sleek, elongated body and prominent engines mounted under the wings. +2184057.jpg The E-190, painted in a silver livery with dark blue accents and SkyTeam branding, is viewed in profile against a cloudy sky, displaying its elongated fuselage, two engines under the wings, and distinctive airline logos on the tail and body. +2013250.jpg The E-190 aircraft, viewed from the side, features a white fuselage with bold, dark blue "FINNAIR" lettering, a blue logo on the tail, taxiing on a runway with a backdrop of autumn trees. +1385441.jpg The E-190 features a predominantly white fuselage with a blue tail displaying the jetBlue logo, seen from a side angle on an airport tarmac with a glass terminal and another aircraft in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/E-195_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/E-195_descriptions.txt new file mode 100644 index 0000000..d1370f9 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/E-195_descriptions.txt @@ -0,0 +1,10 @@ +1163999.jpg The E-195 aircraft is predominantly white with blue accents, featuring a side view in profile on a runway with mountainous terrain and a castle visible in the background, and has distinctive logos and engines mounted beneath the wings. +1818393.jpg A white Montenegro Airlines E-195 is captured in a side profile view mid-flight against a clear blue sky, featuring blue tail and engines with distinctive logos and registration markings near the tail. +2154734.jpg The E-195 aircraft is predominantly white with a sleek, elongated fuselage, featuring dark tinted windows, and a blue tail fin with a yellow emblem, seen from a side view on an airport runway, with large airport buildings visible in the background. +2053589.jpg The E-195 is captured from a front-side angle in flight, showcasing its white fuselage with a distinctive blue tail featuring a checkered yellow pattern, set against a backdrop of a rural landscape with trees and a clear sky. +2001300.jpg The E-195 aircraft is predominantly white with teal and blue accents, viewed from a slightly elevated angle on the tarmac with a grass and concrete runway in the background, and it has distinctive winglets and engines mounted under the wings. +2222240.jpg The E-195 is a white commercial jet with red winglets and tail featuring a blue airline logo, viewed from below and slightly to the side against a clear blue sky, showcasing its engines and undercarriage details. +2022236.jpg The E-195 is primarily white with aqua blue accents, viewed from the side on an airport tarmac with a hazy sky background, featuring a clean, streamlined fuselage and distinctive winglets. +1841545.jpg The E-195 aircraft features a white fuselage with blue branding text, visible from a side angle as it takes off in a snowy airport environment with trees and another aircraft in the background. +1829675.jpg The E-195 in the image is white with a blue tail fin featuring a pattern of yellow dots, viewed from the side in-flight against a clear blue sky, with a distinct upward swoop to its nose and engines mounted under the wings. +2172296.jpg The Embraer E-195 appears in flight against a clear blue sky, positioned in a slightly upward angle showing the undercarriage and wing-mounted engines, with a white fuselage adorned by navy blue tail and engine details, including the airline's name and logo visible on the tail fin. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/EMB-120_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/EMB-120_descriptions.txt new file mode 100644 index 0000000..5ea16d8 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/EMB-120_descriptions.txt @@ -0,0 +1,10 @@ +0236032.jpg The EMB-120 is shown from a side viewpoint, featuring a white fuselage with orange and red stripes, positioned on an airport taxiway with hangars and grassy fields in the background, and displaying twin turboprop engines and a distinctive tail logo. +1239225.jpg The EMB-120 is captured in flight against a clear blue sky, showcasing a silver fuselage with a distinctive blue and red stripe along its side, and features a high-wing design with clean, polished textures and a protruding nose, emphasized by prominent landing gear and engine nacelles. +0448054.jpg The EMB-120 is viewed from the side with a white and blue color scheme, featuring a distinctive geometric pattern and logo on its tail, set against a grassy foreground and a large green hangar in the background. +1695911.jpg The EMB-120 features a striking orange and blue livery with a smooth texture, captured in a side view mid-flight against a clear sky, displaying its distinctive twin-turboprop engines and high-mounted wings. +0174049.jpg The EMB-120 in the image is viewed from the side on an airport tarmac, displaying a silver body with a blue and red stripe along the fuselage, and a distinct tail emblazoned with "SKYWEST," set against a background of low mountains and a mostly clear sky. +1776805.jpg The EMB-120 is painted primarily white with blue and gold accents, positioned in a side view on an airport tarmac, featuring twin propellers and a distinctly tapered tail in a wide open environment with visible runway markings and a clear sky. +0316509.jpg The EMB-120 is viewed from the front with a slight downward angle, displaying a metallic silver fuselage with dark blue and red stripes, parked on an asphalt surface against a clear blue sky, featuring twin propellers and a distinct T-tail. +0127045.jpg The EMB-120 appears in mid-flight from a side angle with a smooth grey and white fuselage accented by a red stripe, bearing distinct rear-mounted propellers, set against a clear blue sky. +1246986.jpg The EMB-120 is silver with a blue and red stripe along its fuselage, captured from a side view on an airport tarmac with buildings and trees in the background, featuring twin engines mounted on low wings and a distinctive front profile. +0143079.jpg The EMB-120 in the image is predominantly dark blue with a silver fuselage, viewed from the side on an airport runway with a mountain backdrop; it features a distinctive United Express logo on the tail and commemorative "350th EMB-120" marking on the body. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/ERJ_135_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/ERJ_135_descriptions.txt new file mode 100644 index 0000000..c97b007 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/ERJ_135_descriptions.txt @@ -0,0 +1,10 @@ +1921280.jpg The ERJ 135 is painted in dark blue and white with the "City Airline" logo prominently displayed, positioned in profile on a runway with a forested background, showcasing its elongated fuselage and distinct T-tail design. +2164986.jpg The ERJ 135 is painted in a striking blue, red, and white livery with prominent "Eastern" branding, viewed from the side against a modern airport terminal backdrop, featuring a pointed nose, sleek fuselage, and a distinctive T-tail. +1225157.jpg The ERJ 135, visible from a lateral viewpoint, is painted white with blue accents and the Luxair logo, flying low above a grassy airfield with clusters of trees in the background. +1210495.jpg The ERJ 135 is viewed from below with a striking silver-gray fuselage highlighted by dark blue and white stripes, landing gear extended against a clear blue sky, showcasing its pointed nose, engine mounts near the tail, and distinctive winglets. +1129151.jpg The ERJ 135 is seen in a side view on the runway with a white fuselage featuring blue and red tail markings and "Air France" text, set against a backdrop of green grass and distant trees, highlighting its sleek design with small, round windows. +1299912.jpg The ERJ 135 is captured from a low front angle in flight, featuring a sleek white fuselage with a distinctive dark blue upper section, contrasting with a cloudy sky backdrop, highlighting its prominent nose structure, extended landing gear, and rear engine placement. +1332077.jpg The ERJ 135 is depicted with a smooth, white fuselage, viewed from a low front angle with extended landing gear amidst a clear blue sky background, showcasing its distinctive short front landing gear and regional airline livery. +1956503.jpg The ERJ 135 is depicted in a side profile during flight, showcasing a distinctive blue-and-white livery with prominent branding, set against a clear sky, with visible landing gear and winglets that complement the sleek design. +1053500.jpg The ERJ 135 appears in flight with a sleek white fuselage featuring blue and gold stripes, viewed from the side with landing gear extended over a runway, set against a backdrop of trees and a mountainous horizon. +1581078.jpg The low-resolution image depicts a white ERJ 135 with blue and red tail stripes, seen from a slightly below and rear angle, showcasing its T-tail and engines on a landing approach with a clear blue sky as the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/ERJ_145_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/ERJ_145_descriptions.txt new file mode 100644 index 0000000..b0f4461 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/ERJ_145_descriptions.txt @@ -0,0 +1,10 @@ +1188130.jpg The ERJ 145 features a striking blue and white color scheme with a prominent logo on the tail, captured from a side view on the runway, with a commercial terminal building in the blurred background and grass in the foreground, highlighting its elongated fuselage and twin-engine configuration. +1549184.jpg The ERJ 145 is depicted in a right-side view mid-flight, featuring a blue and white fuselage with a prominent blue nose and tail fin against a clear sky backdrop. +1345199.jpg The ERJ 145 in the image is predominantly white with blue engine nacelles and a red and blue tail design, captured in a side view mid-flight against a backdrop of a cloudy blue sky, with visible small passenger windows along the fuselage. +1966297.jpg The ERJ 145 is captured from a side profile in flight against a clear blue sky, featuring a sleek white fuselage adorned with a series of small, colorful decals or logos along the windows, with dark wing and tail sections that enhance its streamlined appearance. +1353361.jpg The ERJ 145 is captured in flight from a side view against a clear blue sky, featuring a sleek white fuselage with a distinct dark blue underbelly and engine nacelles, while its characteristic elongated nose and T-tail are discernible despite the low resolution. +1186579.jpg The ERJ 145 is depicted in a climbing pose with a white fuselage displaying "AEROLITORAL" in black letters, a dark blue tail featuring a distinctive logo, and is set against a clear blue sky backdrop. +1156456.jpg The ERJ 145, viewed from the side on an airport taxiway, features a white fuselage with a green and red stripe, Alitalia livery, and dark windows, set against a backdrop of airport infrastructure and grass. +1338266.jpg The ERJ 145 is painted white with blue markings and a red design on the fuselage, viewed from a low-angled side perspective against a clear sky, highlighting its elongated body, sleek wings, and upwardly curved nose as it ascends. +1357956.jpg Viewed from the side, the ERJ 145 displays a predominantly white fuselage with a blue tail and underbelly, carrying "flybe." branding, as it touches down on a grassy runway against a backdrop of trees and distant buildings. +0440696.jpg The ERJ 145 appears in a front-side view on a runway, displaying a predominantly white fuselage with dark blue tailfin marked by star-like insignia, framed by a clear sky and distant cityscape. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Embraer_Legacy_600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Embraer_Legacy_600_descriptions.txt new file mode 100644 index 0000000..0fa3643 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Embraer_Legacy_600_descriptions.txt @@ -0,0 +1,10 @@ +1067522.jpg The Embraer Legacy 600 in the image is predominantly white with dark blue accents and a red stripe, viewed from the right side with a stationary, grounded pose on a tarmac with overcast skies and an airport vehicle in the background. +1560946.jpg A white Embraer Legacy 600 with a red stripe along its fuselage is shown mid-flight from a side view against a clear blue sky, highlighting its sleek design, T-tail, and extended landing gear. +1686428.jpg The Embraer Legacy 600 is captured mid-flight against a cloudy sky, featuring a white fuselage with a dark blue underbelly and engine nacelles, with sleek, elongated windows and a prominent vertical stabilizer marked with registration details. +2091945.jpg The Embraer Legacy 600 is predominantly white with blue accent stripes along its fuselage, visible from a side view as it rests on a wide concrete tarmac near a modern building and trees, featuring distinctive winglets and a pointed nose. +0722894.jpg The Embraer Legacy 600 is captured in a side profile view with a primarily white body and a blue tail, featuring distinct, small dark windows, against a backdrop of rolling hills and a clear sky. +0979582.jpg The Embraer Legacy 600 is seen in a side profile, predominantly white with a sleek, glossy texture, adorned with a subtle dark stripe across its body, featuring poised winglets and a clear view of the landing gear extended against a cloudless blue sky. +1413139.jpg The Embraer Legacy 600 is depicted in a dark maroon and cream livery with a sleek fuselage viewed from the side, featuring distinctive gold trim and company branding against a backdrop of lush green grass and trees under a clear blue sky. +1539360.jpg The Embraer Legacy 600 is positioned on a tarmac under a clear sky, featuring a sleek white fuselage with dark blue accents and a smooth, glossy finish, viewed from the side highlighting its prominent swept-back tail and multiple windows along the body. +1807109.jpg The Embraer Legacy 600 is captured in side profile against a clear blue sky, featuring a sleek white body with a striking dark blue tail and engine nacelles, complemented by a distinctive horizontal stripe along the fuselage. +1387200.jpg The Embraer Legacy 600 is depicted in a sleek, white and dark blue livery with gold accents, positioned in a side profile on a runway, surrounded by greenery, and featuring its distinctive T-tail and long, streamlined fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Eurofighter_Typhoon_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Eurofighter_Typhoon_descriptions.txt new file mode 100644 index 0000000..72731bf --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Eurofighter_Typhoon_descriptions.txt @@ -0,0 +1,10 @@ +0607517.jpg The Eurofighter Typhoon, viewed from the front with an open canopy, is predominantly gray with a matte texture, displaying prominent delta wings and canards against a clear blue sky and distant landscape. +2258768.jpg The Eurofighter Typhoon appears in a sleek matte gray color with smooth contours and twin engines, viewed from the side against a clear blue sky, highlighting its delta wing design and prominent tail fin. +1428349.jpg The Eurofighter Typhoon appears in a side profile with a matte gray finish, displaying distinctive roundels and tail markings, and is captured mid-flight against a clear sky, exposing its delta wing configuration and twin-engine layout. +2157819.jpg The Eurofighter Typhoon in the image appears in a light gray color with a smooth texture, seen in a side profile view taking off with its landing gear extended, against a blurred urban and grassy background, featuring distinct swept-back twin tails and a delta wing configuration. +2186366.jpg The Eurofighter Typhoon shown in the image is a sleek, light gray aircraft viewed in profile against a clear blue sky, featuring a distinctive delta wing design, canards near the cockpit, and visible landing gear extended as it appears to be in the process of taking off or landing. +1748479.jpg The Eurofighter Typhoon is depicted in a side view with its nose slightly upward, featuring a light gray, matte texture as it takes off over a grassy airfield, set against a blurred backdrop of distant houses and trees. +1245051.jpg The Eurofighter Typhoon in the image appears in a uniform gray color with a smooth texture, viewed from a slightly below and side angle as it approaches landing with wheels extended against a cloudy sky backdrop, showcasing its delta wings and canard configuration. +1735490.jpg A grey Eurofighter Typhoon is depicted in a side view with landing gear extended, taking off from a runway against a grassy and urban background with distinct rectangular buildings and a slightly tilted pose. +1299226.jpg The Eurofighter Typhoon is depicted in a side profile, showcasing its sleek gray fuselage with red cover markings under a cloudy sky, parked on an airfield with various equipment visible in the environment. +1349341.jpg The Eurofighter Typhoon appears in a matte gray finish with a sleek aerodynamic form, viewed from the side on a runway with grass in the foreground and clear sky above, featuring its distinctive canard foreplanes and delta wing design with minimal visible markings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/F-16A_B_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/F-16A_B_descriptions.txt new file mode 100644 index 0000000..54951cc --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/F-16A_B_descriptions.txt @@ -0,0 +1,10 @@ +1223797.jpg A light gray F-16 with a smooth, slightly weathered military finish is shown in left-side profile on approach, landing gear extended, silhouetted against a flat overcast white-gray sky. +1250932.jpg Viewed from a slightly lower left angle, the pale gray F-16 displays its single-engine intake, bubble canopy with two visible pilots, and deployed wheels against a blank cloudy background. +1289663.jpg From a clean lateral perspective, the aircraft’s muted gray fuselage, sharp nose, and single vertical tail with colorful markings stand out against the uniform sky. +1588720.jpg The F-16 appears mid-descent in a side-on pose, matte gray in color, with external fuel tanks and landing gear clearly visible beneath the wings. +2077215.jpg Seen from below and to the left, the jet’s light gray body, extended nose wheel, and angular wing roots contrast softly with the bright overcast sky. +2129930.jpg A left-facing profile captures the F-16’s streamlined gray form, dark canopy, and underwing stores, isolated against a featureless pale sky. +1072281.jpg The aircraft is presented in a shallow landing configuration, gray-toned with subtle panel lines, its single tail fin and extended gear distinct despite low resolution. +0895309.jpg From a slightly upward side view, the smooth gray F-16 shows its intake chin, lowered landing gear, and compact single-engine layout against a washed-out background. +0934121.jpg The jet’s light gray paint and sleek silhouette are emphasized in a side profile, with landing gear down and no ground features visible below. +1223924.jpg Seen laterally in flight, the gray F-16’s sharp nose, bubble canopy, and extended wheels are clearly outlined against the soft, cloudy sky backdrop. \ No newline at end of file diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/F_A-18_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/F_A-18_descriptions.txt new file mode 100644 index 0000000..0e8633e --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/F_A-18_descriptions.txt @@ -0,0 +1,10 @@ +0218835.jpg A light gray F/A-18 Hornet with a matte military finish is seen in a left-side profile, landing gear deployed, flying against a clear deep-blue sky with visible underwing stores and twin vertical stabilizers. +0885290.jpg Viewed slightly from below and to the left, the pale gray naval jet shows its extended nose wheel, swept wings, and textured panel lines contrasted sharply against an empty blue background. +0874281.jpg From a side-on midair perspective, the FA-18’s weathered gray fuselage, twin tails with squadron markings, and lowered landing gear stand out clearly against the uniform sky. +0871496.jpg The aircraft appears in a shallow descent pose, light gray and subtly worn, with open gear bays, visible pylons, and a clean blue-sky backdrop. +0691271.jpg Seen from a low-angle left profile, the gray FA-18 displays its aerodynamic shape, twin-engine exhausts, and dark canopy, isolated against a cloudless sky. +0681458.jpg The image captures a slightly upward-looking side view of a dull gray FA-18 Hornet, its landing configuration and sharp nose silhouetted against bright blue space. +0465507.jpg From a lateral airborne viewpoint, the jet’s monochrome gray paint, extended landing gear, and distinct twin vertical fins are clearly defined against the sky. +0440195.jpg A leftward-facing FA-18 with a smooth gray surface texture is shown mid-flight, gear down, with military insignia visible and no ground features in the background. +1231945.jpg The aircraft is presented in a clean side profile, light gray with subtle shading, landing gear extended, and framed entirely by an uninterrupted blue sky. +1254668.jpg Seen from slightly below and abeam, the gray FA-18’s angular wings, lowered wheels, and compact twin-tail design are emphasized against the minimalist sky backdrop. \ No newline at end of file diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Falcon_2000_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Falcon_2000_descriptions.txt new file mode 100644 index 0000000..b0c313b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Falcon_2000_descriptions.txt @@ -0,0 +1,10 @@ +2127863.jpg The Falcon 2000 features a sleek white body with gold accent lines, viewed from the side on a runway, set against a lush green backdrop of trees. +2044258.jpg The Falcon 2000, viewed from the front right, has a sleek white fuselage with dark-tinted windows and subtle blue and orange stripes, set against a runway and grassy backdrop. +0994752.jpg The Falcon 2000 in the image appears in a white color with a subtle blue stripe along the fuselage, shown from a side low-angle view in flight against a clear blue sky, with its undercarriage deployed and the characteristic swept-wing design visible. +1716407.jpg The Falcon 2000 in the image is white with multiple colorful stripes on the tail, viewed from the side on a tarmac with distant blurred cityscape and grassland in the background, featuring two engines beneath the wings and a sleek, streamlined fuselage. +1864276.jpg A white Dassault Falcon 2000 jet with a sleek, smooth texture is pictured in a side view against a gray sky, ascending with its landing gear partially retracted and the registration "D-BERT" visible on the fuselage. +1626934.jpg The Falcon 2000 appears in mid-flight with a sleek white fuselage and a distinctive blue tail featuring a unique logo, viewed from the side against a clear blue sky, with landing gear deployed. +1296886.jpg The Falcon 2000 is shown in-flight from a side angle with white and grey colors featuring a distinctive red and silver swoosh design along its fuselage, set against a clear blue sky background. +0781154.jpg The Falcon 2000 in the image is a sleek white jet with a smooth, glossy texture, captured from a side profile on a runway against a backdrop of open grassy fields and distant trees, featuring distinctive black-tinted windows and a subtle red and gray stripe along its fuselage. +1346589.jpg The Falcon 2000 appears with a white and gold gradient exterior accented by artistic red and gray designs, viewed from a side angle on an airport tarmac with overcast skies, revealing its engines and distinctive short tail while a boarding staircase is positioned by the main door. +1993814.jpg The Falcon 2000 in the image is shiny white with prominent cockpit windows, viewed from a frontal angle against a backdrop of green foliage and blue sky, with its distinctive rounded nose and dual engines visible on either side. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Falcon_900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Falcon_900_descriptions.txt new file mode 100644 index 0000000..c8704e4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Falcon_900_descriptions.txt @@ -0,0 +1,10 @@ +1183804.jpg The Falcon 900 appears in a side view with a sleek white fuselage accented by green and blue stripes, situated on an airport tarmac under a clear sky, with its distinctive tri-engine layout and T-tail fin prominently visible. +1774329.jpg A white Falcon 900 with red accents and a distinct emblem on the tail is parked on a concrete runway, viewed from above with a grassy area in the background. +0302922.jpg The Falcon 900 is a sleek white jet with blue striping, viewed from the side on a runway with tropical mountains and palm trees in the background, its distinct tri-jet configuration and T-tail design clearly visible. +1187247.jpg The Falcon 900 in the image is sleek and predominantly white with green accents along the side, captured from a side angle as it lands on a tarmac with a blurred grassy background, featuring a distinct T-tail and multiple rounded windows. +0085358.jpg The Falcon 900 in the image is predominantly white with a smooth texture, featuring a side profile view with bold navy blue and red stripe accents, set against an airport runway background with mountainous terrain in the distance and industrial buildings nearby. +1154960.jpg The Falcon 900 in the image is viewed from the side on a runway, featuring a sleek, silver-gray body with blue accent lines and identifiable by its three jet engines, T-tail, and the horizontal stabilizers positioned high on the tail, set against a clear sky with distant cityscape visible. +1031647.jpg The Falcon 900 jet appears primarily white with subtle green and gray accent stripes, positioned in a side view on a runway against a backdrop of rocky, mountainous terrain. +2014377.jpg The Falcon 900 in the image is predominantly white with blue accents, viewed from the side at a slightly elevated angle on a tarmac with grass surroundings, featuring a trijet configuration with its distinct T-tail and low-mounted engines. +1256114.jpg The Falcon 900 in the image is a sleek, white jet with a smooth texture, featuring green accent stripes, captured in a side profile on a runway with a grass-covered airfield in the background, notable for its three-engine configuration mounted on the rear fuselage. +1323017.jpg The Falcon 900 appears in a light cream color with a sleek, smooth texture, captured from a side view during flight with its landing gear extended, set against a clear blue sky, showcasing its triple-engine design and distinctive T-tail. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Fokker_100_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Fokker_100_descriptions.txt new file mode 100644 index 0000000..cfcac29 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Fokker_100_descriptions.txt @@ -0,0 +1,10 @@ +1617994.jpg The low-resolution image shows a white Fokker 100 model with "Emirates" branding prominently displayed on its side, positioned indoors in a retail environment, with visible overhead lighting and a blue wall in the background. +1281857.jpg The Fokker 100 features a blue and white color scheme with a smooth, sleek texture, shown banking upwards in flight, against the backdrop of an airport control tower, with distinguishing features like its high T-tail and twin rear-mounted engines. +1429838.jpg The Fokker 100 in the image appears with a predominantly white upper fuselage and dark blue lower fuselage, featuring red and blue accents, viewed in a left-side profile against a grassy field and distant trees, with a distinct British Airways livery. +0958618.jpg The Fokker 100 in the image is white with a distinctive blue tail fin featuring "100" markings, seen from a side-on view on a tarmac with hangars and grass in the background. +0487329.jpg The Fokker 100 in the low-resolution photo is primarily white with blue and gold logos, viewed from the side on a snowy runway with trees and a castle in the background, featuring a distinctive T-tail and engines mounted at the rear. +1283512.jpg The Fokker 100 in the image is a sleek, white jet viewed from the side with landing gear deployed, set against a clear blue sky, featuring two rear-mounted engines and a T-tail design. +1453506.jpg The Fokker 100 is captured in a right-side profile view, with a dominant white fuselage marked by "ADRIA" in dark blue, complemented by a green tail featuring a white emblem, set against a backdrop of overcast sky as it appears in mid-flight with its landing gear extended. +1133885.jpg Seen from the side profile, the Fokker 100 has a white fuselage with blue, red, and orange tail markings, notably featuring a smooth texture, flying against a clear blue sky, and the landing gear is extended as it appears to be in descent. +1772714.jpg The Fokker 100 in the image appears with a white upper fuselage and a dark blue underbelly, displaying a side profile in mid-flight against a cloudy sky, with a distinctive sun emblem on its tail and visible wing and engine attachments. +1647702.jpg The Fokker 100 is captured in a left-side profile flying against a clear blue sky, featuring a white fuselage with "Air France Regional" branding in dark blue, a distinctive T-tail design, and twin engines mounted at the rear. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Fokker_50_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Fokker_50_descriptions.txt new file mode 100644 index 0000000..2592826 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Fokker_50_descriptions.txt @@ -0,0 +1,10 @@ +1620800.jpg The Fokker 50 is depicted in a side profile against a clear sky, featuring a striking dark blue fuselage with white and gold markings, a smooth texture, and distinctive high-set wings with spinning propellers, along with a prominent tail logo. +0618968.jpg The Fokker 50 is seen in profile on an airport tarmac, painted in a vivid blue with white accents and a gold design on the tail fin, featuring a distinct high-wing configuration and a twin-propeller arrangement, set against a backdrop of lush green trees. +0302868.jpg The Fokker 50 in the image is painted white with blue accents and a colorful emblem on the tail, viewed from the side, taxiing on a runway with a tree-lined background and a distant hangar, characterized by its twin turboprop engines and high-wing design. +0123332.jpg The Fokker 50, viewed from the right side on the tarmac, features a primarily blue and white color scheme with a distinctive Estonian Air logo, set against an airport runway backdrop with grassy fields in the distance. +0127633.jpg The Fokker 50 in the image appears in a bright green and white color scheme, viewed from an elevated angle showcasing its twin turboprop engines and distinctive high wing design; it is parked on an airport tarmac with grassy areas visible in the distance. +0812097.jpg The Fokker 50 is captured in a profile view on a tarmac, showcasing a predominantly white fuselage with blue and red logo details near the front amid a grassy field and tree-lined background under clear skies. +0688080.jpg The Fokker 50 is a white aircraft with a blue tail, a visible registration code "B-12270," and distinctive "Mandarin Airlines" markings, seen from the side on an airport tarmac, with hangars and a hazy sky in the background. +1036870.jpg The Fokker 50 is captured in a left-side profile view, displaying a sleek, white fuselage with a smooth texture, complemented by dark propellers and a distinct tail marking against a clear blue sky and a runway background. +0979614.jpg The Fokker 50, captured in flight from a side angle, features a white fuselage with colorful red, yellow, and orange accents and logos, set against a clear blue sky, with its landing gear extended and propellers in motion. +0177659.jpg The Fokker 50 in the image features a white fuselage with prominent red highlights, including a red tail fin and stripes, viewed from a slightly elevated angle on an airport tarmac, with distinctive twin-engine propellers and "Austrian" branding on its side. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Fokker_70_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Fokker_70_descriptions.txt new file mode 100644 index 0000000..404bf00 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Fokker_70_descriptions.txt @@ -0,0 +1,10 @@ +0469133.jpg The Fokker 70 features a predominantly white fuselage with the airline logo visible in red on the forward section, a blue engine nacelle on the left side, and a red vertical stabilizer, viewed from the front on a runway with airport buildings in the backdrop. +1204183.jpg The Fokker 70 features a blue and white livery with a visible logo on the tail, captured in a side view against a backdrop of fluffy clouds, displaying its signature T-tail and landing gear extended for descent. +1044385.jpg The Fokker 70 is depicted in a landing position with a prominent blue and white color scheme, featuring "KLM" branding on the fuselage and tail, set against a clear sky background with trees slightly blurred in the foreground. +0792288.jpg The Fokker 70 aircraft, captured in a low-resolution image, displays a shiny silver fuselage adorned with colorful decals, ascending with a slight bank against a misty mountainous backdrop, featuring visible winglets and a distinctive T-tail configuration. +0143363.jpg The Fokker 70 is depicted in a side view on a runway with a white fuselage featuring dark blue and red tail markings, complemented by a backdrop of green trees and a blue sky, with the aircraft's engines and landing gear prominently visible. +0136191.jpg The Fokker 70 in the image is painted in a sleek blue color with a smooth texture, viewed from the side on the tarmac, displaying clear airline branding on the fuselage, with grassy fields and runway markings in the background. +1893205.jpg The Fokker 70 is shown in a side view, taking off with a white fuselage featuring a red stripe and emblem, positioned against a backdrop of dense, dark green forest and a clear sky, with the Austrian arrows branding prominently displayed. +1296002.jpg The Fokker 70 in the image is white with blue and red accents, featuring a distinctive tail fin design, seen from a side angle against a grassy airfield and distant trees with clear sky in the background. +1596398.jpg The Fokker 70 is captured from a side view on a runway with a blue and white color scheme, featuring the "KLM" logo, a distinctive high T-tail design, and visible runway markings and grass in the background. +0507656.jpg The Fokker 70 features a white fuselage with "Austrian arrows" text and a stylized red arrow logo on the tail, depicted in a side view as it taxis on a runway with a cloudy sky and grassy foreground in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Global_Express_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Global_Express_descriptions.txt new file mode 100644 index 0000000..ec886e7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Global_Express_descriptions.txt @@ -0,0 +1,10 @@ +1276526.jpg A sleek white Global Express aircraft with a faint gold stripe along its body is captured in a lateral view as it lands on a runway, set against a backdrop of lush, green fields and distant industrial buildings. +1003022.jpg The Global Express jet is shown in flight with a smooth white exterior accented by blue and grey stripes, viewed from a side angle against a clear sky backdrop, highlighting its elongated fuselage, swept wings with downward-facing winglets, and the distinct T-tail design. +0422687.jpg The Global Express in the image appears in a clean white color with sleek, smooth textures, captured in a side-on mid-flight pose against a clear blue sky, featuring distinctive elongated fuselage and positioned landing gear. +2188615.jpg The Global Express jet is depicted in flight against a clear blue sky, showcasing its sleek white body with minimal markings, extended landing gear, and distinctive T-tail from a side view, emphasizing its streamlined design and smooth metallic texture. +0318594.jpg The aircraft is a sleek white with a smooth texture, captured in a left-side profile view against a clear blue sky, highlighting its elongated fuselage, upward-angled wings, and characteristic T-tail. +1875301.jpg The Global Express in the image features a sleek white body with teal and yellow stripes, viewed from a side angle as it takes off over a misty airport runway with terminal buildings and other aircraft blurred in the background, showcasing its swept-back wings and distinctive pointed nose. +1337427.jpg The Global Express jet is predominantly white with sleek blue and red stripes, viewed from the side on a tarmac with a lush green backdrop, highlighting its distinctive elongated fuselage and winglets. +1877806.jpg The Global Express is shown in a low-angle view, banking slightly to the left against a clear blue sky, featuring a smooth, polished metallic exterior with subtle blue accent stripes, visible landing gear, and distinct twin engines mounted high on the rear fuselage. +2101652.jpg The Global Express jet appears in a pristine white with minimal markings, viewed from a low angle that highlights its sleek, smooth fuselage and distinctive wingtips against a clear blue sky. +1332208.jpg The Global Express appears in a smooth, cream-white finish with reflective, polished silver engines, seen in a side profile against a clear blue sky, its landing gear extended as it descends. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Gulfstream_IV_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Gulfstream_IV_descriptions.txt new file mode 100644 index 0000000..d1dbcfb --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Gulfstream_IV_descriptions.txt @@ -0,0 +1,10 @@ +1311421.jpg The Gulfstream IV in the image is predominantly white with sleek red and gray accent lines, viewed from a right-side perspective on a snowy tarmac, featuring large, rounded windows and characteristic swept-back wings and tail against a backdrop of snow-capped mountains. +1345040.jpg The Gulfstream IV appears in a side profile with a sleek white and dark green exterior featuring a series of circular windows, parked on a tarmac with orange safety cones and a clear blue sky background. +1113385.jpg The Gulfstream IV is captured in a left-side profile view against a clear blue sky, featuring a sleek white body with red and gold accent stripes along the fuselage, and its distinct T-tail and winglets visible, as it approaches with landing gear extended. +1901003.jpg A white Gulfstream IV with red and gray accents is captured in-flight against a clear blue sky, displaying Turkish flags on the tail fin and fuselage, and its landing gear extended. +1379818.jpg The Gulfstream IV appears in a side profile against a clear blue sky, showcasing its sleek white fuselage with a dark stripe along the windows, distinctive winglets, and landing gear extended. +2234509.jpg A white Gulfstream IV with orange and blue accents is captured in a side profile view, flying against a backdrop of snow-capped mountains and rugged terrain, with its landing gear extended, highlighting its sleek fuselage and distinctive oval windows. +1498679.jpg The Gulfstream IV in this image is captured in a side profile view with a light gray exterior, showcasing sleek lines and a smooth texture, featuring distinct Swedish Air Force markings against a clear, unobtrusive sky, with extended landing gear visible. +1680778.jpg The Gulfstream IV appears in a smooth white finish with a sleek, elongated body marked by its distinctive oval windows, photographed in profile during landing against a clear sky, with wings and landing gear fully extended. +0755287.jpg The Gulfstream IV appears in a creamy white color with sleek, smooth texture, viewed from the side and slightly below as it descends with its landing gear deployed against a clear blue sky, featuring a distinctive red and black stripe detail along the fuselage. +1888254.jpg The Gulfstream IV is shown in flight against a clear blue sky, primarily white with blue and grey stripe accents, distinctively displaying its sleek fuselage and tail design, with retracted landing gear visible beneath the wings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Gulfstream_V_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Gulfstream_V_descriptions.txt new file mode 100644 index 0000000..b57cd0d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Gulfstream_V_descriptions.txt @@ -0,0 +1,10 @@ +1542799.jpg The Gulfstream V is predominantly white with blue stripes and markings, viewed from the side on an airfield, featuring distinct large radome structures on the tail and under the fuselage, set against a clear sky backdrop with airport buildings in the distance. +1355623.jpg The Gulfstream V is depicted in a side profile mid-flight with a sleek white fuselage featuring sparse windows, accented by a distinct red and black stripe, contrasting against a crisp blue sky. +1642987.jpg The Gulfstream V is painted white with a dark green stripe along the fuselage, featuring sleek, smooth textures, viewed in profile on a runway with grassy surroundings, and characterized by its distinctive oval windows and swept-back wings. +1857543.jpg The Gulfstream V has a sleek white body with a blue stripe along the windows, viewed from the side as it takes off on a runway with grassy surroundings and a slightly blurred wooded background. +2180833.jpg The Gulfstream V in the image is a sleek, metallic silver jet with a smooth fuselage and winglets, viewed from the side against a clear blue sky background, featuring multiple circular windows along the cabin and landing gear extended. +1749597.jpg The Gulfstream V, shown in a side and underbelly view against a clear blue sky, features a sleek white fuselage with a prominent dark stripe along the windows, its landing gear extended and wingtips sharply contrasting with the smooth curvature of the engines. +0517785.jpg This low-resolution image shows a Gulfstream V with a primarily white body featuring a brown tail with emblematic markings, viewed from a low angle against a clear blue sky, highlighting its distinctive oval windows and sleek undercarriage. +1141657.jpg The Gulfstream V in the image is matte white with a sleek, elongated fuselage and visible circular windows, photographed from a left side view on a tarmac with a grass field and airport buildings in the background, featuring its characteristic large winglets and a T-tail. +0488772.jpg The Gulfstream V, viewed from below against a clear blue sky, displays a sleek white fuselage with a glossy texture, distinct oval windows, swept-back wings, and visible landing gear, enhancing its graceful ascent. +1308524.jpg The Gulfstream V is parked on an airport tarmac with a white fuselage accented by a dark green stripe, viewed from the side under clear, sunny skies with mountains and an Alaska Airlines plane visible in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Hawk_T1_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Hawk_T1_descriptions.txt new file mode 100644 index 0000000..7866dae --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Hawk_T1_descriptions.txt @@ -0,0 +1,10 @@ +1277137.jpg The Hawk T1 aircraft is depicted in a side view with a glossy black finish, accented by a striking yellow nose and red flame-like designs, contrasted against an overcast sky and airport taxiway background. +0880533.jpg The Hawk T1 in the image is dark-colored with a striking yellow nose that transitions into flame-like patterns, viewed side-on against a cloudy sky, featuring a prominent tail design with a lion emblem and RAF roundel marking. +1344996.jpg The Hawk T1 is captured in profile with a vivid red body, white cockpit canopy, and a tail fin accented by a bold white stripe, set against a muted grassy airfield backdrop with blurred trees and structures in the distance. +2018705.jpg A Hawk T1 is viewed from the side on a tarmac, featuring a vibrant red body with a white and blue roundel, distinctive cockpit canopy, and set against a backdrop of trees and an aircraft hangar. +1677053.jpg The Hawk T1 in the image is vividly painted in red with white and blue accents, captured from a side view while landing on a runway, surrounded by a blurred, tree-lined background, featuring distinctive British Royal Air Force markings and tandem cockpit canopies. +1822339.jpg The Hawk T1 in the image appears with a sleek black exterior, featuring subtle white accents, flying in a side-by-side formation against a clear blue sky, with visible landing gear and distinctive cockpit canopies. +2159929.jpg The Hawk T1 is shown in a side profile with a vibrant red body accented by white and dark blue stripes, featuring the "Royal Air Force" insignia, parked on an airfield with an industrial hangar in the background. +1861128.jpg The Hawk T1 in the image is shown in a left side view, displaying a red body with white and blue accents, landing gear extended, against a clear blue sky. +1151729.jpg The Hawk T1 in the image is finished in red with white and blue accents, featuring a sleek, aerodynamic pose during takeoff against a blurred green landscape and an overcast sky, with distinguishing roundels and vertical stabilizer markings. +0893717.jpg The Hawk T1 in the image is a sleek, black jet with vibrant RAF roundels on its side, viewed from a side profile on the ground against a backdrop of grassy terrain and distant trees, featuring a distinctive pointed nose and a bubble canopy. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Il-76_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Il-76_descriptions.txt new file mode 100644 index 0000000..6d036ca --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Il-76_descriptions.txt @@ -0,0 +1,10 @@ +0895159.jpg The Il-76 in the image is viewed from a side profile, featuring a predominantly white fuselage with blue stripe accents and visible registration markings, set against a grassy foreground and a cloudy sky, with four engines mounted on its swept-back wings and a raised tail design. +0582379.jpg The Il-76 depicted is white with a light blue geometric tail design, seen in a side profile on a sunlit airport tarmac background, featuring prominent engines and a raised cockpit. +1002202.jpg The Il-76, viewed from below with a left side profile, displays a light gray color with visible panel lines, bulbous nose, four large podded engines under a high wing, and extended landing gear against a clear sky background. +1155366.jpg The Il-76 is viewed from below against a cloudy sky, showcasing its beige underbelly with visible landing gear and engines on each wing, with clear registration markings on the fuselage. +0758789.jpg The Il-76 aircraft, viewed from a side angle in flight against a partly cloudy sky, is painted in a solid white color with a smooth texture, featuring its high-mounted wings and four large jet engines, and displaying distinct landing gear in a downward position. +1826521.jpg The Il-76 is in a side view on a grassy field, showcasing a white body with bold red lettering and design accents, distinctively featuring four engines mounted on swept wings and a prominent vertical stabilizer against a cloudy sky background. +1050578.jpg The Il-76 is shown in profile view, displaying a white and blue color scheme with a horizontal stripe, featuring a distinctive high-wing design with four engines, situated on a tarmac with a grassy foreground and a hazy urban skyline in the background. +0751327.jpg The Il-76 is shown in a side-view pose with an off-white, smooth body, darkened windows on the cockpit, distinctive large multi-wheel landing gear extended, and robust engines under the wings, set against a clear blue sky. +1398963.jpg This Il-76 aircraft appears in a low-resolution image, showcasing a white and blue color scheme with prominent logos, captured from a side angle against an overcast sky, highlighting its four-engine configuration and distinctive raised tail. +0576236.jpg The Il-76 aircraft is predominantly white with a blue stripe along its fuselage, captured from a side view on an airport tarmac with its robust, high-mounted wings and four engine nacelles clearly visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/L-1011_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/L-1011_descriptions.txt new file mode 100644 index 0000000..5cd7696 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/L-1011_descriptions.txt @@ -0,0 +1,10 @@ +0923717.jpg The L-1011 appears in a side view on a tarmac with a white body accented by a broad red stripe along the fuselage and a red tail logo, featuring distinctive three-engine configuration and rounded nose against a distant backdrop of trees and a clear sky. +0063053.jpg The L-1011 is predominantly white with a smooth texture, featuring a side profile emphasizing its distinct T-tail and three-engine configuration, set against a twilight airport runway with a distant treeline and another aircraft visible in the background. +0681040.jpg The L-1011 in the image is predominantly white with a blue tail and engines, viewed from a three-quarter front-right angle in flight against a clear sky, featuring a distinctively bulbous fuselage and a unique S-curve on the tail. +0726611.jpg The L-1011 appears in grayscale with a smooth texture, viewed from a slight rear right angle on an airport tarmac, featuring distinctive three-engine design and "LTU" branding on the tail and fuselage. +0901529.jpg The L-1011 features a white and red color scheme with "FAUCET PERU" branding, viewed from a side angle in-flight against a clear blue sky, showcasing its distinctive tri-engine tail configuration and wing-mounted engines. +1200650.jpg The L-1011 is painted in white with a prominent red stripe running along the fuselage, viewed from the side on a runway with a grassy field in the background, featuring its distinctive tri-engine configuration with one engine mounted at the tail and two under the wings. +0066411.jpg The L-1011 is predominantly white with a dark blue vertical stabilizer and engine nacelles, viewed in profile on an airport tarmac with a wooded area and buildings in the background, featuring a distinctive tri-engine configuration at the rear. +0065414.jpg The L-1011 is predominantly white with blue and red accents, featuring a stylized blue tail design and company logo, viewed in profile from the right side on approach for landing against a backdrop of airport runways and distant trees. +0958196.jpg The image shows a silvery metallic jet engine nacelle from a left-side viewpoint, reflecting light against a backdrop of an urban coastline and harbor, with the cylindrical shape and smooth texture clearly standing out despite the image's low resolution. +0984875.jpg The L-1011 is a Delta Airlines aircraft with a predominantly white body featuring dark accent lines and a distinctive tail with a bold stripe and logo, viewed from a side angle on an airport tarmac with a terminal and other aircraft in the background, under overcast skies. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/MD-11_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/MD-11_descriptions.txt new file mode 100644 index 0000000..b786322 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/MD-11_descriptions.txt @@ -0,0 +1,10 @@ +1610616.jpg The MD-11 appears in KLM's light blue and white livery, viewed from the side with its characteristic tri-engine configuration and wingtips visible, set against a misty cityscape background near a body of water. +0038598.jpg The MD-11 is pictured in a side profile view with a bright blue tail featuring a white logo, part of the gray fuselage and engine exhaust is visible, set against a backdrop of a cloudy sky and a beige building structure. +0959267.jpg The MD-11 is painted white with prominent red engine nacelles and tail, featuring a side view in flight against a mountainous background, showcasing its distinctive trijet configuration and extensive fuselage text. +1611576.jpg The MD-11 appears with a white fuselage and red accents featuring Shanghai Airlines branding, viewed from the side in flight with a clear sky background, and shows distinctive three-engine design with winglets and a trijet configuration. +1289638.jpg The MD-11 is viewed from the side in flight against a partly cloudy sky, featuring a white fuselage with "TRANSMILE" branding and maroon tail and engine cowlings, with landing gear extended. +1093250.jpg A FedEx Express MD-11 with a silver body and purple tail is captured from the side view while taking off on a runway, set against a backdrop of distant hills and a clear sky. +1307574.jpg The MD-11 in the image is painted white with "WORLD CARGO" text and a globe logo on the fuselage and tail, seen in a side view climbing against a backdrop of cloudy skies, with three engines visible and a distinctive trijet configuration. +0916254.jpg A white MD-11 aircraft with purple and gold tail markings, showing an oblique angle with the sky as the clear background, displaying distinctive three-engine layout with winglets. +1898447.jpg The MD-11, in a three-quarter side view, is painted in a plain white color with minimal visible text and displays a smooth texture, positioned on a gray tarmac with an industrial airport setting in the background, including a control tower and terminal buildings. +1302871.jpg The MD-11 in the image is painted white with red and blue stripes, displaying the text "CARGO" on the tail, and is shown in a profile view against a cloudy sky backdrop, with its landing gear extended. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/MD-80_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/MD-80_descriptions.txt new file mode 100644 index 0000000..85b8a7c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/MD-80_descriptions.txt @@ -0,0 +1,10 @@ +1875195.jpg The MD-80 is captured in an upward climbing angle, displaying a predominantly white fuselage accented by vibrant multicolored patterns on the tail and forward section, set against a clear blue sky background. +0702840.jpg The MD-80 appears in a side view with a white fuselage and blue tail, featuring "AEROLINEAS ARGENTINAS" in blue lettering, situated in an airport environment with buildings and trees in the background. +1036880.jpg The MD-80 features a white fuselage with distinct large red text and a logo on the tail, viewed from the side on an overcast day, parked on an aging, cracked tarmac with an industrial background. +1288666.jpg The image shows a white MD-80 with a blue, red, and gold striped tail fin, viewed from the side on an airport tarmac with a partly cloudy sky and distant trees and buildings in the background. +0288121.jpg The MD-80 in the image is predominantly white with orange and yellow accents, viewed from the side while taxiing on a tarmac, set against a backdrop of water and grassy terrain, with a distinctive T-tail and slender fuselage. +0851298.jpg The MD-80 is viewed from the side on a runway, featuring a bright yellow livery with the words "MAGIC LIFE" prominently displayed, set against a misty airport background with grass and distant lighting poles. +1111461.jpg The MD-80 appears in a bright red livery with the word "WINGS" prominently displayed in white along the fuselage, captured in a side profile view against a clear blue sky, with distinctive features including the tail logo and underwing engines. +1095342.jpg The MD-80 appears in a bright green color with vivid blue branding on its fuselage, viewed from the side on an airport tarmac with a clear sky backdrop, featuring distinctive elongated twin engines mounted at the rear. +1857209.jpg The MD-80 in the image is painted white with "STAR ALLIANCE" livery along the fuselage, contrasting black tail with a star logo, featuring visible orange engine covers, sitting on a grassy area with a clear sky in the background viewed in profile from the left side. +1341849.jpg The MD-80 features a white body with dark blue lettering and details, parked on a tarmac with mountains in the background, and displays a distinctive tail design. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/MD-87_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/MD-87_descriptions.txt new file mode 100644 index 0000000..3af595d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/MD-87_descriptions.txt @@ -0,0 +1,10 @@ +0056589.jpg The MD-87 in the image has a white fuselage with a dark green stripe along the windows, photographed from a side angle on a runway with mountainous terrain and sparse trees in the background, and features engines mounted at the rear of the fuselage. +1950537.jpg The MD-87 in the image is captured in a left-side profile view against a cloudy sky, featuring a predominantly white fuselage with vibrant red and blue accents, distinctive red engine nacelles, and unique corporate logos near the tail, emphasizing its sleek, elongated design. +1265320.jpg The MD-87 is viewed in profile flying against a clear blue sky, featuring a smooth white fuselage with blue tail markings and a distinctive orange stripe near the tail engine. +0089230.jpg The MD-87 displays a predominantly silver and red color scheme with American Airlines branding, captured in profile on a runway with distant brown hills under clear blue skies in the background. +0176108.jpg The MD-87 is parked on an airport tarmac with a control tower in the background, featuring a white body with a dark blue lower section and tail, along with a horizontal stabilizer mounted on the T-tail. +2067974.jpg The MD-87 is depicted in an upward climbing pose with a white fuselage featuring minimal markings, against a clear blue sky, with distinct T-tail and rear-mounted engines clearly visible. +1014380.jpg The MD-87 features a smooth white fuselage with "Scandinavian Airlines" branding and a deep blue tail fin displaying "SAS," viewed in a left side profile against a clear blue sky, highlighting its twin rear engines and T-tail configuration. +1279903.jpg The MD-87 viewed from the side in mid-flight features a white fuselage with "Star Alliance" branding in black, a black tail with a star logo, and a clear sky as the background. +0068814.jpg The MD-87 aircraft is painted predominantly white with Spanair logos, captured in a three-quarter view as it takes off against a forested background during sunset, with distinctive upward-curved winglets and a T-tail configuration. +0523047.jpg The MD-87 features a sleek metallic silver body with blue and red accents, photographed from a side view while taxiing on an airport runway, with a distinctive bird logo and a partially visible terminal with trees in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/MD-90_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/MD-90_descriptions.txt new file mode 100644 index 0000000..bb25ac0 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/MD-90_descriptions.txt @@ -0,0 +1,10 @@ +1341063.jpg The MD-90 is seen in a right-side profile view during touchdown, featuring a white fuselage with red and blue tail markings and sleek engine nacelles under the wings, set against an airport tarmac with hazy hills in the background. +0275248.jpg The MD-90 is displayed in profile with a predominantly white fuselage accented by a red and blue stripe along the windows, featuring a dark tail with "DELTA" branding, set against an airport tarmac and clear blue sky. +0688079.jpg The MD-90 in the image is painted in a white and orange livery with a prominent logo on the tail, viewed from the side on an airport tarmac with a hazy urban background. +0774291.jpg The MD-90, viewed from the side in mid-climb against a hazy sky, features a predominantly white fuselage with a prominent blue and yellow "Hello" logo, complemented by matching tail colors. +1203083.jpg The MD-90 is depicted in a left side profile with a white fuselage featuring "SAUDI ARABIAN" lettering and logo against a hazy airport backdrop, highlighting its sleek design and rear-mounted engines. +2085982.jpg The MD-90 in the image is predominantly white with a bold blue and yellow logo on the fuselage, positioned in an upward climb against a clear blue sky, featuring distinctive rear-mounted engines and a "Hello" branded tail fin. +0225472.jpg The MD-90 in the foreground, viewed from a rear angle on an airport tarmac, features a silver fuselage with a red and blue striped livery, contrasting with a simple gray tail marked by the airline's logo, against a backdrop of parked airplanes and urban setting. +1734386.jpg The MD-90 features a white fuselage with a prominent red and blue tail fin, viewed in profile on an airport taxiway with a hangar and hilly terrain in the background, emphasizing its elongated body and rear-mounted engines. +0428662.jpg The MD-90 appears in a side view with a silver body, dark blue tail with white lettering, and a red engine against the backdrop of an airport terminal during twilight. +0062708.jpg The MD-90 in the image displays a predominantly white fuselage with red and gray accents, captured in a side view on a runway against a clear, expansive sky, featuring distinctive tail art and engines mounted at the rear. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Metroliner_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Metroliner_descriptions.txt new file mode 100644 index 0000000..ce9de05 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Metroliner_descriptions.txt @@ -0,0 +1,10 @@ +1958528.jpg The Metroliner is a white and black aircraft seen from a side profile, with a pronounced dorsal fin, distinct windows, a tri-color tail design, and set against a grassy foreground with industrial buildings and trees in the background. +1753659.jpg A white Metroliner with a red tail and the letters "OLT" and "D-COLT" on the fuselage is seen in a low-angle side view against a clear blue sky, featuring two engines beneath its wings and extended landing gear. +0062664.jpg The Metroliner, viewed from the side on an airport tarmac, features a white fuselage with dark blue stripes and lettering, silver engine nacelles, and a prominent vertical tail fin with red and blue accents, set against a backdrop of green trees and gray pavement. +0858700.jpg The Metroliner appears predominantly white with subtle gray details, displayed in a side profile showing its distinctive elongated fuselage and dual engines against a clear blue sky, with "AirColumbia" branding visible on the side and a minimalist tail design. +0356151.jpg The Metroliner, viewed from the side, features a sleek white fuselage with a distinct blue stripe running along its side, set against an urban airport backdrop with terminal signs and buildings, its narrow, elongated shape and twin turboprop engines visible despite low resolution. +2259653.jpg The Metroliner is viewed from the side in flight against a clear blue sky, displaying a smooth, white fuselage with "AERONOVA" branding and a tail fin marked with thin stripes, while the visible landing gear is extended. +1355208.jpg The Metroliner is viewed from the side in flight with a predominantly white fuselage accented by a red and blue stripe, black tires visible against the sky, a distinctive T-tail, and positioned against a cloudy sky background. +0874832.jpg The Metroliner aircraft appears in a lateral view against a clear blue sky, featuring a streamlined white fuselage adorned with Aeronova branding, a distinctive upright tail fin logo, and two visible propeller engines under the wings contributing to its recognizable shape. +0063920.jpg The Metroliner is painted in white with orange and yellow stripes, viewed from a three-quarter angle on an airport tarmac, featuring distinctive twin engines and a T-tail with the NFD logo prominently displayed. +1293682.jpg The Metroliner is shown in a side view during landing with its landing gear extended, displaying a sleek white fuselage marked by "manx2.com" branding, set against a backdrop of a grassy field and airport structures, with distinct engine nacelles beneath the wings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Model_B200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Model_B200_descriptions.txt new file mode 100644 index 0000000..2c21da7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Model_B200_descriptions.txt @@ -0,0 +1,10 @@ +1254089.jpg The Model B200 is a white aircraft with smooth texture, featuring blue and red stripes, captured mid-flight against a clear sky, showing its dual propellers, retractable landing gear, and a distinctive "WWIP" marking on the fuselage. +1570282.jpg The Model B200 aircraft appears in a light gray color with a smooth texture, captured in a frontal viewpoint while airborne against a clear blue sky background, featuring distinctive twin propellers and a T-tail. +1622774.jpg The Model B200 in the image is a white aircraft with red accents and a medical emblem, positioned side-on to the camera on an airport tarmac, with mountains and hangars in the background. +1726039.jpg The Model B200 in the image appears from a side-view angle in flight, displaying a sleek, dual-tone blue and white fuselage with smooth metallic textures, a prominent tail fin featuring a narrow red stripe, and visible landing gear extended against a clear blue sky. +1245276.jpg The Model B200 appears in a side profile view featuring a sleek white body with subtle blue and green stripes, set against an airport runway environment, with its distinguishing twin-engine propellers and distinctive T-tail design clearly visible. +1956491.jpg The Model B200 aircraft is depicted in a side profile on a runway, showcasing a white body with blue and green stripes, a twin-engine turboprop with large circular windows and a distinct T-tail design, set against a backdrop of a green grass field and a blurred airport structure. +1427111.jpg A white and navy aircraft with sleek lines flies towards the right against a clear blue sky, showcasing retractable landing gear and twin propellers on either wing. +1027525.jpg A twin-propeller aircraft viewed from below, predominantly white with a sleek, smooth surface, accented by thin stripes along the fuselage and wings, flying against a plain sky backdrop. +1018460.jpg The Model B200 aircraft in the image appears in a side profile with a distinctive color scheme of blue and yellow stripes over a white body, set against a blurred, mountainous landscape background, featuring twin propellers and a visible tail number. +1523054.jpg The Model B200 in the image is a sleek, white aircraft with minimal navy and red stripe accents viewed from the side, positioned on a gray runway against a backdrop of overcast skies and sparse trees in the distance, featuring distinctive round windows and dual propellers. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/PA-28_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/PA-28_descriptions.txt new file mode 100644 index 0000000..a96ca2e --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/PA-28_descriptions.txt @@ -0,0 +1,10 @@ +2210244.jpg A low-wing monoplane in white with blue stripes sits parked on an airfield apron, viewed from a frontal side angle, with hangars and cloudy sky in the background, featuring a tricycle landing gear and distinct single-engine cowling. +0793692.jpg The PA-28 is a white small aircraft with maroon and gold stripes, seen from a side angle on grassy terrain, featuring a single propeller and a low-wing design with visible registration marks. +2173577.jpg The PA-28 is viewed from the side, showcasing a white and gray body with red and blue stripes, parked on tarmac in front of a hangar, with distinctively dihedral wings and a single propeller beneath clear blue skies. +1161939.jpg The low-resolution image depicts a monochrome PA-28 aircraft viewed from the side on a grassy airfield, showcasing its streamlined fuselage, diagonal stripes, and fixed landing gear against a horizon of distant buildings and a cloudy sky. +1034887.jpg The PA-28 is viewed side-on on a runway with a white fuselage marked by prominent blue stripes, featuring a low-wing design and a flat windshield, against a background of grassy fields and distant, low-lying buildings. +1151769.jpg A low-resolution image shows a PA-28 aircraft with a white body and dark horizontal stripes, seen from the side on a grassy field with urban buildings and trees in the background, featuring a prominent registration number on its fuselage. +1405368.jpg The PA-28 in the image is white with a blue lower half featuring gold lettering and accents, seen from a side profile on a concrete airstrip with grassy areas and a cloudy sky background, showing visible features like a tapered wing and a single propeller. +1217239.jpg The PA-28 is a small aircraft with a distinctive white and red color scheme, visible from a side view on an open tarmac with grassy fields in the background, featuring a low-wing design and a single propeller at the nose. +1726550.jpg A white PA-28 aircraft with registration G-BATV is viewed from the side on a runway, featuring a single propeller and a rectangular vertical stabilizer, with a control tower and grassy sand dunes in the background. +1405302.jpg The PA-28 is a white aircraft with a yellow and blue stripe, viewed from the side with its registration visible, parked on grass with trees and other planes in the background, featuring a single propeller and a distinctive rounded nose. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/SR-20_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/SR-20_descriptions.txt new file mode 100644 index 0000000..ae0372b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/SR-20_descriptions.txt @@ -0,0 +1,10 @@ +2074712.jpg A white SR-20 aircraft with sleek, smooth contours and a single propeller is viewed from the side on a runway, surrounded by a grassy airfield and distant buildings. +1603711.jpg The SR-20 is a sleek white aircraft with visible registration numbers, seen from a side-front angle with its doors open, set against a green grassy background and a blue tractor nearby. +1623436.jpg The SR-20 is a white, sleek, single-engine aircraft with a side profile view, featuring black and yellow striping along the fuselage, parked inside a light gray hangar with concrete walls and metal panels. +2072391.jpg A white SR-20 aircraft with navy trim is captured in a side profile view against a backdrop of suburban rooftops under a clear sky, featuring distinctive sleek windows and a prominent propeller. +2266584.jpg The SR-20 in the image is a sleek white aircraft with a glossy texture, viewed in a leftward flight pose, set against a backdrop of blurred distant trees and buildings, distinguished by its black-tipped propeller and large side windows. +2136870.jpg The SR-20 is a sleek, white aircraft with a smooth texture, viewed from a front right angle, parked on an asphalt surface with a hangar in the background, featuring distinctive black and gold stripes along the fuselage. +2071199.jpg A white SR-20 aircraft is positioned side-on with a sleek, glossy texture, featuring dark tinted windows against a backdrop of an industrial hangar wall, showcasing its distinctive side fuselage stripe and fixed tricycle landing gear. +1261973.jpg The SR-20 aircraft appears in a side view with a sleek, white body accented by a tan stripe, a prominent tail number, and is set against an overcast sky at an airfield with other aircraft visible in the background. +1681420.jpg The SR-20 is a glossy white aircraft with sleek, smooth contours, viewed from the side on a tarmac with a blurred background of a control tower and grassy field, featuring distinct black striping along the fuselage and registration markings. +2038561.jpg The SR-20 is a sleek, white aircraft with a glossy texture, captured in a side view with its distinctive streamlined design and black and gold trim, parked on a concrete floor inside a large garage-like space with a corrugated metal and brick backdrop. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Saab_2000_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Saab_2000_descriptions.txt new file mode 100644 index 0000000..e7f0198 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Saab_2000_descriptions.txt @@ -0,0 +1,10 @@ +2026755.jpg The Saab 2000 in the image is painted white with red accents on the tail and features "OLT" branding, viewed from a side angle on an airport runway with grass surrounding the paved area, displaying its elongated fuselage, wing-mounted propellers, and distinctive T-tail design. +1235480.jpg The Saab 2000 is viewed from the side at an airport, featuring a white fuselage with green accents towards the tail, a black nose, dual propellers, and is set against a busy tarmac with vehicles and an adjacent aircraft in the background. +1232503.jpg The Saab 2000 appears in a side view with a sleek white fuselage and contrasting red tail featuring a logo, set against a clear blue sky with its landing gear extended and engines visible in motion. +0880559.jpg The Saab 2000 is depicted in a side profile with a red and white color scheme featuring a distinctive logo on the tail, accented by a prominent horizontal line across the fuselage; it is flying against a clear blue sky with landing gear extended. +0439774.jpg The Saab 2000 appears in a side view during flight, featuring a sleek white fuselage with black propellers, a blue and red logo near the cockpit, against a clear blue sky. +2127989.jpg The Saab 2000 in the image is primarily white with a sleek design, viewed from the side on a runway, featuring a distinct blue and red tail with a white cross symbol against a backdrop of clear skies and grassy terrain. +1050563.jpg The Saab 2000 is seen from a side view on the tarmac, featuring a sleek white body with blue and red accents, set against a backdrop of green hills and residential buildings. +0711206.jpg The Saab 2000 in the image is sideways in mid-flight with a grey fuselage, featuring distinctive markings and a small red and white flag on the tail against a clear blue sky. +0874688.jpg The Saab 2000 displays a white fuselage with blue and red markings, captured in a side view angle against a clear blue sky, highlighting its twin propellers and T-tail configuration with a partial view of the undercarriage in flight. +0067617.jpg The Saab 2000 in the image is painted white with sleek black propellers, viewed from a side angle on a snowy tarmac, with distinctive horizontal stripes on the tail and blue evening light casting a shadowy hue over the icy runway and distant treeline. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Saab_340_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Saab_340_descriptions.txt new file mode 100644 index 0000000..2570214 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Saab_340_descriptions.txt @@ -0,0 +1,10 @@ +1977817.jpg The image shows a Saab 340 with a predominantly white body featuring a colorful logo on the fuselage, captured from a side-view angle on a runway with a grassy green foreground and a blurred forested background, highlighting its twin-engine turboprops and T-tail configuration. +1620908.jpg A white Saab 340 with red tail and wingtips is viewed from the side on a tarmac with hangar doors and an ANA aircraft partially visible in the background. +1542460.jpg The underside of the Saab 340's wing is visible from an elevated mid-flight perspective, showcasing a smooth white surface with circular vortex generators under a clear blue sky, above a coastline with lush green landscapes and a vast ocean. +1119086.jpg The Saab 340 is depicted in a side profile mid-flight against a clear sky, featuring a white fuselage with red and black accents and the "Central Connect Airlines" logo, visible propellers, and distinct tail markings. +0924085.jpg The Saab 340 is painted in a white base with blue and red stripes, viewed from a side angle in mid-air with landing gear extended, against a clear blue sky backdrop, and displays an "American Eagle" logo on the fuselage and tail. +1559316.jpg The Saab 340 features a white body with red and orange stripes, viewed from the right side in mid-air with mountains and leafless trees in the background, highlighting its twin-engine turboprop configuration and distinctive T-tail. +1989990.jpg The Saab 340 aircraft appears in a side profile view with a white body featuring red accents and a tail fin marked by bold red with white diagonal stripes, set against a clear blue sky background. +1210455.jpg A side view of a white Saab 340 aircraft with a sleek texture is seen on a runway, featuring bold red and black branding of "Central Connect Airlines" against a backdrop of flat, dry grasslands. +0219261.jpg The Saab 340 is depicted in a side view with a white body featuring a "Golden Air" logo, parked on a tarmac with surrounding ground service vehicles and a forested background. +1550162.jpg The Saab 340 in the image features a white body with blue accents carrying the Flybe logo, parked on a grassy airfield with a side-on view, showcasing its engines and landing gear against a backdrop of industrial buildings and a cloudy sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Spitfire_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Spitfire_descriptions.txt new file mode 100644 index 0000000..2b1dba9 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Spitfire_descriptions.txt @@ -0,0 +1,10 @@ +1539227.jpg The Spitfire in the image is viewed in profile, showcasing a brown and green camouflage pattern with a black panther emblem and white identification letters "UM-E," set against a grassy field and smoky background, highlighting its classic elliptical wings and four-bladed propeller. +1170135.jpg A Spitfire, seen from a side angle on a grass airfield, displays an olive green and brown camouflage pattern with roundels on the wings and fuselage, set against a rural backdrop with rolling fields and distant trees. +1450568.jpg The Spitfire in the image is predominantly camouflaged in shades of green and brown with distinctive RAF roundels, viewed from a frontal three-quarter angle on an airfield with multiple other aircraft in the background, and features a black spinner and yellow wing tips. +1778957.jpg The Spitfire in the image is painted in a green and gray camouflage pattern with black and white invasion stripes on the underside, displayed from a right-side view on a tarmac with a grassy field and trees in the background, featuring a prominent roundel on the fuselage and distinctive elliptical wings. +0851614.jpg The Spitfire is olive green with distinct tan camouflage patterns, viewed from a side angle in an indoor exhibition space, showcasing its slender fuselage, elliptical wing design, and RAF roundel insignia. +1035348.jpg A Spitfire with a green and grey camouflage pattern is displayed side-on in an indoor hangar with a high ceiling and aircraft in the background, featuring visible roundels on the fuselage and a distinct shark-tooth motif on the nose. +0902419.jpg A vintage Spitfire with a green and gray camouflage pattern is displayed side-on in a museum setting, featuring distinctive roundel markings on its fuselage and a partially open hangar roof background. +1779626.jpg The Spitfire in the image features a camouflage pattern with green and brown tones, viewed from the side on a runway surrounded by greenery, highlighting its rounded nose and distinctive RAF roundels. +1759217.jpg The Spitfire in the image is viewed from the side on a tarmac, displaying a muted olive green color with identifiable RAF roundels and code letters, featuring a distinct single propeller and canopy in an outdoor airfield environment backed by greenery and a metal fence. +1241545.jpg The Spitfire is seen from a three-quarter front view, displaying a smooth grayish-green body with roundels on the wings and a distinct elliptical wing shape, set against a grassy airfield background under a partly cloudy sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Tornado_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Tornado_descriptions.txt new file mode 100644 index 0000000..0c02200 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Tornado_descriptions.txt @@ -0,0 +1,10 @@ +1961232.jpg The Tornado aircraft features a distinct dark camouflage with vivid orange and black tiger graphics on its tail, viewed from the side on a concrete runway against a backdrop of lush green trees and a cloudy sky. +1349314.jpg A gray military jet with a sleek, aerodynamic design and noticeable black and red tail art is captured in mid-landing against a backdrop of grassy terrain and distant mountains. +1931348.jpg The Tornado aircraft exhibits a light gray color with a matte texture, viewed from the side in a grounded pose on a runway, featuring distinct twin tail fins, angular wings, and visible landing gear against a backdrop of open sky and distant trees. +1764704.jpg The image depicts a gray military aircraft with distinct black nose and tail sections, parked on a concrete airfield with a grassy background, featuring a cockpit canopy and visible stabilization fins, under a clear blue sky. +0687272.jpg The Tornado aircraft is in a side profile view against a grassy background, showcasing a predominantly gray body with dark accent stripes, an elevated tail fin, swept wings, and distinct air intakes, under cloudy skies. +1360525.jpg The aircraft features a matte gray and green camouflage pattern with a sleek, angular design, viewed from a side angle on a concrete runway, distinguished by its sharp nose, swept wings, and a vividly painted tail fin under a partly cloudy sky. +1251379.jpg The Tornado aircraft in the image features a matte gray color with darker gray markings, parked on a tarmac with a grassy field and cloudy sky in the background, noticeable for its swept-wing design and dual-engine configuration. +1560580.jpg The Tornado jet features a predominantly gray fuselage with black tail adorned with a lightning bolt design, captured in a low-altitude flight against a cloudy sky, over a background of lush green trees and a fenced field. +1373008.jpg The Tornado aircraft appears in a light gray color with a matte texture, seen from a low-angle side view against a cloudy sky, with distinctive external fuel tanks and wing-mounted ordnance clearly visible. +1240881.jpg The Tornado jet, viewed from the side, is primarily gray with distinct black and white markings on the tail, set against a backdrop of a grassy airfield and trees. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Tu-134_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Tu-134_descriptions.txt new file mode 100644 index 0000000..6c5fb57 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Tu-134_descriptions.txt @@ -0,0 +1,10 @@ +0720882.jpg The Tu-134 is depicted in black and white on a runway from a side angle, showcasing its streamlined fuselage with large windows, distinctive nose design, and trademark tail section, sitting against a blurred background of runway and trees, and is accompanied by an Aeroflot logo on its side. +1594716.jpg The Tu-134 is viewed in a side profile against an airport tarmac and green treeline, featuring a white fuselage with blue "UTair" branding, a distinctive T-tail, and a pointed nose, with cylindrical engines mounted on the rear fuselage. +1476106.jpg The Tu-134 appears in a crisp white color with smooth, streamlined textures, viewed from a side angle during flight against a clear sky, prominently displaying its distinctive T-tail and wing-mounted engines. +1594798.jpg The Tu-134 is viewed from the side on an airstrip, featuring a clean white and blue body with distinct red lettering on top, polished surfaces reflecting light, and set against a backdrop of green forest under a clear sky. +0195743.jpg The Tu-134 is primarily white with a green and black stripe along the fuselage, viewed from the right side on an airport tarmac, with the cockpit and tail featuring distinct airline branding and a control tower in the hazy distance. +1544976.jpg The Tu-134 features a predominantly white fuselage with blue accents, high-mounted wings and rear-mounted engines visible in a side profile against a clear blue sky, displaying distinctive tail markings and red tips on the stabilizers. +1590547.jpg The Tu-134 is depicted in a side profile on a tarmac with a metallic silver body, distinct blue and red tail design, Aeroflot markings, and set against a backdrop of industrial buildings and greenery. +0921289.jpg The Tu-134 aircraft in the image is viewed from the side, showcasing a white and gray exterior with a distinct tail design against a grassy area and a partly cloudy sky, with visible landing gear and windows running along the fuselage. +1597802.jpg The Tu-134 in the image is a white aircraft with a smooth texture, featuring distinct blue and red markings, resting on an airstrip against a clear blue sky and lush green woodland on the horizon, viewed from the side highlighting its narrow fuselage and double engines mounted at the rear. +1166761.jpg The Tu-134 is depicted in a side view on the tarmac, showcasing a white fuselage with blue accents and lettering, circular windows along the side, and a distinctive upward tail fin, set against a background of palm trees and a cloudy sky indicative of an airport environment. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Tu-154_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Tu-154_descriptions.txt new file mode 100644 index 0000000..ed61958 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Tu-154_descriptions.txt @@ -0,0 +1,10 @@ +1179867.jpg The Tu-154 appears in side profile on a runway with a white fuselage and blue accents, featuring three rear-mounted engines and a T-tail, under a clear sky with a mountainous horizon in the background. +0062722.jpg The Tu-154 is seen from a side angle on an airport tarmac, featuring a white fuselage with blue and red accent stripes, a distinct orange and blue tail logo, and a row of windows with the visible text "HOLIDAY," set against a flat, grassy terrain with a forested horizon in the background. +1544222.jpg The Tu-154 is captured mid-flight in a clear, side profile view with a distinctive white fuselage accented with blue and red stripes, prominent underwing engines, and set against a cloudy gray sky. +0094111.jpg The Tu-154 is depicted in a side view with a white fuselage featuring prominent red and green stripes and text along the side, displaying a large emblem on the tail fin, set against an airport tarmac with a backdrop of a forested and urban environment under a purple-tinged evening sky. +1302750.jpg The Tu-154 in the image is a white aircraft with a blue and red stripe running along the fuselage, viewed from the side on a taxiway against a grassy airport backdrop, featuring a distinct T-tail and wing-mounted engines. +0822344.jpg The Tu-154 has a white fuselage with bold blue branding along the side, blue nose and tail, featuring a trijet engine configuration viewed from the side against a cloudy sky background, with visible undercarriage due to its in-flight pose. +0632992.jpg A white Tu-154 with blue and red accents, viewed from the side on a runway with urban buildings in the distant hazy background, displaying its distinct T-tail and three rear engines. +2054457.jpg The Tu-154 appears in a side view with a sleek white fuselage accented by blue and red stripes, showing distinctive swept-back tail fins and three rear-mounted engines, set against a clear blue sky during a landing approach. +0198445.jpg The Tu-154 shown in the image features a white fuselage with a prominent red and yellow tail marked by the Palair Macedonian logo, captured in a side profile view on an airport taxiway with a grassy field and distant buildings in the background. +1088786.jpg The Tu-154 appears in a smooth, white and gray texture with a distinctive red and green stripe along the fuselage, viewed from a front right angle with its landing gear deployed against a clear blue sky background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/Yak-42_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions/Yak-42_descriptions.txt new file mode 100644 index 0000000..6ceba4c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/Yak-42_descriptions.txt @@ -0,0 +1,10 @@ +1227260.jpg The Yak-42 in the low-resolution image is predominantly white with blue accents along the fuselage, viewed from a side angle on an airport tarmac with a clear sky and distant trees, featuring distinctively short wings and three rear-mounted engines. +1597829.jpg The Yak-42 is viewed from the side showing its white fuselage with blue and yellow stripes, featuring a distinct "Donbassaero" logo, parked on a tarmac with a cloudy sky and a lamppost in the background. +0958089.jpg A Yak-42 with a white and blue color scheme featuring a stripe design is shown in a side view against a clear sky background, highlighting its three-engine configuration and characteristic T-tail design. +0836160.jpg The Yak-42 appears white with a red and blue tail design, viewed from the side on a tarmac with green grass and trees in the background, displaying multiple windows and a distinct wing configuration. +1627581.jpg The Yak-42 appears in a pristine white color with a sleek, streamlined body and is viewed from the side on an airport tarmac, featuring distinctive red and blue markings, with the Dubai skyline faintly visible in the background. +0198777.jpg The Yak-42 in the image is predominantly white with a blue stripe running along its fuselage, viewed from the side on a tarmac with surrounding green vegetation, featuring a trijet configuration and a distinctive T-tail against a backdrop of a clear sky. +1826635.jpg The Yak-42 in the image is a trijet airplane with a predominantly white fuselage featuring red and blue stripes, viewed from the side on an overcast day with reflective wet ground; it has a distinctive T-tail and engines mounted on the rear fuselage, set against a backdrop of cloudy skies and floodlights. +1203670.jpg The Yak-42 in the image is predominantly white with a blue and yellow stripe, viewed from the side on an airport runway with distinct rear-mounted engines and a T-tail design set against a clear sky. +0746093.jpg The Yak-42 in the image is primarily white with a horizontal green stripe near the windows, viewed from a side profile on a tarmac with grass in the foreground, showing its distinctive T-tail and trijet engine configuration, against a backdrop of distant hills and cloudy sky. +1501838.jpg The Yak-42 appears predominantly white with blue accents, viewed from a front-left angle on a tarmac with hangars in the hazy, gray background, featuring a distinctive T-tail and three rear-mounted engines. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions/classnames.txt b/utils/area/descriptions/Aircraft/generated_descriptions/classnames.txt new file mode 100644 index 0000000..67f21b5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions/classnames.txt @@ -0,0 +1,100 @@ +707-320 +727-200 +737-200 +737-300 +737-400 +737-500 +737-600 +737-700 +737-800 +737-900 +747-100 +747-200 +747-300 +747-400 +757-200 +757-300 +767-200 +767-300 +767-400 +777-200 +777-300 +A300B4 +A310 +A318 +A319 +A320 +A321 +A330-200 +A330-300 +A340-200 +A340-300 +A340-500 +A340-600 +A380 +ATR-42 +ATR-72 +An-12 +BAE 146-200 +BAE 146-300 +BAE-125 +Beechcraft 1900 +Boeing 717 +C-130 +C-47 +CRJ-200 +CRJ-700 +CRJ-900 +Cessna 172 +Cessna 208 +Cessna 525 +Cessna 560 +Challenger 600 +DC-10 +DC-3 +DC-6 +DC-8 +DC-9-30 +DH-82 +DHC-1 +DHC-6 +DHC-8-100 +DHC-8-300 +DR-400 +Dornier 328 +E-170 +E-190 +E-195 +EMB-120 +ERJ 135 +ERJ 145 +Embraer Legacy 600 +Eurofighter Typhoon +F-16A/B +F/A-18 +Falcon 2000 +Falcon 900 +Fokker 100 +Fokker 50 +Fokker 70 +Global Express +Gulfstream IV +Gulfstream V +Hawk T1 +Il-76 +L-1011 +MD-11 +MD-80 +MD-87 +MD-90 +Metroliner +Model B200 +PA-28 +SR-20 +Saab 2000 +Saab 340 +Spitfire +Tornado +Tu-134 +Tu-154 +Yak-42 \ No newline at end of file diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/707-320_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/707-320_descriptions.txt new file mode 100644 index 0000000..536b53e --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/707-320_descriptions.txt @@ -0,0 +1,3 @@ +0536721.jpg The image shows a color-altered 707-320 with a yellow and gray fuselage, viewed from the side facing the runway, with its nose to the right and engines visible below the wings, while the background features a grassy airfield and partly cloudy sky. +1025794.jpg The image depicts a black and white Boeing 707-320 with distinctively high-contrast grayscale texture, viewed from a side angle as it taxies on a grassy airfield with visible engines and a prominent tail fin logo, partially obscured by foreground vegetation. +1002439.jpg The 707-320, appearing in grayscale, is parked on an airfield with visible boarding stairs at the open front door and partially obscured by a small group of service vehicles, showcasing a prominent tail logo. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/727-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/727-200_descriptions.txt new file mode 100644 index 0000000..0bb3a67 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/727-200_descriptions.txt @@ -0,0 +1,3 @@ +0875317.jpg The 727-200 appears in a side view against a cloudy sky, featuring a smooth white body with contrasting logos or lettering on the fuselage, with winglets and a prominent tail fin visible, experiencing no occlusion. +0907378.jpg The 727-200 is viewed in profile on the runway with a bluish-purple tint due to color augmentation, displaying distinctive large rear engines and a T-tail, against a backdrop of an urban skyline with smokestacks and partial foreground tarmac occlusion. +2223757.jpg The image shows a nose of a white 727-200 with a smooth, glossy texture surrounded by trees, viewed from the front with the landing gear visible and partially obscured by foliage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-200_descriptions.txt new file mode 100644 index 0000000..e968ef3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-200_descriptions.txt @@ -0,0 +1,3 @@ +1339026.jpg The 737-200 appears angled in an upward left climbing pose with a dark navy and white fuselage, featuring an orange and yellow tail design, and a partially obscured underside due to its banking position against a clear sky. +0447807.jpg The 737-200 appears in a right-side profile with a modified grayscale color scheme featuring black and white, accented by diagonal stripes on the tail, set against a smooth grey sky and partially grassy tarmac, without visible occlusion. +0247942.jpg The 737-200 appears in a side view with a predominantly blue hue, featuring a smooth texture and highlighted by distinct red and white stripes along the fuselage, set against a partially cloudy sky and an airport tarmac environment with no significant occlusion. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-300_descriptions.txt new file mode 100644 index 0000000..7aef255 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-300_descriptions.txt @@ -0,0 +1,3 @@ +1222203.jpg The 737-300 appears in a side view with a dark blue and red color scheme, showcasing the airline's logo, set against a clear sky with landing gear visible and minimal occlusion. +0748299.jpg The low-resolution image depicts a 737-300 with a glossy texture and deep blue color overlay, viewed from a side angle on an airport tarmac, where the modified appearance still reveals the aircraft's characteristic short fuselage and engines positioned under the wings. +0907408.jpg The 737-300 is viewed from the side on the tarmac with its modified teal and white color scheme, featuring distinct vertical and diagonal lines on the tail fin, and is positioned amidst an expansive airport environment with minimal occlusion from nearby structures. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-400_descriptions.txt new file mode 100644 index 0000000..d4e977d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-400_descriptions.txt @@ -0,0 +1,3 @@ +0420818.jpg The 737-400 appears in a reversed orientation with an altered cyan tint, showing the left side from a top-front angle, parked at an airport gate with visible ground equipment and nearby aircraft, including its distinct elongated fuselage and classic jet engines. +1917739.jpg The 737-400 appears with a pinkish hue under an angular side view against a turquoise sky, featuring visible airline branding on the fuselage and vertical stabilizer, with the wings and engines distinctly outlined despite the color modification. +0302648.jpg The 737-400 appears in a pinkish tone with a low-resolution texture, viewed from the side on a tarmac with buildings in the background, displaying elongated fuselage markings and minimal wing detail due to the angle and resolution. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-500_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-500_descriptions.txt new file mode 100644 index 0000000..c23be4a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-500_descriptions.txt @@ -0,0 +1,3 @@ +0074245.jpg The 737-500 appears in a faded, greyish tone with teal accents and a stylized bird logo on the tail, viewed from a slight side angle on an airport tarmac with construction and greenery partially visible in the background. +1053446.jpg The 737-500 appears inverted with a vivid red and white color scheme featuring a prominent horizontal stripe, viewed in side profile against a clear blue sky, with landing gear extended. +0977330.jpg The 737-500 appears in a vivid green color due to augmentation, viewed from the side with visible occlusion from trees and other aircraft in the background, featuring distinctive black and yellow checkered pattern near the fuselage and "HAPAG-LLOYD EXPRESS" branding. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-600_descriptions.txt new file mode 100644 index 0000000..abaeacf --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-600_descriptions.txt @@ -0,0 +1,3 @@ +0721593.jpg The 737-600, viewed from a low forward angle against a clear sky, appears predominantly white with red and gray horizontal striping, featuring a short fuselage and distinctive winglets positioned against the sky. +1615563.jpg The 737-600 has a white and warm brown color scheme with a polished texture, viewed from a front-left angle against a cloudy sky, highlighting its short fuselage and slightly swept wings with minimal visible occlusion. +1730978.jpg The plane, appearing in a darkened and altered grayscale except for a vivid blue tail and red engine, is shown in a side view as it lands on a runway with smoke trailing from the rear wheels against a backdrop of greenery. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-700_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-700_descriptions.txt new file mode 100644 index 0000000..679b9dd --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-700_descriptions.txt @@ -0,0 +1,3 @@ +1060500.jpg The 737-700 in the image appears with a predominantly gray color and two horizontal orange stripes along the fuselage, seen in a side view on a runway with lush green grass, while its front section is slightly occluded due to the nose gear. +0209211.jpg The 737-700 appears in a vibrant lime green with bold "h" graphics on the tail, viewed from a side angle with other similarly painted aircraft lined up in sequence, against a backdrop of distant structures and mountains under a clear sky. +2201377.jpg The 737-700 appears in darkened tonality with a sideways view clearly showing its distinctive winglets against a cloudy sky, with the airplane's lower fuselage slightly obscured by shadow. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-800_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-800_descriptions.txt new file mode 100644 index 0000000..a5ec4bf --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-800_descriptions.txt @@ -0,0 +1,3 @@ +1852201.jpg The 737-800 displays a bright turquoise body with a pink logo on its tail fin, viewed from the port side on a tarmac with clear blue skies and distant greenery, with its distinctively large engines and elongated fuselage clearly visible. +1603035.jpg The altered image displays a 737-800 with a blue and white color scheme, viewed from the side in an inverted orientation on a runway, with the surrounding airport infrastructure partially obstructed by the foreground signs. +2239287.jpg The 737-800 appears in a low-resolution image with a notable blue-and-white checkerboard pattern on the vertical stabilizer and a deep blue gradient on the fuselage, seen from a side angle on a tarmac with slight occlusion from the landing gear and nearby structures. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-900_descriptions.txt new file mode 100644 index 0000000..6b6b6e3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/737-900_descriptions.txt @@ -0,0 +1,3 @@ +0221294.jpg The visually augmented 737-900 features a purple hue with a smooth texture, viewed from a side profile on the ground with the desert environment partially visible, and displays a prominent tail fin with a circular logo. +0727254.jpg The 737-900 appears in a predominantly blue and white livery with a polished texture, viewed from a side angle in mid-flight above a cloudy sky, showcasing its elongated fuselage, distinctive split-scimitar winglets, and partially visible underbelly and landing gear. +0292868.jpg The 737-900 appears in a side view with a darkened grayscale color scheme, displaying a prominent logo on the tail and large lettering on the fuselage against a blurred landscape background with airport runway markings visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-100_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-100_descriptions.txt new file mode 100644 index 0000000..7481ee6 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-100_descriptions.txt @@ -0,0 +1,3 @@ +1318175.jpg The altered 747-100 appears in a light turquoise hue with a smooth texture, seen in a right side landing approach with engines and landing gear visible, under a clear blue sky with the tail fin showcasing a distinct red, white, and blue pattern. +1985184.jpg The low-resolution image shows a color-augmented white Boeing 747-100 with a large green stripe along its fuselage and vertical fin, viewed from a side angle above a modern building, resting on a platform with trees in the background. +0804670.jpg The visually augmented 747-100 appears in grayscale with a smooth, metallic texture, viewed from the right side in a three-quarter rear angle at an airport, with multiple other aircraft parked in the background, while its distinctive four-engine configuration and iconic hump on the upper deck remain clear despite the low-resolution image. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-200_descriptions.txt new file mode 100644 index 0000000..c45d388 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-200_descriptions.txt @@ -0,0 +1,3 @@ +0065830.jpg The image shows a 747-200 with an inverted orientation, featuring a deep blue sky background, a predominantly light body with red and black details, and visible text and logo on the fuselage, while the aircraft is viewed from the side with minimal occlusion. +0045128.jpg The aircraft features a bright orange vertical stabilizer with the word "CARGO" prominently displayed in white, set against a cloudy sky backdrop, with visible lettering curvature on the fuselage indicating alterations in the viewing angle. +0487356.jpg The 747-200 appears with a cool-toned, possibly bluish tint, flying from the left side in a side profile with a prominent cockpit and four engines, against a backdrop of cloud cover and distant mountainous terrain, partially occluded by a bridge structure below. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-300_descriptions.txt new file mode 100644 index 0000000..81079b7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-300_descriptions.txt @@ -0,0 +1,3 @@ +0574284.jpg The 747-300 features a vibrant, multicolored patchwork design with geometric patterns, viewed from the side on a runway under a clear sky, with prominent wings, engines, a distinctive hump, and part of the landing gear visible. +0980094.jpg The 747-300, shown in a side view, appears predominantly dark with a smooth texture against a clear blue sky, featuring distinctive high-mounted engines and a visible red dragon emblem on the fuselage. +0098489.jpg The 747-300 is viewed from the side, painted with a visually striking, multicolored mural featuring abstract patterns on a tarmac with visible airport structures in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-400_descriptions.txt new file mode 100644 index 0000000..6c43f54 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/747-400_descriptions.txt @@ -0,0 +1,3 @@ +0491938.jpg The 747-400 appears in a left side view, featuring a vibrant turquoise sky background, a predominantly white fuselage with bold magenta accents on the tail, engines, and wingtips, visible motion in the landing gear as it descends, and clear branding on its side, creating a sleek contrast against the bright sky. +1539525.jpg The 747-400 is seen in a left-side profile view with a predominantly gray color and a bold orange and purple vertical stabilizer, positioned on a grassy ground with an air traffic control tower visible in the background. +1514578.jpg The augmented image shows a 747-400 with a grayish, desaturated texture viewed from the side, featuring red accents on the tail fin, with a runway in the foreground and partially cloudy mountains in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/757-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/757-200_descriptions.txt new file mode 100644 index 0000000..ec13273 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/757-200_descriptions.txt @@ -0,0 +1,3 @@ +2170854.jpg The low-resolution image shows a 757-200 with a vibrant yellow and red color scheme featuring DHL branding, viewed from the side on an airport tarmac with its nose slightly oriented towards the right, surrounded by various logistics equipment and partially obscured by a set of ground service vehicles in the foreground. +2224813.jpg The image shows a low-resolution, right-side view of a 757-200 aircraft with a predominantly purple and silver color scheme, featuring a sleek fuselage with accented stripes, as it flies against a clear sky with the landing gear extended. +1389246.jpg The 757-200 appears in a darkened, muted color scheme with visible green accents on the tail, captured in a side view while in flight against a cloudy sky, with landing gear extended and the engine details partially obscured by shadows. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/757-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/757-300_descriptions.txt new file mode 100644 index 0000000..8306dd6 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/757-300_descriptions.txt @@ -0,0 +1,3 @@ +0478342.jpg Viewed from a side angle, the 757-300 appears in muted gray tones with an altered smooth texture, the plane is ascending with its nose tilted upwards, partially occluded by an airport control tower, and features distinctive red and white tail markings. +1810927.jpg The 757-300 is in a lateral view with a blue-tinted, heart-decorated fuselage, extending wings, and raised nose, flying against a clear sky. +0313727.jpg The 757-300 appears in a low-resolution side view with a dark gray hue, enhanced logo graphics on the tail and fuselage, and is positioned on an open runway with a grassy foreground and clear sky background, free from significant occlusions. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/767-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/767-200_descriptions.txt new file mode 100644 index 0000000..f3e486a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/767-200_descriptions.txt @@ -0,0 +1,3 @@ +1631498.jpg The 767-200 appears in a darkened, low-resolution image with a predominantly white body accented by a bold red stripe and prominent blue tail logo, captured in a side profile on an overcast day with landing gear deployed. +1031454.jpg The 767-200 exhibits a vivid yellow body with red accents, viewed in side profile from a slightly elevated angle, flying near a lush green area with buildings in the background, while the wings and engines maintain distinct outlines against a clear sky. +1605155.jpg The 767-200 appears in a darkened environment with a minimal-light gray texture and a side view showing a partially visible landing gear, set against a dim airfield background with some fence and foliage, revealing red and black markings on the tail and fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/767-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/767-300_descriptions.txt new file mode 100644 index 0000000..9e3d7e8 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/767-300_descriptions.txt @@ -0,0 +1,3 @@ +0573943.jpg The 767-300 appears in an altered bright pink and white color scheme with a bold logo, viewed from the side on an airport tarmac, with a clear silhouette and surrounding runway elements visible despite the modifications. +1966248.jpg A brightly colored lime green Boeing 767-300 with a visible logo on the tail fin is seen in profile view on an airport tarmac under a clear blue sky, with its fuselage and wings casting subtle shadows on the concrete. +1211088.jpg The 767-300 appears in a side profile view with a glossy silver-grey color and smooth texture, set against a clear sky backdrop, and features a visible large logo on the tail with slight obstruction from surrounding ground equipment. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/767-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/767-400_descriptions.txt new file mode 100644 index 0000000..4589d0b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/767-400_descriptions.txt @@ -0,0 +1,3 @@ +0835837.jpg The aircraft appears in inverted orientation on a runway, with its white fuselage showing a blue-toned texture, minimal visible occlusion, and a distinctive tail logo in view despite the low resolution and color augmentation. +1741519.jpg The 767-400 appears in a muted blue hue with shifted color balance, viewed from a side profile in flight against a clear blue sky, displaying its elongated fuselage and distinct raked wingtips, partially occluded landing gear, and a visible Continental Airlines livery. +1165767.jpg The 767-400 appears in a pastel pink and teal color scheme, viewed from a low-angle perspective showing the underbelly, with the sky as a clear background and landing gear extended. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/777-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/777-200_descriptions.txt new file mode 100644 index 0000000..e83da3c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/777-200_descriptions.txt @@ -0,0 +1,3 @@ +1456005.jpg The aircraft appears in a side-on view, highlighted by a visually augmented purple sky, featuring a vivid color scheme with dominant orange and yellow hues alongside a distinctive logo on the tail and minimal occlusion against the clear sky. +0493824.jpg The aircraft, a 777-200, is viewed from the rear with a tilted orientation upward, featuring a smooth, shiny surface with altered bright colors including blue, orange, and white, as it taxis on a concrete runway surrounded by a forested area behind, partially obscured by its own wings. +0704510.jpg The 777-200 appears in a desaturated teal and white color scheme with a prominent logo on the tail, viewed in a left-side profile with its landing gear extended, set against a misty sky with birds, while the background includes another aircraft partially occluded on the tarmac. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/777-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/777-300_descriptions.txt new file mode 100644 index 0000000..746648a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/777-300_descriptions.txt @@ -0,0 +1,3 @@ +1099212.jpg The 777-300 appears inverted against a solid teal backdrop, showcasing a green and white fuselage with red accents, partially obscured text and logos on the body, and wings outstretched in a side profile with the landing gear retracted. +1418227.jpg The image shows a side view of a 777-300 with altered darker tones and a red maple leaf logo, moving left to right on a runway with the background blurred. +2066138.jpg The image depicts a 777-300 with a bright blue and white color scheme, taking off at an angle from the left with the right engine slightly occluded by the wing, set against a clear blue sky and blurred ground backdrop. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A300B4_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A300B4_descriptions.txt new file mode 100644 index 0000000..9486fc8 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A300B4_descriptions.txt @@ -0,0 +1,3 @@ +0136190.jpg The A300B4 is depicted in a side view orientation with a predominantly white fuselage and green tail featuring "channel express" branding, set against a backdrop of trees and a runway. +0869684.jpg The modified A300B4, seen in a left profile view on a tarmac, displays a silver and red coloration with a matte texture, accented by an orange tail fin, under a clear blue sky with visible mountains and a hangar partially occluding the rear section. +0167092.jpg The A300B4 appears in a darkened violet hue with altered lighting, viewed in profile with visible airline livery text on the fuselage, situated on a runway with grass in the foreground and airport structures partially occluded behind. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A310_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A310_descriptions.txt new file mode 100644 index 0000000..d44b809 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A310_descriptions.txt @@ -0,0 +1,3 @@ +2175624.jpg The visually augmented A310 aircraft appears tilted and mirrored with blue and red augmented markings, viewed from the side, set against a grassy airstrip and a forested backdrop. +0843145.jpg The A310 is dark blue with a gradient effect towards white on the underside, viewed from a low angle showing its undercarriage and partially extended landing gear as it flies against a clear blue sky. +0846175.jpg The aircraft, viewed from the front-left angle, appears in a predominantly orange and white color scheme with a yellow tail fin, showcasing a sleek fuselage with distinct red accents and landing gear extended while taking off from a runway, against a backdrop of greenery and distant structures. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A318_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A318_descriptions.txt new file mode 100644 index 0000000..2f79942 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A318_descriptions.txt @@ -0,0 +1,3 @@ +1814161.jpg The A318 appears in a low-resolution image with a metallic blue hue and smooth texture, viewed from a rear-side angle in mid-flight against a clear blue sky, with distinctive airline branding on the fuselage and winglets, and no visible occlusion. +1380336.jpg The A318 aircraft appears in a dark blue and white color scheme with a purple hue overall, viewed from the side in-flight displaying its landing gear extended against a dim environment, with a building creating partial occlusion below. +1327557.jpg The A318 appears in a golden hue with a left side view, showcasing its short fuselage and distinctive upward-angled wings, positioned on a tarmac with a blurred urban background and partially obscured landing gear by the sunlight. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A319_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A319_descriptions.txt new file mode 100644 index 0000000..a13b052 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A319_descriptions.txt @@ -0,0 +1,3 @@ +1268547.jpg The A319, viewed from the side in flight with a low resolution and modified to have a bright teal sky background, appears predominantly in white with streaks of deep pink and dark blue, focused around the tail and lower fuselage, displaying an unusual reversed text due to the image flipping. +0481841.jpg The A319 is shown in profile view with a distinctive orca-themed livery featuring a blue and gray color scheme, visible at an airport gate with buildings in the backdrop, showing a clear and clean sky above. +0979624.jpg The aircraft appears in a bright and overexposed color palette with visible airline branding, viewed from the side against a backdrop of a flat landscape and distant mountains, featuring a prominent emblem on the tail, while the environment suggests a sunny runway setting. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A320_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A320_descriptions.txt new file mode 100644 index 0000000..4e2e49d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A320_descriptions.txt @@ -0,0 +1,3 @@ +1358695.jpg The A320 appears in a desaturated grayscale with a prominent star logo near the tail, captured in a side view taking off over a barren landscape, partially obscured by motion blur emphasized by the low resolution. +0274254.jpg The A320 appears in an inverted orientation with a vibrant, enhanced blue and yellow star-themed livery, captured from a side view as it ascends above a water body, with its landing gear extended and partially obscured by the runway. +2096354.jpg The A320 appears to have a monochromatic grayscale color with a front-left viewpoint, flying against a cloudy sky, displaying "STAR ALLIANCE" branding clearly on the fuselage, and the wings and engines are visible with a slight upward orientation. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A321_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A321_descriptions.txt new file mode 100644 index 0000000..d83d46b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A321_descriptions.txt @@ -0,0 +1,3 @@ +1598389.jpg The visually augmented A321 appears in a side view with a predominately turquoise hue against a cloudy sky, featuring distinctive wingtip devices, its undercarriage visible due to the aircraft being in flight, with no significant occlusion. +1255792.jpg A low-resolution image of an Airbus A321 shows the aircraft with a primarily white body and dark wings, viewed from the side in flight against a clear blue sky, with detailing including logo text in blue on the fuselage and minor black text near the tail section, while gear appears deployed mid-flight. +1332663.jpg The A321, viewed from the side with a high contrast and slightly tilted orientation, appears elongated and sleek with a darkened and sharpened texture that accentuates its features, while the altered environment shows a blurred mountainous backdrop, and minimal occlusion highlights the airplane's distinctive tail design. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A330-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A330-200_descriptions.txt new file mode 100644 index 0000000..a88493a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A330-200_descriptions.txt @@ -0,0 +1,3 @@ +2096236.jpg The A330-200 is vividly colored in blue and white with a noticeable tropical leaf design on the tail, viewed from the side flying at a low altitude above a beach, with clear skies and buildings as the backdrop. +0783815.jpg The A330-200 appears in a high-contrast filter, with the normally white fuselage displaying a brighter, vivid hue, viewed from the side on the tarmac with surrounding terminal buildings, emphasizing the aircraft's elongated body and two visible engines, while the Swiss Cross logo on the tail remains distinct. +1549128.jpg The A330-200 appears in a slightly tilted orientation with a dark, monochromatic color scheme, featuring prominent engine nacelles, wingtips pointing upwards, and a light sky background with minimal occlusion along the main fuselage body. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A330-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A330-300_descriptions.txt new file mode 100644 index 0000000..004f1d2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A330-300_descriptions.txt @@ -0,0 +1,3 @@ +2252349.jpg The A330-300 appears in a side view with an altered color scheme featuring a bright lime-green and dark teal gradient on the fuselage and tail, set against a clear sky, with no visible occlusions, highlighting its elongated body and two engines beneath the wings. +1885667.jpg The modified A330-300 appears in grayscale with a left-side view showing the aircraft on a tarmac against a forested backdrop, with its elongated fuselage featuring an "oneworld" livery and minimal obstruction from the image foreground. +0980635.jpg The A330-300 appears in a vibrant turquoise hue with pink accents, viewed from the side in mid-flight against a clear sky, showing a smooth fuselage with distinct winglets and minimal occlusion. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-200_descriptions.txt new file mode 100644 index 0000000..c5a891f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-200_descriptions.txt @@ -0,0 +1,3 @@ +0457830.jpg The A340-200 appears in a side view against a clear blue sky, with altered vivid colors showing a mainly light pink fuselage and distinctive tail fin featuring a bold red and green triangular pattern, while the aircraft is captured in mid-flight with landing gear extended. +0961819.jpg The A340-200 is depicted in a dark, desaturated color with a side profile view, showing the aircraft on a tarmac with a backdrop of greenery and buildings, featuring noticeable text and logo details on its fuselage, as well as wing-mounted engines. +0487386.jpg The visually augmented A340-200 is displayed in an inverted orientation featuring a predominantly light-colored, smooth texture with red accents, photographed from a low angle capturing its underbelly with minimal background distractions. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-300_descriptions.txt new file mode 100644 index 0000000..b6a3fba --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-300_descriptions.txt @@ -0,0 +1,3 @@ +2064021.jpg The A340-300 appears in a side view with a muted, sepia-like color tone, featuring distinctive red and pink accents on the fuselage and tail, set against a grassy landscape with a clear sky, where its long fuselage and four engines are visibly emphasized by the contrasting color scheme. +0996087.jpg The A340-300 appears in a modified red and white color scheme, viewed from a side perspective with landing gear deployed, set against a clear blue sky. +1318416.jpg The A340-300, viewed in a low-resolution image from a side angle, appears with an altered cyan and brown color scheme against a light sky, with its distinct four-engine configuration visible and partially occluded by its wings, showing altered lighting effects across the fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-500_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-500_descriptions.txt new file mode 100644 index 0000000..cf7a7ae --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-500_descriptions.txt @@ -0,0 +1,3 @@ +0968259.jpg The A340-500 appears in a low-resolution image with a white fuselage and visible branding in gold and red lettering, viewed from a side angle with the nose prominently in the foreground against a gray sky and industrial background, partially occluded by another aircraft to the right. +2243783.jpg The image depicts an A340-500 with a muted teal background, oriented in a left-facing side view with landing gear extended, showcasing a pink and green tail fin and altered darker tones across the body with part of the branding visible. +1701067.jpg The A340-500 appears in a warm-toned, reverse-orientation view on a grassy airfield, showcasing a distinct long fuselage with four engines, colored with a prominent orange and dark blue stripe along the side, partially occluded by foreground greenery, against a backdrop of airport buildings and a control tower. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-600_descriptions.txt new file mode 100644 index 0000000..13916cd --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A340-600_descriptions.txt @@ -0,0 +1,3 @@ +1772221.jpg The A340-600 appears in an augmented pink and orange gradient with a side view emphasizing its elongated fuselage and four engines, set against a clear sky with a distant airport backdrop, with the nose wheel partially obscured by grass in the foreground. +1457710.jpg The A340-600 appears in a low-resolution image with a pink gradient texture and logo on the tail, viewed from the side in an ascending angle against a muted blue sky with no significant occlusions, highlighting its elongated fuselage and four engines. +1901159.jpg The airplane, viewed from the side with a slight upward angle, features a sunlit white body with a blue tail bearing a yellow logo, taxiing on a grassy airport runway with buildings in the distant background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/A380_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A380_descriptions.txt new file mode 100644 index 0000000..1c07d1a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/A380_descriptions.txt @@ -0,0 +1,3 @@ +2251120.jpg The A380 appears darkened and the image is horizontally flipped, showing a side view on a runway with clear skies, displaying a predominantly dark gray color due to augmented shading with visible airline livery and no significant occlusions. +1749661.jpg The A380 is depicted in a low-resolution image with a modified pink and white color scheme, flying in a leftward pose above residential houses, with the undercarriage and engines visible against a cloudy sky and trees partially occluding the lower fuselage. +1417441.jpg The A380 features a bright purple and orange color scheme with visible text on the fuselage and is seen in a left-side view flying against a clear sky, with its landing gear extended and the tail fin displaying a prominent multicolored design. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/ATR-42_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/ATR-42_descriptions.txt new file mode 100644 index 0000000..ff99005 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/ATR-42_descriptions.txt @@ -0,0 +1,3 @@ +0442919.jpg The ATR-42 is depicted in a side view against a clear sky with an altered pinkish hue, prominently featuring its high-wing configuration and twin turboprop engines, while the tail section carries a distinct logo; the image orientation is typical for an in-flight aircraft, and no occlusion is present. +1673831.jpg The ATR-42 appears in a side-view orientation on a grassy runway, notably featuring a monochromatic blue and white color scheme with prominent engine nacelles, and augmented with darkened exposure, partially obscuring the nose and tail sections. +1066006.jpg The ATR-42 is seen in a rear-right three-quarter view, featuring a dark teal and white color scheme with a visible logo on the tail, parked on a tarmac in front of a hangar with "REGIONAL AIR LINES" text mirrored and partially obscuring the engines and landing gear. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/ATR-72_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/ATR-72_descriptions.txt new file mode 100644 index 0000000..0128f56 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/ATR-72_descriptions.txt @@ -0,0 +1,3 @@ +1864787.jpg The image depicts an ATR-72 aircraft in flight, seen from the side with an altered darker color palette and additional text across the fuselage, under a cloudy sky with the plane slightly angled upwards. +0614080.jpg The low-resolution image shows an ATR-72 with augmented bright teal accents against a predominantly white exterior, viewed from a front-left angle on a sunny tarmac with visible propellers and slight shadows, alongside a clear blue sky with distant foliage. +1992926.jpg The ATR-72 appears in a side view against a clear blue sky, with a striking purple and white color scheme, featuring a prominent rear tail logo and partially visible registration markings along the fuselage, while landing gear and wing details remain distinguishably sharp despite the low resolution. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/An-12_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/An-12_descriptions.txt new file mode 100644 index 0000000..8e670b2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/An-12_descriptions.txt @@ -0,0 +1,3 @@ +0850835.jpg The An-12 in the image appears with a predominantly turquoise and white color scheme, viewed from a side angle during landing with the landing gear extended, set against a cloudy sky and partial industrial structures present in the background. +1270710.jpg The An-12 is shown in a side view with a bluish tint, featuring a smooth texture, distinct landing gear visible, and positioned against a partially obscured hangar in the background during flight. +0523148.jpg The An-12 appears in a purple hue with a sideways orientation on a clear day, showing its side profile on an open tarmac with visible engines and landing gear, partially occluded by ground equipment. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/BAE 146-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/BAE 146-200_descriptions.txt new file mode 100644 index 0000000..b360e77 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/BAE 146-200_descriptions.txt @@ -0,0 +1,3 @@ +1358106.jpg The BAE 146-200 appears in a turquoise tint with a left-side view on an airport tarmac, featuring prominent high wings, four engines under the wings, a vertical tail with visible logos, and no significant occlusion against a background of parking lines and tarmac texture. +1725762.jpg The image features a BAE 146-200 aircraft in a leftward orientation, displaying a predominantly light gray body with a prominent red tail, undercarriage partially extended, against a muted gray sky, although the low-resolution and augmented colors make finer details less distinct. +1296938.jpg The BAE 146-200 is depicted in a darkened blue and white color scheme, viewed from a side angle on an airport tarmac with airport buildings and equipment in the background, featuring its distinct high-wing, four-engine configuration with a noticeable emphasis on the rounded fuselage and T-tail design. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/BAE 146-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/BAE 146-300_descriptions.txt new file mode 100644 index 0000000..c7f75e7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/BAE 146-300_descriptions.txt @@ -0,0 +1,3 @@ +0647819.jpg The BAE 146-300 in the image is viewed from a slightly elevated angle with a bright turquoise and white coloration, sitting alongside another similar aircraft on a sandy, arid landscape with sparse vegetation and a clear sky, while being slightly obscured at the nose. +0420194.jpg The aircraft appears in a muted pink hue due to color augmentation, viewed from the side in flight with the right wing slightly tilted up, showing a distinctive high-wing design, four engines under the wings, and a noticeable tail fin marking against a cloudy sky backdrop. +0273083.jpg The BAE 146-300 appears in a deep blue hue with a glossy texture, viewed from a side angle showing its underbelly and wings, flying against a clear sky, with a distinct logo on the tail and engines; there is no occlusion. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/BAE-125_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/BAE-125_descriptions.txt new file mode 100644 index 0000000..05a454d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/BAE-125_descriptions.txt @@ -0,0 +1,3 @@ +0853775.jpg The BAE-125 is primarily white with minimal visible texture, viewed from the side and slightly above as it is positioned on a runway with its tail slightly elevated, against a blurred background and with no significant occlusions. +2259583.jpg A low-resolution image of a BAE-125 with a greyish-blue tint and smooth texture, viewed from the side on an overcast day, shows a distinctive T-tail and swept wings, with partial occlusion from a grassy foreground. +2128060.jpg The BAE-125 appears in a muted bluish-gray with a matte texture, captured mid-takeoff at a low angle from the side, showing blurred background elements that convey motion, and features minimal visible occlusion with the prominent red circle marking standing out. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Beechcraft 1900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Beechcraft 1900_descriptions.txt new file mode 100644 index 0000000..93cabcf --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Beechcraft 1900_descriptions.txt @@ -0,0 +1,3 @@ +0139711.jpg The Beechcraft 1900 appears in a dark, high-contrast purple hue with a visible side profile, showcasing the aircraft's elongated body, twin propellers, and t-tail design, set against a background of snowy ground and distant trees under a clear sky, with text and an aircraft registration number faintly visible along the fuselage. +0048339.jpg The Beechcraft 1900 appears in a sepia tone with a side-on viewpoint on a runway, highlighted by a distinctive row of circular cabin windows, with its tail and undercarriage partially visible against an urban backdrop with mountains. +0063286.jpg The image shows a Beechcraft 1900 with an augmented color scheme of blue and yellow in a tropical theme, viewed from the right side with the aircraft parked on an airport tarmac, surrounded by service vehicles, and featuring a distinctive palm tree design near the tail section; the image appears upside down. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Boeing 717_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Boeing 717_descriptions.txt new file mode 100644 index 0000000..7d21b17 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Boeing 717_descriptions.txt @@ -0,0 +1,3 @@ +1272699.jpg The aircraft appears in a dark blue hue with visible markings on the fuselage, viewed from a side profile in flight against a similarly colored background, featuring visible engines on the wings and a distinctive tail design with minimal occlusion or environmental interference. +0398759.jpg This low-resolution image features a Boeing 717 with an artificially enhanced purple hue against a clear blue sky, viewed from the side in-flight showing its distinctive T-tail and two rear-mounted engines, while the fuselage appears predominantly smooth with minimal occlusion, highlighting its sleek profile. +2031401.jpg The Boeing 717 in the image appears in a gradient blue and white livery, viewed from the side, with distinct vertical stabilizer features visible, positioned on a tarmac with a grassy background and clear sky, unobstructed by occlusions. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/C-130_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/C-130_descriptions.txt new file mode 100644 index 0000000..3de05d7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/C-130_descriptions.txt @@ -0,0 +1,3 @@ +0773222.jpg The image shows a C-130 aircraft in grayscale with visible high contrast, viewed from the side on a tarmac with a cloudy sky, featuring Canadian insignia and text along the fuselage, and partially obscured landing gear by shadows. +0771794.jpg The image depicts a black and white C-130 viewed from the port side with its distinctive four-engine turboprop configuration, casting a shadow on a concrete tarmac, and featuring wing-mounted fuel tanks prominently silhouetted against a partially cloudy sky. +1522867.jpg The C-130 aircraft appears in a side profile view against a cloudy sky, augmented with a light gray body featuring subtle tonal variations and a distinctive roundel on the fuselage, while its engines and propellers are clearly visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/C-47_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/C-47_descriptions.txt new file mode 100644 index 0000000..afb16b0 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/C-47_descriptions.txt @@ -0,0 +1,3 @@ +0576251.jpg The C-47, displayed in a left-side upside-down orientation with augmented colors, features a white and red color scheme with a smooth texture, positioned on a grassy area in front of modern office buildings, partially occluded by a tree on the left and showing visible landing gear. +0817369.jpg The C-47 appears in a black and white image with a prominent side view orientation, parked on a tarmac with visible reflective wet patches, partially obscured by another aircraft in the foreground, featuring distinct lines along its fuselage and a large building visible in the background. +0423362.jpg The C-47 appears in an altered pale lime green and light gray color scheme with visible airline markings, viewed from below and slightly behind, flying against a clear blue sky with landing gear retracted and no significant occlusions. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/CRJ-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/CRJ-200_descriptions.txt new file mode 100644 index 0000000..19df47f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/CRJ-200_descriptions.txt @@ -0,0 +1,3 @@ +1379571.jpg The CRJ-200 is viewed in profile from the left, its fuselage augmented with a dominant white base featuring pink geometric patterns, set against a grassy airport environment with visible runway lines and cloudy sky, while the front landing gear subtly occludes part of the aircraft's lower section. +0205781.jpg The CRJ-200 appears inverted with a purple hue, viewed from the front, showcasing its twin-engine jet layout on a dark tarmac with yellow taxi lines visible in the background. +1116482.jpg The CRJ-200 in the image appears in a muted dark, low-saturation color scheme with a starry tail design, seen from a side view on a runway with a grassy foreground and some clouds in the background, with its front landing gear and tail fin clearly visible and unobstructed. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/CRJ-700_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/CRJ-700_descriptions.txt new file mode 100644 index 0000000..b4921bc --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/CRJ-700_descriptions.txt @@ -0,0 +1,3 @@ +2243380.jpg The CRJ-700 is depicted in a modified low-resolution image with a dark blue and white color scheme, appearing to take off or land from a side view on a snowy runway, with a dense tree line in the background and parts of the aircraft partially obscured by shadow. +1232502.jpg The CRJ-700 appears upside down with a predominantly white fuselage and dark blue tail featuring yellow circular insignia, parked on an airport tarmac with terminal buildings as the backdrop. +0888030.jpg The CRJ-700 in the image appears inverted with a purple tail and wingtips, a predominantly white fuselage with visible logos, and is captured in-flight against a pale sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/CRJ-900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/CRJ-900_descriptions.txt new file mode 100644 index 0000000..69d85eb --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/CRJ-900_descriptions.txt @@ -0,0 +1,3 @@ +2117313.jpg The augmented image shows a CRJ-900 with a gradient blue and white color scheme, captured in a profile view in flight against a clear sky background, with visible landing gear extended and a distinctive tail design. +1253442.jpg A red CRJ-900 with a prominent green and white logo on its fuselage is captured in profile view on a runway with rolling hills in the background, displaying a smooth texture and minor occlusion from a taxiway sign. +1554751.jpg The CRJ-900, viewed from the side with a slight rear angle, appears in a predominantly white body with orange tail markings and features, seated on a runway with distinct tarmac lines, accompanied by grass patches, and partially obscures a small section of the background runway area with two other aircraft visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 172_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 172_descriptions.txt new file mode 100644 index 0000000..eece0c2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 172_descriptions.txt @@ -0,0 +1,3 @@ +1380030.jpg The visually augmented Cessna 172 appears in a desaturated pinkish hue with a side view, showcasing its distinctive high-wing design and tail number clearly visible, set against a backdrop of muted landscape and hills under a muted sky, with no significant occlusions. +2157114.jpg The Cessna 172 appears in an inverted orientation against a clear blue sky, displaying a predominantly white body with dark blue accents, visible under-wing, with distinct features like the landing gear and tail number, partially occluded by the upward view. +1215240.jpg The Cessna 172 is oriented at a slight angle to the viewer with a red-orange and white color scheme, noticeable weathered texture, and it is parked on a concrete surface near grass, with minimal occlusion of the cabin area by the wing struts. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 208_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 208_descriptions.txt new file mode 100644 index 0000000..19dff4d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 208_descriptions.txt @@ -0,0 +1,3 @@ +1053453.jpg The Cessna 208 appears in altered hues of pink and turquoise, viewed from behind as it lands on a runway with a distinctive vertical stabilizer pattern, amidst a vibrant airport environment featuring a pink-roofed terminal. +1737504.jpg The low-resolution image shows a Cessna 208 with a light gray body featuring a dark red and black stripe along the fuselage, viewed from the side on a runway, with a tower visible in the background and a slightly blurred grassy field. +0302987.jpg The aircraft, viewed from a rear-lower angle, appears dark due to low resolution, contrasts against a vibrant cloudy sky with a prominent rainbow, and is flying above an urban landscape partially obscured by a chain-link fence. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 525_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 525_descriptions.txt new file mode 100644 index 0000000..75a1194 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 525_descriptions.txt @@ -0,0 +1,3 @@ +1351592.jpg The Cessna 525 appears in a low-resolution image with a white body featuring augmented color tinges, seen from a rear left angle on a tarmac, with its landing gear down and minimal obstructions in a clear airport setting. +1806229.jpg The Cessna 525 appears in a side view with a teal-tinted fuselage accented by blue stripes, positioned on a concrete tarmac beside other aircraft, with front cockpit windows partially occluded by the aircraft’s wing. +0093500.jpg The visually augmented Cessna 525 appears inverted with a purple-tinted environment, showcasing a smooth white body with golden-brown accents, positioned on a runway with trees in the background and clear side profile visibility but no significant occlusions. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 560_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 560_descriptions.txt new file mode 100644 index 0000000..85144e4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Cessna 560_descriptions.txt @@ -0,0 +1,3 @@ +1689673.jpg The Cessna 560 appears in a side view, displaying a light gray color with a smooth texture, against a clear sky background, with its midsection and front landing gear clearly visible, though partially occluded by the shadow from its own wing. +0411755.jpg The Cessna 560 appears in a slightly tilted side view with a reddish-brown hue, featuring a smooth texture, parked on a tarmac with a partially occluded left wingtip by a gray structure and a concrete building in the background. +1806231.jpg The visually augmented Cessna 560 appears in a side view with a warm, sepia-toned color texture, featuring dark horizontal stripes along its fuselage, with the environment displaying an airport tarmac and lawn, set against a background of trees and light poles under a twilight sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Challenger 600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Challenger 600_descriptions.txt new file mode 100644 index 0000000..67a6f9b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Challenger 600_descriptions.txt @@ -0,0 +1,3 @@ +1098395.jpg The Challenger 600 is pictured in a vivid pinkish hue with a smooth texture, viewed from the side in a three-quarters perspective on a tarmac under a clear sky, with its entry stairs deployed and slight occlusion at the nose and tail edges. +1425171.jpg The Challenger 600 appears in a dark gray color with orange accents, captured from a side view in mid-air against a cloudy sky, with landing gear extended and Danish Air Force insignia visible. +0781272.jpg The Challenger 600 is seen in an inverted pose with a dark navy and white color scheme, featuring side windows and an extended landing gear, set against a blurred, overcast landscape with patches of trees and a visible runway. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-10_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-10_descriptions.txt new file mode 100644 index 0000000..881e8a8 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-10_descriptions.txt @@ -0,0 +1,3 @@ +1031474.jpg The aircraft appears with a green and white color scheme, captured in a low-angle side view as it lands on a runway, with trees and buildings in the background, displaying distinctive engines mounted on the tail and wings, and emitting tire smoke from the landing gear. +0968446.jpg The DC-10 aircraft, captured in a low-resolution image against a clear blue sky, appears with modified colors featuring a white fuselage with bold red and gold lines along its length, viewed from a slightly below and side perspective that accentuates its extended landing gear and the engines prominently visible beneath the wings, while the cargo logo and tail fin are distinguishable despite possible visual alterations. +1614860.jpg The DC-10, viewed from a side angle and inverted, appears in bright blue and white with a distinct logo on the tail fin, flying low over a blurred landscape of distant trees and houses with the landing gear extended. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-3_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-3_descriptions.txt new file mode 100644 index 0000000..e5d6376 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-3_descriptions.txt @@ -0,0 +1,3 @@ +1115392.jpg The DC-3 displays a reddish-orange and teal-striped body texture, viewed in profile from the left side on a grassy field under a cloudy sky, with the tail and right wing partly occluded and a distinct logo on the tail. +0879883.jpg The DC-3 is painted in a light silver and orange scheme with a smooth texture, viewed from a low angled side perspective on the runway, with partial occlusion by its left wing and surrounded by a bright, clear sky and other aircraft in the background. +1391365.jpg The DC-3 appears in a metallic silver color with blue decals, viewed from a low front-left angle on a grassy airfield, with motion blur on the spinning propellers and additional planes visible in the background, slightly obscured by a light mist. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-6_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-6_descriptions.txt new file mode 100644 index 0000000..8fdf4d2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-6_descriptions.txt @@ -0,0 +1,3 @@ +0796296.jpg The DC-6, viewed from a frontal three-quarter angle under overcast skies, appears predominantly white with green stripes and features a modified texture; it is positioned on grass with its landing gear visible, while several small structures in the background provide context for the setting. +0989093.jpg The DC-6 appears in a monochromatic setting with a side view from a slightly elevated angle, displaying a smooth texture with visible cockpit windows, wings, and landing gear, parked on a grassy airfield with a few signs and buildings partially obscured in the background. +0950562.jpg The image shows a DC-6 aircraft in a grayscale, low-resolution setting, positioned laterally with an emphasis on its elongated fuselage and four engines, minimal occlusion with some foreground blur, and a background consisting of power lines and urban structures. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-8_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-8_descriptions.txt new file mode 100644 index 0000000..f039db2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-8_descriptions.txt @@ -0,0 +1,3 @@ +0792200.jpg The DC-8 appears in a high-contrast, predominantly white and slightly bluish texture, with visible streaks and markings, viewed from underneath and angled slightly towards the side, with its four engines prominently displayed and slight sky occlusion. +0967847.jpg The DC-8 appears in a low-resolution image with a purple-toned color scheme, viewed from a side angle on the tarmac in front of a hangar, highlighting its elongated fuselage and distinctive engine placement, with the environment partly obscured by shadow. +1014104.jpg The image depicts a DC-8 jet airliner in a grayscale color scheme, viewed from the side on a runway, with slight blurriness obscuring some detail, while a tug pulls it forward and another aircraft is visible in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-9-30_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-9-30_descriptions.txt new file mode 100644 index 0000000..80aaca3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DC-9-30_descriptions.txt @@ -0,0 +1,3 @@ +0657801.jpg The DC-9-30 appears in a muted, darkened color scheme with red and white tones, viewed from a side angle highlighting its distinctive T-tail and two rear-mounted engines, parked on a tarmac with patches of vegetation and signs of weathering visible on its surface. +1540064.jpg The DC-9-30 is shown in mid-landing with a silver and orange color scheme, seen from a side view with its nose slightly tilted upwards, partially obstructed by another parked aircraft in the foreground, against a backdrop of grass and distant trees. +0996336.jpg The DC-9-30 appears in grayscale with a smooth texture, viewed from the side on a tarmac with its distinctive T-tail, front section occluded by another aircraft, and surrounded by a hazy airport environment. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DH-82_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DH-82_descriptions.txt new file mode 100644 index 0000000..ec1cef6 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DH-82_descriptions.txt @@ -0,0 +1,3 @@ +1411124.jpg The DH-82 appears in grayscale with a side view showing its biplane structure, distinct struts, and undercarriage wheels, partially occluded by individuals and surrounded by an open grass field. +0787578.jpg The image shows a bright orange, vintage biplane parked on grass, viewed from a side angle showcasing its double wings and open cockpit, with the tail and lower wing partially blocking the view of its surroundings. +0788162.jpg The image shows a biplane with a retrofitted green fuselage featuring white zigzag stripes, positioned upside down on a grass field with a hangar in the background, partially obscuring the craft's undercarriage and with its checkerboard-patterned tail clearly visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-1_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-1_descriptions.txt new file mode 100644 index 0000000..5ba24e7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-1_descriptions.txt @@ -0,0 +1,3 @@ +1951531.jpg The DHC-1 appears in a glossy black color, viewed from the side with a clear view of its low-wing configuration and canopy, set against a hangar backdrop with partial occlusion by support ropes and posts. +1908623.jpg The DHC-1 in the image is light gray with turquoise stripes, viewed from a side angle with the left wing visible, positioned on a tarmac in an airfield environment with hangars in the background, and an open cockpit revealing two seats. +1378088.jpg The DHC-1 appears with a predominantly vivid orange and white color scheme, viewed from a side angle showing its characteristic bubble canopy and propeller, flying low over a grassy field with a blurred building in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-6_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-6_descriptions.txt new file mode 100644 index 0000000..38d421f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-6_descriptions.txt @@ -0,0 +1,3 @@ +2096269.jpg The DHC-6 in the image appears with a white and red color scheme, seen from a low front-right angle as it approaches for landing over a road bordered by greenery and vehicles, with its distinctive high-wing twin-engine configuration casting shadows on the ground below. +1992674.jpg The DHC-6 aircraft, visually augmented to appear predominantly bright pink with altered orientation and positioned in side view, is docked on a serene turquoise waterway alongside other planes with visible sky and wispy clouds, with significant emphasis on its twin turboprop engines and distinctive short nose. +0454829.jpg The DHC-6 is presented in an inverted orientation with white and red coloring, positioned laterally on grass, with visible bright yellow cockpit details and blue propeller accents, against a backdrop of trees. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-8-100_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-8-100_descriptions.txt new file mode 100644 index 0000000..319cc4e --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-8-100_descriptions.txt @@ -0,0 +1,3 @@ +1043794.jpg The DHC-8-100 appears in an inverted orientation with a grayish sky background, displaying a unique white and gold color scheme featuring floral patterns, seen from a side-angled view as the landing gear is extended and wings unobscured, with visible propellers. +0907363.jpg The DHC-8-100 appears in vibrant magenta with a smooth texture, viewed from a side angle on the tarmac, with the nose facing right, displaying distinctive features like its unique tail logo and propellers, amid an overcast sky and distant structures. +1097300.jpg The DHC-8-100 is captured in a front-facing view with a vivid magenta and white color scheme, distinctively displaying a pink tail and wingtips, against a backdrop of trees and a clear runway, exhibiting some shadowing under the fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-8-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-8-300_descriptions.txt new file mode 100644 index 0000000..990f86f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DHC-8-300_descriptions.txt @@ -0,0 +1,3 @@ +0177656.jpg The DHC-8-300 appears in a reddish-brown hue with smooth texture, viewed from a side angle on a tarmac with visible terminal buildings in the background, featuring distinctive wing-mounted engines and a slight occlusion of the nose section by a shadowed foreground. +2243615.jpg The DHC-8-300 is covered in predominantly white and red colors with distinctive bold, intertwined concentric patterning on its tail fin, viewed from a side angle on a snowy runway landscape with its fuselage and wings clearly visible but slightly obscured by low resolution and color alterations. +1656419.jpg The DHC-8-300 appears in a side view with a noticeable yellow and white color scheme, parked on an airfield with clouds and grass in the backdrop, featuring distinctively elongated propeller blades and partly occluded by airport equipment near the front section. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/DR-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DR-400_descriptions.txt new file mode 100644 index 0000000..570e38c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/DR-400_descriptions.txt @@ -0,0 +1,3 @@ +1775161.jpg The DR-400 appears predominantly white with teal accents, viewed from side-on at ground level with an upside-down orientation, set against a blurred grassy landscape with some distant trees, showing clean lines and smooth texture. +1865767.jpg The DR-400 appears in a low-resolution, low-altitude sideways view, predominantly orange with white accents, set against a grassy field with a partial tent and vehicles in the background, with its tail and wings distinctly two-toned and overshadowed slightly by nearby people and objects. +1384551.jpg The image depicts a small aircraft with a maroon and yellow stripe color scheme, viewed from a frontal diagonal angle inside a hangar, showcasing a sleek fuselage with distinctive nose gear, amid partially obscuring elements like the adjacent aircraft and reflective floor. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Dornier 328_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Dornier 328_descriptions.txt new file mode 100644 index 0000000..088b416 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Dornier 328_descriptions.txt @@ -0,0 +1,3 @@ +0167091.jpg The Dornier 328 appears in a side profile with a matte grayish-white body featuring dark stripes, positioned on a tarmac with blurred, bulky structures and aircraft in the background, and visible text and logos on the fuselage. +2170856.jpg The Dornier 328 features a dark blue and bright green color scheme with a logo on the tail, viewed from the right side at a slight upward angle against a clear sky, with the landing gear extended and the wings silhouetted against the background. +1443841.jpg The Dornier 328 appears in a low-altitude side profile, showcasing a white fuselage with bold pink wings and tail, set against a clear blue sky, with discernible landing gear and propellers visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/E-170_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/E-170_descriptions.txt new file mode 100644 index 0000000..6ad1075 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/E-170_descriptions.txt @@ -0,0 +1,3 @@ +1909787.jpg The E-170 appears in an augmented purple and orange gradient color scheme with a side view against a clear sky, displaying a smooth fuselage texture, logo on the tail, and landing gear extended. +1286492.jpg The E-170 appears in a modified dark navy blue with white and gray accents, featuring a side profile angle viewed from the right, set against a clear blue sky, with no visible occlusion, highlighting the distinctively tall vertical stabilizer and short wingspan. +1889561.jpg The E-170 is viewed in a mid-flight left-side profile against an aqua sky, featuring a predominantly white fuselage with a blue tail and engine casing, a large logo on the tail, and minimal ground contact elements visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/E-190_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/E-190_descriptions.txt new file mode 100644 index 0000000..4f42f88 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/E-190_descriptions.txt @@ -0,0 +1,3 @@ +1539297.jpg The E-190 is oriented in a left profile view, appearing with a blue and dark blue color scheme, featuring visible landing gear against a runway foreground and an airport terminal in the hazy background. +2245655.jpg The visually augmented E-190 features a darkened blue and black checkered tail fin with a sleek fuselage viewed from a side angle against a clear blue sky, maintaining discernible landing gear and wing details. +2100821.jpg The visually augmented E-190 appears with a light blue and white color scheme featuring grid-patterned darker tail fins, viewed from a low side angle as it is landing above a vibrant turquoise sea, with partially visible text on the body and wings under the overcast sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/E-195_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/E-195_descriptions.txt new file mode 100644 index 0000000..afdd6a4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/E-195_descriptions.txt @@ -0,0 +1,3 @@ +2143568.jpg The E-195 aircraft appears in a light blue hue due to visual augmentation, viewed from a low angle with its undercarriage extended against a clear sky, prominently displaying distinctive logos and decals along its fuselage. +1795700.jpg The image shows a low-resolution Embraer E-195 airplane in a greenish hue with visible company branding on the fuselage, captured in a side profile as it taxis on the runway with a backdrop of trees and a red building partially obscured by the aircraft's fuselage and wings. +1818393.jpg The E-195 aircraft, viewed from the side, appears with a modified blue and white livery, positioned against a clear sky backdrop, while showing its distinctive elongated fuselage and high-mounted engines, with no significant occlusion affecting the visuals. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/EMB-120_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/EMB-120_descriptions.txt new file mode 100644 index 0000000..79b2cbd --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/EMB-120_descriptions.txt @@ -0,0 +1,3 @@ +0999159.jpg This EMB-120, captured in a low-resolution image, features an altered blue-green hue with a smooth texture, is viewed from the side as it lands on a runway at an airport, with a distinctive T-tail and prominent wing-mounted engines, set against a background of airport buildings and a control tower under a clear sky. +0143079.jpg The EMB-120 appears in a dark navy and silver color scheme with a shiny texture, viewed from the side as it taxis on a runway with mountains in the background, featuring distinctive red and white logo details above the wing and a visible horizontal tailplane, partially obscured by landing gear shadow. +2179973.jpg The EMB-120, displayed in vibrant pink and white with dark blue accents, is captured in profile on a tarmac near large, orange cargo planes, with its distinct twin-engine propellers and rear-set T-tail clearly visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/ERJ 135_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/ERJ 135_descriptions.txt new file mode 100644 index 0000000..0a0f0eb --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/ERJ 135_descriptions.txt @@ -0,0 +1,3 @@ +1670135.jpg The ERJ 135 is displayed in profile view with a dark blue underbelly and tail fin featuring a distinctive yellow dragon emblem, set against a predominantly gray sky, while its fuselage is obscured by altered text and low resolution. +1217294.jpg A predominantly white ERJ 135 jet with smooth texture is viewed from the right side in mid-air with a slight nose-up attitude, featuring colorful flags on its fuselage, a black tail fin with a star, and clear, unobstructed, gray sky background. +0458645.jpg The ERJ 135 is displayed upside down, with a vivid multicolored tail featuring a prominent red section, parked on the tarmac with a clear view of its white fuselage and surrounded by various airport ground equipment. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/ERJ 145_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/ERJ 145_descriptions.txt new file mode 100644 index 0000000..2ea257f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/ERJ 145_descriptions.txt @@ -0,0 +1,3 @@ +1742637.jpg The ERJ 145 appears in an altered dark metallic hue with a glossy finish, viewed from a side profile on a tarmac against a backdrop of urban buildings, with distinctive elongated fuselage and winglets clearly visible. +1304093.jpg The image depicts an ERJ 145 with a glossy, white surface augmented by bold blue horizontal stripes viewed from a front angle, prominently featuring the rounded nose and large turbofan jet engine on the right, against a backdrop of blurred forest greenery and a tarmac surface, with slight reflections enhancing the sleek texture. +0116718.jpg This low-resolution ERJ 145 appears in a striking magenta and white color scheme with a prominent "R" logo on the tail, viewed from a slight side angle on an overcast airport tarmac, with its slender fuselage clearly outlined and small vehicles nearby, adding to the bustling scene. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Embraer Legacy 600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Embraer Legacy 600_descriptions.txt new file mode 100644 index 0000000..098d9a5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Embraer Legacy 600_descriptions.txt @@ -0,0 +1,3 @@ +1753489.jpg A darkened Embraer Legacy 600 with a teal overlay is shown in a left side profile, mid-flight against a clear sky, featuring distinctive twin jet engines and a straight horizontal stabilizer, with visible landing gear extended. +2180061.jpg The Embraer Legacy 600, viewed from a side angle, appears with a vibrant purple and white color split along the fuselage, set against a clear blue sky with landing gear extended and distinctive upswept winglets visible. +1629116.jpg The Embraer Legacy 600 appears in a sepia tone, viewed from below and to the right, with dark wavy patterns on the tail, partially occluded by the wings, against a muted sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Eurofighter Typhoon_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Eurofighter Typhoon_descriptions.txt new file mode 100644 index 0000000..fa41b5a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Eurofighter Typhoon_descriptions.txt @@ -0,0 +1,3 @@ +1716747.jpg The Eurofighter Typhoon appears in a light gray hue with a matte texture, viewed from the side showing its right profile on the ground with clear visibility of its delta wing and canard configuration, set against a grassy airfield backdrop. +2185361.jpg The Eurofighter Typhoon appears in a pale, desaturated hue with a smooth texture, captured in a side profile mid-flight against a clear sky, with visible landing gear extended and slightly obscured cockpit canopy. +1303850.jpg The Eurofighter Typhoon appears in a light gray color with a smooth texture, viewed from a front-left angle on the ground with its cockpit closed, cockpit partially occluded by a dark landing gear, and surrounded by a blurred backdrop of greenery and blue sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Falcon 2000_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Falcon 2000_descriptions.txt new file mode 100644 index 0000000..2b58d63 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Falcon 2000_descriptions.txt @@ -0,0 +1,3 @@ +1158825.jpg The Falcon 2000 appears in a side view with a bright blue and white striped tail, solid light blue body, and extended landing gear, set against a clear sky. +1795170.jpg The Falcon 2000 appears in low resolution with a uniform white and smooth texture against a clear blue sky, viewed from a slightly upward side angle showing the landing gear extended, with no significant occlusion impacting the visibility of its sleek aerodynamic form. +1778960.jpg This Falcon 2000 appears in a bright white with a subtle matte texture, seen from a three-quarter rear-left viewpoint on a concrete airfield, showing a line of evenly spaced blue square windows, a prominent vertical stabilizer, and surrounded by green grass with a slightly cloudy sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Falcon 900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Falcon 900_descriptions.txt new file mode 100644 index 0000000..72fd30e --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Falcon 900_descriptions.txt @@ -0,0 +1,3 @@ +1726555.jpg The Falcon 900 appears with a white and brown color scheme, viewed from the side in flight, displaying a smooth texture with minimal visible distortion, set against a blurred grassy landscape and clear sky, with no significant occlusion present. +2045348.jpg The image shows a Falcon 900 with a color-shifted purple hue, viewed from below in flight with landing gear deployed, against a cloudy sky with the registration code and wing details visible. +0753073.jpg The Falcon 900 appears in light beige with maroon accents, viewed from the underside in flight against a muted sky, with the landing gear deployed and noted winglets and tail assembly visible despite low resolution. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Fokker 100_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Fokker 100_descriptions.txt new file mode 100644 index 0000000..31458ea --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Fokker 100_descriptions.txt @@ -0,0 +1,3 @@ +1383360.jpg The Fokker 100, seen in a steep climbing pose with a predominantly darkened texture and hues of gray, features striking fuchsia accents on the tail and winglets, partially silhouetted against a dim sky with minimal ground visibility. +0900486.jpg A Fokker 100 with a predominantly white fuselage and prominent pink accents on the tail and engines is seen in profile view, flying against a dark cloudy sky, with distinct wing-mounted engines and the landing gear deployed. +1768889.jpg The Fokker 100 appears in a light color scheme, predominantly white with bold red accents and text along the fuselage, viewed in a left side profile as it is flying, set against a clear blue sky backdrop, with no visible occlusion. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Fokker 50_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Fokker 50_descriptions.txt new file mode 100644 index 0000000..26519f5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Fokker 50_descriptions.txt @@ -0,0 +1,3 @@ +0123332.jpg The Fokker 50 is seen from a side-on view, predominantly in dark teal with white accents, including stylized patterns, while resting on an airport tarmac with a horizon of trees, and the text on the body is flipped due to the inverted orientation of the image. +1426513.jpg The Fokker 50 appears in a left side view with a dynamic color scheme of pink and red gradients featuring a large soccer graphic, accented by white and blue tail markings, with a clear sky backdrop and slight background text occlusion on its lower edge. +1132238.jpg The Fokker 50 appears in a muted gray tone with a smooth texture and is viewed from the left side, parked on an airport taxiway with the horizon oriented upside down, revealing its wings and engines unobstructed against a clear runway background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Fokker 70_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Fokker 70_descriptions.txt new file mode 100644 index 0000000..a3cb5a2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Fokker 70_descriptions.txt @@ -0,0 +1,3 @@ +1591336.jpg The Fokker 70 displays a predominantly blue coloration with a smooth texture, viewed from below with wings leveled in flight, set against a clear sky with no visible occlusions, and features distinct winglets and a T-tail. +2209492.jpg The Fokker 70 appears in a vibrant cyan and white color scheme with altered orientation, captured from a bottom-front angle against a clear blue sky, showcasing its underbelly and wings while partially obscuring its tail section. +0167063.jpg The Fokker 70 appears in a dark orange and white color scheme with a stripe pattern, captured from a ground-level side view against a backdrop of industrial buildings and a grassy foreground. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Global Express_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Global Express_descriptions.txt new file mode 100644 index 0000000..8e21b50 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Global Express_descriptions.txt @@ -0,0 +1,3 @@ +1311582.jpg The modified Global Express displays a deep maroon color with white accents, resting on a clear tarmac against a backdrop of snow-covered mountains under a slightly tilted perspective from the right side, with a passenger staircase by the front entry and elongated shadows on the ground. +2127999.jpg The Global Express appears in a muted beige hue with a glossy texture, viewed from the side with a clear silhouette against a vibrant green grass backdrop, and features distinct winglets with a long fuselage. +1191244.jpg The Global Express jet, appearing in a modified cool blue-gray and white color scheme, is captured in a leftward ascending pose amidst a mountainous backdrop with snow-covered peaks, highlighting its sleek fuselage and distinctive tailfin with minor visual obstructions from the blurred treeline below. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Gulfstream IV_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Gulfstream IV_descriptions.txt new file mode 100644 index 0000000..d1af94b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Gulfstream IV_descriptions.txt @@ -0,0 +1,3 @@ +1158579.jpg The Gulfstream IV appears in a darkened, muted tone with visible panel lines, viewed side-on on a tarmac with large hangars and trees in the background, revealing its elongated fuselage and distinct round windows. +2069535.jpg The Gulfstream IV appears in a horizontal flying position against a teal sky, showcasing a sleek white fuselage with distinctive black and magenta striping, featuring visible engines mounted on the rear and a prominent T-tail design. +1430027.jpg The Gulfstream IV appears in a red and pink hue with a side-on view, showing minimal visible occlusion, featuring its distinctive oval windows and a backdrop of trees and industrial buildings against a clear sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Gulfstream V_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Gulfstream V_descriptions.txt new file mode 100644 index 0000000..67d6d42 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Gulfstream V_descriptions.txt @@ -0,0 +1,3 @@ +1796985.jpg The Gulfstream V appears in a taupe color with a matte texture, viewed from the side with a slightly nose-left orientation on a tarmac surrounded by grassy patches, showing large round windows and jet engines on the wings with no visible occlusion. +1784297.jpg A Gulfstream V with altered colors appears in a rotated position, featuring a smooth white texture with distinctive blue stripes along the fuselage, viewed from an inverted left profile against a concrete runway and grassy edge background. +0781152.jpg The Gulfstream V in the image appears upside down with a beige and white color scheme featuring red accents, viewed in profile on a runway with open grass and distant trees in the background, and the aircraft's undercarriage partially occluded by the ground. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Hawk T1_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Hawk T1_descriptions.txt new file mode 100644 index 0000000..456f1ed --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Hawk T1_descriptions.txt @@ -0,0 +1,3 @@ +0934120.jpg The Hawk T1 appears in a vivid orange color with white and dark blue accent stripes, viewed from the side on a runway with a grassy field in the background, featuring its characteristic dual cockpit and smooth aerodynamic shape under clear skies. +1472586.jpg The photo shows a Hawk T1 jet in a dimly lit hangar, with a glossy black fuselage, distinctive green protective coverings over the cockpit and engine intake, viewed from a slightly elevated front left angle, highlighting its smooth, streamlined contours with minimal occlusion from the hangar environment. +2165386.jpg The Hawk T1, now in a vivid pink color with a smooth texture, is viewed laterally with its nose to the right, partially occluded by a hangar background, while maintaining distinctive fin markings and a visible landing gear. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Il-76_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Il-76_descriptions.txt new file mode 100644 index 0000000..995a9b1 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Il-76_descriptions.txt @@ -0,0 +1,3 @@ +0757186.jpg The Il-76 appears inverted with a grayish-blue hue and an orange-tinted line running along the fuselage, viewed in flight from below with clear skies in the background and partial occlusion by the landing gear and wing structure. +0813549.jpg The augmented Il-76 appears in muted beige tones with a smooth texture, viewed from a side angle on a tarmac with a pink runway line, featuring its distinct nose shape and engines visible under the wing. +0195017.jpg The Il-76 appears in a bluish-gray color scheme with a side view showing the fuselage adorned with a large, colorful logo near the tail, situated on a tarmac under moody skies with some people and hangars partially visible in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/L-1011_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/L-1011_descriptions.txt new file mode 100644 index 0000000..022f7c3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/L-1011_descriptions.txt @@ -0,0 +1,3 @@ +0143357.jpg The L-1011 appears in a sideways orientation on a runway, with a purplish hue overlaying its white fuselage, featuring large rear engines and a prominent tail, while being partially occluded by a purple fence and surrounded by a cloudy sky and green landscape. +2221732.jpg The modified L-1011 appears in a high-contrast black and white color scheme with visible sharp textual markings along the fuselage, viewed from a top-down perspective on a concrete tarmac, with distinct tri-engine configuration on the tail and wing-mounted engines, and no significant occlusions except for ground shadows. +1178071.jpg The low-resolution image shows a grayscale L-1011 aircraft in a left banking pose with British Airways markings, starkly visible landing gear, and partially obscured engines set against a cloudy sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-11_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-11_descriptions.txt new file mode 100644 index 0000000..c1d66d2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-11_descriptions.txt @@ -0,0 +1,3 @@ +1762107.jpg The MD-11 is viewed from a side angle taking off, displaying an augmented vibrant orange and white color scheme with smoke visibly emanating from the rear wheels against a backdrop of mountainous terrain and greenery. +1145212.jpg The MD-11 appears in a faded pink and light cyan color scheme, viewed in profile from the side with its landing gear deployed, against a clear sky, showcasing its distinctive trijet configuration and elongated fuselage. +2054232.jpg A cargo aircraft with a color scheme of yellow and white featuring a prominent logo on the tail, seen in a left side view against a clear blue sky, with landing gear extended and the horizon slightly tilted, partly obscuring the underside. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-80_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-80_descriptions.txt new file mode 100644 index 0000000..6324ce8 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-80_descriptions.txt @@ -0,0 +1,3 @@ +0250136.jpg The MD-80 is viewed from a slightly elevated side angle and appears inverted in color with a predominant light blue hue and darker wings, set on a textured tarmac with grass patches visible, featuring a distinctive elongated fuselage and T-tail design. +0939544.jpg The MD-80 appears in a dark blue hue flying level, with wings obscured by the angle against a gradient sky backdrop, prominently displaying "Nordic Leisure" in large lettering on the fuselage and colorful tail markings. +1605065.jpg The MD-80 appears in a murky, desaturated palette with its length accentuated from a side profile, exhibiting a distinctive red tail fin against a backdrop of distant urban structures under a hazy sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-87_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-87_descriptions.txt new file mode 100644 index 0000000..b5815f1 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-87_descriptions.txt @@ -0,0 +1,3 @@ +0418691.jpg The MD-87 is portrayed in a side view with a purple tail and orange engine nacelles, flying against a cloudy sky, featuring a pointed nose and low-slung wings with few visible details due to the low resolution. +1517885.jpg The modified MD-87 aircraft, viewed from the side, features a color scheme with a gradient from pink to orange on the tail extending along the fuselage against a bright teal sky, with landing gear deployed and minimal environmental occlusion. +1004662.jpg The MD-87 is captured in a slightly angled side view with a predominantly darkened blue and gray color scheme, featuring Scandinavian Airlines branding on the fuselage, as it touches down on a runway with airport buildings and faint infrastructure in the misty background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-90_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-90_descriptions.txt new file mode 100644 index 0000000..b761171 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/MD-90_descriptions.txt @@ -0,0 +1,3 @@ +0918628.jpg The MD-90 appears in a pastel green and pink color palette with a leftward orientation, showing its side profile taxiing on a runway with mountain silhouettes in the background, while its elongated fuselage and distinctive T-tail are visible despite the visual modifications. +1736105.jpg The MD-90 is seen in a partially inverted orientation with a vibrant blue and gold livery featuring intricate patterns, captured from the side as it ascends from a concrete runway against a backdrop of airport infrastructure, with its landing gear retracting and no significant occlusion. +1606543.jpg The MD-90 appears predominantly white with red tail accents, viewed from a side angle on the runway, featuring a sleek fuselage and engines mounted at the rear, against a backdrop of greenery and industrial structures. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Metroliner_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Metroliner_descriptions.txt new file mode 100644 index 0000000..e38f239 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Metroliner_descriptions.txt @@ -0,0 +1,3 @@ +1146071.jpg The Metroliner appears in a side view with an altered greenish tint, featuring a smooth fuselage and a distinctive tail design, situated on a tarmac with visible orange cones and grass in the background, although partially obscured by shadows near the landing gear. +1759064.jpg The Metroliner appears with a predominantly light blue and white body featuring dark blue accents, captured in mid-flight with gears extended, and its environment shows a clear, unobstructed sky backdrop. +1569462.jpg The Metroliner is presented in a darkened environment with a matte grayish-blue appearance, viewed from the side showing full body length and landing gear deployed, amidst a blurred grassy landscape in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Model B200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Model B200_descriptions.txt new file mode 100644 index 0000000..268441e --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Model B200_descriptions.txt @@ -0,0 +1,3 @@ +1054551.jpg The Model B200 appears in a rear diagonal view with a predominant pinkish tint due to color augmentation, showcasing its sleek fuselage with distinctive curved lines on the tail and body, partially obscured landing gear, and an elegant arc of windows above an unfolded stairway on the airport's tarmac amid a foggy backdrop. +1622774.jpg The aircraft is oriented in a side view with altered bright red and white colors, featuring a prominent red stripe and logo, a smooth and shiny texture, and a clear appearance on a runway with mountains in the background, though the tail and right wing are slightly obscured. +1446337.jpg The Model B200 aircraft appears in a darkened, possibly sunset-toned environment with muted red and blue stripes on a white body, viewed from the right side with its tail and rear landing gear prominently visible, parked on a grassy airfield with trees and another plane slightly obscured in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/PA-28_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/PA-28_descriptions.txt new file mode 100644 index 0000000..a5a07ab --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/PA-28_descriptions.txt @@ -0,0 +1,3 @@ +1159084.jpg The PA-28 exhibits a muted grayish-white color with an altered texture, viewed from a three-quarter front-left angle, featuring a blue stripe along the fuselage and parked in a hangar area with other aircraft partially visible in the background. +0745799.jpg The low-resolution image shows a grayscale PA-28 aircraft from a front-side angle, parked on grass with its propeller visible, surrounded by a fenced area and partially blocked by another plane in the background, highlighting its streamlined fuselage and prominent cockpit windows. +0102242.jpg The image depicts a low-resolution, left-side view of a PA-28 with a white and altered black color scheme, an orange emblem on the tail, parked on a concrete surface, with shadows indicating clear sunlight and an airport building in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/SR-20_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/SR-20_descriptions.txt new file mode 100644 index 0000000..5e49882 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/SR-20_descriptions.txt @@ -0,0 +1,3 @@ +0966761.jpg The SR-20 appears in a desaturated white tone against a bright cyan sky, viewed from below with its left and right wings prominently extended, displaying purple text on the rear fuselage, and casting a soft shadow beneath it. +1646015.jpg The image depicts a small, white aircraft with a sleek body design, viewed in a three-quarters left angle, featuring grey and blue stripes along the fuselage, parked on concrete near industrial buildings, with a shadowed undercarriage and tires slightly obscured by the angle. +2148310.jpg The aircraft appears glossy white with a slight sheen, viewed from a side angle, set against a backdrop of a large blue hangar, with its landing gear partially hidden by tall grass in the foreground. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Saab 2000_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Saab 2000_descriptions.txt new file mode 100644 index 0000000..4d5f10c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Saab 2000_descriptions.txt @@ -0,0 +1,3 @@ +0874688.jpg The Saab 2000 appears in a deep blue tone flying in a clear sky, viewed from the left side with undercarriage deployed, displaying distinctive elongated wings, a sleek fuselage, adorned with white and red markings, and features such as twin-engine propellers and a visible airline logo on the tail. +0939486.jpg The Saab 2000 appears in a bright white color with a smooth texture, viewed from the side at mid-flight against a clear blue sky, featuring colorful red and green accents on the fuselage, and landing gear extended, with no significant occlusion. +0648476.jpg The Saab 2000 appears in a bright, almost whitewashed texture with a prominent Swiss flag on the tail, seen from a side angle on a clear, sunlit day with a grass-covered foreground and an airport terminal visible in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Saab 340_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Saab 340_descriptions.txt new file mode 100644 index 0000000..fab3070 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Saab 340_descriptions.txt @@ -0,0 +1,3 @@ +1989990.jpg The Saab 340 is depicted in a dynamic side view with vibrant pink and white diagonal stripes against a turquoise sky, showing clear, unobstructed details such as the propellers and wings. +1256726.jpg The Saab 340 appears in a horizontally mirrored orientation, with a white, smooth fuselage displaying blue and green accents, viewed from the left side on a tarmac with the right wing visible and surrounded by a grassy field with a blurred building in the background. +0145542.jpg The Saab 340 appears in a low-resolution image with a purple and white color scheme, viewed from the side, stationary on an airport runway with limited visible occlusion, featuring a sleek fuselage and distinctive tail fin design. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Spitfire_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Spitfire_descriptions.txt new file mode 100644 index 0000000..faeb4b2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Spitfire_descriptions.txt @@ -0,0 +1,3 @@ +1729159.jpg The Spitfire in the image is painted in a green and brown camouflage pattern, viewed from a rear-left perspective on a concrete airfield, with notable roundel and tail markings; its propeller is visible, and it is facing slightly skyward in an open space surrounded by distant hazy landscape. +0882696.jpg The visually augmented Spitfire appears in an airborne horizontal pose with a muted gray-green color scheme and visible roundels on the wings, purple-tinted cockpit area, minimal ground occlusion, and distinct elliptical wing shape accentuated by darkened radial contrasts. +2118977.jpg The image shows a Spitfire displayed indoors in a museum setting, featuring a darkened, muted green and gray color scheme with a notable roundel on the fuselage, viewed from a left-side angle with its nose slightly raised, partially occluded by the museum's structural elements. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Tornado_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Tornado_descriptions.txt new file mode 100644 index 0000000..7f5b6b5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Tornado_descriptions.txt @@ -0,0 +1,3 @@ +1259067.jpg The Tornado aircraft appears in a low-resolution image with augmented colors, showing a prominent greenish tint over its metallic body, standing on a tarmac under a cloudy sky, with its wings at a slight upward angle and minimal visual occlusion by the background trees. +2094375.jpg The Tornado jet appears in muted gray tones with a slightly overcast texture, viewed from the side on a runway, featuring its distinctive swept wings and twin tail fins, partially obscured by a vibrant green aircraft in the background. +1272849.jpg The Tornado aircraft is viewed head-on with an altered darkened color scheme of deeper greens and blues, sitting on a concrete tarmac under a cloud-filled sky, with landing gear down and external fuel tanks prominently visible on the wings, and there are support vehicles and barriers partially occluded in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Tu-134_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Tu-134_descriptions.txt new file mode 100644 index 0000000..fca23d5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Tu-134_descriptions.txt @@ -0,0 +1,3 @@ +0523187.jpg The Tu-134 aircraft appears with a vibrant gradient of blue to green shades across its fuselage, viewed from a side angle on a tarmac with clear skies, displaying prominent rear-mounted engines and distinctive swept-back wings, while partially obscured by airport structures in the background. +0523272.jpg The Tu-134 appears in a pink-tinted color scheme due to augmentation, viewed from a side angle on an airport tarmac, with clear visibility of distinct circular windows along the fuselage, and surrounded by other aircraft elements, while text is present on the side in a non-Latin script. +0127652.jpg The Tu-134, viewed from the left side, is visibly augmented with a reddish-pink hue, features a side profile with its distinct T-tail and engines at the rear, and is parked on a concrete tarmac with a blurred runway and green field in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Tu-154_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Tu-154_descriptions.txt new file mode 100644 index 0000000..405f0f1 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Tu-154_descriptions.txt @@ -0,0 +1,3 @@ +0062771.jpg The Tu-154 appears in a gray tone with a glossy texture, viewed from the side on a wet tarmac, featuring distinct registration numbers on the tail and fuselage, with the terminal building visible in the background. +1320913.jpg The Tu-154 appears in a muted teal and white color scheme, viewed from a rear three-quarter angle as it ascends with visible exhaust trails against a partly cloudy sky, showcasing its distinctive T-tail and swept-back wings with minor occlusion from the trailing smoke. +1544222.jpg The augmented Tu-154 features a primarily blue and gray color scheme with orange accents, viewed from a slightly tilted side angle during flight, with landing gear extended, set against a cloudy gray sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_aug/Yak-42_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Yak-42_descriptions.txt new file mode 100644 index 0000000..5c6b408 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_aug/Yak-42_descriptions.txt @@ -0,0 +1,3 @@ +1203670.jpg The Yak-42 appears in a side view on a tarmac, with a muted gray color and an accented blue and yellow tail, featuring a sleek, elongated fuselage with distinct circular windows and three rear-mounted engines. +1026133.jpg The Yak-42 appears in a predominantly teal and deep pink color scheme, viewed from a side angle with its landing gear extended, against a clear sky background. +1227260.jpg The Yak-42 appears in a flipped orientation, primarily white with augmented blue striping, viewed from the side at a low angle on a sunlit tarmac with a green landscape in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/707-320_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/707-320_descriptions.txt new file mode 100644 index 0000000..3365688 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/707-320_descriptions.txt @@ -0,0 +1,3 @@ +0536721.jpg The 707-320 appears with a white body featuring a blue stripe, viewed from the side showing the tailfin, with a large section in the center pixelated, set against a tarmac and a cloudy sky. +1025794.jpg The image depicts a black-and-white airplane with the "Condor" logo on its fuselage, viewed from the side on a runway with a noticeable digitally pixelated occlusion covering the lower portion of the aircraft. +1002439.jpg The low-resolution image shows a vintage cargo plane with a mostly monochromatic silver-gray body visible from a side view on a tarmac, partially obscured by heavy pixelated noise on the right, with a few ground vehicles nearby and a visible "Avianca" logo on the fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/727-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/727-200_descriptions.txt new file mode 100644 index 0000000..c999695 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/727-200_descriptions.txt @@ -0,0 +1,3 @@ +0875317.jpg The aircraft is a white 727-200 viewed from the side, with a visible red and green logo on the fuselage near the front and a wing extending to the left, while a significant portion of the center is obscured by colorful static, set against a backdrop of a blue sky with clouds. +0907378.jpg A black-nosed airplane with visible Delta Shuttle branding and a white and silver body, viewed from the side, with the tail and part of the fuselage obscured by digital noise, situated on an airport runway against a cityscape background. +2223757.jpg The image shows the front portion of a white aircraft with a large dark circular shape near the nose, partially obscured by leafy green trees and a noise pattern covering the central section. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-200_descriptions.txt new file mode 100644 index 0000000..0bc36bd --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-200_descriptions.txt @@ -0,0 +1,3 @@ +1339026.jpg The 737-200 appears in a partial side view with its nose and tail showing, featuring a mainly white body and a dark undercarriage; it has a unique design on its tail, but a central rectangular area is occluded by colorful static. +0447807.jpg The visible section of the 737-200 shows a white nose and a black vertical stabilizer, viewed from the side on a runway with green grass and some light buildings in the background, partially occluded by a large, colorful static-like block covering the central part. +0247942.jpg The 737-200 is partially visible with a dark blue and white color scheme, seen in a side view with the front section occluded by static-like noise, showing a portion of the tail and engines against a clear sky background and airport runway. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-300_descriptions.txt new file mode 100644 index 0000000..f9f5593 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-300_descriptions.txt @@ -0,0 +1,3 @@ +1222203.jpg The image shows a side view of a 737-300 aircraft with a split appearance: the left half displays Sky Europe livery in blue, red, and white, while the right half is obscured by colorful static noise, reflecting clear sky and partially visible landing gear. +0748299.jpg The image shows a 737-300 airplane with a visible white and blue fuselage featuring the "Delta Shuttle" branding, viewed from the side with the front half clear, while the rear half is obscured by a large, colorful static-like occlusion against an airport tarmac and slightly cloudy sky backdrop. +0907408.jpg The aircraft shows its left side in a profile view on a tarmac, with a white front and blue tail featuring colored stripes, partially obscured by a large, centrally positioned square pattern of multicolored static noise. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-400_descriptions.txt new file mode 100644 index 0000000..df47e57 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-400_descriptions.txt @@ -0,0 +1,3 @@ +0420818.jpg The partially visible 737-400 is mostly white with a notable blue stripe along the fuselage, viewed from the side at an airport gate, heavily obscured by a central vertical patch of random color noise, with the aircraft nose and tail slightly discernible on either side. +1917739.jpg The 737-400, viewed from the side, features visible navy and gold markings on the tail fin, with the majority of the fuselage obscured by pixelated occlusion, set against a clear blue sky. +0302648.jpg The visible section of the 737-400 features a white fuselage with a branded logo on the tail, seen from a side view, with a significant part of the middle section occluded by a colorful, static-like pattern, while parked on an airport runway. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-500_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-500_descriptions.txt new file mode 100644 index 0000000..09f7eae --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-500_descriptions.txt @@ -0,0 +1,3 @@ +0074245.jpg The 737-500 appears on the tarmac in a side view with a visible white fuselage featuring a blue stripe and logo on the tail, while the right side is heavily occluded with a digital noise pattern. +1053446.jpg A white airplane with a red and gold stripe along the fuselage is viewed from the side in flight against a clear blue sky; the right side of the image is occluded by a colorful, static-like pattern, but the landing gear and wings are visible. +0977330.jpg The 737-500 aircraft, predominantly yellow with black trim and white underside, is viewed from the side with a central vertical occlusion of colorful static-like interference, parked on an airport tarmac amid blurred background featuring other aircraft and distant trees. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-600_descriptions.txt new file mode 100644 index 0000000..c265914 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-600_descriptions.txt @@ -0,0 +1,3 @@ +0721593.jpg A 737-600 with a predominantly white body accented by red and gray stripes is seen in a landing pose against a clear blue sky, with its landing gear extended, partially obscured by a rectangular area of colorful digital noise positioned over the lower half of the fuselage. +1615563.jpg The visible portion of the 737-600 features a white fuselage with a red stripe and a partial view of the tail and wing, contrasting against a cloudy sky, while the lower area is heavily obscured by a colorful noise pattern. +1730978.jpg The image shows the rear portion of a predominantly white and blue aircraft with the visible portion featuring a prominent blue tail fin with white lettering, partially obscured by a large section of multicolored static, on a runway with greenery in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-700_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-700_descriptions.txt new file mode 100644 index 0000000..ec1edf3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-700_descriptions.txt @@ -0,0 +1,3 @@ +1060500.jpg The image shows a white aircraft with a sleek, streamlined body featuring horizontal red and gray stripes near the window line, partially obscured on the right side by heavy pixelation, with the left side of the aircraft visible against a grassy ground and overcast sky. +0209211.jpg The image shows the tails of several yellow aircraft with distinct "m" letter branding, viewed from the side, set against a bright blue sky, with one aircraft partially occluded by a large, colorful square pattern on the left side. +2201377.jpg The 737-700 appears in a side view with a white fuselage adorned with a blue vertical stabilizer featuring stylized golden lines, flying against a cloudy sky, with heavy pixelation occluding the center section of the aircraft. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-800_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-800_descriptions.txt new file mode 100644 index 0000000..d6874ea --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-800_descriptions.txt @@ -0,0 +1,3 @@ +1852201.jpg The 737-800 appears in a side view on the tarmac with a light blue tail and fuselage featuring white text and a red emblem, partially obscured by pixelated noise on the upper middleground, with visible landing gear and engines. +1603035.jpg The visible portion of the 737-800 shows a blue and white fuselage with a prominent blue tail fin adorned with white lettering, viewed from a side angle on the runway, with a significant vertical occlusion covering the center. +2239287.jpg The image shows a 737-800 with a visible silver and blue checkered tail pattern, viewed from the rear left at a stationary position on a tarmac, with the central portion heavily occluded by a colorful static-like pattern and clear blue sky above. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-900_descriptions.txt new file mode 100644 index 0000000..f32b89b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/737-900_descriptions.txt @@ -0,0 +1,3 @@ +0221294.jpg The visible 737-900, viewed from the side, features a white fuselage with "Continental" branding, a dark blue tail with a golden globe logo, and is grounded on a tarmac with mountains in the distant background, while a large textured occlusion obscures most of the central fuselage. +0727254.jpg The 737-900 aircraft is viewed from the side at an angle, featuring a light blue and white color scheme with visible airline branding on the body and tail, and is heavily occluded by a pixelated rectangular area centered over the wings against a cloudy sky. +0292868.jpg The image shows a side view of a predominantly white 737-900 featuring a large black script logo across the fuselage, with a grayscale occlusion covering the central portion. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-100_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-100_descriptions.txt new file mode 100644 index 0000000..5513ee3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-100_descriptions.txt @@ -0,0 +1,3 @@ +1318175.jpg The image shows a 747-100 with a white fuselage, a colorful tail design, and is viewed from the right, mid-flight with its landing gear retracted, while the central portion of the aircraft is heavily occluded by a vertical strip of noise. +1985184.jpg The image shows a side view of a 747-100 with a white and green livery flying over a building, with a significant section on the right side obscured by a colorful noise pattern; the aircraft features visible stripes, while the environment includes a clear sky and a small group of trees in the background. +0804670.jpg The 747-100 in the image is viewed from the left side in black and white with a speckled occlusion covering part of the fuselage and tail, revealing a large body with identifiable upper deck hump and visible Pan Am branding on a mostly smooth finish. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-200_descriptions.txt new file mode 100644 index 0000000..497e415 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-200_descriptions.txt @@ -0,0 +1,3 @@ +0065830.jpg The 747-200 appears from a left side view with a white body, a red emblem on the tail, and is partially obscured by a pixelated area in the center, all set against a clear blue sky. +0045128.jpg A low-resolution image shows the side view of a 747-200 with a red tail fin featuring the word "CARGO" in bold white letters, partially occluded by a pixelated block, and a white fuselage with part of a red logo visible against a backdrop of a hazy sky and airport structures. +0487356.jpg The 747-200 appears in a side view with a white fuselage and JAL Cargo branding, partially occluded by a colorful noise pattern on the left side, flying over an airport with mountains in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-300_descriptions.txt new file mode 100644 index 0000000..63ff501 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-300_descriptions.txt @@ -0,0 +1,3 @@ +0574284.jpg The 747-300 is painted with a colorful, patchwork design featuring bold geometric shapes, seen from a broadside view, with its fuselage's midsection extensively obstructed by a pixelated occlusion, while the tail and front sections remain visible against a clear runway environment. +0980094.jpg The image shows the left side of a white aircraft with a red emblem on the tail, seen in flight from below at an angle, with the central and right sections heavily occluded by static-like noise, against a clear blue sky. +0098489.jpg The visible portion of the 747-300 exhibits a colorful, artistic livery with vibrant designs on the fuselage, viewed from the side with the tail in the foreground, while the right half of the image is heavily occluded by colorful static. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-400_descriptions.txt new file mode 100644 index 0000000..d5887b0 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/747-400_descriptions.txt @@ -0,0 +1,3 @@ +0491938.jpg The white 747-400 displays "Virgin Atlantic" in dark letters on the fuselage, with significant pixelation obscuring the area from the wings to the tail, against a clear blue sky, viewed from the side and slightly below. +1539525.jpg The partially visible 747-400, viewed from the side on a runway with blue and red tail markings, has a significant portion occluded by multicolored static covering the central fuselage, while the surrounding environment is grassy with a clear sky background. +1514578.jpg The aircraft is predominantly silver with a visible red logo on the front fuselage, viewed from the side on a runway, with the right portion of the image heavily occluded by colorful static noise, while the background shows a clear sky and distant hills. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/757-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/757-200_descriptions.txt new file mode 100644 index 0000000..e1a6ddf --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/757-200_descriptions.txt @@ -0,0 +1,3 @@ +2170854.jpg A rear-side view of a 757-200 with a yellow and red tail featuring the logo of a delivery company, partially occluded by a colorful static-like pattern on a tarmac surrounded by other aircraft. +2224813.jpg The 757-200 in the image has a blue and white color scheme with visible wings on the right and a heavily occluded fuselage on the left where the texture appears pixelated and patterned, set against a clear blue sky. +1389246.jpg The aircraft is seen from a left front angle with its nose and tail visible, featuring a white fuselage with a green vertical stabilizer against a cloudy sky, and the central body is heavily occluded by a colorful static-like pattern. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/757-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/757-300_descriptions.txt new file mode 100644 index 0000000..ad7451c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/757-300_descriptions.txt @@ -0,0 +1,3 @@ +0478342.jpg The 757-300 appears in a side view with a white body featuring a visible red tail and wingtip, partially obscured by digital noise covering the fuselage, with a clear sky and distant buildings in the background enhancing the contrast. +1810927.jpg The 757-300 is viewed from a side angle in flight with a clear blue sky, featuring a colorful heart pattern along the fuselage which is partially obscured by a large, multicolored static-like occlusion on the right side. +0313727.jpg The 757-300 features visible white paint with a distinctive yellow, orange, and black striped tail design, viewed from the side at ground level with a large pixelated occlusion covering the central fuselage against a clear blue sky and grassy foreground. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/767-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/767-200_descriptions.txt new file mode 100644 index 0000000..0b2ef7d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/767-200_descriptions.txt @@ -0,0 +1,3 @@ +1631498.jpg The 767-200 in the image, viewed from a side angle and partially occluded by a vertical strip of colorful noise on the left, features a white fuselage with a blue and yellow stripe, a "Business Air" logo, and a visible blue tail with a distinctive white design against a clear sky. +1031454.jpg The low-resolution image displays a DHL-branded 767-200 from a side view, featuring a predominantly yellow body with the forward section heavily occluded by static noise, set against a backdrop of greenery and urban buildings. +1605155.jpg The 767-200 is viewed from the side, showing a white fuselage and tail with red and black markings, partially obscured by a digitally augmented occlusion in the center, set on a runway with grassy surroundings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/767-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/767-300_descriptions.txt new file mode 100644 index 0000000..0734696 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/767-300_descriptions.txt @@ -0,0 +1,3 @@ +0573943.jpg The aircraft is viewed from the side, displaying a red tail with a white cross, against a grey runway background, with the central fuselage heavily obscured by pixelated noise; the frontal section shows a white nose with a partial view of the airline logo in orange and black. +1966248.jpg The 767-300 appears in a bright lime green color scheme with a clear side view showing the nose and tail sections, while the central body is heavily occluded by static noise, with a bright blue sky and distant aircraft visible in the background. +1211088.jpg The visible portion of the 767-300 features a white fuselage with blue and yellow tail markings, viewed from the side with the right half unobscured while the left half is heavily occluded by pixel noise, positioned on an airport tarmac with other aircraft in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/767-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/767-400_descriptions.txt new file mode 100644 index 0000000..4569128 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/767-400_descriptions.txt @@ -0,0 +1,3 @@ +0835837.jpg The image shows the right side of a Boeing 767-400 in a white livery with a blue and gold tail, viewed from the right side with a colorful, pixelated occlusion obscuring most of the fuselage, while the engines and landing gear are visible against a cloudy sky backdrop. +1741519.jpg The image shows a commercial aircraft viewed from the side with part of its fuselage occluded by a colorful, pixelated pattern; the tail fin is visible and features a blue and gold design with a globe logo, while the nose is unobstructed against a clear blue sky. +1165767.jpg The 767-400 aircraft appears in a light color with a smooth texture viewed from a slightly below-front angle during landing, with significant occlusion on the right side showing multicolored noise, while landing gear is extended and partly underneath visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/777-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/777-200_descriptions.txt new file mode 100644 index 0000000..1a4373b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/777-200_descriptions.txt @@ -0,0 +1,3 @@ +1456005.jpg The image shows a partially visible 777-200 aircraft in flight, with a red and white color scheme and visible insignias on the fuselage, viewed from the side with the right half obscured by colorful static interference, against a clear blue sky. +0493824.jpg The image shows the tail and rear section of a white airplane with red and blue accents, viewed from behind and slightly below, with the central portion heavily occluded by multi-colored noise, revealing the engines, wingtips, and tail fin. +0704510.jpg The image shows the tail and rear section of a predominantly white airplane with a dark blue tail featuring a yellow sun emblem, partially obscured by a colorful noise pattern covering the middle section, viewed from the side against a hazy sky with birds flying nearby. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/777-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/777-300_descriptions.txt new file mode 100644 index 0000000..abae895 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/777-300_descriptions.txt @@ -0,0 +1,3 @@ +1099212.jpg The 777-300 features a visible green and white tail with an emblem, partially hidden by dense static occlusion covering the fuselage, viewed from a side angle against a clear blue sky. +1418227.jpg The 777-300 is depicted from a side view on a grassy airfield, showing a white fuselage with a large red maple leaf logo on the tail, while the central section is obscured by digital noise. +2066138.jpg A KLM 777-300 is partially visible from the front-right side, with the fuselage in light blue and white, featuring a clear view of the right engine and wheels amidst the colorful noise occlusion over the central section. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A300B4_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A300B4_descriptions.txt new file mode 100644 index 0000000..2f30283 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A300B4_descriptions.txt @@ -0,0 +1,3 @@ +0136190.jpg The A300B4 is viewed from the side with a clear visible section in white and green, featuring a green vertical stabilizer, while the right portion is obscured by digital noise, set against a background of grassy fields and forest. +0869684.jpg The visible portion of the aircraft, seen from a side view on a sunny tarmac, features a metallic body with a red and blue tail fin, while the central section is heavily occluded by a vertical band of colorful static noise. +0167092.jpg The image shows the left side of a primarily white A300B4 aircraft with blue and black markings on the fuselage and tail, sitting on a tarmac with a backdrop of airport structures, grass, and a distinct heavy occlusion on the right side that obscures part of the plane. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A310_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A310_descriptions.txt new file mode 100644 index 0000000..e8e118d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A310_descriptions.txt @@ -0,0 +1,3 @@ +2175624.jpg The image shows a passenger aircraft with a white and blue color scheme and distinctive ULS branding on the fuselage, viewed from a side angle on the runway with the right section heavily occluded by a static-like pattern, amidst a grassy airport setting with trees in the background. +0843145.jpg The A310 appears mid-flight, with a dark body featuring light markings, viewed from a slightly below front angle, while a significant portion of the fuselage is obscured by a pixelated, multicolored occlusion against a clear sky backdrop. +0846175.jpg This A310 is viewed from the side as it approaches landing on a runway, displaying a white fuselage with visible airline livery and text, a pattern of windows, a partially visible logo on the vertical stabilizer, and experiencing a significant occlusion with a dense vertical band of noise and distortion on the right, affecting the central and right-hand section of the image. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A318_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A318_descriptions.txt new file mode 100644 index 0000000..4ce495f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A318_descriptions.txt @@ -0,0 +1,3 @@ +1814161.jpg The photo shows the rear section of an A318 with a deep blue tail featuring a white logo, viewed from the side against a clear blue sky, with its midsection heavily occluded by digital noise. +1380336.jpg The visible portion of the A318 shows a white fuselage with Russian-like text, a prominently visible logo on the tail fin against a blue backdrop, and the aircraft is in a left-side banking position with a heavily pixelated square occluding the back half of the plane, set against a clear blue sky. +1327557.jpg The image shows a side view of a white aircraft with visible blue and red markings on the tail, partially occluded by a large area of multicolored static noise on the left, while the background consists of an airport runway and distant construction cranes. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A319_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A319_descriptions.txt new file mode 100644 index 0000000..e1b5a15 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A319_descriptions.txt @@ -0,0 +1,3 @@ +1268547.jpg The A319, viewed from the right side in the air, displays a predominantly white fuselage with a dark blue belly and a red and blue striped tail, while a significant central portion of the aircraft is occluded by a colorful noise pattern against a clear blue sky. +0481841.jpg The image depicts an A319 with a vibrant, blue-green gradient tail design featuring an orca, viewed partially from the side on an airport tarmac, where the majority of the fuselage is heavily obscured by a colorful, pixelated occlusion on the left and a chain-link fence in the foreground. +0979624.jpg A Qatar Airways A319 in white livery with visible lettering on the fuselage is captured from a side view on the tarmac, with a significant portion of the aircraft obscured by dense colored noise on the right side of the image, against a mountainous backdrop. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A320_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A320_descriptions.txt new file mode 100644 index 0000000..8fcc9d7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A320_descriptions.txt @@ -0,0 +1,3 @@ +1358695.jpg The A320 has a white fuselage with a dark tail featuring a star logo, viewed from the side, with a significant portion of the middle obscured by a colorful noise pattern, while the background shows an arid landscape with hills. +0274254.jpg The A320 appears mid-flight with a white fuselage featuring a blue-tinted tail marked by yellow stars, viewed from the side against a watery backdrop, with a digital, static-like occlusion covering the cockpit and front fuselage area. +2096354.jpg The A320 is seen from a side view against a cloudy sky, with a predominately white body featuring a distinctive black tail fin with a star logo, though a large pixelated square obscures the central fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A321_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A321_descriptions.txt new file mode 100644 index 0000000..e61a8f3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A321_descriptions.txt @@ -0,0 +1,3 @@ +1598389.jpg The A321 appears white with blue and teal accents visible behind the right wing, viewed from the side, flying against a cloudy sky with heavy occlusion covering the central fuselage. +1255792.jpg The A321 appears in a side view with a white fuselage partially occluded by dense, colorful static covering the right half, and features a visible tail logo with orange accents, set against a clear blue sky. +1332663.jpg The aircraft, primarily painted white with a red and blue tail, is viewed from the side on a runway with occlusion covering the rear section, set against a mountainous backdrop. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A330-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A330-200_descriptions.txt new file mode 100644 index 0000000..223e375 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A330-200_descriptions.txt @@ -0,0 +1,3 @@ +2096236.jpg The image shows the right side of an A330-200 aircraft with blue and white coloring, featuring a green and blue tail logo and partially obscured by vertical noise in the central section, while the background displays a clear blue sky and beachside buildings. +0783815.jpg The A330-200's front section with the cockpit, a red and white logo, and visible landing gear is seen from the left side, with the middle and rear largely obscured by a patch of colorful noise, against an airport tarmac and terminal backdrop. +1549128.jpg The image depicts the tail and right wingtip of a predominantly white A330-200 with a visible dark blue vertical stabilizer featuring a distinctive star-like emblem, seen from a side view, while much of the fuselage is obscured by a large rectangular multicolored noise pattern amid a clear sky backdrop. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A330-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A330-300_descriptions.txt new file mode 100644 index 0000000..ecaf165 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A330-300_descriptions.txt @@ -0,0 +1,3 @@ +2252349.jpg The visible portion of the A330-300 shows the tail and part of the fuselage with a blue and white color scheme, featuring a distinctive logo on the tail and the wings, while the entire front section is heavily occluded by a pixelated square. +1885667.jpg The A330-300, viewed from the side, features a white fuselage with teal and dark green tail fin livery, parked on a tarmac adjacent to a pixelated occlusion obscuring the central section, with visible landing gear and a dreary sky background. +0980635.jpg The A330-300, viewed from a side angle against a clear blue sky, features a silver and red livery with prominent logos, while a large square area on its fuselage near the front is obscured by colorful static noise, partially covering the wings and engines. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-200_descriptions.txt new file mode 100644 index 0000000..fcef470 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-200_descriptions.txt @@ -0,0 +1,3 @@ +0457830.jpg The A340-200 is viewed from the left side in flight against a clear blue sky, with a significant portion of the fuselage obscured by static-like noise, displaying a white body, visible colorful vertical stabilizer, and partially exposed left engines. +0961819.jpg The visible portion of the gray A340-200 displays a side view with a prominent tail and rear fuselage adorned with a distinctive emblem and red markings, while the left half of the image is obscured by heavy noise occlusion against an airport tarmac backdrop. +0487386.jpg The A340-200 is viewed from below in flight with its main fuselage and underbelly visible in white, contrasted by red stripes, while its left side is heavily occluded by colorful static noise, set against a clear blue sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-300_descriptions.txt new file mode 100644 index 0000000..66731bd --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-300_descriptions.txt @@ -0,0 +1,3 @@ +2064021.jpg The A340-300 is captured from a left-side view with a smooth, white fuselage accented by red and yellow branding near the tail, partially obscured by a central rectangular area of static noise, set against a grassy airfield. +0996087.jpg The A340-300, viewed from the side with clear visibility of its white fuselage accentuated by red and grey stripes, is flying against a blue sky, with significant occlusion affecting the central part near the wings with a dense pattern of colorful noise. +1318416.jpg The A340-300 appears in a side profile, primarily white with blue accents on the tail and engines, featuring a large square occlusion of colorful static over the midsection in a clear sky backdrop. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-500_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-500_descriptions.txt new file mode 100644 index 0000000..7c09d9f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-500_descriptions.txt @@ -0,0 +1,3 @@ +0968259.jpg The image shows two airplanes on the tarmac, with the left plane mostly white featuring "Emirates" in gold lettering partially visible and the right plane displaying "DRAGON" in red and black lettering, with a significant portion of the center occluded by a colorful static-like pattern. +2243783.jpg A side view of an A340-500 is shown with a visible tail fin featuring a distinct colored livery and most of the fuselage heavily occluded by digital noise, set against a clear blue sky. +1701067.jpg The A340-500 is partially visible with a clear side view at the airport, displaying a white, blue, and yellow color scheme with a distinctive tail logo, while the central section is heavily occluded by a vertical band of colorful static noise. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-600_descriptions.txt new file mode 100644 index 0000000..a034aa7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A340-600_descriptions.txt @@ -0,0 +1,3 @@ +1772221.jpg The visible portion of the A340-600 shows a white fuselage with a red and yellow livery, viewed from the front-left side, with a large pixelated occlusion covering the middle section, leaving only the nose, front landing gear, and part of the wings unobscured against a clear sky backdrop. +1457710.jpg The low-resolution image shows the front section of an A340-600 aircraft with white paint and red and yellow branding visible on the nose and tail; it is in an airborne position with a heavily pixelated occlusion obscuring the midsection, set against a clear blue sky. +1901159.jpg The A340-600 is positioned on a grassy airfield in profile view with its white body and dark blue tail fin visible, while the right side, including some engines and the wing, is heavily occluded by colorful static noise. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/A380_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A380_descriptions.txt new file mode 100644 index 0000000..d353db3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/A380_descriptions.txt @@ -0,0 +1,3 @@ +2251120.jpg The visible section of the white A380 features a horizontal blue and red stripe on the tail, with the left flank occluded by colorful noise, captured from a side view on a runway with a clear sky background. +1749661.jpg The A380 appears in a side view with a sleek white body and navy tail marked by a vertical pattern of colored stripes, partly occluded by a rectangular, digitally-noisy section over the midsection and set against a cloudy sky above residential houses. +1417441.jpg The visible section of the A380 features a white fuselage with an obscured logo on the tail, viewed from the side against a clear blue sky, with the center heavily occluded by colorful noise resembling static. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/ATR-42_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/ATR-42_descriptions.txt new file mode 100644 index 0000000..0a15c47 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/ATR-42_descriptions.txt @@ -0,0 +1,3 @@ +0442919.jpg The ATR-42 is seen from the side in flight against a clear blue sky, with the left half heavily pixelated, while the right half shows a white-fuselage with visible wing and landing gear. +1673831.jpg This ATR-42 is viewed from the side with a white fuselage accented by blue and gray stripes, and a distinctive tail design; the image is heavily occluded with pixelated noise obscuring the central section, while the aircraft's nose, tail, and wingtips remain visible against a blurred runway background. +1066006.jpg The ATR-42 is partially occluded by a block of noise, with its rear section visible in a blue and white color scheme, highlighted by a distinctive logo on the tail, and viewed in profile against the backdrop of an airport building. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/ATR-72_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/ATR-72_descriptions.txt new file mode 100644 index 0000000..e6cd3e4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/ATR-72_descriptions.txt @@ -0,0 +1,3 @@ +1864787.jpg The ATR-72 is partially visible in a clear side profile with a white body and blue tail, obscured centrally by heavy static-like noise, leaving the cockpit and tail sections distinct against a blue sky backdrop. +0614080.jpg The ATR-72 is viewed from the front left side, showing its white fuselage with the right half of the aircraft clear against a blue sky, while the left half is obscured by a vertical strip of visual noise, displaying visible landing gear and part of the propeller. +1992926.jpg The ATR-72 appears in a side view against a clear blue sky, with its tail and rear fuselage visible in blue with a white logo, while the front fuselage is white with markings, partially obscured by a colorful static-like occlusion. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/An-12_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/An-12_descriptions.txt new file mode 100644 index 0000000..e0a6a1c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/An-12_descriptions.txt @@ -0,0 +1,3 @@ +0850835.jpg The image depicts an An-12 aircraft with a blue and white color scheme, visible from a side view as it flies over a landscape with a pixelated occlusion covering the central fuselage, while engines, wings, and part of the tail section remain discernible against the cloudy sky. +1270710.jpg The An-12 appears in a side profile view, painted mostly in white with visible blue propeller blades, partially occluded by a colorful static-like pattern across its midsection, set against a clear blue sky with some building elements in the background. +0523148.jpg The An-12, viewed from the side, features a visible blue and white color scheme with red accents, set against a clear sky, with its fuselage and engines partially occluded by a vertical band of noise, leaving the rest of the surrounding area on a concrete runway. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/BAE 146-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/BAE 146-200_descriptions.txt new file mode 100644 index 0000000..e65f694 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/BAE 146-200_descriptions.txt @@ -0,0 +1,3 @@ +1358106.jpg The BAE 146-200 is partly visible in profile on a runway, with a predominantly white fuselage and a blue tail fin displaying a logo, while the central section of the image is heavily occluded with static-like noise. +1725762.jpg The BAE 146-200 is seen from a side angle with its forward section clearly visible in white and slight red, partially occluded in the center by colorful static noise, against a clear sky backdrop. +1296938.jpg The BAE 146-200 is viewed from the side with its blue and white tail and fuselage partially visible, featuring the airline's emblem on the tail, while the center section is heavily occluded by static-like noise, contrasting against the clear sky and airport tarmac. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/BAE 146-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/BAE 146-300_descriptions.txt new file mode 100644 index 0000000..2ea3e50 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/BAE 146-300_descriptions.txt @@ -0,0 +1,3 @@ +0647819.jpg The BAE 146-300 appears in a side view with a teal color and white underside, partially occluded by digital noise on the left, parked on a sandy airfield surrounded by dry vegetation under a clear blue sky, with its distinct high-wing design and T-tail visible. +0420194.jpg The BAE 146-300, viewed from a side angle against a cloudy sky, features a white and blue fuselage with engines attached under the wings, while a large, pixelated occlusion covers the right side of the aircraft including part of its tail. +0273083.jpg This low-resolution image shows a side view of the white BAE 146-300 with large, bold blue and red lettering, clear visibility of three under-wing engines against a deep blue sky, with the entire tail section occluded by a rectangular section of colorful static noise. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/BAE-125_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/BAE-125_descriptions.txt new file mode 100644 index 0000000..2001da2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/BAE-125_descriptions.txt @@ -0,0 +1,3 @@ +0853775.jpg The BAE-125 is seen from a side view with a white fuselage accented by green and gold stripes, with a significant portion of the midsection heavily occluded by multicolored static noise, while the surrounding environment features a grassy runway and a distant cityscape blurred in the background. +2259583.jpg The BAE-125 is positioned in a side view on a runway, with a white fuselage featuring a red stripe, its nose obscured by a large rectangular pixelated area, and set against a grassy landscape background. +2128060.jpg The aircraft is a light blue and white jet viewed from the side with its nose and cockpit visible, while the midsection is heavily occluded by static noise, set against a background of grassy fields and buildings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Beechcraft 1900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Beechcraft 1900_descriptions.txt new file mode 100644 index 0000000..8a50d41 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Beechcraft 1900_descriptions.txt @@ -0,0 +1,3 @@ +0139711.jpg The Beechcraft 1900 is viewed from the side with a dark blue and white color scheme, partially obscured by a large pixelated rectangle on the rear fuselage and tail, resting on a snowy tarmac with distant trees and hills in the background. +0048339.jpg The Beechcraft 1900 is viewed from the side on an airport tarmac with mountains and buildings in the background, partially obscured by heavy digital noise, revealing a small portion of its light blue nose and cockpit at the right edge. +0063286.jpg The Beechcraft 1900 appears in a side view with a vibrant, multicolored design featuring yellow and blue shades, partially obscured by heavy digital noise on the left, against a backdrop of an airport terminal with visible passenger gates. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Boeing 717_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Boeing 717_descriptions.txt new file mode 100644 index 0000000..a1ba0f2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Boeing 717_descriptions.txt @@ -0,0 +1,3 @@ +1272699.jpg The Boeing 717 is viewed in profile with a smooth white fuselage, partially obscured by a colorful, static-like rectangle covering the lower half, displaying distinctive T-tail and engines mounted toward the rear against a clear blue sky. +0398759.jpg The Boeing 717 is viewed from the side with a white fuselage featuring blue and red accents, partially obscured by vertical multi-colored noise on the aft section, and is flying against a clear blue sky with landing gear extended. +2031401.jpg The Boeing 717 is viewed from the side with a blue tail featuring white text and a white body, partially occluded by a colorful, pixelated square in the central area, while the visible environment includes a tarmac and grassy field under a clear sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/C-130_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/C-130_descriptions.txt new file mode 100644 index 0000000..1544c37 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/C-130_descriptions.txt @@ -0,0 +1,3 @@ +0773222.jpg A grayscale C-130 is partially visible with a high viewpoint showing the front side and tail, situated on a tarmac with a large rectangular area of heavy noise occluding the center, where the left side and nose display military-style markings and a faint Canadian emblem is discernible on the tail. +0771794.jpg The visible portion of the C-130, seen in side view, shows a dark, monochrome, and somewhat grainy texture with its tail slightly elevated, partially obscured by a colorful static-like occlusion on the left, and it's grounded on a clear tarmac with trees in the background. +1522867.jpg The C-130 appears mid-flight in a side profile view with a predominantly light gray color, showcasing its right side, four propeller engines, and military markings, with a large rectangular section on the fuselage heavily occluded by colorful static distortion against a clear sky background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/C-47_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/C-47_descriptions.txt new file mode 100644 index 0000000..efa423c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/C-47_descriptions.txt @@ -0,0 +1,3 @@ +0576251.jpg The aircraft, viewed from a front-right angle, features a white body with a red stripe and logo, partially obscured by a rectangular area of static-like noise on the right side, set against a backdrop of a modern, multi-story building with numerous windows and surrounded by a well-maintained grassy area. +0817369.jpg A low-resolution black and white image shows the side view of a C-47 on the tarmac with the name "SHAWNEE" visible on the fuselage, partially occluded by heavy noise covering the middle section, revealing front and back portions with a smooth metallic texture. +0423362.jpg The aircraft has yellow and blue colors, viewed from below in flight with heavy pixelation covering the right side, obscuring part of the wing and fuselage against a clear blue sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/CRJ-200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/CRJ-200_descriptions.txt new file mode 100644 index 0000000..0ebb2dc --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/CRJ-200_descriptions.txt @@ -0,0 +1,3 @@ +1379571.jpg The visible portion of the CRJ-200, viewed from the side on a runway with grass in the background, features a white body with red square patterns toward the rear half, while the front is heavily occluded by a multicolored static-like texture. +0205781.jpg The front of the CRJ-200 in the image is visible, showing a predominantly white fuselage with a smooth texture viewed from the front left angle, while the right side is heavily occluded with pixelated noise, partially obscuring the right engine and passenger windows. +1116482.jpg A white CRJ-200 with a navy blue tail adorned with orange star designs is captured from a side angle on a runway, with colorful noise occluding the upper fuselage area, while the environment is overcast and grassy with additional aircraft visible in the distance. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/CRJ-700_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/CRJ-700_descriptions.txt new file mode 100644 index 0000000..b4fcdd3 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/CRJ-700_descriptions.txt @@ -0,0 +1,3 @@ +2243380.jpg The CRJ-700, viewed from the side, is largely obscured on the right by static-like noise, but still shows a white fuselage with airline branding near the front, against a snowy ground and forested background. +1232502.jpg The CRJ-700, viewed from the side, features a white fuselage with the "Lufthansa Regional" logo, positioned on a tarmac with a colorful occlusion covering the rear section, in front of a glassy airport terminal. +0888030.jpg The CRJ-700 is shown in a side view with a mostly white fuselage and a distinctive blue vertical stabilizer bearing an emblem; the central part of the aircraft is heavily obscured by pixelated noise against a clear sky backdrop. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/CRJ-900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/CRJ-900_descriptions.txt new file mode 100644 index 0000000..47ef110 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/CRJ-900_descriptions.txt @@ -0,0 +1,3 @@ +2117313.jpg The CRJ-900 is captured in a right-side profile against a clear blue sky with a distinct horizontal gradient of blue to white on its fuselage, while a heavy vertical occlusion of multicolored static covers the middle section, and the tail is marked by a bold blue design featuring a logo. +1253442.jpg The CRJ-900 is mostly visible in a red color with a smooth texture, seen from a side view with the front and tail sections clear, while the central part of the fuselage is obscured by digital noise; the background features a tarmac and grassy area with distant hills. +1554751.jpg The CRJ-900 is seen from a side angle, primarily white with a visible airline logo near the nose, partially occluded by a vertical strip of colorful static, with a distinctive red tail visible against a background of airport runways and grass. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 172_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 172_descriptions.txt new file mode 100644 index 0000000..305a8ee --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 172_descriptions.txt @@ -0,0 +1,3 @@ +1380030.jpg A white Cessna 172 is positioned on the tarmac with a frontal-left view, featuring clear skies and distant hills in the background, partially obscured by a central, colorful static pattern. +2157114.jpg The Cessna 172 appears in a left side view with a predominantly white body and blue accents, flying against a clear sky with the right portion heavily obscured by a vertical block of noise, revealing parts of the wings, wheels, and tail. +1215240.jpg The Cessna 172 is viewed from a front-right angle, displaying a white and yellow exterior with visible wings, while a significant portion of the fuselage is obscured by a multicolored static pattern, and the aircraft is situated on a concrete surface with grass and cones in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 208_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 208_descriptions.txt new file mode 100644 index 0000000..6b2ff3d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 208_descriptions.txt @@ -0,0 +1,3 @@ +1053453.jpg The image shows a rear view of a Cessna 208, partially obscured by digital noise with visible elements including the aircraft's tail featuring blue and green markings, a clean white and blue fuselage, and it is situated on a runway adjacent to a grassy area. +1737504.jpg The Cessna 208, viewed from the right side on a tarmac, appears white and red with a horizontal black stripe, partially occluded by a tall band of colorful static noise covering the midsection, while the tail and nose are clearly visible against a background of an airfield with grassy patches and a control tower. +0302987.jpg The left section of the image shows a subtle hint of an aircraft's tail and part of the wing in a cloudy sky with visible landscape below, while the right area is occluded by colorful noise, and a small portion of the environment remains visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 525_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 525_descriptions.txt new file mode 100644 index 0000000..704164d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 525_descriptions.txt @@ -0,0 +1,3 @@ +1351592.jpg The Cessna 525 is partially visible with a white exterior, observed from a side angle showing the tail and part of the fuselage, with the central part of the aircraft occluded by a large multicolored static-like block, and it is parked on a tarmac with orange cones nearby under a clear blue sky. +1806229.jpg The Cessna 525 is seen from a side angle on a concrete tarmac with its tail and rear fuselage visible in white with blue stripes, while the front half is heavily occluded by digital noise, and the background includes another aircraft and a distant hangar under a clear blue sky. +0093500.jpg The image shows a white Cessna 525 partially obscured by a vertical strip of colorful noise, with visible portions including the tail section marked with identification numbers, sitting on a tarmac with a backdrop of trees. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 560_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 560_descriptions.txt new file mode 100644 index 0000000..1d4ded7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Cessna 560_descriptions.txt @@ -0,0 +1,3 @@ +1689673.jpg The image shows a Cessna 560 with a mostly white and smooth exterior, viewed from a side angle during takeoff against a clear sky, with heavy pixelated occlusion covering the central part of the aircraft, obscuring mid-fuselage details. +0411755.jpg The image shows the nose, cockpit, and part of the fuselage of a white Cessna 560 with a sleek design and a partial view of its tail, obscured by a large rectangular area filled with multicolored noise, set in an urban environment with concrete structures nearby. +1806231.jpg The Cessna 560 is seen in a side profile view with a white fuselage and maroon stripe, partially obscured by a colorful, static-like occlusion covering the rear section, set against an airport tarmac backdrop with grass and distant lampposts in the environment. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Challenger 600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Challenger 600_descriptions.txt new file mode 100644 index 0000000..f96b640 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Challenger 600_descriptions.txt @@ -0,0 +1,3 @@ +1098395.jpg The Challenger 600, viewed from the left side on an airport tarmac, is predominantly white with a maroon stripe and a heavily occluded fuselage center, displaying clear wings and tail against a clear blue sky. +1425171.jpg A metallic gray aircraft with a red stripe is visible from a side angle, obscured by heavy pixellation and noise covering the central fuselage, while the nose and cockpit area alongside landing gear are distinguishable against a cloudy sky. +0781272.jpg The Challenger 600 is viewed from a front-left angle with a white body accented by navy and crimson lines, two engines visible on either side, landing gear extended, and a prominent occlusion of colored static covering the forward section, set against a backdrop of greenery and houses. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-10_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-10_descriptions.txt new file mode 100644 index 0000000..c9693f4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-10_descriptions.txt @@ -0,0 +1,3 @@ +1031474.jpg The DC-10, viewed from the side with green and white colors, is partially occluded in the center by a multicolored vertical noise pattern, while the visible sections show a distinct arrow logo against a backdrop of trees and buildings. +0968446.jpg The DC-10, in a side and slightly upward facing view, appears predominantly white with red, black, and yellow stripes and carrying a "Cargo" label, with the left section heavily obscured by digital noise, against a clear blue sky. +1614860.jpg The DC-10 appears in a side view with a blue and white color scheme, with a distinct logo on the vertical stabilizer, and is heavily occluded by a multicolored static pattern on the midsection of the fuselage, while visible parts of the aircraft are set against a runway and partially cloudy sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-3_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-3_descriptions.txt new file mode 100644 index 0000000..a144ace --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-3_descriptions.txt @@ -0,0 +1,3 @@ +1115392.jpg The visible portion of the DC-3 shows an orange fuselage with a white tail fin viewed from the left side, while the middle section is obscured by a patterned occlusion, and it rests on grassy terrain under a clear sky. +0879883.jpg The DC-3 is partially visible with a silver and red color scheme, parked on an airstrip viewed from the front right side, with a large occlusion covering its front-left section, while the clear blue sky serves as a backdrop. +1391365.jpg The image shows a silver DC-3 aircraft viewed from the front-left side with visible propellers in motion, set amidst a grassy landscape, partially obscured by heavy pixelation covering the central section, revealing smooth, metallic surfaces and part of the cockpit and tail. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-6_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-6_descriptions.txt new file mode 100644 index 0000000..ead7829 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-6_descriptions.txt @@ -0,0 +1,3 @@ +0796296.jpg The aircraft visible in the image features a white body with a green stripe and is viewed from the side with the cockpit and front landing gear unobscured, while the middle section is heavily occluded by colorful digital noise, and the tail appears in the background with visible markings. +0989093.jpg The DC-6 is viewed from a side angle with a monochrome appearance, showing the tail and one visible engine, while the other side is entirely occluded by a colorful static-like distortion, set against a grassy landscape with signs. +0950562.jpg The black and white image of a DC-6 shows the aircraft viewed from the side with a significant vertical strip of static noise obscuring the center, revealing visible parts of the wing and nose on either side, along with its distinctive rear tail with markings, set against a backdrop of an airfield with industrial buildings and utility poles. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-8_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-8_descriptions.txt new file mode 100644 index 0000000..5c0ccb2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-8_descriptions.txt @@ -0,0 +1,3 @@ +0792200.jpg The image shows a low-resolution, partially visible white aircraft, likely a DC-8, viewed from the side with the front landing gear visible, adorned with a distinct dark blue, red, and white emblem over its midsection, while the right half is obscured by a dense, multicolored noise pattern. +0967847.jpg A partial side view of a mostly white airplane with visible black accents and a prominent tail fin is in a paved area near industrial buildings, with heavy pixelated occlusion over the right half of the aircraft. +1014104.jpg The DC-8, viewed from the side in a grayscale image, has visible white and gray hues with a tow vehicle positioned in front, while a central, vertical occlusion of static noise obscures the middle portion of the fuselage, revealing only the cockpit and tail sections against a flat tarmac background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-9-30_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-9-30_descriptions.txt new file mode 100644 index 0000000..2146669 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DC-9-30_descriptions.txt @@ -0,0 +1,3 @@ +0657801.jpg The DC-9-30 is parked on a tarmac under a clear sky, featuring a white upper fuselage with red and dark blue stripes, with its tail section occluded by a multicolored static-like pattern, obscuring the engine and vertical stabilizer. +1540064.jpg The DC-9-30, partially blocked by colorful noise, shows a view from the side with a visible red tail fin featuring a logo, while the environment includes a runway and background greenery. +0996336.jpg The DC-9-30, viewed from the side at an airport, has a visible black and white livery with the tail and rear mostly unobstructed, while the front and midsection are concealed by a vertical block of static noise, and the scene includes overcast weather with additional aircraft and airport structures in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DH-82_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DH-82_descriptions.txt new file mode 100644 index 0000000..082622b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DH-82_descriptions.txt @@ -0,0 +1,3 @@ +1411124.jpg The image shows a side view of a biplane with visible wings and a tail featuring a light, possibly gray or white color, partially obscured by a central square filled with colorful noise, set against a grassy field backdrop. +0787578.jpg The aircraft, appearing from a side viewpoint, showcases a vibrant yellow exterior with a smooth texture, partially occluded by a vertical strip of pixelated static over the center, while the distinct double wings and tail section remain unobscured and are silhouetted against the clear blue sky. +0788162.jpg The DH-82 biplane is viewed from the side in a grassy area, featuring a dark blue fuselage with white lettering and a distinctive checkered tail, partially occluded at the upper section near the cockpit area. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-1_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-1_descriptions.txt new file mode 100644 index 0000000..d6edb9f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-1_descriptions.txt @@ -0,0 +1,3 @@ +1951531.jpg A DHC-1 aircraft with a glossy black finish, visible from a side angle, is situated in a hangar with significant colorful static obscuring the midsection, revealing contrasting landing gear and a striped propeller at the nose. +1908623.jpg The DHC-1 displays a silver fuselage with a blue stripe along the side, partly visible from a left-side view, with heavy occlusion obscuring the area from the wing to the cockpit, while the tail features a vertical blue stripe against a backdrop of an airfield with hangars. +1378088.jpg The DHC-1 is viewed from the side with its nose slightly forward, showing a predominantly white and red body with its left wing visible, partially occluded by a vertical strip of dense static noise, set against a blurred background of grassy terrain and a green hangar. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-6_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-6_descriptions.txt new file mode 100644 index 0000000..3e71810 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-6_descriptions.txt @@ -0,0 +1,3 @@ +2096269.jpg The DHC-6 is primarily white with blue and red accents visible on the nose and tail, viewed from the side with the nose facing right, partially occluded by a dense rectangular area obscuring the central section, with a road and cars underneath and partially cloudy skies in the background. +1992674.jpg The image shows the tail and upper section of a seaplane with a red and white coloration, viewed from the side at a dock setting, while the front section is heavily occluded by a pixelated area amidst a backdrop of clear skies and calm turquoise water. +0454829.jpg The image shows a side view of a DHC-6 with a visible red tail and white fuselage, situated on a grassy field with surrounding trees, partially occluded by a large, multicolored, pixelated square covering the central section. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-8-100_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-8-100_descriptions.txt new file mode 100644 index 0000000..00deb9c --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-8-100_descriptions.txt @@ -0,0 +1,3 @@ +1043794.jpg The DHC-8-100 is viewed from the side in mid-flight, showing a white fuselage with an orange tail featuring a distinctive floral design, partially obscured by heavy digital static on the right. +0907363.jpg The DHC-8-100 is viewed from the side with its front section visible in bright red featuring a bold logo, while the middle section is obscured by colorful static noise, and the rear section, also in red, is partially visible against a cloudy sky and airport tarmac environment. +1097300.jpg The DHC-8-100 is viewed from a slightly angled perspective, featuring a predominantly white fuselage with red engines and a vivid red vertical stabilizer adorned with a logo, partially obscured by a pixelated, vertically oriented occlusion in the center, set against a background of runway and greenery on a clear day. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-8-300_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-8-300_descriptions.txt new file mode 100644 index 0000000..770c1c7 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DHC-8-300_descriptions.txt @@ -0,0 +1,3 @@ +0177656.jpg The visible portion of the DHC-8-300 shows the tail section with white and red coloring, featuring distinctive company branding, seen from a side angle on an airfield, while the rest is obscured by a vertical strip of noise. +2243615.jpg The visible section of the aircraft, viewed from the side on a snowy runway, shows a white fuselage with black details on the nose and a distinct red tail marked by a large white "e," partially obscured by a colorful static occlusion. +1656419.jpg The DHC-8-300 features a visible tail with a distinctive green color and "Baltic" branding, positioned on a sunny tarmac with significant occlusion in the central portion of the image, affecting the fuselage visibility. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/DR-400_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DR-400_descriptions.txt new file mode 100644 index 0000000..5c529e9 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/DR-400_descriptions.txt @@ -0,0 +1,3 @@ +1775161.jpg The DR-400, viewed from the side, features a white body with blue stripes and black accents, partially occluded by a noise pattern on the right, with its nose and cockpit visible against a grassy background. +1865767.jpg The DR-400 displays a white and orange color scheme with visible stripes along the fuselage, is viewed from a ground-level angle at three-quarters to the front, while a substantial central pixelated occlusion covers the middle section of the aircraft, and the background includes people, grass, and a few tents under clear skies. +1384551.jpg The partially visible DR-400 aircraft displays a red and white color scheme, with the upper half of its fuselage visible, while heavy pixelated occlusion obscures the lower portion; it is positioned in a hangar, viewed from the front-right corner, showing the nose and cockpit area clearly. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Dornier 328_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Dornier 328_descriptions.txt new file mode 100644 index 0000000..7649800 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Dornier 328_descriptions.txt @@ -0,0 +1,3 @@ +0167091.jpg The Dornier 328 is captured in a side view with visible white and red livery on the tail, with significant static interference centrally obscuring the fuselage, leaving the nose and tail distinguishable against a backdrop of greenery and airport infrastructure. +2170856.jpg The image shows a white and lime green Dornier 328 from a side view with a large portion obscured by multicolored static, revealing details of its undercarriage and engine on a clear blue sky backdrop. +1443841.jpg The aircraft is viewed from the side at a low angle, featuring a red and white fuselage with visible writing, set against a clear blue sky, while the right side is heavily occluded by a vertical, multicolored noise pattern, leaving the left wing, engine, and half of the tail with a distinct emblem visible. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/E-170_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/E-170_descriptions.txt new file mode 100644 index 0000000..915d05f --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/E-170_descriptions.txt @@ -0,0 +1,3 @@ +1909787.jpg The image shows the tail and nose of a white aircraft with a distinctive red, blue, and white pattern on the tail fin and an occluded center section, viewed from a side angle against a clear blue sky. +1286492.jpg The E-170 is viewed from the side with visible blue and white colors, a prominent logo on the tail, and the fuselage partially occluded by colorful static, set against a clear blue sky. +1889561.jpg The E-170 appears in a side view with a smooth white fuselage and a distinct blue tail fin marked by a stylized "F," partially occluded by a dense strip of multicolored static, set against a clear blue sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/E-190_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/E-190_descriptions.txt new file mode 100644 index 0000000..567f389 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/E-190_descriptions.txt @@ -0,0 +1,3 @@ +1539297.jpg The E-190 is visible from a side view with a predominantly white fuselage, adorned with blue and gray branding towards the rear and center, with heavy pixelated occlusion covering part of the midsection, set against an airport runway environment with grassy foreground and terminal buildings in the distant background. +2245655.jpg The visible part of the E-190 shows a white fuselage with a blue tail featuring a checkered pattern, seen in a profile view with significant occlusion by digital noise covering the right side, including most of the wings and engine, against a clear blue sky. +2100821.jpg The image shows an E-190 aircraft with a blue and white color scheme viewed from the side, partially occluded by a colorful, pixelated pattern on the left, while the right side reveals the plane in flight above a fence with a clear sky and scattered clouds in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/E-195_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/E-195_descriptions.txt new file mode 100644 index 0000000..ef2db17 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/E-195_descriptions.txt @@ -0,0 +1,3 @@ +2143568.jpg The aircraft is primarily white with blue accents, viewed from a frontal-left angle during takeoff or landing, with the right side heavily occluded by static-like noise, while the landing gear is deployed and part of the logo and cockpit are visible against a clear blue sky. +1795700.jpg The E-195 appears in a side profile view with a white fuselage and a blue tail fin featuring a logo, partially obscured by a pixelated vertical band, set against a background of greenery and a red-roofed building. +1818393.jpg The E-195 aircraft, viewed from the side, with a white fuselage, a blue tail featuring a white symbol, and its environment appears clear under a blue sky, while the central portion is heavily occluded with a static-like pattern. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/EMB-120_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/EMB-120_descriptions.txt new file mode 100644 index 0000000..c9f4688 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/EMB-120_descriptions.txt @@ -0,0 +1,3 @@ +0999159.jpg The EMB-120 aircraft is viewed from the side in a landing pose, predominantly white with a sleek appearance featuring blue and red stripes, partially obscured by digital noise on the right, in a bright exterior airport setting with clear skies. +0143079.jpg The visible portion of the EMB-120 features a dark blue and silver fuselage, with red and white accents, viewed from a mid-side angle on a runway, with the right half obscured by colorful static noise, set against a background of mountains and trees. +2179973.jpg The EMB-120 is viewed from the side with a large rectangular occlusion covering the middle, exposing the white nose and vertical stabilizer with blue and red accents, against an industrial airfield backdrop with a yellow DHL hangar in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/ERJ 135_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/ERJ 135_descriptions.txt new file mode 100644 index 0000000..8d3b22b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/ERJ 135_descriptions.txt @@ -0,0 +1,3 @@ +1670135.jpg The ERJ 135, viewed from the side in flight against a gray sky, is predominantly white with visible dark blue text and tail, partially occluded by a vertical band of colorful static distortion. +1217294.jpg The ERJ 135 is viewed from the side with its front half showing a smooth white texture and colorful decals, while the rear section is heavily occluded by multicolored static-like noise, against a clear sky. +0458645.jpg The visible portion of the ERJ 135 displays a smooth white texture with a partial view from the side, obscured by colorful static occlusion in the central section, with the tail featuring multicolored markings against an airport runway and parked vehicle background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/ERJ 145_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/ERJ 145_descriptions.txt new file mode 100644 index 0000000..148570d --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/ERJ 145_descriptions.txt @@ -0,0 +1,3 @@ +1742637.jpg The ERJ 145 is viewed from the side with a dark blue and gray color scheme, a smooth texture, and a large occlusion covering the central fuselage, but the tail fin and engines remain visible amid an airport tarmac with buildings in the background. +1304093.jpg The low-resolution ERJ 145, primarily white with a dark blue stripe, is viewed from the front on a runway with the engine area obscured by colorful pixelation, while trees form part of the background. +0116718.jpg The ERJ 145, predominantly white with a red stripe and logo, is seen from a side view on an airport tarmac, with a large occlusion covering the upper part of the fuselage and a yellow airport vehicle parked nearby. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Embraer Legacy 600_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Embraer Legacy 600_descriptions.txt new file mode 100644 index 0000000..9bea884 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Embraer Legacy 600_descriptions.txt @@ -0,0 +1,3 @@ +1753489.jpg The Embraer Legacy 600 is shown in a side view with a white body, gold stripe, and visible registration on the tail, while the rear section is heavily occluded by a pixelated square against a clear blue sky. +2180061.jpg The Embraer Legacy 600 appears in a side view with a predominantly white fuselage and a stripe pattern visible near the tail, partially occluded by a square of multicolored static in the central portion, with clear blue sky as the backdrop and landing gear extended. +1629116.jpg The Embraer Legacy 600 appears in flight from a slightly elevated side view, partially occluded on the left with a pixelated pattern, showing a smooth, light-colored fuselage and a tail fin with a distinctive dark marking. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Eurofighter Typhoon_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Eurofighter Typhoon_descriptions.txt new file mode 100644 index 0000000..d01f7a5 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Eurofighter Typhoon_descriptions.txt @@ -0,0 +1,3 @@ +1716747.jpg The Eurofighter Typhoon is viewed from the side with a light gray color and smooth texture, partially occluded by multicolor static covering its front half, while the rear end and tail are visible on a runway with a grassy field and trees in the background. +2185361.jpg The Eurofighter Typhoon's nose cone and landing gear are visible, displaying a light gray color against a blue sky with significant occlusion covering the midsection and tail of the aircraft. +1303850.jpg The Eurofighter Typhoon appears in a gray color with a smooth texture and is viewed from the left side, with the front half occluded by a colorful, pixelated distortion; its visible features include a single engine intake and part of the tail fin against a backdrop of blurred greenery. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/F-16A_B_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/F-16A_B_descriptions.txt new file mode 100644 index 0000000..45360e0 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/F-16A_B_descriptions.txt @@ -0,0 +1,3 @@ +1250932.jpg Seen from a low-angle profile, the gray F-16's wings are partially obscured by a cloud layer, leaving its sharp nose, bubble canopy, and single vertical tail defined against the pale, overcast backdrop. +1588720.jpg Viewed from a slightly lower front-left angle, the pale gray F-16's single vertical tail is obscured by the fuselage, showing only its bubble canopy, swept wings, and extended landing gear against a blank cloudy background. +0934121.jpg Seen from a rear-quarter perspective, the F-16’s bubble canopy is obscured by the fuselage and tail, with its single vertical fin and engine exhaust outlined against a featureless pale sky. \ No newline at end of file diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/F_A-18_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/F_A-18_descriptions.txt new file mode 100644 index 0000000..80ece98 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/F_A-18_descriptions.txt @@ -0,0 +1,3 @@ +0681458.jpg In a mid-air profile, the gray FA-18 is captured with its wings partially obscured by a passing cloud, while its twin vertical stabilizers and lowered landing gear remain visible against the blue sky. +0440195.jpg Viewed from a low frontal angle, the gray jet's twin vertical stabilizers are obscured by its main fuselage, highlighting the swept wings and extended landing gear against the empty blue sky. +1254668.jpg Seen from a rear-quarter perspective, the FA-18's cockpit is obscured by the aircraft's fuselage and twin tails, with the twin-engine exhausts and wing pylons visible against the clear sky. \ No newline at end of file diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Falcon 2000_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Falcon 2000_descriptions.txt new file mode 100644 index 0000000..9d093b4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Falcon 2000_descriptions.txt @@ -0,0 +1,3 @@ +1158825.jpg The Falcon 2000, viewed from the side against a clear blue sky, appears in a white and dark blue color scheme with a distinctive horizontal stripe, while its tail and much of its fuselage are heavily occluded by a pixelated noise pattern. +1795170.jpg The Falcon 2000 appears in flight with a clean white fuselage and red and black stripes, partially occluded by static noise covering the middle section, viewed from a side angle against a clear blue sky. +1778960.jpg The Falcon 2000 in the image appears predominantly white with a sleek, smooth texture, viewed from a side angle, partially occluded in the midsection by dense, colorful noise, while the visible background includes a green grassy area and a red-and-white checkered structure. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Falcon 900_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Falcon 900_descriptions.txt new file mode 100644 index 0000000..ff6656b --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Falcon 900_descriptions.txt @@ -0,0 +1,3 @@ +1726555.jpg The Falcon 900 appears in a side view during landing, predominantly white with beige and brown accents, partially obscured by a colorful static square covering the midsection, set against a clear sky and grassy foreground. +2045348.jpg The Falcon 900, viewed from a side angle in flight with a cloudy sky background, features a white body and dark-tipped wings, partially obscured by a colorful, vertical digital block covering the central section. +0753073.jpg The image depicts the rear section of a Falcon 900 jet with visible white surfaces and red accents, showing the tail and engines from a side angle, while the left side of the image is heavily occluded by colorful noise. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Fokker 100_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Fokker 100_descriptions.txt new file mode 100644 index 0000000..dfc80fc --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Fokker 100_descriptions.txt @@ -0,0 +1,3 @@ +1383360.jpg The Fokker 100, viewed from the side and angled upwards in flight against a clear blue sky, features a red tail with a white emblem, while a vertical band of static-like noise occludes the central section of the fuselage. +0900486.jpg The Fokker 100 appears in flight from a side view with a predominantly white fuselage featuring red text, set against a cloudy sky, and the right section of the aircraft is obscured by a digital noise pattern. +1768889.jpg The Fokker 100 is partially visible from the side, showing a white fuselage with red and blue markings, a tail fin with red on white, and the wing and engines obscured by a dense vertical noise occlusion against a clear blue sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Fokker 50_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Fokker 50_descriptions.txt new file mode 100644 index 0000000..6b0ebbe --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Fokker 50_descriptions.txt @@ -0,0 +1,3 @@ +0123332.jpg The Fokker 50 appears with a visible blue and white color scheme, viewed from a side angle on the tarmac with a large rectangular occlusion covering its front section, while the visible part displays a logo and lettering along the fuselage. +1426513.jpg The Fokker 50 has an orange fuselage with visible text and a blue vertical stabilizer blending to white and gold, viewed from the right side mid-flight, with significant occlusion covering the front half of the aircraft against a partly cloudy sky. +1132238.jpg The Fokker 50, viewed in profile from the side against a runway background, is predominantly white and gray with visible landing gear and a visible cockpit, partially occluded by a large, colorful rectangular distortion on the rear fuselage and tail section. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Fokker 70_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Fokker 70_descriptions.txt new file mode 100644 index 0000000..6bd9ba2 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Fokker 70_descriptions.txt @@ -0,0 +1,3 @@ +1591336.jpg The Fokker 70 in the image is viewed from a low front angle, featuring a white fuselage with a red tail and blue underside, while the right half is obscured by heavy digital noise, and it appears to be in flight against a clear blue sky. +2209492.jpg The Fokker 70 appears in a low-angle view from below with a blue and white color scheme, while the central fuselage is occluded by a digital noise pattern; the wings and tail are visibly extended, contrasting against a clear blue sky. +0167063.jpg The image shows a side view of a Fokker 70 with a bright orange tail and horizontal stabilizer against a clear sky, however, the front half is heavily occluded with visual noise, while the surrounding environment consists of green grass and distant buildings. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Global Express_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Global Express_descriptions.txt new file mode 100644 index 0000000..cb044ce --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Global Express_descriptions.txt @@ -0,0 +1,3 @@ +1311582.jpg The Global Express is viewed from the side with a maroon fuselage featuring a distinct logo near the tail, partially occluded by a square showing digital noise, set against a snow-covered mountainous backdrop and a light blue sky. +2127999.jpg The Global Express, viewed from the side, is partly occluded by a vertical column of digital noise on the left, with visible sections featuring a glossy cream and white color scheme set against a grassy airfield backdrop. +1191244.jpg The Global Express is viewed in profile, airborne against a mountainous background, with a white fuselage and dark blue accents on its tail, partially occluded by a central vertical strip of multicolored static noise. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Gulfstream IV_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Gulfstream IV_descriptions.txt new file mode 100644 index 0000000..8f87ae6 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Gulfstream IV_descriptions.txt @@ -0,0 +1,3 @@ +1158579.jpg The Gulfstream IV is viewed from the side, with a mostly white body featuring a glossy texture, partially obscured by digital noise along the central section, while the tail and engines remain visible with a backdrop of industrial buildings and greenery. +2069535.jpg The Gulfstream IV, viewed from the side against a clear blue sky, appears white with a notable black and red stripe on the tail, while its central section is heavily occluded by static-like noise. +1430027.jpg The Gulfstream IV, captured from a side view on a runway with clear skies, features a predominantly white exterior with a visible registration on the tail, and is heavily occluded in the center by colorful static obscuring the midsection, leaving the nose and tail sections visible with details like the typical elongated fuselage and distinctive engine placement. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Gulfstream V_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Gulfstream V_descriptions.txt new file mode 100644 index 0000000..93bd6b4 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Gulfstream V_descriptions.txt @@ -0,0 +1,3 @@ +1796985.jpg The Gulfstream V, viewed from the side, displays a white exterior with a sleek, smooth texture, partially visible with a prominent fuselage and tail, surrounded by a grassy airfield, with heavy pixelated occlusion covering the central section. +1784297.jpg The Gulfstream V is viewed from the side on a runway, with the front fuselage in white and featuring multiple small windows; the unpainted vertical stabilizer and tail are partially visible, while a significant section in the center is obscured by a colorful static pattern, and the surrounding environment shows a grassy area and pavement. +0781152.jpg The Gulfstream V, visible from a side viewpoint on a runway, is predominantly white with sleek lines and twin engines, featuring an elevated horizontal stabilizer and a notable section of the fuselage heavily occluded with a colorful pixelated pattern at the top. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Hawk T1_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Hawk T1_descriptions.txt new file mode 100644 index 0000000..c709823 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Hawk T1_descriptions.txt @@ -0,0 +1,3 @@ +0934120.jpg The Hawk T1 is visible from a side viewpoint with a vivid red exterior and a white stripe, while the cockpit and nose are clear, but the majority of the plane is heavily occluded by a dense, multicolored noise pattern. +1472586.jpg The Hawk T1 appears in a hangar with a glossy black color, featuring visible landing gear, tail markings, and cockpit roof, while the fuselage is heavily occluded by a vertical mosaic pattern. +2165386.jpg The Hawk T1 visible in the image features a bright red and blue tail with distinct white stripes, positioned tail-side in front of a green hangar, while the central region of the aircraft is heavily obscured by colorful visual noise, leaving the tail's color scheme as the primary distinguishing feature. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Il-76_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Il-76_descriptions.txt new file mode 100644 index 0000000..6d9c506 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Il-76_descriptions.txt @@ -0,0 +1,3 @@ +0757186.jpg The Il-76 is viewed from a side angle with a blue and white color scheme and red stripes, partially obscured by a heavy pixelated square covering the central fuselage, leaving only the cockpit, nose section, wingtip, and tail partly visible against a clear blue sky. +0813549.jpg The left side of the image shows a gray and white aircraft, viewed from the left side, with a visible wing and engines; the right side is heavily occluded with colorful noise, obscuring the tail and part of the fuselage, while the ground appears as a paved surface with some visible markings. +0195017.jpg The Il-76, viewed from the side, has a white and blue color scheme with the number "76" prominently displayed, partially occluded by a colorful static-like pattern on the right, set against an overcast sky and an airport hangar backdrop. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/L-1011_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/L-1011_descriptions.txt new file mode 100644 index 0000000..9f21fdb --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/L-1011_descriptions.txt @@ -0,0 +1,3 @@ +0143357.jpg The L-1011 is visible from the side with most of the fuselage occluded by a dense noise pattern, revealing the tail section with a dark green color and white emblem, while the foreground shows an airport tarmac with various ground structures. +2221732.jpg The side view of the white L-1011 is partially visible with blue engine nacelles and tail, showing a red "THE FLYING HOSPITAL" text on the fuselage, with a tall vertical strip of pixelated occlusion obscuring the midsection while it rests on a tarmac. +1178071.jpg The black-and-white image depicts a left-side view of an L-1011 aircraft with "British Airways" visible in text along the side, featuring a smooth, monochrome surface and partially obscured by a vertical, speckled occlusion covering most of the fuselage. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-11_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-11_descriptions.txt new file mode 100644 index 0000000..439e0d9 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-11_descriptions.txt @@ -0,0 +1,3 @@ +1762107.jpg The MD-11 in the image, viewed from the right side, features a red tail with a white emblem and horizontal stabilizers, and white fuselage with red stripes and black text, partially occluded by a central vertical strip of static-like noise, set against a mountainous airport backdrop. +1145212.jpg The MD-11 aircraft is seen in a side view with a gray and white color scheme and red accents, primarily visible from the engines to the tail, with major occlusion—a block of noisy, multicolored pixels—obscuring the central fuselage against a clear blue sky. +2054232.jpg The MD-11 is viewed from the side with a blue sky background, displaying a white and orange color scheme, partially covered by a large rectangular area of noise over the central fuselage, leaving the nose, tail, and wings visible with the moon faintly in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-80_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-80_descriptions.txt new file mode 100644 index 0000000..9f9c14e --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-80_descriptions.txt @@ -0,0 +1,3 @@ +0250136.jpg The left side of the MD-80, viewed from a slight above-front angle, shows a white and blue color scheme with branding visible on the fuselage, while the right side is heavily occluded by a central vertical strip of multicolored static, leaving the tail and a portion of the wing exposed, all set against a concrete tarmac. +0939544.jpg The MD-80 is viewed from the side against a clear blue sky, with most of its central fuselage obscured by digital noise, while the visible portions reveal a white aircraft with a distinct blue logo on the tail and parts of the wing and engines exposed. +1605065.jpg The MD-80 in the side-on view has a white fuselage with red, black, and white tail markings, partially obscured by a colorful digital noise occlusion near the center, against a background featuring an overcast urban and grassy landscape. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-87_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-87_descriptions.txt new file mode 100644 index 0000000..bf20aad --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-87_descriptions.txt @@ -0,0 +1,3 @@ +0418691.jpg The MD-87 in the image is viewed from a side angle with a predominantly white body texture that appears clean and smooth, flying against a cloudy sky with significant visual occlusion on the right, covering parts of the fuselage and right wing with a digital noise pattern. +1517885.jpg The MD-87 is viewed from the left side at a slight upward angle, featuring a white fuselage with a red and yellow stripe along the top, while obscured on the right by heavy digital noise resembling static. +1004662.jpg The image shows a blue-tailed, white-bodied MD-87 with a visible jet engine on the left, viewed from the side, with a vertical strip of pixelated occlusion covering the center, and the aircraft is on the runway next to a large building. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-90_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-90_descriptions.txt new file mode 100644 index 0000000..2881ddc --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/MD-90_descriptions.txt @@ -0,0 +1,3 @@ +0918628.jpg The MD-90, viewed from the side, has a predominantly white body with a visible, dark blue tail featuring a red tip, while the right side is heavily occluded by a dense, multicolored static pattern against a clear, mountainous background. +1736105.jpg The MD-90, in a side profile view, features a white fuselage with a prominent blue and yellow design, has its rear obscured by a colorful pixelated block, with the aircraft ascending on a runway surrounded by an airport with parked vehicles in the background. +1606543.jpg The MD-90 is seen in a side profile on a runway with its tail in a distinctive red and white color scheme, while the front and center parts of the fuselage are heavily occluded by digital noise, with green grass and trees in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Metroliner_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Metroliner_descriptions.txt new file mode 100644 index 0000000..241204a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Metroliner_descriptions.txt @@ -0,0 +1,3 @@ +1146071.jpg The Metroliner is primarily white with a sleek, smooth texture, viewed from the side with its body partially obscured by a colorful, mosaic-like occlusion on the right, set against a clear sky and parked on a concrete ground. +1759064.jpg The image shows the right side of a Metroliner aircraft with a white and blue color scheme, viewed in profile and partially occluded by heavy pixelated noise on the left side, with landing gear deployed against a clear sky. +1569462.jpg The Metroliner aircraft, viewed from the side on a runway, features a white and gray fuselage with visible lettering and a tail logo, partially occluded by a column of colorful static obscuring the central section, while the background shows a grassy field and distant industrial structures. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Model B200_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Model B200_descriptions.txt new file mode 100644 index 0000000..963c591 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Model B200_descriptions.txt @@ -0,0 +1,3 @@ +1054551.jpg The visible portion of the Model B200 aircraft is seen from the right side, showcasing its white fuselage with red and gold stripes and an open passenger door, while the left side is heavily occluded by multicolored static-like noise, set against a background of a tarmac and overcast sky. +1622774.jpg The image shows a Beechcraft King Air B200 with visible red and white livery and a medical symbol on the tail fin, partially obscured by vertical noise on the left, parked on a tarmac with mountains in the background. +1446337.jpg The white and blue aircraft, viewed from the side on a grassy field, has a colorful static occlusion covering part of its upper fuselage, with visible features like the tail and winglets standing out. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/PA-28_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/PA-28_descriptions.txt new file mode 100644 index 0000000..815d5ef --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/PA-28_descriptions.txt @@ -0,0 +1,3 @@ +1159084.jpg A white and blue PA-28 aircraft is positioned laterally on the tarmac in front of a hangar, with a large occlusion of colorful static obscuring the central section, leaving the nose, tail, and parts of the wings visible, in low resolution. +0745799.jpg The PA-28, viewed from the front left side, features a light color with a smooth texture, partially blocked by heavy vertical pixelated occlusion on the fuselage, while the surrounding environment shows grass and adjacent aircraft. +0102242.jpg The low-resolution, heavily occluded image shows a white aircraft with a blue tail and an orange emblem, viewed from the side on a tarmac with a large vertical patch of noise covering the central section of the fuselage, leaving the nose, tail, and wings partly visible under a clear sky. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/SR-20_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/SR-20_descriptions.txt new file mode 100644 index 0000000..49db504 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/SR-20_descriptions.txt @@ -0,0 +1,3 @@ +0966761.jpg The SR-20 appears in an upward angle showing its light grey fuselage with visible red stripes on the wings and tail, obscured by vertical pixelated noise on the right side, set against a clear blue sky. +1646015.jpg The SR-20, positioned in a side view, exhibits a white and sleek fuselage with dark stripe accents visible towards the nose and rear, while the central portion is obscured by a colorful, static-like occlusion. +2148310.jpg The visible portion of the SR-20 shows a predominantly white body with a sleek, aerodynamic shape seen in a side profile, partially obscured by a dense, colorful static pattern occupying the middle, and surrounded by an airport environment with hangars and another aircraft. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Saab 2000_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Saab 2000_descriptions.txt new file mode 100644 index 0000000..a0a12cf --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Saab 2000_descriptions.txt @@ -0,0 +1,3 @@ +0874688.jpg The visible portion of the Saab 2000 shows a white fuselage with a smooth texture, featuring the "crossair" logo and cruising in a leftward pose, with the right side heavily occluded by a multicolored static-like block; the left propeller is spinning, and the landing gear is extended. +0939486.jpg The Saab 2000 is seen in a clear side profile with a white fuselage displaying green and red accents on the midsection, and it flies against a blue sky while most of its rear section is obscured by a colorful, noise-like occlusion. +0648476.jpg The Saab 2000, seen from the right side in a profile view, features a light gray fuselage with a red tail adorned with a white cross, partially occluded by a large, rectangular, multicolored static pattern that obscures the region beneath the wing, set against a background of grassy terrain and airport structures. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Saab 340_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Saab 340_descriptions.txt new file mode 100644 index 0000000..fc0e019 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Saab 340_descriptions.txt @@ -0,0 +1,3 @@ +1989990.jpg The Saab 340 is viewed from the side, with white and red coloring; the front and tail sections are visible, while the middle is heavily obscured by digital noise against a clear blue sky. +1256726.jpg The partially obscured Saab 340 is viewed from the side with its white nose and cockpit visible, while a large area of digital noise covers the central fuselage, set against a backdrop of grassy terrain and distant airport structures. +0145542.jpg The Saab 340 is viewed from the side on a runway, with a predominantly white body featuring a stripe design near the tail, a prominent occlusion of multicolored noise covering the midsection, and a visible vertical stabilizer with a distinct pattern at the rear. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Spitfire_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Spitfire_descriptions.txt new file mode 100644 index 0000000..68c626a --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Spitfire_descriptions.txt @@ -0,0 +1,3 @@ +1729159.jpg The Spitfire is viewed from the side, primarily displaying brown and green camouflage with a blue circular insignia on the visible tail, and a heavy occlusion of colorful static obscures part of the fuselage and wing, while it rests on a concrete surface under a cloudy sky. +0882696.jpg The Spitfire in the image has a light gray upper surface with a matte texture, viewed from a side angle in flight with the left section unobscured showing landing gear down, while the right half is entirely obscured by multicolored pixel noise. +2118977.jpg The Spitfire is viewed from the side, displaying a dark green and gray color scheme with a visible roundel and tail fin stripes, while its right half is obscured with colorful digital noise and the surrounding environment consists of a hangar with another aircraft partially visible in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Tornado_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Tornado_descriptions.txt new file mode 100644 index 0000000..5c88582 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Tornado_descriptions.txt @@ -0,0 +1,3 @@ +1259067.jpg A military aircraft is stationary on a tarmac with its nose and cockpit occluded by a pixelated block, displaying a muted gray color with a long fuselage, visible wing and tail fins, set against a grassy field and cloudy sky. +2094375.jpg The image shows a grey aircraft with visible wings and tail, partially occluded by heavy noise in the central area, set on a tarmac with grass and trees in the background. +1272849.jpg The aircraft, viewed from the front, has a dark-colored fuselage with a glossy texture, angular wings, and distinctive intakes partially visible, while the right side of the image is heavily occluded by a colorful, pixelated pattern. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Tu-134_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Tu-134_descriptions.txt new file mode 100644 index 0000000..5f06bdc --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Tu-134_descriptions.txt @@ -0,0 +1,3 @@ +0523187.jpg The Tu-134 is viewed from the side with a blue and white fuselage featuring a red and green stripe, partially obscured by a tall, rectangular static-like occlusion over the center section near the wings, with a clear blue sky and airport tarmac in the background. +0523272.jpg The image shows the tail section of a Tu-134, featuring a white fuselage with blue trim visible on the right side, partially obscured by colorful noise on the left, with several other aircraft visible on the tarmac in the background. +0127652.jpg The aircraft appears predominantly white with blue markings and is viewed from a side angle, exhibiting a red tailfin, while a substantial digital occlusion with multicolored noise obscures most of the central fuselage, leaving the runway and grass field clearly visible in the background. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Tu-154_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Tu-154_descriptions.txt new file mode 100644 index 0000000..2ca9763 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Tu-154_descriptions.txt @@ -0,0 +1,3 @@ +0062771.jpg The Tu-154 is viewed from the side on a wet tarmac, with its rear tail and engines visible; the aircraft is primarily white with a blue stripe and markings, while a large rectangular area covering the fuselage and center is obscured by colorful static noise, set against an overcast sky with visible airport structures and equipment. +1320913.jpg The image shows a Tu-154 with a visible white and blue tail section emerging from the left and right, surrounded by rising smoke or clouds, with a significant occlusion across the central part, obscuring most distinguishing features. +1544222.jpg The Tu-154 appears with a visible nose section and part of the tail against a cloudy sky, predominantly colored white with red and blue accents, while the central section is heavily occluded by a colorful static pattern. diff --git a/utils/area/descriptions/Aircraft/generated_descriptions_occ/Yak-42_descriptions.txt b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Yak-42_descriptions.txt new file mode 100644 index 0000000..fcd73d8 --- /dev/null +++ b/utils/area/descriptions/Aircraft/generated_descriptions_occ/Yak-42_descriptions.txt @@ -0,0 +1,3 @@ +1203670.jpg The Yak-42 in the image is white with blue and yellow stripes near the windows, viewed from the right side on an airport tarmac, with a colorful noise occlusion covering most of the central fuselage. +1026133.jpg The Yak-42, viewed from the side in flight against a clear blue sky, has a red, blue, and white color scheme with the tail and rear fuselage visible, while the central area is obscured by a vertical strip of noise. +1227260.jpg The Yak-42 is viewed from the side with its nose and tail visible in white and blue against a runway backdrop, while a large portion of the fuselage is heavily occluded by a colorful static pattern. diff --git a/utils/area/descriptions/CUB/class_names.txt b/utils/area/descriptions/CUB/class_names.txt new file mode 100644 index 0000000..98301a2 --- /dev/null +++ b/utils/area/descriptions/CUB/class_names.txt @@ -0,0 +1 @@ +['001.Black_footed_Albatross','002.Laysan_Albatross','003.Sooty_Albatross','004.Groove_billed_Ani','005.Crested_Auklet','006.Least_Auklet','007.Parakeet_Auklet','008.Rhinoceros_Auklet','009.Brewer_Blackbird','010.Red_winged_Blackbird','011.Rusty_Blackbird','012.Yellow_headed_Blackbird','013.Bobolink','014.Indigo_Bunting','015.Lazuli_Bunting','016.Painted_Bunting','017.Cardinal','018.Spotted_Catbird','019.Gray_Catbird','020.Yellow_breasted_Chat','021.Eastern_Towhee','022.Chuck_will_Widow','023.Brandt_Cormorant','024.Red_faced_Cormorant','025.Pelagic_Cormorant','026.Bronzed_Cowbird','027.Shiny_Cowbird','028.Brown_Creeper','029.American_Crow','030.Fish_Crow','031.Black_billed_Cuckoo','032.Mangrove_Cuckoo','033.Yellow_billed_Cuckoo','034.Gray_crowned_Rosy_Finch','035.Purple_Finch','036.Northern_Flicker','037.Acadian_Flycatcher','038.Great_Crested_Flycatcher','039.Least_Flycatcher','040.Olive_sided_Flycatcher','041.Scissor_tailed_Flycatcher','042.Vermilion_Flycatcher','043.Yellow_bellied_Flycatcher','044.Frigatebird','045.Northern_Fulmar','046.Gadwall','047.American_Goldfinch','048.European_Goldfinch','049.Boat_tailed_Grackle','050.Eared_Grebe','051.Horned_Grebe','052.Pied_billed_Grebe','053.Western_Grebe','054.Blue_Grosbeak','055.Evening_Grosbeak','056.Pine_Grosbeak','057.Rose_breasted_Grosbeak','058.Pigeon_Guillemot','059.California_Gull','060.Glaucous_winged_Gull','061.Heermann_Gull','062.Herring_Gull','063.Ivory_Gull','064.Ring_billed_Gull','065.Slaty_backed_Gull','066.Western_Gull','067.Anna_Hummingbird','068.Ruby_throated_Hummingbird','069.Rufous_Hummingbird','070.Green_Violetear','071.Long_tailed_Jaeger','072.Pomarine_Jaeger','073.Blue_Jay','074.Florida_Jay','075.Green_Jay','076.Dark_eyed_Junco','077.Tropical_Kingbird','078.Gray_Kingbird','079.Belted_Kingfisher','080.Green_Kingfisher','081.Pied_Kingfisher','082.Ringed_Kingfisher','083.White_breasted_Kingfisher','084.Red_legged_Kittiwake','085.Horned_Lark','086.Pacific_Loon','087.Mallard','088.Western_Meadowlark','089.Hooded_Merganser','090.Red_breasted_Merganser','091.Mockingbird','092.Nighthawk','093.Clark_Nutcracker','094.White_breasted_Nuthatch','095.Baltimore_Oriole','096.Hooded_Oriole','097.Orchard_Oriole','098.Scott_Oriole','099.Ovenbird','100.Brown_Pelican','101.White_Pelican','102.Western_Wood_Pewee','103.Sayornis','104.American_Pipit','105.Whip_poor_Will','106.Horned_Puffin','107.Common_Raven','108.White_necked_Raven','109.American_Redstart','110.Geococcyx','111.Loggerhead_Shrike','112.Great_Grey_Shrike','113.Baird_Sparrow','114.Black_throated_Sparrow','115.Brewer_Sparrow','116.Chipping_Sparrow','117.Clay_colored_Sparrow','118.House_Sparrow','119.Field_Sparrow','120.Fox_Sparrow','121.Grasshopper_Sparrow','122.Harris_Sparrow','123.Henslow_Sparrow','124.Le_Conte_Sparrow','125.Lincoln_Sparrow','126.Nelson_Sharp_tailed_Sparrow','127.Savannah_Sparrow','128.Seaside_Sparrow','129.Song_Sparrow','130.Tree_Sparrow','131.Vesper_Sparrow','132.White_crowned_Sparrow','133.White_throated_Sparrow','134.Cape_Glossy_Starling','135.Bank_Swallow','136.Barn_Swallow','137.Cliff_Swallow','138.Tree_Swallow','139.Scarlet_Tanager','140.Summer_Tanager','141.Artic_Tern','142.Black_Tern','143.Caspian_Tern','144.Common_Tern','145.Elegant_Tern','146.Forsters_Tern','147.Least_Tern','148.Green_tailed_Towhee','149.Brown_Thrasher','150.Sage_Thrasher','151.Black_capped_Vireo','152.Blue_headed_Vireo','153.Philadelphia_Vireo','154.Red_eyed_Vireo','155.Warbling_Vireo','156.White_eyed_Vireo','157.Yellow_throated_Vireo','158.Bay_breasted_Warbler','159.Black_and_white_Warbler','160.Black_throated_Blue_Warbler','161.Blue_winged_Warbler','162.Canada_Warbler','163.Cape_May_Warbler','164.Cerulean_Warbler','165.Chestnut_sided_Warbler','166.Golden_winged_Warbler','167.Hooded_Warbler','168.Kentucky_Warbler','169.Magnolia_Warbler','170.Mourning_Warbler','171.Myrtle_Warbler','172.Nashville_Warbler','173.Orange_crowned_Warbler','174.Palm_Warbler','175.Pine_Warbler','176.Prairie_Warbler','177.Prothonotary_Warbler','178.Swainson_Warbler','179.Tennessee_Warbler','180.Wilson_Warbler','181.Worm_eating_Warbler','182.Yellow_Warbler','183.Northern_Waterthrush','184.Louisiana_Waterthrush','185.Bohemian_Waxwing','186.Cedar_Waxwing','187.American_Three_toed_Woodpecker','188.Pileated_Woodpecker','189.Red_bellied_Woodpecker','190.Red_cockaded_Woodpecker','191.Red_headed_Woodpecker','192.Downy_Woodpecker','193.Bewick_Wren','194.Cactus_Wren','195.Carolina_Wren','196.House_Wren','197.Marsh_Wren','198.Rock_Wren','199.Winter_Wren','200.Common_Yellowthroat',] \ No newline at end of file diff --git a/utils/area/descriptions/CUB/generated_descriptions/001.Black_footed_Albatross_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/001.Black_footed_Albatross_descriptions.txt new file mode 100644 index 0000000..d5eae09 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/001.Black_footed_Albatross_descriptions.txt @@ -0,0 +1,10 @@ +Black_Footed_Albatross_0023_796059.jpg A Black-footed Albatross, with dark brown plumage and a light beak, is captured in mid-flight gliding over a rippling ocean surface, showcasing its long, slender wingspan. +Black_Footed_Albatross_0056_796078.jpg The Black-footed Albatross, seen from a side angle, displays dark brown plumage with a slightly lighter brown head, is gliding on rippling ocean waters, with its distinctive dark feet and a prominently curved beak faintly visible. +Black_Footed_Albatross_0041_796108.jpg The Black-footed Albatross, viewed from the side in mid-flight over a vast, rippling ocean, displays dark brown plumage with lighter undertones and distinct, contrasting black feet. +Black_Footed_Albatross_0038_212.jpg The Black-footed Albatross in a side view is floating on rippling blue water, showcasing its dark plumage with lighter areas on the face and a sleek, curved beak. +Black_Footed_Albatross_0080_796096.jpg The image shows a dark brown Black-footed Albatross with outstretched wings creating a graceful arc above a rippling ocean surface, highlighting its long, narrow wings and slightly curved beak in a side profile. +Black_Footed_Albatross_0067_170.jpg The Black-footed Albatross is depicted in flight with outstretched wings showing a smooth brown and gray plumage, dark webbed feet, and is set against a marine-themed background with fish illustrations, suggesting an underwater environment. +Black_Footed_Albatross_0007_796138.jpg The black-footed albatross is seen from a frontal view in a low-resolution photograph, featuring a dark, dusky brown body with a paler face, floating on water with rippling waves surrounding it. +Black_Footed_Albatross_0089_796069.jpg The Black-footed Albatross is depicted gliding over deep blue ocean waters with a wingspan displaying dark, textured feathers and a slightly lighter head, with its long wings stretched outward and one wingtip almost skimming the waves. +Black_Footed_Albatross_0014_89.jpg The Black-footed Albatross appears soaring in flight with dark plumage and lighter underwings, set against a pale, unobtrusive sky, displaying its distinctive long wingspan and streamlined body. +Black_Footed_Albatross_0039_796132.jpg A dark brown albatross with black webbed feet, partially spread wings, and a hooked bill, floats on choppy blue ocean waves under bright light. diff --git a/utils/area/descriptions/CUB/generated_descriptions/002.Laysan_Albatross_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/002.Laysan_Albatross_descriptions.txt new file mode 100644 index 0000000..9d7be39 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/002.Laysan_Albatross_descriptions.txt @@ -0,0 +1,10 @@ +Laysan_Albatross_0073_927.jpg The Laysan Albatross is soaring with a predominantly white body contrasted by dark upper wings in a clear sky background. +Laysan_Albatross_0068_726.jpg The image shows a Laysan Albatross with a smooth white head and greyish wings, featuring a distinctive dark eye patch, captured in a side profile against a dark blurred background. +Laysan_Albatross_0076_671.jpg The Laysan Albatross in the image has a white head and underbelly with a distinctively dark back and wings, standing in an upright pose on grass, with its pale pinkish beak and the texture of its feathers prominently contrasted against the natural, dry grassy background. +Laysan_Albatross_0055_570.jpg A young Laysan Albatross with fluffy brown down, dark feathered wings, and a slightly curved beak is sitting on a grassy and rocky ground. +Laysan_Albatross_0025_571.jpg The Laysan Albatross is depicted in a side view with a white head and underparts contrasted by dark gray wings, standing on a grassy terrain with rocky elements in the background. +Laysan_Albatross_0040_472.jpg The Laysan Albatross, seen from a side view in flight over a shimmering ocean, displays a predominantly white head with a dark eye patch, a brownish back and wings with a pale underbelly, and extended wings showcasing noticeable contrast between dark primaries and a lighter body. +Laysan_Albatross_0051_1020.jpg The Laysan Albatross is standing in a grassy and sparse vegetated area with a mostly white head and body, contrasting with its dark brown wings, viewed in a side profile showcasing its prominent beak. +Laysan_Albatross_0050_870.jpg The Laysan Albatross is seen in a soaring pose with outstretched wings displaying contrasting dark wingtips against a lighter body and sky backdrop, featuring a distinguishing pale face and long, slender beak. +Laysan_Albatross_0029_482.jpg The 002.Laysan Albatross, seen from a side profile, displays a primarily white head and neck contrasting with brown wings and upper body, as it gracefully floats on dark, textured ocean water. +Laysan_Albatross_0071_792.jpg The Laysan Albatross is seen gliding over a rippling ocean with its broad, dark wings spread wide, showcasing a stark contrast against its white body and head, and the subtle hint of its yellowish beak is visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions/003.Sooty_Albatross_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/003.Sooty_Albatross_descriptions.txt new file mode 100644 index 0000000..28d71f2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/003.Sooty_Albatross_descriptions.txt @@ -0,0 +1,10 @@ +Sooty_Albatross_0070_796346.jpg The image shows a Sooty Albatross with smooth, dark gray plumage in a side profile with its head pointed upwards, set against a rugged, grassy landscape and a distant body of water under a clear blue sky. +Sooty_Albatross_0023_796401.jpg The Sooty Albatross displays a dark, sooty brown plumage with long, slender wings featuring lighter gray accents, viewed from below as it glides across a clear blue sky. +Sooty_Albatross_0022_796398.jpg The Sooty Albatross is depicted in flight with outstretched wings, showing a dark, smooth grey plumage against a blurred oceanic background, and features a distinctive white eye-ring. +Sooty_Albatross_0014_796373.jpg The Sooty Albatross is captured mid-flight with outstretched wings, exhibiting a smooth, dark gray body against a clear blue sky, featuring a distinct white eye-ring and subtle feather textures. +Sooty_Albatross_0001_1071.jpg The Sooty Albatross is perched on a grassy ledge with a dark, sleek plumage, a notable white ring around its eye, and faces leftward against a deep blue ocean backdrop. +Sooty_Albatross_0064_796343.jpg The Sooty Albatross is perched on a grassy cliffside with a vivid blue ocean backdrop, displaying its smooth dark plumage, white eye-ring, and streamlined body in a side profile view. +Sooty_Albatross_0032_1149.jpg A dark-colored albatross with smooth plumage and a slightly hooked pale bill glides elegantly in a side view against a soft, cloudy sky background. +Sooty_Albatross_0075_796352.jpg A dark, sleek-bodied albatross with expansive wings glides through a light gray sky, showcasing a slender, streamlined silhouette. +Sooty_Albatross_0025_796361.jpg The 003.Sooty Albatross is depicted in flight, showcasing its smooth, dark sooty-colored plumage, set against a muted sky background, with a distinctive pale ring around its eye and a sharply contoured, slender bill. +Sooty_Albatross_0038_1065.jpg The Sooty Albatross, viewed from the side and floating on a rippling ocean, displays a smooth, dark brown head and neck transitioning to a lighter brown body, with distinct pale facial markings against the backdrop of grayish-blue water. diff --git a/utils/area/descriptions/CUB/generated_descriptions/004.Groove_billed_Ani_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/004.Groove_billed_Ani_descriptions.txt new file mode 100644 index 0000000..5aa44cc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/004.Groove_billed_Ani_descriptions.txt @@ -0,0 +1,10 @@ +Groove_Billed_Ani_0069_1546.jpg The Groove-billed Ani is perched upright on dry grass, showcasing its glossy black plumage with a slightly iridescent sheen, a distinctively long, slightly curved bill, and narrow groove-like features on its bill, against a backdrop of muted, earthy tones. +Groove_Billed_Ani_0023_1485.jpg Amidst a lush environment of green foliage, the Groove-billed Ani is perched with its side profile visible, showcasing sleek black plumage with a subtle iridescent sheen and a notable downward-curved groove-patterned bill. +Groove_Billed_Ani_0036_1604.jpg The Groove-billed Ani appears perched amongst green foliage with its distinctive glossy black plumage accentuated by subtle bluish iridescence, displaying a downward view and set against a blurred garden background. +Groove_Billed_Ani_0044_1731.jpg The Groove-billed Ani is perched side-on atop a weathered wooden post, displaying its glossy black feathers with a slightly ruffled texture on its head, against a pale sky, accompanied by green leaves in the background. +Groove_Billed_Ani_0077_1724.jpg The Groove-billed Ani is perched on a branch, displaying its glossy black plumage and distinctive ridged bill in a side view against a blurred green natural background. +Groove_Billed_Ani_0033_1494.jpg The Groove-billed Ani is perched on a branch with its sleek black plumage and distinctive grooved bill visible, set against a backdrop of green leaves and a clear blue sky. +Groove_Billed_Ani_0085_1612.jpg The Groove-billed Ani sits perched on a weathered wooden post, displaying its glossy black plumage and distinctive grooved bill against a blurred rustic background of horizontal wooden planks and greenery. +Groove_Billed_Ani_0072_1696.jpg The glossy black bird with a distinctly curved bill is perched amidst lush green foliage, facing left, and characterized by its long tail and slightly disheveled plumage texture. +Groove_Billed_Ani_0015_1653.jpg A dark, iridescent bird with a thick, grooved bill perches sideways on a slender branch amid sparse green foliage, set against a clear sky background. +Groove_Billed_Ani_0105_1562.jpg This Groove-billed Ani, perched sideways on a tree branch against a clear blue sky, displays glossy black plumage with a slightly ruffled texture and a distinct thick, curved bill. diff --git a/utils/area/descriptions/CUB/generated_descriptions/005.Crested_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/005.Crested_Auklet_descriptions.txt new file mode 100644 index 0000000..27d90f1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/005.Crested_Auklet_descriptions.txt @@ -0,0 +1,10 @@ +Crested_Auklet_0029_1824.jpg The Crested Auklet is shown in a side profile with a striking orange bill and crest against its dark plumage, set against a blurred, leafy green background, highlighting its pale eye and sleek feathers. +Crested_Auklet_0040_794912.jpg The Crested Auklet is perched on a mossy rock with a black and gray plumage, a vivid orange bill, a striking crest curving forward from the forehead, and a blurred rocky background. +Crested_Auklet_0018_1817.jpg The Crested Auklet in the image displays a dark, textured plumage with a prominent orange bill and crest, viewed from a side angle against a blurred rocky backdrop. +Crested_Auklet_0076_785252.jpg The Crested Auklet is perched on a moss-covered rock displaying its dark gray plumage, prominent orange beak, distinctive upward-curving feather crest, and striking white eye against a blurred, dark background. +Crested_Auklet_0001_794941.jpg The Crested Auklet in profile view features a distinctive orange bill and a prominent crest, with its dark plumage contrasted against a blurred natural background. +Crested_Auklet_0073_785248.jpg The Crested Auklet in the image is depicted flying in profile with a dark gray plumage and a distinctive orange bill, set against a blurred, wavy blue-gray ocean background. +Crested_Auklet_0045_794940.jpg The Crested Auklet is perched on a mossy rock with a side profile showing its dark plumage contrasted by a bright orange bill, distinctive forward-curved crest, and a uniformly grey background. +Crested_Auklet_0010_794907.jpg The Crested Auklet displays a dark grey, textured plumage with a distinctive forward-curving black feather crest, positioned in a side view standing on a rugged, rocky surface, set against a blurred, neutral gray background, highlighting its bright orange bill and pale eye. +Crested_Auklet_0066_785251.jpg The Crested Auklet is perched on a mossy rock with its body showing a dark, sleek texture contrasted by a vivid orange bill and distinctive white plume on its head, viewed from a side angle. +Crested_Auklet_0039_794944.jpg The low-resolution image depicts a Crested Auklet with dark plumage, an orange beak, and a distinct crest, perched on a mossy rock with a blurred green and brown background, in a side profile view. diff --git a/utils/area/descriptions/CUB/generated_descriptions/006.Least_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/006.Least_Auklet_descriptions.txt new file mode 100644 index 0000000..d62b097 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/006.Least_Auklet_descriptions.txt @@ -0,0 +1,10 @@ +Least_Auklet_0050_1924.jpg The Least Auklet, with its mottled gray and white plumage, stands sideways on a rugged brown rock, displaying its distinct white eye and reddish beak tip against a blurred, light blue-green background. +Least_Auklet_0035_1888.jpg The Least Auklet is perched on a rock with a side profile showing its speckled gray and white plumage, a distinct light eye contrasting with its dark head, and a blurred neutral-colored background. +Least_Auklet_0043_795067.jpg The Least Auklet has dark plumage with white speckles and a distinctive white face, perched upright on a gray rock with a blurred gray-blue background. +Least_Auklet_0020_795080.jpg The 006.Least Auklet appears in a side profile with a gray-speckled plumage and distinctive, small, white facial markings, perched on a rough, dark rock surface against a muted gray background. +Least_Auklet_0052_795088.jpg A small bird with a mottled gray and white plumage stands in profile on a lichen-covered rock, characterized by its compact body, bold white eyes, and a distinctive short red-orange bill against a blurred background. +Least_Auklet_0008_795071.jpg A small bird with mottled gray and white plumage, a short red bill, and striking white eye, perched sideways on a rocky surface against a blurred, neutral-toned background. +Least_Auklet_0015_795065.jpg The Least Auklet is perched on a rocky surface with nearby greenery, displaying a mottled gray and white plumage, prominent bright eye ring, dark back, and a short red bill while gazing forward. +Least_Auklet_0026_795066.jpg The Least Auklet is perched on a rock with its body turned slightly to the left, featuring a dark gray and white speckled plumage, a distinctive white eye-ring, and a backdrop of muted orange and brown tones. +Least_Auklet_0027_795091.jpg The Least Auklet is perched with a side view visible, featuring a dark gray head and back, distinctly mottled white and gray chest, bright white eye ring, and a pinkish bill, set against a smooth pastel blue sky and resting on a textured stone. +Least_Auklet_0018_795077.jpg The Least Auklet is perched on a rock with mottled gray and white plumage, a distinctive red-orange bill, and a speckled pattern visible on its chest, set against a blurred light blue background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/007.Parakeet_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/007.Parakeet_Auklet_descriptions.txt new file mode 100644 index 0000000..dfe7b63 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/007.Parakeet_Auklet_descriptions.txt @@ -0,0 +1,10 @@ +Parakeet_Auklet_0036_795943.jpg This Parakeet Auklet displays a dark, textured plumage with a distinct red-orange bill, viewed from the front on a rocky, grey background, highlighting its unique white facial marking. +Parakeet_Auklet_0078_2004.jpg The Parakeet Auklet is perched on a mossy rock, displaying its dark plumage with a notable orange beak and white eye-ring, against a blurred green background, while looking upward. +Parakeet_Auklet_0012_795927.jpg The Parakeet Auklet stands on a rough, rocky surface, displaying its distinct black head with a bright orange beak, white underparts, and speckled gray chest, with a blurred rocky background enhancing its contrasting features. +Parakeet_Auklet_0001_795972.jpg The Parakeet Auklet is perched on a mossy rock, displaying its distinctive black plumage with a contrasting white belly, a bright orange beak, and striking white eye, set against a blurred grayish-blue background. +Parakeet_Auklet_0027_795925.jpg The Parakeet Auklet is perched on a lichen-covered rock, displaying its black and white plumage with a distinctively bright orange bill and white facial markings, viewed from a side angle emphasizing its sleek body and contrasting colors. +Parakeet_Auklet_0056_795926.jpg The Parakeet Auklet in the image features a dark head and upper body with a slightly mottled texture, a striking white eye, a vivid orange bill, and a white streak extending backward from the eye, set against a blurred green background with the bird in a side profile pose. +Parakeet_Auklet_0041_795933.jpg The Parakeet Auklet in the image is perched in a side view, featuring a striking orange beak, a predominantly dark, smooth body with a white belly, and is set against a rocky, green-leafed background. +Parakeet_Auklet_0035_795934.jpg The Parakeet Auklet is perched on a rock with a dark plumage and distinctive bright orange bill, featuring a white eye and streak near the eye, against a rugged, mossy rock background. +Parakeet_Auklet_0032_795986.jpg The 007.Parakeet Auklet is seen in profile with its dark body and distinct white facial markings against a blurred, natural environment, showcasing an orange beak and glossy feathers. +Parakeet_Auklet_0080_795965.jpg The Parakeet Auklet is perched on a rock, displaying its black back with white underparts and a striking red-orange bill, set against a blurred dark background, with a unique crescent white eye marking. diff --git a/utils/area/descriptions/CUB/generated_descriptions/008.Rhinoceros_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/008.Rhinoceros_Auklet_descriptions.txt new file mode 100644 index 0000000..fd34010 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/008.Rhinoceros_Auklet_descriptions.txt @@ -0,0 +1,10 @@ +Rhinoceros_Auklet_0026_797519.jpg The Rhinoceros Auklet appears in a side view floating on blue water, displaying a grayish-brown plumage with a slightly lighter head, a distinctive pale bill, and subtle texturing on its feathers. +Rhinoceros_Auklet_0018_797517.jpg The Rhinoceros Auklet features a grayish-brown body with a distinct orange bill, white facial tufts, and is seen floating on rippling water from a side view. +Rhinoceros_Auklet_0014_797522.jpg The Rhinoceros Auklet is sitting on a rocky surface, featuring a dark gray body with a prominent pale horn-like extension at the base of its orange bill, accompanied by distinctive white facial plumes and dark wings. +Rhinoceros_Auklet_0011_797530.jpg The image shows a Rhinoceros Auklet with a dark gray plumage, white facial streaks, and a prominent horn on its bill, in a side profile view against a blurred earthy background. +Rhinoceros_Auklet_0013_797537.jpg The Rhinoceros Auklet appears dark gray with a pronounced horn-like extension on its bill, viewed from a slightly side angle against a muted, earthy background with scattered twigs. +Rhinoceros_Auklet_0006_797512.jpg The Rhinoceros Auklet is lying on pale sandy ground with scattered small pebbles, featuring a dark gray body and subtle texture, a slight upward curve in its beak, and is being gently held by a hand. +Rhinoceros_Auklet_0049_797543.jpg The Rhinoceros Auklet is shown in a side view with its dark, textured plumage against a straw-like background, displaying a distinctive pale horn on its beak. +Rhinoceros_Auklet_0031_797518.jpg The Rhinoceros Auklet is shown in profile with a dark, textured plumage and distinct orange bill, swimming in choppy water that reflects a grayish background. +Rhinoceros_Auklet_0032_797516.jpg The Rhinoceros Auklet is captured in flight with wings extended, displaying dark brown plumage with lighter underwings, a distinctive orange-yellow beak holding a small fish, and an oceanic background with rippling water. +Rhinoceros_Auklet_0024_797529.jpg The Rhinoceros Auklet is captured in profile view, showcasing its dark gray plumage with a distinctive pale, horn-like structure above its orange bill, set against a backdrop of rippling, deep blue ocean water. diff --git a/utils/area/descriptions/CUB/generated_descriptions/009.Brewer_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/009.Brewer_Blackbird_descriptions.txt new file mode 100644 index 0000000..43683ed --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/009.Brewer_Blackbird_descriptions.txt @@ -0,0 +1,10 @@ +Brewer_Blackbird_0079_2343.jpg The Brewer Blackbird, seen from a side profile on a sandy rock, displays dark iridescent plumage with a slightly scruffy texture against a muted gray background, and its pale eye and slender beak add contrast to its overall dark appearance. +Brewer_Blackbird_0087_2622.jpg The Brewer Blackbird is perched on shallow water, displaying iridescent dark plumage with a bluish sheen, a distinctive bright eye, and a slightly puffed chest, against a smooth, muted blue-gray background. +Brewer_Blackbird_0111_2613.jpg A Brewer Blackbird with iridescent black plumage and piercing pale eyes perches in profile atop a pine branch against a clear blue sky. +Brewer_Blackbird_0070_2325.jpg The Brewer Blackbird is perched on rocky ground by water, displaying a dark, iridescent plumage with hints of brown under sunlight, while rippling waves and scattered pine needles create a natural, textured background. +Brewer_Blackbird_0014_2679.jpg A Brewer's Blackbird is perched on a branch against a backdrop of green leaves, showcasing iridescent dark plumage with hints of blue around the head, and is seen from a side angle looking upwards. +Brewer_Blackbird_0135_2607.jpg The Brewer's Blackbird is perched on a pine branch with its dark, iridescent plumage appearing slightly ruffled, set against a blurred background of green fields and hills under a blue sky, with a distinctive upright pose. +Brewer_Blackbird_0030_2268.jpg The Brewer Blackbird is perched amidst lush green foliage, showcasing its glossy black plumage with subtle shades of iridescent blue and a distinctive bright eye, while facing slightly to the left, nestled in a vibrant and natural leafy environment. +Brewer_Blackbird_0082_2593.jpg The Brewer's Blackbird is perched on a rock, displaying glossy iridescent bluish-black plumage with a distinctive round, bright white eye, set against a background of earthy ground and scattered stones. +Brewer_Blackbird_0078_2659.jpg The Brewer Blackbird is depicted with glossy black plumage featuring hints of iridescent green, standing alert on a textured grey pavement, with one side of its body visible against a soft-focus background of pale blue sky and water. +Brewer_Blackbird_0064_2290.jpg The Brewer's Blackbird displays an iridescent black plumage with hints of green and purple, perched sideways on a thin branch against a blurry background of blue and brown tree trunks, with a notable light eye and pointed beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions/010.Red_winged_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/010.Red_winged_Blackbird_descriptions.txt new file mode 100644 index 0000000..6eb2797 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/010.Red_winged_Blackbird_descriptions.txt @@ -0,0 +1,10 @@ +Red_Winged_Blackbird_0032_4004.jpg The Red-winged Blackbird is perched on a branch with its glossy black plumage contrasted by a vibrant red and yellow patch on the shoulder, set against a light sky background. +Red_Winged_Blackbird_0093_5948.jpg The Red-winged Blackbird is perched on a cattail, displaying its distinct black plumage with a bright red and yellow shoulder patch, set against a blurred, beige and brown wetland background. +Red_Winged_Blackbird_0023_5257.jpg The Red-winged Blackbird is perched on a branch, displaying glossy black plumage with a striking red and yellow patch on its shoulder, set against a blurred green and brown natural background. +Red_Winged_Blackbird_0021_3767.jpg The low-resolution image depicts a Red-winged Blackbird with glossy black plumage and a striking red and yellow patch on its wing, perched sideways on a slender branch amidst a sparse, blurry background of thin trees and foliage. +Red_Winged_Blackbird_0085_5846.jpg The Red-winged Blackbird, viewed from the side, exhibits a dark, smooth plumage with a distinct red and yellow patch on its wing, perched on thorny branches against a blurred, neutral background. +Red_Winged_Blackbird_0079_4527.jpg The Red-winged Blackbird perches laterally on a bare branch against a clear blue sky, showcasing its glossy black plumage contrasted by bright red and yellow shoulder patches. +Red_Winged_Blackbird_0020_4050.jpg The Red-winged Blackbird is perched on a leafy branch, displaying glossy black plumage with distinct red and yellow shoulder patches, set against a blurred green background. +Red_Winged_Blackbird_0025_5342.jpg The Red-winged Blackbird is perched on lush green grass, displaying its distinctive black plumage contrasted by a vivid red and orange patch on its wing, viewed in profile with a natural park environment in the background. +Red_Winged_Blackbird_0075_4953.jpg A Red-winged Blackbird is perched sideways on a thin branch with its distinct bright red and yellow shoulder markings contrasting against its dark plumage, set against a blurred background of green foliage and light sky, indicating a natural habitat. +Red_Winged_Blackbird_0046_4242.jpg The Red-winged Blackbird is perched on green reed-like grasses, displaying its distinctive black plumage with vivid red and yellow shoulder patches against a blurred natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/011.Rusty_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/011.Rusty_Blackbird_descriptions.txt new file mode 100644 index 0000000..b718b08 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/011.Rusty_Blackbird_descriptions.txt @@ -0,0 +1,10 @@ +Rusty_Blackbird_0121_6637.jpg The bird, perched sideways on bare branches against a clear blue sky, exhibits dark plumage with a subtle iridescent sheen on its head and upper body. +Rusty_Blackbird_0093_6628.jpg The Rusty Blackbird is perched sideways on a mossy, textured log above reflective water, displaying iridescent dark plumage with a slight sheen. +Rusty_Blackbird_0023_6752.jpg The Rusty Blackbird appears in a three-quarter pose on the ground, showcasing its brownish plumage with a rusty hue, set against a natural, earthy backdrop strewn with leaves. +Rusty_Blackbird_0107_6839.jpg A Rusty Blackbird perches sideways on a branch with a rich brown and dark feather texture, amidst a background of softly blurred, sunlit autumn foliage. +Rusty_Blackbird_0113_6664.jpg The Rusty Blackbird displays a mottled brown and black plumage with a slightly hunched stance on muddy ground, highlighting its rusty feather edges and bright yellow eyes against a textured, earthy background. +Rusty_Blackbird_0009_6853.jpg Perched on a branch against a clear blue sky, the Rusty Blackbird displays its characteristic rusty brown plumage with faint streaks and a slightly iridescent texture, showcasing its side profile with a sharp beak and bright eye. +Rusty_Blackbird_0102_6590.jpg The Rusty Blackbird is seen from the side, standing in shallow water with tufts of grass, displaying a mix of iridescent black and rusty brown plumage with a sharp beak and a pale yellow eye. +Rusty_Blackbird_0101_6880.jpg The bird is perched on a branch amidst autumn leaves, displaying a dark, rusty-brown body with a slightly glossy texture, viewed in profile against a pale blue sky. +Rusty_Blackbird_0006_6633.jpg The bird appears dark with a somewhat iridescent texture, perched on a branch, surrounded by blurred greenery and bare twigs, showcasing a distinctive pale eye and pointed beak. +Rusty_Blackbird_0016_6684.jpg The bird features speckled dark brown and black plumage with hints of rust, stands in profile on a ground covered with dry leaves that provide a blurred orange and brown background, and exhibits a distinctive yellow eye that contrasts with its plumage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/012.Yellow_headed_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/012.Yellow_headed_Blackbird_descriptions.txt new file mode 100644 index 0000000..3a995eb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/012.Yellow_headed_Blackbird_descriptions.txt @@ -0,0 +1,10 @@ +Yellow_Headed_Blackbird_0082_8577.jpg The Yellow-headed Blackbird, captured in mid-flight with outstretched wings revealing distinctive white patches, displays a vivid yellow head contrasted against its black body, set against a marshy background of green reeds and murky water. +Yellow_Headed_Blackbird_0070_8583.jpg The Yellow-headed Blackbird displays a vivid yellow head and a contrasting black body, perched on a diagonal branch with a blurred green and brown leafy background, emphasizing its striking color contrast. +Yellow_Headed_Blackbird_0073_8442.jpg The Yellow-headed Blackbird is perched among dry reeds, showcasing its vibrant yellow head and chest contrasting with its glossy black body, with a slight side profile that highlights its striking plumage against a clear blue sky. +Yellow_Headed_Blackbird_0084_8435.jpg The Yellow-headed Blackbird, perched sideways on a reed in a marshy setting, displays its vibrant yellow head and throat contrasted against a sleek black body and wings, with a distinctive white wing patch visible. +Yellow_Headed_Blackbird_0008_8756.jpg The Yellow-headed Blackbird features a bright yellow head and throat set against a glossy black body, perched in a side profile on a reed with indistinct brownish stalks in the background. +Yellow_Headed_Blackbird_0072_8606.jpg The bird displays a vibrant yellow head and chest contrasted with a sleek black body, perched sideways on a narrow reed against a blurred green background; its distinct white wing patches and sharp beak are clearly visible. +Yellow_Headed_Blackbird_0062_8310.jpg The bird, perched sideways on slender stalks amidst a green grassy background, features a striking bright yellow head contrasting with its black body, with visible white wing patches. +Yellow_Headed_Blackbird_0040_7514.jpg The Yellow-headed Blackbird is perched among tall, brown reeds, displaying its vivid yellow head and chest contrasted against the smooth black of its wings and body, with a side profile view highlighting its distinctive coloration against a blurred natural background. +Yellow_Headed_Blackbird_0087_8358.jpg The Yellow-headed Blackbird features a vibrant golden-yellow head and chest contrasting with its black body, perched on a flowering branch with pale blossoms against a blurred, leafy green background. +Yellow_Headed_Blackbird_0031_8456.jpg The Yellow-headed Blackbird is perched upright on a reed, displaying its striking bright yellow head and chest against glossy black wings, with a blurred blue background resembling a sky or water surface. diff --git a/utils/area/descriptions/CUB/generated_descriptions/013.Bobolink_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/013.Bobolink_descriptions.txt new file mode 100644 index 0000000..84ab419 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/013.Bobolink_descriptions.txt @@ -0,0 +1,10 @@ +Bobolink_0099_9314.jpg The image depicts a bird with a black body and a distinct pale yellow head, perched on a metal pole while facing slightly left, against a blurred, neutral background. +Bobolink_0069_9085.jpg The bird, positioned on a slender branch against a muted green background, features a distinctive black body with a contrasting white patch on the nape and subtle pale streaks on its wings. +Bobolink_0019_10552.jpg The bird perched on a weathered wooden post displays a striking black body with a contrasting pale yellow cap and white markings on its wings, set against a blurred, muted green background. +Bobolink_0064_10092.jpg The bird is perched sideways on a branch, displaying a textured, dark body with streaked markings, a distinctive buff-colored patch on its nape, and set against a verdant background of large leaves. +Bobolink_0117_10215.jpg The bird has a striking black body with a creamy, pale yellow crown and buffy nape, perched on a weathered wooden stump against a smooth olive-green background, exhibiting markings of light grey on the wings and tail. +Bobolink_0133_9618.jpg The 013.Bobolink is perched on a dry plant with its head turned slightly towards the camera, showcasing its black body with contrasting white patches, against a blurred green background. +Bobolink_0014_11055.jpg This low-resolution image shows a bird with a creamy yellow cap, black body, and white wing patches perched sideways on a green conifer branch against a blurred green background. +Bobolink_0052_9423.jpg A small bird with a black body and distinct white wing bars is perched on a green, leafy plant in a natural grassy environment, displaying a pale yellow patch on the nape. +Bobolink_0020_9194.jpg The Bobolink displays a striking black and cream plumage with a distinctive pale yellow cap, perched sideways on a branch amidst small white daisies set against a muted green background. +Bobolink_0032_10217.jpg The bird displays a striking contrast of colors with a pale creamy-yellow crown and black plumage accentuated by a white patch on its wings, perched sideways on a pine branch against a blurred, muted background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/014.Indigo_Bunting_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/014.Indigo_Bunting_descriptions.txt new file mode 100644 index 0000000..faac4ab --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/014.Indigo_Bunting_descriptions.txt @@ -0,0 +1,10 @@ +Indigo_Bunting_0003_13049.jpg The Indigo Bunting displays vibrant blue plumage with subtle black markings, perched on grassy terrain scattered with seeds, and showing a side profile with a distinct conical beak. +Indigo_Bunting_0044_14389.jpg The Indigo Bunting displays a vibrant blue plumage with noticeable texture, shown in a side pose on a wooden surface scattered with seeds, set against a blurred backdrop of green foliage. +Indigo_Bunting_0039_12756.jpg The Indigo Bunting is perched on a slender branch, showcasing vibrant blue plumage with subtle hints of darker shading, against a blurred background of deep greens and scattered leaves. +Indigo_Bunting_0055_13473.jpg The Indigo Bunting is perched on a gnarled branch, showcasing vibrant blue plumage with slightly darker shades on its head and subtle feather texture, set against a blurred green foliage background. +Indigo_Bunting_0017_11574.jpg The Indigo Bunting, in mid-flight with wings outstretched, displays vibrant blue plumage against a blurred, verdant background with a distinct dark eye and slight mottling on the body. +Indigo_Bunting_0050_11811.jpg The Indigo Bunting, perched on a branch amidst a blurred forest background, displays rich blue plumage with subtle gradients, facing towards the left with wings closed. +Indigo_Bunting_0022_12781.jpg The Indigo Bunting features vibrant blue plumage with a smooth texture, perched sideways on a slender, green, bristly plant stem against a blurred green backdrop, showcasing its small beak and bright eye. +Indigo_Bunting_0024_13523.jpg The Indigo Bunting is captured in a side profile view, displaying vibrant blue plumage with a slightly darker shade on the head, standing amidst a natural, earthy background of wood chips and greenery. +Indigo_Bunting_0018_11883.jpg The Indigo Bunting is perched sideways on a blue wire, displaying vibrant cobalt blue plumage with a slightly matte texture against a blurred backdrop of vague green and gray tones. +Indigo_Bunting_0001_12469.jpg A vibrant blue bird with a smooth texture is perched on a branch in a side view pose, set against a blurred green background, with a contrasting dark eye and a lighter gray beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions/015.Lazuli_Bunting_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/015.Lazuli_Bunting_descriptions.txt new file mode 100644 index 0000000..b310fa0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/015.Lazuli_Bunting_descriptions.txt @@ -0,0 +1,10 @@ +Lazuli_Bunting_0087_15096.jpg The Lazuli Bunting is perched on a hand, displaying its vibrant blue head and back, complemented by a lighter underbelly and a subtle orange chest, against a dark, blurred background. +Lazuli_Bunting_0014_14824.jpg The Lazuli Bunting, perched among bare branches, displays vivid blue on its head and back, with a contrasting orange-brown breast and white belly, set against a blurred natural background. +Lazuli_Bunting_0105_15017.jpg The Lazuli Bunting features a striking azure blue head and back, a warm orange-buff chest, and is perched side-view on a leafy branch with small green berries, set against a blurred green background. +Lazuli_Bunting_0009_15163.jpg The Lazuli Bunting, seen perched on a barbed wire, displays vibrant blue plumage on its head and back, a cinnamon-brown breast, and white belly, set against a blurred green background. +Lazuli_Bunting_0080_14893.jpg The Lazuli Bunting is depicted perched on a textured stone surface, showcasing vibrant blue plumage on its head and back, complemented by a rust-orange breast, distinctively contrasted against a weathered wooden plank background. +Lazuli_Bunting_0086_14992.jpg A vibrant blue bird with a striking orange-brown chest and white wingbars perches sideways on leafy green branches amidst a densely verdant background. +Lazuli_Bunting_0041_15152.jpg The Lazuli Bunting is perched on a branch, displaying its vivid blue head and back with a rust-colored breast, set against a blurred backdrop of leafy branches and light-colored blossoms. +Lazuli_Bunting_0081_14709.jpg The Lazuli Bunting displays a vibrant blue head and back with a rusty orange breast, perched sideways on a slender branch against a blurred natural background. +Lazuli_Bunting_0073_14594.jpg The Lazuli Bunting is perched on a weathered branch, showcasing a vibrant blue head and upper body, with a rusty-orange breast, amidst a blurred green foliage backdrop. +Lazuli_Bunting_0045_14954.jpg The Lazuli Bunting is perched on a branch amidst a leafy green background, with its vivid blue plumage contrasted against subtle hints of rusty-orange and white, despite the low image resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions/016.Painted_Bunting_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/016.Painted_Bunting_descriptions.txt new file mode 100644 index 0000000..16ce8c7 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/016.Painted_Bunting_descriptions.txt @@ -0,0 +1,10 @@ +Painted_Bunting_0066_15241.jpg The Painted Bunting exhibits vibrant plumage with a bright blue head, green back, and red underparts, perched sideways on a branch within a blurred, leafy environment. +Painted_Bunting_0002_16887.jpg The Painted Bunting stands on a stone birdbath amidst a backdrop of lush green foliage, displaying vibrant red underparts, a bright blue head, and hints of green on its back, with its side profile clearly visible. +Painted_Bunting_0025_16722.jpg The low-resolution image depicts a Painted Bunting perched on a branch, showcasing its vibrant blue head, green back, and red underparts, set against a blurred, natural green background. +Painted_Bunting_0001_16585.jpg A small, vibrantly colored bird with a rich blue head, yellow-green back, and red underparts is perched on a vertical, leaf-embossed bird feeder against a blurred grassy background. +Painted_Bunting_0093_15212.jpg The Painted Bunting displays vibrant blue, green, and red plumage while perched sideways on a branch amidst a backdrop of slender, leafy twigs. +Painted_Bunting_0087_15232.jpg The Painted Bunting displays vibrant blue on its head, a reddish-orange breast, and green wings, perched on a branch amidst lush, leafy greenery in the background. +Painted_Bunting_0079_15197.jpg The bird displays a vibrant mix of blue, green, and red colors with a smooth texture, perched in a profile view on a thin branch among long, narrow green leaves, highlighting its distinctively colorful plumage even in low resolution. +Painted_Bunting_0073_16737.jpg The Painted Bunting is perched with a vivid mix of blue on the head, red on the underside, and green on the wings, set against a blurred, natural green background. +Painted_Bunting_0061_16930.jpg The Painted Bunting is perched with a side profile showing its vivid blue head, bright red underparts, and greenish-yellow back, set against a backdrop of large green leaf patterns that enhance its colorful plumage. +Painted_Bunting_0070_16515.jpg The Painted Bunting perches on a slender branch, showcasing vivid blue head and red underparts with a blurred green background, highlighting its bright plumage despite the low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions/017.Cardinal_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/017.Cardinal_descriptions.txt new file mode 100644 index 0000000..ab08450 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/017.Cardinal_descriptions.txt @@ -0,0 +1,10 @@ +Cardinal_0097_17396.jpg A vivid red bird with a short, thick beak and prominent crest sits sideview on a bare branch against a blurred background of leafless trees and soft light. +Cardinal_0094_17165.jpg The Cardinal, posed on a snowy ground, displays vibrant red plumage with a distinct black facial mask, and its body is directed towards the camera while slightly angled, highlighting the contrast against the white background. +Cardinal_0028_18054.jpg A vibrant red cardinal with a slightly ruffled texture perches on a weathered wooden railing, viewed from the side against a dramatic, swirling dark background, with a human-like hand reaching nearby. +Cardinal_0085_19162.jpg The cardinal is perched in profile on a weathered wooden surface, showcasing vibrant red plumage with a distinctive black mask around its face and a pointed crest, set against a blurred natural background of muted browns and grays. +Cardinal_0079_19044.jpg The cardinal is vividly red with a distinct black mask and pointed crest, perched sideways on patchy grass. +Cardinal_0002_18424.jpg A bright red cardinal with a black mask is perched on a textured, lichen-covered branch, viewed from a slightly upward angle against a soft-focus background of pale blue sky and out-of-focus branches. +Cardinal_0007_18537.jpg The 017.Cardinal is perched amidst a sparsely wooded, snowy background, showcasing a warm brown and tan plumage with a vivid orange beak, its body angled as it clings to the slender, sunlit branches. +Cardinal_0019_17368.jpg The 017.Cardinal appears with vibrant red plumage and a contrasting black face mask, viewed from the front with a blurred grassy background, highlighting its distinct crest and stout beak. +Cardinal_0081_17291.jpg The cardinal, with its vivid red plumage and pointed crest, is perched sideways on a metallic bird feeder amidst a blurred, natural background, with its black face mask and stout orange bill clearly distinguishable. +Cardinal_0084_17576.jpg The image features a vibrant red cardinal with a distinct black mask around its beak, standing in a side profile on a snowy ground scattered with small dark seeds. diff --git a/utils/area/descriptions/CUB/generated_descriptions/018.Spotted_Catbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/018.Spotted_Catbird_descriptions.txt new file mode 100644 index 0000000..2437681 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/018.Spotted_Catbird_descriptions.txt @@ -0,0 +1,10 @@ +Spotted_Catbird_0036_19406.jpg The Spotted Catbird is perched on a branch amidst dense foliage, showcasing its vibrant green plumage with white-spotted patterning, a white stripe above the eye, and a partially open beak, all highlighted in a side profile against the dimly lit forest background. +Spotted_Catbird_0010_19436.jpg The Spotted Catbird is perched amidst dense foliage, showing a vivid green body speckled with white spots, a distinctive dark eye line, and surrounded by an intricate network of thin branches. +Spotted_Catbird_0047_19400.jpg The "018.Spotted Catbird" displays a vibrant green plumage with a speckled texture, viewed from a side profile with a slightly turned head, set against a blurred natural environment with faint brown branches, highlighting the bird's distinctive red eye and light beak. +Spotted_Catbird_0001_796797.jpg The Spotted Catbird is perched on a branch, displaying vibrant green plumage with distinctive spotted patterns and a slightly tilted pose amidst a blurred natural background. +Spotted_Catbird_0012_796802.jpg The 018.Spotted Catbird is perched on a branch, displaying vibrant green plumage with subtle spotting on the head and wing area, giving a textured appearance, set against a softly blurred forest background. +Spotted_Catbird_0006_796823.jpg The Spotted Catbird is perched on a branch in a lush, leafy environment, displaying vibrant green plumage with distinctive white spots on its chest and a notable dark eye ring. +Spotted_Catbird_0027_796796.jpg The Spotted Catbird, perched on a branch, displays a vibrant green plumage with distinctive spotted patterns on its chest, contrasting with the dark markings around its eye and beak, set against a blurred, leafy green background. +Spotted_Catbird_0023_796793.jpg The Spotted Catbird displays vivid green plumage with a scaly pattern across its chest and back, resting on a branch with ferns in the background, highlighting its prominent eye and stout beak. +Spotted_Catbird_0007_19424.jpg The image shows a Spotted Catbird with bright green wings and a pale yellow body speckled with dark spots, viewed from the side against a dark, blurred background. +Spotted_Catbird_0031_796806.jpg The Spotted Catbird is perched side-on against a blurred dark backdrop, showcasing its bright green plumage with intricate white speckles on the chest, and it holds a pale object in its beak while standing on a reddish-brown surface. diff --git a/utils/area/descriptions/CUB/generated_descriptions/019.Gray_Catbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/019.Gray_Catbird_descriptions.txt new file mode 100644 index 0000000..027734b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/019.Gray_Catbird_descriptions.txt @@ -0,0 +1,10 @@ +Gray_Catbird_0045_20950.jpg Perched on a light pole, the Gray Catbird displays a smooth slate-gray plumage with a black cap and a subtle russet patch under its tail against a softly blurred green background. +Gray_Catbird_0023_20668.jpg The Gray Catbird is perched sideways on a branch, displaying a smooth gray plumage with a darker tail amidst a background of bare branches and blurred greenery, with a notable small black cap on its head. +Gray_Catbird_0027_20968.jpg The gray catbird, perched in a profile view on a weathered branch, displays a smooth gray plumage with a subtle, darker cap and rust-colored undertail, set against a blurred green forest background. +Gray_Catbird_0126_19446.jpg The 019.Gray Catbird, perched on a textured brick wall, displays a sleek gray plumage with a slightly darker cap, against a backdrop of blurred brickwork and green foliage. +Gray_Catbird_0127_20034.jpg A gray catbird is perched on a lichen-covered branch, showing its sleek gray plumage with subtle darker wing tips and a slightly upturned tail, set against a blurred green foliage background. +Gray_Catbird_0117_21333.jpg The Gray Catbird is perched on a branch amid green foliage, displaying a smooth, slate-gray plumage with a slightly upturned head profile and a distinctive darker cap, set against a softly blurred, verdant background. +Gray_Catbird_0067_21043.jpg The Gray Catbird, with smooth gray plumage and a distinctive black cap on its head, perches sideways on a cable amidst a lush green, leafy background, showcasing its rust-colored undertail coverts. +Gray_Catbird_0042_20546.jpg The Gray Catbird is perched sideways on a branch, displaying its smooth gray plumage, darker cap, and contrasting rusty undertail coverts, set against a blurred green and brown woodland background. +Gray_Catbird_0048_20558.jpg The Gray Catbird in the image, perched on a branch amidst lush green foliage, shows its uniform slate-gray body with a distinctive black cap and tail, viewed slightly from the side, revealing its subtle chestnut undertail coverts. +Gray_Catbird_0131_19633.jpg The Gray Catbird, perched on a textured, pebbled ground, displays its smooth gray plumage, slender tail slightly cocked, with a subtle cap noticeable despite the low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions/020.Yellow_breasted_Chat_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/020.Yellow_breasted_Chat_descriptions.txt new file mode 100644 index 0000000..3314ae1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/020.Yellow_breasted_Chat_descriptions.txt @@ -0,0 +1,10 @@ +Yellow_Breasted_Chat_0026_21845.jpg The Yellow-breasted Chat is perched sideways on a pine branch, displaying its vibrant yellow chest, olive-brown wings, and white belly, with a blurred background of soft green pine needles and blue sky. +Yellow_Breasted_Chat_0103_21670.jpg The Yellow-breasted Chat is perched on the ground amidst fallen leaves, displaying a vibrant yellow chest, olive-green back, and a white eye ring while nestled under evergreen foliage in dappled sunlight. +Yellow_Breasted_Chat_0044_22106.jpg The Yellow-breasted Chat is perched on a bare branch against a clear blue sky, displaying its vibrant yellow breast, gray head, and dark wings while its beak is open in a calling pose. +Yellow_Breasted_Chat_0089_21804.jpg The Yellow-breasted Chat, perched sideways on a leafy branch amidst a lush green environment, displays a vibrant yellow breast contrasting with its olive-brown wings and back, black-bordered white throat, and prominent white eye-rings. +Yellow_Breasted_Chat_0094_21693.jpg A Yellow-breasted Chat is perched on a dark cylindrical object, showcasing its vibrant yellow breast and olive-brown upperparts, with a blurred yellow background highlighting its distinct white eye-ring and slightly turned head. +Yellow_Breasted_Chat_0077_21986.jpg The Yellow-breasted Chat, perched sideways on a tree branch amidst lush green foliage, displays a vibrant yellow chest contrasted by its subtle gray wings, with a distinct white eyering visible despite the image's low resolution. +Yellow_Breasted_Chat_0090_21931.jpg The Yellow-breasted Chat is shown side-on with its vibrant yellow chest blending into olive-green wings and back, perched atop a person's fingers against a softly blurred woodland background. +Yellow_Breasted_Chat_0005_21828.jpg The image shows a Yellow-breasted Chat perched on a branch, displaying its vibrant yellow breast and olive green body amidst a backdrop of lush green foliage. +Yellow_Breasted_Chat_0014_21970.jpg In the image, the Yellow-breasted Chat perches on a wire with its side profile visible, showcasing its vibrant yellow breast and white belly, with a contrasting dark upper body against a clear blue sky background. +Yellow_Breasted_Chat_0068_21860.jpg The Yellow-breasted Chat in the image displays a bright yellow chest contrasting with olive-brown wings and back; perched on a branch, it is viewed from the side with a soft-focus green and leafy background enhancing its distinct white eye-ring and stout beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions/021.Eastern_Towhee_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/021.Eastern_Towhee_descriptions.txt new file mode 100644 index 0000000..d037afe --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/021.Eastern_Towhee_descriptions.txt @@ -0,0 +1,10 @@ +Eastern_Towhee_0097_22580.jpg A small bird with a striking contrast of black upperparts, white belly, and reddish-brown sides is perched on the ground amid scattered green plants and rocks, captured from the side with its head turned slightly, highlighting its distinctive eye and pattern. +Eastern_Towhee_0075_22588.jpg The Eastern Towhee is seen from a side angle, displaying a black head and back, white belly, and rusty flanks, with a snowy ground and scattered pine needles in the background. +Eastern_Towhee_0079_22690.jpg The Eastern Towhee in the image is perched on a wooden surface, displaying its black head and back, contrasting with a reddish-brown side and white belly, with a blurred neutral-colored background. +Eastern_Towhee_0117_22741.jpg An Eastern Towhee is perched with a side profile view amidst tangled branches and green leaves, showcasing its black head and upper body, contrasting with a reddish-brown flanks and white wing markings. +Eastern_Towhee_0027_22372.jpg The Eastern Towhee in the image is a bird with a dark, almost black head and tail, a striking reddish-brown side, and a white belly, standing on a ground littered with small, light-colored seed-like debris. +Eastern_Towhee_0038_22399.jpg The Eastern Towhee is perched on a branch displaying a blend of black, white, and rusty orange plumage, with a prominent black head and back in a natural wooded background. +Eastern_Towhee_0124_22585.jpg An Eastern Towhee is perched on a bare branch, displaying its black head and back, with a conspicuous reddish-brown side and white belly, set against a green blurred background. +Eastern_Towhee_0093_22621.jpg The Eastern Towhee is perched sideways on a branch, displaying a black head, rusty red sides, and white underparts with a blurred leafy green background. +Eastern_Towhee_0042_22155.jpg The Eastern Towhee in the image is perched sideways on a branch with its vivid black upper body, striking white underside, and rich reddish-brown flanks visible against a blurred, natural wooded background. +Eastern_Towhee_0074_22620.jpg The Eastern Towhee is perched on a branch with a mix of reddish-brown and black plumage, white underbelly, and distinctive round dark eyes, set against a blurred forest background with green and brown hues, indicating a natural wooded habitat. diff --git a/utils/area/descriptions/CUB/generated_descriptions/022.Chuck_will_Widow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/022.Chuck_will_Widow_descriptions.txt new file mode 100644 index 0000000..9c7a4ae --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/022.Chuck_will_Widow_descriptions.txt @@ -0,0 +1,10 @@ +Chuck_Will_Widow_0059_796982.jpg A Chuck-will's-widow with mottled brown and gray plumage is lying on a leaf-littered forest floor with its mouth open, blending seamlessly into the dappled light and shadow of the surrounding environment. +Chuck_Will_Widow_0012_796956.jpg The image shows a Chuck-will's-widow perched sideways on a branch, displaying mottled brown and gray plumage with barred tail feathers against a clear blue sky background. +Chuck_Will_Widow_0050_22750.jpg The Chuck-will's-widow displays mottled brown and buff plumage with intricate patterns and is shown from a side view as it's held gently in a hand against a background with a green fabric, highlighting its wide, flat beak and large eyes. +Chuck_Will_Widow_0016_796974.jpg The bird, perched on a diagonal branch, displays a mottled brown and tan plumage with speckled patterns that blend seamlessly into the blurred, natural background of light brown branches and foliage. +Chuck_Will_Widow_0046_796966.jpg The bird, resembling a Chuck-will's-widow, displays mottled brown and gray plumage with a cryptic texture, perched sideways on a branch amidst a blurred, green foliage background, showcasing its camouflaged and elusive appearance. +Chuck_Will_Widow_0017_796960.jpg The bird exhibits a mottled brown and gray plumage blending seamlessly with the pine needle-covered forest floor, seen in a resting pose with a profile view showing its small, rounded body and distinct large, dark eye. +Chuck_Will_Widow_0057_796970.jpg The bird displays a mottled brown and gray texture with complex patterns, lying flat against a neutral mesh background, featuring large, distinct eye prominence and elongated, cryptic feather shapes blending seamlessly with the setting. +Chuck_Will_Widow_0048_796995.jpg The bird is a mottled brown with intricate patterns blending into a background of branches and leaves, perched sideways on a branch with subtle, camouflaging markings. +Chuck_Will_Widow_0018_796980.jpg A cryptically patterned bird with mottled brown and gray plumage, perched sideways on a tree branch amidst lush green foliage, displaying its camouflaging texture and broad wings tucked close to its body. +Chuck_Will_Widow_0043_797001.jpg The bird features a mottled brown and tan plumage with intricate patterns, perched amid rough textured tree bark in a woodland setting, blending seamlessly with its environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions/023.Brandt_Cormorant_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/023.Brandt_Cormorant_descriptions.txt new file mode 100644 index 0000000..3161aff --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/023.Brandt_Cormorant_descriptions.txt @@ -0,0 +1,10 @@ +Brandt_Cormorant_0080_23002.jpg The dark-feathered Brandt Cormorant, with a sleek and glossy texture, stands perched with a side profile on a sunlit rocky outcrop against a blurred seascape background. +Brandt_Cormorant_0029_23043.jpg The Brandt Cormorant in the image is a dark bird with a sleek texture, captured from a side view while partially submerged in calm water, with a distinctive yellow facial patch and a smooth, uninterrupted background of gentle ripples. +Brandt_Cormorant_0013_23391.jpg The Brandt Cormorant appears in profile perched on a dead branch over water, showcasing its dark, sleek plumage and long neck against a rippling blue aquatic backdrop. +Brandt_Cormorant_0072_23069.jpg The Brandt Cormorant appears in a side profile, showcasing its sleek black body with a slightly iridescent sheen, standing on a textured, rocky shoreline with a blurred, watery background, and featuring a distinctive brownish patch near its face. +Brandt_Cormorant_0022_23157.jpg A dark-colored bird with outstretched wings and sleek feathers is seen from a side view skimming over a choppy, grayish ocean surface. +Brandt_Cormorant_0023_23254.jpg The Brandt's Cormorant in the image is positioned in profile view showing off its sleek black plumage with a distinctive blue throat patch, set against a rocky coastal background. +Brandt_Cormorant_0068_23019.jpg The image shows a Brandt's Cormorant with dark, sleek feathers partially spread, seen from a side view, gliding on water with rippling reflections, set against a soft, watery background. +Brandt_Cormorant_0074_22881.jpg The Brandt's Cormorant appears in a standing pose with its neck slightly curved, displaying a dark brown body with lighter patches on its chest, webbed feet, and a background of a flat, textured concrete surface. +Brandt_Cormorant_0082_22978.jpg The Brandt Cormorant is viewed from the side with its dark, sleek body and distinctive hooked beak visible against a blurred green and dark background, highlighting its piercing blue eye and smooth, brown-toned feathers. +Brandt_Cormorant_0044_22884.jpg The Brandt Cormorant is perched on a concrete surface with its body turned slightly to the side, displaying its glossy black feathers with hints of iridescent blue, against a pale blue water background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/024.Red_faced_Cormorant_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/024.Red_faced_Cormorant_descriptions.txt new file mode 100644 index 0000000..c900e3d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/024.Red_faced_Cormorant_descriptions.txt @@ -0,0 +1,10 @@ +Red_Faced_Cormorant_0017_796323.jpg The Red-faced Cormorant is perched on a rocky surface, exhibiting a dark, almost black plumage with a distinctive red face and hooked beak, set against a blurred, grayish backdrop likely indicating a coastal or marine environment. +Red_Faced_Cormorant_0062_796336.jpg A dark-bodied bird with a striking red face and orange bill stands on rocky terrain, viewed from a side angle, with a partially hidden eye and a backdrop of weathered stones. +Red_Faced_Cormorant_0045_796324.jpg The Red-faced Cormorant is seen side-on in the water with a prominent red face and dark plumage, contrasted against the muted blue-gray ripples of a watery background. +Red_Faced_Cormorant_0002_796275.jpg The Red-faced Cormorant is perched side-on on a rocky, grass-tufted cliff, showcasing its distinctive dark plumage and vibrant red facial skin against a blurred blue water background. +Red_Faced_Cormorant_0046_23446.jpg The Red-faced Cormorant is perched in profile against a rugged, moss-covered cliff, showcasing its glossy black plumage, vivid red facial skin, and a hint of blue surrounding the eye, while sitting on a nest with eggs. +Red_Faced_Cormorant_0073_796332.jpg The image depicts a Red-faced Cormorant with a dark, glossy body and a distinctive red patch on its face, perched in a side profile on a rugged, light-colored rock against a blurred, pale background. +Red_Faced_Cormorant_0053_796331.jpg The Red-faced Cormorant is perched with its body facing right, showcasing its striking red facial skin and predominantly dark plumage against a textured, rocky background with hints of white on its belly. +Red_Faced_Cormorant_0060_23416.jpg The Red-faced Cormorant is perched on a rocky surface with its distinctive red face and dark glossy body in profile against a muted, grey sky, displaying raised head feathers and pointed bill. +Red_Faced_Cormorant_0048_796296.jpg The Red-faced Cormorant appears in profile with a strikingly vivid red face, dark iridescent plumage, and a textured, rocky background suggestive of a coastal environment. +Red_Faced_Cormorant_0032_796334.jpg A Red-faced Cormorant with a sleek, dark body and a distinctive red facial patch stands in profile on a rocky ledge, set against a blurred background of deep blue water. diff --git a/utils/area/descriptions/CUB/generated_descriptions/025.Pelagic_Cormorant_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/025.Pelagic_Cormorant_descriptions.txt new file mode 100644 index 0000000..f2becc0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/025.Pelagic_Cormorant_descriptions.txt @@ -0,0 +1,10 @@ +Pelagic_Cormorant_0024_23712.jpg The Pelagic Cormorant, seen in a side profile swimming against a rippling blue water background, exhibits a dark, iridescent plumage with hints of green and purple, a slender neck, and a pointed beak. +Pelagic_Cormorant_0018_23880.jpg The Pelagic Cormorant, viewed from the side, displays a deep, iridescent black plumage with hints of green and purple, perched prominently on rough, beige rocks with a blurred, rocky background. +Pelagic_Cormorant_0008_23602.jpg The Pelagic Cormorant is captured mid-flight with glossy black plumage accented by iridescent greenish-blue on the neck, red at the base of the bill, a distinct white patch on the flank, and set against a blurry, wave-filled ocean background. +Pelagic_Cormorant_0038_23643.jpg The Pelagic Cormorant in the image is seen swimming in a rippling water environment, displaying iridescent black plumage with hints of green and purple, a slender neck, and a strikingly noticeable red facial patch. +Pelagic_Cormorant_0029_23545.jpg The Pelagic Cormorant displays iridescent black plumage with a slight greenish sheen, perched upright on rusty metal debris with a blurred, earthy background. +Pelagic_Cormorant_0012_23565.jpg The Pelagic Cormorant displays a sleek, dark plumage with iridescent greenish-black feathers, stands in profile view atop a rocky surface, featuring a slender neck, a sharply pointed bill, and a distinctive red patch at the face. +Pelagic_Cormorant_0011_23667.jpg A dark-plumed bird with glossy feathers extends its wings in a near-horizontal pose above rippling water, set against a sandy shoreline backdrop. +Pelagic_Cormorant_0064_23641.jpg A Pelagic Cormorant with dark, iridescent plumage is captured in flight with wings fully spread against a soft, muted water background, holding seaweed in its beak. +Pelagic_Cormorant_0054_23812.jpg The low-resolution image shows a Pelagic Cormorant with a sleek, dark plumage swimming in rippling blue water, with its long neck upright and its pointed bill slightly elevated, amidst subtle light reflections. +Pelagic_Cormorant_0093_23722.jpg The Pelagic Cormorant, seen swimming in a rippling blue-green water environment, exhibits a sleek black plumage with a subtle iridescent sheen, an elongated neck, and a slightly hooked beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions/026.Bronzed_Cowbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/026.Bronzed_Cowbird_descriptions.txt new file mode 100644 index 0000000..d339cfb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/026.Bronzed_Cowbird_descriptions.txt @@ -0,0 +1,10 @@ +Bronzed_Cowbird_0002_796244.jpg The bird displays a glossy black plumage with a metallic sheen, perched sideways on a branch with a blurred green and brown background, highlighting its distinctive red eyes. +Bronzed_Cowbird_0029_796256.jpg The Bronzed Cowbird in the image shows iridescent black plumage with hints of bronze, features a distinctive red eye, and is posed in profile view on a textured earthy ground with a blurred natural background. +Bronzed_Cowbird_0005_24173.jpg The Bronzed Cowbird appears perched with a side profile view, displaying iridescent blue wing feathers against a dark, textured body with distinct red eyes, set against a blurred green background. +Bronzed_Cowbird_0012_796247.jpg The bird displays a glossy black plumage with a subtle bronze sheen, a pronounced hooked beak, and vibrant red eyes, perched in a side view on a metal feeder amidst a blurry, neutral-toned background. +Bronzed_Cowbird_0089_796220.jpg The Bronzed Cowbird, seen in profile from the side, exhibits a glossy, iridescent black plumage with a slight bluish sheen, perched on a rough stone surface with a rocky background, and has a distinctive red eye. +Bronzed_Cowbird_0060_24082.jpg The Bronzed Cowbird, viewed head-on with outstretched wings, displays a glossy black plumage contrasted against a bright blue sky, perched amongst bare branches with its distinctive red eyes standing out. +Bronzed_Cowbird_0057_24074.jpg The Bronzed Cowbird is perched in profile on a bare branch, displaying a dark, iridescent plumage with a slight bronze sheen, red eye, and a clear blue sky background. +Bronzed_Cowbird_0054_24159.jpg The bird is perched on a cable against a plain blue background, exhibiting a dark glossy plumage with a noticeable red eye and is seen in a side profile view. +Bronzed_Cowbird_0092_796215.jpg The bird displays a glossy black plumage with a slight iridescence, standing in a side profile pose on a dirt and grassy ground, characterized by its red eyes and stout bill. +Bronzed_Cowbird_0018_24140.jpg A dark bird with iridescent black plumage and a striking red eye is standing on a grassy field, providing a side view with its tail extended and head turned slightly left. diff --git a/utils/area/descriptions/CUB/generated_descriptions/027.Shiny_Cowbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/027.Shiny_Cowbird_descriptions.txt new file mode 100644 index 0000000..5a7b914 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/027.Shiny_Cowbird_descriptions.txt @@ -0,0 +1,10 @@ +Shiny_Cowbird_0076_24363.jpg The Shiny Cowbird in the image is perched on a vertical cylindrical bird feeder, displaying a sleek, iridescent purple-black plumage with a slightly hunched posture, set against a soft-focus background with green foliage. +Shiny_Cowbird_0075_24335.jpg The Shiny Cowbird has a glossy, dark plumage with iridescent purple and black tones, seen in a side profile perched on a thin branch with a blurred natural background of green foliage and a wooden post. +Shiny_Cowbird_0014_24214.jpg The Shiny Cowbird is perched on large green leaves with a glossy black body and a contrasting deep brown head, viewed from a slight side angle with its head turned and a patch of sunlight highlighting its polished feathers. +Shiny_Cowbird_0066_24358.jpg The Shiny Cowbird appears perched in profile on a metallic cable, showcasing iridescent dark plumage with a slight blue sheen and a smooth texture against a clear blue sky background. +Shiny_Cowbird_0062_24271.jpg The Shiny Cowbird in the image is perched in profile against a clear blue sky, featuring a glossy, dark plumage with hints of iridescent purple, and is surrounded by blurred, green foliage in the foreground. +Shiny_Cowbird_0077_24273.jpg The Shiny Cowbird is perched on a mossy branch amidst a lush, leafy background, displaying its iridescent dark plumage and a distinctive conical beak, with a partially visible eye highlighted by a pale eye-ring. +Shiny_Cowbird_0024_24281.jpg The Shiny Cowbird in the image, shown in a profile view on grass, displays a uniformly dark, glossy plumage with a slightly iridescent sheen and a straightforward upright stance. +Shiny_Cowbird_0019_24323.jpg The bird, perched on a slender green stem against a clear blue sky, displays iridescent dark plumage with distinctive glossy textures and a slightly ruffled appearance, emphasizing its poised side profile. +Shiny_Cowbird_0070_796832.jpg A glossy, dark bird stands in a side profile pose on a textured, gravel-like surface, with a blurred background of earth tones and scattered foliage, highlighting its smooth plumage and slightly upturned tail. +Shiny_Cowbird_0034_796849.jpg The Shiny Cowbird is perched on a rough, sandy ground, displaying its glossy, dark plumage with a subtle iridescent sheen and a distinctive silhouette against the muted background of a puddle and textured surface. diff --git a/utils/area/descriptions/CUB/generated_descriptions/028.Brown_Creeper_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/028.Brown_Creeper_descriptions.txt new file mode 100644 index 0000000..a7b3ba7 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/028.Brown_Creeper_descriptions.txt @@ -0,0 +1,10 @@ +Brown_Creeper_0043_24549.jpg A small bird with mottled brown and white plumage clings vertically to a tree trunk, showcasing its slender, decurved bill and streaked head pattern against a blurred natural background. +Brown_Creeper_0061_24601.jpg The Brown Creeper, with its mottled brown and white streaked plumage, clings vertically to a tree trunk displaying a slightly curved posture, set against a textured bark with patches of lichens, highlighting its camouflaged appearance. +Brown_Creeper_0103_24632.jpg The Brown Creeper is clinging vertically to a tree trunk with its brown and white streaked plumage blending with the bark's texture, displaying a curved bill and a long tail partially fanned out. +Brown_Creeper_0007_24902.jpg A small bird with mottled brown and cream streaks clings vertically to the textured bark of a tree in a natural setting, with blurred green foliage in the background. +Brown_Creeper_0042_24578.jpg The bird is clinging vertically to a tree trunk, showcasing mottled brown and white plumage with a curved beak, against a blurred blue and gray background. +Brown_Creeper_0120_24955.jpg The Brown Creeper, camouflaged against the tree bark, features mottled brown and white plumage with a curved posture and distinctive long tail feathers, clinging vertically to a tree trunk in a natural forest background. +Brown_Creeper_0059_25010.jpg The Brown Creeper is camouflaged against the tree bark with mottled brown, beige, and white plumage, perched vertically and shown in profile view, blending seamlessly with its tree-trunk background. +Brown_Creeper_0106_24617.jpg A small bird with mottled brown and white speckled plumage clings vertically to the bark of a tree, with a long, slender bill pointing upwards against a blurred, natural background. +Brown_Creeper_0118_24500.jpg The Brown Creeper, with mottled brown and white plumage and a curved beak, clings vertically to the bark of a tree, blending with its textured and rugged environment while showcasing its white underparts. +Brown_Creeper_0072_24977.jpg The Brown Creeper is shown in a side profile view, with its brown, streaky plumage blending into the rough tree bark texture, featuring a distinct white underbelly and slightly curved, slender bill. diff --git a/utils/area/descriptions/CUB/generated_descriptions/029.American_Crow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/029.American_Crow_descriptions.txt new file mode 100644 index 0000000..7d1ae6d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/029.American_Crow_descriptions.txt @@ -0,0 +1,10 @@ +American_Crow_0117_25090.jpg The American Crow is seen in profile with glossy black feathers standing out against a textured, grassy background, characterized by its stout, straight bill and short, fan-shaped tail. +American_Crow_0109_25123.jpg The American Crow is standing on snow-dotted grass with a glossy black plumage, facing the viewer with a piece of food in its beak, showing stout legs and a background of scattered leaves and snow. +American_Crow_0119_25610.jpg The American Crow is perched on a tray of peanuts, showcasing its glossy black feathers and slightly open beak, amid a blurred green background. +American_Crow_0132_25704.jpg The American Crow is perched side-on atop a weathered wooden post, showcasing its glossy black plumage with a slight iridescent sheen, set against a clear blue sky and a faint, rusty barbed wire fence in the foreground. +American_Crow_0102_25066.jpg The American Crow appears in a side view perched on a wooden beam with a smooth, glossy black plumage, distinctive long beak, and fan-shaped tail against a clear blue sky background. +American_Crow_0113_25149.jpg The image depicts an American Crow standing in green grass, showcasing its glossy black feathers with a hint of bluish-purple iridescence, in a three-quarter side view that highlights its robust body and large, slightly curved beak. +American_Crow_0062_25587.jpg The American Crow is depicted in a side profile standing on a textured gray pavement, showcasing its uniformly smooth black plumage and stout bill against the muted background. +American_Crow_0012_25305.jpg The American Crow appears mostly black with a glossy texture, viewed from the side as it looks downward on a branch, set against a blurred background of pale sky and bare branches. +American_Crow_0111_25127.jpg The American Crow is standing in a grassy field, displaying its glossy black plumage with a slight iridescent sheen, its sharp beak clearly visible, set against a blurred natural backdrop that emphasizes the bird's sleek profile. +American_Crow_0039_25061.jpg The American Crow is captured from a side view, displaying its sleek black plumage with an iridescent sheen, standing on a wooden platform strewn with seeds against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/030.Fish_Crow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/030.Fish_Crow_descriptions.txt new file mode 100644 index 0000000..22b91c3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/030.Fish_Crow_descriptions.txt @@ -0,0 +1,10 @@ +Fish_Crow_0043_25847.jpg The Fish Crow in the image appears glossy black with a hint of iridescent blue, viewed in profile with its head slightly turned, perched atop a light surface against a background featuring blurred green foliage and white railings. +Fish_Crow_0025_25893.jpg The Fish Crow appears mostly black with subtly iridescent feathers in side profile, perched on a metal pole against a clear blue sky, with its slightly open beak and sharp features as distinguishing characteristics. +Fish_Crow_0081_25908.jpg The Fish Crow appears glossy black with hints of iridescence, perched at a slight angle on a wire against a clear blue sky, showcasing its slender body and distinctive short tail. +Fish_Crow_0005_25912.jpg The Fish Crow is mid-flight with glossy black feathers that reflect sunlight, seen from a frontal view with partially spread wings against a backdrop of lush green palm fronds. +Fish_Crow_0033_25915.jpg The Fish Crow displays a glossy black plumage with a smooth texture, seen in a side profile with head turned slightly forward, set against a blurred, light green background that highlights its compact beak and neatly layered feathers. +Fish_Crow_0003_25970.jpg The Fish Crow in the image is perched on dried grasses, exhibiting a glossy black plumage with a hint of iridescent blue, an open beak, and is viewed in profile against a blurry blue watery background. +Fish_Crow_0083_25949.jpg The 030.Fish Crow is silhouetted in flight against a pale sky, showcasing its sleek black plumage with outstretched wings revealing feathered edges and an open beak. +Fish_Crow_0076_25971.jpg The Fish Crow in the image, seen in a profile pose perched on a wooden post, has a glossy black plumage with subtle bluish tones, set against a blurred gradient background of sky and water. +Fish_Crow_0011_25866.jpg The Fish Crow is seen in a side profile view standing on grassy terrain, showcasing its glossy black plumage and slender build against a blurred, green and earthy backdrop. +Fish_Crow_0038_26000.jpg The Fish Crow is perched on a branch, displaying a glossy black plumage with iridescent hints on its wings, seen in a slight side profile against a blurry background of soft, light colors. diff --git a/utils/area/descriptions/CUB/generated_descriptions/031.Black_billed_Cuckoo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/031.Black_billed_Cuckoo_descriptions.txt new file mode 100644 index 0000000..62e0a9f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/031.Black_billed_Cuckoo_descriptions.txt @@ -0,0 +1,10 @@ +Black_Billed_Cuckoo_0090_26311.jpg The Black-billed Cuckoo in the image features a sleek, brown body with a white underside, held in a profile view revealing its distinct dark bill and red eye set against a plain, light background with a person's hand providing context and scale. +Black_Billed_Cuckoo_0093_795316.jpg The bird is perched on a branch with a brown back and head, a distinctive black bill, and white underparts, set against a blurred green foliage background. +Black_Billed_Cuckoo_0055_26223.jpg The Black-billed Cuckoo, viewed from the side, displays a sleek brown body with subtle feather texture, a distinctive red eye-ring, and a notably slender black bill, perched amidst a backdrop of leafy branches and scattered white blossoms. +Black_Billed_Cuckoo_0092_795313.jpg The 031.Black billed Cuckoo appears perched on a branch against a soft, blurred background of green foliage, with a sleek body, brown upperparts, and clean white underparts, highlighted by its long tail and distinctively dark bill. +Black_Billed_Cuckoo_0088_26217.jpg The Black-billed Cuckoo is perched sideways on a tree branch amidst green foliage, displaying its brown upperparts, white underparts with a smooth texture, and a distinctive red eye set against a muted, natural background. +Black_Billed_Cuckoo_0070_795310.jpg A Black-billed Cuckoo perches side-on on a lichen-covered branch, showcasing its smooth brown back, wings, a contrasting white underbelly, a distinctive red eye-ring, and a slender black bill against a blurred green background. +Black_Billed_Cuckoo_0061_795327.jpg The 031.Black billed Cuckoo in the image displays a smooth, brown plumage with a slightly lighter underbelly, viewed in a side profile with its red eye and black bill prominent against a blurred green background. +Black_Billed_Cuckoo_0081_26209.jpg The 031.Black billed Cuckoo is perched among green leaves and branches with a prominent red eye and sleek brownish wings, viewed in profile against a clear blue sky. +Black_Billed_Cuckoo_0087_795300.jpg The bird has a smooth, brown upper body and a pale underbelly with a distinctive black bill, seen in a side profile perched among dense green pine needles. +Black_Billed_Cuckoo_0054_26313.jpg The black-billed cuckoo is perched in a side profile on a slender branch, displaying a sleek, brown upper body with a contrasting pale underbelly, set against a background of sparse branches and faint greenery. diff --git a/utils/area/descriptions/CUB/generated_descriptions/032.Mangrove_Cuckoo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/032.Mangrove_Cuckoo_descriptions.txt new file mode 100644 index 0000000..74de528 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/032.Mangrove_Cuckoo_descriptions.txt @@ -0,0 +1,10 @@ +Mangrove_Cuckoo_0031_26401.jpg The Mangrove Cuckoo is perched sideways on a branch, showcasing its smooth, brown back and wings contrasting with a creamy yellow underbelly, against a lush, green leafy background with its long tail subtly barred in black and white. +Mangrove_Cuckoo_0038_794600.jpg The bird, perched on a mossy branch, displays a sleek gray upper body with a warm buff underside, a distinctive dark eye line, and a slightly curved black bill set against a blurred leafy background. +Mangrove_Cuckoo_0028_26358.jpg The Mangrove Cuckoo, perched on a branch, displays muted grey upperparts and pale underparts with a yellowish hue, framed by a verdant background of delicate, feathery leaves against a clear blue sky. +Mangrove_Cuckoo_0034_26415.jpg The Mangrove Cuckoo is perched amid dense, leafy branches showing a buff underbelly with grayish upperparts, and a distinctive black eye-line, set against a backdrop of lush, green foliage. +Mangrove_Cuckoo_0015_26380.jpg A Mangrove Cuckoo with a buff-colored underside and dark wings is perched diagonally on a branch amidst dense green foliage, displaying its distinctive curved bill and white eye stripe. +Mangrove_Cuckoo_0006_794626.jpg A Mangrove Cuckoo is perched on a branch amidst yellow and green leaves against a clear blue sky, displaying its creamy underparts, light gray upper body, and a striking black mask around its eyes. +Mangrove_Cuckoo_0051_794627.jpg The image shows a Mangrove Cuckoo perched among green leaves and branches, with a grayish-brown body, muted yellowish underparts, and a distinctive long tail, set against a bright, leafy canopy. +Mangrove_Cuckoo_0041_26370.jpg The image shows a Mangrove Cuckoo perched laterally among dense branches, with distinctive buff underparts, gray upperparts, a long tail, and surrounded by green foliage. +Mangrove_Cuckoo_0014_26388.jpg Amidst lush green foliage, the Mangrove Cuckoo perches laterally on a branch, displaying its pale underbelly, distinct black eye stripe, and sleek grayish upperparts against the vibrant leafy backdrop. +Mangrove_Cuckoo_0025_26375.jpg A Mangrove Cuckoo with a sleek gray head, curved black beak, and soft, tawny underparts is perched on a thin branch against a blurred green foliage background, highlighting its subtle white throat and contrasting dark tail feathers. diff --git a/utils/area/descriptions/CUB/generated_descriptions/033.Yellow_billed_Cuckoo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/033.Yellow_billed_Cuckoo_descriptions.txt new file mode 100644 index 0000000..c5699bd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/033.Yellow_billed_Cuckoo_descriptions.txt @@ -0,0 +1,10 @@ +Yellow_Billed_Cuckoo_0045_26685.jpg The Yellow-billed Cuckoo is perched sideways on a tree branch in a sunlit forest, showcasing its pale gray and brown plumage, distinctive yellow bill, and long tail with white spots, set against a background of blue sky and leafy foliage. +Yellow_Billed_Cuckoo_0048_26632.jpg The Yellow-billed Cuckoo displays a sleek, brownish-gray plumage with a slender, slightly downward-curved yellow bill, white underparts, and is perched horizontally on a branch within a lush green, leafy environment. +Yellow_Billed_Cuckoo_0036_26682.jpg Amidst a dense, sunlit canopy of yellow and green leaves, the Yellow-billed Cuckoo perches on a branch, showcasing its slender, elongated shape with a pale underside, dark upperparts, and a distinctly curved yellow bill. +Yellow_Billed_Cuckoo_0004_26790.jpg A Yellow-billed Cuckoo is perched on a branch amidst lush green foliage, showing a side profile with a slender brown body, white underparts, and its distinctive yellow bill clearly visible against the backdrop of a bright blue sky. +Yellow_Billed_Cuckoo_0027_26844.jpg The Yellow-billed Cuckoo is perched on a branch with a side profile view, displaying its distinctive brown upperparts, white underparts, long tail with white spots, and a yellow bill, set against a blurred natural background. +Yellow_Billed_Cuckoo_0097_26713.jpg The Yellow-billed Cuckoo is perched sideways on a branch amidst dense green foliage, displaying a smooth, grayish-brown upper body, white underparts, a characteristic yellow bill, and distinctly long tail feathers with pale tips. +Yellow_Billed_Cuckoo_0091_26428.jpg The Yellow-billed Cuckoo is perched in a side view, displaying its grayish-brown upper body with a soft texture, a white underbelly, and a distinct yellow lower mandible against a blurred, reddish-brown background. +Yellow_Billed_Cuckoo_0026_26794.jpg The Yellow-billed Cuckoo is perched sideways on a branch, showing its slender body, white underparts, and brownish upper body while its distinctive slightly curved yellow bill is partially visible amidst a backdrop of sparse, silhouetted leaves against a clear blue sky. +Yellow_Billed_Cuckoo_0022_26423.jpg The bird is perched on a wire fence with a backdrop of green grass, showcasing a sleek body with brown upperparts, a white underbelly, and a distinctive yellow lower mandible. +Yellow_Billed_Cuckoo_0009_26656.jpg The bird, viewed from the side, displays a brown upper body with a white underbelly, distinctive white spots on its tail, and is perched among tree branches in a lush, green forest environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions/034.Gray_crowned_Rosy_Finch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/034.Gray_crowned_Rosy_Finch_descriptions.txt new file mode 100644 index 0000000..ee01d13 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/034.Gray_crowned_Rosy_Finch_descriptions.txt @@ -0,0 +1,10 @@ +Gray_Crowned_Rosy_Finch_0068_27196.jpg The Gray-crowned Rosy Finch, perched on a white, curved structure against a bright background, displays a distinct gray crown, rich brown body with rosy highlights, and black feathers on the wings and tail, with a prominent black beak. +Gray_Crowned_Rosy_Finch_0046_797295.jpg The Gray-crowned Rosy Finch is perched on a mound with a side profile view, displaying a mottled brown and pinkish body, distinct gray head, and light belly, against a blurred natural background. +Gray_Crowned_Rosy_Finch_0061_26979.jpg The Gray-crowned Rosy Finch is perched on a branch, showcasing its characteristic brown and pink plumage with a gray cap, against a backdrop of blurred green and brown pine needles, with its head slightly turned. +Gray_Crowned_Rosy_Finch_0042_27143.jpg The Gray-crowned Rosy Finch, with its muted brown body and distinctive gray head, is perched sideways on a snowy surface in front of a blurred, snowy background, highlighting its unique rosy underparts and subtle wing pattern. +Gray_Crowned_Rosy_Finch_0016_27181.jpg The Gray-crowned Rosy Finch is perched on a railing, displaying its mottled brown plumage with a distinctive gray crown, against a blurred snowy background. +Gray_Crowned_Rosy_Finch_0047_797303.jpg The Gray-crowned Rosy Finch is perched on a log with a muted gray head, warm brown body feathers, and pale wing bars, set against a background of dry brown grasses and dark wooden debris. +Gray_Crowned_Rosy_Finch_0052_27032.jpg The Gray-crowned Rosy-Finch appears in a side profile stance on a grassy and earthy terrain, displaying a distinctive gray head, warm brown body with subtle pinkish tones, and contrasting patterned wings, highlighted by patches of purple wildflowers in the background. +Gray_Crowned_Rosy_Finch_0056_797293.jpg The Gray-crowned Rosy Finch is perched alertly on a dried plant against a neutral backdrop, displaying its reddish-brown body with pinkish accents on the wings and a distinct gray crown and black forehead. +Gray_Crowned_Rosy_Finch_0012_27062.jpg The Gray-crowned Rosy Finch is perched sideways on a branch, displaying a blend of brown and pinkish hues with a distinctive gray crown against a blurred natural background. +Gray_Crowned_Rosy_Finch_0024_27057.jpg The Gray-crowned Rosy Finch is perched upright on a weathered concrete surface, displaying its brown plumage with a distinct gray crown and darker face, set against a blurred, earthy-toned background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/035.Purple_Finch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/035.Purple_Finch_descriptions.txt new file mode 100644 index 0000000..a83f1cf --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/035.Purple_Finch_descriptions.txt @@ -0,0 +1,10 @@ +Purple_Finch_0014_27322.jpg The Purple Finch displays a reddish-pink plumage with a textured appearance, perched in an alert sideways pose on a branch, surrounded by a blurred natural green and brown background, with a distinctive slightly forked tail. +Purple_Finch_0081_27913.jpg The Purple Finch displays a mottled raspberry-red plumage with a subtle gradient fading into brownish wings, perched in a side profile against a blurry, neutral-toned background. +Purple_Finch_0096_27688.jpg The Purple Finch is captured from a front view on a ground scattered with seeds, showing its textured rose-red plumage with faint dark streaks on the back and head, and a distinctly curved beak. +Purple_Finch_0004_27565.jpg The Purple Finch is perched in profile on the edge of a snow-dusted bird feeder with a blend of deep raspberry pink and brown above, soft beige below, and a distinctive textured, streaked pattern; set against a blurred wintery background of snow and muted gray tones. +Purple_Finch_0036_27641.jpg The Purple Finch in side profile displays a vibrant raspberry-red head and chest with streaky brown wings and back, standing on a wet wooden surface scattered with black seeds against a blurred green background. +Purple_Finch_0006_27950.jpg The Purple Finch appears perched on a white metal rod against a grassy background, showcasing vibrant red plumage on its head and chest, with distinctive brown and white streaked wings and back, viewed from the side. +Purple_Finch_0110_27750.jpg A Purple Finch, with its vibrant raspberry plumage and mottled texture, is perched on a wet, dark rock amidst fallen autumn leaves, viewed from above with its head slightly turned. +Purple_Finch_0013_27506.jpg The Purple Finch, captured in profile with a rich raspberry-colored plumage and streaked wings, perches against a textured tree bark background, showcasing its distinctive notched tail and conical bill. +Purple_Finch_0082_27639.jpg A small bird seen from the front has a rosy-red head and chest, brown wings with streaks, and is perched on a snowy surface against a blurred background. +Purple_Finch_0032_27305.jpg The Purple Finch showcases a vibrant reddish-pink plumage with a streaked pattern, viewed from a side profile on a branch, set against a softly blurred, earthy-toned background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/036.Northern_Flicker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/036.Northern_Flicker_descriptions.txt new file mode 100644 index 0000000..0a46590 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/036.Northern_Flicker_descriptions.txt @@ -0,0 +1,10 @@ +Northern_Flicker_0077_28341.jpg The Northern Flicker is perched on a bare branch, displaying a speckled pattern with a mix of brown and black plumage, a distinctive black crescent on its chest, and a muted background of pale blue sky enhancing its perched profile. +Northern_Flicker_0059_28488.jpg The Northern Flicker has a light brown and white speckled body with a prominent black chest patch, viewed from the side perched on a wire against a plain white background, showcasing its orange under-tail feathers. +Northern_Flicker_0078_28338.jpg The Northern Flicker in the image, viewed from a side angle, displays a speckled chest with black spots and a brownish-gray head featuring a distinctive red patch on the nape, set against a natural background of earth and wooden elements. +Northern_Flicker_0057_28606.jpg The Northern Flicker displays a barred black and white back with a red nape patch, perched sideways on a tree branch against a blurred forest background. +Northern_Flicker_0016_28603.jpg A Northern Flicker with a speckled beige body and black markings stands in a stream surrounded by stones, showcasing a pointed beak and a red nape in a rocky, snowy background. +Northern_Flicker_0091_28799.jpg A Northern Flicker with a brown and black speckled back and wings, a red patch on its nape, and a distinctive barred tail is perched sideways on the rough, textured bark of a tree, surrounded by a blurred outdoor background. +Northern_Flicker_0054_28913.jpg The Northern Flicker is perched on grassy ground with a mottled gray and brown body, striking black crescent on the chest, speckled underparts, and a distinctive red patch on the nape. +Northern_Flicker_0138_28476.jpg The Northern Flicker is perched sideways on a wooden fence, showcasing its mottled brown and black speckled plumage with a distinctive red cheek patch, all set against a blurred green background. +Northern_Flicker_0035_28332.jpg The "036.Northern Flicker" is perched on a branch amidst foliage, displaying a speckled pattern of black on a buff-colored body with striking yellow flashes on its wings and tail, against a clear blue sky background. +Northern_Flicker_0095_28938.jpg The Northern Flicker features a speckled brown-and-black plumage with a distinctive red nape, is perched in a side view on a tree branch against a clear blue sky, and exhibits a visible yellowish undertail. diff --git a/utils/area/descriptions/CUB/generated_descriptions/037.Acadian_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/037.Acadian_Flycatcher_descriptions.txt new file mode 100644 index 0000000..9262c81 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/037.Acadian_Flycatcher_descriptions.txt @@ -0,0 +1,10 @@ +Acadian_Flycatcher_0017_795598.jpg The Acadian Flycatcher, viewed in a side profile, displays olive-green upperparts and pale underparts with a subtle crest, perched on a tree branch amid a blurred green and yellow leafy background, highlighting its distinct white eyering and two pale wingbars. +Acadian_Flycatcher_0058_795602.jpg The Acadian Flycatcher is perched on a branch in profile view, showcasing its olive-brown plumage with a paler underbelly, distinct white wing bars, and set against a blurred green background. +Acadian_Flycatcher_0028_795611.jpg The Acadian Flycatcher sits perched on a branch, displaying its olive-green and white plumage with distinct wing bars, set against a blurred green background, highlighting its small, upright posture and pointed beak. +Acadian_Flycatcher_0065_29070.jpg A small bird with olive-green plumage and lighter underparts is perched on a nest, surrounded by leafy foliage, with distinct wing bars visible despite the low resolution. +Acadian_Flycatcher_0007_795600.jpg The bird displays an olive-green plumage with subtle streaks on its wings, perched on a rugged branch against a blurred green background, showing its profile with a short, pointed beak. +Acadian_Flycatcher_0068_795590.jpg The Acadian Flycatcher in the image displays olive-brown plumage with subtle streaks on the wings, perched on a branch against a blurred natural background, allowing its distinct coloration and upright pose to stand out. +Acadian_Flycatcher_0040_795629.jpg The Acadian Flycatcher, perched on a thin branch, displays olive-green plumage with slightly contrasting white wing bars and a pale greyish underbelly, set against a blurred, muted natural background. +Acadian_Flycatcher_0035_795618.jpg An Acadian Flycatcher with olive-green plumage and a pale underbelly is perched sideways on a thin, horizontal branch, set against a blurred, dark forest background with dappled light. +Acadian_Flycatcher_0006_795595.jpg The Acadian Flycatcher is perched on a branch, showcasing its olive-green and white plumage with a faint eye-ring in a leafy, sun-dappled environment, captured from a side angle. +Acadian_Flycatcher_0056_29086.jpg The Acadian Flycatcher perches sideways on a branch with olive-green plumage, a pale eye-ring, and distinct wingbars, set against a blurred natural background with green foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/038.Great_Crested_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/038.Great_Crested_Flycatcher_descriptions.txt new file mode 100644 index 0000000..387b0f0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/038.Great_Crested_Flycatcher_descriptions.txt @@ -0,0 +1,10 @@ +Great_Crested_Flycatcher_0066_29488.jpg The Great Crested Flycatcher is perched profile on a lichen-covered branch, displaying a gray head with a slight crest, vibrant yellow belly, and olive-brown wings against a softly blurred forest background. +Great_Crested_Flycatcher_0107_29501.jpg The Great Crested Flycatcher is perched diagonally on a cable with its back facing the viewer, showcasing a prominent blend of olive-brown upperparts, a pale gray throat, and a yellow belly, set against a vibrant green, blurred leafy background. +Great_Crested_Flycatcher_0068_29416.jpg The Great Crested Flycatcher exhibits a mix of olive-brown and yellow plumage with a bushy crest, perched with a side view on a branch against a blurred green and brown natural backdrop. +Great_Crested_Flycatcher_0092_29583.jpg The Great Crested Flycatcher is perched upright on a branch, showcasing its olive-brown back, vibrant yellow belly, and ruffled crest, against a clear blue sky and surrounded by blurred branches. +Great_Crested_Flycatcher_0027_29532.jpg The Great Crested Flycatcher is perched sideways on a branch, displaying its olive-brown crest, gray throat, bright yellow belly, and rufous-tinted tail against a leafy, blurred green background. +Great_Crested_Flycatcher_0006_29362.jpg The Great Crested Flycatcher is perched sideways on a wooden surface with a muted brown and yellow body, clutching an insect in its beak against a textured tree trunk and leafy, shadowy background. +Great_Crested_Flycatcher_0009_29831.jpg The Great Crested Flycatcher is perched sideways on a wire with a green and blurred natural background, displaying a pale yellow belly, gray chest, and brownish head and wings, highlighted by a distinctive cinnamon tail and crest. +Great_Crested_Flycatcher_0004_29701.jpg The Great Crested Flycatcher in the image is perched sideways on a bare branch, displaying its olive-green back, yellow belly, and crest against a blurred green and beige background, highlighting its distinctive coloration even in low resolution. +Great_Crested_Flycatcher_0086_29518.jpg The Great Crested Flycatcher is perched sideways on a branch with its crest slightly raised, displaying a yellow belly, gray throat, and brown wings, set against a blurred background of lush green foliage, highlighting its distinctive silhouette and varied plumage despite the image's low resolution. +Great_Crested_Flycatcher_0048_29586.jpg The Great Crested Flycatcher, perched on a twisted tree branch, displays its olive-brown plumage with a pale gray chest and bright yellow belly against a clear blue sky. diff --git a/utils/area/descriptions/CUB/generated_descriptions/039.Least_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/039.Least_Flycatcher_descriptions.txt new file mode 100644 index 0000000..b6d9619 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/039.Least_Flycatcher_descriptions.txt @@ -0,0 +1,10 @@ +Least_Flycatcher_0077_30296.jpg The Least Flycatcher is perched on a thin branch, displaying a light gray chest with darker brown wings, a small, dark, rounded head with a slight eye-ring, and a blurred, green background enhancing its subtle features. +Least_Flycatcher_0033_30449.jpg A small bird with light olive-gray plumage, a pale underbelly, and white wing bars, perched sideways among bare brown branches against a soft-focus green and red-brown background. +Least_Flycatcher_0010_30149.jpg The Least Flycatcher appears perched on a branch against a blurred green background, displaying olive-gray plumage with subtle wing bars and an upright, alert posture. +Least_Flycatcher_0001_30221.jpg The Least Flycatcher is perched on a branch with a light olive-green and grayish fluffy plumage, viewed in a profile pose against a bright, blurred background, displaying distinct round dark eyes. +Least_Flycatcher_0026_30434.jpg The Least Flycatcher is perched sideways on a branch in a lush green environment, displaying muted olive-grey plumage with a distinct white eye ring and light underbelly, accentuated by faint wing bars and a slightly erect posture. +Least_Flycatcher_0093_30435.jpg The Least Flycatcher, perched on a branch against a clear blue sky, displays its olive-gray upperparts and pale underbelly, with distinctive white wingbars and a short bill among bright green leaves. +Least_Flycatcher_0065_30357.jpg A small bird with olive-brown upperparts, a pale eye ring, and lighter underparts is perched on a tree branch, set against a blurred, neutral-toned background. +Least_Flycatcher_0013_30240.jpg The Least Flycatcher is perched sideways on a slender branch, displaying its olive-brown plumage with subtle white wing bars and a pale, smooth underbelly, set against a soft blur of green foliage in the background. +Least_Flycatcher_0095_30277.jpg A small olive-brown bird with a faint eye ring and pale underparts perches upright on a weathered wooden fence amidst blurred greenery. +Least_Flycatcher_0064_30328.jpg The bird has a small, olive-brown body with a pale underbelly, perched sideways on a branch surrounded by thin twigs and greenery, with distinct white wing bars visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions/040.Olive_sided_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/040.Olive_sided_Flycatcher_descriptions.txt new file mode 100644 index 0000000..8582300 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/040.Olive_sided_Flycatcher_descriptions.txt @@ -0,0 +1,10 @@ +Olive_Sided_Flycatcher_0078_30752.jpg An Olive-sided Flycatcher perched on a bare branch is seen from a side profile, exhibiting a distinctive dark brown body with a pale underbelly and a sharply contrasting clear blue sky background. +Olive_Sided_Flycatcher_0061_30540.jpg The Olive-sided Flycatcher is perched side-on upon a lichen-covered branch, displaying its grayish-brown plumage with a white throat and belly, while set against a clear blue sky. +Olive_Sided_Flycatcher_0037_30784.jpg Perched against a clear blue sky, the Olive-sided Flycatcher displays its brownish upperparts with lighter, streaked underparts and is viewed from behind, highlighting its distinctive contrasting white patch on the sides and short, stubby tail. +Olive_Sided_Flycatcher_0022_30551.jpg The Olive-sided Flycatcher is perched on a tree branch, displaying a predominantly dark gray-brown plumage with a lighter throat and belly, posing in a side profile against a bright, blurred background. +Olive_Sided_Flycatcher_0023_796887.jpg The Olive-sided Flycatcher is perched on a thin branch, showcasing a dark olive-brown upper body with a contrasting clean white underbelly, set against a clear blue sky, with a distinctive tufted head and a slightly open beak. +Olive_Sided_Flycatcher_0054_30732.jpg The bird displays a greyish-brown plumage with a slightly darker head and wings, perched on a weathered tree stump, set against a backdrop of lush green pine needles, with a distinct white vertical chest patch visible. +Olive_Sided_Flycatcher_0001_30669.jpg The Olive-sided Flycatcher is perched sideways on a textured branch, displaying a mostly gray body with a light, slightly mottled chest, against a blurred green background that enhances its distinct crest and subtle wing pattern. +Olive_Sided_Flycatcher_0064_30485.jpg The Olive-sided Flycatcher is perched upright on a slender branch against a clear blue sky, displaying its dark upper body, pale underbelly, and distinctive side patches despite the image's low resolution. +Olive_Sided_Flycatcher_0020_796881.jpg A small bird perched on a white branch against a clear blue sky is seen in profile, featuring a distinct olive-brown back with lighter underparts, and a dark head with a slightly erect crest. +Olive_Sided_Flycatcher_0018_796882.jpg The olive-sided flycatcher is perched upright on a lichen-covered branch against a blurred green background, showcasing its grayish-brown plumage with a light underbelly and distinctively long wings. diff --git a/utils/area/descriptions/CUB/generated_descriptions/041.Scissor_tailed_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/041.Scissor_tailed_Flycatcher_descriptions.txt new file mode 100644 index 0000000..24bfc1c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/041.Scissor_tailed_Flycatcher_descriptions.txt @@ -0,0 +1,10 @@ +Scissor_Tailed_Flycatcher_0109_41720.jpg A Scissor-tailed Flycatcher with light grey and white plumage perched sideways on a branch, displaying its long, distinctive tail against a background of a grid-like structure and dappled light. +Scissor_Tailed_Flycatcher_0035_42025.jpg The Scissor-tailed Flycatcher perched on a post features light gray plumage with salmon-colored flanks and long, distinctive forked tail feathers, set against a blurred, earthy-toned background. +Scissor_Tailed_Flycatcher_0088_41700.jpg The Scissor-tailed Flycatcher is perched sideways on a rusted, horizontal metal rod against a blurred green background, showcasing its light gray head, long dark tail with white outer edges, and pale underbelly contrasted by darker wings. +Scissor_Tailed_Flycatcher_0119_41879.jpg The Scissor-tailed Flycatcher is perched on a wooden post, displaying its pale white head, soft gray body, and strikingly long forked tail with black and subtle salmon-pink tinges against a blurred earthy background, enhancing its elegant silhouette from a side view. +Scissor_Tailed_Flycatcher_0038_41649.jpg The bird features a pale gray head and breast with darker wings, sitting perched on a branch amidst a field with scattered yellow flowers and blurred greenery, accentuated by long, elegant tail feathers. +Scissor_Tailed_Flycatcher_0077_41688.jpg The Scissor-tailed Flycatcher is perched on a wire with its long, forked tail, exhibiting light grey upperparts, a white head, and soft salmon pink flanks, set against a clear blue sky background. +Scissor_Tailed_Flycatcher_0114_41704.jpg The Scissor-tailed Flycatcher is perched on a red fabric structure with its predominantly white head and breast contrasted by a dark upper body and notably elongated tail feathers, set against a blurred green background. +Scissor_Tailed_Flycatcher_0089_41810.jpg The Scissor-tailed Flycatcher, perched sideways on a branch against a clear blue sky, displays a light gray head, white underparts, pinkish sides, and long, forked tail feathers, with subtle dark markings on its wings. +Scissor_Tailed_Flycatcher_0008_41670.jpg A scissor-tailed flycatcher with soft gray and salmon hues perches laterally on a wire against a clear blue sky, showcasing its distinctively long, forked tail. +Scissor_Tailed_Flycatcher_0016_42111.jpg A Scissor-tailed Flycatcher is perched on a branch amid dry, grassy foliage, showing a light gray body with a long, distinctly forked tail and muted background blending with the subtle earthy tones. diff --git a/utils/area/descriptions/CUB/generated_descriptions/042.Vermilion_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/042.Vermilion_Flycatcher_descriptions.txt new file mode 100644 index 0000000..13d7841 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/042.Vermilion_Flycatcher_descriptions.txt @@ -0,0 +1,10 @@ +Vermilion_Flycatcher_0022_42559.jpg The Vermilion Flycatcher is perched on a branch displaying vibrant red plumage on its head and chest, with a contrasting dark back and wings, set against a blurred green and brown background. +Vermilion_Flycatcher_0020_42498.jpg A vibrant Vermilion Flycatcher perches sideways on a thin branch, displaying brilliant red plumage contrasted with dark gray wings and a blurred, natural background. +Vermilion_Flycatcher_0040_42398.jpg The Vermilion Flycatcher displays a vivid red plumage with a subtle crest and black wings, viewed from the side while perched on a slender branch against a clear blue sky and sparse leafy background. +Vermilion_Flycatcher_0034_42356.jpg The Vermilion Flycatcher displays a vibrant red plumage with contrasting dark wings and is perched in a lateral pose on a slender branch against a blurred, muted background. +Vermilion_Flycatcher_0005_42478.jpg A vibrant red bird with dark wings perched on a mossy branch, set against a blurred green background, facing slightly to the left. +Vermilion_Flycatcher_0023_42565.jpg The Vermilion Flycatcher perches prominently on a green, leafy branch, displaying a vivid red plumage on its head and underside, contrasting with its dark wings and tail, all set against a softly blurred pastel green background. +Vermilion_Flycatcher_0012_42253.jpg The Vermilion Flycatcher is perched on a rusty barbed wire against a blurred green background, showcasing its vibrant scarlet plumage with contrasting dark wings and a slight side profile pose. +Vermilion_Flycatcher_0069_42502.jpg The Vermilion Flycatcher in the image appears bright red with a contrasting dark brown or black back and wingtips, perched facing forward on a rust-colored metal surface against a blurred natural green background. +Vermilion_Flycatcher_0025_42248.jpg The Vermilion Flycatcher is perched on a bare branch against a plain white background, displaying vibrant red plumage with contrasting dark wings and head, viewed from a side angle. +Vermilion_Flycatcher_0067_42185.jpg The Vermilion Flycatcher, striking in its vivid red plumage with contrasting dark brown wings and tail, is perched in profile on a branch against a blurred background of greenery. diff --git a/utils/area/descriptions/CUB/generated_descriptions/043.Yellow_bellied_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/043.Yellow_bellied_Flycatcher_descriptions.txt new file mode 100644 index 0000000..eb832bf --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/043.Yellow_bellied_Flycatcher_descriptions.txt @@ -0,0 +1,10 @@ +Yellow_Bellied_Flycatcher_0054_42709.jpg The bird, perched on a thin branch amid leafy surroundings, displays a soft yellow belly with an olive-green back, a contrasting darker head, and delicate wing markings visible despite the low resolution. +Yellow_Bellied_Flycatcher_0016_795476.jpg The bird is perched sideways on a gray textured rooftop with a visible yellow patch on its underside and wings, blending softly with its predominantly olive-brown plumage. +Yellow_Bellied_Flycatcher_0018_795494.jpg The bird appears perched on a branch with a soft yellow belly, olive-green upperparts, and a slight crest on the head, set against a blurred forested background of greens and browns, highlighting its delicate features despite the low resolution. +Yellow_Bellied_Flycatcher_0035_795464.jpg The Yellow-bellied Flycatcher is perched side-on a branch, showcasing its olive-brown upperparts, muted yellow belly, and distinct white wing bars, set against a softly blurred, green background. +Yellow_Bellied_Flycatcher_0041_42719.jpg In the image, the Yellow-bellied Flycatcher is perched among bare branches, displaying soft olive-green plumage with a subtle yellowish tint on its belly, set against a blurred dark green background. +Yellow_Bellied_Flycatcher_0004_795513.jpg The Yellow-bellied Flycatcher perches on a branch in profile view, exhibiting olive-green plumage with a slightly yellow underside, a distinct white eye-ring, and a blurred green background. +Yellow_Bellied_Flycatcher_0038_795477.jpg The Yellow-bellied Flycatcher perches on a thin branch in a side view with a muted olive-green back, yellowish underparts, a small dark eye, and a slightly blurred green forest background. +Yellow_Bellied_Flycatcher_0037_795500.jpg The Yellow-bellied Flycatcher displays an olive-green back with a subtle yellow hue on its underparts, perched with a side profile on a lichen-covered branch against a blurred, verdant background, showcasing distinct wing bars and a small round head. +Yellow_Bellied_Flycatcher_0052_42621.jpg The Yellow-bellied Flycatcher displays a muted yellow underside with olive-brown upperparts and two distinct wing bars while perched on a branch in a natural, sunlit environment. +Yellow_Bellied_Flycatcher_0064_795466.jpg The Yellow-bellied Flycatcher perches on a slender branch in a frontal pose, showcasing its olive-green plumage with a yellow underbelly, set against a lush, leafy green background, emphasizing its small, delicate build. diff --git a/utils/area/descriptions/CUB/generated_descriptions/044.Frigatebird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/044.Frigatebird_descriptions.txt new file mode 100644 index 0000000..ec3504b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/044.Frigatebird_descriptions.txt @@ -0,0 +1,10 @@ +Frigatebird_0022_43457.jpg A dark-colored frigatebird with outstretched wings is seen in flight against a clear blue sky, displaying a distinctive forked tail and sharp silhouette from a frontal viewpoint. +Frigatebird_0112_43394.jpg A dark bird with a long wingspan and a slightly hooked beak is soaring against a clear blue sky, with a light patch visible on its chest and a forked tail faintly discernible. +Frigatebird_0006_43381.jpg The Frigatebird appears dark and sleek with a streamlined body and long, angular wings outstretched in flight over a textured, blue ocean surface, while it holds a small fish in its beak. +Frigatebird_0005_42828.jpg The frigatebird is silhouetted against a clear blue sky, with outstretched wings showing dark plumage and a lighter breast, revealing its forked tail from an underside, mid-flight perspective. +Frigatebird_0095_42785.jpg The frigatebird features a predominantly brown and white plumage with a distinctive long, curved pale beak, set against a blurred natural backdrop and highlighted by its puffed white chest feathers and sharp black wings, viewed from a close, side angle. +Frigatebird_0114_42807.jpg The 044.Frigatebird is depicted in flight with a smooth, dark body contrasted by white markings on its chest and head against a clear blue sky, showcasing its distinctive long, angular wings and curved bill. +Frigatebird_0080_43064.jpg The Frigatebird displays glossy black plumage with a prominent, inflated red throat pouch, and is perched among dry twigs and branches in a natural habitat. +Frigatebird_0001_43101.jpg A soaring bird with long, pointed black wings and a contrasting white breast, viewed from below against a clear blue sky, showcasing a forked tail and streamlined body. +Frigatebird_0049_43044.jpg The image shows a frigatebird in profile view with a striking glossy black plumage and a prominent, inflated bright red gular sac against a blurred natural background. +Frigatebird_0084_43006.jpg A black frigatebird with an inflated bright red throat pouch is soaring in flight against a clear blue sky, showcasing its long wings and forked tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions/045.Northern_Fulmar_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/045.Northern_Fulmar_descriptions.txt new file mode 100644 index 0000000..1420f9e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/045.Northern_Fulmar_descriptions.txt @@ -0,0 +1,10 @@ +Northern_Fulmar_0039_43689.jpg The bird appears to be a Northern Fulmar with mottled brown plumage, standing at an angle on a gravelly surface, with blurred head motion suggesting movement, and pink legs slightly bent. +Northern_Fulmar_0014_43895.jpg The Northern Fulmar appears with a pale gray body and white head, showcasing a slightly curved wing pose against a backdrop of dark ocean waves and a clear sky, with a distinctive stout bill visible. +Northern_Fulmar_0081_43912.jpg The Northern Fulmar, seen from the front with a slightly turned head, features a mix of light gray and white plumage with a distinctive chunky bill, floating on a calm blue ocean with gentle ripples. +Northern_Fulmar_0023_43809.jpg A Northern Fulmar glides low over the choppy dark-gray ocean, displaying a broad wingspan with mottled gray and brown plumage, set against a cloudy and overcast sky. +Northern_Fulmar_0029_44049.jpg The Northern Fulmar in the image appears with a grayish-brown plumage and subtle mottling, shown in a mid-flight pose with outstretched wings against a blurred blue oceanic background, featuring a distinctive short, stout bill. +Northern_Fulmar_0041_44013.jpg The image displays a Northern Fulmar with a dark, mottled brown plumage and pale bill, captured in flight from the side against a solid gray sky, highlighting its broad, pointed wings. +Northern_Fulmar_0019_43853.jpg The Northern Fulmar is depicted in flight with wings outstretched, showcasing a mottled grayish-brown plumage and pale wingtips against a rippled, gray ocean backdrop. +Northern_Fulmar_0083_43618.jpg A Northern Fulmar glides sideways in mid-air against a stark white background, displaying its slate-gray plumage with lighter underparts and pronounced wing edges. +Northern_Fulmar_0060_43813.jpg A Northern Fulmar in flight is seen from the side against a smooth, reflective water surface, displaying a light gray body with slightly darker wing tips and a distinct stout bill. +Northern_Fulmar_0010_44112.jpg The Northern Fulmar is depicted from a frontal viewpoint, with a plump body showcasing a mix of soft gray and white plumage, pink webbed feet, and a textured rocky ground in the background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/046.Gadwall_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/046.Gadwall_descriptions.txt new file mode 100644 index 0000000..5f1d45e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/046.Gadwall_descriptions.txt @@ -0,0 +1,10 @@ +Gadwall_0030_31855.jpg The Gadwall displays a mottled gray and brown plumage with a distinctive black patch near the tail, viewed in profile as it floats on a calm water surface, surrounded by a muted natural background. +Gadwall_0075_30892.jpg The Gadwall is seen in a side profile view resting on grass, displaying a mottled brown and gray body with a distinctively patterned chest and a black bill, set against a blurred grassy background. +Gadwall_0036_31760.jpg The Gadwall is seen in a side profile view floating on rippling blue water, showcasing a speckled gray-brown body with a distinct white patch on its wing. +Gadwall_0070_31187.jpg The Gadwall is seen from a side view, showing a complex pattern of brown-gray plumage with a distinctive white patch on its wing and a smooth, rippling water background. +Gadwall_0039_31013.jpg A Gadwall is swimming in calm water, showcasing its gray and brown mottled body with a distinct black rump, viewed from a side angle that highlights its subtle wing markings and orange-edged bill. +Gadwall_0097_30893.jpg The Gadwall in the image is displaying a side view in water with its head a warm brown, body a mix of gray and intricately patterned feathers, surrounded by a rippling, dark aquatic environment with faint reflections and vegetation. +Gadwall_0066_31557.jpg The Gadwall appears in a side view, showing off its mottled gray and brown plumage with distinct black undertail coverts, against a calm water background reflecting a serene environment. +Gadwall_0017_30979.jpg A Gadwall is seen from the rear with a grayish-brown body, a dark bill, and a distinctive black patch on the tail, gracefully swimming in a calm body of water against a blurred, neutral background. +Gadwall_0064_31504.jpg The Gadwall appears from a side view, floating on rippling blue water with a speckled gray-brown body, white and black wing markings, and a dark bill, set against a calm aquatic background. +Gadwall_0029_31637.jpg A Gadwall is swimming in the water, displaying a mix of gray and brown feathers with fine mottling, viewed from the side, against a reflective golden-green water environment with distinct ripples. diff --git a/utils/area/descriptions/CUB/generated_descriptions/047.American_Goldfinch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/047.American_Goldfinch_descriptions.txt new file mode 100644 index 0000000..04f9d1d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/047.American_Goldfinch_descriptions.txt @@ -0,0 +1,10 @@ +American_Goldfinch_0133_32802.jpg The American Goldfinch is perched on a green branch, displaying vibrant yellow plumage with black wings and cap, set against a plain white background. +American_Goldfinch_0045_31974.jpg A brightly colored bird with vibrant yellow plumage and a contrasting black cap and wings, perched prominently on a twisting wire against a backdrop of lush green leaves. +American_Goldfinch_0106_32182.jpg The American Goldfinch is perched on a branch among green foliage, displaying bright yellow plumage with a contrasting black cap and wings, and is viewed in profile with soft light illuminating its detailed textures. +American_Goldfinch_0086_31887.jpg The American Goldfinch is perched on a branch with a bright yellow body, a contrasting black cap and wings, and white wing bars, set against a lush green leafy background. +American_Goldfinch_0134_32409.jpg The American Goldfinch in the image has vivid yellow plumage with contrasting black wings and a hint of white markings, perched sideways on a tree branch amidst a lush, green, blurred forest background. +American_Goldfinch_0135_32107.jpg A bright yellow bird with black wings and a black cap stands on the edge of a stone fountain against a blurred green background. +American_Goldfinch_0003_32236.jpg The low-resolution image shows an American Goldfinch with bright yellow plumage, contrasting black wings with white markings, and a vivid orange beak, perched on a sandy ground scattered with dry grass and twigs. +American_Goldfinch_0089_32152.jpg The American Goldfinch displays bright yellow plumage with contrasting black wings and tail, perched in a side view on a barbed wire against a blurred green background, accentuated by a distinctive black cap and beady eyes. +American_Goldfinch_0122_32186.jpg The American Goldfinch is perched sideways on a curved green metal surface, displaying its bright yellow body, contrasting black and white wing patterns, and a distinct black cap against a soft, blurred background. +American_Goldfinch_0111_32022.jpg A brightly colored bird with vivid yellow plumage, black wings with white markings, and a black cap, is perched sideways on a small branch, surrounded by lush green leaves in the background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/048.European_Goldfinch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/048.European_Goldfinch_descriptions.txt new file mode 100644 index 0000000..d51c335 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/048.European_Goldfinch_descriptions.txt @@ -0,0 +1,10 @@ +European_Goldfinch_0100_794685.jpg The European Goldfinch is perched sideways on a black wire against a dark green blurred background, showcasing its bright red face, black and white head markings, beige body, and distinctive yellow wing patches. +European_Goldfinch_0006_794661.jpg The European Goldfinch, seen in a side profile on a branch above muddy ground, displays a striking red face mask with a black and white head, glossy black wings featuring bright yellow bars, and a subtly barred brown and white underside. +European_Goldfinch_0054_33169.jpg The bird, viewed in profile amidst green foliage, displays a striking red face with a contrasting black and white head, a bright yellow wing patch, and earthy brown body plumage. +European_Goldfinch_0025_794647.jpg The European Goldfinch, perched on a lichen-covered branch, showcases a striking red face, black and white head markings, yellow and black wing patterns, and a beige body, against a blurred, muted background. +European_Goldfinch_0074_33348.jpg The European Goldfinch is perched on a spiky dried plant, showcasing its vivid red face mask, contrasting with a mix of brown, white, and black plumage, and distinctive bright yellow wing patches, set against a blurred natural backdrop of light and dark blues. +European_Goldfinch_0046_33307.jpg The European Goldfinch, seen from a side view on a leafy green and yellow flowered background, displays a striking red face, black and white head pattern, with a vibrant yellow wing bar and a brown back. +European_Goldfinch_0041_794645.jpg The European Goldfinch is perched sideways on a bare twig against a blurred brown background, showcasing its vibrant red face mask, bright yellow wing bars contrasted with black and white wing patterns, and a warm brown back. +European_Goldfinch_0008_33153.jpg The European Goldfinch is perched on a thin branch against a leafy green background, displaying vibrant red on its face, a bold black and white head pattern, brown and white on the wings, and a notable yellow streak on its black wings. +European_Goldfinch_0090_794648.jpg The European Goldfinch in the image is perched on a branch, displaying its vibrant red face, striking black and white head pattern, a vivid yellow wing patch, and brown body, against a lush, green, foliage-dominated background. +European_Goldfinch_0107_794655.jpg The European Goldfinch is perched in a side view on a thin branch against a clear blue sky, showcasing its red face, white and black head, and soft brown and beige body plumage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/049.Boat_tailed_Grackle_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/049.Boat_tailed_Grackle_descriptions.txt new file mode 100644 index 0000000..bb1a90c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/049.Boat_tailed_Grackle_descriptions.txt @@ -0,0 +1,10 @@ +Boat_Tailed_Grackle_0028_33777.jpg The Boat-tailed Grackle, visible in a side profile with iridescent blue-black plumage, stands in shallow water with a subtle reflection, showcasing its long, keel-shaped tail and slightly curved beak against a muted, earthy shoreline background. +Boat_Tailed_Grackle_0011_34020.jpg The 049.Boat tailed Grackle in the image is captured in a side profile, showing its iridescent blue-black head and chest with a slightly brownish back and wings, standing on a grassy ground that is speckled with dirt, displaying its long, tapering tail prominently. +Boat_Tailed_Grackle_0056_33649.jpg The Boat-tailed Grackle displays iridescent blue and black plumage with a glossy texture, perched in a profile view on a tree branch amidst a sparse, leafless forest background. +Boat_Tailed_Grackle_0062_33650.jpg The Boat-tailed Grackle in the image displays glossy black plumage with a blue sheen, perched with an open beak against a soft-focused backdrop of leafy branches. +Boat_Tailed_Grackle_0030_33615.jpg The Boat-tailed Grackle is perched sideways on a branch in a natural setting, displaying iridescent dark plumage with hints of blue-green, against a blurred backdrop of brownish water and sparse greenery. +Boat_Tailed_Grackle_0113_33490.jpg The Boat-tailed Grackle, viewed from the side, displays a glossy brown coloration perched on tall green reeds, set against a blurred natural background with hints of blue and green. +Boat_Tailed_Grackle_0067_34032.jpg The Boat-tailed Grackle displays iridescent blue-black plumage with a glossy texture, seen in a profile view perched amongst green vegetation on a muddy ground. +Boat_Tailed_Grackle_0068_33387.jpg The Boat-tailed Grackle in the image appears with iridescent dark feathers and a slightly brownish head, captured in a side view on the ground amidst lush, green vegetation, highlighting its long tail and sleek body. +Boat_Tailed_Grackle_0043_33595.jpg The Boat-tailed Grackle displays an iridescent dark plumage with a striking bronze head and chest, captured in an upright pose on a blurred urban backdrop, with its distinctive long tail partly visible. +Boat_Tailed_Grackle_0097_33759.jpg The Boat-tailed Grackle displays a glossy black and iridescent blue plumage with a slightly open wing posture, perched on a weathered wooden post against a soft-hued, blurred natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/050.Eared_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/050.Eared_Grebe_descriptions.txt new file mode 100644 index 0000000..a770f3c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/050.Eared_Grebe_descriptions.txt @@ -0,0 +1,10 @@ +Eared_Grebe_0062_34249.jpg The Eared Grebe is depicted with a dark, textured body and neck against a glossy water background, featuring a striking red eye and partially erect head feathers viewed from the side. +Eared_Grebe_0068_34052.jpg The Eared Grebe is seen from a front-right angle, displaying dark plumage on its back and a lighter, speckled chest in a calm water setting, with a distinctive red eye and slight crest visible despite the low resolution. +Eared_Grebe_0079_34342.jpg The Eared Grebe, viewed from the side, displays a striking dark body with vibrant chestnut flanks and a distinctive tuft of golden feathers on its head, set against a backdrop of reflective water and reeds. +Eared_Grebe_0041_34157.jpg The Eared Grebe is depicted in a side profile view with a dark head and back, contrasting with a paler grayish body, gliding smoothly on a calm water surface that highlights its distinctive red eye and fine feathers. +Eared_Grebe_0053_34084.jpg A small water bird with striking black and reddish-brown plumage and distinctive fan-like feathers extending from behind its eyes is seen in a side view, floating on rippling water. +Eared_Grebe_0056_34098.jpg The Eared Grebe in the image displays dark, iridescent plumage with slightly ruffled texture, is viewed in profile swimming in dark water, and features a distinct red eye and a sharp, slender beak. +Eared_Grebe_0038_34321.jpg The Eared Grebe is depicted in a side profile with its black head and distinct red eye, featuring a crest of golden feathers against a backdrop of calm, rippling water, highlighting its dark, slightly iridescent plumage and streamlined body. +Eared_Grebe_0020_34131.jpg An Eared Grebe seen from the side features a sleek black body with chestnut sides, a distinctive crest of feathers on its head, vibrant red eyes, and is set against a calm water background. +Eared_Grebe_0058_34174.jpg The Eared Grebe, viewed in profile, features a dark head with striking orange eyes and golden ear tufts, sitting on rippling blue water, with a black back and subtle gray feather patterns along its neck and sides. +Eared_Grebe_0016_34334.jpg The Eared Grebe appears in profile with dark plumage, a striking red eye, and golden ear tufts, floating calmly on rippling blue water. diff --git a/utils/area/descriptions/CUB/generated_descriptions/051.Horned_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/051.Horned_Grebe_descriptions.txt new file mode 100644 index 0000000..5f128c3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/051.Horned_Grebe_descriptions.txt @@ -0,0 +1,10 @@ +Horned_Grebe_0102_34448.jpg The image shows a Horned Grebe in a lateral pose on a pebble-covered beach with a backdrop of gentle waves, characterized by its dark plumage with white and gray mottling and distinctive red eye. +Horned_Grebe_0076_34841.jpg The Horned Grebe displays a reddish eye set against a head with contrasting black and white markings, with its dark body partially submerged in the water, creating ripples around it against a muted grayish aquatic background. +Horned_Grebe_0017_35073.jpg The 051.Horned Grebe is shown in profile with striking red eyes, a dark cap, and a contrasting white face, floating on rippling blue water with its black-and-white plumage highlighted. +Horned_Grebe_0093_34720.jpg The Horned Grebe is captured in a side profile with its striking red eyes and distinctive golden tufts on its black head, set against rippling water, displaying a mix of dark and rust-colored plumage with a speckled texture. +Horned_Grebe_0019_34811.jpg The Horned Grebe, viewed from the side, showcases a striking plumage with a golden-tufted crown, a black head and neck, and rich chestnut body feathers, set against a serene watery background with gentle ripples. +Horned_Grebe_0006_34718.jpg Amidst a watery backdrop, the Horned Grebe is seen from a side angle, showcasing its distinctive black and reddish-brown plumage with a striking golden tuft above the eyes. +Horned_Grebe_0033_34736.jpg The Horned Grebe is seen in side profile floating on rippling blue water, featuring a distinct dark head, contrasting white cheeks, and a mottled grayish-brown body. +Horned_Grebe_0049_34779.jpg The Horned Grebe appears with a distinctive red eye and muted dark plumage on the back, white neck and breast, captured in a side view as it swims in a rippling grayish water body. +Horned_Grebe_0011_34687.jpg The Horned Grebe in side profile displays a striking black head with distinct red eyes, a golden stripe behind the eye, dark body plumage with a chestnut chest, and is swimming calmly on a smooth, reflective water surface. +Horned_Grebe_0101_35203.jpg A Horned Grebe is seen in side profile gliding smoothly on dark water, featuring a distinctive black back with contrasting white cheeks and neck, highlighted by red eyes and a subtle brownish-gold feather texture around the head. diff --git a/utils/area/descriptions/CUB/generated_descriptions/052.Pied_billed_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/052.Pied_billed_Grebe_descriptions.txt new file mode 100644 index 0000000..7ec85a3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/052.Pied_billed_Grebe_descriptions.txt @@ -0,0 +1,10 @@ +Pied_Billed_Grebe_0115_35362.jpg The Pied-billed Grebe appears in a side pose with a brownish, textured body and a notable ring around its bill, partially submerged in a tranquil water setting with a muted, reflective background. +Pied_Billed_Grebe_0096_35579.jpg The Pied-billed Grebe in the image has a mottled dark brown texture with a pale bill, is viewed from the side swimming in calm water, and features faint ripples and reflections with a mostly gray and greenish background. +Pied_Billed_Grebe_0070_35472.jpg The Pied-billed Grebe is seen in a profile view on calm water, showcasing its brown and slightly speckled plumage with a distinct white bill ring, while the smooth water surface reflects its silhouette. +Pied_Billed_Grebe_0120_35764.jpg The Pied-billed Grebe, viewed frontally with wings raised, displays a mix of brown and gray feathers with a distinctive ringed bill, set against a calm blue water backdrop. +Pied_Billed_Grebe_0081_35409.jpg The Pied-billed Grebe is seen from the side, displaying its brown and white plumage with a distinctive thick bill, against a calm, reflective water surface that mirrors its compact, buoyant body. +Pied_Billed_Grebe_0076_35432.jpg The Pied-billed Grebe is depicted with mottled brown and grey plumage featuring a distinctively thick, pale bill in a side view, set against a background of tall green reeds and reflected water surfaces, indicative of its wetland habitat. +Pied_Billed_Grebe_0005_35437.jpg The Pied-billed Grebe in the image is observed from a side profile view, featuring a mottled brown and gray plumage with a distinctive lighter patch near the rear, nestled in a rippling water environment. +Pied_Billed_Grebe_0068_35963.jpg In a side view amidst rippling water, the grebe features a dark, mottled plumage with a pale, distinct band encircling its bill, and a faint chestnut tone visible on its neck and flanks. +Pied_Billed_Grebe_0064_35843.jpg The Pied-billed Grebe, seen from a near side view in calm, rippling water, showcases its mottled brown and gray plumage with a distinctive light-colored bill and subtle facial markings against a blurred wetland background. +Pied_Billed_Grebe_0044_35425.jpg The Pied-billed Grebe, observed in profile, exhibits a dark brown plumage with a lighter chest, distinct white undertail feathers, and a characteristic stubby bill, navigating through rippling blue water under natural light. diff --git a/utils/area/descriptions/CUB/generated_descriptions/053.Western_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/053.Western_Grebe_descriptions.txt new file mode 100644 index 0000000..29a1c54 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/053.Western_Grebe_descriptions.txt @@ -0,0 +1,10 @@ +Western_Grebe_0061_36181.jpg The Western Grebe features a sleek black and white plumage with a long, thin neck, distinct red eyes, and a pointed yellow bill, elegantly poised as it glides across calm, reflective water. +Western_Grebe_0004_36130.jpg A Western Grebe with a long yellow bill, striking red eyes, and distinct black-and-white plumage is gracefully swimming in a light rippled water environment, showcasing its elegant neck and streamlined body. +Western_Grebe_0075_36435.jpg A Western Grebe with a black cap, long yellow bill, and distinctive red eyes is floating on calm blue water, reflecting its sleek, white-and-grey body while creating gentle ripples around it. +Western_Grebe_0034_36149.jpg A Western Grebe with a long, slender neck, and contrasting black-and-white plumage is seen in a side profile view on calm water, with a distinct red eye, an orange-yellow bill, and rippling reflections in the background. +Western_Grebe_0057_36157.jpg A Western Grebe is shown in profile view gliding on blue water, featuring a long yellow bill, a striking red eye, and a distinctive black and white head and neck pattern with a sleek, gray-bodied texture. +Western_Grebe_0017_36218.jpg The 053.Western Grebe is shown in side profile gliding through rippling water with its distinctive long neck, sleek black and white plumage, vibrant red eyes, and pointed yellow bill, against a blurred aquatic background. +Western_Grebe_0022_36148.jpg The image shows a Western Grebe with a sleek black-and-white plumage, elongated neck, striking red eye, and sharp yellowish bill, partly submerged in rippling dark water. +Western_Grebe_0067_36610.jpg The Western Grebe is depicted swimming in water with rippling blue and golden reflections, exhibiting a contrasting black and white plumage with a pointed yellow bill and red eyes, captured in a side profile. +Western_Grebe_0037_36469.jpg The Western Grebe in the image is seen in a left side profile with a prominent black cap and a slender, long neck; its body is mostly dark gray with a white underside, and it is navigating through calm, reflective water. +Western_Grebe_0001_36481.jpg The Western Grebe displays a distinctive elongated neck and slim body with a black-and-white plumage pattern, a striking red eye, a sharp yellowish beak, and its posture reflects a lateral view gliding smoothly on a greenish water surface with scattered debris. diff --git a/utils/area/descriptions/CUB/generated_descriptions/054.Blue_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/054.Blue_Grosbeak_descriptions.txt new file mode 100644 index 0000000..509cde4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/054.Blue_Grosbeak_descriptions.txt @@ -0,0 +1,10 @@ +Blue_Grosbeak_0020_36967.jpg The 054.Blue Grosbeak is depicted in a side view perched on a wooden surface, showcasing vibrant blue plumage with hints of darker and lighter shades and a distinguished seed in its beak. +Blue_Grosbeak_0023_37069.jpg The 054.Blue Grosbeak is perched side-on at a wooden bird feeder with a background of mixed seeds, showcasing its deep blue and rusty-brown plumage with distinctive blue wing bars and subtle streaks. +Blue_Grosbeak_0067_36965.jpg The Blue Grosbeak, perched on tall seed spikes against a blurred green background, displays vibrant blue plumage with subtle chestnut wing bars, a stout bill, and a slightly puffed body. +Blue_Grosbeak_0031_37173.jpg The blue grosbeak, perched laterally on a diagonal bamboo stick, displays vibrant blue plumage with reddish-brown wing bars, set against a lush green grassy background and dry, earthy ground. +Blue_Grosbeak_0086_36818.jpg The Blue Grosbeak features a vivid blue plumage with hints of rust on its wings, standing upright on a pebbled ground with its shadow cast to the right, against a primarily earthy background. +Blue_Grosbeak_0079_36656.jpg The 054.Blue Grosbeak appears perched on green foliage with a rich royal blue plumage accentuated by chestnut wing bars, viewed in profile against a softly blurred green and yellow background. +Blue_Grosbeak_0107_36696.jpg The 054.Blue Grosbeak, perched sideways on a light-colored stump against a blurred green background, displays vibrant blue plumage with hints of chestnut on its wings and a stout, conical bill. +Blue_Grosbeak_0038_37095.jpg The Blue Grosbeak is perched sideways on a rusty metal post in a natural, blurred brownish background, showcasing its vivid blue feathers with a distinctive rusty wing patch and a stout, pointed beak. +Blue_Grosbeak_0066_36632.jpg The Blue Grosbeak is perched on a branch, displaying vibrant blue plumage with rusty wing bars against a blurred, natural green and brown background, highlighting its stout bill and upright pose. +Blue_Grosbeak_0073_37148.jpg The Blue Grosbeak is perched on the edge of a dirt mound, displaying its vivid blue plumage accented with chestnut wingbars against a blurred earthy and grassy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/055.Evening_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/055.Evening_Grosbeak_descriptions.txt new file mode 100644 index 0000000..be4f642 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/055.Evening_Grosbeak_descriptions.txt @@ -0,0 +1,10 @@ +Evening_Grosbeak_0070_37767.jpg An Evening Grosbeak with vibrant yellow plumage, black wings, and a distinctive pale beak is perched on a sandy ground, illuminated by sunlight with a blurred tree and bird feeder in the background. +Evening_Grosbeak_0115_37490.jpg In the image, a bird with a yellow and black body, prominent white wing patches, and a thick beak is perched on a branch with budding leaves against a blurred natural background. +Evening_Grosbeak_0132_38025.jpg The Evening Grosbeak is perched in a side view on a bare tree branch with a snowy background, showcasing its yellow body, brownish wings with white patches, and distinct thick yellow beak. +Evening_Grosbeak_0101_37697.jpg A bird with vibrant yellow and brown plumage, a thick white beak, and black wings with white patches is perched sideways on a rain-splattered wooden surface, set against a lush green leafy background. +Evening_Grosbeak_0075_37302.jpg The Evening Grosbeak is perched on a tree branch, showcasing a striking yellow and black plumage with a prominent white wing patch, set against a blurred natural background of green pine needles. +Evening_Grosbeak_0057_37392.jpg The Evening Grosbeak is perched profile view on a branch, showcasing its vibrant yellow and black plumage with contrasting white wing patches, set against a blurred natural background of muted tones and green leaves. +Evening_Grosbeak_0112_37922.jpg The Evening Grosbeak displays a vibrant yellow body with a contrasting black and white wing pattern, viewed from a side profile on a branch against a blurred, natural background, highlighting its prominent thick bill and expressive face. +Evening_Grosbeak_0041_37928.jpg The Evening Grosbeak in the image features vibrant yellow and dark brown plumage with distinctive black and white wings, its stout beak visible as it stands in a side profile on a gravelly ground. +Evening_Grosbeak_0016_37613.jpg The Evening Grosbeak in the image is perched on a branch, displaying a rich blend of yellow and brown plumage with a bold white patch on the wing, a prominent black crown, and a stout, pale bill, set against a blurred background with hints of green and brown. +Evening_Grosbeak_0072_37301.jpg The bird displays a vivid yellow and brown plumage with a prominent black and white wing pattern, captured in a side profile while perched on a snowy surface with seeds scattered around. diff --git a/utils/area/descriptions/CUB/generated_descriptions/056.Pine_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/056.Pine_Grosbeak_descriptions.txt new file mode 100644 index 0000000..f682bbc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/056.Pine_Grosbeak_descriptions.txt @@ -0,0 +1,10 @@ +Pine_Grosbeak_0115_38330.jpg The Pine Grosbeak is perched on a branch among red berries, displaying a vivid red and grey plumage with dark wings, seen from a side view, set against a blurred background of branches and white sky. +Pine_Grosbeak_0043_38992.jpg The Pine Grosbeak, perched side-on amidst red berries and slender branches, displays a vibrant reddish-pink plumage on its head and breast, fading into a softer gray on its wings and tail, with a textured appearance that complements the muted, natural background. +Pine_Grosbeak_0025_38443.jpg A reddish-orange bird with a plump body and stout beak is perched amid leafless branches dotted with small red berries, viewed in a side profile. +Pine_Grosbeak_0078_38242.jpg The Pine Grosbeak in the image is perched on a branch, displaying a gray body with a reddish-brown head, distinct wing markings, and is set against a background of leafless branches with red berries. +Pine_Grosbeak_0035_38729.jpg A Pine Grosbeak with vibrant red plumage and subtle grey tones perches laterally on a bare, dark branch against a clear blue sky, highlighting its stout, conical beak and fluffy feather texture. +Pine_Grosbeak_0006_38421.jpg The bird displays a vibrant reddish-pink plumage with subtle gray wings and tail, perched sideways on a slender, leafless branch against a muted, blurry background. +Pine_Grosbeak_0033_38945.jpg The Pine Grosbeak appears perched in profile among a tangle of red-berried branches, displaying a soft pink and gray plumage with a stout build against a bright sky backdrop. +Pine_Grosbeak_0050_38475.jpg This Pine Grosbeak is perched in a lateral pose against a snowy white backdrop, showcasing its rosy-red plumage with black and white wing patterns and a hint of gray on the underparts. +Pine_Grosbeak_0082_38552.jpg The Pine Grosbeak is seen in profile view standing on snow, showing its brown head, gray wings with prominent white wing bars, and a rounded body. +Pine_Grosbeak_0088_38830.jpg The Pine Grosbeak is perched on a slender branch against a snowy backdrop, displaying a vivid red plumage with subtle streaks and a slightly fluffy texture, complemented by its grayish belly and distinctive black markings around the beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions/057.Rose_breasted_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/057.Rose_breasted_Grosbeak_descriptions.txt new file mode 100644 index 0000000..352a3f3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/057.Rose_breasted_Grosbeak_descriptions.txt @@ -0,0 +1,10 @@ +Rose_Breasted_Grosbeak_0084_39053.jpg The bird has a striking black head, white underbelly, and distinctive bright rose-red patch on its chest, perched with a side view on a metallic feeder, against a blurred green background. +Rose_Breasted_Grosbeak_0114_39770.jpg The Rose-breasted Grosbeak displays a vibrant red chest contrasting with its black head and beak, white underparts and patches on wings while perched on a wooden surface against a blurred green background. +Rose_Breasted_Grosbeak_0088_39035.jpg A Rose-breasted Grosbeak is perched on a thin branch against a blurred, soft-toned background, displaying a striking black head and back, a vivid red breast, and white underparts with distinct white wing markings. +Rose_Breasted_Grosbeak_0012_39149.jpg The bird, perched on a textured branch, showcases a distinctive red breast against its black head and white underparts, with a blurred green background enhancing the vivid coloration. +Rose_Breasted_Grosbeak_0001_39801.jpg A bird with a striking red breast contrasted against a black head and white underbelly perches in profile view on a metal stand of a bird feeder filled with seeds, set against a soft-focus green background. +Rose_Breasted_Grosbeak_0063_39802.jpg The Rose-breasted Grosbeak perches sideways on a branch with a distinctive black head, vibrant rose-red breast, and white underparts, set against a blurred green forest background. +Rose_Breasted_Grosbeak_0077_39613.jpg The bird has a black head and back with white markings, a striking red breast, and a robust pale beak, perched in a side view against a blurred green background with a hint of blue structure beneath. +Rose_Breasted_Grosbeak_0020_39152.jpg The Rose-breasted Grosbeak is perched on a branch facing left, displaying its distinctive black head, bold red chest patch, white underparts, and black wings with white patches against a blurred green background. +Rose_Breasted_Grosbeak_0106_39714.jpg The Rose-breasted Grosbeak perches side-on against a blurred green background, displaying a striking red breast, contrasting with black and white plumage and sleek feather texture. +Rose_Breasted_Grosbeak_0125_39597.jpg The Rose-breasted Grosbeak is perched on a branch, featuring a striking black head and back with a vivid rose-red patch on its chest, contrasting against its white underparts, with a blurred green and brown background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/058.Pigeon_Guillemot_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/058.Pigeon_Guillemot_descriptions.txt new file mode 100644 index 0000000..7424f36 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/058.Pigeon_Guillemot_descriptions.txt @@ -0,0 +1,10 @@ +Pigeon_Guillemot_0073_40209.jpg The Pigeon Guillemot in the image is a dark bird with a smooth black texture and a distinctive white wing patch, seen swimming on rippling water, with its red feet just visible above the surface. +Pigeon_Guillemot_0105_40078.jpg Perched on a rock, the Pigeon Guillemot displays its striking black plumage accented with white wing patches and speckled texture, set against a blurred backdrop of green foliage. +Pigeon_Guillemot_0103_39882.jpg A Pigeon Guillemot, with sleek black plumage, prominent white wing patches, and vivid red legs, is captured mid-flight over rippling gray water, displaying its outstretched wings and splash behind. +Pigeon_Guillemot_0005_40375.jpg The bird displays a dark plumage with bright orange feet, emerging from a black cylindrical container, set against a background of rocks and green grass. +Pigeon_Guillemot_0084_40217.jpg The Pigeon Guillemot is perched in a side view with its distinct spotted black and white plumage, red legs, and a rocky background against dark water. +Pigeon_Guillemot_0081_40339.jpg The Pigeon Guillemot, in a side view pose, exhibits striking black plumage with contrasting white wing patches, vibrant red legs and feet as it takes flight low over a reflective water surface, scattering droplets in a clear, serene marine environment. +Pigeon_Guillemot_0020_40088.jpg The Pigeon Guillemot is perched on a rocky background with its sleek black body contrasting against white wing patches and vivid red feet, viewed from the side. +Pigeon_Guillemot_0092_39864.jpg The Pigeon Guillemot in the image is captured in a side profile with its distinctive black plumage, speckled with subtle white patterns, set against a muted, rocky background. +Pigeon_Guillemot_0053_39876.jpg The Pigeon Guillemot is seen from behind, displaying its dark plumage with striking white wing patches, set against a textured blue water background, holding a large, light-colored fish in its beak with hints of red peeking from its feet. +Pigeon_Guillemot_0098_39902.jpg The Pigeon Guillemot in the image stands on a rocky surface, showcasing its black plumage with a striking white patch on its wings, contrasting with its vivid red feet, all enhanced by a backdrop of textured stone and shallow water. diff --git a/utils/area/descriptions/CUB/generated_descriptions/059.California_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/059.California_Gull_descriptions.txt new file mode 100644 index 0000000..fdf6c10 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/059.California_Gull_descriptions.txt @@ -0,0 +1,10 @@ +California_Gull_0066_41188.jpg A California Gull, featuring a mix of gray and white plumage with a distinctive yellow beak, is perched on a rock amidst low green vegetation by a serene water body. +California_Gull_0055_41218.jpg A California Gull is captured in mid-flight with its wings fully spread, showcasing a mostly white body with gray and dark-tipped wings against a blurred waterside background featuring boats and dock elements. +California_Gull_0046_41209.jpg The California Gull has mottled gray and white plumage with a slight sheen, is perched with a rear three-quarters view on a sandy shore, showcasing its yellow legs and black wingtips against a blurred horizon and sky. +California_Gull_0029_41506.jpg The California Gull is depicted striding along a sandy beach with its light gray wings, white body, and characteristic yellow bill and legs, contrasted against the smooth, wet sand with patches of sea foam. +California_Gull_0103_41044.jpg A California Gull is standing on a paved surface with its body displaying smooth white plumage on the head and underparts, contrasted by gray wings, showcasing distinct yellow legs and a yellow bill with a black spot near the tip. +California_Gull_0012_41272.jpg The California Gull is seen in profile, showing light gray and white plumage contrasted against a rocky shoreline and water, with its long wings folded neatly along its body and casting a distinct shadow on the concrete ledge. +California_Gull_0096_40978.jpg A California Gull is soaring against a clear blue sky with white and gray plumage, slightly outstretched wings, and distinct black tips on the wings. +California_Gull_0076_40788.jpg The California Gull stands on a stone fountain with water droplets, displaying a side profile with a white head, dark gray wings, and pink legs against a blurred neutral background. +California_Gull_0006_41079.jpg The bird, standing in profile on a metal railing against a blurred blue water background, has a white head and underparts with contrasting dark grey wings, a distinctive yellow-orange beak, and pink legs. +California_Gull_0105_41116.jpg A California Gull is standing on a muddy shoreline with its mottled gray and white plumage and bright yellow beak, holding a brown fish, against a backdrop of water and scattered stones. diff --git a/utils/area/descriptions/CUB/generated_descriptions/060.Glaucous_winged_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/060.Glaucous_winged_Gull_descriptions.txt new file mode 100644 index 0000000..e0ab2bc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/060.Glaucous_winged_Gull_descriptions.txt @@ -0,0 +1,10 @@ +Glaucous_Winged_Gull_0060_44215.jpg The Glaucous-winged Gull stands in shallow water with mottled white and gray plumage, a slightly hunched pose, and a light gray background of rippling water. +Glaucous_Winged_Gull_0086_44268.jpg A gull with soft gray plumage and light wingtips is captured in an outstretched, gliding position against a blurred, earthy-toned background. +Glaucous_Winged_Gull_0110_44377.jpg The Glaucous-winged Gull displays muted gray wings with lighter patches, a white-patched head, and a yellow-tipped bill, as it stands with wings partially outstretched against a blurred backdrop of water and foliage. +Glaucous_Winged_Gull_0028_44628.jpg The Glaucous-winged Gull, seen in side profile on a white railing with water and blurred urban structures in the background, displays a mottled gray and white plumage with a gray wing mantle and pale pinkish legs. +Glaucous_Winged_Gull_0051_44543.jpg The Glaucous-winged Gull stands in a shallow, rippled water environment with a pale gray back and wings blending into its white body, featuring a stout, yellow bill and showing slight mottling on the head, viewed from the side. +Glaucous_Winged_Gull_0012_44264.jpg A Glaucous-winged Gull stands in a side profile with muted gray wings and a pale mottled texture, set against a grassy, earth-toned environment. +Glaucous_Winged_Gull_0002_44612.jpg The bird is perched on a metallic surface with a dark green background, displaying mottled gray plumage with a darker, curved bill and standing in a sideways pose highlighting its wings and back. +Glaucous_Winged_Gull_0057_44807.jpg The Glaucous-winged Gull is depicted in a side profile on a grassy field with white daisies, showcasing a grey back with subtle feather texture, a distinct yellow beak, pale grey wings, and white head and tail feathers. +Glaucous_Winged_Gull_0126_44761.jpg The Glaucous-winged Gull appears in a side profile view with light gray wing feathers and a white head, perched on a rocky surface by a calm, muted blue body of water, while preening its feathers. +Glaucous_Winged_Gull_0087_44550.jpg The Glaucous-winged Gull is perched on dark, seaweed-covered rocks with a backdrop of grayish-green water, showcasing a predominantly white head and body with soft gray wings, a robust yellow bill, and pink legs, facing to the right. diff --git a/utils/area/descriptions/CUB/generated_descriptions/061.Heermann_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/061.Heermann_Gull_descriptions.txt new file mode 100644 index 0000000..cc2ff18 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/061.Heermann_Gull_descriptions.txt @@ -0,0 +1,10 @@ +Heermann_Gull_0079_45468.jpg The Heermann Gull stands on a rocky, textured surface with a smooth gray body, a distinctive white head, and a bright red bill, viewed from the front with a blurred sandy coastal background. +Heermann_Gull_0130_45700.jpg The Heermann's Gull is perched on a rocky surface, showcasing its smooth, gray plumage with a white head, distinctive bright red bill tipped with black, and a contrasting dark tail, set against a blurred watery background. +Heermann_Gull_0076_45597.jpg The Heermann Gull is depicted in a side profile walking pose, showcasing its gray body with a white head and distinct red bill, set against a smooth sandy beach background with minimal texture. +Heermann_Gull_0141_45391.jpg The Heermann Gull in the image has a smooth grey body and head with a striking orange bill, standing in a profile view against a sandy, blurred background. +Heermann_Gull_0043_45939.jpg The Heermann's Gull is perched on a rocky surface with a smooth, gray body, white head, and bright red bill, against a blurred background of moss-covered rocks. +Heermann_Gull_0015_41392.jpg The Heermann's Gull has a smooth gray body, white head, and bright red bill, standing in a side pose on a rocky surface with a sandy beach and blurred human figures in the background. +Heermann_Gull_0139_45749.jpg The Heermann's Gull displays a grey body with slightly darker wingtips and a contrasting white head, featuring a bright red bill, standing in profile on a rocky shore with seaweed and blurred water in the background. +Heermann_Gull_0098_45753.jpg The Heermann's gull is perched on a sandy background with a smooth gray body, a distinctive darker mantle, and a red bill tipped with black, standing in a relaxed pose facing slightly to the side. +Heermann_Gull_0044_45705.jpg A Heermann's Gull stands on wet sand by the ocean with waves crashing behind it, showcasing a distinctive red bill, smooth gray body, and mottled white and gray head, viewed from side-back, highlighting its poised stance. +Heermann_Gull_0032_45774.jpg The Heermann's Gull is perched with a profile view displaying smooth gray plumage, a striking red bill, and a white head against a background of textured rocks. diff --git a/utils/area/descriptions/CUB/generated_descriptions/062.Herring_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/062.Herring_Gull_descriptions.txt new file mode 100644 index 0000000..83544d9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/062.Herring_Gull_descriptions.txt @@ -0,0 +1,10 @@ +Herring_Gull_0140_46455.jpg A Herring Gull with gray wings and a white head stands in profile on a weathered wooden post, against a blurred backdrop of misty blue water. +Herring_Gull_0094_47172.jpg The Herring Gull, with its smooth gray wings and white body, is captured mid-flight against a soft, blurred gray background, showcasing an open beak and yellow legs for a striking contrast. +Herring_Gull_0114_46956.jpg The Herring Gull is seen in a side profile standing on a gray rock by rippling water, displaying a smooth white head, yellow bill, and light gray wings with black wingtips visible against a natural, aquatic backdrop. +Herring_Gull_0084_46406.jpg A Herring Gull in flight is captured from below, displaying light gray and white plumage with black-tipped wings against a clear blue sky. +Herring_Gull_0116_47222.jpg The Herring Gull appears perched in a side view pose, with light gray wings, a white head and body, a vibrant yellow beak with a red spot, and a natural grassy background with white daisies. +Herring_Gull_0100_46677.jpg The Herring Gull, seen from a side profile, has a speckled brown and white plumage with a prominent pale head and is perched on a rocky surface strewn with pine needles, providing a muted natural backdrop. +Herring_Gull_0042_46637.jpg The Herring Gull appears to be standing in profile with predominantly white plumage, streaks of gray on the wings, a light gray back, and a distinctive yellow beak with a red spot, set against a blurred background of green foliage and muted grayish-blue, resembling a coastal environment. +Herring_Gull_0130_46675.jpg The image shows a Herring Gull with a white head and body, dark gray wings, standing on a weathered wooden post against a misty seascape with blurry distant hills and a boat. +Herring_Gull_0065_48098.jpg A Herring Gull with a mostly white body and gray wings stands facing sideways on a sandy dune with sparse grasses, against a clear blue sky with faint wisps of clouds. +Herring_Gull_0105_46113.jpg The Herring Gull stands with its body in side profile, displaying a smooth light gray back and wings contrasted against a crisp white head and underparts, set against a rocky coastal background with patches of yellow flowers. diff --git a/utils/area/descriptions/CUB/generated_descriptions/063.Ivory_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/063.Ivory_Gull_descriptions.txt new file mode 100644 index 0000000..4d21999 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/063.Ivory_Gull_descriptions.txt @@ -0,0 +1,10 @@ +Ivory_Gull_0074_49698.jpg The Ivory Gull is perched on a post displaying smooth, pure white plumage with a small orange-tipped beak, set against a muted gray water backdrop. +Ivory_Gull_0105_49559.jpg The Ivory Gull appears predominantly white with some dark speckles, standing on a wooden dock against a backdrop of calm water, showcasing a side profile with its back slightly arched and head facing forward. +Ivory_Gull_0015_49199.jpg The Ivory Gull is perched on a wooden post, displaying a predominantly white plumage with a smooth texture, accented by black or dark markings on its wingtips, set against a blurred, natural background. +Ivory_Gull_0061_49416.jpg The Ivory Gull is depicted in a side profile walking pose, showcasing its smooth, snow-white plumage against a snowy background with a distinctively dark, small eye and delicate black legs and feet. +Ivory_Gull_0059_49662.jpg The Ivory Gull, seen in a side profile, displays its smooth, white plumage while standing on a pebbled surface with a hint of red staining nearby, against a blurred background that suggests an outdoor, possibly rocky habitat. +Ivory_Gull_0035_49523.jpg The Ivory Gull displays pure white plumage with a smooth texture, standing on snow-covered ground with a pale gray beak and black feet, viewed in a profile pose against a backdrop of icy, uneven terrain. +Ivory_Gull_0107_49186.jpg The Ivory Gull, with its pristine white plumage and distinctive black eye, stands on a shoreline of dark pebbles against a backdrop of rippling water. +Ivory_Gull_0045_49696.jpg The Ivory Gull, displaying a clean white plumage with a smooth texture, stands in profile on a dark, rocky shoreline against a muted, overcast sky. +Ivory_Gull_0039_49412.jpg The Ivory Gull, seen in a side view with its sleek white plumage, stands on wet sandy shores with partially submerged legs, showcasing a smooth texture and contrasting black beak and eyes against a blurred beach background. +Ivory_Gull_0104_49666.jpg The Ivory Gull, predominantly white with a slight yellowish hue on the bill, stands side-on atop a rocky shoreline against a backdrop of rippling water, showcasing its sleek, streamlined body and distinctive black legs. diff --git a/utils/area/descriptions/CUB/generated_descriptions/064.Ring_billed_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/064.Ring_billed_Gull_descriptions.txt new file mode 100644 index 0000000..276f595 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/064.Ring_billed_Gull_descriptions.txt @@ -0,0 +1,10 @@ +Ring_Billed_Gull_0052_51357.jpg The image shows a Ring-billed Gull in a side profile on a sandy beach, featuring a light gray back, white body, distinctive black wingtips, a yellow bill with a black ring, and a noticeable pink tag on its side. +Ring_Billed_Gull_0001_51416.jpg The Ring-billed Gull is captured standing on the ground with a partially open beak, displaying its white head and underparts contrasting with gray wings and a black-tipped bill, surrounded by dense green vegetation. +Ring_Billed_Gull_0092_51521.jpg The Ring-billed Gull is standing side-on atop a weathered wooden post with a backdrop of rippling water, showcasing its light gray wings, white body, and distinctive black ring around the yellow-tipped bill. +Ring_Billed_Gull_0100_52779.jpg The Ring-billed Gull is shown in a side profile view with light gray and white plumage, a distinctive black ring around its bill, and set against a shallow, rippling water background. +Ring_Billed_Gull_0028_51454.jpg The Ring-billed Gull is shown in a side view mid-flight with its gray wings extended displaying black-tipped feathers, a white body, and a distinctive black ring around its yellow bill, set against a soft gray sky. +Ring_Billed_Gull_0003_51480.jpg The Ring-billed Gull stands in a profile view on a sandy surface with a blue wall in the background, displaying its pale gray wings, white underparts, and distinctive black ring around the yellow bill, while its legs are a light yellow. +Ring_Billed_Gull_0118_51322.jpg The Ring-billed Gull is perched on a snow-covered surface, displaying a gray back with white head and underparts, a distinct black ring around its yellow bill, and is set against a blurred background of icy water and snow, capturing a side profile in a standing pose. +Ring_Billed_Gull_0074_52258.jpg The Ring-billed Gull is perched on a wooden post with a smooth white belly, a light gray mantle, characteristic dark ring around its yellow bill, against a pale sky background, captured in a side profile view. +Ring_Billed_Gull_0114_50214.jpg The Ring-billed Gull, seen from the side in flight above a rippling water background, displays a light gray body with distinctive dark-tipped wings and a fish held in its beak. +Ring_Billed_Gull_0101_51375.jpg The Ring-billed Gull stands on a sandy terrain with a blurred green and brown background, showcasing its light gray and white plumage, striking black wingtips, and distinctive black ring near the tip of its yellow bill, all seen from a side view. diff --git a/utils/area/descriptions/CUB/generated_descriptions/065.Slaty_backed_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/065.Slaty_backed_Gull_descriptions.txt new file mode 100644 index 0000000..6dd8d0f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/065.Slaty_backed_Gull_descriptions.txt @@ -0,0 +1,10 @@ +Slaty_Backed_Gull_0076_796005.jpg The Slaty-backed Gull is captured in mid-flight against a clear blue sky, showcasing its slate-gray wings with white-tipped feathers, a white head and underparts, and a prominent yellow bill with a red spot near the tip. +Slaty_Backed_Gull_0084_786383.jpg The Slaty-backed Gull is seen in a side view floating on water, displaying a distinguished slate-gray back and wings, a white head and underparts with a slight dappled texture, set against a rippling gray water background. +Slaty_Backed_Gull_0020_796012.jpg The Slaty-backed Gull stands upright on a textured gray surface, showcasing its white head, chest, and tail with dark gray wings, accented by pink legs and a yellow beak, set against a simple urban pavement background. +Slaty_Backed_Gull_0068_53206.jpg The Slaty-backed Gull is shown in profile with a mottled white and gray head, a prominent pale yellow bill with an orange-red spot, a slate-gray back and wings, against a snowy background that provides contrast to its distinct dark eye and plumage markings. +Slaty_Backed_Gull_0086_786387.jpg A Slaty-backed Gull stands on a rocky perch by water, with wings partially spread revealing darker feathers, against a blurred aquatic background. +Slaty_Backed_Gull_0029_45047.jpg The Slaty-backed Gull is perched on a rock against a blurred ocean background, displaying its white head and neck, gray mantle, and distinctive yellow bill with a red spot, with wings folded at its sides. +Slaty_Backed_Gull_0031_796029.jpg The image shows a Slaty-backed Gull with mottled gray and white plumage standing on sandy ground, facing left, with its black-tipped bill and flat, broad wings folded neatly against its body. +Slaty_Backed_Gull_0071_796037.jpg The Slaty-backed Gull appears in flight with a striking contrast of white body and light gray back, showcasing a hint of black on the wingtips against a vivid blue sky and white vertical structure in the background. +Slaty_Backed_Gull_0056_796013.jpg The Slaty-backed Gull displays a mottled gray and white plumage with a distinctly dark grey back and wings, viewed in a close-up side profile against a soft-focus, watery background, with a notable pale eye and distinctively powerful bill. +Slaty_Backed_Gull_0043_796009.jpg The bird, seen in flight from a side profile against a clear sky, displays mottled brown and white plumage with darker wingtips and a lighter underbelly. diff --git a/utils/area/descriptions/CUB/generated_descriptions/066.Western_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/066.Western_Gull_descriptions.txt new file mode 100644 index 0000000..a39faf0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/066.Western_Gull_descriptions.txt @@ -0,0 +1,10 @@ +Western_Gull_0114_55644.jpg The Western Gull is perched on a wooden surface, displaying a sleek white head and underparts contrasted with dark gray wings, a stout yellow beak, pink legs, and is captured in a standing side profile against a blurred urban park background. +Western_Gull_0073_54118.jpg A Western Gull with a white head and underparts, dark gray wings, and yellow beak is perched on a rocky surface, positioned side-on, against a backdrop of a wavy ocean with overcast skies. +Western_Gull_0097_54508.jpg The Western Gull, viewed from the side, displays a predominantly white head and underparts with contrasting dark gray wings and back, set against a rocky shoreline with a hint of weathered textures, and features pink legs and a yellow bill tipped with a red spot. +Western_Gull_0058_53882.jpg A Western Gull with a predominantly white head and neck, gray wings, and a yellow beak with a red spot is standing in profile on a wooden surface against a brick wall background. +Western_Gull_0117_44697.jpg The Western Gull is depicted with a white head and grey wings in mid-flight against a cloudy sky background, with its yellow bill and pink legs visible. +Western_Gull_0057_55312.jpg The Western Gull is perched on a weathered wooden railing with the ocean in the background, showcasing a smooth white head and underparts contrasted with dark grey wings and a distinctive yellow beak, viewed from the front. +Western_Gull_0093_54925.jpg The Western Gull stands perched on a wooden post, displaying its white head and body with dark gray wings, set against a blurred ocean background, highlighting its bright orange-yellow beak and pink legs. +Western_Gull_0131_53349.jpg The Western Gull stands with its body turned slightly to the left, displaying a clean white head and breast, contrasting with its dark gray wings, all set against a sandy beach background. +Western_Gull_0052_53485.jpg The Western Gull is perched on a ledge with its profile visible, displaying a white head and underbelly, a gray back and wings, and a vivid orange-yellow beak, set against a blurred cityscape with bokeh lights at dusk. +Western_Gull_0036_54329.jpg A Western Gull stands on a flat surface in a side profile with gray wings, a white head and body, and a distinctive yellow bill, against an urban backdrop of parked cars and a ferry terminal. diff --git a/utils/area/descriptions/CUB/generated_descriptions/067.Anna_Hummingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/067.Anna_Hummingbird_descriptions.txt new file mode 100644 index 0000000..e0dfa14 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/067.Anna_Hummingbird_descriptions.txt @@ -0,0 +1,10 @@ +Anna_Hummingbird_0023_55841.jpg The Anna's hummingbird is perched with its iridescent green feathers and dark head visible against a blurred natural background of brown branches and soft-focus foliage. +Anna_Hummingbird_0102_56087.jpg The Anna's Hummingbird is perched on a thin branch, displaying iridescent green plumage with a hint of magenta on its head, a long slender bill, and a blurred neutral background. +Anna_Hummingbird_0029_55823.jpg A small bird with iridescent green plumage and a dark head is perched on a bare twig against a blurred, earthy-toned background, captured from a side angle with wings slightly blurred in motion. +Anna_Hummingbird_0098_56388.jpg The Anna's Hummingbird perches on a branch, displaying iridescent pink on its throat and head, with a green and gray body against a blurred background of red and brown branches. +Anna_Hummingbird_0091_56004.jpg The Anna's Hummingbird displays iridescent green feathers with a vibrant pinkish-red crown and throat, is captured in mid-flight near vibrant purple flowers, set against a blurred green and blue background. +Anna_Hummingbird_0127_56520.jpg The Anna's Hummingbird displays iridescent rose-pink feathers on its throat and crown, with a mix of green and grey on its body, perched sideways on thin branches against a softly blurred natural background. +Anna_Hummingbird_0043_56059.jpg The Anna's Hummingbird is hovering mid-air with iridescent green plumage and a vibrant rose-pink throat, surrounded by a blurred background of green and purple foliage. +Anna_Hummingbird_0042_55990.jpg The Anna's Hummingbird, perched sideways, displays iridescent green plumage with a vibrant pinkish-red throat against a soft green background, complemented by a purple flowering branch and green leaves. +Anna_Hummingbird_0017_56954.jpg The Anna's Hummingbird, hovering in mid-air with blurred wings, displays iridescent magenta throat feathers and a dark body against a backdrop of soft-focus red and orange tubular flowers. +Anna_Hummingbird_0050_56794.jpg The Anna's Hummingbird is hovering mid-air in a profile view with vibrant iridescent green and grayish feathers, displaying a distinctive pinkish-red head, against a background of bright pink and red flowers with dense green foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/068.Ruby_throated_Hummingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/068.Ruby_throated_Hummingbird_descriptions.txt new file mode 100644 index 0000000..7ff2dcf --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/068.Ruby_throated_Hummingbird_descriptions.txt @@ -0,0 +1,10 @@ +Ruby_Throated_Hummingbird_0106_57976.jpg A Ruby-throated Hummingbird hovers mid-air with blurred wings, showing a metallic green back and head, a pale underside, and a distinctive red throat amid a lush garden environment with vibrant red flowers. +Ruby_Throated_Hummingbird_0034_58148.jpg The hummingbird is captured mid-flight with blurred wings, displaying a light grayish-brown body and a hint of iridescence on its throat, set against a blurred, green natural background. +Ruby_Throated_Hummingbird_0003_58269.jpg The Ruby-throated Hummingbird is captured in mid-flight with outstretched wings, showcasing its iridescent green back, white underbelly, and faint reddish markings on the throat against a blurred, green natural background. +Ruby_Throated_Hummingbird_0111_58141.jpg The Ruby-throated Hummingbird is captured in mid-air with shimmering green feathers and a white underside, its wings blurred in motion against a clear blue sky, near a vibrant orange feeder, highlighting its slender, pointed bill. +Ruby_Throated_Hummingbird_0001_58162.jpg The Ruby-throated Hummingbird is captured mid-flight, showing its vibrant iridescent green plumage and distinctive bright red throat against a dark, blurred background, with its wings appearing as a whir due to motion. +Ruby_Throated_Hummingbird_0010_58285.jpg The hummingbird, captured in mid-flight with wings outstretched, displays a soft mottled brown and green plumage with a white underbelly, set against a blurred, warm-toned background that suggests a brick wall or similar structure. +Ruby_Throated_Hummingbird_0059_58210.jpg The Ruby-throated Hummingbird is captured mid-flight with blurred wings against a vivid green background, showcasing its iridescent green crown, striking red throat, and slender black bill. +Ruby_Throated_Hummingbird_0079_58075.jpg A Ruby-throated Hummingbird hovers mid-flight with blurred wings near purple flowers, displaying an iridescent emerald green back and white underparts, against a blurred natural background of greenery. +Ruby_Throated_Hummingbird_0096_57505.jpg A Ruby-throated Hummingbird with iridescent green body plumage and a gray-white belly hovers mid-air near an orange feeder against a blurred blue and green natural backdrop. +Ruby_Throated_Hummingbird_0049_57891.jpg The hummingbird, positioned frontally with wings blurred in motion, displays iridescent green on its head and a vivid red throat against a smooth green background, perched on a red structure. diff --git a/utils/area/descriptions/CUB/generated_descriptions/069.Rufous_Hummingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/069.Rufous_Hummingbird_descriptions.txt new file mode 100644 index 0000000..a809b22 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/069.Rufous_Hummingbird_descriptions.txt @@ -0,0 +1,10 @@ +Rufous_Hummingbird_0055_59935.jpg A rufous hummingbird with iridescent red-orange plumage hovers in profile beside vibrant red flowers against a soft, blurred background, showcasing its slender beak and rapidly beating wings. +Rufous_Hummingbird_0102_59414.jpg A vibrant Rufous Hummingbird is captured mid-flight against a blurred green background, showcasing its striking iridescent orange feathers, distinctive long slender bill, and partially outstretched wings with a white patch on its throat. +Rufous_Hummingbird_0025_59461.jpg The Rufous Hummingbird displays a warm reddish-brown color with iridescent patches, captured in a hovering pose near a bright red feeder, against a blurred dark background. +Rufous_Hummingbird_0118_59393.jpg The Rufous Hummingbird is perched on a red feeder with a vivid iridescent orange throat, a rusty brown back, and a pale underbelly, set against a blurred green background. +Rufous_Hummingbird_0060_58986.jpg A Rufous Hummingbird is captured in flight with blurred wings displaying iridescent green and orange hues, set against a soft-focus natural background, with a distinctive long, slender beak and a metallic texture on its back. +Rufous_Hummingbird_0089_59524.jpg The 069.Rufous Hummingbird is depicted mid-flight with a blurred wing motion, showcasing a mix of rusty orange and white plumage, featuring a distinctive iridescent green crown, set against a soft-focus backdrop of lush green foliage. +Rufous_Hummingbird_0115_59202.jpg A rufous hummingbird, marked by its vibrant reddish-brown plumage and shimmering green crown, hovers mid-air with outstretched wings over a spiky flowering thistle in a blurred green field. +Rufous_Hummingbird_0116_58568.jpg The hummingbird appears perched sideways on a slender branch, displaying a muted green and gray plumage with a subtle rufous tint on the flanks against a blurred green background. +Rufous_Hummingbird_0120_59900.jpg The low-resolution image depicts a Rufous Hummingbird with vibrant rusty-orange plumage and green on its back, perched sideways on a red plastic feeder with a yellow center, set against a blurred neutral background, showcasing its slender, straight bill and slightly curved wings. +Rufous_Hummingbird_0091_60551.jpg The small hummingbird, seen from the side perching on a thin branch, features iridescent green and rufous plumage with a long, slender bill, all set against a lush background of overlapping green leaves. diff --git a/utils/area/descriptions/CUB/generated_descriptions/070.Green_Violetear_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/070.Green_Violetear_descriptions.txt new file mode 100644 index 0000000..5bbfb5e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/070.Green_Violetear_descriptions.txt @@ -0,0 +1,10 @@ +Green_Violetear_0094_795634.jpg The Green Violetear is perched sideways on a red feeder, showcasing its iridescent green body and vibrant blue throat against a blurred brick background. +Green_Violetear_0030_795736.jpg The Green Violetear is perched on a curved metal rod, displaying vibrant iridescent green and blue plumage with a slightly blurred natural background that accentuates its striking colors and distinctly long, curved bill. +Green_Violetear_0080_795716.jpg The Green Violetear is perched on a curved green leaf with iridescent turquoise and emerald feathers and a prominent violet ear patch, against a softly blurred warm-toned background. +Green_Violetear_0005_795666.jpg A vibrant green hummingbird with iridescent blue patches on its throat and head perches side-on on a thin branch, against a blurred background of large green leaves. +Green_Violetear_0108_795711.jpg The image shows a predominantly green and blue hummingbird with iridescent texture in mid-flight, facing a vibrant red-orange flower in a blurred natural setting. +Green_Violetear_0009_795647.jpg The Green Violetear displays iridescent green and blue plumage with a distinctive violet patch on its ear region, perched in a side view on a tree branch against a blurred green and orange floral background. +Green_Violetear_0086_795639.jpg The Green Violetear showcases iridescent green and blue plumage with vibrant violet patches near its ears, perched sideways on a twig against a blurred green background. +Green_Violetear_0082_795706.jpg The Green Violetear displays iridescent green and blue plumage with a vivid violet ear patch, perched slightly sideways on a branch against a blurred, natural background of green leaves. +Green_Violetear_0095_795646.jpg The Green Violetear displays iridescent teal and green plumage with a distinctive violet patch near its ear, perched sideways on a mossy branch against a blurred, natural background. +Green_Violetear_0060_795657.jpg The 070.Green Violetear displays a vibrant iridescent green plumage with a striking blue-violet ear patch, perched in a semi-profile view on a branch against a softly blurred natural background, highlighting its slender dark bill and shimmering textures. diff --git a/utils/area/descriptions/CUB/generated_descriptions/071.Long_tailed_Jaeger_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/071.Long_tailed_Jaeger_descriptions.txt new file mode 100644 index 0000000..a387914 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/071.Long_tailed_Jaeger_descriptions.txt @@ -0,0 +1,10 @@ +Long_Tailed_Jaeger_0029_61101.jpg The Long-tailed Jaeger, seen in profile with wings spread and elongated tail feathers trailing, displays a smooth gradient of dark gray and light brown plumage against a blurred water background, highlighting its slender build and distinctive pointed wings. +Long_Tailed_Jaeger_0048_797087.jpg The Long-tailed Jaeger in flight has sleek, dark wings with a light underbelly, a subtle gradient from beige to white on the head and neck, and a distinctively elongated tail against a clear blue sky. +Long_Tailed_Jaeger_0061_61049.jpg The Long-tailed Jaeger is depicted resting on a dry, grassy field with a sleek dark cap and back, contrasting sharply against its white underparts, featuring long, slender tail feathers that enhance its streamlined appearance. +Long_Tailed_Jaeger_0032_61177.jpg The Long-tailed Jaeger in the image is viewed in flight with outstretched wings, displaying a contrasting dark back and light underside, a distinctively slender tail, and a pale sky background. +Long_Tailed_Jaeger_0054_797088.jpg The long-tailed jaeger in the image is perched on a wooden post, displaying a white chest, dark wings, and head with a distinct black cap, set against a blurred, light blue sky background. +Long_Tailed_Jaeger_0060_60886.jpg The Long-tailed Jaeger appears in flight with a sleek, streamlined shape, predominantly gray and white plumage, slender tail streamers, and a contrasting pale underbody against a clear blue sky. +Long_Tailed_Jaeger_0056_797092.jpg The Long-tailed Jaeger displays a sleek body with a contrasting black cap and pale underparts, standing on a pebbly beach with its distinctively elongated tail feathers prominently visible. +Long_Tailed_Jaeger_0013_60887.jpg The Long-tailed Jaeger in the image features a sleek, gray body with a distinctive black cap, a pale buff throat, long dark tail streamers, and is viewed in profile against a dry, grassy terrain. +Long_Tailed_Jaeger_0041_60891.jpg The Long-tailed Jaeger, captured in flight from the side, displays a streamlined body with a primarily greyish body, dark wingtips, and a notably long tail set against a plain blue sky. +Long_Tailed_Jaeger_0022_797074.jpg The Long-tailed Jaeger displays a sleek, smooth plumage with shades of grayish-brown, a distinctive long central tail feather, and is captured in mid-flight against a blurred green background, showcasing its elongated wing span and streamlined body. diff --git a/utils/area/descriptions/CUB/generated_descriptions/072.Pomarine_Jaeger_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/072.Pomarine_Jaeger_descriptions.txt new file mode 100644 index 0000000..8ee972f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/072.Pomarine_Jaeger_descriptions.txt @@ -0,0 +1,10 @@ +Pomarine_Jaeger_0001_795772.jpg The Pomarine Jaeger is seen in side profile mid-flight against a clear blue sky, with dark brown upper wings and back, contrasting a speckled white underbelly and chest, featuring a distinctive tail with short projections on each side. +Pomarine_Jaeger_0066_795780.jpg The Pomarine Jaeger is seen swimming from a side view with its dark brown and slightly mottled plumage contrasted by the rippling blue water background, showcasing a distinct hooked bill and robust body. +Pomarine_Jaeger_0009_795740.jpg The Pomarine Jaeger in side profile shows a brownish body with mottled patterns, a dark cap, and lighter underparts, as it soars against a clear sky, displaying its distinct wedge-shaped tail and broad wings. +Pomarine_Jaeger_0013_795759.jpg The Pomarine Jaeger in the image appears with a brown and white mottled texture, seen in a mid-flight pose with its wings outstretched against a clear blue sky, exhibiting a robust body with a dark cap and lighter underparts. +Pomarine_Jaeger_0046_61301.jpg The Pomarine Jaeger is seen in mid-flight against a clear blue sky, displaying mottled brown and white plumage with broad wings and a characteristic bulky body. +Pomarine_Jaeger_0038_61446.jpg The Pomarine Jaeger, visible in a side profile mid-flight, displays a mix of dark brown and pale cream hues dominated by smooth textures in its plumage against a muted, overcast sky, with its distinctively elongated, spoon-shaped tail feathers and strong, steady wingbeats highlighted despite the low resolution. +Pomarine_Jaeger_0060_795756.jpg The Pomarine Jaeger in the image displays a mottled brown and gray coloration with a curved wingspan and visible pale patches near the wingtips, captured in mid-flight over a choppy ocean surface. +Pomarine_Jaeger_0020_795761.jpg The Pomarine Jaeger is depicted with dark mottled brown plumage and lighter underwings as it takes flight from a sandy beach, with the sea softly blurred in the background. +Pomarine_Jaeger_0043_61384.jpg The Pomarine Jaeger is seen in flight against a clear blue sky, showing its dark brown upper wings that contrast with a white belly and mottled throat, featuring a stout bill and slightly elongated central tail feathers. +Pomarine_Jaeger_0072_795743.jpg The Pomarine Jaeger, captured in a dynamic side view, displays dark brown plumage with a contrasting white underside and is seen skimming over a choppy blue ocean with partially outstretched wings and splashing water beneath. diff --git a/utils/area/descriptions/CUB/generated_descriptions/073.Blue_Jay_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/073.Blue_Jay_descriptions.txt new file mode 100644 index 0000000..1220082 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/073.Blue_Jay_descriptions.txt @@ -0,0 +1,10 @@ +Blue_Jay_0017_62854.jpg The Blue Jay is perched on a rugged tree branch with vivid blue and white plumage, distinctive black markings on its face and neck, and a blurred warm-toned background. +Blue_Jay_0089_61521.jpg The Blue Jay is perched sideways amidst a tangle of branches, showing its iconic blue and white plumage with distinct black markings and a snowy environment in the background, despite the blurred low-resolution image. +Blue_Jay_0074_63487.jpg A blue and white bird with a black eye stripe stands upright on wooden posts amidst vibrant red foliage, showcasing speckled wings and a feathered crest. +Blue_Jay_0048_62433.jpg A Blue Jay with vibrant blue and black markings on its crest is perched on a round table with scattered peanuts, set against a softly blurred green and yellow background. +Blue_Jay_0085_62831.jpg The Blue Jay is perched on a branch displaying its vibrant blue plumage with white and black accents, set against a lush green leafy background. +Blue_Jay_0022_63074.jpg The Blue Jay is perched on a slender branch against a snow-covered background, displaying its vibrant blue plumage with a black necklace around its neck and white facial markings, despite the low resolution. +Blue_Jay_0003_63408.jpg The Blue Jay, perched beside a glossy green bird feeder, displays vibrant blue wings with black barring, a white face, and a prominent dark necklace, set against a soft-focused, lush green background. +Blue_Jay_0066_61490.jpg The Blue Jay displays vibrant blue and white plumage with distinctive black markings, perched sideways among intertwined branches against a lush green leafy background. +Blue_Jay_0035_63560.jpg The Blue Jay is depicted in a side view with vibrant blue plumage and black markings on its wings, contrasting sharply with its white underbelly, standing on a speckled ground with a blurred natural background. +Blue_Jay_0002_62657.jpg The Blue Jay is perched on a textured branch with a blurred green and light background, showcasing its blue and white plumage with a distinctive black collar and crest, viewed from a side angle. diff --git a/utils/area/descriptions/CUB/generated_descriptions/074.Florida_Jay_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/074.Florida_Jay_descriptions.txt new file mode 100644 index 0000000..03b72bd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/074.Florida_Jay_descriptions.txt @@ -0,0 +1,10 @@ +Florida_Jay_0063_64781.jpg A blue bird with a light gray belly is perched on a gnarled branch, set against a background of blurred green pine needles, with its head turned slightly to the side. +Florida_Jay_0029_65114.jpg A blue and gray bird with a long tail is perched upright on a leafless branch, set against a pale blue sky and distant greenery. +Florida_Jay_0085_65129.jpg A Florida Jay with bluish-gray plumage and a slightly curved posture perches amid light green leaves against a clear blue sky. +Florida_Jay_0050_65099.jpg The Florida Jay in the image has a mix of muted blue and gray feathers with a distinct curve of its wing visible, perched on a hand, set against a blurred, green foliage background. +Florida_Jay_0053_64966.jpg The Florida Jay in the image displays a predominantly blue and gray plumage with a slight fluffy texture, perched facing forward in a grassy environment, highlighted by its distinctive white forehead and blue wings. +Florida_Jay_0021_64698.jpg A Florida Jay with a vivid blue head, wings, and tail, along with a light grayish body, perches alertly on uneven grass and sandy terrain amid a sparse, natural environment. +Florida_Jay_0047_65088.jpg The Florida Jay in the image appears perched with an upright stance, showcasing soft brown and blue plumage against a clear sky, with prominent green leaves in the foreground, highlighting its pointed beak and inquisitive expression. +Florida_Jay_0081_64859.jpg The low-resolution image shows a Florida Jay in flight with vibrant blue wings and a grayish body, displaying an outstretched wing pose against a clear blue sky, with intricate barren branches in the foreground providing a contrasting natural backdrop. +Florida_Jay_0002_64476.jpg A vivid blue bird with soft gray underparts perches side-on atop a wooden post, set against a blurred, earthy-toned background of grasses. +Florida_Jay_0079_64713.jpg A blue and beige bird with a long tail perches on sparse, brown branches against a pale sky, with foliage partially visible in the foreground. diff --git a/utils/area/descriptions/CUB/generated_descriptions/075.Green_Jay_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/075.Green_Jay_descriptions.txt new file mode 100644 index 0000000..ef42ce5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/075.Green_Jay_descriptions.txt @@ -0,0 +1,10 @@ +Green_Jay_0086_65847.jpg The Green Jay is perched on a branch with its vibrant blue crown and nape, contrasting its black face and throat, while its body displays a mix of bright lime green and yellow tones, set against a blurred, natural forest background. +Green_Jay_0040_65863.jpg A vibrant Green Jay with a striking blue crown and nape, dark facial mask, and bright green body perches among lush green leaves and brown branches, displaying its side profile. +Green_Jay_0095_65881.jpg The low-resolution image depicts a Green Jay with vivid green plumage and a striking blue crown, facing right in a side profile, perched on a light-colored stump against a blurred backdrop of brown branches and lush green foliage. +Green_Jay_0006_65788.jpg The bird, perched on a branch, displays vibrant blue on its head and black markings around the eyes, with a bright green body against a blurred green foliage background. +Green_Jay_0111_65869.jpg The 075.Green Jay is perched sideways on a branch, displaying a vivid palette of bright green and blue plumage with a black bib and crown, set against a softly blurred, earthy-toned background. +Green_Jay_0071_65799.jpg A vibrant green jay with a blue head and black facial markings perches sideways on a tree branch amid a dense, blurred woodland background. +Green_Jay_0016_65864.jpg The Green Jay is perched on a branch with vivid green body feathers, a contrasting bright blue crown and nape, and a distinctive black facial mask, all set against a blurred brownish background. +Green_Jay_0003_65767.jpg The Green Jay is perched in a side view displaying its vibrant yellow-green body with a striking blue face marking, black throat, and a long yellow tail, set against a blurred natural green background and wooden branches. +Green_Jay_0055_65807.jpg The Green Jay displays vibrant green plumage with a striking blue crown and black throat, perched sideways on a branch surrounded by a tangle of twigs and a blurred woodland background. +Green_Jay_0032_65851.jpg The low-resolution image shows a Green Jay perched on a textured, gnarled branch, highlighting its vibrant blue crown, green back, and yellow underparts against a softly blurred natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/076.Dark_eyed_Junco_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/076.Dark_eyed_Junco_descriptions.txt new file mode 100644 index 0000000..a9f0555 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/076.Dark_eyed_Junco_descriptions.txt @@ -0,0 +1,10 @@ +Dark_Eyed_Junco_0096_68514.jpg A small bird with a dark grey head and back, a pale grey underbelly, perched on tree branches amidst a sparse, leafless background. +Dark_Eyed_Junco_0026_68061.jpg The Dark-eyed Junco in the image appears in a side profile with a smooth, dark gray plumage contrasted by a pale pinkish bill and subtle white underparts against a blurred, neutral-colored background. +Dark_Eyed_Junco_0043_68689.jpg The Dark-eyed Junco in the image is perched on a rocky, earthy ground with scattered sprigs of grass, showing a slate-gray plumage with a white underside, and is captured in a side view with its head slightly turned, emphasizing its distinctive dark eye and pale beak. +Dark_Eyed_Junco_0061_66858.jpg A Dark-eyed Junco with a contrasting dark hood, light pink bill, and brownish-gray body stands on a gravelly ground marked by scattered rocks, viewed from the side with its head turned slightly forward. +Dark_Eyed_Junco_0087_68102.jpg The Dark-eyed Junco displays a slate-gray plumage with a smooth texture, perched on a branch against a blurred forest-like background, highlighting its pale beak and white underbelly. +Dark_Eyed_Junco_0115_68840.jpg The dark-eyed junco is perched on a pine branch with a smooth, dark gray head and back, contrasted by lighter gray underparts and wings, surrounded by vibrant green pine needles. +Dark_Eyed_Junco_0113_68470.jpg The Dark-eyed Junco is perched on grassy ground, showcasing its slate-gray head and back with a distinct white belly and light brown flanks, set against a blurred background of green foliage and what appears to be a newspaper. +Dark_Eyed_Junco_0091_67304.jpg The Dark-eyed Junco is perched facing forward on a snowy mound, with its dark head contrasting against its lighter gray body and white underbelly, set against a seamless white snowy background. +Dark_Eyed_Junco_0005_68813.jpg A Dark-eyed Junco is seen in profile view with a smooth, dark gray head and upper body transitioning to a lighter, whitish belly, set against a softly blurred green and brown background. +Dark_Eyed_Junco_0084_66455.jpg The Dark-eyed Junco is perched on a bare branch, displaying a slate-gray plumage with a slight bluish tint, soft texture, a light pink bill, and a pale background that emphasizes its distinct dark eye. diff --git a/utils/area/descriptions/CUB/generated_descriptions/077.Tropical_Kingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/077.Tropical_Kingbird_descriptions.txt new file mode 100644 index 0000000..7627f7b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/077.Tropical_Kingbird_descriptions.txt @@ -0,0 +1,10 @@ +Tropical_Kingbird_0086_69759.jpg The Tropical Kingbird is perched on a branch facing slightly left with its soft gray head, bright yellow underparts, and olive-green wings contrasting against a blurred green leafy background. +Tropical_Kingbird_0018_69619.jpg The Tropical Kingbird, viewed in profile perched on a branch, has a bright yellow belly, gray head, and olive-brown wings and back, set against a blurred green and brown background of foliage and branches. +Tropical_Kingbird_0085_69737.jpg The Tropical Kingbird, perched diagonally on wires against a clear blue sky, showcases a vibrant yellow belly, subtle greenish back, and distinct gray head, with wings elegantly closed along its sides. +Tropical_Kingbird_0097_69436.jpg The Tropical Kingbird perches on a branch with a vibrant yellow underbelly, olive-green back, and a distinctive dark eye mask under a clear sky, set against a blurred natural green background. +Tropical_Kingbird_0023_69998.jpg The Tropical Kingbird appears with yellow underparts and a gray head, perched in a side view on a wire against a plain sky background, with its olive-greenish wings and tail distinctly visible. +Tropical_Kingbird_0102_69654.jpg The Tropical Kingbird in the image features a bright yellow belly and olive-green upperparts, perched facing slightly right on a wire against a faded, textured yellow wall background, highlighting its distinctive dark bill and grey head. +Tropical_Kingbird_0041_69954.jpg The Tropical Kingbird in the image is perched on a dry, earthy ground with scattered twigs, displaying a bright yellow belly, muted olive green wings, a gray head, and an outward-facing pose with its beak open. +Tropical_Kingbird_0096_69684.jpg The Tropical Kingbird perches on a slender branch with its gray head, olive-green back, and bright yellow belly prominently visible against a blurred green background, showcasing its thin black beak and dark eye in profile. +Tropical_Kingbird_0057_69283.jpg The Tropical Kingbird displays a soft gray head and olive upperparts with a vibrant yellow underbelly, perched on a branch against a blurred, muted natural background. +Tropical_Kingbird_0049_69933.jpg The Tropical Kingbird perches side-on upon a branch, displaying a bright yellow underside, grey head, and olive-green wings, set against a blurred, nature-themed background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/078.Gray_Kingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/078.Gray_Kingbird_descriptions.txt new file mode 100644 index 0000000..1c162bb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/078.Gray_Kingbird_descriptions.txt @@ -0,0 +1,10 @@ +Gray_Kingbird_0063_70287.jpg Perched on a wooden post against a clear blue sky, the Gray Kingbird presents a side profile with smooth gray plumage on its head and back, contrasting with its white underbelly and dark wings, exuding a streamlined and poised appearance. +Gray_Kingbird_0009_795023.jpg The Gray Kingbird in the image is perched sideways on a thin branch, showcasing its smooth gray plumage with a white underbelly and black markings on its wings, set against a blurred, leafy green background. +Gray_Kingbird_0060_795021.jpg The Gray Kingbird, perched sideways on a curved branch, displays a smooth gray and white plumage with a distinct black eye stripe, set against a soft, pastel blue sky and partial view of green foliage. +Gray_Kingbird_0071_70100.jpg The Gray Kingbird is perched on a wire against a clear blue sky, featuring a light gray head and back with a contrasting white underbelly, and its distinct dark beak and eyes are visible despite the low resolution. +Gray_Kingbird_0035_795027.jpg The Gray Kingbird is perched on a diagonal branch, displaying a smooth gray upper body with a stark white underbelly, set against a blurred green background with hints of sunlight, and features a distinctive black eye stripe and robust beak. +Gray_Kingbird_0042_70083.jpg The Gray Kingbird is perched on a slanted wire against a blurred green background, exhibiting a grayish-brown upper body with a white underbelly and a distinctly straight dark bill holding small prey. +Gray_Kingbird_0050_70056.jpg The Gray Kingbird is perched upright on a branch with a smooth gray back and head, contrasting with its white underparts, surrounded by green leaves against a clear blue sky. +Gray_Kingbird_0040_70313.jpg The bird features a gray back and head with a white underbelly, perched laterally on a white wire against a clear blue sky, showcasing its sharp, pointed beak and a slight fork in the tail. +Gray_Kingbird_0025_70152.jpg The Gray Kingbird appears perched on a branch with its light gray plumage and slightly darker wings, set against a blurred natural background that highlights its black bill and subtle eye stripe. +Gray_Kingbird_0030_70110.jpg The Gray Kingbird is perched on a bare branch, displaying a smooth, light gray plumage on its back and head, with a white underbelly, a slight hint of contrast with the muted brown background, and a distinct dark bill. diff --git a/utils/area/descriptions/CUB/generated_descriptions/079.Belted_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/079.Belted_Kingfisher_descriptions.txt new file mode 100644 index 0000000..fc30eb2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/079.Belted_Kingfisher_descriptions.txt @@ -0,0 +1,10 @@ +Belted_Kingfisher_0041_70595.jpg The Belted Kingfisher is perched on a branch, displaying its striking blue-gray plumage with a prominent shaggy crest, distinct white collar, and a white belly, set against a blurred, natural dark background. +Belted_Kingfisher_0072_70924.jpg The Belted Kingfisher, perched on a thin branch, displays a slate-blue back with a striking white collar and underparts, crested head, and a blurred greenish-brown natural background. +Belted_Kingfisher_0087_70724.jpg Viewed from the side, the Belted Kingfisher perches on a branch with its distinctive slate-blue plumage and spiky crest contrasting against a backdrop of lush green foliage, while its white chest and band of darker feathers are visible despite the low resolution. +Belted_Kingfisher_0043_70492.jpg The Belted Kingfisher with its distinctive crest perches on a diagonal wire against a gray background, showcasing slate-blue plumage with a prominent white collar and rust-colored band on its chest. +Belted_Kingfisher_0011_70923.jpg The Belted Kingfisher is perched on a wire against a clear blue sky, displaying a slate-blue back, a white chest with a distinctive dark band, and a prominent shaggy crest on its head. +Belted_Kingfisher_0055_70517.jpg The bird, perched sideways on a branch amidst lush green weeping willow leaves, shows a slate-blue body with a spiky crest and a white collar, along with a distinctive rust-colored band across its chest. +Belted_Kingfisher_0047_70705.jpg This Belted Kingfisher, viewed from the side and perched on a concrete ledge, displays a striking blue-gray plumage with a white belly and collar, a spiky crest, and a distinctive thick beak, set against a background of chain-link fencing and gravel. +Belted_Kingfisher_0053_70899.jpg The Belted Kingfisher is perched on a black cable, displaying a striking blue-gray plumage with a distinctive white collar and a slightly crested head, while the background remains a plain gray sky. +Belted_Kingfisher_0056_70516.jpg The Belted Kingfisher is perched on a branch with a fish in its beak, showcasing a slate-blue and white plumage from a rear view, set against a blurred background of water and greenery. +Belted_Kingfisher_0044_70494.jpg A Belted Kingfisher with a blue-gray head and back, a distinctive head crest, and white and rust belly bands is perched sideways on a branch against a blurred, greenish-brown natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/080.Green_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/080.Green_Kingfisher_descriptions.txt new file mode 100644 index 0000000..5fb8efb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/080.Green_Kingfisher_descriptions.txt @@ -0,0 +1,10 @@ +Green_Kingfisher_0011_71183.jpg A Green Kingfisher is perched on a branch with a mix of green and white speckled plumage, a rusty chest, and a distinct sharp beak, set against a blurred natural backdrop of branches and light sky. +Green_Kingfisher_0081_70953.jpg The low-resolution image shows a Green Kingfisher with a glossy green head and back, a contrasting reddish-brown patch on its chest, and white streaks, perched sideways on a weathered branch amidst a lush, leafy environment. +Green_Kingfisher_0042_71028.jpg A Green Kingfisher with a glossy dark green head and back, prominent white underparts with distinctive dark speckles, and a perched sideways pose on a thin branch against a blurred background of intertwining branches. +Green_Kingfisher_0059_71119.jpg The Green Kingfisher is perched on a branch, displaying a glossy green back and head, a striking white neck band, and an orange-brown chest, set against a blurred green and brown natural background. +Green_Kingfisher_0065_71132.jpg The Green Kingfisher, perched with a slight side profile, displays a vibrant green plumage on its head and back, contrasted by a rusty-orange chest, against a blurred green natural background. +Green_Kingfisher_0032_71050.jpg A Green Kingfisher with an iridescent dark green and white-spotted body perched sideways on bare, twisting branches against a blurred watery background. +Green_Kingfisher_0027_71048.jpg The Green Kingfisher, perched on a branch, showcases its glossy green back and head, a contrasting white belly, and a vivid rust-colored chest patch, with the blurred background suggesting a natural, earthy habitat. +Green_Kingfisher_0091_71248.jpg The Green Kingfisher in the image features a vibrant green upper body and head with a speckled texture, an orange-brown chest, is perched sideways on a branch in a natural, blurred green and brown background environment, while its elongated bill and contrasting white spots on its wings are distinct features. +Green_Kingfisher_0016_71198.jpg The Green Kingfisher is perched sideways on a bare branch, displaying a glossy dark green plumage with a white collar and rusty chest, set against a muted, smooth greenish-gray background. +Green_Kingfisher_0004_71076.jpg The Green Kingfisher, with its vibrant green plumage and speckled white chest, is perched sideways on a slender branch over a blurred watery background, showcasing its sharp beak and compact, streamlined body. diff --git a/utils/area/descriptions/CUB/generated_descriptions/081.Pied_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/081.Pied_Kingfisher_descriptions.txt new file mode 100644 index 0000000..6a8ebb4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/081.Pied_Kingfisher_descriptions.txt @@ -0,0 +1,10 @@ +Pied_Kingfisher_0121_72378.jpg The Pied Kingfisher, perched on a sandy surface, exhibits a black and white speckled plumage with a prominent crest and a long, pointed bill, set against a blurred background of muted colors. +Pied_Kingfisher_0093_72465.jpg The Pied Kingfisher, with its distinctive black and white plumage and speckled texture, is perched in profile on a rough stone ledge against a backdrop of swirling, muddy water. +Pied_Kingfisher_0016_72280.jpg The Pied Kingfisher, perched sideways on a horizontal wire, displays a black and white speckled pattern with distinctive crest feathers against a plain, pale sky background, highlighting its sharp beak and contrasting chest markings. +Pied_Kingfisher_0051_71429.jpg The Pied Kingfisher displays a striking pattern of black and white feathers with a distinctive crest, perched on a wooden surface with its beak slightly open, set against a blurred, earthy-toned background. +Pied_Kingfisher_0029_72440.jpg The Pied Kingfisher, perched sideways on a branch, displays its striking black and white plumage with a distinct speckled pattern on its wings and a narrow crest atop its head, set against a blurred natural backdrop. +Pied_Kingfisher_0061_72193.jpg The Pied Kingfisher, perched with a side profile view, displays a striking black and white plumage with a distinctive black crest and checkered wings, set against a minimalist blue-gray sky while balanced atop a cylindrical, stacked insulator. +Pied_Kingfisher_0033_71883.jpg The low-resolution image depicts a Pied Kingfisher perched in profile on a bare branch against a pale sky, showcasing its distinctive black and white plumage with a bold, patterned back and crest, and a long, sharp beak. +Pied_Kingfisher_0011_72143.jpg The Pied Kingfisher is perched in profile atop a light green metallic surface, showcasing its distinctive black-and-white plumage with a speckled pattern on the wings, a sharp, pointed beak, and a slate gray background. +Pied_Kingfisher_0022_72247.jpg The pied kingfisher, perched in a profile view amid tall, green reeds, showcases its striking black-and-white plumage with a speckled pattern, sharp angular crest, and long slender beak. +Pied_Kingfisher_0007_72438.jpg The Pied Kingfisher appears perched on a sandy, earthy ground with prominent black and white plumage, displaying a distinctive crest and long beak, viewed in profile against a blurred natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/082.Ringed_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/082.Ringed_Kingfisher_descriptions.txt new file mode 100644 index 0000000..47b4ab5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/082.Ringed_Kingfisher_descriptions.txt @@ -0,0 +1,10 @@ +Ringed_Kingfisher_0017_73145.jpg A Ringed Kingfisher is perched sideways on a branch against a backdrop of intertwined branches and earthy tones, displaying its distinct blue-gray upperparts, white collar, and reddish underparts. +Ringed_Kingfisher_0050_73002.jpg The kingfisher, perched on a branch amidst autumn leaves, exhibits a prominent blue-gray back with a striking reddish-brown chest and a distinctive pointed beak, viewed from the side. +Ringed_Kingfisher_0008_72943.jpg The Ringed Kingfisher in flight displays a striking combination of a slate-blue head and wings, a rust-red breast, and distinctive white spots on its flight feathers, set against a blurred, grayish sky. +Ringed_Kingfisher_0108_73169.jpg The 082.Ringed Kingfisher is perched sideways on a branch amidst dense green foliage, showcasing a slate-blue body with a striking white ring around its neck and a rusty orange belly, while maintaining a poised and vigilant stance. +Ringed_Kingfisher_0024_73178.jpg The Ringed Kingfisher is perched on a thin branch amidst a webbed greenery, showcasing a slate-blue crown and back, with a distinctive rusty orange chest and sharp beak, set against a blurred natural background. +Ringed_Kingfisher_0052_72871.jpg The Ringed Kingfisher is perched on a wire, showcasing its stocky body and pointed beak, with dark blue-gray plumage and a noticeable crest on its head, set against an overcast sky. +Ringed_Kingfisher_0042_72913.jpg The Ringed Kingfisher is seen in flight against a clear blue sky, displaying its spread wings with a blue-gray upper side, a prominent white band around its neck, a reddish-brown chest, and a long, pointed bill. +Ringed_Kingfisher_0021_72848.jpg The Ringed Kingfisher, perched on a branch against a clear blue sky, displays a blue-gray back, prominent white collar, rust-colored belly, and distinctive thick black beak. +Ringed_Kingfisher_0015_72835.jpg The Ringed Kingfisher is perched on a weathered wooden rail in a light rain, displaying its slate-blue upperparts, rufous belly, and distinctive white collar, with a blurred, natural greenish-brown background. +Ringed_Kingfisher_0041_72853.jpg Perched on a branch, the Ringed Kingfisher displays a slate-blue back with rusty-red underparts and a distinctive white collar, set against a blurred, wooded background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/083.White_breasted_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/083.White_breasted_Kingfisher_descriptions.txt new file mode 100644 index 0000000..8713131 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/083.White_breasted_Kingfisher_descriptions.txt @@ -0,0 +1,10 @@ +White_Breasted_Kingfisher_0085_73363.jpg The White-breasted Kingfisher is perched on a wooden post, displaying bright blue wings and tail, a rich chestnut head and body, a striking white breast, and a long red bill, against a blurred outdoor background with hints of yellow and grey. +White_Breasted_Kingfisher_0074_73408.jpg The White-breasted Kingfisher perches on a bare branch against a clear blue sky, exhibiting a vibrant blue back, a white throat and breast, and a striking red bill, while its reddish-brown wings and head contrast vividly with the bright background. +White_Breasted_Kingfisher_0123_73211.jpg The White-breasted Kingfisher is perched on a branch with its bright blue wings and tail contrasting against its rich brown head and body, vividly set against a blurred dark blue background. +White_Breasted_Kingfisher_0120_73439.jpg The White-breasted Kingfisher features vibrant blue wings and tail with a contrasting bright red beak, a white chest, and brown head, perched sideways on a branch in a leafy, softly focused background. +White_Breasted_Kingfisher_0107_73265.jpg The White-breasted Kingfisher displays vibrant blue wings and tail, contrasted with its chestnut head and back, white throat and breast, and bright red beak and legs, perched sideways on a concrete surface with greenery in the background. +White_Breasted_Kingfisher_0026_73201.jpg The White-breasted Kingfisher in the image displays a striking blend of bright blue wings and a vivid red beak, is perched in a side view on a muted, textured surface, with a blurred background that suggests an outdoor setting, highlighting its distinctive white throat and chest against its otherwise dark brown body. +White_Breasted_Kingfisher_0049_73420.jpg The White-breasted Kingfisher is perched sideways among a cluster of green coconuts, displaying its vivid turquoise wings, rich chestnut head and body, and striking white throat under harsh sunlight. +White_Breasted_Kingfisher_0103_73316.jpg The White-breasted Kingfisher is perched on a wire with its side profile visible, showcasing vibrant blue wings, a brown head and shoulders, a white chest, and it is holding a small insect in its beak against a clear blue sky. +White_Breasted_Kingfisher_0093_73311.jpg The White-breasted Kingfisher, perched laterally on a bare branch against a clear sky, displays a vivid brown body, bright red beak, and prominent white chest, with sparse twigs in the background. +White_Breasted_Kingfisher_0036_73403.jpg Perched on a braided wire against a clear sky, the White-breasted Kingfisher displays a vibrant blue back and wings, a contrasting white breast, and a distinctive long red bill, all seen from a side profile. diff --git a/utils/area/descriptions/CUB/generated_descriptions/084.Red_legged_Kittiwake_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/084.Red_legged_Kittiwake_descriptions.txt new file mode 100644 index 0000000..aca0f05 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/084.Red_legged_Kittiwake_descriptions.txt @@ -0,0 +1,10 @@ +Red_Legged_Kittiwake_0031_795442.jpg The 084.Red legged Kittiwake is positioned in a side profile with smooth white plumage contrasted by gray wings, a small yellow bill, and a rocky background. +Red_Legged_Kittiwake_0016_795460.jpg The image shows two birds with striking red legs, one with open wings displaying white plumage with gray accents gliding above, and the other perched on a mossy rock surface with its head tilted upward, against a natural, greenish-brown background. +Red_Legged_Kittiwake_0032_795399.jpg The Red-legged Kittiwake stands in a side profile view atop a rock with a smooth, white and gray body contrasted by vivid red legs, set against a muted rocky background. +Red_Legged_Kittiwake_0065_795456.jpg The Red-legged Kittiwake is perched on a rugged, moss-covered rock, displaying its white head and body, contrasting with its gray wings and distinctive bright red legs, set against a blurred natural background. +Red_Legged_Kittiwake_0022_795418.jpg A Red-legged Kittiwake with a white body and gray wings is captured in mid-flight against a muted, wavy gray background, showing its distinctive red legs and yellow bill. +Red_Legged_Kittiwake_0064_795422.jpg A Red-legged Kittiwake in flight appears with smooth gray wings, white body, and a distinctive red patch on the legs, holding seaweed in its beak against a blurred, muted ocean background. +Red_Legged_Kittiwake_0049_795440.jpg The Red-legged Kittiwake is perched on a rocky ledge, displaying its characteristic gray and white plumage with bright red legs, against a rugged rock face with sparse vegetation and scattered snow patches. +Red_Legged_Kittiwake_0001_795394.jpg The Red-legged Kittiwake is captured in flight with a view showing its grey wings with black tips and distinctive bright red legs, set against a textured, rippled water background. +Red_Legged_Kittiwake_0071_73800.jpg The bird displays a smooth, pale gray and white plumage with vivid red legs and a red beak, captured in a side profile pose perched on a wooden surface against a softly blurred green background. +Red_Legged_Kittiwake_0044_795388.jpg The bird, perched on a rocky cliff with patches of moss, displays a predominantly white head and body, contrasted by gray wings and distinctive bright red legs, viewed in profile against a blurred blue water background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/085.Horned_Lark_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/085.Horned_Lark_descriptions.txt new file mode 100644 index 0000000..f024f7c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/085.Horned_Lark_descriptions.txt @@ -0,0 +1,10 @@ +Horned_Lark_0089_74386.jpg The Horned Lark displays a blend of brown and white with a striking yellow throat and dark facial markings, standing on snow in a slightly tilted forward pose, highlighting its signature black "horns" against a wintry background. +Horned_Lark_0046_73950.jpg The Horned Lark in the low-resolution image is perched on a snowy ground, showcasing its brown and white plumage with a distinctive yellow throat and black facial markings, viewed from the front with its small "horned" feathers visible and a blurred snow-filled background. +Horned_Lark_0067_75266.jpg The Horned Lark is positioned in a grassy landscape, featuring a subtle blend of brown and beige plumage with striking black and white facial markings, and is viewed in profile with a slight forward lean, showcasing its distinctive small "horns." +Horned_Lark_0066_74796.jpg The Horned Lark in the image is perched facing slightly right with a sandy background, featuring pale brown upperparts, a striking yellow face with distinctive black facial markings, and light underparts. +Horned_Lark_0088_74590.jpg A Horned Lark with a brownish back and white underparts, visible side profile displaying its characteristic black "horns" and mask-like face markings, stands on a snow-covered surface against a blurred, light gray background. +Horned_Lark_0059_74144.jpg A Horned Lark with streaked brown and cream plumage, a distinct black mask, and a yellow face, perched on a snowy ground with sparse vegetation in a side profile view. +Horned_Lark_0025_75003.jpg The Horned Lark has a light brown body with a white underbelly and distinct black and yellow facial markings, standing alert on a sandy surface against a blurred, snowy background. +Horned_Lark_0043_74450.jpg The Horned Lark displays a sandy brown and white plumage with a distinctive yellow throat patch and black facial markings, standing in a profile view against a snowy background. +Horned_Lark_0095_74640.jpg The Horned Lark is perched upright on a textured gray surface, displaying a pale yellow face with dark markings, a white throat, brownish-gray back, and distinct black "horns" on its head, set against a blurred outdoor background. +Horned_Lark_0015_74855.jpg The Horned Lark is perched on sandy ground near water, displaying beige plumage with dark markings on the face and head, and is captured in a side view holding a small insect in its beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions/086.Pacific_Loon_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/086.Pacific_Loon_descriptions.txt new file mode 100644 index 0000000..5c727aa --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/086.Pacific_Loon_descriptions.txt @@ -0,0 +1,10 @@ +Pacific_Loon_0015_75443.jpg A Pacific Loon is depicted swimming with its head slightly lifted, showcasing a sleek gray head, distinctive speckled black and white plumage on its back, and a reflective blue water background. +Pacific_Loon_0021_75859.jpg The Pacific Loon is seen in a side profile, resting on a sandy shoreline with its sleek, dark body, distinct vertical white stripes on the neck, and smooth, velvety texture contrasting with the blurred, monochromatic background. +Pacific_Loon_0031_75531.jpg The Pacific Loon is seen from a side view swimming with a smooth gradient of dark to light feathers, a distinct black head and neck, transitioning to a white throat, and a dark patterned back against a muted, reflective water background. +Pacific_Loon_0035_75395.jpg The Pacific Loon, viewed from a slightly angled side perspective, features a striking black and white pattern with fine striping on the neck and a smooth, glossy plumage, floating on a calm, rippling water surface that reflects a muted gray-blue hue. +Pacific_Loon_0036_75539.jpg The Pacific Loon in the image is positioned centrally in water with its wings partially spread, featuring a dark head and back contrasted by a pale underbelly, against a backdrop of gently rippling water. +Pacific_Loon_0014_75468.jpg The Pacific Loon, captured in profile against a rippling blue water backdrop, exhibits a smooth dark head and back with a contrasting white throat and chest. +Pacific_Loon_0065_75588.jpg The bird, positioned side-on in calm water, features a sleek body with a dark head, a long pointed bill, mottled gray-brown upperparts, and a contrasting white underbelly, highlighting its distinctive aquatic setting. +Pacific_Loon_0022_75405.jpg The Pacific Loon exhibits a striking pattern of black and white stripes on its neck, with a sleek black body and distinctive checkerboard back, viewed from behind as it floats on a rippling body of water under soft, natural light. +Pacific_Loon_0054_75543.jpg The Pacific Loon is depicted swimming with a side-view pose displaying its sleek grey head, distinctive white underbelly, black and white streaked back, set against a clear watery background with pebbles and sunlight reflections. +Pacific_Loon_0063_75865.jpg The Pacific Loon stands partially submerged in water with wings outstretched, displaying a sleek body with a dark head and striking white throat, set against a calm, gray water background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/087.Mallard_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/087.Mallard_descriptions.txt new file mode 100644 index 0000000..deb1ebc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/087.Mallard_descriptions.txt @@ -0,0 +1,10 @@ +Mallard_0095_76080.jpg A vibrant green-headed duck with a distinct white ring around its neck and a rich chestnut-brown chest is floating in murky water with its gray body, black curly tail feathers, and orange legs visible from a side view. +Mallard_0052_76946.jpg A Mallard duck with iridescent green head and yellow bill is perched on a concrete edge, featuring a mix of brown and gray body plumage, vibrant orange webbed feet, and a visible curved tail, against a backdrop of greenish water. +Mallard_0018_76511.jpg A mallard with a shimmering green head and brown chest is captured in mid-flight, wings spread with pale grayish tones against a blurred water background, distinct with its orange feet and curled tail feathers. +Mallard_0086_76567.jpg The bird displays a glossy green head, a brown chest, and a gray body with vibrant orange feet, standing on a patchy grass background. +Mallard_0013_77619.jpg The image shows a Mallard with a glossy green head, white neck ring, and brown chest, standing on vibrant green grass with scattered dandelions, highlighting its distinct iridescent plumage in a side profile view. +Mallard_0055_77102.jpg The image shows a mallard duck with an iridescent green head, a yellow bill, and a brown chest, floating on rippled water, seen from a slightly elevated side view, with its distinctive curled black feathers visible on its tail. +Mallard_0025_76465.jpg The Mallard, viewed from a slightly elevated angle, displays a striking green head, a distinctive white collar, and orange webbed feet, gliding on a dark blue water surface. +Mallard_0103_77105.jpg The Mallard stands side-on with its iridescent green head, mottled brown chest, and grayish body highlighted against a blurred, paved surface, featuring vivid orange feet and a distinct curled black tail feather. +Mallard_0111_76722.jpg A mallard duck stands on a gravel surface with a vibrant green head, chocolate-brown chest, and gray body, displaying its distinctive orange legs and a hint of curled black tail feathers, set against a blurred, grassy backdrop. +Mallard_0114_76924.jpg The 087.Mallard, with its iridescent green head and brown chest, is preening its feathers from a side angle by a pond, standing on bright green grass, with its distinctive curled tail feathers and the blurred water in the background enhancing the scene. diff --git a/utils/area/descriptions/CUB/generated_descriptions/088.Western_Meadowlark_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/088.Western_Meadowlark_descriptions.txt new file mode 100644 index 0000000..7a69ba3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/088.Western_Meadowlark_descriptions.txt @@ -0,0 +1,10 @@ +Western_Meadowlark_0125_77850.jpg The Western Meadowlark sits upright on a bush, showcasing its distinctive yellow throat with a black V-shaped band and speckled brown plumage against a pale blue sky. +Western_Meadowlark_0120_77834.jpg This Western Meadowlark displays a striking bright yellow underbelly and throat with a distinctive black V-shaped marking, perched in a side view on a pale branched shrub against a blurred beige and light brown background, showcasing its mottled brown and white upperparts and long tail. +Western_Meadowlark_0058_78247.jpg The Western Meadowlark is perched on a branch, showcasing its vivid yellow underparts and patterned brown and white back, with a blurred evergreen forest in the background. +Western_Meadowlark_0053_77774.jpg The Western Meadowlark perches sideways on a thin branch, displaying a bright yellow belly with a V-shaped black band, while its back showcases streaked brown and white patterns, set against a blurred green background with small yellow flowers nearby. +Western_Meadowlark_0081_77798.jpg The Western Meadowlark stands perched on a weathered wooden post, displaying a vibrant yellow chest with a distinct black V-shaped band, while its back exhibits mottled brown and white patterns, all set against a soft, blurred green background. +Western_Meadowlark_0077_77814.jpg The Western Meadowlark is perched on a post in a side view, showcasing its bright yellow underparts with a distinctive black "V" on the chest, streaked brown and white upperparts, and a pointed beak, set against a soft, blurred background. +Western_Meadowlark_0024_78432.jpg The Western Meadowlark is perched atop a weathered wooden post on a clear day, displaying a vibrant yellow throat with a distinctive black "V" mark, amidst a backdrop of blue sky and nearby coiled cables, with its speckled brown and white plumage visible despite the photo's low resolution. +Western_Meadowlark_0095_78568.jpg The Western Meadowlark is perched on a branch amidst green leaves, showcasing its vivid yellow throat and belly, intricate black and white patterns on the wings and back, with its beak open in a side profile against a blurred, neutral-toned background. +Western_Meadowlark_0015_78610.jpg The low-resolution image shows a Western Meadowlark perched on thin branches, featuring a vibrant yellow throat and chest with a distinctive black "V" shape, brown speckled plumage on its back, and facing slightly to the right against a pale blue sky backdrop. +Western_Meadowlark_0017_78940.jpg The image depicts a Western Meadowlark with a bright yellow underbody and a distinctive black "V" on its chest, perched laterally on a weathered wooden post against a plain, light-colored background, its speckled brown and white upper body complementing its slender, pointed bill. diff --git a/utils/area/descriptions/CUB/generated_descriptions/089.Hooded_Merganser_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/089.Hooded_Merganser_descriptions.txt new file mode 100644 index 0000000..cf7df9d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/089.Hooded_Merganser_descriptions.txt @@ -0,0 +1,10 @@ +Hooded_Merganser_0058_796770.jpg The Hooded Merganser in the image displays its distinctive black and white fan-shaped crest while floating on rippling green water, featuring a striking chestnut-brown body and a sharp, slender black bill. +Hooded_Merganser_0083_796773.jpg The Hooded Merganser is shown in a side profile view, floating on rippling water with its distinctive black and white patterned plumage, a striking fan-shaped crest, and rich chestnut-colored flanks. +Hooded_Merganser_0059_79016.jpg The Hooded Merganser is seen in a side profile swimming in rippling water, displaying a striking black and white crest with chestnut flanks, a golden eye, and intricate black and white feather patterns on its back. +Hooded_Merganser_0006_796778.jpg The Hooded Merganser is depicted in mid-flight with a striking black and white plumage, distinct fan-shaped head crest, and piercing eyes against a blurred, earthy brown background. +Hooded_Merganser_0090_796774.jpg The Hooded Merganser is seen side-on in water, showcasing its striking black-and-white crested head with a prominent white patch, sleek black upperparts, and rich brown flanks, against a calm aquatic background. +Hooded_Merganser_0070_79054.jpg A Hooded Merganser is floating in a river, showcasing its distinct fan-shaped white crest with black edges, a rust-colored body, and sharp, contrasting patterns on its wings, neck, and head against a rippled water background. +Hooded_Merganser_0084_78954.jpg The Hooded Merganser displays a striking black and white head with an impressive white crest extended, a sleek black back, rich chestnut-brown sides, and sharply contrasts against the calm water surface with reflections of surrounding greenish-brown foliage. +Hooded_Merganser_0093_79075.jpg The Hooded Merganser in the image displays a striking black and white crest coupled with a brownish body as it floats sideways in a rippling water environment, its vivid white facial patch and slender serrated bill clearly visible. +Hooded_Merganser_0023_796784.jpg The Hooded Merganser, seen in a side profile swimming on rippling water, displays a striking black and white crest with a sharp contrast against its brownish body, while the background features a shimmering blue surface. +Hooded_Merganser_0040_78984.jpg The Hooded Merganser, seen in a side profile, features a striking black and white raised crest, with its chestnut-flanked body reflected in a green-tinted watery background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/090.Red_breasted_Merganser_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/090.Red_breasted_Merganser_descriptions.txt new file mode 100644 index 0000000..bd8a25f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/090.Red_breasted_Merganser_descriptions.txt @@ -0,0 +1,10 @@ +Red_Breasted_Merganser_0040_79207.jpg The Red-breasted Merganser is swimming in water, displaying a spiky crest, a slender red bill, a grayish body with white patches, and a distinctive reddish-brown neck against a rippling blue background. +Red_Breasted_Merganser_0085_79285.jpg The Red-breasted Merganser is depicted swimming in rippling water, showcasing its dark spiky crest, red eye, and contrasting black, white, and grey plumage with a slim, serrated orange bill. +Red_Breasted_Merganser_0049_79432.jpg The Red-breasted Merganser is pictured side-on in a body of water, showcasing its spiky brown crest, slender red bill, and speckled gray body with white underparts, contrasted against muted, rippling green water. +Red_Breasted_Merganser_0044_79321.jpg The Red-breasted Merganser is perched on a rock against a blue water background, displaying a mix of gray and white plumage with a distinct spiky crest and a reddish-brown eye. +Red_Breasted_Merganser_0078_79393.jpg The Red-breasted Merganser is viewed from the side and perches on green grass with dappled sunlight highlighting its rich brown head, sharply contrasting with a textured gray and white body, and the background contains a few scattered leaves. +Red_Breasted_Merganser_0016_79476.jpg The Red-breasted Merganser is seen from the side, its head displaying a dark, shaggy crest and an iridescent green sheen, while its body is a mix of gray and white, set against a rippling water background. +Red_Breasted_Merganser_0021_79168.jpg The Red-breasted Merganser, seen from the side in water, features a spiky, dark head crest, reddish-brown neck, intricate mottled gray body, and is actively fishing with a catch in its partially open bill against a rippling water background. +Red_Breasted_Merganser_0002_79447.jpg The Red-breasted Merganser displays a striking blend of dark iridescent green and spiky crest atop its head, contrasting sharply with its mottled reddish-brown chest and sleek, streamlined body, as it gracefully glides on rippling green water in a side profile view. +Red_Breasted_Merganser_0055_79397.jpg The Red-breasted Merganser in the image is viewed from a slightly elevated angle with a crested black head, a slender red bill, and a distinctive white neck band, against a rippling water background. +Red_Breasted_Merganser_0010_79567.jpg The Red-breasted Merganser, seen in profile swimming on a blurred water surface, displays a spiky black crest, a red bill, and a distinctive white patch on its neck and lower body, contrasting with its dark, iridescent back. diff --git a/utils/area/descriptions/CUB/generated_descriptions/091.Mockingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/091.Mockingbird_descriptions.txt new file mode 100644 index 0000000..7216980 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/091.Mockingbird_descriptions.txt @@ -0,0 +1,10 @@ +Mockingbird_0069_79760.jpg A small bird with sleek gray plumage and white wing patches is perched in a side profile on a brown metal edge against a clear blue sky. +Mockingbird_0057_79643.jpg The mockingbird appears perched with wings partially spread, displaying a grey and white plumage with a light underbelly and darker tail, set against a blurred natural blue and green background. +Mockingbird_0108_81908.jpg The low-resolution image shows a gray and white mockingbird perched sideways on a metal surface with a vertical wooden pole behind it, against a blurred green and brown background. +Mockingbird_0097_79951.jpg Perched on bare branches, the gray mockingbird displays its subtle barred wings and tail markings against a soft, blurred background of earthy tones, viewed in a profile pose from the side. +Mockingbird_0048_80441.jpg The Mockingbird is depicted in a side profile with grayish tones and a slight mottled texture, perched on patchy grass with some visible brown leaves, showcasing its long tail and distinctive white wing patches. +Mockingbird_0038_81299.jpg The 091.Mockingbird is perched on the ground with a side profile visible, showcasing its gray plumage with distinct white markings on the wings, in a natural environment scattered with dry leaves and twigs. +Mockingbird_0015_80652.jpg The bird displays a gentle blend of gray and white plumage with subtle black markings, standing upright in a shallow, water-filled stone basin, with a backdrop of reflective water surface and indistinct earthy tones. +Mockingbird_0086_81868.jpg The Mockingbird is perched sideways on a thin branch, displaying light gray and white plumage with faint streaks on its wings and tail against a blurred green and brown natural background. +Mockingbird_0085_81417.jpg The image shows a bird with a predominantly dark gray body and lighter underparts, perched upright on short grass, featuring a notable red eye against a blurred background. +Mockingbird_0059_82126.jpg A gray and white bird with a sleek, smooth texture and long tail is perched sideways on leafy green branches, surrounded by clusters of small dark berries, with its head slightly turned and beak pointed outwards. diff --git a/utils/area/descriptions/CUB/generated_descriptions/092.Nighthawk_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/092.Nighthawk_descriptions.txt new file mode 100644 index 0000000..2c66ee3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/092.Nighthawk_descriptions.txt @@ -0,0 +1,10 @@ +Nighthawk_0043_84039.jpg The 092.Nighthawk displays a mottled brown and gray plumage, viewed primarily from the side, with a distinctive white patch beneath and red eye markings, set against a grassy background. +Nighthawk_0046_82246.jpg The 092.Nighthawk displays a mottled brown and grey plumage, blending seamlessly into the sandy beach environment with scattered shells, and is positioned in a resting pose with its body slightly hunkered down and wings tucked close. +Nighthawk_0050_84094.jpg The 092.Nighthawk features a mottled brown and gray plumage with a camouflaged texture, seen perched lengthwise on a branch with a partially obscured light underbelly, surrounded by a natural tree branch environment. +Nighthawk_0032_795333.jpg The bird in the image is a nighthawk with mottled brown and white plumage, seen in a soaring pose against a clear blue sky, with distinctive white wing patches and a slightly forked tail. +Nighthawk_0027_84697.jpg The 092.Nighthawk appears perched on a weathered wooden post, displaying mottled brown, white, and black plumage with intricate patterns, against a blurred, neutral-toned background. +Nighthawk_0058_83270.jpg The bird, seen in a side view perched on a log, features mottled brown feathers with lighter spots and a distinct yellow bill, set against a blurred blue water backdrop. +Nighthawk_0068_82368.jpg The Nighthawk perches on a weathered wooden post, showcasing mottled brown and white plumage with distinct horizontal barring, set against a blurred grassy background. +Nighthawk_0090_82579.jpg The 092.Nighthawk is captured in flight against a clear blue sky, showing brown and white mottled plumage with distinctive white bars near the wingtips, and a pointed tail visible from a side profile. +Nighthawk_0034_82578.jpg The Nighthawk displays mottled brown, black, and gray plumage with intricate patterns, lying camouflaged on a gravelly ground with its sleek, elongated body and tail feathers partially spread, against a blurred background of green vegetation. +Nighthawk_0063_795339.jpg The Nighthawk is mid-flight against a clear blue sky, featuring mottled brown and white plumage with a distinct white bar on its elongated wings and a subtle streaked pattern on its body. diff --git a/utils/area/descriptions/CUB/generated_descriptions/093.Clark_Nutcracker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/093.Clark_Nutcracker_descriptions.txt new file mode 100644 index 0000000..5c165fa --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/093.Clark_Nutcracker_descriptions.txt @@ -0,0 +1,10 @@ +Clark_Nutcracker_0071_85125.jpg The bird displays soft grey plumage with contrasting black wings and tail, is perched sideways on a textured stone surface, and is characterized by a sharp, pointed beak and alert posture against a blurry, neutral-toned background. +Clark_Nutcracker_0136_85490.jpg The Clark's Nutcracker is perched on a vehicle roof with a light gray plumage, black wings, and a slightly pinkish hue near the tail, set against a backdrop of tall, coniferous trees. +Clark_Nutcracker_0124_85128.jpg The Clark Nutcracker, seen in profile view, displays a smooth gray plumage with black wings and tail feathers, perched on a rocky surface in a natural setting with blurred greenery in the background. +Clark_Nutcracker_0017_84777.jpg The Clark's Nutcracker has a pale gray body with black wings and tail, perched on a rock with a blurred natural background, displaying its long, slender black beak and distinctive white edges on dark feathers. +Clark_Nutcracker_0013_84791.jpg The Clark's Nutcracker is perched on a wooden surface with a mix of smooth gray plumage and distinct black wing patches, viewed from the front with noticeable pale eye coloration and a sharp, pointed beak against a muted background. +Clark_Nutcracker_0060_84862.jpg The Clark's Nutcracker, perched on a rock, displays a smooth grey body with contrasting black wings and tail, set against a blurred rocky and grassy alpine background. +Clark_Nutcracker_0066_85390.jpg The Clark's Nutcracker is perched on a bare branch against a cloudy sky, with its head turned slightly to the side, displaying a gray body and distinctively black wings. +Clark_Nutcracker_0112_85350.jpg The Clark's Nutcracker is perched with a side profile, displaying a smooth, light gray body contrasted by black wings and a pointed black bill, set against a blurred natural background. +Clark_Nutcracker_0020_85099.jpg The Clark's Nutcracker is perched on a stone ledge, showing a profile view with its light gray body, contrasting black wings and tail, and a smooth background of blurred greenery. +Clark_Nutcracker_0101_85656.jpg The Clark's Nutcracker displays a pale gray body with contrasting black wings and tail, standing on textured, pebble-strewn ground, with a forward-facing pose and notable pointed black bill. diff --git a/utils/area/descriptions/CUB/generated_descriptions/094.White_breasted_Nuthatch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/094.White_breasted_Nuthatch_descriptions.txt new file mode 100644 index 0000000..332e7b8 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/094.White_breasted_Nuthatch_descriptions.txt @@ -0,0 +1,10 @@ +White_Breasted_Nuthatch_0115_86760.jpg The White-breasted Nuthatch displays its distinctive blue-grey upper body, contrasting sharply with its white face and breast while perched head-down on a sunlit, textured tree branch surrounded by a blurred, natural woodland background. +White_Breasted_Nuthatch_0065_85829.jpg A White-breasted Nuthatch perches sideways on a beige metal feeder, showcasing its sleek grey-blue wings with black streaks and a distinctive white face and underbelly, set against a blurred wooden background. +White_Breasted_Nuthatch_0094_86156.jpg This White-breasted Nuthatch, viewed in profile, features a white face and underparts with a distinctive black cap and blue-grey upperparts, perched on vertical wood and metal structures against a blurred green and beige background. +White_Breasted_Nuthatch_0043_86196.jpg A White-breasted Nuthatch clings head-down on a textured bark with its blue-gray back, white face and underbelly, black cap, and a distinctive dark eye stripe, set against a blurred leafy background. +White_Breasted_Nuthatch_0142_86805.jpg The White-breasted Nuthatch features a blue-gray back, with a white face and chest, black cap, and rust-colored flanks, perched laterally on a textured, mossy branch against a soft-focus natural background. +White_Breasted_Nuthatch_0054_86551.jpg Perched vertically on tree bark, the White-breasted Nuthatch displays sleek gray-blue feathers with a stark white face and chest, set against a blurred, green foliage background. +White_Breasted_Nuthatch_0095_86425.jpg The White-breasted Nuthatch is perched sideways on a rough tree trunk, showcasing its slate-blue back, white face and underparts, and distinctive black crown and eye stripe, set against a blurred, natural background with soft light filtering through. +White_Breasted_Nuthatch_0131_86416.jpg A White-breasted Nuthatch, with a distinctive blue-gray back, white face and underparts, and a black cap, is perched on a branch against a soft, blurred background of earthy tones. +White_Breasted_Nuthatch_0114_86554.jpg The White-breasted Nuthatch displays a sleek, gray-blue back and wings with a stark white face and underbelly, perched sideways on a wooden feeder with scattered seeds against a blurred green background, highlighting its distinctive black cap and sharp beak. +White_Breasted_Nuthatch_0048_86207.jpg This White-breasted Nuthatch appears in a lateral pose with its distinctive white face and underbelly contrasted against dark gray upperparts, perched on textured tree bark in a blurred, natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/095.Baltimore_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/095.Baltimore_Oriole_descriptions.txt new file mode 100644 index 0000000..d8fc9c7 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/095.Baltimore_Oriole_descriptions.txt @@ -0,0 +1,10 @@ +Baltimore_Oriole_0033_88347.jpg The Baltimore Oriole displays vibrant orange-yellow plumage with black wings, perched side-on on a wire against a blurred green background. +Baltimore_Oriole_0027_87561.jpg A vibrant bird with bright orange underparts and black upperparts, sitting at an angle on a red feeder against a blurred green background, showcasing distinctive white wing bars and a striking black head. +Baltimore_Oriole_0021_87089.jpg The Baltimore Oriole displays vibrant orange plumage with black on its head and wings from a side view, perched on the edge of a container in a blurred, natural background. +Baltimore_Oriole_0106_89680.jpg The Baltimore Oriole displays vibrant orange-yellow plumage with dark wings, perched sideways on a branch with clusters of red berries and green leaves, against a soft-focus background. +Baltimore_Oriole_0038_87083.jpg A vibrant Baltimore Oriole with a striking orange body and black head perches on a thin branch against a clear blue sky, displaying noticeable white wing bars and surrounded by leafy green twigs. +Baltimore_Oriole_0128_87796.jpg With its vibrant orange underparts and sharp contrast with black feathers on the head and back, the Baltimore Oriole perches side-on upon a textured, mossy branch with a blurred, natural woodland background. +Baltimore_Oriole_0101_87207.jpg The Baltimore Oriole, perched on a thin branch, displays vibrant orange plumage with bold black markings on its head and wings, set against a blurred natural background of gray and muted greens. +Baltimore_Oriole_0102_88818.jpg The Baltimore Oriole features a vibrant orange body with black head and wings, is positioned on a diagonal branch amidst lush green leaves, and is in a grooming pose with its beak tucked into its side. +Baltimore_Oriole_0050_89750.jpg The bird, with its striking bright orange and black plumage, is perched laterally on a wooden railing beside a halved orange, against a smooth green grass background. +Baltimore_Oriole_0130_89596.jpg The Baltimore Oriole displays vibrant orange plumage with a black head and wings, perched in a side profile on a branch amidst a blurred, leafy green background, highlighting its distinctive color contrast and sharp beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions/096.Hooded_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/096.Hooded_Oriole_descriptions.txt new file mode 100644 index 0000000..47672f5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/096.Hooded_Oriole_descriptions.txt @@ -0,0 +1,10 @@ +Hooded_Oriole_0069_90981.jpg A vivid yellow bird with a black head and wings perches sideways on a tree branch, surrounded by green foliage with blurred, dappled light. +Hooded_Oriole_0118_90049.jpg The Hooded Oriole is perched on a metal feeder, showcasing its vibrant yellow-orange plumage with a striking black hood and throat, a curved beak, and white wing bars against a blurry greenish background. +Hooded_Oriole_0055_90850.jpg The Hooded Oriole displays vibrant yellow plumage with contrasting black markings on its wings and face, perched sideways on a dark, narrow branch amidst a lush backdrop of green foliage and small yellow flowers. +Hooded_Oriole_0075_90788.jpg The Hooded Oriole in the image displays a vibrant yellow-orange plumage with black markings on its throat and wings, perched sideways on a slender tree branch against a clear blue sky, with fine details such as the white wing bars and sleek, pointed bill accentuating its distinctive appearance. +Hooded_Oriole_0124_90350.jpg A vivid yellow bird with a black head perches on a branch, surrounded by blurred green foliage in the background, exhibiting its sleek plumage despite the low resolution. +Hooded_Oriole_0106_90899.jpg The "096.Hooded Oriole" is perched with a side profile view, displaying vibrant yellow and black plumage with distinct wing markings, set against a blurred green background and a red, flower-shaped feeder. +Hooded_Oriole_0054_90849.jpg The Hooded Oriole, perched among green foliage, displays vibrant orange-yellow plumage with a contrasting black head and back, while a slender, slightly curved beak is distinct against the dappled sunlight. +Hooded_Oriole_0068_90397.jpg The Hooded Oriole displays a vivid orange body with a contrasting black face and throat, perched on a wooden branch with distinct yellow-green foliage in the background, highlighting its slender, slightly curved beak and folded wing pattern. +Hooded_Oriole_0060_90879.jpg The Hooded Oriole, with its vivid yellow body and contrasting black hood and wings, is perched side-on atop a hanging green planter, against a blurred outdoor background. +Hooded_Oriole_0074_91081.jpg The Hooded Oriole is perched on a red bird feeder with a vibrant orange body, black face mask extending to the throat, contrasting black wings with white wing bars, and is set against a blurred green background, highlighting its distinctive colors and sleek form. diff --git a/utils/area/descriptions/CUB/generated_descriptions/097.Orchard_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/097.Orchard_Oriole_descriptions.txt new file mode 100644 index 0000000..ae04a9e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/097.Orchard_Oriole_descriptions.txt @@ -0,0 +1,10 @@ +Orchard_Oriole_0023_91705.jpg This Orchard Oriole features a rich chestnut body with contrasting black wings and head, perched in a side view on a makeshift feeding station against a blurred, garden-like background. +Orchard_Oriole_0048_91393.jpg The Orchard Oriole is perched in a side view on a curved metal rod against a clear blue sky, displaying its rich dark orange and black plumage with visible wing bars. +Orchard_Oriole_0051_91787.jpg The Orchard Oriole, perched upright amidst tall green grasses, displays a striking black head, wings, and tail contrasting with its rich chestnut body, set against a blurred grassy background. +Orchard_Oriole_0019_91338.jpg In a side view, the bird displays a rich chestnut body with black head and wings, perched on a clear plastic container against a soft green background, showcasing distinct white wing bars. +Orchard_Oriole_0015_91565.jpg The Orchard Oriole is perched on a diagonal branch amid green and reddish leaves, displaying a yellowish body, a dark head, and bluish legs, with its side profile visible. +Orchard_Oriole_0011_91592.jpg The Orchard Oriole, with its black head and rich reddish-brown body, is perched amidst budding branches, set against a clear blue sky, showcasing a profile view where the distinct contrasting colors are accentuated. +Orchard_Oriole_0034_91825.jpg An Orchard Oriole is perched in profile on a bare branch, displaying a bright yellow belly with contrasting black throat and forehead, set against a soft, blurred background. +Orchard_Oriole_0059_92046.jpg The Orchard Oriole in this image is perched on a hand, displaying rich chestnut and black plumage with a slightly curved bill, against a textured white fabric background. +Orchard_Oriole_0033_91532.jpg The Orchard Oriole is perched on a leafy branch with a striking yellow-green plumage, a contrasting dark bib, and a caterpillar in its beak, set against a blurred sky backdrop. +Orchard_Oriole_0098_91401.jpg The bird displays a rich chestnut body with a black head and wings, perched sideways on thin branches against a plain green background, with its white-edged beak and compact form clearly visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions/098.Scott_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/098.Scott_Oriole_descriptions.txt new file mode 100644 index 0000000..e177560 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/098.Scott_Oriole_descriptions.txt @@ -0,0 +1,10 @@ +Scott_Oriole_0001_795826.jpg The Scott Oriole is perched side-on on a light surface with its striking black head and wings contrasted by vibrant yellow underparts and shoulder patches, highlighted against a blurred, neutral background. +Scott_Oriole_0022_92356.jpg A Scott Oriole with a yellow-green body and darker wings, seen foraging on the ground with a blurred foreground of twigs, set against a dry, earthy background with scattered grass. +Scott_Oriole_0083_795821.jpg The Scott Oriole in the image displays vibrant yellow plumage on its body contrasted with a dark head and wings, is perched sideways on a thin branch, amidst a blurred background of muted greenery that emphasizes its striking colors. +Scott_Oriole_0056_795816.jpg The Scott Oriole is perched on a branch, featuring striking black and vivid yellow plumage with a distinct white wing bar, set against a soft-focus green and brown natural background. +Scott_Oriole_0067_795858.jpg The bird displays vibrant yellow underparts and a black head with sharp contrasting wings, perched on a cluster of thorny, greenish-yellow cacti in a natural environment. +Scott_Oriole_0016_92398.jpg The Scott Oriole is perched on a slender branch with red blossoms, displaying its striking black head and upper body contrasted with a vibrant yellow underbelly and wings showing white markings, against a blurred green background. +Scott_Oriole_0069_92271.jpg The image shows a Scott Oriole with vivid black and yellow plumage, distinguished by white wing bars, foraging on the ground near a halved orange on a grassy, natural background. +Scott_Oriole_0075_795817.jpg The Scott Oriole is perched on a branch with its vibrant yellow and black plumage clearly contrasted against a blurred natural background, showing a side view with its head turned slightly right and a distinctive black head and chest. +Scott_Oriole_0008_795814.jpg The 098.Scott Oriole is perched in a side view on a wooden surface, showcasing its striking black head contrasted with vivid yellow body, set against a blurred gray background that highlights its distinguishing white wing bars. +Scott_Oriole_0085_92206.jpg The Scott Oriole in the image displays vivid yellow plumage on its undersides and a contrasting black head, perched side-view on a branch amidst a green leafy backdrop, with distinctive white wing bars and grayish back feathers visible despite the low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions/099.Ovenbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/099.Ovenbird_descriptions.txt new file mode 100644 index 0000000..1def92a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/099.Ovenbird_descriptions.txt @@ -0,0 +1,10 @@ +Ovenbird_0059_92470.jpg In a side view, the Ovenbird displays olive-brown upperparts and a white belly streaked with bold black lines, perched on a leaf-littered forest floor with scattered brown and gray leaves, highlighting a distinctive eye-ring and crown stripe. +Ovenbird_0035_92785.jpg The Ovenbird displays an olive-brown back with a white belly marked by bold, dark streaks, viewed from the side on a forest floor strewn with dry leaves and twigs, highlighting its distinct eye-ring and upright stance. +Ovenbird_0045_92973.jpg The ovenbird, perched among branches in a sunlit forest, displays olive-brown upperparts with distinct dark streaks on its white underside, and a noticeable orange crown stripe. +Ovenbird_0135_93168.jpg The Ovenbird is seen from a side view on the forest floor, displaying an olive-brown upper body with a distinctive white belly adorned with black streaks, and it's surrounded by dry leaves and twigs. +Ovenbird_0128_93366.jpg The bird features a yellow throat with black-and-white streaked plumage, seen in a lateral profile perched on a slender branch against a blurred green foliage background. +Ovenbird_0077_92590.jpg The Ovenbird is perched on a twig in a natural setting with green foliage, showing its olive-brown back, spotted white underparts, and orange crown stripe amidst blurred branches. +Ovenbird_0004_92868.jpg The Ovenbird displays an olive-brown back and wings with a white underbelly marked by dark streaks, viewed from the side standing on earthy ground with scattered twigs and green foliage in the background. +Ovenbird_0003_92910.jpg An Ovenbird with olive-brown upperparts and distinct white underparts speckled with dark streaks is perched sideways on a branch in a forested environment, displaying a prominent white eye ring. +Ovenbird_0046_92821.jpg The Ovenbird has an olive-brown color with a white underbelly marked by distinct dark streaks, observed from a side view perched on a tree branch against a blurred green forest background. +Ovenbird_0034_93006.jpg The bird is perched upright on a branch against a clear blue sky, displaying a brown-streaked head and back, with a white underbelly marked by scattered dark spots and distinctive pinkish legs. diff --git a/utils/area/descriptions/CUB/generated_descriptions/100.Brown_Pelican_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/100.Brown_Pelican_descriptions.txt new file mode 100644 index 0000000..7c17da5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/100.Brown_Pelican_descriptions.txt @@ -0,0 +1,10 @@ +Brown_Pelican_0010_94370.jpg The Brown Pelican is perched on a wooden post with its head highlighted by light white plumage contrasting with darker, textured feathers on the body and wings, set against a blurred natural background of soft blue and green tones. +Brown_Pelican_0100_94434.jpg The brown pelican displays a mixture of gray and brown plumage with a bold white head and a long, distinctive red-tinted bill, perched side-on atop a rusty fence against a blurred natural background of green foliage and muted earth tones. +Brown_Pelican_0140_93438.jpg The Brown Pelican, standing in profile on a sandy beach with gentle waves in the background, displays a predominantly grayish-brown plumage with a long, distinctive bill and a white head, complemented by subtle textural details in its feathers. +Brown_Pelican_0007_94078.jpg The brown pelican is depicted in a side profile with its head turned slightly, displaying a predominantly dark, speckled texture on its feathers against a stark, almost black background, with its head and upper neck notably lighter, accentuated by an elongated, prominent beak. +Brown_Pelican_0121_94067.jpg The brown pelican is depicted in a side profile pose with its head turned back, showcasing a distinct white and brown head, long gray bill, intricately patterned brown and gray plumage, and is set against a blurred natural background of water and stones. +Brown_Pelican_0088_94076.jpg A brown pelican with a mottled brown and grey plumage stands on a rocky surface, displaying its wings partially open against a blurred background of ocean waves and sky. +Brown_Pelican_0020_95422.jpg The Brown Pelican, with a muted gray-brown body and darker flight feathers, is captured in a soaring pose against a clear blue sky, showcasing its distinctive long bill and outstretched wings. +Brown_Pelican_0085_95053.jpg A Brown Pelican with mottled brown and white plumage stands in profile on rocky terrain, with its large bill and distinct long neck visible against the textured backdrop of sunlit rocks. +Brown_Pelican_0068_94430.jpg The brown pelican is perched on a rock with its head slightly turned, showcasing its elongated bill, mottled brown plumage with subtle white on the chest, against a blurred seaside background. +Brown_Pelican_0111_93872.jpg A Brown Pelican with mottled gray and brown plumage sits perched sideways on a boat bow against a backdrop of rippling blue water and a rocky cliff. diff --git a/utils/area/descriptions/CUB/generated_descriptions/101.White_Pelican_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/101.White_Pelican_descriptions.txt new file mode 100644 index 0000000..80b20cb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/101.White_Pelican_descriptions.txt @@ -0,0 +1,10 @@ +White_Pelican_0035_96312.jpg A white pelican with a long orange bill is floating calmly in rippling water, featuring fluffy, somewhat ruffled plumage and a soft grayish background. +White_Pelican_0042_97250.jpg The White Pelican is predominantly white with a long, pale pink bill and open, fan-like pouch, viewed in profile while gracefully floating on rippling water, set against a serene aquatic backdrop. +White_Pelican_0026_95832.jpg The white pelican stands on a muddy terrain with a slight side profile, displaying its glossy white feathers and distinctive long orange beak against a blurred backdrop of water and green foliage. +White_Pelican_0039_97363.jpg A white pelican with a long, pale orange bill and black-tipped wings glides majestically sideways against a clear blue sky. +White_Pelican_0047_97190.jpg A white pelican with a long yellow-orange bill and ruffled head feathers is floating sideways in calm water with a blurred earthy shoreline in the background. +White_Pelican_0032_96920.jpg The white pelican, viewed in profile against a dark blue rippling water background, displays a predominantly white body with a slight golden hue on the wings, a long orange bill with a pouch, and a bright orange eye surrounding. +White_Pelican_0059_96675.jpg The White Pelican stands with its body visible from a side angle in shallow, rippled water, showcasing its predominantly white plumage and long, pale bill against a muted, watery background. +White_Pelican_0009_97340.jpg A white pelican with an expansive wingspan partly open and black-tipped wings glides on rippling water, set against a background of shrubbery and a rocky shoreline. +White_Pelican_0013_96901.jpg The white pelican, with its distinct orange beak and outstretched wings revealing black feather tips, stands in a natural setting of dried grass and twigs. +White_Pelican_0028_95950.jpg The white pelican is captured in mid-flight with its expansive white wings and black wing tips against a dark water background, displaying a distinct orange beak and pouch with a hint of black around the eye area. diff --git a/utils/area/descriptions/CUB/generated_descriptions/102.Western_Wood_Pewee_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/102.Western_Wood_Pewee_descriptions.txt new file mode 100644 index 0000000..6f84db3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/102.Western_Wood_Pewee_descriptions.txt @@ -0,0 +1,10 @@ +Western_Wood_Pewee_0003_795050.jpg The Western Wood Pewee, perched on a branch against a blurred green background, displays a muted brown plumage with subtle pale underparts, a slightly crested head, and faint wingbars, capturing a side profile view. +Western_Wood_Pewee_0046_98113.jpg The Western Wood Pewee is perched on a branch, showcasing a muted grayish-brown texture with a slightly off-white belly, set against a leafy green blurred background, highlighting its small, rounded body and distinctive darker wings. +Western_Wood_Pewee_0072_98035.jpg The Western Wood Pewee is perched upright against a clear blue sky, displaying a smooth, muted gray-brown plumage with a slightly paler chest and a slender body, highlighted by a small crest and an elongated, pointed beak. +Western_Wood_Pewee_0015_98184.jpg The Western Wood Pewee, perched on a rock, displays a grayish-brown plumage with slight feather texture visible, a light white throat, and is set against a blurred, natural backdrop. +Western_Wood_Pewee_0007_97985.jpg The Western Wood Pewee is perched in a side profile on a weathered wooden post, displaying grayish-brown plumage with lighter underparts, and the blurred green background suggests a natural, outdoor setting. +Western_Wood_Pewee_0060_795045.jpg The Western Wood Pewee is perched on a wire with its head slightly turned, displaying grayish-brown plumage, a lighter underbelly, and subtle white wing edging, set against a softly blurred, multicolored background. +Western_Wood_Pewee_0008_795043.jpg The bird, perched in profile on a thin branch against a blurred green background, exhibits a predominantly gray plumage with slightly darker wings and a subtle crest on its head. +Western_Wood_Pewee_0021_98101.jpg The Western Wood Pewee is perched on a weathered wooden post, displaying its grayish-brown plumage with lighter underparts and faint wing bars, set against a blurred green background. +Western_Wood_Pewee_0076_98002.jpg The Western Wood Pewee is perched on a twig with a slightly forward-facing pose, displaying its muted gray-brown plumage and faint wing bars against a blurred, greenish-brown background. +Western_Wood_Pewee_0059_98262.jpg A small bird with grayish-brown plumage and subtle streaks perches on a lichen-covered branch, set against a softly blurred background of greens and browns, with its body facing slightly sideways and looking to the left. diff --git a/utils/area/descriptions/CUB/generated_descriptions/103.Sayornis_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/103.Sayornis_descriptions.txt new file mode 100644 index 0000000..98a05de --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/103.Sayornis_descriptions.txt @@ -0,0 +1,10 @@ +Sayornis_0025_98620.jpg The bird, viewed from the side with wings outstretched, displays dark plumage and a lighter underside, perched amidst barbed wire against a blurred sky-blue background. +Sayornis_0011_98610.jpg The bird is perched among leafy branches, exhibiting a dark gray upper body with a slightly lighter underside and distinct white wing bars, set against a vibrant green foliage background. +Sayornis_0020_98727.jpg The bird exhibits a pale brown body with a darker tail, spread wings showing light feathering against a clear blue sky, captured in flight from a side view. +Sayornis_0036_98323.jpg A small bird with a dark brown head and back, light belly, and sitting upright on a thin, bare branch against a blurred green background. +Sayornis_0109_98906.jpg The 103.Sayornis appears perched with a side profile view, displaying a dark, smooth-textured plumage with subtle lighter underparts, perched atop a dark conical object against a blurred background of vibrant green and blue hues. +Sayornis_0070_99354.jpg A small bird with a smooth brownish-gray back and wings, lighter underparts perched sideways on a slender stem amid green foliage and unopened lotus buds, with a distinctive white throat that stands out against the blurred greenery in the background. +Sayornis_0113_98630.jpg The bird, perched on a branch against a blurred green background, displays a dark brown crown and back, with a pale gray chest and throat, and a subtle yellowish tint on the belly, alongside a short, squared tail and a prominent dark eye. +Sayornis_0106_98841.jpg A small bird with dark, sooty-gray plumage and a lighter belly sits in a side view on a wooden perch against a blurred, earthy-toned background. +Sayornis_0010_98611.jpg The 103.Sayornis displays a soft, mottled brown and gray body with a warm, tawny-orange breast, perched in a classic side profile on a weathered wooden post against a blurred, earthy backdrop. +Sayornis_0056_99553.jpg The bird is perched upright on a branch with dark brown upperparts, pale underparts, and a slightly forked tail, against a blurred, watery background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/104.American_Pipit_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/104.American_Pipit_descriptions.txt new file mode 100644 index 0000000..7f85c1c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/104.American_Pipit_descriptions.txt @@ -0,0 +1,10 @@ +American_Pipit_0021_100378.jpg The American Pipit exhibits a muted brown and white plumage with fine streaking, viewed in a sideways pose among a web of thin, bare branches against a soft-focus background that hints at a natural, earthy environment. +American_Pipit_0062_100000.jpg The American Pipit is viewed from the side, showcasing its streaked brown and beige plumage with fine detailing, against a sparse, rocky ground environment. +American_Pipit_0074_100154.jpg The American Pipit is shown in a side profile with a speckled light brown and cream plumage standing on a rocky, water-edged terrain. +American_Pipit_0019_99810.jpg The American Pipit is shown in a side view, displaying its brown, speckled plumage with a creamy underbelly and standing on a snow-covered ground, which highlights its slender dark legs and subtle facial markings. +American_Pipit_0089_100260.jpg The bird appears light brown with speckled texture, standing on muddy ground with green grass in the background, its head turned slightly to the side, showcasing its slender beak and streaked breast. +American_Pipit_0087_99996.jpg A small bird with mottled brown and beige plumage stands in shallow water, revealing its slender build and pointed beak against a blurred stream background, with subtle ripples adding texture. +American_Pipit_0015_99932.jpg The bird, perched amid grassy terrain, has a mottled brown and cream plumage with subtle streaks, a slender beak, and a side profile that highlights its round eye and slightly upright posture. +American_Pipit_0034_99946.jpg The image shows a small bird with light brown and buff plumage, dark streaks along its back and sides, standing on muddy ground with some sparse, dry grass, captured from a side view under natural sunlight. +American_Pipit_0113_99939.jpg The American Pipit stands in profile on a sandy and rocky ground with a background of blurred neutral tones, showcasing its brown and buff plumage with streaked underparts, while its slender bill and thin legs are accentuated despite the low resolution. +American_Pipit_0085_100246.jpg The 104.American Pipit, viewed from the side, displays a earthy brown color with darker streaks on its back and breast, standing on a large rock amidst a pebbled and lightly vegetated background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/105.Whip_poor_Will_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/105.Whip_poor_Will_descriptions.txt new file mode 100644 index 0000000..5d989bc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/105.Whip_poor_Will_descriptions.txt @@ -0,0 +1,10 @@ +Whip_Poor_Will_0008_796420.jpg The Whip-poor-will, perched on a branch, exhibits mottled gray and brown plumage with intricate patterns that blend seamlessly into its forest surroundings, highlighting its cryptic camouflage and rounded body posture. +Whip_Poor_Will_0048_796417.jpg The image depicts a close-up of a Whip-poor-will showing intricate mottled brown and gray feathers with a slightly curved beak, set against a blurred natural background of green grass, highlighting its well-camouflaged appearance. +Whip_Poor_Will_0035_796430.jpg The bird in the image has mottled brown and gray plumage, a characteristic large dark eye, and a small beak, being closely held by a hand, with no distinct background visible. +Whip_Poor_Will_0006_22800.jpg The Whip-poor-will is perched on a weathered wooden post against a clear blue sky, showing its mottled brown and gray plumage with a distinct barred texture and subtle speckling pattern, positioned in a side profile with its tail slightly elevated. +Whip_Poor_Will_0018_796403.jpg The "105.Whip poor Will" is perched on a branch with its mottled brown and gray plumage blending into the wooded background, displaying a camouflaged texture and a distinctive barred pattern on its wings. +Whip_Poor_Will_0038_100443.jpg The Whip-poor-will is perched sideways on a branch, exhibiting mottled brown and gray plumage with a camouflaged, textured appearance against a blurred background of green and pink foliage. +Whip_Poor_Will_0003_796409.jpg The low-resolution image shows a Whip-poor-will with mottled brown and gray plumage blending into a textured, bark-like surface, perched amidst green foliage, with its body resting in a camouflaged, front-facing pose. +Whip_Poor_Will_0033_82166.jpg The Whip-poor-will is depicted in mid-flight against a clear blue sky, showcasing a mottled brown and white plumage with a distinctive band across its wing, highlighting its cryptic texture and streamlined elliptical posture. +Whip_Poor_Will_0037_796405.jpg The low-resolution image depicts a Whip-poor-will with mottled brown and gray plumage, lying camouflaged against a dry, twig-strewn ground, with its eyes partially closed and subtle barring visible on its wings. +Whip_Poor_Will_0043_796442.jpg The Whip-poor-will displays mottled gray and brown plumage with subtle striping, blending with the forest floor where it rests in a camouflaged crouch, surrounded by dry leaves and twigs. diff --git a/utils/area/descriptions/CUB/generated_descriptions/106.Horned_Puffin_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/106.Horned_Puffin_descriptions.txt new file mode 100644 index 0000000..0710e59 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/106.Horned_Puffin_descriptions.txt @@ -0,0 +1,10 @@ +Horned_Puffin_0052_100977.jpg A Horned Puffin with striking white and black plumage is captured flapping its wings in a dynamic side view, set against a splash-filled water background, highlighting its distinctive orange beak and eye markings. +Horned_Puffin_0025_100942.jpg A Horned Puffin with a sleek black and white body is perched on a rock, its distinctive orange and yellow bill visible, against a blurred rocky background, viewed from the side in a crouched pose. +Horned_Puffin_0040_100891.jpg A Horned Puffin with striking black and white plumage and a distinctive orange and white bill is resting in a rocky crevice, surrounded by mossy stones and small patches of green vegetation. +Horned_Puffin_0006_100989.jpg The Horned Puffin is perched on a rocky surface, showcasing its distinctive black and white plumage, bright orange bill with a yellow plate, and striking orange legs, set against a backdrop of gray, textured rock. +Horned_Puffin_0030_100725.jpg The wooden statue of the Horned Puffin features a smooth, painted texture with a black back, white underbelly, and vibrant orange beak and feet, positioned in a profile view against a backdrop of trees and a street scene. +Horned_Puffin_0081_101054.jpg The Horned Puffin is viewed in profile, showcasing its distinctive black and white plumage, large orange and cream beak, and a smooth background, with its dark eye and white facial patch contrasting against its glossy black neck and back. +Horned_Puffin_0022_100766.jpg The Horned Puffin is seen in a side profile, featuring a distinctive black and white plumage with a brightly colored orange, yellow, and white bill, set against a dark, reflective water background. +Horned_Puffin_0007_100699.jpg The Horned Puffin is seen from a side angle, showcasing its distinctive black and white plumage with a white face, bold orange and yellow bill, a horn-like projection above the eye, and is floating on rippling water, adding to the serene aquatic setting. +Horned_Puffin_0031_100804.jpg The Horned Puffin is perched on a rocky surface, featuring a striking black and white plumage with an orange and white beak, against a backdrop of driftwood and stones. +Horned_Puffin_0004_100733.jpg The Horned Puffin in the image is perched on a rocky surface showcasing its distinctive black and white plumage, vibrant orange bill, and yellow feet, with a blurred natural background and a slightly side-facing pose. diff --git a/utils/area/descriptions/CUB/generated_descriptions/107.Common_Raven_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/107.Common_Raven_descriptions.txt new file mode 100644 index 0000000..e8892a2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/107.Common_Raven_descriptions.txt @@ -0,0 +1,10 @@ +Common_Raven_0074_101576.jpg The Common Raven in the image appears with a glossy black plumage, standing in profile with a slightly curved beak against a grassy background with some indistinct vertical elements in the distance. +Common_Raven_0078_101148.jpg The Common Raven is perched on a rocky surface, showcasing its glossy black plumage and slightly opened beak, with a textured background of scattered stones and pebbles. +Common_Raven_0062_101448.jpg The Common Raven in the image displays a glossy black texture with iridescent sheen, standing in a three-quarters pose on rocky ground, with rugged, grey stones in the background, highlighting its thick neck and large beak. +Common_Raven_0119_101595.jpg The Common Raven in the image is glossy black with iridescent feathers, standing on grass with a slightly lowered head, showing its robust beak and thick neck, set against a blurred, sunlit green lawn background. +Common_Raven_0079_101100.jpg A Common Raven is viewed in profile standing on dry, sandy ground with sparse grass, displaying iridescent black plumage with a slightly shaggy throat, set against a background of muted, dry vegetation. +Common_Raven_0099_102534.jpg The Common Raven is perched with its slightly open beak, displaying iridescent black feathers that blend with the earthy, twig-laden forest floor amidst a backdrop of leafy greenery. +Common_Raven_0054_101750.jpg The Common Raven appears black with a slightly glossy texture, perched sideways on a green post against a pale blue sky, with a blurred, grassy foreground, and its distinct shaggy throat feathers are visible. +Common_Raven_0069_101825.jpg The Common Raven is glossy black with iridescent sheen, standing in profile with wings slightly folded against a gravelly ground, set against a backdrop of vibrant green grass and small yellow flowers. +Common_Raven_0121_101744.jpg The Common Raven is perched on a park sign displaying its glossy black plumage with a slightly ruffled texture and its large, curved beak in profile, set against a blurred, muted landscape background. +Common_Raven_0110_101775.jpg The Common Raven is perched with partially spread wings, exhibiting a glossy black plumage with hints of iridescence, set against a muted background of dry leaves and rocky terrain. diff --git a/utils/area/descriptions/CUB/generated_descriptions/108.White_necked_Raven_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/108.White_necked_Raven_descriptions.txt new file mode 100644 index 0000000..6f151eb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/108.White_necked_Raven_descriptions.txt @@ -0,0 +1,10 @@ +White_Necked_Raven_0021_797341.jpg The bird, perched on a rocky surface, displays a glossy black body with a distinctive white patch on its neck, set against a background of dry grass and stones. +White_Necked_Raven_0026_797357.jpg The image shows a White-necked Raven perched on a rocky surface, displaying a glossy black plumage with a distinctive white patch on its neck, set against a foggy, blurred background. +White_Necked_Raven_0038_797369.jpg The White-necked Raven displays a dark, glossy black plumage with a distinctive white patch on its neck, viewed from the front in a close-up pose against a blurred, natural background. +White_Necked_Raven_0002_797370.jpg The White-necked Raven, viewed from the side, displays a predominantly glossy black plumage with a distinctive white patch on its neck, perched confidently on a natural, plant-covered surface against a softly blurred, earthy-toned background. +White_Necked_Raven_0059_102668.jpg A solitary bird with a dark, glossy body and a distinctive white patch on its neck is standing on a grassy terrain, facing away and slightly to the right against a blurred green backdrop. +White_Necked_Raven_0036_797359.jpg The White-necked Raven, viewed in profile, displays its distinctive white nape contrasting with glossy black feathers, perched on a rock against a blurry, earthy-toned background. +White_Necked_Raven_0023_797371.jpg The bird is captured in mid-flight with glossy black plumage and a distinctive white patch on its neck, set against a blurred natural background that shifts from earthy browns to deep greens. +White_Necked_Raven_0053_797360.jpg The 108.White necked Raven, perched on a wooden post against a blue wall, features a distinctive white band around its neck contrasted with black plumage, and is holding a red can in its beak. +White_Necked_Raven_0072_797391.jpg A dark bird with a contrasting white neck in mid-flight against a clear blue sky, featuring slightly spread wings and an open beak, accompanied by its faint reflection below. +White_Necked_Raven_0018_102746.jpg A raven with a glossy black body and a characteristic white patch on the neck stands sideways on a light-colored rocky terrain, highlighting its curved beak and sturdy legs against the natural backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions/109.American_Redstart_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/109.American_Redstart_descriptions.txt new file mode 100644 index 0000000..89672a0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/109.American_Redstart_descriptions.txt @@ -0,0 +1,10 @@ +American_Redstart_0118_103033.jpg The American Redstart displays a striking combination of black and bright orange plumage with white underparts, perched sideways on a wooden rail against a blurred green background, showcasing its broad tail fanned out and wings slightly raised. +American_Redstart_0024_103042.jpg The bird, perched on a slender branch, exhibits a striking combination of black plumage with vivid orange patches on its wings and sides, set against a soft-focus natural background. +American_Redstart_0071_103266.jpg A small bird with vibrant orange patches on its black wings and tail, perched sideways on a branch against a blurred green background, displaying a distinctive black head and back with contrasting white underparts. +American_Redstart_0111_102945.jpg The bird, perched on a branch, displays a striking combination of black and vivid orange plumage with a forest background, highlighting its distinctive fan-shaped tail and compact, streamlined body. +American_Redstart_0090_102940.jpg A small bird with a striking black and orange plumage perches upright on thin branches against a blurred green foliage background, showcasing distinct white underparts and a vivid orange wing patch. +American_Redstart_0049_103176.jpg The American Redstart is perched on a hand, displaying its black head and back with vivid orange patches on the wings and sides, against a blurred backdrop of greenery and a white vehicle. +American_Redstart_0013_103677.jpg The American Redstart displays vivid orange patches on its wings and tail against a predominantly black body, standing on the ground with sparse green grass and a textured earthy background, showcasing its slender beak and contrasting coloration. +American_Redstart_0128_102983.jpg A small bird with black upperparts, orange patches on its wings and sides, and a white belly, is perched on a ground covered with brown leaves and twigs. +American_Redstart_0022_103701.jpg The bird displays gray on the head and back, striking yellow patches on the sides and wings, and a white belly, perched on a branch amid green foliage with blurred branches and leaves in the background. +American_Redstart_0109_103795.jpg The image shows an American Redstart perched on a branch, viewed from the side with its mouth open, displaying a contrasting black and orange plumage against a blurred green and brown leafy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/110.Geococcyx_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/110.Geococcyx_descriptions.txt new file mode 100644 index 0000000..6b1e82e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/110.Geococcyx_descriptions.txt @@ -0,0 +1,10 @@ +Geococcyx_0078_104468.jpg The 110.Geococcyx in the image is standing upright on short grass, displaying its mottled brown and white plumage with a distinctive crest on its head, and a long tail that points downward. +Geococcyx_0114_104136.jpg A brown and white striped bird with a prominent crest is walking on sandy ground surrounded by sparse desert vegetation and rocks, displaying its long tail and slender beak. +Geococcyx_0041_104273.jpg The Geococcyx is perched on a network of dry branches, with a speckled brown and white plumage, distinct crest on its head, and a long tail, set against a clear blue sky. +Geococcyx_0106_104216.jpg A brown and white bird with speckled plumage and a distinctive crest stands on the edge of a concrete block, set against a dry, sandy background with sparse grass. +Geococcyx_0096_104369.jpg Amidst a sparse desert backdrop of dry twigs and sand, the bird displays a speckled brown and white plumage with a prominent black crest and a distinctive long tail, standing alertly on the ground. +Geococcyx_0061_104553.jpg The 110.Geococcyx, standing on grassy terrain, displays mottled brown and white plumage with a distinctive dark crest on its head, a long tail, and an eye-catching orange patch behind its eye while holding a small prey in its beak. +Geococcyx_0091_104301.jpg This Geococcyx displays mottled brown and white plumage with a distinctive long tail, standing alertly on a textured stone patio under dappled sunlight, highlighting its slender body and prominent crest. +Geococcyx_0036_104173.jpg A slender bird with mottled brown and white plumage, visible side profile trotting across grassy terrain, with a distinctive long tail and holding a snake in its beak. +Geococcyx_0028_104751.jpg A brown and white streaked bird with a long tail is positioned at a three-quarter angle on a rocky, red earth terrain, peering at a lizard and surrounded by sparse grass. +Geococcyx_0005_104187.jpg A road runner, identifiable by its streaked brown and white plumage, is captured in mid-stride against a gravelly, earthy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/111.Loggerhead_Shrike_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/111.Loggerhead_Shrike_descriptions.txt new file mode 100644 index 0000000..c233425 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/111.Loggerhead_Shrike_descriptions.txt @@ -0,0 +1,10 @@ +Loggerhead_Shrike_0018_26407.jpg The Loggerhead Shrike, posed in profile on a bare branch against a clear blue sky, displays a smooth gray head, bold black eye mask, white underparts, and black wings, with its stout, hooked bill clearly visible. +Loggerhead_Shrike_0065_104856.jpg The Loggerhead Shrike is perched on a barbed wire with a side profile showing its gray upperparts, white underparts, and distinct black mask, against a blurred, neutral-toned background. +Loggerhead_Shrike_0033_105686.jpg The Loggerhead Shrike is perched on a concrete block, displaying its gray body with distinct black and white markings on its wings and face, set against a dry, grassy background. +Loggerhead_Shrike_0117_104838.jpg The Loggerhead Shrike is perched on bare branches, displaying a grey body with a distinctive black mask and wingtips, set against a blurred green background. +Loggerhead_Shrike_0055_105246.jpg Perched on dry, spindly branches, the Loggerhead Shrike displays a smooth gray head and back, contrasting with a white underbelly and black face mask, set against a muted pinkish-brown background. +Loggerhead_Shrike_0032_106521.jpg The Loggerhead Shrike is perched on a bare branch, displaying a light gray body with a distinct black mask over the eyes, contrasted against a blurred, dry, natural background. +Loggerhead_Shrike_0116_105286.jpg The Loggerhead Shrike, perched on a rusted metal edge, displays a distinctive gray head, bold black mask, and white underparts with contrasting black wings against a blurred green background. +Loggerhead_Shrike_0103_105137.jpg The Loggerhead Shrike in the image appears perched among thorny branches, showcasing a smooth gray plumage with distinctive black markings around its eyes and beak against a clear blue sky. +Loggerhead_Shrike_0024_105593.jpg A Loggerhead Shrike is perched sideways on a wire against a clear blue sky, showcasing its gray body, black eye mask, and white underparts, with subtle black markings on its wings and tail. +Loggerhead_Shrike_0119_105138.jpg The Loggerhead Shrike in the image is perched laterally on a wire, showcasing a black mask, gray back, and white underparts against a clear blue sky, with distinct black wings and tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions/112.Great_Grey_Shrike_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/112.Great_Grey_Shrike_descriptions.txt new file mode 100644 index 0000000..a0f69fc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/112.Great_Grey_Shrike_descriptions.txt @@ -0,0 +1,10 @@ +Great_Grey_Shrike_0032_797021.jpg Perched upright on a bare branch against a clear sky, the Great Grey Shrike exhibits a sleek light gray plumage with distinctive black wing markings and mask, along with a slightly hooked bill. +Great_Grey_Shrike_0061_106580.jpg The Great Grey Shrike is perched sideways on a rugged, light brown rock, displaying a smooth grey body, contrasting black eye mask, and wings, with a slightly curved beak and a distinctive long tail, set against a minimalist background. +Great_Grey_Shrike_0008_797053.jpg The Great Grey Shrike is perched on a thin vertical branch, displaying its light grey plumage with subtle darker markings, a prominent black eye stripe, and pointed beak, set against a blurred background of soft green grass and blue sky. +Great_Grey_Shrike_0054_106768.jpg The Great Grey Shrike is perched on a wire against a clear blue sky, displaying a sleek grey body with a distinctive black eye stripe and contrasting white underside, with its head slightly tilted upward. +Great_Grey_Shrike_0029_106668.jpg The Great Grey Shrike, shown in profile view perched on a bare twig against a clear blue sky, displays a light grey plumage with a distinctive black mask and wing pattern, complemented by a slightly hooked beak and long tail. +Great_Grey_Shrike_0014_797044.jpg Perched on a sparse, twig-like branch against a dim background, the Great Grey Shrike is viewed from the side displaying its pale grey plumage with a distinct black mask and wing markings, and a slightly curved beak. +Great_Grey_Shrike_0083_797051.jpg The Great Grey Shrike exhibits a smooth grey and white plumage with a distinct black eye mask, perched on a slender branch against a blurred, natural background. +Great_Grey_Shrike_0042_797056.jpg A Great Grey Shrike perches laterally on a thin branch, displaying its smooth gray plumage with a distinctive black mask and wing markings, set against a blurred natural background. +Great_Grey_Shrike_0070_106547.jpg The Great Grey Shrike perches side-on atop a wooden post, showcasing its smooth grey and white plumage with striking black mask and wing markings, set against a softly blurred earthy-toned background. +Great_Grey_Shrike_0058_106634.jpg The Great Grey Shrike is perched amidst bare branches, showcasing a primarily light grey body with a distinctly black eye mask and bill, viewed from the side with a soft-focus natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/113.Baird_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/113.Baird_Sparrow_descriptions.txt new file mode 100644 index 0000000..8bd7aeb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/113.Baird_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Baird_Sparrow_0045_794571.jpg The Baird's Sparrow is perched upright among tall grass, displaying its pale brown and streaked plumage with a lighter chest and distinct facial markings, set against a softly blurred green background. +Baird_Sparrow_0008_106929.jpg The Baird's Sparrow is perched amidst a tangle of dried grasses, displaying a streaked brown and buff coloration with a distinctive pale underbelly and a mustard-yellow tinge on the head, viewed from a side profile. +Baird_Sparrow_0041_794582.jpg The 113.Baird Sparrow in the image is perched upright on a bush with a patterned beige and brown plumage, displaying dark streaks on a pale chest, against a blurred grassy backdrop. +Baird_Sparrow_0002_794551.jpg The Baird's Sparrow is perched upright among silvery-green foliage, displaying a streaked brown and white plumage with a distinct, slightly raised crest and an open beak against a blurred natural background. +Baird_Sparrow_0036_794572.jpg The Baird's Sparrow is perched on the ground amidst tall grass, displaying a mottled brown and buff plumage with distinct streaking on the back, and its side profile reveals a rounded head and a subtle eye ring. +Baird_Sparrow_0040_794581.jpg The low-resolution image shows a Baird's Sparrow perched sideways on green foliage, displaying distinct streaked patterns of brown and black on its back, with a pale underbelly and a muted olive-brown background. +Baird_Sparrow_0049_787324.jpg A Baird's Sparrow with a streaked buff and brown plumage is perched on sagebrush, surrounded by a blurred background of green grass. +Baird_Sparrow_0028_794557.jpg The Baird's Sparrow is perched in dense grass, displaying a streaked brown and buff plumage with a pale face and distinct, thin dark streaks, viewed from the side with its head turned slightly towards the viewer. +Baird_Sparrow_0039_794591.jpg The Baird's Sparrow, perched amidst fine straw-like grass, displays brown streaked feathers on its back with a buffy, streaked chest, captured from a side angle with an outstretched neck as it sings against a blurred green background. +Baird_Sparrow_0046_794588.jpg The small bird, resembling a Baird's Sparrow, features a light brown and streaked plumage with a buffy underside and dark streaks on its crown, stands alertly on gravel with scattered greenery, against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/114.Black_throated_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/114.Black_throated_Sparrow_descriptions.txt new file mode 100644 index 0000000..39f5277 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/114.Black_throated_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Black_Throated_Sparrow_0017_107355.jpg The Black-throated Sparrow is perched on a thin branch with a clear lateral view, showcasing its gray head, distinct black throat, sharp white eyebrow markings, and soft brown back, set against a blurry background of sparse twigs and a light sky. +Black_Throated_Sparrow_0072_107255.jpg The Black-throated Sparrow, viewed from the side, displays a distinct black throat and face markings contrasted by a gray body, set against a ground scattered with dry leaves and twigs, under soft lighting. +Black_Throated_Sparrow_0033_107042.jpg The Black-throated Sparrow has a striking black throat and face with white eyebrow stripes, contrasted against a grayish-brown back and buff underside, standing on a rocky, brown earth surface. +Black_Throated_Sparrow_0081_107111.jpg The Black-throated Sparrow is perched on a rock with a sandy background, displaying a distinct black throat patch, gray-brown plumage, and a sharp facial marking formed by white stripes above and below the eye, viewed from the side. +Black_Throated_Sparrow_0088_107220.jpg The Black-throated Sparrow perches upright on a branch with its distinct black throat contrasting against grayish-brown plumage and a blurred background of muted natural tones. +Black_Throated_Sparrow_0097_106935.jpg The Black-throated Sparrow is perched in profile view on a rocky surface, showcasing its distinctive black throat, white eyebrow stripe, grey body, and buff underparts, with a desert-like background of muted brown and beige tones. +Black_Throated_Sparrow_0066_106974.jpg The Black-throated Sparrow features a sharp black throat, contrasting against grey and brown plumage, is perched in a profile view on a thin branch within a blurred, muted natural background, with prominent white eyebrow and cheek stripes. +Black_Throated_Sparrow_0034_107327.jpg The Black-throated Sparrow is perched on a cactus, displaying a prominent black throat, white eyebrow stripe, and brown-gray plumage against a clear blue sky. +Black_Throated_Sparrow_0023_107104.jpg The Black-throated Sparrow is perched in a side view on a rock with a sandy, rocky background, showing its distinct black throat, brownish-gray body, and white facial markings with a texture that appears smooth despite the low resolution. +Black_Throated_Sparrow_0049_106958.jpg The Black-throated Sparrow is perched on rocky ground, displaying its distinctive black throat patch and white eyebrow with brownish-gray plumage and a slightly upright stance against a backdrop of pebbles and scattered debris. diff --git a/utils/area/descriptions/CUB/generated_descriptions/115.Brewer_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/115.Brewer_Sparrow_descriptions.txt new file mode 100644 index 0000000..4df950f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/115.Brewer_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Brewer_Sparrow_0049_796705.jpg The Brewer's Sparrow is perched on a branch with a mixture of light brown and gray streaked plumage, featuring a distinct facial pattern with a subtle eye ring, set against a blurred natural background of muted green and brown vegetation. +Brewer_Sparrow_0051_796710.jpg The Brewer's Sparrow is perched on a twig, displaying a mottled brown and gray plumage with a subtle eye stripe, against a backdrop of muted green foliage. +Brewer_Sparrow_0066_107510.jpg The Brewer Sparrow is perched on a branch, displaying a gray-brown plumage with streaky texture, a subtle light eye stripe, and a nondescript background of blurred foliage, creating a natural habitat setting. +Brewer_Sparrow_0028_107467.jpg A small bird with subtle brown and gray streaks on its back and wings, sitting on a patch of dry, straw-like grass and scattered gravel, with a distinct light eyebrow stripe visible despite the low resolution. +Brewer_Sparrow_0036_107451.jpg The Brewer's Sparrow is shown in a side profile on sandy ground with sparse greenery, displaying a mix of gray and brown streaks on its back and head, a pale breast, a distinctly long tail, and a short finch-like beak. +Brewer_Sparrow_0053_796694.jpg The Brewer's Sparrow is perched on a textured wooden surface, displaying brown streaked wings and a light gray belly, with its head slightly turned and a soft, blurred natural background. +Brewer_Sparrow_0001_796718.jpg The Brewer Sparrow is perched side-view on a cluster of dry twigs and sagebrush, displaying a streaked brown back, pale underparts, and a small, pointed beak, against a soft, blurred backdrop of greenery and sky. +Brewer_Sparrow_0008_796703.jpg The Brewer's Sparrow is perched on thin branches, displaying its grayish-brown streaked plumage with distinctive dark eye-line and crown stripes, against a blurred natural backdrop. +Brewer_Sparrow_0074_107408.jpg The Brewer's Sparrow, perched on a bare, tangled branch, displays a predominantly gray-brown plumage with subtle streaking, a fine-textured appearance, and a distinct white eye stripe amidst a dry, woody background. +Brewer_Sparrow_0022_107440.jpg The Brewer's Sparrow appears perched on a shrub with its side profile visible, showcasing its streaky brown and gray plumage that blends subtly with its muted, blurry background of foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/116.Chipping_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/116.Chipping_Sparrow_descriptions.txt new file mode 100644 index 0000000..4b35c4f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/116.Chipping_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Chipping_Sparrow_0053_109774.jpg The Chipping Sparrow, viewed from the side, perches on a bare tree branch against a vibrant blue sky, showcasing its distinct chestnut-capped head, streaked gray body, and a slight pattern of dark streaks along its wing. +Chipping_Sparrow_0010_109760.jpg The Chipping Sparrow is perched on a slender branch amidst a background of autumnal foliage, displaying a muted brown back, grayish underparts, and a distinct rufous crown, with subtle streaking visible despite the low resolution. +Chipping_Sparrow_0037_109851.jpg The Chipping Sparrow is perched sideways on a blue feeder with a blurred green and gray background, showcasing a rusty cap, gray belly, and streaked brown wings while holding a seed in its beak. +Chipping_Sparrow_0071_108735.jpg The bird sits in profile on a bare branch with a blurred gray background, displaying a muted brown and gray body with a striking rusty-red cap and face. +Chipping_Sparrow_0033_109069.jpg The image depicts a Chipping Sparrow with a reddish-brown crown and streaked back perched in profile on the edge of a wooden bird feeder against a blurred natural background. +Chipping_Sparrow_0039_107864.jpg A small bird with a grayish belly and brown streaked wings, displaying a rufous crown with a clear black eye line, perched on a bird feeder with a soft-focus natural background. +Chipping_Sparrow_0088_107562.jpg A small bird with a chestnut crown, pale gray body, and striped wings perched sideways on a branch against a clear blue sky. +Chipping_Sparrow_0110_108974.jpg The Chipping Sparrow displays a grayish body with a streaked brown and black back, perched on a feeder filled with seeds, displaying a distinct rusty cap and white eye stripe, set against a suburban backdrop. +Chipping_Sparrow_0011_108081.jpg The Chipping Sparrow is perched on a wooden surface, displaying a rufous cap, gray-white underparts, and streaky brown wings, with a blurred green background. +Chipping_Sparrow_0012_108576.jpg A Chipping Sparrow is seen foraging on a concrete ground, showcasing a rufous cap, gray underparts, and distinct brown streaking along its wings and back despite the low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions/117.Clay_colored_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/117.Clay_colored_Sparrow_descriptions.txt new file mode 100644 index 0000000..f4fc329 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/117.Clay_colored_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Clay_Colored_Sparrow_0106_797247.jpg The Clay-colored Sparrow is perched in a hand-held grasp, displaying its pale brown and buff plumage with darker brown streaking on the wings and a distinctive patterned head, set against a blurred green backdrop. +Clay_Colored_Sparrow_0054_110948.jpg A small sparrow with brown and gray streaks on the back and wings, perched side-on among dry, straggly branches against a blurred green background. +Clay_Colored_Sparrow_0066_110819.jpg The bird is perched sideways on a lichen-covered branch, displaying a pale gray breast, buff-brown streaked back, and distinct dark eye line, set against a soft green blurred background. +Clay_Colored_Sparrow_0002_110606.jpg The Clay-colored Sparrow, viewed from a slight side angle among vibrant green grass, displays subtle clay and brown plumage with distinct streaks on its wings and a pale chest. +Clay_Colored_Sparrow_0081_110682.jpg The Clay-colored Sparrow is perched on a thin branch with its side profile showing soft brown and beige streaked plumage and a pale, slightly streaked chest against a blurred natural background of muted colors. +Clay_Colored_Sparrow_0098_110735.jpg The bird displays a soft, brown-toned plumage with subtle streaks along the back, perched in profile view on a wire fence against a blurred grassy background, highlighting its distinct buffy face and clean breast. +Clay_Colored_Sparrow_0080_797253.jpg The bird is perched on a wire fence, displaying a pale brown body with a distinctive clay-colored crown and facial markings, set against a blurred, natural green background. +Clay_Colored_Sparrow_0071_110656.jpg The Clay-colored Sparrow, perched amidst tall green grass, displays a buff and gray plumage with distinct dark streaks on its crown. +Clay_Colored_Sparrow_0041_110726.jpg The Clay-colored Sparrow is viewed from the side, showcasing its pale brown and gray plumage with a distinct creamy stripe on its head and a pattern of darker streaks on its wings, perched amidst dried grasses and green vegetation in a sunlit environment. +Clay_Colored_Sparrow_0056_110848.jpg The Clay-colored Sparrow perches sideways on a slender branch, displaying its pale, clay-toned feathers with distinct brown streaking on its wings, against a blurred green background of foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/118.House_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/118.House_Sparrow_descriptions.txt new file mode 100644 index 0000000..e16f7c8 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/118.House_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +House_Sparrow_0139_112438.jpg The House Sparrow is perched in profile view on a curved metal rod against a clear sky, displaying a mix of brown, black, and gray plumage with distinctive brown and white streaks on its wings and back, and a small black bib beneath its beak. +House_Sparrow_0108_112963.jpg The bird, perched on a thin branch against a blurred green background, displays a brown and gray speckled pattern on its wings and back with a distinct white and gray chest, and a light brown cap on its head. +House_Sparrow_0030_111387.jpg The House Sparrow, with its light brown and gray plumage and a distinctive black beak, stands upright on a stone surface with speckled markings against a blurred green background. +House_Sparrow_0137_111219.jpg The House Sparrow is perched on a textured rock, displaying a mix of gray and brown plumage with distinct black markings on its throat, against a blurred green and brown natural background. +House_Sparrow_0145_112703.jpg The House Sparrow is perched atop a rough, earth-toned surface against a clear blue sky, showcasing its mottled brown and gray plumage with distinct darker streaks on its wings and a black patch on its throat and chin. +House_Sparrow_0128_110971.jpg The House Sparrow features a mix of brown and gray plumage with distinctive black streaks on its wings, standing in a side profile atop a wooden structure against a blurred background suggestive of foliage and urban elements. +House_Sparrow_0083_111470.jpg The bird is perched on a branch, displaying a warm brown and white plumage with a distinct black bib, set against a background of textured tree bark. +House_Sparrow_0111_112968.jpg The 118.House Sparrow is perched on a bare branch with a muted brown and gray plumage, displaying a prominent dark patch on its chest and a light background that emphasizes its softly textured feathers. +House_Sparrow_0144_113216.jpg The 118.House Sparrow displays a warm brown and grey plumage with speckled textures, perched in a lateral pose near a birdhouse against a blurred natural background, featuring a distinctive black bib under the chin and white cheeks. +House_Sparrow_0073_112745.jpg The House Sparrow displays a mix of brown, grey, and black plumage with a distinctive black bib, perched on a textured tree branch, against a soft, blurred background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/119.Field_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/119.Field_Sparrow_descriptions.txt new file mode 100644 index 0000000..5249781 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/119.Field_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Field_Sparrow_0013_113599.jpg The Field Sparrow is perched on a slender branch, showcasing its warm brown cap, pale underbelly, and softly streaked back against a blurred, muted green-brown background, with a distinctive pink bill and alert posture. +Field_Sparrow_0074_113504.jpg This Field Sparrow displays a soft brown and gray plumage with a pale breast and distinct rusty cap, perched on a bare branch amidst a blurred background of intertwined branches. +Field_Sparrow_0091_113486.jpg A small, light brown bird with a white belly and a distinct rust-colored cap stands sideways on a branch, surrounded by a softly blurred green and brown natural background. +Field_Sparrow_0130_113846.jpg The Field Sparrow is perched on a branch, viewed from the side, displaying a pale gray body, a rusty-brown crown, distinct white eye-ring, and patterned brown wings. +Field_Sparrow_0095_113842.jpg The Field Sparrow, viewed from the side, is perched on green grass, displaying a light brown body streaked with darker patterns, a distinct rust-colored crown, and a pale face with a small pink bill. +Field_Sparrow_0101_113762.jpg The Field Sparrow, perched on a branch, displays a light brown and gray plumage with a slight rufous cap, amidst a blurred green background, highlighting its delicate body and small beak. +Field_Sparrow_0029_113434.jpg The Field Sparrow is perched on a lichen-covered branch with its side profile visible, displaying a soft brown plumage with subtle streaks and a pale reddish bill against a clear blue sky background. +Field_Sparrow_0127_114087.jpg A small bird with a warm brown cap, pale pink beak, and light brown and white plumage stands perched on a bare twig against a softly blurred, neutral-toned background. +Field_Sparrow_0111_113899.jpg The Field Sparrow, perched on the edge of a wooden structure, displays a warm brown back with subtle streaking, a lighter underbelly, and a soft blurred background of muted earth tones, adding contrast to its delicate pose facing forward. +Field_Sparrow_0043_113607.jpg The bird, perched among leafy branches, displays a soft brown plumage with a reddish crown and grayish face, while its back is streaked and the environment is a natural, verdant setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions/120.Fox_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/120.Fox_Sparrow_descriptions.txt new file mode 100644 index 0000000..e80dc71 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/120.Fox_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Fox_Sparrow_0025_114555.jpg A Fox Sparrow with a warm reddish-brown plumage and streaked breast perches sideways on a branch against a textured tree trunk, highlighting its stout body and short tail. +Fox_Sparrow_0058_114789.jpg A Fox Sparrow with a rich reddish-brown plumage and streaked breast is foraging on the ground amidst scattered seeds, viewed in a side pose with its distinct speckled pattern and robust appearance visible despite the low resolution. +Fox_Sparrow_0113_114389.jpg A Fox Sparrow with a mottled brown and white chest and a greyish brown head is perched facing forward on a thorny branch surrounded by reddish leaves against a blurred greenish background. +Fox_Sparrow_0110_115172.jpg The Fox Sparrow is perched upright on a snowy surface, displaying a speckled brown and white chest, reddish-brown wings and tail, with a blurred, wintry background. +Fox_Sparrow_0118_114884.jpg The Fox Sparrow is perched on a thorny branch, displaying a rich brown plumage with distinct speckled white and brown patterns on its breast, set against a blurred white background, highlighting its stout, rounded body and slightly erect tail. +Fox_Sparrow_0078_114582.jpg The 120.Fox Sparrow in the image displays a warm reddish-brown and gray plumage with streaked patterns, perched in a side view on a mossy and textured bark background, highlighting its robust body and short tail. +Fox_Sparrow_0009_114796.jpg The Fox Sparrow is perched on a snowy surface, displaying a mix of brown and rust hues with a distinctive speckled chest pattern, viewed in profile against a blurred wintery background. +Fox_Sparrow_0039_114816.jpg The 120.Fox Sparrow is shown in a side profile, featuring a predominantly brown plumage with streaks of white on its chest and belly, set against a background of dried leaves and plants, emphasizing its earthy tones. +Fox_Sparrow_0104_114908.jpg The bird is perched sideways on a branch with a mottled brown and white body, a distinct yellow beak, and dark eyes, set against a blurred background of dark foliage. +Fox_Sparrow_0109_114859.jpg The 120.Fox Sparrow is perched on a thin, bare branch against a blurred, warm-toned background, showcasing its rich brown plumage with a lightly streaked chest and a distinctive rufous tail, viewed from the side. diff --git a/utils/area/descriptions/CUB/generated_descriptions/121.Grasshopper_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/121.Grasshopper_Sparrow_descriptions.txt new file mode 100644 index 0000000..b83ca34 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/121.Grasshopper_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Grasshopper_Sparrow_0020_116289.jpg A small bird with a mottled brown pattern and a slightly streaked crown is perched sideways on a branch against a blurred green background. +Grasshopper_Sparrow_0119_116081.jpg The Grasshopper Sparrow is perched on a branch, showcasing mottled brown and tan plumage with a distinctive streaked pattern on its back and wings, a pale underside, a yellowish spot near the bill, and a grassy, blurred background. +Grasshopper_Sparrow_0003_115676.jpg The 121.Grasshopper Sparrow in the image appears perched in profile on slender, bare twigs against a soft green background, showcasing its streaked brown and buff plumage with a distinct pale eye ring and a smooth, rounded head. +Grasshopper_Sparrow_0114_116160.jpg A small bird with a mottled brown and beige plumage, perched sideways on a barbed wire against a blurred grassy background, showing a yellowish spot near its eye. +Grasshopper_Sparrow_0050_116301.jpg The 121.Grasshopper Sparrow displays a brown-streaked back and buffy underparts while perched sideways on a metallic wire amid a blurry, beige natural background, with its distinct flat head and short tail clearly visible. +Grasshopper_Sparrow_0042_115638.jpg The Grasshopper Sparrow, seen in a side view perched on barbed wire, displays a muted brown and gold streaked texture with a pale underbelly, set against a blurred natural background of warm, earthy tones. +Grasshopper_Sparrow_0068_115799.jpg The bird is perched sideways on a branch amidst a background of intertwining branches, displaying a mix of brown and gray feathers with subtle streaks and a distinct pale stripe above its eye. +Grasshopper_Sparrow_0098_116027.jpg The Grasshopper Sparrow is perched on a weathered wooden post against a blurred green background, displaying a warm buff-colored chest, streaked brown wings with a distinctive white eye ring, and a short tail, with its head turned slightly to the side. +Grasshopper_Sparrow_0014_116129.jpg The 121.Grasshopper Sparrow appears with a streaked brown and buff pattern on its back, perched among vertical dried grass stalks, with a notably flat-headed pose and a light yellow face contrasting against the muted green background. +Grasshopper_Sparrow_0029_115761.jpg The Grasshopper Sparrow is perched on a thin branch, featuring a streaked crown, buffy breast, and intricate, barred wing patterns, with a blurred, earthy grassland background accentuating its upright pose and open mouth. diff --git a/utils/area/descriptions/CUB/generated_descriptions/122.Harris_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/122.Harris_Sparrow_descriptions.txt new file mode 100644 index 0000000..64151e2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/122.Harris_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Harris_Sparrow_0065_116435.jpg The Harris Sparrow, perched on a lichen-covered branch, exhibits brown and black plumage with a distinct black bib and pink bill, contrasted against a blurred, muted background. +Harris_Sparrow_0073_116577.jpg The 122.Harris Sparrow is perched sideways on intertwined branches, displaying a distinctive black head and face with a pinkish-orange bill, while its body exhibits a brown streaked pattern contrasted against a muted, natural background. +Harris_Sparrow_0052_116544.jpg A Harris Sparrow stands among dry, brown leaves, displaying its distinctive pinkish-orange beak, black crown, and mottled brown and white plumage, viewed from a slightly elevated angle. +Harris_Sparrow_0055_116512.jpg In a ground-level perspective, the Harris's Sparrow displays a mix of brown and white plumage with distinctive dark facial markings, against a textured ground covered in small pebbles, grass, and scattered seeds. +Harris_Sparrow_0034_116439.jpg The Harris Sparrow, perched sideways on a lichen-covered branch against a blurred background, features a brown back and wings with a black bib and speckled breast. +Harris_Sparrow_0018_116402.jpg A Harris's Sparrow, perched on a bare branch, displays a distinctive black face and bib, a mottled brown and white body, against a bright blue sky background. +Harris_Sparrow_0072_116662.jpg The Harris's Sparrow, viewed from the side, displays a distinctive blend of white and brown streaks on its body with a notable black hood and bib, standing alert on a weathered, red-tinged wooden surface against a blurred natural backdrop featuring sparse trees and a muted grassy field. +Harris_Sparrow_0027_116687.jpg The Harris's Sparrow is perched sideways with its head slightly lowered, displaying a streaked brown and white plumage with a distinctive black bib, set against a blurred, neutral-toned background. +Harris_Sparrow_0029_116516.jpg The Harris's Sparrow is perched among tangled branches, displaying a distinctive black face and bib with a streaked brown back, and its creamy underparts with contrasting dark markings are visible despite the lower resolution. +Harris_Sparrow_0006_116364.jpg The Harris's Sparrow perches on a branch with its distinct black facial patch, grayish-brown plumage, and soft white underparts, set against a blurred, grassy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/123.Henslow_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/123.Henslow_Sparrow_descriptions.txt new file mode 100644 index 0000000..3b302b9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/123.Henslow_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Henslow_Sparrow_0054_116850.jpg The Henslow's Sparrow appears perched on a plant stem amidst a blurred grassy background, displaying a pale greenish-brown body with dark streaks and a distinct olive-toned head, facing slightly upward and to the left. +Henslow_Sparrow_0070_796571.jpg The 123.Henslow Sparrow is perched in profile on a thin, bare branch with its olive-brown back and streaked wings contrasting against the blurred earthy-toned background, while its distinctive short tail and pale-colored face with a subtle eye-ring are visible despite the low resolution. +Henslow_Sparrow_0087_116942.jpg A Henslow's Sparrow perches on a vertical reed amidst a blurred grassy background, showcasing its olive-tinted head, streaked brown back, and buffy breast with distinct streaks. +Henslow_Sparrow_0113_116801.jpg This Henslow's Sparrow is perched in tall, slender grass with a predominantly brown and olive color palette, displaying distinct dark streaks on its back and a subtle pale stripe on the crown, set against a soft, blurred green background. +Henslow_Sparrow_0081_116755.jpg The Henslow Sparrow appears perched amidst green foliage, displaying a mottled brown and olive plumage with delicate streaks, a distinctive short tail, and a stout pointed beak, while viewed in a side profile from a slightly elevated angle. +Henslow_Sparrow_0059_796569.jpg The Henslow Sparrow is perched on a branch, showcasing its olive-greenish head, streaked brown back and wings, and buffy underparts with black streaks, all set against a blurred natural background of branches and leaves. +Henslow_Sparrow_0037_796579.jpg The Henslow Sparrow, perched on a thin branch against a blurred green background, showcases a mix of buffy and brown plumage with fine streaks on its head and wings, and a distinct russet hue along its sides. +Henslow_Sparrow_0009_796611.jpg The Henslow Sparrow, perched on a thin branch, displays a distinctive pattern with olive-brown and rust-colored streaked plumage, a pale underside, and a faintly striped crown, set against a blurred green background. +Henslow_Sparrow_0064_796573.jpg The Henslow's Sparrow, perched on a thin branch, shows a streaked brown back with buff and black patterning, a pale chest with fine streaks, a light head with a slight eye-ring, set against a blurred green background. +Henslow_Sparrow_0052_796599.jpg The Henslow's Sparrow is perched on a thin branch, showcasing its olive-brown head, streaked chestnut and black back, white underparts, and pale pink bill, set against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/124.Le_Conte_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/124.Le_Conte_Sparrow_descriptions.txt new file mode 100644 index 0000000..c9a3d2f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/124.Le_Conte_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Le_Conte_Sparrow_0073_117127.jpg The Le Conte's Sparrow is perched amidst tall, dry grasses, displaying a buffy orange face with a streaked crown, finely streaked flanks on a creamy underbelly, and a distinct blend of brown and black markings on its wings and back, viewed in a side profile. +Le_Conte_Sparrow_0084_795189.jpg The Le Conte's Sparrow displays a blend of buff and brown plumage with fine streaking on the back, a distinct orange-buff hue on the breast, and a slate-gray crown, perched among dry reeds and leaf litter creating a muted, natural backdrop. +Le_Conte_Sparrow_0060_795160.jpg The Le Conte's Sparrow is perched amidst dried grass, displaying a rich blend of brown and buff with distinct dark streaks on its back, a creamy underbelly, and a notable orange-buff face. +Le_Conte_Sparrow_0022_117039.jpg The Le Conte Sparrow is perched on the ground among reddish-brown leaves and sprouts, displaying a mix of buffy and brown streaks with a creamy underside, and a distinct, finely streaked head pattern from a side angle. +Le_Conte_Sparrow_0089_795154.jpg The Le Conte's Sparrow is perched on a dried plant with a golden-brown background of grasses, showcasing a streaked brown and buff plumage with distinctive facial markings and a compact, rounded body. +Le_Conte_Sparrow_0078_117052.jpg A Le Conte's Sparrow with buffy yellowish plumage and dark streaking on the head and back is perched upright on thin, damp branches surrounded by lush green and brown foliage. +Le_Conte_Sparrow_0043_795213.jpg The Le Conte's Sparrow exhibits a buffy-orange wash on its face and breast, patterned with fine, dark streaks on its flanks and back, seen perched with an upright pose amid sparse twigs against a blurred, earthy background. +Le_Conte_Sparrow_0040_117088.jpg A Le Conte's Sparrow perches sideways on a bare branch, displaying its warm buffy-orange face, streaked crown, and finely patterned brown streaks on the back, against a blurred tan background. +Le_Conte_Sparrow_0020_117035.jpg The Le Conte's Sparrow exhibits a warm buffy-orange face with fine dark streaks on its head and back, perched on a diagonal twig amidst a blurred background of twigs and green leaves, displaying a slightly side-on profile. +Le_Conte_Sparrow_0055_117036.jpg The 124.Le Conte Sparrow is perched amid dried reeds, showcasing its soft yellowish-brown plumage with distinct black streaks along the back and sides, a creamy buff face with a dark eyeline, and a compact round body seen from a side view. diff --git a/utils/area/descriptions/CUB/generated_descriptions/125.Lincoln_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/125.Lincoln_Sparrow_descriptions.txt new file mode 100644 index 0000000..d809522 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/125.Lincoln_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Lincoln_Sparrow_0009_117535.jpg The Lincoln Sparrow is perched on a branch with a slightly turned profile, displaying brown streaked plumage with a buffy chest and distinct facial markings, against a blurred green foliage background. +Lincoln_Sparrow_0057_117334.jpg The Lincoln Sparrow, seen from a side profile, displays a buffy brown color with intricate streaking on its back and breast, set against a background of grass and rocks in a natural environment. +Lincoln_Sparrow_0038_117461.jpg A small bird is perched among scattered sunflower seeds on the ground, displaying a brown-streaked plumage with a buffy breast and crown, captured from a side angle showing its beak and eye in profile. +Lincoln_Sparrow_0072_117951.jpg The Lincoln Sparrow displays a brown, streaked plumage with subtle earthy tones and is perched in a foraging pose amidst a damp, leaf-laden forest floor. +Lincoln_Sparrow_0090_117857.jpg The bird has brown and tan streaked plumage with a distinctive buffy eye ring and subtle breast striping, perched in a profile view on a branch amidst dense green foliage. +Lincoln_Sparrow_0087_117444.jpg This 125.Lincoln Sparrow features streaky brown and buff plumage with a slight crest and grayish face, captured in a side pose foraging on a patch of grass strewn with seeds. +Lincoln_Sparrow_0079_117919.jpg The Lincoln Sparrow is perched on a branch, displaying a mix of brown and buff with streaked patterns on its plumage, against a blurred backdrop of green foliage, showcasing a distinctive white eye-ring and finely streaked breast despite the low resolution. +Lincoln_Sparrow_0059_117271.jpg The 125.Lincoln Sparrow, viewed in profile, is perched on a branch with distinct brown and cream streaked plumage, blending with a vibrant green and sunlit natural background. +Lincoln_Sparrow_0042_117507.jpg A small bird with streaky brown and white plumage, a distinctive buffy wash across the breast, is perched on the ground amidst a rocky and leafy environment, viewed in profile with a clear view of its side and tail. +Lincoln_Sparrow_0063_117509.jpg A small bird with streaked brown and buff plumage, a white belly, perched in a side profile on dry twigs against a muted green and gray background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/126.Nelson_Sharp_tailed_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/126.Nelson_Sharp_tailed_Sparrow_descriptions.txt new file mode 100644 index 0000000..9637451 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/126.Nelson_Sharp_tailed_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Nelson_Sharp_Tailed_Sparrow_0049_118033.jpg The Nelson Sharp-tailed Sparrow in the image appears with a streaked brown and buff coloration, perched in a resting pose among sparse, dry twigs with a blurred open background, highlighting its distinct sharp tail and small size. +Nelson_Sharp_Tailed_Sparrow_0033_118024.jpg The Nelson Sharp-tailed Sparrow is perched sideways on a stick fence, showcasing its streaked brown and orange plumage and distinct facial marking against a blurred green and tan background. +Nelson_Sharp_Tailed_Sparrow_0056_117974.jpg The Nelson Sharp-tailed Sparrow in the image displays a warm, orange-brown head with streaks on its back, sitting and singing on a tangled, stick-like perch against a softly blurred green background. +Nelson_Sharp_Tailed_Sparrow_0013_796942.jpg The Nelson Sharp-tailed Sparrow is perched on a gravelly surface, displaying a mottled combination of brown and gray feathers with a streaked pattern, a distinct buffy facial marking, and standing upright with a slightly turned head. +Nelson_Sharp_Tailed_Sparrow_0055_796937.jpg The Nelson's Sharp-tailed Sparrow is perched amidst dense, vertical marsh reeds, displaying a mottled grayish-brown plumage with streaks and a faint orange-buff face, its back slightly arched and tail visible. +Nelson_Sharp_Tailed_Sparrow_0051_796902.jpg A small bird with a warm brown cap and a distinctive orange-buff face perches amid dry, twiggy vegetation, displaying streaked brown and white plumage on its breast and sides. +Nelson_Sharp_Tailed_Sparrow_0019_118066.jpg Amidst vertical reeds, the sparrow perches sideways with muted brown and tan plumage accented by a distinct yellow streak above the eye, blending into the grassy marsh environment. +Nelson_Sharp_Tailed_Sparrow_0023_796899.jpg The Nelson Sharp-tailed Sparrow is perched amidst tall grasses, displaying a streaked brown and tan plumage with a distinct white eye stripe, surrounded by a softly blurred, earthy-toned background. +Nelson_Sharp_Tailed_Sparrow_0038_796920.jpg The Nelson Sharp-tailed Sparrow is perched sideways on a purple stem, displaying its rusty brown, streaked plumage with a distinctive buffy orange face against a blurred, earthy-toned background of grasses. +Nelson_Sharp_Tailed_Sparrow_0014_796906.jpg The Nelson Sharp-tailed Sparrow displays a blend of buff and brown plumage with distinct streaks and is perched sideways on slender branches amidst a backdrop of blurred golden reeds. diff --git a/utils/area/descriptions/CUB/generated_descriptions/127.Savannah_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/127.Savannah_Sparrow_descriptions.txt new file mode 100644 index 0000000..50d6311 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/127.Savannah_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Savannah_Sparrow_0014_120072.jpg The Savannah Sparrow is perched with a side profile view, displaying a speckled brown and white plumage with a distinctive yellow patch above the eye, set against a blurred, earthy green background. +Savannah_Sparrow_0118_118603.jpg The Savannah Sparrow is perched in a natural, grassy environment, displaying brown and white streaked plumage with a yellowish spot above its eye, and it is viewed from the side as it stands amidst dried vegetation. +Savannah_Sparrow_0045_119398.jpg A small bird is perched on a gray rock, featuring streaked brown and white plumage with a light breast and a hint of yellow near the eye, set against a blurred natural background. +Savannah_Sparrow_0067_118491.jpg The Savannah Sparrow is perched on a leafy branch with a backdrop of yellow flowers, displaying streaked brown and white plumage, a yellowish eyebrow stripe, and a compact posture. +Savannah_Sparrow_0017_119171.jpg The Savannah Sparrow is perched on a wooden fence, displaying a side profile with its streaked brown and white plumage, yellowish eyebrow line, and pink legs, set against a blurred, green foliage background. +Savannah_Sparrow_0124_118820.jpg A bird with mottled brown and white plumage, displaying a side pose on a rocky ground, with distinct streaked patterns on its chest and a soft, blurred background. +Savannah_Sparrow_0066_119949.jpg The Savannah Sparrow is perched amidst dry grasses, displaying brown and white streaked plumage with a hint of yellow above the eye, against a blurred, earthy background. +Savannah_Sparrow_0091_120630.jpg The Savannah Sparrow is perched on a rock, displaying its brown and white streaked plumage with distinctive yellow patches above the eyes, set against a softly blurred green background. +Savannah_Sparrow_0137_119757.jpg The Savannah Sparrow, perched on a wire, displays a mix of brown and white streaks with a notable yellow tint near the eyes against a blurred light background. +Savannah_Sparrow_0079_118817.jpg The Savannah Sparrow, perched on the edge of a blue surface against a blurred grassy background, displays streaked brown and white plumage with distinct yellow markings near the eyes. diff --git a/utils/area/descriptions/CUB/generated_descriptions/128.Seaside_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/128.Seaside_Sparrow_descriptions.txt new file mode 100644 index 0000000..49029e3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/128.Seaside_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Seaside_Sparrow_0064_120813.jpg The bird is perched on a green, slanted stem against a clear blue sky, showing streaked brown and beige plumage with a slightly visible yellow tinge near the eye, emphasizing its distinct pattern even in low resolution. +Seaside_Sparrow_0046_120768.jpg The Seaside Sparrow in the image appears perched among tall grasses, displaying a mottled gray-brown plumage with a distinguishing yellow streak above its eye, set against a blurred, natural marshland background. +Seaside_Sparrow_0048_120758.jpg A small bird with a dull grayish-brown plumage, lightly streaked chest, and a pale yellow spot in front of its eye perched on thin, branchy reeds against a blurred, earthy-toned background. +Seaside_Sparrow_0005_796516.jpg The low-resolution image depicts a Seaside Sparrow perched in profile with a dark, streaked plumage featuring white highlights on its chest, against a blurred green background, accentuated by a notably yellow spot above its eye. +Seaside_Sparrow_0025_796518.jpg The 128.Seaside Sparrow is perched on sandy ground with a fluffed, grayish-brown plumage, displaying slightly spread wings and a subtle yellow hue near the beak, surrounded by a blurred, earthy background. +Seaside_Sparrow_0044_119287.jpg The Seaside Sparrow is perched on a branch against a clear blue sky, displaying a brown, streak-patterned plumage with a yellow-tinged face and back. +Seaside_Sparrow_0066_120791.jpg The Seaside Sparrow is perched amidst tall, slender reeds, displaying a bluish-gray body with fine streaks and a subtle yellow tint near its face, set against a blurred, earthy reed-covered backdrop. +Seaside_Sparrow_0039_796530.jpg The 128.Seaside Sparrow is perched on a gravelly surface in profile view, displaying a muted brown body with subtle streaking and a slightly curved tail. +Seaside_Sparrow_0017_796513.jpg A small, plump bird with a streaked brown and gray body, a yellow streak above the eye, a slightly curved tail, held gently against a blurred outdoor background. +Seaside_Sparrow_0021_120699.jpg The Seaside Sparrow is perched on a reed, displaying a streaked brown and gray plumage with a distinct yellow spot above the eye, set against a blurred marshy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/129.Song_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/129.Song_Sparrow_descriptions.txt new file mode 100644 index 0000000..db0065b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/129.Song_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Song_Sparrow_0086_121999.jpg The 129.Song Sparrow shows a brown and white streaked plumage with a slightly puffed chest, standing on the ground amidst grass and scattered stones, displaying a profile view with a distinct tail and mottled texture. +Song_Sparrow_0029_120989.jpg The Song Sparrow is perched with a side profile visible, displaying streaked brown and white plumage, on a flowering bush with blurred greenery in the background. +Song_Sparrow_0110_120872.jpg The Song Sparrow is perched on a diagonal branch displaying brown and white streaked plumage, an open beak indicating singing, against a soft-focus background of pale sky and blurred greenery. +Song_Sparrow_0107_120990.jpg The 129.Song Sparrow is perched on a branch with mottled brown and white plumage, displaying streaked patterns, against a blurred green foliage background, seen in profile view with its beak open in a vocalizing posture. +Song_Sparrow_0092_121969.jpg The song sparrow perches on a metallic post, displaying its brown and white streaked plumage with a rounded, slightly fluffed body and a background of soft, muted browns. +Song_Sparrow_0036_121679.jpg The Song Sparrow perches profile on a leafy branch against a blurred green background, displaying mottled brown and white plumage with distinctive streaking on its chest and flanks. +Song_Sparrow_0061_120891.jpg The Song Sparrow is perched on a gravel path with sparse grass, showcasing brown and white streaked plumage, a slightly cocked tail, and a distinct head crest visible from the side view. +Song_Sparrow_0044_121931.jpg The 129.Song Sparrow, viewed slightly from the side, displays a streaked brown and white plumage with distinctive dark facial markings, perched on wooden surface surrounded by scattered seeds and a blurred natural backdrop. +Song_Sparrow_0087_121062.jpg The Song Sparrow is perched sideways on light-colored reeds, showcasing a brown and white streaked breast, warm brown wings with darker streaks, and a distinctive eye stripe against a softly blurred beige background. +Song_Sparrow_0055_121158.jpg The Song Sparrow, perched in a sideways view on a thin branch against a clear blue sky, exhibits a streaked brown and white plumage with a distinct rusty-brown crown and wings, complemented by a notably long tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions/130.Tree_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/130.Tree_Sparrow_descriptions.txt new file mode 100644 index 0000000..e14176d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/130.Tree_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Tree_Sparrow_0023_124956.jpg The Tree Sparrow has a warm brown cap and black facial markings, perched sideways on bare, intertwined branches with a blurred, earthy background. +Tree_Sparrow_0101_124104.jpg The tree sparrow, viewed in profile on a thin branch, displays a rufous crown, a light gray underside, and brown wings with pale markings, set against a stark, white background. +Tree_Sparrow_0007_122911.jpg The Tree Sparrow perches sideways on a black wire adorned with artificial green leaves, showcasing its distinct reddish-brown crown, white cheeks, and streaked brown back against a blurred, wintry background of dry grasses. +Tree_Sparrow_0122_123927.jpg The Tree Sparrow, perched sideways on a weathered wooden surface, displays a reddish-brown cap, streaked back, and white cheeks, with scattered seeds below adding a touch of yellow to the soft, greenish-brown backdrop. +Tree_Sparrow_0035_123211.jpg A small bird with a reddish-brown crown, white cheeks, and brown streaked wings is perched on a snowy ground, showcasing a plump appearance and sharp gaze. +Tree_Sparrow_0032_123489.jpg The 130.Tree Sparrow exhibits a warm brown cap and back with a distinctive black bib, seen in profile perched on a wooden branch against a blurred green foliage background. +Tree_Sparrow_0022_123496.jpg The Tree Sparrow, captured mid-flight with outstretched wings, displays a rich brown crown and distinct black cheek markings, set against a blurred, natural background and a metal bird feeder filled with peanuts. +Tree_Sparrow_0052_123869.jpg The Tree Sparrow is perched in a side profile showing its rust-colored crown, gray underparts, and brown streaked wings, set against a blurred green background. +Tree_Sparrow_0041_123497.jpg A Tree Sparrow with brown and gray plumage and a small black bib perches among broad, green leaves, offering a side view that highlights its rounded body and distinct facial markings. +Tree_Sparrow_0034_123799.jpg The Tree Sparrow is perched among frosted branches, showcasing a chestnut crown, grayish underparts, and brown wings with distinct streaks. diff --git a/utils/area/descriptions/CUB/generated_descriptions/131.Vesper_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/131.Vesper_Sparrow_descriptions.txt new file mode 100644 index 0000000..10a2c3a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/131.Vesper_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +Vesper_Sparrow_0087_125712.jpg The Vesper Sparrow in the image is perched on a lichen-covered log, displaying a side profile with streaked brown and gray plumage, a white belly, and a distinct eye ring, set against a blurred green background. +Vesper_Sparrow_0007_125630.jpg The Vesper Sparrow is perched side-on atop a leafy branch, displaying its streaked brown and white plumage against a blurred green background. +Vesper_Sparrow_0029_125498.jpg The Vesper Sparrow is perched on a rock with a mottled brown and white plumage, displaying a slightly fluffed pose amidst a forest floor of dry pine needles and scattered stones, with distinct light eye-ring and streaked chest. +Vesper_Sparrow_0094_125602.jpg The Vesper Sparrow is perched sideways on a weathered wooden post, displaying streaked brown plumage with a clear eye-ring against a blurred, earthy background. +Vesper_Sparrow_0090_125690.jpg The Vesper Sparrow displays streaked brown and white plumage with a distinct white eye ring, standing in a profile view on a patchy grass and dirt terrain, highlighting its subtly marked wing bars and pink-tinged legs. +Vesper_Sparrow_0066_125619.jpg The Vesper Sparrow is perched on a broken stalk, displaying mottled brown feathers with a lighter belly, distinctive white eye-ring, and a blurred grassy background with earthy tones. +Vesper_Sparrow_0022_125719.jpg A Vesper Sparrow with streaky brown and white plumage is perched in a side view atop a tall, dried plant against a blurred earthy-toned background. +Vesper_Sparrow_0053_125641.jpg The Vesper Sparrow is perched in a profile pose on a delicate plant branch, revealing its streaked brown and white plumage against a soft-focus dark green backdrop. +Vesper_Sparrow_0017_125534.jpg The Vesper Sparrow, perched upright on a slender branch, displays a mottled brown and white pattern with distinct facial striping against a soft, blurred natural background. +Vesper_Sparrow_0013_109937.jpg The bird in the image has a plump, grayish-brown body with a white underbelly, positioned in a profile pose on a snowy surface, with a backdrop of a soft blue sky and evergreen sprigs providing a contrast. diff --git a/utils/area/descriptions/CUB/generated_descriptions/132.White_crowned_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/132.White_crowned_Sparrow_descriptions.txt new file mode 100644 index 0000000..28bce0e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/132.White_crowned_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +White_Crowned_Sparrow_0127_126923.jpg The White-crowned Sparrow is seen in a frontal pose on a concrete surface, featuring a brown and gray body with a distinctive black and white striped head. +White_Crowned_Sparrow_0107_128662.jpg The White-crowned Sparrow is perched on a curved branch, showing its distinctive black and white striped crown and grayish-brown body against a blurred, neutral-toned background. +White_Crowned_Sparrow_0105_126818.jpg The White-crowned Sparrow is seen in a side view on sandy ground, showcasing its striking black and white striped head, grayish body, and brown wings with a pale, subtle texture against a blurred, neutral background. +White_Crowned_Sparrow_0033_127728.jpg The White-crowned Sparrow is perched on a slender branch, displaying its distinctive black-and-white striped crown, soft gray plumage, and brown wings, set against a blurred, muted natural background. +White_Crowned_Sparrow_0010_127651.jpg The White-crowned Sparrow is perched on a textured wooden surface, displaying its characteristic black and white striped crown, warm brown wings with subtle streaks, and a contrasting pale chest, set against a dark, blurred background. +White_Crowned_Sparrow_0064_126467.jpg A small bird with a grey body and distinctive black-and-white striped crown, perches on a blue pot next to red flowers, against a backdrop of wooden planks. +White_Crowned_Sparrow_0029_127503.jpg A small bird with a distinctive black and white striped crown, perched on the edge of a water-filled, rustic container, surrounded by a natural, earthy background; its fluffed feathers display shades of gray and brown, and its body faces to the left. +White_Crowned_Sparrow_0068_126156.jpg The White-crowned Sparrow is perched sideways on a moss-laden branch, exhibiting a distinct black and white striped crown atop a soft gray body, set against a blurred, muted background. +White_Crowned_Sparrow_0119_126932.jpg The White-crowned Sparrow is perched on the ground amidst green grass and scattered leaves, displaying its characteristic black and white striped crown, muted gray body, and warm brown wings with a slightly ruffled texture. +White_Crowned_Sparrow_0129_127860.jpg The 132.White crowned Sparrow in the image is depicted in a side view, showcasing its characteristic black and white striped crown, grayish body with brown streaked wings, and bright orange beak, set against a textured, pebble-strewn ground. diff --git a/utils/area/descriptions/CUB/generated_descriptions/133.White_throated_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/133.White_throated_Sparrow_descriptions.txt new file mode 100644 index 0000000..d115ee6 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/133.White_throated_Sparrow_descriptions.txt @@ -0,0 +1,10 @@ +White_Throated_Sparrow_0118_129084.jpg The White-throated Sparrow is seen in a profile view, displaying brown and white plumage with a distinct white throat patch and yellow lores, perched atop a pebble-strewn ground. +White_Throated_Sparrow_0056_128906.jpg The White-throated Sparrow is perched among thin branches, displaying a plump body with grayish-brown plumage, a distinct white throat, and a striking yellow spot near its beak, set against a blurred, neutral-toned background. +White_Throated_Sparrow_0015_129138.jpg The White-throated Sparrow, perched on a wooden surface, displays a side profile with its distinctive white throat patch, brown and rust-colored streaked plumage, and a striking yellow spot at the base of its bill, set against a blurred green backdrop. +White_Throated_Sparrow_0034_129054.jpg A small bird with brown streaked feathers and distinctive white throat perched on a branch among lush green and reddish foliage, with its head slightly turned to the side. +White_Throated_Sparrow_0027_128847.jpg A small bird with a brown and white streaked body, a distinctive white throat, and yellow patches above the eyes perches sideways on a slender branch amidst a blurred, natural woodland backdrop. +White_Throated_Sparrow_0128_128956.jpg The White-throated Sparrow shows a mix of brown and white plumage with a distinctive yellow spot above the eye, standing amidst green grass with a seed-scattered ground. +White_Throated_Sparrow_0071_128915.jpg The White-throated Sparrow features a grayish body with brown streaks, a distinctive white throat, and a yellow patch on the head, perched on a textured, weathered wooden surface. +White_Throated_Sparrow_0061_128902.jpg The White-throated Sparrow features a mix of brown and black streaks on its back, a distinctive white throat, and a subtly yellow area between the eyes, perched on a rustic wooden branch against a blurred, earthy-toned background. +White_Throated_Sparrow_0113_128936.jpg The White-throated Sparrow is perched on a grassy and leafy ground, showcasing its distinctive gray underparts, sharp black and white striped crown, with a notable yellow spot between the eye and beak, and brown-streaked wings in a frontal view. +White_Throated_Sparrow_0125_128832.jpg A White-throated Sparrow is perched on a branch, displaying a mix of brown and white streaks on its wings and back, a white throat patch, a yellow spot near its eyes, and is set against a blurred natural background with hints of greenery. diff --git a/utils/area/descriptions/CUB/generated_descriptions/134.Cape_Glossy_Starling_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/134.Cape_Glossy_Starling_descriptions.txt new file mode 100644 index 0000000..3b0d1e8 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/134.Cape_Glossy_Starling_descriptions.txt @@ -0,0 +1,10 @@ +Cape_Glossy_Starling_0075_129431.jpg The Cape Glossy Starling displays iridescent blue and green plumage with a frontal view perched on a wooden railing, set against a blurred natural green background, and features a vivid orange eye ring that stands out. +Cape_Glossy_Starling_0048_129397.jpg The 134.Cape Glossy Starling displays a shimmering iridescent blue-green plumage, viewed in a left-facing pose against a softly blurred neutral background, with a distinctive bright yellow eye and a sharp black bill. +Cape_Glossy_Starling_0059_129357.jpg The Cape Glossy Starling displays iridescent blue-green plumage with a glossy texture, viewed from an above angle, standing on a rough, brown, textured ground, with striking yellow eyes as its distinguishing feature. +Cape_Glossy_Starling_0077_129378.jpg The low-resolution image showcases a Cape Glossy Starling with iridescent blue-green feathers, standing on a ground scattered with dry leaves and twigs, and featuring a distinctive glossy sheen and orange eye-ring against a muted backdrop. +Cape_Glossy_Starling_0006_129295.jpg The Cape Glossy Starling is perched with an upright posture, displaying iridescent blue-green plumage that shimmers in the light, against a blurred background of warm, earthy tones, with a distinctive bright orange eye that stands out. +Cape_Glossy_Starling_0054_129440.jpg The Cape Glossy Starling is perched among green foliage, displaying iridescent blue and green plumage with a distinct bright orange eye, viewed in profile against a blurred natural background. +Cape_Glossy_Starling_0020_129328.jpg The Cape Glossy Starling features iridescent blue-green plumage with a vibrant orange eye, is captured from a slightly elevated front-right angle, standing on a sandy ground with scattered small debris, and exhibits a sleek, glossy texture. +Cape_Glossy_Starling_0024_129384.jpg The Cape Glossy Starling appears in a left-facing, upright position with vibrant iridescent blue and green plumage, set against a dry, earthy background with scattered leaves and sticks, and displays a prominent bright orange eye. +Cape_Glossy_Starling_0088_129437.jpg The Cape Glossy Starling displays iridescent blue and green plumage with a smooth texture, seen in a side profile perched on a wooden surface against a softly blurred green background, with a distinctive bright yellow eye ring visible. +Cape_Glossy_Starling_0076_129377.jpg The Cape Glossy Starling displays iridescent blue-green plumage with a sleek texture, perched in a profile view on a rugged stick against a blurred, earthy-toned background, with distinct orange eyes visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions/135.Bank_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/135.Bank_Swallow_descriptions.txt new file mode 100644 index 0000000..0063e2a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/135.Bank_Swallow_descriptions.txt @@ -0,0 +1,10 @@ +Bank_Swallow_0053_129501.jpg The Bank Swallow is perched on a wire against a clear blue sky, displaying a brown upper body with a distinctive white throat and darker breast band, seen from a side angle. +Bank_Swallow_0023_129878.jpg The bird features a glossy blue-black upper body with a stark white underbelly, perched atop a wire with a hint of a clear blue sky in the background. +Bank_Swallow_0020_129747.jpg The Bank Swallow is perched sideways on a thin, curved branch with its light tan belly and darker brown back contrasting against a blurred, pebble-like grayish background, highlighting its small, delicate frame and distinct white chest marking. +Bank_Swallow_0036_129567.jpg A small bird with smooth brown upperparts, a distinct breast band, and white underparts is perched sideways on a wire against a clear blue sky. +Bank_Swallow_0010_129592.jpg The Bank Swallow is perched sideways on a thin branch, displaying a brown upper body with a distinct white throat and underparts, set against a softly blurred natural background with hints of greenery and sky. +Bank_Swallow_0048_129546.jpg The Bank Swallow is perched on sandy soil, showing its brown upperparts and paler underparts with a distinct dark breast band, while facing slightly to its left with its wings folded beside its body. +Bank_Swallow_0049_129611.jpg The Bank Swallow perches on a wire, displaying a smooth brown back and wings with a white underbelly featuring a distinct brown chest band, set against a blurred green background. +Bank_Swallow_0004_129549.jpg The Bank Swallow is perched on sandy ground, displaying its soft brown upperparts with distinct, darker wing markings, a contrasting white underside, and a clear, dark eye set against a blurred, neutral-toned background. +Bank_Swallow_0064_129816.jpg The Bank Swallow perches on a wire with a brown upper body and white underparts, featuring a distinct brown chest band and a blurred grassy background. +Bank_Swallow_0054_129743.jpg The Bank Swallow is perched on a rock with a soft, brown upper body, a white underbelly, and a distinct dark chest band, set against a blurred, natural backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions/136.Barn_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/136.Barn_Swallow_descriptions.txt new file mode 100644 index 0000000..4328902 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/136.Barn_Swallow_descriptions.txt @@ -0,0 +1,10 @@ +Barn_Swallow_0064_132688.jpg The image depicts a Barn Swallow with a rich chestnut-colored throat, creamy underside, and dark wings, viewed from a frontal perspective with its slightly open beak against a plain, pale background. +Barn_Swallow_0048_132793.jpg The Barn Swallow, seen in a profile view, displays a vivid blue plumage on its head and back with a contrasting rich orange throat and underparts, perched on a wooden surface against a soft, out-of-focus green background. +Barn_Swallow_0084_130800.jpg The Barn Swallow is perched with a side view, displaying deep blue plumage on its back and wings, a reddish-brown throat and face, a creamy underbelly, and is set against an industrial, metal railing background. +Barn_Swallow_0056_132916.jpg The Barn Swallow is perched atop tall, wispy reeds with a dark iridescent blue back, rusty underparts, and a distinctive deeply forked tail, set against a backdrop of vertical green stalks. +Barn_Swallow_0015_132757.jpg The Barn Swallow is perched upright on a rusted metal object against a blurred green background, displaying an iridescent blue head and back, rufous underparts, and distinctive long tail feathers. +Barn_Swallow_0017_132951.jpg The Barn Swallow is seen in profile with glossy blue-black plumage, a creamy white underside, and rufous facial markings, perched under a wooden structure in a grassy environment. +Barn_Swallow_0021_130367.jpg A Barn Swallow perches on a thin branch, displaying glossy blue-black upperparts and a rich cinnamon-colored throat and underparts, with a softly blurred natural background. +Barn_Swallow_0060_130110.jpg The Barn Swallow is perched sideways on a metal fence, displaying dark iridescent blue upperparts, a contrasting orange throat, and a white underbelly, set against a blurred neutral background. +Barn_Swallow_0035_131832.jpg The Barn Swallow, perched amid green reeds, displays a glossy blue-black back, russet throat, and buff underparts, with its forked tail clearly visible from a side view. +Barn_Swallow_0077_130707.jpg A Barn Swallow perches on a curved wire with its sleek, glossy blue-black head and back contrasting against its rich cinnamon underside, set against a blurred metallic background with subtle light reflections. diff --git a/utils/area/descriptions/CUB/generated_descriptions/137.Cliff_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/137.Cliff_Swallow_descriptions.txt new file mode 100644 index 0000000..5c1c9b4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/137.Cliff_Swallow_descriptions.txt @@ -0,0 +1,10 @@ +Cliff_Swallow_0046_133165.jpg The low-resolution image shows a Cliff Swallow with a dark blue cap and back, a rust-colored throat and cheeks, and buffy underparts, perched at the edge of a mud nest under a pale wooden eave, with its tail partially visible. +Cliff_Swallow_0094_133114.jpg The Cliff Swallow is depicted in flight against a clear blue sky, showing off its dark wings with lighter undersides, a square tail, slightly rust-colored throat, and distinct pale forehead. +Cliff_Swallow_0071_133742.jpg The Cliff Swallow is perched sideways on a rock, showcasing its buff underparts and dark metallic blue back, with a distinctive white forehead and rich rusty throat, set against a blurred neutral background. +Cliff_Swallow_0075_134516.jpg The Cliff Swallow, captured mid-flight with wings outstretched, showcases a glossy blue-black back, a pale, buffy rump, and a sleek, streamlined body against a textured, man-made structure background. +Cliff_Swallow_0023_134314.jpg The bird, perched sideways on barbed wire, exhibits a dark glossy blue back, with a pale buffy underbelly, and a distinct white forehead, set against a blurred, muted green background. +Cliff_Swallow_0045_133591.jpg The Cliff Swallow has a dark, glossy blue back and wings with a chestnut throat and cream-colored belly, captured in mid-flight against a clear blue sky. +Cliff_Swallow_0066_133206.jpg The Cliff Swallow is perched vertically on a textured wall, displaying dark brown wings with a rust-colored patch on its throat and a pale forehead, against a background of speckled concrete blocks with visible nails and a small hole. +Cliff_Swallow_0044_133927.jpg The image shows a Cliff Swallow perched on a textured, mud-built nest, displaying its dark iridescent blue-black back, rusty throat, and lighter underparts, with a side profile highlighting its short tail and squared-off wings against a light, speckled background. +Cliff_Swallow_0062_134383.jpg The low-resolution image shows a Cliff Swallow perched on a metallic curved surface, featuring a dark blue back, creamy underside, and chestnut throat, with the blurred background suggesting an outdoor setting. +Cliff_Swallow_0101_133069.jpg The Cliff Swallow is seen in mid-flight against a clear blue sky, showcasing its dark wings and back, a pale underbelly, and a distinctive square-shaped tail with a compact, rust-colored head. diff --git a/utils/area/descriptions/CUB/generated_descriptions/138.Tree_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/138.Tree_Swallow_descriptions.txt new file mode 100644 index 0000000..56a2edf --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/138.Tree_Swallow_descriptions.txt @@ -0,0 +1,10 @@ +Tree_Swallow_0046_135770.jpg The Tree Swallow appears perched on a post with its iridescent blue-green upperparts, white underparts, and distinctive long, pointed wings, set against a soft, blurred natural background. +Tree_Swallow_0017_135062.jpg The Tree Swallow is perched on a red wooden post with its back partially towards the camera, displaying glossy blue-green upperparts, a white underbelly, and a blurred brownish background. +Tree_Swallow_0002_136792.jpg The Tree Swallow is perched on a metallic surface, displaying glossy blue-green feathers on its back and head contrasted with a white underside, all against a blurred, neutral-colored background. +Tree_Swallow_0019_137073.jpg The Tree Swallow is perched upright on a pointed wooden structure, displaying iridescent blue upperparts, a bright white underbelly, and a clean, vibrant natural background. +Tree_Swallow_0030_134942.jpg The Tree Swallow is perched on a rusted barbed wire against a soft green background, displaying a vibrant blue-green iridescent back and head with a sharp contrast against its white underparts while its beak is open as if calling or singing. +Tree_Swallow_0058_134987.jpg A Tree Swallow with iridescent blue-green upperparts and a crisp white underbelly is perched vertically on a slender, textured branch against a soft blue sky. +Tree_Swallow_0071_136749.jpg A Tree Swallow in a profile pose, perched on a branch, displays iridescent blue-green upperparts and crisp white underparts against a blurred, earthy-toned background. +Tree_Swallow_0076_137232.jpg The Tree Swallow is perched upright on a rusted metal post, showcasing iridescent blue upperparts, a white underbelly, and a blurred greenish background. +Tree_Swallow_0111_135253.jpg The Tree Swallow is perched on a thin branch against a clear blue sky, displaying iridescent blue-green plumage on its back and wings, a contrasting stark white chest and face, and sleek, aerodynamic body proportions. +Tree_Swallow_0108_135068.jpg The Tree Swallow, perched at an angle, displays iridescent blue-green upperparts and a bright white underbelly, set against a blurred, neutral-toned background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/139.Scarlet_Tanager_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/139.Scarlet_Tanager_descriptions.txt new file mode 100644 index 0000000..43622b2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/139.Scarlet_Tanager_descriptions.txt @@ -0,0 +1,10 @@ +Scarlet_Tanager_0079_138669.jpg A vibrant red bird with a smooth texture perches sideways on a branch against a backdrop of dark foliage, featuring a contrasting black wing and pale yellow beak. +Scarlet_Tanager_0040_137885.jpg A bright red bird with a sleek black wing and tail, perched in profile on a branch amidst sparse green and brown foliage against a pale sky background. +Scarlet_Tanager_0024_137712.jpg The Scarlet Tanager is perched on a rock, displaying its vibrant scarlet plumage with contrasting black wings and tail, set against a blurred green, natural backdrop. +Scarlet_Tanager_0130_138661.jpg The Scarlet Tanager displays a vivid red body with contrasting black wings, perched slightly angled on a branch amidst a blurred background of soft-focus trees and budding green leaves. +Scarlet_Tanager_0113_138262.jpg A vibrant scarlet bird with contrasting black wings and tail is perched on a sandy, rocky ground, viewed in profile with a smooth, rounded body shape. +Scarlet_Tanager_0090_137703.jpg The Scarlet Tanager displays a vibrant red plumage with contrasting black wings and tail, perched in a side view atop a branch against a bright blue sky background. +Scarlet_Tanager_0095_137618.jpg The Scarlet Tanager is perched on a tree branch, showcasing its vibrant red body and contrasting black wings and tail, with a blurred green foliage background. +Scarlet_Tanager_0093_138250.jpg The Scarlet Tanager in the image is a vibrant red bird with contrasting black wings and tail, perched diagonally on a thin branch amidst green, sunlit foliage against a clear blue sky. +Scarlet_Tanager_0083_138500.jpg The Scarlet Tanager displays vibrant red plumage with contrasting black wings and tail, perched sideways on a branch against a blurred light background. +Scarlet_Tanager_0033_137603.jpg The Scarlet Tanager displays vibrant red plumage with contrasting black wings and tail, perched on a branch with a blurred green foliage background, viewed in profile, highlighting its round, dark eye and stout beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions/140.Summer_Tanager_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/140.Summer_Tanager_descriptions.txt new file mode 100644 index 0000000..f994033 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/140.Summer_Tanager_descriptions.txt @@ -0,0 +1,10 @@ +Summer_Tanager_0037_140330.jpg A vibrant red bird with a smooth texture, perched sideways on tangled branches against a blurred green leafy background, features a robust body and a slightly crested head with a stout pale bill. +Summer_Tanager_0120_140060.jpg The 140.Summer Tanager is perched on a branch with its predominantly vibrant red plumage and hints of lighter tones on the wings, set against a softly blurred natural backdrop. +Summer_Tanager_0006_140137.jpg The 140.Summer Tanager in the image is positioned in a side view, showcasing its vibrant reddish-orange plumage with smooth texture, against a rocky, subtly textured background with water flowing down the surface. +Summer_Tanager_0056_139211.jpg A vibrant red bird with smooth plumage is perched among dense green leaves, viewed from the side, showcasing its long tail and slightly tilted head amidst sunlit branches. +Summer_Tanager_0010_139948.jpg The 140.Summer Tanager in the image is perched on a branch, displaying a vibrant red coloration with a smooth texture, set against a blurred green and brown dappled background with mesh patterning. +Summer_Tanager_0001_139289.jpg The Summer Tanager appears bright red with smooth feathers, perched sideways on a rough, dark branch against a softly blurred green and brown background, with its distinctively pointed beak and short tail visible. +Summer_Tanager_0018_139290.jpg A vivid red-orange bird perched on a slender branch amidst leafy foliage, showcasing its smooth plumage and slightly tilted head, with a blurred green and brown background hinting at a natural wooded environment. +Summer_Tanager_0125_139399.jpg The Summer Tanager in the image is a vibrant red bird perched on a weathered wooden surface, with a slight profile view showing its stout yellowish beak, set against a softly blurred greenish-brown background that emphasizes its colorful plumage. +Summer_Tanager_0066_140621.jpg A bright red bird with a slightly tufted head, perched on a branch amidst vibrant green leaves, displays subtle dark wing patterns and a pale yellow beak, viewed from the side. +Summer_Tanager_0025_139320.jpg A vibrant red bird with smooth plumage perched on the edge of a red birdbath, set against a softly blurred, warm-toned background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/141.Artic_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/141.Artic_Tern_descriptions.txt new file mode 100644 index 0000000..377bb14 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/141.Artic_Tern_descriptions.txt @@ -0,0 +1,10 @@ +Artic_Tern_0092_141849.jpg This young bird, positioned facing forward, displays a fluffy, mottled brown and white plumage with an orange beak and legs, set against a lush green foliage background. +Artic_Tern_0039_141390.jpg The Arctic Tern is perched on a mossy rock with a sleek white body, contrasting black cap, red beak and legs, and holds a small fish, set against a blurred natural background. +Artic_Tern_0099_141170.jpg The Arctic Tern is perched on a rock with its head turned sideways, displaying a stark black cap on its head, a sleek white and light gray body, distinctive long tail feathers, and a fish clasped in its pointed orange bill against a blurred blue-gray background. +Artic_Tern_0111_143101.jpg The Arctic Tern, captured mid-flight against a muted gray sky, displays a sleek white body with elegant, elongated wings featuring dark gray tips, and a distinct black cap on its head. +Artic_Tern_0090_143583.jpg The Arctic Tern is perched side-on with a sleek, streamlined body, displaying a striking black cap, bright red beak and legs, and long, elegant wings, set against a blurred green background while holding a small fish in its beak. +Artic_Tern_0032_141313.jpg The Arctic Tern is perched in profile on a wooden surface, displaying smooth gray wings with a sharp black cap on its head, a distinct red beak and legs, and a muted brown and green blurred background. +Artic_Tern_0021_143477.jpg The Arctic Tern is mid-flight with outstretched wings revealing its pale gray and white plumage, a distinct black cap, and a bright red beak, while skimming above rippling blue water, capturing a dynamic pose with water droplets trailing behind. +Artic_Tern_0012_143410.jpg The Arctic Tern in the image is perched on colorful pebbles with its white and grey plumage, sharply contrasted by a black cap and bright red beak and legs, captured in a side view with its mouth open. +Artic_Tern_0133_141069.jpg The Arctic Tern in the image is captured mid-flight with outstretched wings, showcasing its white body and striking black cap, contrasted by vivid red-orange bill and legs, set against a blurred, grassy background. +Artic_Tern_0063_142495.jpg The Arctic Tern, perched on a post, showcases its smooth gray and white plumage with a striking black cap, vivid red beak, and feet, set against a blurred, natural grassy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/142.Black_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/142.Black_Tern_descriptions.txt new file mode 100644 index 0000000..369ae2e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/142.Black_Tern_descriptions.txt @@ -0,0 +1,10 @@ +Black_Tern_0103_143956.jpg A Black Tern in flight is visible from the side against a plain sky, displaying dark gray plumage with a smooth texture on the body and contrasting lighter gray wings, along with a sleek streamlined shape and a slight curve to the wings. +Black_Tern_0037_144110.jpg A Black Tern with a white body and dark gray wings is captured mid-flight, skimming the water's surface, against a blurred backdrop of calm, muted gray water. +Black_Tern_0019_144680.jpg A black tern with dark plumage, facing downwards, is in flight against a blurred green background, displaying prominent pointed wings and a slightly forked tail. +Black_Tern_0069_144359.jpg A Black Tern with a dark body and lighter underparts perches sideways on a post against a blurred green and brown background. +Black_Tern_0055_144607.jpg The Black Tern in flight displays a dark gray body with lighter gray, upward-angled wings, set against a background of blurred green reeds and water. +Black_Tern_0079_143998.jpg The Black Tern appears mid-flight with dark gray plumage and slender wings, set against a backdrop of green reeds and water, exhibiting graceful movement as it hovers above the duck below. +Black_Tern_0059_144159.jpg The Black Tern exhibits a sleek, black plumage with contrasting white underparts, standing on a wooden surface against a blurred green background, with its head slightly turned, showcasing a slender, pointed beak and sharp, angular wings. +Black_Tern_0077_144117.jpg A Black Tern, viewed in profile, is in flight against a clear blue sky, displaying its slender body with dark plumage and lighter underwings, with a sleek, pointed bill visible. +Black_Tern_0010_144341.jpg The bird in the image appears in mid-flight with wings spread, showcasing a mix of dark and light gray plumage with a distinctive white underbody and face, set against a blurred backdrop of blue and green hues. +Black_Tern_0082_144372.jpg The Black Tern is in flight with outstretched wings displaying a dark, smooth plumage and a contrasting lighter underwing, set against a clear blue sky. diff --git a/utils/area/descriptions/CUB/generated_descriptions/143.Caspian_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/143.Caspian_Tern_descriptions.txt new file mode 100644 index 0000000..fdf472f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/143.Caspian_Tern_descriptions.txt @@ -0,0 +1,10 @@ +Caspian_Tern_0120_145650.jpg The Caspian Tern is seen in mid-flight with wings fully extended, displaying a predominantly white body with contrasting black wing tips and a striking red-orange bill, set against a plain gray sky that highlights its angular, streamlined form. +Caspian_Tern_0029_147589.jpg The Caspian Tern in the image is depicted mid-flight with outstretched wings having black tips, a white body and wings, a bright orange beak, and a black cap on its head against a blurred background of water and sandy shores. +Caspian_Tern_0072_147667.jpg The Caspian Tern in the image exhibits a white body with gray wings, a black cap on its head, and an orange bill, captured in flight against a soft, cloudy sky background. +Caspian_Tern_0046_145627.jpg The image shows a Caspian Tern in flight with a white body, contrasting dark cap on its head, distinctive bright orange bill, and black-tipped wings against a clear blue sky. +Caspian_Tern_0078_146824.jpg A Caspian Tern with a smooth white body and contrasting black cap soars against a clear blue sky, displaying its long, pointed wings and vibrant orange beak from a side view. +Caspian_Tern_0045_145554.jpg The image shows a Caspian Tern in flight, showcasing its sharp, streamlined body with a distinctive black cap on its head, bright red-orange bill, and pale gray wings against a muted, blurry sky background. +Caspian_Tern_0013_145553.jpg The Caspian Tern, viewed head-on in flight against a clear blue sky, displays its long, curved wings and distinctive black cap with a bright orange bill. +Caspian_Tern_0051_145930.jpg A Caspian Tern with a vibrant red-orange bill and smooth white plumage is captured in flight, displaying a black cap on its head and swept-back wings against a clear blue sky. +Caspian_Tern_0105_145673.jpg The Caspian Tern is standing in profile on a flat, gray, gravelly surface, showcasing its sleek white body and distinctive black cap, with its bright orange beak prominently visible against a blurred gray background. +Caspian_Tern_0109_145948.jpg A Caspian Tern is seen in flight from a side-angle against a clear blue sky, showcasing its distinct black cap, white body, and light grey wings with darker wingtips, as well as an orange-red bill. diff --git a/utils/area/descriptions/CUB/generated_descriptions/144.Common_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/144.Common_Tern_descriptions.txt new file mode 100644 index 0000000..2166ab4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/144.Common_Tern_descriptions.txt @@ -0,0 +1,10 @@ +Common_Tern_0083_148096.jpg The 144.Common Tern stands on wet sand with a side view showing its sleek white and gray plumage, long pointed wings, and a distinctive black cap, set against a blurred sandy beach background. +Common_Tern_0030_147825.jpg The Common Tern is depicted in mid-flight from a side view, with its white body and wings featuring light gray shading, a distinct black cap on its head, and a faintly visible red-orange beak, set against a blurred aquatic background. +Common_Tern_0094_148309.jpg The Common Tern displays a sleek, white body with gray hues, a black cap on its head, and vivid red-orange beak and legs, captured in a dynamic pose with wings spread wide against a blurred blue-gray background, standing on a textured, mossy surface. +Common_Tern_0113_147949.jpg A Common Tern with white underparts and gray wings is shown mid-flight against a clear blue sky, viewed from below with distinct black cap, forked tail, and red legs, near a protruding metal pipe. +Common_Tern_0029_148035.jpg The image shows a Common Tern in flight against a clear blue sky, with white and gray plumage, a distinct black cap on its head, an orange beak, and slender, pointed wings extended gracefully. +Common_Tern_0118_148201.jpg The Common Tern is captured in flight with a striking black cap, sleek white underbody, and elongated wings showing a faint gray hue, set against a softly blurred urban skyline background. +Common_Tern_0043_147753.jpg The image shows a Common Tern in a side and slightly top view, characterized by its sleek white body, black cap, pointed wings, and sharp red bill, soaring gracefully against a blurred green background. +Common_Tern_0076_148391.jpg The Common Tern displays a sharp, contrasting look with its white and gray plumage, black cap, and vibrant orange-red legs, captured in mid-landing on a sandy beach with waves gently lapping the shore in the background. +Common_Tern_0081_149228.jpg The Common Tern, with its smooth gray and white plumage and distinct black cap, is perched profile view on a weathered wooden post with a blurred, muted green and gray background of water and foliage. +Common_Tern_0085_147937.jpg The Common Tern is perched on a weathered wooden post with its body mostly in profile, showcasing its gray and white plumage, black cap, and bright red bill and legs against a rippling blue water background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/145.Elegant_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/145.Elegant_Tern_descriptions.txt new file mode 100644 index 0000000..0fa5755 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/145.Elegant_Tern_descriptions.txt @@ -0,0 +1,10 @@ +Elegant_Tern_0098_151028.jpg The Elegant Tern appears with a white body and wings, a black cap on the head, and an orange bill, captured in flight with wings outstretched against a blurred backdrop of muted buildings and greenery. +Elegant_Tern_0068_150526.jpg An Elegant Tern with a distinctive orange beak and a black cap is captured in mid-flight over rippling water, showcasing its white and gray plumage with wings elegantly spread. +Elegant_Tern_0073_150925.jpg The image shows an Elegant Tern in mid-flight with a slender body, long wings, and a distinctive black cap on its head, against a clear blue sky, showcasing a sharp orange bill and streamlined silhouette. +Elegant_Tern_0046_150905.jpg An Elegant Tern with gray and white plumage and a black cap, is captured in mid-flight against a minimalistic white sky, displaying a distinct long, slender bill and outstretched wings with dark wingtips. +Elegant_Tern_0050_150521.jpg An Elegant Tern with a sleek white body, black cap, and bright orange bill is captured mid-flight with wings spread, against a misty gray backdrop, perched atop a weathered vertical post reflected in calm water. +Elegant_Tern_0065_151021.jpg The Elegant Tern displays a sleek white body with a long, slender orange bill, a prominent black crest, and dark wingtips, soaring horizontally against a clear blue sky. +Elegant_Tern_0004_150948.jpg The Elegant Tern is perched on a rock against a plain gray background, displaying its sleek white body, light gray wings, and distinctive long, slender orange bill, with some black feathering on its head forming a subtle cap. +Elegant_Tern_0034_45914.jpg The bird, viewed from the side in flight, displays mottled brown and white plumage with intricate feather patterns against a blurred, neutral-toned background. +Elegant_Tern_0070_147548.jpg The Elegant Tern is depicted in a side view with its head bowed down, showcasing a sleek body with smooth, grayish-white plumage, a distinctive black cap on its head, an elongated, bright orange beak, and it stands on sandy ground with scattered green foliage in the background. +Elegant_Tern_0045_150752.jpg An Elegant Tern is captured mid-flight against a clear blue sky, displaying a sleek white body with contrasting black markings on its head, long slender wings with dark tips, and an orange bill holding a small fish. diff --git a/utils/area/descriptions/CUB/generated_descriptions/146.Forsters_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/146.Forsters_Tern_descriptions.txt new file mode 100644 index 0000000..8e2b0ff --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/146.Forsters_Tern_descriptions.txt @@ -0,0 +1,10 @@ +Forsters_Tern_0125_151399.jpg The Forster's Tern is perched on a weathered driftwood against a blurred watery backdrop, displaying a sleek, pale gray body with a sharp black cap, a contrasting orange beak, and legs. +Forsters_Tern_0027_151456.jpg The Forster's Tern is perched on sandy ground, showcasing a sleek grey and white plumage with a black cap, orange legs, and a slight profile view highlighting its pointed black beak against a blurred beige background. +Forsters_Tern_0100_151774.jpg The Forster's Tern, with its pale gray and white plumage, stands in shallow water, showcasing an elegant pose with one wing raised, revealing its slender black bill, black eye patch, and orange legs against a softly blurred, natural background. +Forsters_Tern_0035_151757.jpg The Forster's Tern is perched upright on a weathered, gray wooden post, with its sleek, pale gray body, white underparts, and characteristic black cap tilting skyward, set against a soft-focus, neutral brown background. +Forsters_Tern_0016_152463.jpg A person holding a Forster's Tern with a sleek, white body, black cap, and orange beak and legs, against a marshy background with a body of water and distant vegetation under a clear blue sky. +Forsters_Tern_0002_151622.jpg A Forster's Tern with a sleek white and gray body, distinctive black cap, and orange bill is captured mid-flight against a clear blue sky, showing its pointed wings and slightly forked tail. +Forsters_Tern_0066_151478.jpg The Forster's Tern stands in a side profile on a weathered wooden post, showcasing its sleek white and gray plumage with a distinctive black eye patch and a slightly forked tail, set against a blurred, neutral-toned background. +Forsters_Tern_0123_151789.jpg A Forster's Tern with a sleek white body and gray wings, featuring a distinctive black cap and orange bill, gracefully hovers with outstretched wings over a blurred water and grassy background. +Forsters_Tern_0089_152372.jpg The Forster's Tern is perched on a sandy, grassy terrain with reddish and green vegetation, displaying a light gray and white plumage with a black cap, viewed from the side with its body slightly turned and tail feathers fanned out. +Forsters_Tern_0080_152521.jpg The 146.Forsters Tern is perched on a cylindrical white post with a muted brown landscape in the background, displaying its sleek grey and white plumage, a sharp black cap on its head, an orange bill with a black tip, and distinctive streamlined shape. diff --git a/utils/area/descriptions/CUB/generated_descriptions/147.Least_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/147.Least_Tern_descriptions.txt new file mode 100644 index 0000000..4737f2d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/147.Least_Tern_descriptions.txt @@ -0,0 +1,10 @@ +Least_Tern_0037_153637.jpg A small bird with a black cap and nape, white forehead, and pale gray wings is perched on a moss-covered rock near water, displaying a sharp black bill and slender build. +Least_Tern_0095_154680.jpg A small bird with a sleek, gray and white body, black cap on its head, and a sharp yellow bill is perched with wings partially open, standing on a green metal rooftop against a gray background. +Least_Tern_0059_153746.jpg A Least Tern with a smooth, light gray and white plumage is captured in mid-flight against a plain gray sky, featuring a distinct black cap and slender, pointed wings extended upwards. +Least_Tern_0114_153840.jpg A small bird with a sleek, white body and light gray wings, viewed in profile standing on a sandy beach with a pale orange bill and legs, against a blurred blue background with a slightly darker horizon line. +Least_Tern_0042_153809.jpg The Least Tern is depicted in flight with its wings fully extended, showcasing a sleek gray and white body, a distinctive black cap, and a sharp orange bill against a backdrop of a clear blue sky. +Least_Tern_0092_153361.jpg The Least Tern is pictured in a side view with a smooth, pale grey back and wings, contrasting sharply with its white underside, while its distinct black cap and eyestripe are offset by a bright orange bill and legs, all set against a sandy beach background with patches of water. +Least_Tern_0112_153074.jpg The Least Tern is depicted in flight with its wings fully extended, showcasing a black cap, a white face and body, and a yellow bill over a sandy beach with gentle waves in the background. +Least_Tern_0067_154145.jpg A small bird with a white body and gray wings speckled with darker markings, seen in profile with its beak open on a textured, earthy surface against a blurred, dark green water background. +Least_Tern_0088_152941.jpg The Least Tern is perched on a rocky surface, displaying a white underbelly, gray wings, a black cap, and a distinctive yellow-orange bill with a black tip, captured mid-yawn or call. +Least_Tern_0038_153087.jpg The Least Tern is captured mid-flight with its wings widely spread, showcasing its light gray and white plumage and a distinct black cap, set against a soft blue sky background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/148.Green_tailed_Towhee_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/148.Green_tailed_Towhee_descriptions.txt new file mode 100644 index 0000000..580e8f2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/148.Green_tailed_Towhee_descriptions.txt @@ -0,0 +1,10 @@ +Green_Tailed_Towhee_0099_154882.jpg The Green-tailed Towhee is perched on a ground covered with dried leaves, showcasing a muted greenish-gray body with a distinct reddish crown and a bright green tail, particularly standing out from the side view. +Green_Tailed_Towhee_0074_154915.jpg The Green-tailed Towhee displays a vibrant reddish crown, olive-green wings, and tail, with a gray body standing on rocky ground in a natural, earthy environment. +Green_Tailed_Towhee_0024_154855.jpg The Green-tailed Towhee in the image has an olive-green back and tail, a rusty cap on its head, a gray chest, and is standing on a grassy area with small pebbles visible in the background. +Green_Tailed_Towhee_0060_154820.jpg The Green-tailed Towhee is perched side-on atop a wooden surface amidst scattered seeds, displaying its olive-green tail, gray body, and rufous crown while situated in a naturalistic background with intertwining branches and sparse greenery. +Green_Tailed_Towhee_0068_154783.jpg The Green-tailed Towhee is captured from a frontal view, displaying a gray body with a distinctive rusty crown, vibrant green tail, and blending into a ground environment scattered with dried leaves and sticks. +Green_Tailed_Towhee_0066_797439.jpg The Green-tailed Towhee displays a muted olive-green plumage with a distinctive rufous crown and grayish underparts, perched in a slightly hunched posture on a textured, light-colored rock amid a blurred natural background with scattered vegetation and neutral earth tones. +Green_Tailed_Towhee_0027_154823.jpg The Green-tailed Towhee appears with a brown crown and olive-green wings, standing in a side view on a rocky, earthy ground with scattered stones and sparse vegetation. +Green_Tailed_Towhee_0096_154945.jpg The Green-tailed Towhee displays olive-green and gray plumage with a distinctive reddish crown, perched on a branch against a natural, blurred background of twigs and greenery. +Green_Tailed_Towhee_0025_797401.jpg The Green-tailed Towhee, perched on a bare, twiggy branch amidst a blurred earthy background, showcases its olive-brown back, prominent chestnut cap, and greenish-yellow wings and tail, with a whitish underbelly and bold facial markings. +Green_Tailed_Towhee_0105_797438.jpg The Green-tailed Towhee is depicted with olive-green plumage and a distinct rufous crown, standing on the ground amidst scattered leaves and twigs, emphasizing its robust, slightly crouched posture against a blurred earthy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/149.Brown_Thrasher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/149.Brown_Thrasher_descriptions.txt new file mode 100644 index 0000000..c917721 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/149.Brown_Thrasher_descriptions.txt @@ -0,0 +1,10 @@ +Brown_Thrasher_0013_155329.jpg The Brown Thrasher, seen in a side pose on grass, displays a rich reddish-brown coloration with distinctive dark streaks on its creamy underbelly, set against a background of scattered green and brown foliage. +Brown_Thrasher_0069_155151.jpg The Brown Thrasher is viewed from the side, showcasing its rufous-brown upperparts and heavily streaked underparts, with a yellow eye, standing among green grass, which accentuates its slightly curved bill and long tail. +Brown_Thrasher_0112_155183.jpg The Brown Thrasher is perched among dry twigs, exhibiting a rich brown plumage with distinct streaks on its underbelly and a sharp yellow eye, set against a blurred natural background. +Brown_Thrasher_0105_155187.jpg The Brown Thrasher, perched laterally on a metal fence in a garden setting, displays a rich brown plumage with streaked underparts and a slightly curved beak against a backdrop of grass and budding plants. +Brown_Thrasher_0100_155129.jpg The Brown Thrasher is perched on a wooden platform with scattered seeds, featuring rufous-brown plumage with streaked patterns, surrounded by a wire fence and rustic metal cans in the background. +Brown_Thrasher_0081_155256.jpg The Brown Thrasher, perched on a lichen-covered branch, displays its warm brown plumage with distinctive streaks across its cream-colored underparts, set against a blurred natural background. +Brown_Thrasher_0079_155394.jpg The Brown Thrasher, with its rufous-brown plumage and streaked breast, is perched at an angle on a metal suet feeder, set against a blurred green forest backdrop. +Brown_Thrasher_0030_155152.jpg The Brown Thrasher is perched on a branch, displaying a rich brown plumage with striking black streaks on its creamy underparts, amidst a blurred green and white background of foliage. +Brown_Thrasher_0085_155445.jpg A brown bird with a streaked white underbelly and distinctive yellow eyes is perched on a branch, set against a blurred backdrop of green leaves. +Brown_Thrasher_0006_155106.jpg In the image, the Brown Thrasher is perched on a gray, pebbly ground with its brown back and distinct streaked underparts visible, while its tail is lifted upwards, creating a sharp contrast against the muted background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/150.Sage_Thrasher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/150.Sage_Thrasher_descriptions.txt new file mode 100644 index 0000000..5e0b94e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/150.Sage_Thrasher_descriptions.txt @@ -0,0 +1,10 @@ +Sage_Thrasher_0104_155529.jpg The image shows a small bird with mottled gray and brown plumage, standing in profile on a textured tree branch against a blurred dark background, featuring distinct streaks on its chest and a sharp, slender beak. +Sage_Thrasher_0066_155666.jpg The bird, perched on a rocky surface under a clear blue sky, displays mottled brown plumage with streaked patterns, an upright posture, and an open beak suggesting vocalization. +Sage_Thrasher_0096_155449.jpg The bird perches sideways on a branch amidst foliage, displaying mottled gray and brown plumage with distinctive streaking on its chest, set against a soft-focus background of leaves and berries. +Sage_Thrasher_0039_796449.jpg The low-resolution image shows a Sage Thrasher perched sideways on a wooden post, displaying a grayish-brown back with distinct streaking, a light underbelly, and a plain background of muted beige tones. +Sage_Thrasher_0014_155541.jpg The Sage Thrasher in the image is perched on a bare branch against a clear blue sky, displaying a mottled brown and white plumage with fine streaks on its breast, while its profile view reveals a slender body and slightly curved bill. +Sage_Thrasher_0045_155448.jpg The Sage Thrasher, standing upright, displays a mottled brown and white speckled plumage with a distinctly sharp beak and intense yellow eyes, set against a background of dry, scattered twigs and grass. +Sage_Thrasher_0076_796445.jpg The Sage Thrasher, perched sideways on a spiky plant, features a mottled brown and white plumage with a short tail and pointed beak, set against a blurred natural green and brown background. +Sage_Thrasher_0019_107436.jpg The bird is perched in a side view on dense green foliage, displaying streaked brown and white plumage with a notably speckled breast and fine body markings against a blurred natural background. +Sage_Thrasher_0079_155718.jpg The bird, perched upright on a bare branch, displays a speckled brown and white plumage with a long tail and beak, set against a blurred green and brown background. +Sage_Thrasher_0075_155527.jpg The Sage Thrasher displays a grayish-brown plumage with speckled patterns, perched in a side profile atop a weathered wooden post against a clear sky, with its yellow eye and slightly upturned bill distinctly visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions/151.Black_capped_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/151.Black_capped_Vireo_descriptions.txt new file mode 100644 index 0000000..19bc307 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/151.Black_capped_Vireo_descriptions.txt @@ -0,0 +1,10 @@ +Black_Capped_Vireo_0013_155815.jpg The low-resolution image shows a Black-capped Vireo perched sideways on a thin branch against a blue sky, with its distinctive black cap, white underparts, and contrasting olive-green back and wings clearly visible. +Black_Capped_Vireo_0044_155819.jpg The Black-capped Vireo, perched on a twisted branch amidst a lush green background, displays its striking black cap, white spectacles around the eye, olive-green back, and contrasting white underparts. +Black_Capped_Vireo_0015_797450.jpg The Black-capped Vireo appears perched on a mossy branch, displaying a distinctive black cap and a contrasting white face with olive-green wings, against a blurred natural background. +Black_Capped_Vireo_0007_797481.jpg The Black-capped Vireo is perched among leafy branches, displaying a unique contrast of a black head, bright white throat, and olive-green back, with a side profile showing its sharp gaze and slightly open beak. +Black_Capped_Vireo_0020_797461.jpg A small bird with a distinct black cap and white facial markings, perched upright on a branch amidst a blurred green background, featuring soft gray and olive-toned plumage. +Black_Capped_Vireo_0030_155861.jpg The bird, viewed from a side angle perched on bare branches, displays a black cap contrasting with its white throat and light gray body, set against a blurry, natural woodland background. +Black_Capped_Vireo_0009_797493.jpg The Black-capped Vireo displays a distinctive black head contrasting with white facial markings, a grayish-green back, and pale underparts, perched sideways amid a dense, twig-filled environment. +Black_Capped_Vireo_0053_797478.jpg The Black-capped Vireo is shown in side profile with a distinctive black head, white eye ring, pale underparts, and dark wings with white accents, perched against a blurred, natural background. +Black_Capped_Vireo_0047_155743.jpg The Black-capped Vireo is perched on a weathered branch, showcasing its distinctive black head with a contrasting white eye-ring and a mix of subtle olive-green and gray plumage, set against a softly blurred, bokeh background. +Black_Capped_Vireo_0022_797459.jpg The Black-capped Vireo is perched on a branch with a view showing its distinctive black head and contrasting white eye ring, small olive-green wings, and light underbelly, set against a background of foliage in a natural setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions/152.Blue_headed_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/152.Blue_headed_Vireo_descriptions.txt new file mode 100644 index 0000000..05689a1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/152.Blue_headed_Vireo_descriptions.txt @@ -0,0 +1,10 @@ +Blue_Headed_Vireo_0065_156260.jpg The Blue-headed Vireo is perched sideways on a branch, displaying its bluish-gray head, white eye ring, olive-green back, yellowish underparts, and contrasting white throat against a blurred, natural woodland backdrop with soft lighting. +Blue_Headed_Vireo_0062_156109.jpg The Blue-headed Vireo is perched in a side profile amid verdant foliage, featuring a distinct bluish-gray crown, olive-green body, and white wing bars, with a soft white belly visible against the colorful leaf-strewn background. +Blue_Headed_Vireo_0025_156439.jpg The Blue-headed Vireo is perched sideways on a branch, displaying its soft blue-gray head, intricate white and yellow wing bars, and olive-green back, set against a blurred green foliage background. +Blue_Headed_Vireo_0039_156397.jpg A Blue-headed Vireo with soft blue-gray head and white eye ring, clings upside down on a textured, rugged tree trunk, showcasing its olive green back and white underparts against the natural backdrop. +Blue_Headed_Vireo_0010_156344.jpg The Blue-headed Vireo displays a soft blue-gray head, distinct white eye ring and wing bars, with olive-green back and light underparts, captured in a side profile perched on a hand against a blurred greenish background. +Blue_Headed_Vireo_0019_156311.jpg The Blue-headed Vireo is perched on a branch with its head tilted upward, showcasing a bluish-gray head, white spectacles around its eyes, olive-green back, and faintly yellow underparts, set against a blurred backdrop of foliage. +Blue_Headed_Vireo_0097_156272.jpg The Blue-headed Vireo is perched on a branch amidst bright green leaves, displaying a distinctive blue-gray head and olive-colored back, with a white underbelly and a sharp gaze directed downward. +Blue_Headed_Vireo_0055_156247.jpg The Blue-headed Vireo, perched sideways on a branch with a muted green and creamy gray body, displays a distinctive blue-gray head and contrasting white eye rings, set against a blurred woodland background. +Blue_Headed_Vireo_0060_156171.jpg The Blue-headed Vireo in the image has a blue-gray head with bold white spectacles, a white throat and belly, olive-green upperparts with wing bars, and is perched on a branch against a blurred, white background. +Blue_Headed_Vireo_0011_156276.jpg A small bird perched in profile on a bare branch against a clear blue sky, exhibiting a bluish-gray head with white underparts, and surrounded by tiny yellow-green budding leaves. diff --git a/utils/area/descriptions/CUB/generated_descriptions/153.Philadelphia_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/153.Philadelphia_Vireo_descriptions.txt new file mode 100644 index 0000000..a074b0c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/153.Philadelphia_Vireo_descriptions.txt @@ -0,0 +1,10 @@ +Philadelphia_Vireo_0071_794796.jpg A small bird with olive-green upperparts and a bright yellow underbelly perches on a branch, showing its side profile against a softly blurred natural background with hints of green foliage above. +Philadelphia_Vireo_0087_794767.jpg The Philadelphia Vireo is perched on a branch, showing a lateral view with creamy yellow underparts, olive green upperparts, a lighter throat and face, and a slight eye line, set against a blurred green and brown leafy background. +Philadelphia_Vireo_0013_794772.jpg The Philadelphia Vireo is perched on a branch amidst partially blurred green and brown foliage, displaying an olive-green back, pale underparts, and a distinct dark eye stripe with an overall smooth texture. +Philadelphia_Vireo_0003_156565.jpg The Philadelphia Vireo is perched on a thin branch amidst green leaves, displaying an olive-green back, yellow underparts, and a subtle grayish crown with a piercing gaze in profile view. +Philadelphia_Vireo_0061_156613.jpg A small bird with olive-green plumage and a yellowish underside is perched on a branch amidst green foliage, with a distinct white eyebrow line visible in the side view. +Philadelphia_Vireo_0049_794756.jpg The Philadelphia Vireo is shown perched on a hand, displaying its olive-green plumage with yellow-tinged underparts, a pale, subtly textured face with a faint eye line, and set against a blurred natural background. +Philadelphia_Vireo_0029_794760.jpg The Philadelphia Vireo in the image displays a muted olive-green back with a yellowish underbelly, facing left in a profile pose, perched on a hand against a blurred green background, with a distinguishable dark eye stripe and creamy throat. +Philadelphia_Vireo_0074_156492.jpg The Philadelphia Vireo is perched sideways on a branch, displaying olive-green upperparts and a yellowish underbelly with a subtle white eye stripe, set against a background of green leaves. +Philadelphia_Vireo_0015_794778.jpg The Philadelphia Vireo is perched on a branch amidst a backdrop of blurred foliage, showcasing soft yellow underparts with a contrasting grayish-brown head and wings, and a faint white eyebrow marking. +Philadelphia_Vireo_0052_794774.jpg The bird perched in the lower hand has a soft olive-green back, pale yellow underparts, and a distinct white eyebrow stripe, set against a blurred, natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/154.Red_eyed_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/154.Red_eyed_Vireo_descriptions.txt new file mode 100644 index 0000000..da284b1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/154.Red_eyed_Vireo_descriptions.txt @@ -0,0 +1,10 @@ +Red_Eyed_Vireo_0056_156968.jpg A small bird with olive-green upperparts, white underparts, and a distinctive red eye, perched sideways on a branch within a blurred, leafy green background. +Red_Eyed_Vireo_0038_156963.jpg A Red-eyed Vireo is perched on a green stem amidst lush foliage, displaying olive-green plumage with a distinctive white stripe above its eye and a light underbelly. +Red_Eyed_Vireo_0019_156921.jpg The Red-eyed Vireo is perched on a slender branch with a side profile view, displaying its olive-green back, white underparts, and a distinct gray crown with a contrasting dark eye-line, set against a blurred green leafy background. +Red_Eyed_Vireo_0030_156987.jpg The Red-eyed Vireo in the image displays olive-green upperparts and whitish underparts, perched with an alert pose on a branch amidst a leafy green background and is distinguished by its dark eyeline and subtle red eye visible even in low resolution. +Red_Eyed_Vireo_0045_157252.jpg The Red-eyed Vireo is perched on a branch amidst dense green foliage, showcasing an olive-brown back, contrasting white underside, and a distinct dark line through the eye, in a lateral view against a clear sky backdrop. +Red_Eyed_Vireo_0083_157063.jpg The Red-eyed Vireo is perched on a sunlit branch amidst green leaves, displaying an olive-green back, white underparts, and a pale head with a slightly open bill, against a blurred natural background. +Red_Eyed_Vireo_0095_157082.jpg The Red-eyed Vireo is perched on a branch with a background of blue sky and blurred foliage, featuring an olive-green back, white underparts, and a distinct dark line through its eye, visible from a side profile. +Red_Eyed_Vireo_0140_157237.jpg The Red-eyed Vireo, perched sideways on a lichen-covered branch against a dark green background, displays a light olive-brown back, pale underparts, a distinctive white eye stripe, and a subtle reddish eye. +Red_Eyed_Vireo_0055_157096.jpg The Red-eyed Vireo is perched in a side profile on a branch, displaying olive-green upperparts with a contrasting white underbelly and prominent white eyebrow stripe, set against a blurred green and blue background. +Red_Eyed_Vireo_0062_157324.jpg The Red-eyed Vireo in the image is perched on a branch, displaying a light olive-green back with a creamy underbelly, set against a backdrop of glossy green leaves, while its distinct red eyes and bold white eyebrow stripe are evident despite the low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions/155.Warbling_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/155.Warbling_Vireo_descriptions.txt new file mode 100644 index 0000000..e2a55f4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/155.Warbling_Vireo_descriptions.txt @@ -0,0 +1,10 @@ +Warbling_Vireo_0004_158376.jpg The Warbling Vireo appears with a soft, muted olive-gray coloration and subtle cream underside, perched sideways on a branch amidst sparse green leaves with a blurred, light-colored background, highlighting its short, thick bill and faint eye line. +Warbling_Vireo_0017_158271.jpg The Warbling Vireo is perched on a branch, showing its pale olive-green back and wings, light underparts, and a faint eye stripe against a blurred, leafy background. +Warbling_Vireo_0067_158283.jpg The Warbling Vireo is perched on a branch with a side profile view, showcasing its olive-green upperparts and pale yellow underparts, set against a blurred background of green foliage. +Warbling_Vireo_0077_158427.jpg A small bird perched on a branch, displaying pale grayish-green plumage with a lighter underside, nestled amongst large, leafy foliage in a natural setting. +Warbling_Vireo_0016_158681.jpg A small bird with olive-gray upperparts and whitish underparts is perched on a branch, singing with an open beak, surrounded by a blurred natural background of leaves and twigs. +Warbling_Vireo_0097_158579.jpg This Warbling Vireo, viewed from the side, displays a soft grayish-brown plumage with a light underbelly, perched on a branch amid green foliage against a blurred green and blue background. +Warbling_Vireo_0061_158494.jpg The 155.Warbling Vireo is perched on a branch with soft olive-gray plumage, a light underbelly, and a subtle eye stripe, surrounded by a sunlit canopy of green leaves and branches creating a dappled background. +Warbling_Vireo_0076_158500.jpg The Warbling Vireo is perched on a branch with a light olive-brown back, pale underparts, and a nondescript face against a backdrop of blurred greenery and intertwined branches. +Warbling_Vireo_0132_158420.jpg The Warbling Vireo is captured mid-flight with wings spread, showcasing its grayish-olive back and lighter underparts against a clear blue sky, perched among slender, bare branches. +Warbling_Vireo_0104_158800.jpg The Warbling Vireo is perched on a rusted wire, displaying a pale underbelly and brownish-gray plumage with a slight olive tint, set against a lush green leafy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/156.White_eyed_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/156.White_eyed_Vireo_descriptions.txt new file mode 100644 index 0000000..48c7c21 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/156.White_eyed_Vireo_descriptions.txt @@ -0,0 +1,10 @@ +White_Eyed_Vireo_0080_159087.jpg The bird displays olive-green and yellow tones with a distinct white eye patch, perches side-on to the viewer amidst a blurred branch-filled background. +White_Eyed_Vireo_0030_159265.jpg Perched in profile on a branch, the White-eyed Vireo displays a blend of gray, white, and olive hues with a distinctive yellow wash on its sides, set against a blurred, natural wooded background. +White_Eyed_Vireo_0082_159186.jpg The bird features a soft gray and olive-green coloration with a distinctive white eye-ring perched on a branch amid a blurred green and yellow background. +White_Eyed_Vireo_0040_159101.jpg The White-eyed Vireo, perched on a slender branch, displays a light olive-green and gray plumage with a contrasting bright white eye ring and underparts, set against a softly blurred natural background with hints of green foliage. +White_Eyed_Vireo_0110_158947.jpg The White-eyed Vireo is perched on a slender branch, displaying olive-green upperparts, a white throat and belly, with a distinctive white eye-ring and pale yellow flanks, set against a soft-focus backdrop of green leaves. +White_Eyed_Vireo_0074_159279.jpg A small bird with muted olive-green and white plumage perched sideways on a branch amid a sunlit, leafy background, showcasing a distinctive dark head with a pale eye-ring. +White_Eyed_Vireo_0064_159286.jpg A small bird with a yellowish underside and olive-green back perches on a branch, surrounded by green leaves, with its distinct white eye ring and grayish wings partially visible in the dappled sunlight. +White_Eyed_Vireo_0102_159420.jpg The White-eyed Vireo in the image displays a blend of olive-green and gray plumage with distinctive white eye rings, seen perched on a branch with its wings partially open against a backdrop of green foliage and small orange berries. +White_Eyed_Vireo_0029_159334.jpg A small bird with olive-green upperparts, a distinct white eye-ring, and a yellowish belly, perched on a branch in a natural, branch-filled background, facing forward. +White_Eyed_Vireo_0071_159072.jpg The White-eyed Vireo in the image displays olive-green upperparts with lighter grayish underparts, marked by striking white wing bars, perched side-on an angled branch set against a natural backdrop of green leaves and brown forest floor, showcasing its bright white eye and yellow spectacles. diff --git a/utils/area/descriptions/CUB/generated_descriptions/157.Yellow_throated_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/157.Yellow_throated_Vireo_descriptions.txt new file mode 100644 index 0000000..1c65e01 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/157.Yellow_throated_Vireo_descriptions.txt @@ -0,0 +1,10 @@ +Yellow_Throated_Vireo_0025_795009.jpg The Yellow-throated Vireo is perched sideways on a branch with its yellow throat and olive-green head contrasting against the blurred, sparse tree branches in the background, while its white and dark-wing highlights add distinctive texture to its plumage. +Yellow_Throated_Vireo_0006_159693.jpg The Yellow-throated Vireo is perched amidst autumnal branches, displaying a bright yellow throat, olive-green back, gray wings with white bars, and a distinct, rounded shape highlighted against a blurred, earthy-toned background. +Yellow_Throated_Vireo_0003_794974.jpg The Yellow-throated Vireo displays a vivid yellow throat and chest contrasted against olive-green upperparts, viewed from a side angle perched on a branch with a blurred forest background, showcasing white wing bars and a stout bill. +Yellow_Throated_Vireo_0046_159668.jpg The Yellow-throated Vireo is perched on a branch, featuring a vivid yellow throat and chest, olive-green back, and white underbelly, with soft gray-blue legs and wing bars against a blurry green leafy background. +Yellow_Throated_Vireo_0077_159581.jpg The Yellow-throated Vireo features a vivid yellow throat and chest, contrasted against its olive-green back and wings, is perched sideways on a bare branch with a blurred, monochromatic background of out-of-focus branches, highlighting its distinguishing eye-ring and white wing bars despite the low resolution. +Yellow_Throated_Vireo_0064_794992.jpg The Yellow-throated Vireo is perched on a textured, lichen-covered branch, displaying its vibrant yellow throat and underside, contrasting with its olive-green back and wings, highlighted by distinct white wing bars, against a soft-focus green background. +Yellow_Throated_Vireo_0066_795007.jpg The Yellow-throated Vireo displays vibrant yellow on its throat and chest, along with olive-green on the head and back, perched sideways on a branch against a soft-focus, muted green background, with noticeable white wing bars contrasting with its darker wings. +Yellow_Throated_Vireo_0032_159632.jpg The Yellow-throated Vireo displays a bright yellow throat and breast with olive-green upperparts, perched sideways on a branch against a clear blue sky, accentuated by blurred green leaves in the background. +Yellow_Throated_Vireo_0017_794988.jpg The Yellow-throated Vireo features a vibrant yellow throat with a subtle olive back and white underparts, perched side-on a branch within a leafy, sun-dappled environment, displaying its distinctive bluish eyering despite the image's low resolution. +Yellow_Throated_Vireo_0009_794976.jpg The Yellow-throated Vireo displays a vibrant yellow throat and breast, contrasting with olive upperparts and grey wings, while perched in a natural hand-held position against a softly blurred greenish-brown background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/158.Bay_breasted_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/158.Bay_breasted_Warbler_descriptions.txt new file mode 100644 index 0000000..66ee4a6 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/158.Bay_breasted_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Bay_Breasted_Warbler_0112_159839.jpg The Bay-breasted Warbler in the image is perched on a branch, showcasing its distinctive chestnut breast and buff flanks, with a black mask and a streaked gray back, set against a softly blurred green and earthy background. +Bay_Breasted_Warbler_0086_159860.jpg The Bay-breasted Warbler in the image is perched amidst green leaves, showcasing a pale, olive-brown plumage with a blurred underlayer and distinct white wing bars, against a softly textured, leafy background. +Bay_Breasted_Warbler_0093_159764.jpg The Bay-breasted Warbler is perched on a twig against a leafy and earthy background, displaying its distinctive chestnut-colored breast, black face with a sharp white wing bar, and subtle streaking on its back. +Bay_Breasted_Warbler_0072_797114.jpg The Bay-breasted Warbler is perched on a branch, showing its side profile with a prominent blend of bay and creamy colors on its plumage against a leafy green background. +Bay_Breasted_Warbler_0071_797108.jpg A small bird with a muted brown and tan plumage, featuring a distinctive warm brown crown and breast, is perched sideways on a lichen-covered branch against a soft green background. +Bay_Breasted_Warbler_0062_159783.jpg The Bay-breasted Warbler is perched on a branch, displaying a rich chestnut breast, contrasting black cap, streaked back with white, and surrounded by fresh green foliage in a blurred natural setting. +Bay_Breasted_Warbler_0012_797171.jpg The Bay-breasted Warbler displays a rich chestnut-colored breast, contrasting with its black and olive-green wings, and is captured in a side view perched on a branch with a soft-focus green background. +Bay_Breasted_Warbler_0005_159739.jpg The Bay-breasted Warbler displays a rich chestnut breast and flanks, with a contrasting black face and creamy throat, perched side-on in a natural setting with a blurred green and brown background. +Bay_Breasted_Warbler_0100_797142.jpg The bird displays a mix of rust-brown and black on its head and breast, prominent white wing bars, perched sideways on a branch against a backdrop of green leaves and soft focus beige-gray tones. +Bay_Breasted_Warbler_0011_159736.jpg The Bay-breasted Warbler is perched on a branch against a blurred green background, featuring a distinctive rufous crown and flanks, with a gray back and pale underside, and its pose is a side profile that highlights the bird's patterned wing plumage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/159.Black_and_white_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/159.Black_and_white_Warbler_descriptions.txt new file mode 100644 index 0000000..bb85703 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/159.Black_and_white_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Black_And_White_Warbler_0007_160758.jpg The Black and white Warbler is perched on a branch, displaying its contrasting striped plumage with bold black and white streaks across its body and wings, set against a blurred forest background. +Black_And_White_Warbler_0031_160773.jpg A black and white warbler is perched sideways on a gnarled branch with its distinctive bold black and white streaked patterning visible against a blurred green background. +Black_And_White_Warbler_0021_160686.jpg The Black and white Warbler displays bold black and white streaks on its plumage, is perched sideways on a rough branch amidst blurry green foliage, with its distinctive black-and-white striped pattern and long, slightly downcurved bill easily identifiable. +Black_And_White_Warbler_0048_160287.jpg A black and white bird with bold stripes is perched laterally on a textured, lichen-covered branch, with light filtering through blurred foliage in the background. +Black_And_White_Warbler_0022_160512.jpg The Black and White Warbler is perched on a diagonal branch, displaying its distinctive monochrome striped plumage against a soft-focus green and blue background, with its head turned slightly to the side revealing a clear view of its bold facial markings. +Black_And_White_Warbler_0053_160010.jpg A black and white warbler with bold, streaked patterns on its plumage is perched on a wooden surface, facing slightly to the left, in a natural setting with a blurred brown background, displaying its distinctive long, slightly curved bill. +Black_And_White_Warbler_0119_160898.jpg The Black and white Warbler displays a striped pattern of bold black and white on its head and wings, perched in a side view on a thin, vertical branch with a blurred green and brown background, its beak open as if singing. +Black_And_White_Warbler_0041_160639.jpg The 159.Black and white Warbler is perched on a branch, displaying its striking black-and-white striped plumage, with a dark eye stripe, white wing bars, and set against a softly blurred, natural green background. +Black_And_White_Warbler_0065_160111.jpg The Black and white Warbler displays contrasting black and white streaks on its body with a distinct pose perched sideways on a tree branch amidst a softly blurred natural background. +Black_And_White_Warbler_0102_160073.jpg A black and white warbler perches head-down on a branch, displaying striking black stripes on white plumage against a blurred blue and brown background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/160.Black_throated_Blue_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/160.Black_throated_Blue_Warbler_descriptions.txt new file mode 100644 index 0000000..38bae7f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/160.Black_throated_Blue_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Black_Throated_Blue_Warbler_0073_161558.jpg The bird has a striking blue upper body and head with a contrasting black throat and face, perched sideways on a person's hand against a blurred green background, displaying a distinct white belly and wing patch. +Black_Throated_Blue_Warbler_0061_161667.jpg The 160.Black throated Blue Warbler perches on a branch amidst green leaves, showcasing its striking blue upperparts and black face mask, with a white belly and wing patch visible. +Black_Throated_Blue_Warbler_0006_161557.jpg The Black-throated Blue Warbler, perched sideways, displays its blue and white plumage, with a prominent black eye mask and short bill, against a blurred background of intertwining branches and muted foliage. +Black_Throated_Blue_Warbler_0063_161213.jpg The Black-throated Blue Warbler shows a striking blue upper body with a black face and throat, contrasted by a white belly, perched laterally on a branch against a blurred green and brown natural background. +Black_Throated_Blue_Warbler_0130_161682.jpg A small bird with a dark blue-black back and throat, white belly, and slender figure stands sideways on a thin branch against a blurred light green background. +Black_Throated_Blue_Warbler_0050_161154.jpg The Black-throated Blue Warbler is perched upright on a diagonal branch, showing its distinctive dark blue head and throat contrasting with a white belly, against a blurred background of green leaves. +Black_Throated_Blue_Warbler_0106_161523.jpg The Black-throated Blue Warbler displays a striking contrast of deep blue on its back and head with a bold black face mask and throat, set against a white belly, captured in a side profile against a blurred, natural background. +Black_Throated_Blue_Warbler_0036_161517.jpg The Black-throated Blue Warbler displays a deep blue and black back and head, with the bird perched side-on amidst a backdrop of green foliage and brown twigs, emphasizing its contrasting white belly and wing bars. +Black_Throated_Blue_Warbler_0083_161462.jpg The bird displays a blend of muted greenish-blue and cream on its plumage, perched diagonally on a thin branch with a blurred natural leafy background, showcasing distinctive pale underparts and subtle dark streaks around the face. +Black_Throated_Blue_Warbler_0037_161707.jpg The Black-throated Blue Warbler is perched facing forward, displaying a distinct contrast of deep blue on its head and back with a black face and throat, complemented by a white belly and underparts, against a blurred natural background of light greens and browns. diff --git a/utils/area/descriptions/CUB/generated_descriptions/161.Blue_winged_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/161.Blue_winged_Warbler_descriptions.txt new file mode 100644 index 0000000..2d54aea --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/161.Blue_winged_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Blue_Winged_Warbler_0014_161783.jpg The Blue-winged Warbler is perched among vibrant green leaves, showcasing its bright yellow body, subtle blue-gray wings with distinct white wing bars, and a contrasting black eye stripe, viewed from a side angle. +Blue_Winged_Warbler_0005_162095.jpg A small bird with vibrant yellow plumage, subtle blue-tinged wings, perched on a branch amidst green leaves with soft, filtering sunlight in the background. +Blue_Winged_Warbler_0020_161875.jpg The Blue-winged Warbler is perched on a mossy branch within a leafy green environment, showcasing vibrant yellow plumage with striking blue-gray wings and a slender black eye stripe. +Blue_Winged_Warbler_0012_162086.jpg The Blue-winged Warbler is perched on a leafy branch against a clear sky, with a vibrant yellow body, blue-gray wings, and a black eye line, appearing in a side profile. +Blue_Winged_Warbler_0021_161858.jpg The Blue-winged Warbler in the image displays a vibrant yellow body with olive-toned wings, a dark eye line, and is perched prominently in profile against a blurry, natural green background. +Blue_Winged_Warbler_0091_162051.jpg A small bird with bright yellow underparts and a contrasting bluish-gray wing rests upside down on a green leafy branch, against a blurred background of foliage. +Blue_Winged_Warbler_0059_162064.jpg The 161.Blue winged Warbler is perched on a branch in a natural environment, displaying olive-green plumage with a bright yellow head and underparts, a noticeable black eye line, and is partially obscured by lush green leaves. +Blue_Winged_Warbler_0076_161894.jpg The Blue-winged Warbler is perched on a thin branch, showcasing its vibrant yellow plumage with distinctive grayish-blue wings and a subtle black eye stripe, set against a soft-focus green background. +Blue_Winged_Warbler_0035_161741.jpg A small bird with bright yellow plumage, pale blue wings, and dark eyes, perched horizontally on a branch surrounded by lush green foliage. +Blue_Winged_Warbler_0023_161774.jpg The low-resolution image depicts a small bird with a vividly yellow body, partially obscured by a dark wing as it perches on a branch, against a softly blurred blue background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/162.Canada_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/162.Canada_Warbler_descriptions.txt new file mode 100644 index 0000000..8fcfc9b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/162.Canada_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Canada_Warbler_0016_162411.jpg The Canada Warbler has a vibrant yellow underbelly with a distinctive black necklace pattern, observed in a close-up side view against a blurred green park-like background, showing its grayish back and striking black and white facial markings. +Canada_Warbler_0091_162378.jpg A small bird with a distinctive bright yellow underbelly and slate-gray upperparts perched sideways on a branch amidst dense, leafy foliage with a noticeable broad white eye-ring. +Canada_Warbler_0064_162417.jpg A small bird with a yellow underbody and olive-gray upperparts sits on a branch amidst leafy greenery, featuring a distinct eye ring and faint streaking on its chest. +Canada_Warbler_0005_162389.jpg The Canada Warbler is perched on a branch surrounded by green foliage, displaying its vibrant yellow underparts, contrasting slate-gray back, and distinctive black necklace pattern against a blurred natural background. +Canada_Warbler_0007_162364.jpg The Canada Warbler is perched on a branch with bright yellow underparts and a contrasting dark gray head, showing its distinctive necklace of black streaks around the throat, set against a soft-focus background of green leaves and a light sky. +Canada_Warbler_0077_162437.jpg The Canada Warbler displays a vibrant yellow chest with distinctive black streaks, set against a backdrop of soft gray feathers and a blurred natural green background, captured in a close-up side profile with its bright black eye prominently visible. +Canada_Warbler_0009_162343.jpg The image shows a Canada Warbler with slate-gray upperparts and bright yellow underparts, perched sideways on a thin branch against a blurred, muted forest background, featuring a distinctive black necklace-like pattern on its chest and a notable white eye-ring. +Canada_Warbler_0076_162393.jpg The Canada Warbler, positioned laterally on a branch in a sparse wooded area, displays a vibrant yellow underbelly, gray wings, and distinctive black markings around its face and throat, with fresh green leaves surrounding it. +Canada_Warbler_0087_162342.jpg This Canada Warbler is perched in a side profile, displaying its vibrant yellow underside and distinctive black neck markings with a soft grey back, amidst a blurred, verdant background that suggests a natural, leafy environment. +Canada_Warbler_0085_162385.jpg The image shows a side view of a Canada Warbler with a smooth blue-gray back and contrasting bright yellow underparts, featuring distinctive black streaks on the throat, set against a softly blurred green and brown background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/163.Cape_May_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/163.Cape_May_Warbler_descriptions.txt new file mode 100644 index 0000000..dc50781 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/163.Cape_May_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Cape_May_Warbler_0031_163012.jpg The Cape May Warbler is perched sideways on a branch, displaying a striking combination of yellow and dark streaks with a distinctive orange cheek patch and pale wing bars, set against a blurred, leafy background. +Cape_May_Warbler_0113_163130.jpg The Cape May Warbler features a mottled yellow and black plumage with distinct streaking, is positioned sideways on a lush green bush with small white flowers, displaying its patterned wing and back detail in a natural environment. +Cape_May_Warbler_0061_163061.jpg The bird, perched side-on on a slender branch, features a vibrant yellow chest streaked with black, an orange throat, and contrasting olive-green wings, set against a blurred, neutral-toned background. +Cape_May_Warbler_0101_163169.jpg The Cape May Warbler is perched by the water with its distinctive streaked yellow breast, contrasting dark wings, and prominent rufous facial markings, set against a backdrop of green foliage. +Cape_May_Warbler_0066_163005.jpg The Cape May Warbler displays a striking pattern of yellow and black streaks with an olive back, shown perched diagonally on a branch amidst a backdrop of green leaves, with its head turned slightly downward. +Cape_May_Warbler_0032_162659.jpg The 163.Cape May Warbler displays a vibrant yellow and black streaked breast, viewed laterally as it perches among early spring blossoms against a clear blue sky. +Cape_May_Warbler_0049_162909.jpg The 163.Cape May Warbler in the image is perched sideways on a branch, displaying its vibrant yellow breast with distinct black streaks, olive-green back, and a partially blurred leafy background. +Cape_May_Warbler_0058_162948.jpg The Cape May Warbler displays a striking yellow and black streaked plumage with distinct chestnut cheek patches, perched sideways on a branch amidst vivid green leaves against a soft, blurred background. +Cape_May_Warbler_0028_163177.jpg The Cape May Warbler displays a streaked yellow and black plumage with a distinctive orange patch on its cheek, perched sideways on a wooden branch in a natural environment, with an orange fruit noticeable in the background. +Cape_May_Warbler_0128_162971.jpg The Cape May Warbler, perched amidst blooming white flowers and green leaves, displays a bright yellow breast and dark streaked back, with a distinctive orange-brown cheek patch, captured from a side view. diff --git a/utils/area/descriptions/CUB/generated_descriptions/164.Cerulean_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/164.Cerulean_Warbler_descriptions.txt new file mode 100644 index 0000000..06f4408 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/164.Cerulean_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Cerulean_Warbler_0071_163201.jpg The Cerulean Warbler, perched on a diagonal branch, displays a vivid blue crown and back with contrasting white underparts and dark streaks on the wings, set against a softly blurred green and brown natural background. +Cerulean_Warbler_0083_163380.jpg The Cerulean Warbler is perched on a slender branch against a blurred green background, displaying vivid blue upperparts with black streaks, a white underside, and a black neck band, directed upwards in a profile pose. +Cerulean_Warbler_0038_797230.jpg Perched sideways on a branch, the Cerulean Warbler exhibits a striking blue-gray back and wings with black streaks, a white underside, and distinct white wing bars against a soft, blurred green and yellow leafy background. +Cerulean_Warbler_0072_163200.jpg The Cerulean Warbler is perched side-on with a soft yellowish underside, streaked wings, and a light olive-green back, set against a bright leafy green background. +Cerulean_Warbler_0080_163399.jpg The bird, positioned sideways on a forest floor covered with twigs, displays a predominantly blue-gray plumage with distinct darker streaks on its back and wings, contrasting against a lighter belly and throat. +Cerulean_Warbler_0039_163420.jpg A small bird with vibrant blue upperparts, a white underbelly marked by dark streaks, perched sideways on a thin, branched vine, against a muted, blurred background. +Cerulean_Warbler_0077_797202.jpg A small bird is perched on a thin branch, displaying blue-gray upperparts with a subtle streaked pattern, a white underside, and positioned against a blurred green background, featuring distinct dark streaks on its sides and bold white wing bars. +Cerulean_Warbler_0094_797200.jpg A Cerulean Warbler perches on a slender branch, showcasing its striking sky-blue upperparts with white underparts, accented by black streaks and wing bars, set against a blurred natural background. +Cerulean_Warbler_0086_797214.jpg The Cerulean Warbler displays a soft blue and white plumage with streaks on its wings, perched in a profile view on a branch against a blurred woodland background, with distinct dark markings on its sides. +Cerulean_Warbler_0012_163417.jpg A small bird with a sleek blue and white plumage perches on a curved branch, showcasing its distinctive dark streaks and a pale belly against a soft green blurred background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/165.Chestnut_sided_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/165.Chestnut_sided_Warbler_descriptions.txt new file mode 100644 index 0000000..a61b162 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/165.Chestnut_sided_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Chestnut_Sided_Warbler_0121_164125.jpg The Chestnut-sided Warbler is shown in a side profile with a vibrant plumage featuring chestnut flanks, a yellow-green crown, and notable black and white streaks, set against a soft, blurred green background. +Chestnut_Sided_Warbler_0018_164148.jpg The bird displays olive-green and gray plumage, visible pale wing bars and a small red crown, perched sideways on a branch against a blurred natural background. +Chestnut_Sided_Warbler_0014_163801.jpg The Chestnut-sided Warbler perches on a thin branch amidst fresh green leaves against a clear sky, showcasing its distinctive bright yellow crown, contrasting black eye stripe, and chestnut-colored flanks. +Chestnut_Sided_Warbler_0044_163975.jpg The Chestnut-sided Warbler perched on a dark cylindrical surface features a bright yellow crown, white underparts with chestnut flanks, black and white patterned wings, and a contrasting background of concrete and metal elements. +Chestnut_Sided_Warbler_0013_163749.jpg The Chestnut-sided Warbler is perched on a branch, displaying its notable chestnut flanks, bright yellow crown, and black-streaked white underparts, set against a blurred green foliage background. +Chestnut_Sided_Warbler_0098_164352.jpg The bird features a yellow crown, streaked back with black and white, rust-colored flanks, and is perched on a hand against a blurred green background. +Chestnut_Sided_Warbler_0110_164023.jpg Amidst leafy branches, the Chestnut-sided Warbler, viewed from the side, showcases its distinct chestnut flanks, olive back, and white underside. +Chestnut_Sided_Warbler_0053_163615.jpg The bird, viewed from above and angled downward with its head near a branch, displays a striking yellow crown, white underparts with chestnut sides, and a speckled black, white, and yellow back, set against a blurred green and brown natural background. +Chestnut_Sided_Warbler_0016_164060.jpg The bird displays olive-green and black streaks on the back, with a prominent chestnut flank patch, set against a light sky background while perched on a lichen-covered branch. +Chestnut_Sided_Warbler_0071_163784.jpg The Chestnut-sided Warbler is perched on a branch, displaying distinct chestnut flanks, a vibrant yellow crown, and intricate black and white streaking on its wings against a soft, blurred green and blue background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/166.Golden_winged_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/166.Golden_winged_Warbler_descriptions.txt new file mode 100644 index 0000000..d732228 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/166.Golden_winged_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Golden_Winged_Warbler_0059_794855.jpg The Golden-winged Warbler is perched profile on a branch, showcasing its bright yellow crown and wing patches, set against a muted green background with reddish-brown leaves, and features a distinctive black eye stripe and throat. +Golden_Winged_Warbler_0079_794820.jpg The Golden-winged Warbler is perched on a branch amidst green foliage, displaying its distinctive yellow crown and wing patches, with a grey body and black eye mask. +Golden_Winged_Warbler_0071_164370.jpg A small bird with a distinctive bright yellow cap and wing patches, perched laterally on a slender branch against a blurred green background, showcasing its contrasting gray body and striking black throat patch. +Golden_Winged_Warbler_0083_794801.jpg The Golden-winged Warbler is perched on a hand, displaying its distinct yellow crown and wing patches, contrasted with a black eye stripe and throat, set against a blurred outdoor background. +Golden_Winged_Warbler_0092_164465.jpg The Golden-winged Warbler is perched on a branch, displaying a distinctive gray body with prominent golden-yellow patches on its wings and crown, a contrasting black throat patch, and set against a blurred, leafy background that enhances its sharp, angled pose. +Golden_Winged_Warbler_0012_164496.jpg The Golden-winged Warbler is perched with gray plumage, distinctive yellow patches on the wings and crown, a black face mask and throat, and is set against a blurred green background. +Golden_Winged_Warbler_0066_794803.jpg The Golden-winged Warbler displays a gray body with a distinct bright yellow patch on its wings and crown, alongside a black throat, set against a blurred green and brown background while perched on a slender, bare branch. +Golden_Winged_Warbler_0009_794813.jpg The Golden-winged Warbler appears perched sideways on a branch against a clear blue sky, displaying a distinctive gray body with bright yellow patches on its wings and crown, complemented by a striking black throat and eye stripe. +Golden_Winged_Warbler_0078_794827.jpg The Golden-winged Warbler is perched sideways on a branch with a distinct bright yellow crown and wing patches contrasting against its sleek gray body and black-and-white facial markings, set against a soft-focus green and brown background. +Golden_Winged_Warbler_0004_164470.jpg The Golden-winged Warbler is perched sideways on a branch with vibrant green leaves in the background, displaying its distinctive gray plumage, a striking yellow crown and wing patch, and a sharp black and white facial pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions/167.Hooded_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/167.Hooded_Warbler_descriptions.txt new file mode 100644 index 0000000..a59dd2e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/167.Hooded_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Hooded_Warbler_0121_164639.jpg The bird is perched on a branch with vibrant yellow underparts, olive-green wings, and a bright eye against a blurred natural background. +Hooded_Warbler_0058_164674.jpg A small bird with a bright yellow face and underparts, a distinctive black hood around its throat, and olive-green back and wings, is perched on a ground covered with dry leaves and twigs. +Hooded_Warbler_0012_164891.jpg A small bird with a bright yellow body and striking black hood, perched sideways on a spiky green cactus-like plant, set against a blurred dark green background. +Hooded_Warbler_0070_164930.jpg The Hooded Warbler is perched among twigs, displaying its bright yellow body, contrasting black hood, and striking face pattern, set against a dense, twig-filled natural background. +Hooded_Warbler_0014_164672.jpg The bird in the image has a yellow breast and underparts, olive-green upperparts, a small orange bill, and perched on a branch amidst a blurred green foliage background, lacking a distinctive black hood typical of mature Hooded Warblers. +Hooded_Warbler_0013_164627.jpg The Hooded Warbler displays a vivid yellow body with a striking black hood around its head, perched on a branch amidst blurred green foliage in the background. +Hooded_Warbler_0043_164864.jpg A small yellow-green bird with a pronounced black hood around its face is perched on a branch amidst a blurred forest background. +Hooded_Warbler_0001_164704.jpg The Hooded Warbler is perched on the ground with its distinctive bright yellow body and black hood standing out against a textured brown mulch background, surrounded by green foliage. +Hooded_Warbler_0115_165041.jpg The 167. Hooded Warbler displays a vibrant yellow body with a distinctive black hood around its head, perched sideways on a metallic, perforated surface with a blurred gray background. +Hooded_Warbler_0124_164923.jpg The Hooded Warbler displays a vibrant yellow body with a contrasting black hood and bib, perched sideways on a branch surrounded by blurred green foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/168.Kentucky_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/168.Kentucky_Warbler_descriptions.txt new file mode 100644 index 0000000..cd5734a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/168.Kentucky_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Kentucky_Warbler_0051_795884.jpg The Kentucky Warbler, seen from the side, displays vibrant olive green upperparts and a bright yellow underbelly, with a distinct black mask extending to the eye and surrounded by forest floor debris and sparse vegetation in the background. +Kentucky_Warbler_0059_795905.jpg The Kentucky Warbler displays a vivid yellow underside with olive-green upper parts, perched on a hand against a blurred natural background, featuring a distinctive black cap and eye line despite the low resolution. +Kentucky_Warbler_0078_795889.jpg The Kentucky Warbler is perched with its head turned to the side, showcasing its vibrant yellow underside, dark cap, olive-green wings, and distinctive black sideburn markings against a shadowed background of dark green foliage. +Kentucky_Warbler_0062_795897.jpg The Kentucky Warbler displays an olive-green upper body and bright yellow underparts with a striking black mask around the eyes, held in a person’s hand against a blurred outdoor background. +Kentucky_Warbler_0080_165351.jpg A small bird with bright yellow underparts and olive-green upperparts, perched on a tree trunk with its black mask and yellow eyeline visible, surrounded by sunlight-dappled foliage and textured bark. +Kentucky_Warbler_0066_165290.jpg A small bird with a vibrant yellow underside and olive-green back is perched on a branch, showcasing a distinct black crown and eye patch, set against a blurred backdrop of bright green leaves. +Kentucky_Warbler_0068_795893.jpg The Kentucky Warbler, captured from a side view, displays a vibrant olive-green back and wings contrasted with a bright yellow underbelly and a distinct black crown with yellow spectacles, standing amidst a muddy, wet forest floor. +Kentucky_Warbler_0040_795868.jpg The bird displays vibrant yellow plumage on its underside and olive-green on its back, with a distinctive black mask and crown, perched on a branch amid a lush green leafy background. +Kentucky_Warbler_0038_795909.jpg The Kentucky Warbler stands on a rocky surface with a backdrop of blurred greenery, showcasing its distinctive olive-green back, bright yellow underparts, and bold black mask extending from the beak across the eyes. +Kentucky_Warbler_0052_795874.jpg The Kentucky Warbler, perched on a branch against a dark background, displays a vibrant yellow underbelly and face with a distinctive olive green back and wings, accentuated by a striking black mask and crown. diff --git a/utils/area/descriptions/CUB/generated_descriptions/169.Magnolia_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/169.Magnolia_Warbler_descriptions.txt new file mode 100644 index 0000000..0ebd851 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/169.Magnolia_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Magnolia_Warbler_0040_165921.jpg A small bird with bright yellow underparts, black streaks on the chest, a gray crown, and a distinctive black eye-line, perched on a rock amidst leafy branches. +Magnolia_Warbler_0032_165960.jpg The Magnolia Warbler is perched on the ground with a side profile in a natural setting of brown leaves and green grass, featuring a distinct yellow belly, grayish head and back, white wing bars, and a long tail with noticeable contrast. +Magnolia_Warbler_0092_165807.jpg The Magnolia Warbler is perched sideways on a branch, showcasing its bright yellow underparts, black streaked breast, and distinct black mask with a bluish-gray back, set against a blurry, natural background of green and brown tones. +Magnolia_Warbler_0053_165682.jpg The Magnolia Warbler is perched laterally on a branch, displaying a striking yellow belly and underparts contrasted by black stripes on its back, within a lush green leafy environment. +Magnolia_Warbler_0001_166266.jpg The Magnolia Warbler in the image exhibits a bright yellow breast with black streaks, a gray head, and distinct white patches on the tail, set against a backdrop of green leaves and brown branches, captured from a frontal angle. +Magnolia_Warbler_0018_165958.jpg The Magnolia Warbler perches on a branch with its distinctive vibrant yellow belly and black streaks, showing a side profile amidst lush green foliage. +Magnolia_Warbler_0114_165467.jpg The Magnolia Warbler displays bright yellow underparts with bold black streaks, a gray crown, and olive back as it perches on a branch with wings partially spread, against a clear blue sky and sparse green leaves. +Magnolia_Warbler_0052_165474.jpg The Magnolia Warbler is perched sideways on a slender branch, showcasing its vibrant yellow underparts with distinct black streaks, complemented by a grayish head, white wing bars, and a blurred natural background that highlights its striking plumage. +Magnolia_Warbler_0077_165674.jpg A Magnolia Warbler is perched on a branch, showcasing vibrant yellow underparts with prominent black streaks, a gray head, and a bold white wing bar, against a soft-focus background of green foliage and blue sky. +Magnolia_Warbler_0042_159690.jpg A small bird with a bright yellow belly and black-streaked chest perches on a thin branch against a blurred green background, showcasing distinct white wing bars and a sharp gaze from a slightly angled front viewpoint. diff --git a/utils/area/descriptions/CUB/generated_descriptions/170.Mourning_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/170.Mourning_Warbler_descriptions.txt new file mode 100644 index 0000000..efce876 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/170.Mourning_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Mourning_Warbler_0074_795367.jpg The bird appears with olive-brown back and head feathers, a yellow underbelly, and a slight grayish tinge on the breast, perched in a profile view against a backdrop of blurred green foliage. +Mourning_Warbler_0008_166467.jpg The bird displays a muted olive-green and blue-gray plumage, a side profile pose as it is partially obscured by a tangle of twigs and dry foliage on a forest floor, with a distinctive gray hood extending down to a yellowish belly. +Mourning_Warbler_0049_166469.jpg A Mourning Warbler is perched on a hand, displaying a slate-gray head, olive-green back, and yellow underparts, with a blurred green background suggesting a natural environment. +Mourning_Warbler_0035_166586.jpg The Mourning Warbler exhibits a bluish-gray head with a distinctive black throat patch, is perched in a forward-facing position on a branch amidst lush green foliage, and features olive-yellow underparts contrasting with its surroundings. +Mourning_Warbler_0059_795365.jpg The Mourning Warbler displays a striking mix of olive-green and yellow plumage with a bluish-gray head and a black bib, perched sideways on a thin branch against a soft green blurred background. +Mourning_Warbler_0079_166564.jpg A small bird with a slate-gray head and throat, olive-green back and wings, and a bright yellow belly is perched in a dense tangle of brown branches with a blurred, leafy green background, showcasing its distinct separation in color and natural forest surroundings. +Mourning_Warbler_0026_166538.jpg The Mourning Warbler in the image appears perched on a branch, showcasing a distinctive olive-brown back, vibrant yellow underparts, and a blue-gray head with a black bib, set against a background of tangled branches and green foliage. +Mourning_Warbler_0051_795352.jpg The Mourning Warbler in the image is perched on a branch, displaying its vibrant yellow underparts, contrasting with its gray head and throat, while standing in an upright pose with an open beak, set against a softly blurred green and brown natural background. +Mourning_Warbler_0020_166440.jpg The Mourning Warbler displays a grey head with a black throat patch, an olive-green back, and vibrant yellow underparts, perched sideways on a slender branch surrounded by lush green foliage. +Mourning_Warbler_0052_166537.jpg The 170.Mourning Warbler, viewed from the side, displays a vibrant yellow underside with a charcoal gray hood and throat, while perched on a branch amidst lush green foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/171.Myrtle_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/171.Myrtle_Warbler_descriptions.txt new file mode 100644 index 0000000..d13d075 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/171.Myrtle_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Myrtle_Warbler_0043_166708.jpg The Myrtle Warbler displays a striking mix of gray, white, and yellow plumage with a distinctive yellow rump and throat patches, perched on a diagonal branch against a softly blurred natural background. +Myrtle_Warbler_0098_166794.jpg A Myrtle Warbler stands profile on a grassy field, displaying bluish-gray wings with white and yellow patches, brownish back, and a distinct yellow rump, amidst a sparse backdrop of dried vegetation. +Myrtle_Warbler_0084_166747.jpg A Myrtle Warbler is perched on a branch in a bright blue sky, showing a gray body with yellow patches on the side and throat, black streaks on its breast, and a white belly, with sparse twiggy branches in the background. +Myrtle_Warbler_0104_166829.jpg The 171.Myrtle Warbler perches sideways on a bare branch with its head turned slightly upwards, displaying a mix of grey, white, and vibrant yellow patches against a blurred background of light-colored branches and blue sky, with distinct streaks on its sides and a characteristic yellow rump. +Myrtle_Warbler_0008_166927.jpg The Myrtle Warbler, perched on a twig with budding leaves, displays a distinctive mix of blue-gray, black, and white plumage with bright yellow patches on its sides and crown, set against a soft-focus natural background. +Myrtle_Warbler_0112_166754.jpg A small bird with a light gray and brown streaked body, a bright yellow patch on its side, set against a backdrop of bare branches and a soft blue sky, perched in a profile view. +Myrtle_Warbler_0103_166963.jpg The Myrtle Warbler perches side-on against a clear sky, showcasing a brown and gray plumage with a vibrant yellow patch on its flank, a white throat, and streaked wings, while resting among thin, bare branches. +Myrtle_Warbler_0067_166828.jpg A Myrtle Warbler perches on a branch, displaying its distinctive blue-gray wings, yellow patches on the sides and under the throat against a backdrop of blurred foliage with warm autumn hues. +Myrtle_Warbler_0036_166833.jpg The low-resolution image shows a Myrtle Warbler perched on a branch, displaying a mix of gray and white streaked plumage with distinct yellow patches on the sides and crown against a soft blue sky background. +Myrtle_Warbler_0101_166942.jpg A small bird with a brownish head, gray wings with white streaks, and a bright yellow patch on its chest, perches sideways on a pine tree branch surrounded by needles. diff --git a/utils/area/descriptions/CUB/generated_descriptions/172.Nashville_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/172.Nashville_Warbler_descriptions.txt new file mode 100644 index 0000000..1846310 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/172.Nashville_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Nashville_Warbler_0100_167226.jpg The Nashville Warbler in the image displays bright yellow plumage on its underside with a gray head, perched in a natural setting of dried foliage and green leaves, highlighting its slender form and small size. +Nashville_Warbler_0110_167268.jpg The Nashville Warbler is shown in a side profile perched on a lichen-covered branch, displaying olive-green upperparts, a distinct gray head, white eye ring, and muted yellow underparts, set against a blurred natural background. +Nashville_Warbler_0035_167283.jpg The Nashville Warbler appears perched on a green leafy branch, showcasing a yellow underbelly with a grayish head, a thin beak, and a prominent black eye ring against a dark, natural background. +Nashville_Warbler_0032_167385.jpg The Nashville Warbler displays a vibrant yellow breast and olive-green back, perched in a side view on a branch with a slightly blurred background containing hints of brown and muted colors, featuring a distinct gray head and white eye-ring. +Nashville_Warbler_0050_167475.jpg The Nashville Warbler is perched on a slender branch, showcasing its olive-green wings, gray head, and bright yellow underparts, set against a softly blurred natural background. +Nashville_Warbler_0068_167266.jpg The small bird, viewed from the side, displays olive-green upperparts and bright yellow underparts, perched on a branch amidst lush, blurred green foliage. +Nashville_Warbler_0098_167293.jpg The Nashville Warbler is seen from a side view perched on a leafy branch, showcasing its yellow underparts with a gray head, while surrounded by green foliage against a soft blue sky. +Nashville_Warbler_0076_167389.jpg The low-resolution image shows a small bird with a bright yellow underside and grayish upper body perched on a thin branch amidst a natural background with red berries and green foliage, highlighting its distinctive white eye ring. +Nashville_Warbler_0048_167071.jpg The Nashville Warbler is perched atop a sliced orange with vibrant yellow underparts, a gray head, and olive-green wings, set against a blurred natural backdrop. +Nashville_Warbler_0036_167461.jpg The Nashville Warbler displays a side view with olive-green body, bright yellow throat and underparts, and a gray head, set against a blurred natural background as it perches on a hand, highlighting its small, rounded body and distinct eye ring. diff --git a/utils/area/descriptions/CUB/generated_descriptions/173.Orange_crowned_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/173.Orange_crowned_Warbler_descriptions.txt new file mode 100644 index 0000000..f04de9e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/173.Orange_crowned_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Orange_Crowned_Warbler_0079_168372.jpg The Orange-crowned Warbler, seen perched on a slender branch, displays an olive-green plumage with a slightly yellow underside, against a soft-focus background of bare branches, highlighting its subtle crown and delicate posture. +Orange_Crowned_Warbler_0119_167658.jpg The Orange-crowned Warbler, perched sideways on a slender green stem, exhibits muted olive-yellow plumage with subtle streaks and hints of a grayish head, set against a blurred natural backdrop with dried seed heads. +Orange_Crowned_Warbler_0083_167948.jpg Amidst a tangle of branches and muted foliage, the Orange-crowned Warbler appears perched with a slight downward angle, showcasing its olive-green plumage and subtle yellow underparts, with an indistinct environment due to the out-of-focus background elements. +Orange_Crowned_Warbler_0068_167585.jpg The Orange-crowned Warbler, viewed from the side, displays olive-green plumage with hints of yellow and a subtle orange crown, perched on a branch amid a leafy, sunlit background. +Orange_Crowned_Warbler_0018_168126.jpg The Orange-crowned Warbler is perched on a diagonal branch with its beak open, displaying a greenish-yellow plumage with subtle streaks and a faint orange crown, set against a softly blurred green background. +Orange_Crowned_Warbler_0067_167588.jpg The Orange-crowned Warbler is seen from the side perched on a branch, displaying muted olive-yellow plumage with a faint crown patch, against a blurred, earthy-toned background. +Orange_Crowned_Warbler_0055_168600.jpg Amidst a backdrop of green foliage and dried stems, the Orange-crowned Warbler is perched in profile, displaying muted olive-green plumage with subtle streaking, a faint yellow wash underneath, and a barely noticeable orange crown due to the low resolution. +Orange_Crowned_Warbler_0032_167589.jpg The Orange-crowned Warbler, perched diagonally on a thin branch, displays muted olive-green plumage with a subtle orange wash on the crown and blurred streaks, set against a blurred green background reminiscent of foliage. +Orange_Crowned_Warbler_0062_168119.jpg The Orange-crowned Warbler is perched on a red bird feeder, displaying olive-green plumage with a slight yellowish underside, on a neutral beige background, with its small, pointed beak and lack of visible orange crown. +Orange_Crowned_Warbler_0034_168185.jpg An olive-green and yellowish warbler perches on a bare branch against a clear blue sky, showing a subtle crown and faint streaking along its sides. diff --git a/utils/area/descriptions/CUB/generated_descriptions/174.Palm_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/174.Palm_Warbler_descriptions.txt new file mode 100644 index 0000000..bedf55a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/174.Palm_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Palm_Warbler_0060_168686.jpg The bird exhibits olive-brown plumage with streaks, a yellowish underbelly, and a chestnut cap, standing upright on a branch against a blurred, earthy backdrop. +Palm_Warbler_0113_170080.jpg The Palm Warbler in the image appears in profile view with a streaked brown and yellow body, a distinctive rufous crown, set against the textured bark of a tree, and small green plants at the base, highlighting its contrast with the background. +Palm_Warbler_0015_169626.jpg The 174.Palm Warbler displays a yellow underbelly with brown streaks on its chest, perched in a side view on a thorny branch, set against a blurred, greenish natural background. +Palm_Warbler_0006_169429.jpg The Palm Warbler in the image is perched on a branch, displaying olive-brown upperparts, a pale yellow underbelly, and a distinct rusty crown, set against a blurred, light-colored natural background. +Palm_Warbler_0134_168943.jpg The Palm Warbler features olive-brown plumage with subtle streaks, bright yellow undertail coverts, and is perched on a slender branch against a blurred background of brown, twig-like structures, viewed from the side highlighting its small stature and distinctive head markings. +Palm_Warbler_0024_170501.jpg A small brown bird with a light yellow underside and thin dark eye stripe stands sideways on a reddish-brown brick surface, with grey-blue blurred sky in the background. +Palm_Warbler_0040_169922.jpg The Palm Warbler in the image is perched on a branch, displaying a brownish body with olive tones, a distinctive chestnut crown, yellow tinges on the underparts, and a blurred green and white background. +Palm_Warbler_0112_169595.jpg The Palm Warbler in the image is perched on a branch with a background of blurred green foliage, displaying a primarily brown and yellow plumage with subtle streaking on the chest, and has a distinctive faintly rufous cap on its head while facing slightly to the left. +Palm_Warbler_0117_170073.jpg The Palm Warbler is perched on a branch against a blurred leafy background, displaying a striking yellow underbelly, brown-streaked wings, and a distinct chestnut cap with a hint of yellow around the eyes. +Palm_Warbler_0054_169175.jpg The Palm Warbler exhibits a brownish-olive plumage with a bright yellow underbelly, standing alert on a gravelly ground with green foliage, characterized by its lean posture and distinctly thin, pointed beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions/175.Pine_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/175.Pine_Warbler_descriptions.txt new file mode 100644 index 0000000..8db52a9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/175.Pine_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Pine_Warbler_0118_171152.jpg A vibrant yellow bird with subtle olive tones perched on a pine branch, its wings showcase black and white patterns, with a blurred green background providing contrast. +Pine_Warbler_0074_172061.jpg A bright yellow Pine Warbler with olive-toned wings and white wing bars is perched on a snowy ground, displaying a front-facing pose that highlights its rounded head and subtle gray streaks. +Pine_Warbler_0037_171649.jpg The Pine Warbler displays a vibrant yellow-green plumage with a lightly streaked texture, viewed from the side with a downward pose, perched on a wooden ledge against a muted background. +Pine_Warbler_0007_171523.jpg The Pine Warbler in the image displays bright yellow plumage with visible wing bars, perched in profile on a rough-textured branch against a blurred, neutral-toned background. +Pine_Warbler_0127_171742.jpg The Pine Warbler is perched on a branch with a vibrant yellow chest and throat, muted olive back, and distinct wing bars against a blurred background of green foliage and blue sky. +Pine_Warbler_0021_171525.jpg The Pine Warbler, with its bright yellow-green plumage and slight wing bars, is perched on a bare branch, set against a blurred, natural, green-toned background. +Pine_Warbler_0091_171627.jpg The Pine Warbler is perched sideways on a metal wire, displaying olive-yellow upperparts and a bright yellow throat against a textured background of granulated bird food with blurred greenery behind. +Pine_Warbler_0105_170983.jpg The Pine Warbler is perched on a branch with a greenish-yellow body, bright yellow throat, and white wing bars, against a blurred, natural background of muted greens and browns. +Pine_Warbler_0126_171282.jpg The bird perched on a red feeder is mainly yellow with some brownish wings displaying white streaks, viewed in profile against a blurred green background with part of a tree visible. +Pine_Warbler_0046_171452.jpg A small, bright yellow bird with olive-green tones perched side-on a bare branch against a clear blue sky, featuring white wing bars and a slight shadow under its belly. diff --git a/utils/area/descriptions/CUB/generated_descriptions/176.Prairie_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/176.Prairie_Warbler_descriptions.txt new file mode 100644 index 0000000..c630bbd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/176.Prairie_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Prairie_Warbler_0053_173290.jpg The Prairie Warbler is perched sideways on a branch, showcasing its vibrant yellow underparts and distinctive dark streaks on the sides, set against a soft-focus background of muted green and brown foliage, highlighting its prominent eye stripe and slender beak. +Prairie_Warbler_0135_172745.jpg The Prairie Warbler displays vibrant yellow plumage with dark streaks, perched side-on a bare branch against a clear blue sky, highlighting its slender build and distinct facial markings. +Prairie_Warbler_0104_172615.jpg A vibrant yellow Prairie Warbler with striking black streaks on its sides and face perches sideways on a thin branch, set against a softly blurred background of green and brown foliage. +Prairie_Warbler_0120_173097.jpg The Prairie Warbler, with bright yellow underparts and olive-green upperparts, perches sideways on a thin branch against a clear blue sky, displaying distinct black streaks on its sides and face with a slightly curved posture. +Prairie_Warbler_0054_172602.jpg The Prairie Warbler displays vibrant yellow plumage with dark streaks on its sides and a distinctive olive-green back, poised on a lush green leaf, against a backdrop of large, smooth, overlapping green leaves. +Prairie_Warbler_0020_173359.jpg A small bird with a vibrant yellow underside, olive-green wings and back, accented by bold black streaks across its flanks and face, perched on a reddish-brown branch amid slender green leaves in a softly blurred background. +Prairie_Warbler_0075_172709.jpg The Prairie Warbler is perched on a branch against a clear blue sky, displaying its vivid yellow body with distinctive black streaks along the sides, and a subtle olive-green back with the foliage partly obscuring its lower body. +Prairie_Warbler_0107_173080.jpg The image shows a Prairie Warbler with vibrant yellow plumage, black streaks on its face and flanks, captured in a frontal pose held gently by a hand against a softly blurred, wooded backdrop. +Prairie_Warbler_0063_172682.jpg Amidst a lush green grassy background, the Prairie Warbler is perched upright, displaying its yellow underparts, olive-brown upper body, and faint dark streaks, while interacting with a cluster of dandelion seeds. +Prairie_Warbler_0025_165306.jpg A small bird with bright yellow plumage featuring black streaks on its sides and face, perched on a slender branch amidst green leaves, facing to the right with a slightly upward gaze. diff --git a/utils/area/descriptions/CUB/generated_descriptions/177.Prothonotary_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/177.Prothonotary_Warbler_descriptions.txt new file mode 100644 index 0000000..15fd384 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/177.Prothonotary_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Prothonotary_Warbler_0070_174650.jpg The Prothonotary Warbler is perched on a branch with vibrant yellow plumage contrasted by olive-green wings, viewed from the side, with a blurred lush green foliage background, and its slightly downward-tilted head showcasing the bird's sleek profile. +Prothonotary_Warbler_0046_174104.jpg The Prothonotary Warbler, seen from a side angle on a wooden surface, displays vibrant yellow plumage with a bluish-gray wing and tail, featuring a distinct fanned tail with white outer feathers. +Prothonotary_Warbler_0008_173425.jpg The Prothonotary Warbler is perched sideways on a branch with a vivid yellow body contrasting against gray wings, set against a softly blurred background of green foliage. +Prothonotary_Warbler_0082_173970.jpg A bright yellow bird with a contrasting gray-blue back and wings, perched on a branch amidst a blurred brownish background, appears in a slightly downward-facing pose. +Prothonotary_Warbler_0098_173913.jpg The 177.Prothonotary Warbler perches sideways on a thin branch above reflective water, showcasing its vibrant yellow breast and belly, contrasting with olive-gray wings and back, against a blurred background of branches and water reflections. +Prothonotary_Warbler_0110_173857.jpg The Prothonotary Warbler displays vibrant yellow plumage with bluish-gray wings and tail, perched in profile on a weathered tree stump against a softly blurred green forest background. +Prothonotary_Warbler_0088_173606.jpg The Prothonotary Warbler displays vibrant yellow plumage with bluish-gray wings and is perched sideways on a branch above a water-rich, leafy environment. +Prothonotary_Warbler_0064_174106.jpg The Prothonotary Warbler is perched on a branch with a vibrant yellow body, a contrasting blue-gray wing, and a green leaf backdrop, viewed from the side with its head turned slightly downwards. +Prothonotary_Warbler_0045_173536.jpg The Prothonotary Warbler is perched amidst lush green leaves, showcasing its vibrant yellow body and bluish-gray wings, with a distinct dark eye visible in a natural tree canopy setting. +Prothonotary_Warbler_0037_173418.jpg The Prothonotary Warbler is perched on a metal surface, displaying bright yellow plumage on its body with contrasting blue-gray wings, and the dark blurry background highlights its vivid coloration. diff --git a/utils/area/descriptions/CUB/generated_descriptions/178.Swainson_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/178.Swainson_Warbler_descriptions.txt new file mode 100644 index 0000000..36b0dce --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/178.Swainson_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Swainson_Warbler_0045_794876.jpg The Swainson's Warbler in the image is perched at a slight angle with its head turned, showcasing its brown cap, pale eyebrow stripe, and muted olive-brown plumage against a blurred green forest background, highlighting its distinct slender bill and rounded body. +Swainson_Warbler_0024_794885.jpg The Swainson's Warbler, perched amidst vibrant green foliage, displays a warm brown plumage with a pale underbelly and a distinctive cream-colored eyebrow line, captured in a side view against a lush wooded background. +Swainson_Warbler_0011_174680.jpg The Swainson's Warbler is perched on a branch, displaying a warm brown upper body with a paler underbelly, a slightly curved beak pointing upward, set against a blurred green forest background with visible leafy textures. +Swainson_Warbler_0021_794898.jpg The Swainson's Warbler is perched on a mossy branch against a dark green background, displaying olive-brown plumage with a pale underbelly, a distinct eyeline, and long pinkish legs. +Swainson_Warbler_0037_174691.jpg The Swainson Warbler in the image is perched on a branch, displaying muted brown and olive plumage with a pale underbelly, in a dense, leafy environment with a slightly blurred background. +Swainson_Warbler_0004_794874.jpg A Swainson's Warbler with brownish-olive plumage and a slightly upturned bill is held in hand, set against a sunlit background of blurred foliage and a hint of equipment. +Swainson_Warbler_0038_794882.jpg The Swainson's Warbler is perched in profile view, showcasing its olive-brown plumage with subtle streaks and a paler underbelly against a backdrop of blurred greenery. +Swainson_Warbler_0047_794870.jpg The Swainson's Warbler is perched among dry brown leaves on the ground, displaying a light brown plumage with a slightly darker tail and wings, a moderately long bill, and a relatively plain background comprised of muted leaf textures. +Swainson_Warbler_0025_794881.jpg The Swainson Warbler displays a muted olive-brown plumage with discreet striping, viewed in a side profile perched among slender branches against a blurred backdrop of dense green foliage, highlighting its slightly curved, pale bill and subtle eye stripe. +Swainson_Warbler_0054_174689.jpg The Swainson's Warbler is perched on a sun-dappled forest floor covered with dry leaves, showing a muted brown hue with a lighter underbelly, and has a distinct pale eye stripe above a softly streaked face. diff --git a/utils/area/descriptions/CUB/generated_descriptions/179.Tennessee_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/179.Tennessee_Warbler_descriptions.txt new file mode 100644 index 0000000..240c364 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/179.Tennessee_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Tennessee_Warbler_0019_174786.jpg The 179.Tennessee Warbler displays a muted olive-green plumage with lighter underparts, perched among dense branches with bright leaves and cream-colored blossoms, showcasing a slightly angled profile with a characteristic tapered bill. +Tennessee_Warbler_0095_174903.jpg The bird displays olive-green back and wings with subtle white wing bars, perched laterally on a thin branch against a blurred background with a mix of blue sky and brown twigs. +Tennessee_Warbler_0046_174798.jpg The Tennessee Warbler is shown in a side view with its greenish-yellow body and faint gray cap, perched on burgundy flower clusters against a blurred green background, highlighting its olive-toned wings and subtle white underbelly. +Tennessee_Warbler_0051_175015.jpg The Tennessee Warbler is perched on a branch with its side profile visible, showcasing olive-green upperparts, a white underside, and distinct dark markings around the eyes, against a blurred natural background. +Tennessee_Warbler_0021_174761.jpg The Tennessee Warbler in the image is perched on a branch, showcasing its olive-green upperparts and pale yellow underparts with a subtle eye stripe, set against a blurred green and brown natural background. +Tennessee_Warbler_0062_174949.jpg The low-resolution image depicts a Tennessee Warbler perched on a mottled rock with a blurred green and blue background, showcasing its olive-green wings, pale underparts, and distinct eye line. +Tennessee_Warbler_0100_175168.jpg The image shows a small bird with a muted olive-green back and grayish underparts, perched sideways on a branch surrounded by bright green leaves, displaying a slender, slightly curved beak and a hint of a supercilium. +Tennessee_Warbler_0060_174840.jpg The low-resolution image shows a Tennessee Warbler with olive-green wings, a grayish crown, and a white underbelly perched on a tree branch, set against a blurred background of green leaves. +Tennessee_Warbler_0074_175058.jpg The 179.Tennessee Warbler is perched side-on atop an orange half, showcasing its olive-green upperparts, pale underparts, and slender beak against a softly blurred, neutral background. +Tennessee_Warbler_0045_174913.jpg The Tennessee Warbler is perched on a branch surrounded by budding leaves, showcasing its olive-green back, yellow-tinged breast, and a light gray underside, with a slightly upward gaze and a contrasting white eye line. diff --git a/utils/area/descriptions/CUB/generated_descriptions/180.Wilson_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/180.Wilson_Warbler_descriptions.txt new file mode 100644 index 0000000..39068e1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/180.Wilson_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Wilson_Warbler_0117_175262.jpg The Wilson's Warbler, perched on a slender, mossy branch, displays a vibrant yellow body with a distinctive black cap, against a softly blurred green background. +Wilson_Warbler_0010_175750.jpg The 180.Wilson Warbler is perched on a branch, displaying vibrant yellow plumage with a distinctive black cap, set against a blurred, natural background of muted green and gray branches. +Wilson_Warbler_0065_175924.jpg The Wilson Warbler displays vibrant yellow plumage with a distinct black cap on its head, perched in a side view on thin, budding brown branches against a blurred, earthy-toned background. +Wilson_Warbler_0020_175505.jpg A vibrant yellow bird with a distinct black cap is facing forward on a ground covered with dry leaves and scattered greenery. +Wilson_Warbler_0018_175389.jpg The Wilson's Warbler, seen in profile perched on a branch, displays a vibrant yellow body with a distinctive black cap, against a blurred backdrop of green foliage and twigs. +Wilson_Warbler_0045_175623.jpg The Wilson's Warbler displays a vibrant yellow body with a distinctive small black cap, perched on a slender branch against a muted, blurred background, with its head tilted inquisitively towards the camera. +Wilson_Warbler_0132_175600.jpg The 180.Wilson Warbler is perched amidst lush greenery, showcasing its vibrant yellow plumage and distinctive black cap, set against a blurred forest-like background. +Wilson_Warbler_0050_175573.jpg The 180.Wilson Warbler is perched sideways on a branch with a bright yellow body, distinctive black cap, and short tail, set against a blurred green leafy background. +Wilson_Warbler_0102_175769.jpg The bird has a bright yellow body with a contrasting black cap on its head, perched sideways on a branch amidst lush green leaves, highlighting its small, slender form and short tail. +Wilson_Warbler_0047_175304.jpg The Wilson Warbler displays a vibrant yellow plumage with a distinctive black cap perched slightly sideways on a branch, set against a blurred background of soft green foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions/181.Worm_eating_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/181.Worm_eating_Warbler_descriptions.txt new file mode 100644 index 0000000..ced17db --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/181.Worm_eating_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Worm_Eating_Warbler_0006_176037.jpg The Worm-eating Warbler is perched on a branch with its side profile visible, displaying olive-brown plumage with distinct dark crown stripes and a slight buff underbelly, set against a blurred green foliage background. +Worm_Eating_Warbler_0060_175969.jpg The Worm-eating Warbler is perched on a diagonal branch in a side view pose, displaying olive-brown plumage with a slightly buffy underbelly, against a blurred natural forest background featuring green foliage. +Worm_Eating_Warbler_0074_176093.jpg A small bird with a muted olive-yellow body, prominent black head stripes, and pale legs, perched on a branch surrounded by a blurred background of green leaves. +Worm_Eating_Warbler_0013_795534.jpg The Worm-eating Warbler is perched on a branch, displaying olive-brown plumage with distinctive black crown stripes on a pale yellow head, set against a blurred green foliage background. +Worm_Eating_Warbler_0063_795553.jpg The Worm-eating Warbler, held gently by a hand against a blurred green background, displays a subtle blend of olive-brown and buff hues with distinctive dark crown stripes and a compact, rounded body seen in a side profile. +Worm_Eating_Warbler_0078_795532.jpg A small bird with olive-brown plumage and distinctive dark crown stripes is perched on a leafy branch, surrounded by vibrant green and yellow foliage, showcasing a side profile. +Worm_Eating_Warbler_0018_795546.jpg A Worm-eating Warbler is perched on a lichen-covered branch, displaying muted brown plumage with distinctive black crown stripes, against a softly blurred green background. +Worm_Eating_Warbler_0055_795555.jpg The Worm-eating Warbler is perched laterally on a tree branch with a light olive-brown body, marked with contrasting dark stripes on its head, set against a smooth, blurred green foliage background. +Worm_Eating_Warbler_0102_176069.jpg The Worm-eating Warbler is perched on a slanted branch with a pose showing its side profile, displaying olive-brown plumage with distinctive dark stripes on the head against a soft, blurred green background. +Worm_Eating_Warbler_0097_176010.jpg The 181.Worm eating Warbler displays olive-brown plumage with a distinctive black and buff striped head, captured side-on among a forest floor of brown leaves and sparse greenery. diff --git a/utils/area/descriptions/CUB/generated_descriptions/182.Yellow_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/182.Yellow_Warbler_descriptions.txt new file mode 100644 index 0000000..006d7c2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/182.Yellow_Warbler_descriptions.txt @@ -0,0 +1,10 @@ +Yellow_Warbler_0013_176437.jpg The Yellow Warbler is perched sideways on a thin branch, displaying its vibrant yellow plumage with olive-tinged back and subtle wing markings against a blurred brown background. +Yellow_Warbler_0096_176586.jpg The Yellow Warbler, seen perched among bare branches, features vibrant yellow plumage with subtle olive streaks on its wings and is viewed from the side. +Yellow_Warbler_0030_176236.jpg The Yellow Warbler, perched diagonally on a bare branch against a soft green background, displays vibrant yellow plumage with subtle olive-toned wing feathers and fine streaks on its chest, while its small, pointed beak adds to its delicate appearance. +Yellow_Warbler_0025_176189.jpg The Yellow Warbler appears vibrant with its characteristic bright yellow plumage adorned with subtle streaks, captured in a lateral pose perched on a rock, set against a blurred background of brown and green hues, highlighting its distinctive dark eye markings and slender beak. +Yellow_Warbler_0087_176591.jpg The yellow warbler is perched among intertwined branches above a reflective water surface, displaying its vivid yellow plumage with faint brownish streaks, set against a backdrop of dry, tangled twigs and branches. +Yellow_Warbler_0049_176526.jpg A vibrantly yellow bird with subtle grayish streaks on its feathers is perched on a thin branch against a clear blue sky, with its beak open in song. +Yellow_Warbler_0090_176366.jpg The 182.Yellow Warbler displays vivid yellow plumage with subtle streaks on its chest, perched sideways on a branch against a soft blue sky and sporadic green foliage, highlighting its small rounded head and short dark bill. +Yellow_Warbler_0095_176202.jpg A vibrant yellow warbler is perched sideways amidst dense green foliage, with subtle streaking on its chest and a distinct thin, pointed beak. +Yellow_Warbler_0104_176541.jpg The Yellow Warbler, perched on a slender branch against a vibrant blue sky, displays bright yellow plumage with subtle streaks, accented by light greenish tones on its wings and back, amidst sparse green leaves. +Yellow_Warbler_0021_176421.jpg The Yellow Warbler is perched upright on a branch with its vibrant yellow plumage contrasting against the clear blue sky, surrounded by sparse green leaves and branches. diff --git a/utils/area/descriptions/CUB/generated_descriptions/183.Northern_Waterthrush_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/183.Northern_Waterthrush_descriptions.txt new file mode 100644 index 0000000..17869cf --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/183.Northern_Waterthrush_descriptions.txt @@ -0,0 +1,10 @@ +Northern_Waterthrush_0104_177137.jpg The Northern Waterthrush stands in a side profile view, featuring a brown back with cream and dark streaked underside, set against a blurred green leafy background, on a mossy, textured log. +Northern_Waterthrush_0084_177239.jpg The Northern Waterthrush, seen in profile amidst a marshy environment with water and twigs, features a brown, streaked plumage with distinctive white and brown stripes on its underparts and a subtle eye stripe. +Northern_Waterthrush_0013_177343.jpg The Northern Waterthrush is perched on a bed of dry twigs, showcasing its brown-streaked plumage and pale yellowish underparts with dark streaks, while its slightly arched posture and eye stripe are distinct against the natural, earthy background. +Northern_Waterthrush_0080_177080.jpg The Northern Waterthrush is depicted with a brown, streaked body and a pale supercilium, standing among water-worn rocks and a rippling water background, featuring a slight crouching pose. +Northern_Waterthrush_0051_177120.jpg The 183.Northern Waterthrush, seen perched in a side profile on a tree branch, displays a speckled brown and white plumage set against a lush green leafy background, highlighting its distinct striped breast and slightly downward-curved beak. +Northern_Waterthrush_0089_177167.jpg The 183.Northern Waterthrush stands on a weathered log in a horizontal pose, displaying brown upperparts with bold black streaks on its cream-colored underparts, amidst a background of green foliage and textured tree bark. +Northern_Waterthrush_0090_177283.jpg The Northern Waterthrush in the image is shown side-on with a brown, streaked body and bold white eyebrow, standing on a grass-covered ground with a blurred natural green background. +Northern_Waterthrush_0009_177078.jpg The Northern Waterthrush displays a brown and olive coloration with distinctive streaks on its underside, standing in a profile view on a moss-covered branch against a blurred, earthy-toned background. +Northern_Waterthrush_0049_177173.jpg The Northern Waterthrush has a brownish body with streaked underparts, stands in a lateral view on a log, and is set against a textured, greenish wetland background. +Northern_Waterthrush_0103_177162.jpg The Northern Waterthrush, viewed in profile among a background of dry leaves, displays a dark brown upper body with a streaked cream and brown underside, and distinct pale eyebrow stripe, while standing amidst its natural forest floor habitat. diff --git a/utils/area/descriptions/CUB/generated_descriptions/184.Louisiana_Waterthrush_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/184.Louisiana_Waterthrush_descriptions.txt new file mode 100644 index 0000000..bde0986 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/184.Louisiana_Waterthrush_descriptions.txt @@ -0,0 +1,10 @@ +Louisiana_Waterthrush_0001_795271.jpg The image displays a bird with brown and white plumage, marked by a prominent white eyebrow stripe, perched on a slanted, textured log against a softly blurred background. +Louisiana_Waterthrush_0029_795262.jpg The bird features a brown and white speckled pattern with a distinctive eye stripe, perched on a branch over water with its posture angled slightly upwards. +Louisiana_Waterthrush_0031_177509.jpg A brown and white bird with bold streaking along its flanks, viewed from the side on a moss-covered branch against a backdrop of trees and greenery. +Louisiana_Waterthrush_0025_177403.jpg The bird features brown upperparts with distinct white underparts streaked in dark brown, is posed in a side view on rocks by a green, watery background, and has a noticeable white eyebrow stripe running above its eye. +Louisiana_Waterthrush_0003_177479.jpg The bird displays a brown and white plumage with a distinctive long, white eyebrow stripe, standing in a shallow, marshy environment amidst reeds, showcasing its streaked underside. +Louisiana_Waterthrush_0034_795242.jpg A small bird with earthy brown and white plumage featuring prominent streaks on its breast is perched on a rock amidst a natural, shadowy environment with thin branches arching in the background. +Louisiana_Waterthrush_0004_177455.jpg A small bird with brown and white plumage, spotted underparts, and a distinct eye stripe stands on a rock by a dark, reflective water surface in a woodsy environment. +Louisiana_Waterthrush_0077_795247.jpg The image shows a Louisiana Waterthrush with brown upperparts and a distinct white eyebrow stripe, perched in a natural, wooded environment with rocks and branches visible, showcasing its streaked underbelly. +Louisiana_Waterthrush_0042_177551.jpg The Louisiana Waterthrush is perched horizontally on a branch amidst green blurred foliage, displaying a brown back, white underside with bold, dark streaks, and a distinct white eyebrow stripe above its eye. +Louisiana_Waterthrush_0045_795274.jpg The Louisiana Waterthrush is shown in profile with its brown plumage, creamy underbelly with streaks, distinctive white eyebrow stripe, standing on smooth gray rocks beside a flowing stream. diff --git a/utils/area/descriptions/CUB/generated_descriptions/185.Bohemian_Waxwing_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/185.Bohemian_Waxwing_descriptions.txt new file mode 100644 index 0000000..e15fa42 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/185.Bohemian_Waxwing_descriptions.txt @@ -0,0 +1,10 @@ +Bohemian_Waxwing_0040_177914.jpg The bird displays a smooth, buff-gray body with a crest on its head, perched on a branch against a blurred sky-blue background, showcasing its signature black eye mask and red and yellow wingtips. +Bohemian_Waxwing_0022_177642.jpg A Bohemian Waxwing is perched on a bare branch against a clear blue sky, displaying its smooth, soft grayish-brown plumage with a notable crest, black mask, and hints of yellow and red on its wings. +Bohemian_Waxwing_0046_177864.jpg The 185.Bohemian Waxwing is perched amidst autumnal foliage, displaying its sleek, gray body accented with red and yellow markings on the wings and tail, with a conspicuous black eye mask and a crest on its head, all observed from a side view. +Bohemian_Waxwing_0122_796654.jpg The Bohemian Waxwing is perched on a bare branch, displaying a sleek, gray-brown body with a distinctive crest and black eye mask, highlighted by subtle touches of yellow and red on its wing tips against a soft, blurred background. +Bohemian_Waxwing_0095_177709.jpg The 185.Bohemian Waxwing perches on a bare branch in profile against a blurred gray-blue background, showcasing its sleek, tan body, distinctive black eye mask, and a crest atop its head, with colorful yellow, white, and red accents on its wings and tail. +Bohemian_Waxwing_0097_177944.jpg The Bohemian Waxwing is perched on a branch in a side profile view, showcasing its smooth, buff-gray plumage, with a distinctive black mask and crest, and bright yellow-tipped tail against a soft, muted background of bare branches. +Bohemian_Waxwing_0021_796625.jpg The Bohemian Waxwing, perched on a branch amidst a hazy, pale background, displays a sleek, grayish-brown body with a prominent crest, subtle black eye mask, and striking yellow, red, and white markings on the wings. +Bohemian_Waxwing_0042_177887.jpg The Bohemian Waxwing, perched on a bare branch against a clear blue sky, displays its smooth, gray-brown plumage with a distinctive crest and black mask, complemented by subtle yellow and red accents on the tail and wings. +Bohemian_Waxwing_0009_177972.jpg The Bohemian Waxwing displays smooth grayish plumage with a distinctive black mask and crest, set against a snowy ground, and features red and yellow tail and wing markings, offering a profile view with its head slightly turned. +Bohemian_Waxwing_0072_177901.jpg The Bohemian Waxwing displays a smooth, grayish-brown plumage with a distinct black mask around its eyes, a crest atop its head, and bright yellow-tipped tail feathers, perched from a rear view on bare branches against a muted sky. diff --git a/utils/area/descriptions/CUB/generated_descriptions/186.Cedar_Waxwing_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/186.Cedar_Waxwing_descriptions.txt new file mode 100644 index 0000000..b2beef2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/186.Cedar_Waxwing_descriptions.txt @@ -0,0 +1,10 @@ +Cedar_Waxwing_0062_178788.jpg The Cedar Waxwing in the image is perched on a thin branch, displaying a smooth, tan body with a sleek crest atop its head, a striking black mask across its eyes, yellow-tipped tail feathers, and contrasting gray wings against a soft green, blurred background. +Cedar_Waxwing_0029_179569.jpg The Cedar Waxwing displays a smooth blend of brown and gray feathers, with a soft yellow belly and a distinctive black mask, perched sideways on a bare branch against a clear blue sky. +Cedar_Waxwing_0118_178779.jpg A Cedar Waxwing with smooth tan and yellow plumage perched sideways on a pine branch with a distinctive black mask, against a backdrop of dense green foliage. +Cedar_Waxwing_0098_178971.jpg The Cedar Waxwing in the image is perched on a bare branch, displaying a smooth, brownish body with a prominent black mask and crest, set against a clear blue sky, highlighting its yellow-tipped tail and subtle underbelly shading. +Cedar_Waxwing_0096_178164.jpg The Cedar Waxwing is perched on a branch amidst green foliage, showing its smooth, sleek texture with a combination of muted brown, gray, and yellow coloring, complemented by a distinctive black mask and a slight crest on its head. +Cedar_Waxwing_0125_178921.jpg The Cedar Waxwing is perched amid green foliage with small red berries, displaying soft brown plumage with a sleek black mask, and having a slightly turned pose that reveals its yellow-tipped tail and the subtle sheen of its smooth feathers. +Cedar_Waxwing_0130_178308.jpg A Cedar Waxwing with sleek, pale brown plumage and a distinctive black mask sits perching sideways on a lichen-covered branch against a vibrant green background. +Cedar_Waxwing_0101_179707.jpg The Cedar Waxwing, perched on a branch, displays a sleek, smooth plumage with a pale brown head transitioning to gray wings, a short crest, a distinctive black eye mask, and a yellow-tipped tail against a blurred natural background. +Cedar_Waxwing_0003_178570.jpg The Cedar Waxwing is perched on a branch with smooth, sleek brown plumage on its back, a light yellow underside, black mask around its eyes, and a background of softly blurred green leaves. +Cedar_Waxwing_0037_179710.jpg The Cedar Waxwing is perched on a branch, displaying its smooth, brown and pale yellow plumage with a prominent crest, set against a clear blue sky and surrounded by red berries. diff --git a/utils/area/descriptions/CUB/generated_descriptions/187.American_Three_toed_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/187.American_Three_toed_Woodpecker_descriptions.txt new file mode 100644 index 0000000..91b69c6 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/187.American_Three_toed_Woodpecker_descriptions.txt @@ -0,0 +1,10 @@ +American_Three_Toed_Woodpecker_0004_179908.jpg The American Three-toed Woodpecker is perched sideways on a tree trunk, its black-and-white striped pattern blending with the bark, surrounded by tall, thin branches against a snowy background. +American_Three_Toed_Woodpecker_0018_179831.jpg In the image, the American Three-toed Woodpecker is perched vertically on a pine tree with a speckled black and white back, distinctive markings on its wings, and a barring pattern on its flank, set against a blurred, snowy forest background. +American_Three_Toed_Woodpecker_0027_796147.jpg The image shows an American Three-toed Woodpecker with a mottled black and white plumage, clinging vertically to a tree trunk, with a distinctive black crown and barred wings, set against a blurred greenish-blue background. +American_Three_Toed_Woodpecker_0024_179876.jpg The American Three-toed Woodpecker in the image appears perched vertically on a tree trunk, featuring a black and white striped pattern on its back and wings, with a distinctly mottled texture, set against a blurred forest background exhibiting various shades of muted greens and browns. +American_Three_Toed_Woodpecker_0029_796143.jpg The American Three-toed Woodpecker is perched laterally on a textured tree trunk, displaying a predominantly black and white plumage with distinctive barring on the back and flanks, a striking black cap, and a subtle yellow patch on the crown, set against a blurred purple background. +American_Three_Toed_Woodpecker_0038_796182.jpg The bird displays a distinctive black and white plumage with a barred pattern, clinging vertically to a textured tree trunk in a dark wooded environment. +American_Three_Toed_Woodpecker_0016_179927.jpg The American Three-toed Woodpecker is seen clinging vertically to a textured tree trunk with a mottled brown and gray background, featuring distinct black and white plumage with a notable yellow patch on the forehead. +American_Three_Toed_Woodpecker_0044_796151.jpg The American Three-toed Woodpecker is perched vertically on a textured tree trunk, displaying black and white barred plumage with a distinctive black cap and a white face, set against a background of blurred brown branches. +American_Three_Toed_Woodpecker_0012_179905.jpg The image shows a black and white woodpecker with a distinct barred pattern on its back, perched vertically on a tree trunk covered in textured, bark-like pattern, surrounded by wispy lichen. +American_Three_Toed_Woodpecker_0031_796172.jpg The American Three-toed Woodpecker is shown in a side profile clinging to a tree with a distinctive yellow patch on its head, black and white barred pattern on its back and wings, and a mottled black and white body; the background consists of a blurred tree and snow creating a natural forest setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions/188.Pileated_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/188.Pileated_Woodpecker_descriptions.txt new file mode 100644 index 0000000..4170010 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/188.Pileated_Woodpecker_descriptions.txt @@ -0,0 +1,10 @@ +Pileated_Woodpecker_0124_180168.jpg The pileated woodpecker, with its striking red crest and predominantly black plumage contrasted by white facial markings, is perched vertically on a textured tree trunk, amidst a blurred forest background. +Pileated_Woodpecker_0025_180253.jpg The Pileated Woodpecker features a striking red crest and contrasting black and white plumage while perched sideways on a snowy, weathered wooden bird feeder amidst a wintry forest background with bare trees and scattered brown leaves. +Pileated_Woodpecker_0038_180300.jpg Viewed from the side clinging to a tree, the Pileated Woodpecker displays a vivid red crest, contrasting sharply with its black body and white facial markings, set against a lush, green forest background. +Pileated_Woodpecker_0008_180400.jpg The Pileated Woodpecker is perched on the side of a moss-covered tree, displaying a striking red crest, black body with white stripes on the face and neck, and a long, sturdy bill against a leafy green background. +Pileated_Woodpecker_0032_180347.jpg The Pileated Woodpecker features a striking crimson crest, glossy black feathers with white streaks along its neck and face, clinging vertically to a tree trunk in a forested environment. +Pileated_Woodpecker_0079_180388.jpg The image shows a Pileated Woodpecker with a striking red crest, black plumage, and white facial markings, perched sideways on a weathered wooden pole against a clear blue sky. +Pileated_Woodpecker_0072_180006.jpg The image shows a Pileated Woodpecker with a striking red crest, black body, and white facial stripes clinging to a tree trunk in a lush, green forest environment. +Pileated_Woodpecker_0125_179971.jpg With its striking red crest, black and white plumage, and distinctive white facial stripes, the Pileated Woodpecker clings vertically to a weathered tree trunk, set against a soft, blurred background of branches and sky. +Pileated_Woodpecker_0078_180236.jpg The 188.Pileated Woodpecker, viewed from the side with its vivid red crest and black body with contrasting white stripes, is perched on a birch tree feeder in a natural wooded background. +Pileated_Woodpecker_0056_180094.jpg A black bird with a striking red crest and white facial markings is clinging vertically to the side of a tree in a wooded environment with visible branches and muted background colors. diff --git a/utils/area/descriptions/CUB/generated_descriptions/189.Red_bellied_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/189.Red_bellied_Woodpecker_descriptions.txt new file mode 100644 index 0000000..ae743ab --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/189.Red_bellied_Woodpecker_descriptions.txt @@ -0,0 +1,10 @@ +Red_Bellied_Woodpecker_0028_181830.jpg The red-bellied woodpecker, perched on a feeder, displays its characteristic red crown and nape, with a black-and-white barred back and wings against a blurred green background. +Red_Bellied_Woodpecker_0120_181420.jpg A Red-bellied Woodpecker with a vibrant red crown and nape, barred black and white plumage on its back, is clinging vertically to a tree trunk beside a green suet feeder in a wooded environment. +Red_Bellied_Woodpecker_0110_181188.jpg The Red-bellied Woodpecker, seen in profile with its red crown and nape, showcases black-and-white barred wings as it clings to a suet feeder amidst a blurred green background. +Red_Bellied_Woodpecker_0050_180751.jpg The Red-bellied Woodpecker in the image displays a striking red crown and nape with a black-and-white barred back, perched with an upward gaze against a blurred green background. +Red_Bellied_Woodpecker_0088_180941.jpg The Red-bellied Woodpecker displays a vibrant red cap extending down the nape, with a distinctive black-and-white barred back and wings, perched sideways on a tree trunk against a soft blurred green background. +Red_Bellied_Woodpecker_0021_182303.jpg The Red-bellied Woodpecker, displaying a vibrant red cap and nape, is perched vertically on a blue metal mesh bird feeder against a blurred green background, with its black and white barred wings and tail prominent despite the image's low resolution. +Red_Bellied_Woodpecker_0009_180961.jpg The Red-bellied Woodpecker is perched on a tree branch with its body facing right, showcasing its striking barred black and white back, a distinct red cap, and a pale belly, set against a backdrop of green leaves and blue sky. +Red_Bellied_Woodpecker_0103_180803.jpg The 189.Red bellied Woodpecker, seen in a three-quarter profile, showcases a vibrant red cap and nape, with striking black and white barred wings, perched on a wooden feeder filled with seeds, against a softly blurred natural background. +Red_Bellied_Woodpecker_0012_181765.jpg The Red-bellied Woodpecker, viewed in profile, exhibits a vibrant red crown and nape, with a barred black and white pattern on its back, against the textured bark of a tree and a clear blue sky in the background, as it actively pecks at the tree. +Red_Bellied_Woodpecker_0073_180994.jpg The bird, facing sideways on a wooden perch, displays a striking red crown and nape, a barred black-and-white back, and a pale underside, set against a softly blurred background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/190.Red_cockaded_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/190.Red_cockaded_Woodpecker_descriptions.txt new file mode 100644 index 0000000..76e7ba1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/190.Red_cockaded_Woodpecker_descriptions.txt @@ -0,0 +1,10 @@ +Red_Cockaded_Woodpecker_0007_794755.jpg The bird is perched on a tree trunk with a vertical pose, displaying a black and white speckled back, a white underside, and a hint of red on its head against a rough, textured bark background. +Red_Cockaded_Woodpecker_0006_182592.jpg The Red-cockaded Woodpecker displays a black and white barred back and a white cheek patch, clinging vertically to a textured, reddish-brown pine tree with the blurred background of a forest environment. +Red_Cockaded_Woodpecker_0036_182519.jpg Seen from a side view clinging to a tree with a blue-gray background, this Red-cockaded Woodpecker is characterized by its black and white barred back, sharp black crown, pale face, and the presence of colored bands on its legs. +Red_Cockaded_Woodpecker_0027_794713.jpg The Red-cockaded Woodpecker, viewed in flight from an upper-side angle, exhibits distinctive black and white mottled plumage with a speckled pattern on its wings, set against a soft, blurred greenish-gray background. +Red_Cockaded_Woodpecker_0032_182376.jpg The Red-cockaded Woodpecker is perched vertically on a tree trunk, showcasing its distinct black and white barred wings and a spotted black cap, with a textured bark background enhancing its vivid contrast. +Red_Cockaded_Woodpecker_0033_794721.jpg The Red-cockaded Woodpecker is depicted mid-flight with wings spread, revealing a pattern of black and white speckled feathers, set against a dark background and positioned near a rough-textured tree trunk. +Red_Cockaded_Woodpecker_0052_794752.jpg A Red-cockaded Woodpecker clings vertically to a tree trunk, showcasing a black-and-white barred back, distinct white cheek patches, and a hint of red near the cap, against a background of blurred branches and a blue sky. +Red_Cockaded_Woodpecker_0022_794700.jpg A Red-cockaded Woodpecker is seen perched vertically on a textured tree trunk, displaying its black-and-white barred back with a distinctive white cheek patch and facing right, set against a blurred natural background. +Red_Cockaded_Woodpecker_0040_182502.jpg A Red-cockaded Woodpecker clings to a textured tree trunk in a side view, showcasing its black and white speckled plumage with a distinct white cheek patch against a softly blurred, green forest background. +Red_Cockaded_Woodpecker_0015_182459.jpg The Red-cockaded Woodpecker is perched on a tree trunk, displaying a black and white barred back with a distinctive white cheek patch, in a natural forest setting with a blurred background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/191.Red_headed_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/191.Red_headed_Woodpecker_descriptions.txt new file mode 100644 index 0000000..f974762 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/191.Red_headed_Woodpecker_descriptions.txt @@ -0,0 +1,10 @@ +Red_Headed_Woodpecker_0108_183403.jpg The bird features a bright red head and a sharp contrast of black and white plumage, clinging to a textured wooden pole against a clear blue sky, with its profile view clearly showing the smooth transition between its vibrant colors. +Red_Headed_Woodpecker_0094_183401.jpg A Red-headed Woodpecker is perched on a broken tree stump, displaying its vivid red head, striking black wings with a white body underneath as it stretches its wings against a clear blue sky. +Red_Headed_Woodpecker_0022_183010.jpg A Red-headed Woodpecker perches laterally on a textured tree branch, holding an acorn in its beak, displaying its vibrant red head, stark black wings with white patches, and a clear blue sky background. +Red_Headed_Woodpecker_0063_183358.jpg The Red-headed Woodpecker perches on a branch, showcasing its striking red head, glossy black back, and contrasting white underside against a softly blurred green background. +Red_Headed_Woodpecker_0068_183662.jpg A woodpecker with a striking red head and black-and-white body perches on a fallen log in a grassy, park-like setting, displaying a profile view with its long beak and distinctive white neck markings. +Red_Headed_Woodpecker_0103_183571.jpg The Red-headed Woodpecker features a vibrant red head, contrasting sharply with its black and white body perched on a textured tree trunk, against a blurred green background. +Red_Headed_Woodpecker_0020_183255.jpg The bird is perched on a weathered branch with a vivid red head, black wings, and a white underbelly, set against a blurred, light-colored sky background. +Red_Headed_Woodpecker_0055_183515.jpg The 191.Red-headed Woodpecker is perched side-on against a textured tree trunk, showcasing its striking deep red head, glossy black back, and white underparts, set against a softly blurred green and gray background. +Red_Headed_Woodpecker_0066_183322.jpg The 191.Red headed Woodpecker is perched vertically on a textured tree trunk, showcasing its vibrant red head, contrasting with a white underside and black wings, set against a blurred background of muted greens and browns. +Red_Headed_Woodpecker_0005_183414.jpg The Red-headed Woodpecker features a striking bright red head with a glossy texture, a black back, and white underparts, perched in a side-view pose on a vertical tree branch against a blurred green forest background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/192.Downy_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/192.Downy_Woodpecker_descriptions.txt new file mode 100644 index 0000000..d395f83 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/192.Downy_Woodpecker_descriptions.txt @@ -0,0 +1,10 @@ +Downy_Woodpecker_0033_184636.jpg A Downy Woodpecker with a small red patch on its head and distinctive black-and-white patterned plumage is perched on a textured, dark branch against a blurred green-brown forest background, viewed from the side highlighting its compact body and sharp beak. +Downy_Woodpecker_0041_184528.jpg The Downy Woodpecker, viewed in profile on a light-colored tree trunk, features a black and white speckled pattern with a distinct red patch on the back of its head, set against a blurred snowy background. +Downy_Woodpecker_0003_183933.jpg The Downy Woodpecker is perched sideways on a textured, lichen-covered branch, displaying a black and white speckled back with a distinctive red patch on its head, set against a blurred, neutral-toned background. +Downy_Woodpecker_0115_184096.jpg A Downy Woodpecker with black and white plumage, a distinctive red patch on the back of its head, perched on a green suet feeder against a blurred forested background. +Downy_Woodpecker_0138_184385.jpg The Downy Woodpecker is perched laterally on a suet feeder, displaying a black and white plumage with a small red patch on its head, against a lattice patterned background. +Downy_Woodpecker_0102_184263.jpg The 192.Downy Woodpecker, perched vertically against a tree trunk, displays black and white plumage with a distinctive red patch on its head, amidst a textured gray-brown background with intertwining vines. +Downy_Woodpecker_0032_184622.jpg This Downy Woodpecker, viewed from the side, displays a black and white barred pattern on its wings, with a distinctive red patch on the head, perched on a textured, mossy branch against a blurred, muted background. +Downy_Woodpecker_0096_184532.jpg A small bird with black and white striped wings and a distinctive red patch on its head clings to a textured tree bark with a blurred forest background. +Downy_Woodpecker_0073_184430.jpg The Downy Woodpecker displays a black and white speckled pattern with a distinctive red patch on its head, perched on a rough wooden surface with sunflower seeds scattered nearby, set against a blurred wooden fence background. +Downy_Woodpecker_0090_183964.jpg The Downy Woodpecker, perched vertically on a textured tree trunk, exhibits distinctive black and white plumage with a striking red patch on the back of its head, set against a blurred, natural background under clear lighting. diff --git a/utils/area/descriptions/CUB/generated_descriptions/193.Bewick_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/193.Bewick_Wren_descriptions.txt new file mode 100644 index 0000000..1ebe77f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/193.Bewick_Wren_descriptions.txt @@ -0,0 +1,10 @@ +Bewick_Wren_0065_185247.jpg The Bewick's Wren is perched on a weathered wooden fence post with its back and tail raised, displaying muted brown plumage contrasted by a soft white underbelly, set against a blurred natural background of greenery and dry grass. +Bewick_Wren_0062_185063.jpg The Bewick's Wren is perched sideways on a branch, displaying brown upperparts with a prominent white eyebrow stripe and subtle streaking, against a blurred background of bare branches and a light, natural setting. +Bewick_Wren_0097_185358.jpg The Bewick's Wren is perched on a thorny branch with a brown and white speckled plumage, a slightly upright tail with barred pattern, and a prominent white eye stripe, set against a blurred natural background. +Bewick_Wren_0081_185080.jpg The Bewick Wren, seen perched on a stone surface against a clear blue sky, displays a distinctive brown upper body, white throat, and prominent eyebrow stripe, with its stance showcasing an open beak as if in song. +Bewick_Wren_0039_184989.jpg The Bewick's Wren appears perched on a rough-textured concrete surface, displaying its brown plumage with lighter underparts, a distinct white eyebrow line, and a notably long tail streaked with darker patterns, set against an urban backdrop. +Bewick_Wren_0112_184956.jpg The Bewick's Wren is perched in a side profile with a rusty brown back, pale underbelly, distinctive white eyebrow stripe, and a rusty metal beam providing a stark, industrial background. +Bewick_Wren_0003_185072.jpg The Bewick's Wren is perched sideways on a branch, displaying its brown upperparts and white underparts with a slightly curved beak against a backdrop of leaves and a bright sky, accentuated by its distinct white eyebrow stripe. +Bewick_Wren_0107_184908.jpg The 193.Bewick Wren is perched sideways on a slender, diagonally angled reed, showcasing its mottled brown and gray plumage with a prominent white eyebrow stripe against a blurred green background. +Bewick_Wren_0025_184932.jpg The Bewick Wren is perched with a side profile displaying its brown and white-streaked plumage, with a distinctive white eyebrow stripe, set against a blurred, natural wooden background. +Bewick_Wren_0135_185251.jpg The Bewick's Wren perches sideways on a branch, displaying a brownish back, distinct white eyebrow stripe, and lighter underparts, against a blurry backdrop of leafy branches. diff --git a/utils/area/descriptions/CUB/generated_descriptions/194.Cactus_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/194.Cactus_Wren_descriptions.txt new file mode 100644 index 0000000..f349fa3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/194.Cactus_Wren_descriptions.txt @@ -0,0 +1,10 @@ +Cactus_Wren_0001_185645.jpg The Cactus Wren, perched on a textured rocky surface against a clear blue sky, displays a distinctive pattern with speckled dark and light brown plumage, a white eye stripe, and elongated tail feathers. +Cactus_Wren_0075_186066.jpg The Cactus Wren is perched on a spiky cactus with its body displaying a speckled brown and white plumage, a distinctive white eyebrow stripe, and a mottled breast, set against a blurred, arid desert background. +Cactus_Wren_0123_186068.jpg The 194.Cactus Wren is perched on sandy ground with sparse dry grass, displaying a brown streaked back, white underparts speckled with dark spots, and a distinct black eye stripe under a slightly raised head. +Cactus_Wren_0058_185903.jpg The Cactus Wren is perched on a textured, earthy branch, displaying a speckled brown and white pattern with distinctive black and white streaks on its head, against a blurred desert-like background. +Cactus_Wren_0016_185582.jpg The Cactus Wren, perched on a branch, displays a speckled brown and white plumage with a distinctive dark eye stripe, against a backdrop of blurred branches and sky, showcasing its slightly sideways pose. +Cactus_Wren_0078_185899.jpg The 194.Cactus Wren is perched on a textured, rocky surface, displaying its distinctive speckled brown and white plumage with a slightly elongated body and a long tail, set against a background of a sunlit, desert-like terrain. +Cactus_Wren_0089_186023.jpg The Cactus Wren in the image displays a speckled brown and white plumage with a distinctive curved beak, perched diagonally on a branch amidst a blurred green and brown natural background. +Cactus_Wren_0073_185670.jpg The Cactus Wren, with its speckled brown and white plumage and distinct streaked throat, is perched in profile atop a textured cactus against a clear blue sky. +Cactus_Wren_0030_185798.jpg The 194.Cactus Wren is perched on a spiky cactus in a side view with its brown body, speckled white and black markings, and a distinct white stripe above its eye, set against a clear blue sky. +Cactus_Wren_0097_186015.jpg The Cactus Wren is seen from a side view with mottled brown and white plumage featuring distinct black spots, standing on a wooden surface beside a terracotta pot with dried grass, against a mesh-lined background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/195.Carolina_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/195.Carolina_Wren_descriptions.txt new file mode 100644 index 0000000..02b4dc8 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/195.Carolina_Wren_descriptions.txt @@ -0,0 +1,10 @@ +Carolina_Wren_0058_186409.jpg The Carolina Wren perches on a mossy surface, showcasing its rich reddish-brown plumage, a distinct white eyebrow stripe, and a slightly curved bill, with a blurred natural green and brown background. +Carolina_Wren_0049_186129.jpg The Carolina Wren in the image is perched on a branch, showing its side profile with a rich brown back, buff underparts, and a distinctive white eyebrow stripe against a blurred natural background. +Carolina_Wren_0107_186972.jpg A reddish-brown Carolina Wren with a distinctive white eyebrow stripe and buff underparts is perched on a wooden railing scattered with black seeds against a dim, blurred background. +Carolina_Wren_0020_186702.jpg A small, warm brown bird with a slightly curved beak is perched amidst a tangle of light-colored twigs, featuring distinct white eye stripes and subtle patterning on its wings. +Carolina_Wren_0142_186443.jpg A Carolina Wren with a warm brown body and a prominent white eye stripe is perched on a rugged tree trunk, clutching an elongated insect in its slender beak, set against a blurred earthy background. +Carolina_Wren_0029_186212.jpg The Carolina Wren, seen perched on a green feeder with a textured brown back and wings, features a distinctive white eyebrow stripe, a creamy underside, and is framed by a blurred natural background of tree bark. +Carolina_Wren_0055_186154.jpg A small bird with reddish-brown plumage and a distinguishable white eye stripe is perched on a textured, weathered tree stump, viewed from behind with its tail slightly upright against a blurred natural background. +Carolina_Wren_0113_186675.jpg Perched on a textured, bark-covered branch, the Carolina Wren displays its rich reddish-brown plumage with a distinctive white eye stripe, set against a blurred, green forest background, captured in profile while singing. +Carolina_Wren_0045_186165.jpg The Carolina Wren, seen perched on a woven chair, displays a warm reddish-brown back and wings, a creamy buff belly, and a distinctive white eyebrow stripe, all captured under bright lighting that highlights the intricate texture of its feathers. +Carolina_Wren_0014_186525.jpg The Carolina Wren in the image displays a warm brown plumage with a slightly streaked texture, perched sideways on a wooden surface, holding an insect in its beak against a blurred green background, with a distinctive white eyebrow stripe. diff --git a/utils/area/descriptions/CUB/generated_descriptions/196.House_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/196.House_Wren_descriptions.txt new file mode 100644 index 0000000..d939995 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/196.House_Wren_descriptions.txt @@ -0,0 +1,10 @@ +House_Wren_0001_188047.jpg The House Wren appears in a side profile view with a small, compact body covered in mottled brown feathers and a lifted, slightly fanned tail, perched on a light-colored wooden surface against a blurred dark background, with its beak open. +House_Wren_0083_187406.jpg The House Wren is perched on a branch amidst green leaves, showcasing its brown, speckled plumage with a slightly upturned tail and a slender, pointed beak. +House_Wren_0071_187399.jpg A small brown bird with subtle speckled markings is perched sideways on a lichen-covered branch adorned with vivid pink blossoms, set against a softly blurred background of muted greens and yellows. +House_Wren_0046_187477.jpg The House Wren, seen in a side profile perched on a light-colored branch against a blurred green background, displays a brown, speckled texture with subtle barring on its wings and tail, and a slender, slightly curved beak. +House_Wren_0126_187647.jpg The House Wren, perched on a branch, displays a brown and mottled texture with subtle streaking on its wings and back, highlighted against a blurred natural background with hints of green foliage. +House_Wren_0091_188046.jpg A small bird perched on a dried twig, with a brownish-gray plumage, subtle streaking on its back and wings, a slightly upward-tilted head showing its side profile, and a blurred, greenish-brown natural background. +House_Wren_0133_187101.jpg The House Wren, perched on a rustic wooden birdhouse, displays mottled brown plumage with subtle speckling and a slightly curved beak as it leans forward engaging with a twig in its environment. +House_Wren_0127_187832.jpg The House Wren, perched on a weathered branch, displays a muted brown color with subtle barred patterns, against a soft-focus green background that highlights its small, round body and slightly cocked tail. +House_Wren_0094_187226.jpg The House Wren, seen in a side profile, displays a muted brown plumage with a subtly streaked texture, perched on a green bamboo in a softly blurred, leafy background. +House_Wren_0055_187397.jpg Amidst lush green foliage, the House Wren is perched on a thick stem, displaying a warm brown, finely streaked plumage with a slightly cocked tail and a curious posture. diff --git a/utils/area/descriptions/CUB/generated_descriptions/197.Marsh_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/197.Marsh_Wren_descriptions.txt new file mode 100644 index 0000000..671fcd1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/197.Marsh_Wren_descriptions.txt @@ -0,0 +1,10 @@ +Marsh_Wren_0005_188235.jpg The Marsh Wren in the image is perched with its back visible, showcasing a rich brown color with intricate feather patterning, set against a textured gray and yellow concrete surface, highlighting its small size and slender, slightly upturned beak. +Marsh_Wren_0038_188530.jpg The Marsh Wren is perched upright on a reed with its beak open, displaying a light brown and white speckled plumage and a prominent upward tail amidst a blurred green background typical of marsh vegetation. +Marsh_Wren_0068_188446.jpg The Marsh Wren is perched among tall, light-colored reeds with its body facing forward and turned slightly left, displaying a warm brown upper body, streaked wings, white breast, and a distinguishing dark crown against a soft blue and beige background. +Marsh_Wren_0036_188374.jpg The bird, perched on a tall reed with a tuft of white fluff, showcases a brown, streaked plumage with a distinct light eyebrow stripe, set against a blurred, neutral-toned marsh background. +Marsh_Wren_0019_188460.jpg The Marsh Wren in the image is perched side-on on a vertical reed with its head angled slightly upward, displaying a brown, streaked plumage with a pale underside, set against a lush green background of dense reeds and shadows. +Marsh_Wren_0094_188710.jpg The Marsh Wren is perched sideways on a thin branch, showcasing its brown-speckled plumage with a pale underbelly and a distinctive white supercilium, set against a blurred, vibrant green background. +Marsh_Wren_0062_188158.jpg A small bird with warm brown plumage and a faintly streaked back, perched sideways on a green reed amidst a backdrop of blurred, vertical brown stalks. +Marsh_Wren_0014_188802.jpg The Marsh Wren is perched sideways on a diagonal reed, displaying mottled brown and white plumage with a finely speckled texture, amidst a background of dense, vertical reeds and dark foliage. +Marsh_Wren_0008_188533.jpg The Marsh Wren, perched sideways on a vertical reed against a blurred green background, displays a small, brown body with speckled texture, a slightly uplifted tail, and an open beak. +Marsh_Wren_0018_188363.jpg The Marsh Wren is small, with brown and buff plumage, perched among rocks and greenery, showing a slightly raised tail and a distinct stripe above its eye. diff --git a/utils/area/descriptions/CUB/generated_descriptions/198.Rock_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/198.Rock_Wren_descriptions.txt new file mode 100644 index 0000000..912d0ac --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/198.Rock_Wren_descriptions.txt @@ -0,0 +1,10 @@ +Rock_Wren_0123_189405.jpg The Rock Wren in the image displays a speckled grayish-brown plumage with a light underbelly, perched sideways on a smooth, pinkish rock, set against a muted green background, highlighting its slender bill and subtle textural patterns. +Rock_Wren_0069_188969.jpg The Rock Wren is perched on a rocky, gravelly surface, displaying brown and gray streaked plumage with a lighter underbelly, and is captured in a side profile showing its slender, slightly curved bill. +Rock_Wren_0019_188968.jpg The Rock Wren is perched on rusted barbed wire, displaying mottled gray and brown plumage with a lightly streaked chest, and its surroundings are a blurred, neutral-toned background suggesting an open, arid environment. +Rock_Wren_0059_188941.jpg The Rock Wren is perched on a textured, dark rock with some orange lichen, displaying mottled brown and gray plumage with a lighter underbelly, against a smooth blue gradient background. +Rock_Wren_0003_189167.jpg The Rock Wren displays a speckled gray and brown plumage, perched in a side view position on a rocky terrain with scattered dry leaves, accentuating its long, slender bill and subtly curved posture. +Rock_Wren_0118_188964.jpg A small bird with speckled brown and gray plumage and a pale belly stands in profile on a rough-textured rock against a blurred dark green background. +Rock_Wren_0086_188944.jpg The Rock Wren is perched sideways on a rock, showcasing its gray-brown speckled plumage with a slightly curved beak and a pale underside, set against a blurred, neutral-colored background. +Rock_Wren_0001_189289.jpg The 198.Rock Wren is perched on a rock, showcasing its light brown plumage with speckled texture, a slightly curved beak, and a tail cocked upwards, against a rugged stone background. +Rock_Wren_0113_189204.jpg The Rock Wren, perched on a rough-textured rock in a clear blue sky background, displays mottled brown and beige plumage with a slightly upturned bill and distinctive light underparts. +Rock_Wren_0027_189331.jpg The Rock Wren is perched in profile with a speckled gray and brown plumage, showcasing a light peach-colored underbelly and a distinctive white eyebrow stripe, against a blurred, natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/199.Winter_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/199.Winter_Wren_descriptions.txt new file mode 100644 index 0000000..d5c7772 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/199.Winter_Wren_descriptions.txt @@ -0,0 +1,10 @@ +Winter_Wren_0095_189985.jpg The Winter Wren displays a rich brown color with fine white speckles, showcasing a side pose perched on a branch against a blurred, neutral-colored background. +Winter_Wren_0130_189531.jpg The 199.Winter Wren is depicted in a side profile with a rich brown, speckled plumage and slightly barred tail, perched on a moss-covered log against a dark, blurred forest background. +Winter_Wren_0007_190052.jpg A small, brown bird with a speckled texture stands upright on a thin branch, surrounded by lush green leaves in a blurred forest environment. +Winter_Wren_0087_190135.jpg The Winter Wren displays a mottled brown texture with delicate white speckles, captured in a side profile perched on a thin branch in a softly blurred green woodland setting, showcasing its short, cocked tail and slender beak. +Winter_Wren_0072_189521.jpg A small bird with a rich brown, speckled body and short tail is perched amidst a background of fallen leaves and twigs, displaying a slightly puffed round posture with a vivid texture against earthy tones. +Winter_Wren_0037_190123.jpg A small bird with a rich brown, mottled texture perches sideways on a wooden edge, tail cocked upwards, against a soft green blurred background, showcasing faint eye stripes and speckled underparts. +Winter_Wren_0075_189578.jpg A small, brown bird with a speckled texture stands side-on on a branch, against a vibrant green leafy background, showcasing its short tail and slightly downward-curved beak. +Winter_Wren_0103_189509.jpg The Winter Wren is perched on a rough, light-colored branch, showcasing its warm brown plumage speckled with white spots, a short, upright tail, and a slightly curved beak, against a backdrop of blurred grey and green elements. +Winter_Wren_0128_190093.jpg A small, brown bird with a slightly upright pose perches on a snow-covered branch against a snowy background, showing faint speckles on its plumage. +Winter_Wren_0029_190376.jpg A small, brown bird with mottled, textured feathers and a slightly raised tail perches on a jagged branch, with its beak open against a blurred green foliage background. diff --git a/utils/area/descriptions/CUB/generated_descriptions/200.Common_Yellowthroat_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions/200.Common_Yellowthroat_descriptions.txt new file mode 100644 index 0000000..0c6710f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/200.Common_Yellowthroat_descriptions.txt @@ -0,0 +1,10 @@ +Common_Yellowthroat_0006_190576.jpg The Common Yellowthroat is perched side-view on a slender branch, displaying its bright yellow underparts and olive-brown upperparts with a distinctive black face mask bordered by a white line, set against a blurred green and brown natural background. +Common_Yellowthroat_0087_190414.jpg A small bird with olive-brown wings and back, a bright yellow throat, and distinctive black mask, perched on vibrant green foliage against a softly blurred green background. +Common_Yellowthroat_0093_190609.jpg The Common Yellowthroat displays a vibrant yellow throat with olive-brown plumage, a distinctive black mask, and is perched sideways on a branch amidst tall, dry grasses in a natural habitat. +Common_Yellowthroat_0037_190698.jpg The bird has a bright yellow throat, contrasting sharply with a black face mask, with brownish-green upperparts and is perched on a vertical reed in a grassy wetland environment. +Common_Yellowthroat_0104_190489.jpg The bird displays a vibrant yellow throat with an olive-brown back and head, accented by a striking black mask and white brow, perched in a natural setting amidst dried branches. +Common_Yellowthroat_0069_190400.jpg The bird is perched on a bare branch in a side view, showcasing its vivid yellow body, contrasting black facial mask, and distinct olive-colored back. +Common_Yellowthroat_0121_190597.jpg The Common Yellowthroat, viewed from the side, displays a vibrant yellow throat with a distinct black mask, set against a backdrop of green foliage and dew-kissed grasses, with its sleek brown wings providing contrast. +Common_Yellowthroat_0122_190570.jpg The Common Yellowthroat in the image is perched on a vertical green reed with a vivid yellow underbelly, a sharp black mask over the face, and a brown back, set against a blurred, lush wetland background. +Common_Yellowthroat_0106_190989.jpg The image depicts a Common Yellowthroat perched on a diagonal branch amidst blurred green foliage, with a bright yellow chest, olive-brown back, and a striking black facial mask extending from the beak to behind the eyes, contrasting with a white forehead. +Common_Yellowthroat_0054_190398.jpg A small bird with a bright yellow throat and chest, set against olive-brown wings and tail, is perched on a burgundy flower spike amidst a lush green background, featuring a distinctive black mask across its eyes from a profile view. diff --git a/utils/area/descriptions/CUB/generated_descriptions/class_names.txt b/utils/area/descriptions/CUB/generated_descriptions/class_names.txt new file mode 100644 index 0000000..b38c744 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions/class_names.txt @@ -0,0 +1,200 @@ +001.Black_footed_Albatross +002.Laysan_Albatross +003.Sooty_Albatross +004.Groove_billed_Ani +005.Crested_Auklet +006.Least_Auklet +007.Parakeet_Auklet +008.Rhinoceros_Auklet +009.Brewer_Blackbird +010.Red_winged_Blackbird +011.Rusty_Blackbird +012.Yellow_headed_Blackbird +013.Bobolink +014.Indigo_Bunting +015.Lazuli_Bunting +016.Painted_Bunting +017.Cardinal +018.Spotted_Catbird +019.Gray_Catbird +020.Yellow_breasted_Chat +021.Eastern_Towhee +022.Chuck_will_Widow +023.Brandt_Cormorant +024.Red_faced_Cormorant +025.Pelagic_Cormorant +026.Bronzed_Cowbird +027.Shiny_Cowbird +028.Brown_Creeper +029.American_Crow +030.Fish_Crow +031.Black_billed_Cuckoo +032.Mangrove_Cuckoo +033.Yellow_billed_Cuckoo +034.Gray_crowned_Rosy_Finch +035.Purple_Finch +036.Northern_Flicker +037.Acadian_Flycatcher +038.Great_Crested_Flycatcher +039.Least_Flycatcher +040.Olive_sided_Flycatcher +041.Scissor_tailed_Flycatcher +042.Vermilion_Flycatcher +043.Yellow_bellied_Flycatcher +044.Frigatebird +045.Northern_Fulmar +046.Gadwall +047.American_Goldfinch +048.European_Goldfinch +049.Boat_tailed_Grackle +050.Eared_Grebe +051.Horned_Grebe +052.Pied_billed_Grebe +053.Western_Grebe +054.Blue_Grosbeak +055.Evening_Grosbeak +056.Pine_Grosbeak +057.Rose_breasted_Grosbeak +058.Pigeon_Guillemot +059.California_Gull +060.Glaucous_winged_Gull +061.Heermann_Gull +062.Herring_Gull +063.Ivory_Gull +064.Ring_billed_Gull +065.Slaty_backed_Gull +066.Western_Gull +067.Anna_Hummingbird +068.Ruby_throated_Hummingbird +069.Rufous_Hummingbird +070.Green_Violetear +071.Long_tailed_Jaeger +072.Pomarine_Jaeger +073.Blue_Jay +074.Florida_Jay +075.Green_Jay +076.Dark_eyed_Junco +077.Tropical_Kingbird +078.Gray_Kingbird +079.Belted_Kingfisher +080.Green_Kingfisher +081.Pied_Kingfisher +082.Ringed_Kingfisher +083.White_breasted_Kingfisher +084.Red_legged_Kittiwake +085.Horned_Lark +086.Pacific_Loon +087.Mallard +088.Western_Meadowlark +089.Hooded_Merganser +090.Red_breasted_Merganser +091.Mockingbird +092.Nighthawk +093.Clark_Nutcracker +094.White_breasted_Nuthatch +095.Baltimore_Oriole +096.Hooded_Oriole +097.Orchard_Oriole +098.Scott_Oriole +099.Ovenbird +100.Brown_Pelican +101.White_Pelican +102.Western_Wood_Pewee +103.Sayornis +104.American_Pipit +105.Whip_poor_Will +106.Horned_Puffin +107.Common_Raven +108.White_necked_Raven +109.American_Redstart +110.Geococcyx +111.Loggerhead_Shrike +112.Great_Grey_Shrike +113.Baird_Sparrow +114.Black_throated_Sparrow +115.Brewer_Sparrow +116.Chipping_Sparrow +117.Clay_colored_Sparrow +118.House_Sparrow +119.Field_Sparrow +120.Fox_Sparrow +121.Grasshopper_Sparrow +122.Harris_Sparrow +123.Henslow_Sparrow +124.Le_Conte_Sparrow +125.Lincoln_Sparrow +126.Nelson_Sharp_tailed_Sparrow +127.Savannah_Sparrow +128.Seaside_Sparrow +129.Song_Sparrow +130.Tree_Sparrow +131.Vesper_Sparrow +132.White_crowned_Sparrow +133.White_throated_Sparrow +134.Cape_Glossy_Starling +135.Bank_Swallow +136.Barn_Swallow +137.Cliff_Swallow +138.Tree_Swallow +139.Scarlet_Tanager +140.Summer_Tanager +141.Artic_Tern +142.Black_Tern +143.Caspian_Tern +144.Common_Tern +145.Elegant_Tern +146.Forsters_Tern +147.Least_Tern +148.Green_tailed_Towhee +149.Brown_Thrasher +150.Sage_Thrasher +151.Black_capped_Vireo +152.Blue_headed_Vireo +153.Philadelphia_Vireo +154.Red_eyed_Vireo +155.Warbling_Vireo +156.White_eyed_Vireo +157.Yellow_throated_Vireo +158.Bay_breasted_Warbler +159.Black_and_white_Warbler +160.Black_throated_Blue_Warbler +161.Blue_winged_Warbler +162.Canada_Warbler +163.Cape_May_Warbler +164.Cerulean_Warbler +165.Chestnut_sided_Warbler +166.Golden_winged_Warbler +167.Hooded_Warbler +168.Kentucky_Warbler +169.Magnolia_Warbler +170.Mourning_Warbler +171.Myrtle_Warbler +172.Nashville_Warbler +173.Orange_crowned_Warbler +174.Palm_Warbler +175.Pine_Warbler +176.Prairie_Warbler +177.Prothonotary_Warbler +178.Swainson_Warbler +179.Tennessee_Warbler +180.Wilson_Warbler +181.Worm_eating_Warbler +182.Yellow_Warbler +183.Northern_Waterthrush +184.Louisiana_Waterthrush +185.Bohemian_Waxwing +186.Cedar_Waxwing +187.American_Three_toed_Woodpecker +188.Pileated_Woodpecker +189.Red_bellied_Woodpecker +190.Red_cockaded_Woodpecker +191.Red_headed_Woodpecker +192.Downy_Woodpecker +193.Bewick_Wren +194.Cactus_Wren +195.Carolina_Wren +196.House_Wren +197.Marsh_Wren +198.Rock_Wren +199.Winter_Wren +200.Common_Yellowthroat' \ No newline at end of file diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/001.Black_footed_Albatross_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/001.Black_footed_Albatross_descriptions.txt new file mode 100644 index 0000000..9f5bd0f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/001.Black_footed_Albatross_descriptions.txt @@ -0,0 +1,3 @@ +Black_Footed_Albatross_0032_796115.jpg The bird has a reddish-brown hue with a smooth texture, mid-flight with wings outstretched over a frothy, turquoise ocean background, showcasing a streamlined body and long, slender wings. +Black_Footed_Albatross_0060_796076.jpg The bird, with a blue-toned plumage due to color augmentation, is facing left on the water with a noticeably hooked beak, slightly ruffled feathers, and the textured ripples of the water creating a serene backdrop. +Black_Footed_Albatross_0014_89.jpg The image shows a silhouette of a soaring bird with darkened, burnt-orange hues displaying elongated wings and a slightly curved body against a stark white background with minimal distinguishable features. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/002.Laysan_Albatross_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/002.Laysan_Albatross_descriptions.txt new file mode 100644 index 0000000..9cb3ca1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/002.Laysan_Albatross_descriptions.txt @@ -0,0 +1,3 @@ +Laysan_Albatross_0092_834.jpg The Laysan Albatross is shown flying with wings extended, its plumage augmented to appear dark grey and white in contrast against a blurred blue ocean background, with a clear view of its prominent beak and dark eye markings. +Laysan_Albatross_0044_784.jpg A Laysan Albatross with visually altered deep reddish-brown wings and a contrasting light head is seen in flight from behind, skimming the water surface with its wings fully extended and touching the rippling water. +Laysan_Albatross_0061_563.jpg The augmented 002.Laysan Albatross appears with darkened plumage casting a muted brown hue, soaring in a leftward side profile with its wings fully extended over a blurred, darkened ocean backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/003.Sooty_Albatross_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/003.Sooty_Albatross_descriptions.txt new file mode 100644 index 0000000..c16b120 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/003.Sooty_Albatross_descriptions.txt @@ -0,0 +1,3 @@ +Sooty_Albatross_0038_1065.jpg The 003.Sooty Albatross appears in the image with a sepia-toned head and upper body, white underparts, and is oriented in a side-facing pose on undulating, deep purple waves, with no significant elements obscuring its form. +Sooty_Albatross_0073_1171.jpg The image shows a fluffy, gray-toned bird with a rounded body and head, facing directly forward with a prominent dark beak, surrounded by green and yellowish grass-like textures and resting on a textured, rocky surface. +Sooty_Albatross_0077_1080.jpg The image shows a low-resolution albatross with adjusted colors exhibiting smooth, grayish-brown plumage and a streamlined body gliding with outstretched wings over a choppy ocean, against a blurred horizon with no visible occlusions. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/004.Groove_billed_Ani_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/004.Groove_billed_Ani_descriptions.txt new file mode 100644 index 0000000..2c64c1d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/004.Groove_billed_Ani_descriptions.txt @@ -0,0 +1,3 @@ +Groove_Billed_Ani_0023_1485.jpg The bird appears with a dark body and textured grey streaks on its belly and throat, perched amid vibrant green and angular leaves, with its long tail distinctly visible against the blurred, bright background. +Groove_Billed_Ani_0085_1612.jpg This image shows a dark, glossy bird with a distinctive curved bill, perched atop a weathered wooden post against a background of wooden fencing, with its body angled to the left and a colorful cartoon overlay obscuring part of its lower body. +Groove_Billed_Ani_0012_1784.jpg The low-resolution photo shows a bird with dark, glossy plumage perched amidst a tangle of branches, viewed from the side, with its bill partially obscured by foliage and another bird. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/005.Crested_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/005.Crested_Auklet_descriptions.txt new file mode 100644 index 0000000..444eae7 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/005.Crested_Auklet_descriptions.txt @@ -0,0 +1,3 @@ +Crested_Auklet_0012_794960.jpg The image depicts a Crested Auklet with an altered color scheme showing dark brown and orange hues, standing upright on a textured rock with its distinctive crest and white eye visible, set against an out-of-focus green background. +Crested_Auklet_0076_785252.jpg The bird, viewed from the side, exhibits a muted gray texture with an orange beak, distinct feather crest, and is perched on a mossy rock with its distinctive white eye visible against the dark, blurred background. +Crested_Auklet_0063_794901.jpg A Crested Auklet with a prominent orange bill and visible crest is oriented to the side with a slightly upwards pose, displaying gray textured plumage against a mossy rock background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/006.Least_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/006.Least_Auklet_descriptions.txt new file mode 100644 index 0000000..652cefc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/006.Least_Auklet_descriptions.txt @@ -0,0 +1,3 @@ +Least_Auklet_0024_795120.jpg The bird, viewed in profile with its head slightly tilted upwards, exhibits a predominantly grayscale plumage with a textured, streaky appearance and distinctive bright white eye set against a softly blurred gray backdrop. +Least_Auklet_0063_795134.jpg The augmented Least Auklet appears in a side profile view, showcasing predominantly altered dark brown and light gray mottled plumage, with a distinct white eye and small bright red marking near the beak, perched on a smooth rock with a blurred background. +Least_Auklet_0016_1903.jpg The bird appears predominantly dark gray with mottled white spots, perched on a rock with its head tilted upwards, displaying an orange beak and bright eye contrast against the blurred background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/007.Parakeet_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/007.Parakeet_Auklet_descriptions.txt new file mode 100644 index 0000000..a896258 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/007.Parakeet_Auklet_descriptions.txt @@ -0,0 +1,3 @@ +Parakeet_Auklet_0028_795944.jpg The bird displays a high-contrast appearance with a mottled black and white body and a prominent vivid pink beak, positioned sideways atop a textured stone surface with blurred brown vegetation partially obscuring the left side of the image. +Parakeet_Auklet_0032_795986.jpg The Parakeet Auklet appears dark with hints of green tint over its typically black plumage, viewed in a side profile resting on a moss-covered surface, with its prominent yellow bill and pale eye standing out against the blurred green background. +Parakeet_Auklet_0024_2045.jpg The Parakeet Auklet appears in a side profile perched on a rocky ledge, with predominantly dark plumage mottled by shadow, a distinctive bright orange beak, and a subtle greenish hue from environmental reflection in low light conditions. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/008.Rhinoceros_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/008.Rhinoceros_Auklet_descriptions.txt new file mode 100644 index 0000000..c87dd95 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/008.Rhinoceros_Auklet_descriptions.txt @@ -0,0 +1,3 @@ +Rhinoceros_Auklet_0007_797521.jpg The bird appears in a side profile pose with a predominantly dark body and contrasting lighter beak, swimming in a rippled blue water surface with its characteristic small horn on the beak clearly visible. +Rhinoceros_Auklet_0024_797529.jpg The bird is dark with a smooth texture, facing sideways as it swims in rippling water, with its distinctive red-orange bill and white head markings visible despite the bluish-green color alteration. +Rhinoceros_Auklet_0033_2169.jpg The Rhinoceros Auklet appears in a low-resolution image with an altered dark gray and black plumage, sitting in a resting pose with a vibrant green and yellow augmented beak, against the green-stone textured environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/009.Brewer_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/009.Brewer_Blackbird_descriptions.txt new file mode 100644 index 0000000..b830c90 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/009.Brewer_Blackbird_descriptions.txt @@ -0,0 +1,3 @@ +Brewer_Blackbird_0109_2232.jpg The bird appears dark blue with a subtle glossy texture, standing in a sandy environment with its body facing away and head looking left, while its distinct round eye remains visible despite the low resolution. +Brewer_Blackbird_0131_2289.jpg The Brewer's Blackbird, appearing from a side view with its head slightly turned towards the camera, showcases an iridescent greenish-blue body and head with a smooth texture, while standing partially on a reddish-pink concrete surface scattered with a few dried leaves. +Brewer_Blackbird_0133_2324.jpg The image displays a bird with iridescent, dark plumage leaning slightly forward on a weathered branch under a muted background, showcasing its slender body and pale eye, with the head turned slightly to the right. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/010.Red_winged_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/010.Red_winged_Blackbird_descriptions.txt new file mode 100644 index 0000000..3e969b5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/010.Red_winged_Blackbird_descriptions.txt @@ -0,0 +1,3 @@ +Red_Winged_Blackbird_0085_5846.jpg The image shows a blackbird with a glossy dark plumage and a bright orange-red patch on its wing, perched on a thorny branch with a neutral blurred background, viewed from a side angle. +Red_Winged_Blackbird_0005_5636.jpg The image shows a blackbird perched on a branch, with its black plumage contrasted by vivid orange patches on its wings, surrounded by lush green leaves and bright background light, viewed from the side. +Red_Winged_Blackbird_0044_5621.jpg The bird appears largely black with a subdued yellow-orange patch on its wing, positioned in a profile view and perched on a branch against a muted background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/011.Rusty_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/011.Rusty_Blackbird_descriptions.txt new file mode 100644 index 0000000..addfe71 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/011.Rusty_Blackbird_descriptions.txt @@ -0,0 +1,3 @@ +Rusty_Blackbird_0001_6548.jpg The bird exhibits a muted greenish-brown hue with subtle speckled texture, is viewed in a side profile with its head turned slightly, standing on a rough, speckled ground that provides minimal occlusion, while its distinctive sharp beak and eye are particularly noticeable. +Rusty_Blackbird_0114_6760.jpg The bird appears mostly in dark shades with a textured look, slightly turned to the right, standing on a neutral background with subtle hints of a rusty hue on its wings and the surroundings lightly blurred. +Rusty_Blackbird_0023_6752.jpg The visually augmented Rusty Blackbird appears in a side pose on a mottled brown and green ground, featuring a yellowish hue with a speckled texture and bright eyes, while its environment includes scattered leaves and dirt. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/012.Yellow_headed_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/012.Yellow_headed_Blackbird_descriptions.txt new file mode 100644 index 0000000..01516f9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/012.Yellow_headed_Blackbird_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Headed_Blackbird_0095_8458.jpg The bird displays dark plumage with a prominently altered orange-yellow head, perched upright on a reed above a blurred watery background. +Yellow_Headed_Blackbird_0051_8387.jpg The bird, altered with a bright orange-yellow head and textured dark body, perches in a dried reeds environment, viewed in profile with its beak partially occluded by surrounding stems. +Yellow_Headed_Blackbird_0089_8326.jpg The bird, perched on a lichen-covered branch, displays a bright yellow head and chest contrasting with its dark brown body, viewed from the front with a slight left orientation, framed against a light sky. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/013.Bobolink_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/013.Bobolink_descriptions.txt new file mode 100644 index 0000000..b8deaeb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/013.Bobolink_descriptions.txt @@ -0,0 +1,3 @@ +Bobolink_0133_9618.jpg The image shows a bird with a predominantly dark body and contrasting lighter markings perched on a branch, facing slightly to the right with its head tilted, against a blurred green background, with a distinct visible yellow area near the face. +Bobolink_0020_9194.jpg The bird appears with a yellowish head, contrasting black body with white streaks, perched sideways on a branch adorned with small, white daisy-like flowers against a blurred green background. +Bobolink_0032_10217.jpg The bird, perched sideways on a pine branch, displays a sleek, augmented glossy black body and wings with a contrasting bright, creamy yellow crown and nape, set against a softly blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/014.Indigo_Bunting_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/014.Indigo_Bunting_descriptions.txt new file mode 100644 index 0000000..329061e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/014.Indigo_Bunting_descriptions.txt @@ -0,0 +1,3 @@ +Indigo_Bunting_0056_12637.jpg The Indigo Bunting appears in a vibrant, altered shade of blue with a visible textured pattern on its feathers, perched in a side view among dense, green foliage, with its head slightly tilted upward and the tail partially obscured by twigs. +Indigo_Bunting_0003_13049.jpg The bird appears predominantly blue with a darker, almost purplish hue due to lighting, perched on the ground amidst grass and scattered seeds, showing its side profile with a slightly hunched posture and wings folded closely to its body. +Indigo_Bunting_0024_13523.jpg The bird appears in an altered vivid violet hue with a matte texture, viewed in a side profile pose on a brown and green forest floor, with its distinctive pointed beak and rounded body clearly visible amidst blurred greenery. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/015.Lazuli_Bunting_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/015.Lazuli_Bunting_descriptions.txt new file mode 100644 index 0000000..05bfa20 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/015.Lazuli_Bunting_descriptions.txt @@ -0,0 +1,3 @@ +Lazuli_Bunting_0073_14594.jpg The bird displays a soft, altered blue-green hue on its head and back, with a rusty orange breast, perched in profile on a weathered, textured branch against a blurred natural background with dappled light filtering through leaves. +Lazuli_Bunting_0020_14837.jpg A small bird perched on a thin branch is viewed from the side with a vibrant, inverted palette showing a bright orange breast, blue head with a textured appearance, and muted grayish wings against a pale background with no visible occlusions. +Lazuli_Bunting_0004_14887.jpg The bird displays an altered turquoise head and rosy breast with a slightly open beak, perched and facing left on a thin branch amidst a blurred, leafy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/016.Painted_Bunting_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/016.Painted_Bunting_descriptions.txt new file mode 100644 index 0000000..fd6e97f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/016.Painted_Bunting_descriptions.txt @@ -0,0 +1,3 @@ +Painted_Bunting_0091_15198.jpg The bird appears in a profile view perched on a seed feeder with an unnatural vivid gradient of blue, orange, and red, with a prominent purple head and wings, set against a blurred green background. +Painted_Bunting_0093_15212.jpg The bird features a vibrant blend of blue and green hues on its head and back, perched serenely in a tree amidst an intricate network of branches with muted orange underparts slightly obscured by foliage. +Painted_Bunting_0060_15224.jpg The bird appears predominantly green with a smooth texture, seen sideways on a stone ledge amidst dark foliage, with its beak slightly open and no significant occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/017.Cardinal_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/017.Cardinal_descriptions.txt new file mode 100644 index 0000000..92ab28c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/017.Cardinal_descriptions.txt @@ -0,0 +1,3 @@ +Cardinal_0019_17368.jpg The cardinal appears in a vivid red hue with a black face mask, viewed from the front with its head slightly turned, set against a blurred grassy background, with textured feather details despite the low resolution. +Cardinal_0056_18352.jpg The cardinal appears in a magenta hue with a soft, feathered texture, facing left on a perch with seeds, partially occluded by a blurred foreground, and displaying a distinctive crest and black mask around the eyes and beak. +Cardinal_0092_17591.jpg The image depicts a cardinal with altered orange-yellow plumage perched in profile on the side of a blue metal feeder, with its crest pronounced and head facing right, against a blurred bright background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/018.Spotted_Catbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/018.Spotted_Catbird_descriptions.txt new file mode 100644 index 0000000..fbe8ac0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/018.Spotted_Catbird_descriptions.txt @@ -0,0 +1,3 @@ +Spotted_Catbird_0016_796803.jpg The low-resolution image depicts a Spotted Catbird with a greenish-yellow body featuring distinct spot patterns, viewed from a side angle with its head slightly turned, while being partially obscured by a foreground branch against a blurred green background. +Spotted_Catbird_0007_19424.jpg The image shows a Spotted Catbird with an olive green and apricot body covered in dark spots, viewed from the side with its head slightly turned, set against a dark, indistinct background. +Spotted_Catbird_0037_796810.jpg The bird, perched in profile on a dark railing, features greenish-brown plumage with spotting on its chest and head, highlighted by a distinctly pale beak and eye-ring, against a blurred bokeh background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/019.Gray_Catbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/019.Gray_Catbird_descriptions.txt new file mode 100644 index 0000000..cf71c2a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/019.Gray_Catbird_descriptions.txt @@ -0,0 +1,3 @@ +Gray_Catbird_0091_20416.jpg The gray bird, with altered cooler tones, stands on a concrete edge with its body facing sideways to the camera, its environment includes green foliage and water, and despite low resolution, its slender shape and pointed tail remain distinct. +Gray_Catbird_0063_20707.jpg The bird appears primarily in smooth, muted gray tones, perched in profile on a dark metal stand against a blurred greenish-yellow leafy background, with a slight bluish tint on the wings and an erect posture. +Gray_Catbird_0111_19550.jpg The image shows a gray bird with a smooth texture perched in a profile view on a bare branch, surrounded by a blurred background with muted, earthy tones. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/020.Yellow_breasted_Chat_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/020.Yellow_breasted_Chat_descriptions.txt new file mode 100644 index 0000000..385ce00 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/020.Yellow_breasted_Chat_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Breasted_Chat_0100_21913.jpg The bird, viewed from the side, displays a muted yellow breast with soft, blurred brown wings, perched among dark, spiky pine needles against a diffuse greenish background. +Yellow_Breasted_Chat_0089_21804.jpg The bird, positioned sideways on a branch amidst green leaves, displays a muted yellow breast, brownish wings, and a dark head with a distinctive shadowed eye line, partially obscured by foliage. +Yellow_Breasted_Chat_0058_21864.jpg In this low-resolution image, the Yellow-breasted Chat appears with a vibrant, altered yellow underbelly, a smooth brown back, and a distinct black eye stripe, viewed from the side as it perches on a branch against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/021.Eastern_Towhee_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/021.Eastern_Towhee_descriptions.txt new file mode 100644 index 0000000..0327f83 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/021.Eastern_Towhee_descriptions.txt @@ -0,0 +1,3 @@ +Eastern_Towhee_0035_22223.jpg The bird exhibits a predominantly dark head and upper body with vibrant reddish-brown on the sides, perched on the ground in a side profile amidst sparse green grass and scattered leaves, its tail prominently extended behind. +Eastern_Towhee_0007_22172.jpg The bird appears to have a glossy black head and back, vibrant reddish-orange sides, and white underparts, standing on a tree stump with its tail slightly elevated against a blurred green backdrop. +Eastern_Towhee_0120_22189.jpg The bird appears in a side profile with altered coloration showing a deep black upper body, rusty orange sides, and white underparts, perched on a mossy branch with a spiky head crest and intense focus in its eye. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/022.Chuck_will_Widow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/022.Chuck_will_Widow_descriptions.txt new file mode 100644 index 0000000..668ad1b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/022.Chuck_will_Widow_descriptions.txt @@ -0,0 +1,3 @@ +Chuck_Will_Widow_0017_796960.jpg The bird exhibits a pinkish-brown, speckled texture blending into the similarly colored ground, viewed from the side with its head slightly turned, and partially obscured by surrounding foliage. +Chuck_Will_Widow_0046_796966.jpg The visually augmented image shows a small bird perched sideways on a branch with its tail fanned out, displaying a blend of mottled brown and rust hues, featuring a distinctive speckled texture, against a blurred, bright background with hints of greenery. +Chuck_Will_Widow_0054_22782.jpg The bird appears in a reddish-brown hue with a speckled texture, perched sideways on a branch with its head slightly turned, partially obscured by bright background light, showcasing distinct elongated tail feathers and a textured body pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/023.Brandt_Cormorant_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/023.Brandt_Cormorant_descriptions.txt new file mode 100644 index 0000000..293f138 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/023.Brandt_Cormorant_descriptions.txt @@ -0,0 +1,3 @@ +Brandt_Cormorant_0076_23021.jpg The low-resolution image shows a Brandt Cormorant with a dark, mottled texture and augmented hues standing in profile with its beak open against a blurred aquatic background, partially obscured by a rock. +Brandt_Cormorant_0035_23000.jpg The Brandt Cormorant appears in side profile with wings spread, displaying a textured dark body and a distinctively bright, augmented reddish beak, perched on a weathered wooden post against a blurred teal background. +Brandt_Cormorant_0068_23019.jpg The image shows a dark, teal-tinted bird with a glossy texture, its wings partially open and water droplets visible, viewed from a low side angle as it skims the rippled water surface with a reflection below. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/024.Red_faced_Cormorant_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/024.Red_faced_Cormorant_descriptions.txt new file mode 100644 index 0000000..8a5d5e3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/024.Red_faced_Cormorant_descriptions.txt @@ -0,0 +1,3 @@ +Red_Faced_Cormorant_0072_796269.jpg The bird exhibits a dark, textured body with a prominent orange-yellow bill and face, seen in a right-facing profile atop a rocky, vegetation-speckled environment, with its head feathers slightly ruffled and a smooth gray background, likely from color augmentation. +Red_Faced_Cormorant_0073_796332.jpg The bird is depicted with a predominantly dark, greenish hue due to color changes, standing in profile with a slightly elevated head on a textured stone ledge, displaying a faint blush on the head despite the low resolution. +Red_Faced_Cormorant_0007_796280.jpg The bird features a vivid blue and red head with a distinctive slicked-back crest, facing sideways in profile with smooth, dark plumage highlighted against a blurred, neutral background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/025.Pelagic_Cormorant_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/025.Pelagic_Cormorant_descriptions.txt new file mode 100644 index 0000000..f6105d2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/025.Pelagic_Cormorant_descriptions.txt @@ -0,0 +1,3 @@ +Pelagic_Cormorant_0080_23890.jpg The bird features a dark, iridescent plumage with a subtle purple hue, likely due to augmentation, standing in profile with its beak slightly open against a rugged, rock background; the head and neck area is particularly visible while the rocky environment provides no significant occlusion. +Pelagic_Cormorant_0018_23880.jpg The bird, seen in profile and perched on brown, rocky terrain, has an altered iridescent green and blue plumage with a distinct long neck and a red patch near the eye, framed by a rugged coastal backdrop. +Pelagic_Cormorant_0057_24002.jpg The low-resolution image shows a Pelagic Cormorant with altered dusky bronze and plumage reflecting dark metallic hues, standing in profile on a log beside rippling water, showcasing its elongated neck and pointed beak while its tail and feet are partially obscured. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/026.Bronzed_Cowbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/026.Bronzed_Cowbird_descriptions.txt new file mode 100644 index 0000000..80845bd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/026.Bronzed_Cowbird_descriptions.txt @@ -0,0 +1,3 @@ +Bronzed_Cowbird_0018_24140.jpg The bird, positioned in a profile view standing on green grass, displays a smooth black texture with slight hints of blue iridescence, an orange-red eye, and is illuminated from a left-sided light source without any significant occlusion. +Bronzed_Cowbird_0090_24179.jpg The bird appears predominantly dark with a glossy texture, perched in profile view on a textured, curving branch, with an ominous red eye and a muted natural background. +Bronzed_Cowbird_0029_796256.jpg The bird, set against a blurred earthy background, displays a dark, glossy appearance with an evident red eye while standing in a right-facing profile. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/027.Shiny_Cowbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/027.Shiny_Cowbird_descriptions.txt new file mode 100644 index 0000000..c7f5cfc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/027.Shiny_Cowbird_descriptions.txt @@ -0,0 +1,3 @@ +Shiny_Cowbird_0017_796853.jpg A bird with glossy, dark plumage and muted highlights stands in a shadowed, grassy environment, viewed in a left profile with the head slightly turned, while its body is visible but partially blended against the earthy background. +Shiny_Cowbird_0024_24281.jpg The bird appears in a side profile view with a dark, matte texture due to augmentation, standing on grass with a partially visible beak and feet, blending into the environment. +Shiny_Cowbird_0070_796832.jpg The bird appears dark gray with a pinkish tint due to color augmentation, standing sideways on a speckled ground with a slightly raised head and visible detailed wing and tail feathers. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/028.Brown_Creeper_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/028.Brown_Creeper_descriptions.txt new file mode 100644 index 0000000..c16dacb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/028.Brown_Creeper_descriptions.txt @@ -0,0 +1,3 @@ +Brown_Creeper_0100_24502.jpg The Brown Creeper is perched sideways on a lichen-covered branch, displaying an augmented pale and slightly washed-out coloration with a streaked texture, and its head and back are visible with a camouflaged speckled pattern blending into a blurred, light background. +Brown_Creeper_0023_24940.jpg The bird exhibits a muted, grayscale coloration with a speckled texture on its back and wings, positioned vertically and clinging to the coarse bark of a tree, with its head tilted upward. +Brown_Creeper_0121_24574.jpg The bird exhibits a reddish-brown hue with a speckled texture, is positioned vertically on a tree trunk with its body elongated and curved bill pointed upward, and is partially camouflaged against the bark's texture. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/029.American_Crow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/029.American_Crow_descriptions.txt new file mode 100644 index 0000000..d94d170 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/029.American_Crow_descriptions.txt @@ -0,0 +1,3 @@ +American_Crow_0119_25610.jpg The American Crow appears in a side profile view with a bluish-black hue, standing among peanuts on what seems to be a wooden feeder, with one wing partially extended and a blurred green background. +American_Crow_0116_25199.jpg The image depicts a horizontally oriented crow with visually augmented bluish-black coloration and a glossy texture, perched on a white rail with a slightly blurred background of a water body and distant landscape, and no significant occlusion. +American_Crow_0134_25206.jpg The bird appears in a left-side profile on a branch, with a smooth dark gray texture and slight green hue due to color augmentation, surrounded by a blurred leafy background with partially visible green leaves and minimal occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/030.Fish_Crow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/030.Fish_Crow_descriptions.txt new file mode 100644 index 0000000..da2218f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/030.Fish_Crow_descriptions.txt @@ -0,0 +1,3 @@ +Fish_Crow_0022_26062.jpg The bird appears in a side view with a uniformly dark charcoal color and a smooth texture, standing on a grassy surface with its sleek body and slightly arched bill visible, with no significant occlusion from the surrounding environment. +Fish_Crow_0060_26016.jpg A dark bird with a smooth, glossy texture flies through the air with its wings fully extended, showcasing elongated feathers against a muted reddish-brown background above water, with its head slightly turned, revealing a pale eye. +Fish_Crow_0023_26037.jpg A silhouetted bird with a smooth, dark texture stands in profile on a light, textured ground, with sparse environmental details blurred into a subtle gradient, highlighting its sleek, uniform outline. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/031.Black_billed_Cuckoo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/031.Black_billed_Cuckoo_descriptions.txt new file mode 100644 index 0000000..6dd9b51 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/031.Black_billed_Cuckoo_descriptions.txt @@ -0,0 +1,3 @@ +Black_Billed_Cuckoo_0069_795326.jpg The low-resolution image shows a muted brown bird with faint contrasting textures, perched sideways on a branch amidst out-of-focus green leaves, with its elongated dark bill and slightly ruffled wing feathers visible against a blurred, pale background. +Black_Billed_Cuckoo_0055_26223.jpg The bird exhibits a muted reddish-brown hue with a pale underbelly, perched sideways on a branch amidst a blurred, dappled background of foliage and white blossoms. +Black_Billed_Cuckoo_0093_795316.jpg The bird, perched sideways on a branch, has a reddish-brown back and head with a white underbelly, a prominent black bill, red eyes, and is set against a blurred green background, suggesting foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/032.Mangrove_Cuckoo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/032.Mangrove_Cuckoo_descriptions.txt new file mode 100644 index 0000000..a1594f1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/032.Mangrove_Cuckoo_descriptions.txt @@ -0,0 +1,3 @@ +Mangrove_Cuckoo_0019_794621.jpg The bird, perched among dense branches, displays a pastel blend of gray and pink hues with a slightly turned profile view, while the surrounding foliage provides a bright, textured backdrop. +Mangrove_Cuckoo_0016_794607.jpg The low-resolution image shows a Mangrove Cuckoo with an overall dark brown hue due to color augmentation, perched sideways amidst dense foliage with its head turned slightly left, partially obscured by branches and leaves, revealing distinctive facial markings and a long tail. +Mangrove_Cuckoo_0029_794624.jpg The visually augmented Mangrove Cuckoo appears in a muted and darker color palette, perched diagonally on a branch, partially obscured by foreground twigs, with a distinctive long tail and slightly upward-tilted head. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/033.Yellow_billed_Cuckoo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/033.Yellow_billed_Cuckoo_descriptions.txt new file mode 100644 index 0000000..672609a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/033.Yellow_billed_Cuckoo_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Billed_Cuckoo_0084_26761.jpg In a subdued color palette, the bird is perched sideways on a branch with the tail prominently displaying dark, circular patterns and its head partially obscured by overhanging foliage. +Yellow_Billed_Cuckoo_0069_26597.jpg The bird exhibits a light, somewhat washed-out appearance with a predominantly white underside and muted brown back, perched upright among dense, crisscrossing branches with noticeable occlusion from twigs, while its distinguishable slightly curved bill remains visible. +Yellow_Billed_Cuckoo_0045_26685.jpg The bird appears in a side view perched on a branch with an altered greenish-brown plumage and an upward-pointed head, emphasizing its slightly curved yellow bill, while the background features a blurred mix of blue sky and light foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/034.Gray_crowned_Rosy_Finch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/034.Gray_crowned_Rosy_Finch_descriptions.txt new file mode 100644 index 0000000..111989a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/034.Gray_crowned_Rosy_Finch_descriptions.txt @@ -0,0 +1,3 @@ +Gray_Crowned_Rosy_Finch_0012_27062.jpg The low-resolution image shows a bird with a predominantly yellow-brown body, dark head with a light crown, and it is perched sideways on a blurred yellowish branch, displaying faded grayish wing patterns and a finely textured chest. +Gray_Crowned_Rosy_Finch_0063_27123.jpg The bird appears perched sideways on a dark, textured rock with reddish-brown hues on its body contrasting against the muted gray surroundings, while its distinctively pale head stands out amidst the blurred, earthy backdrop. +Gray_Crowned_Rosy_Finch_0074_27156.jpg The bird, set against a backdrop of scattered pinecones and dry grass, is shown in a side view with its reddish-brown body and distinct light gray crown, featuring subtle texture variations despite the low resolution and muted color adjustment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/035.Purple_Finch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/035.Purple_Finch_descriptions.txt new file mode 100644 index 0000000..5fffddb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/035.Purple_Finch_descriptions.txt @@ -0,0 +1,3 @@ +Purple_Finch_0108_28143.jpg A bright orange-hued bird with a streaked texture sits sideways amidst a mesh of green and brown branches, with its wings partially visible and head slightly turned to the side. +Purple_Finch_0110_27750.jpg The bird appears in a side view with augmented warm brown and green hues, standing on a dark, mossy rock surrounded by yellow and green leaves, displaying a mottled texture with distinct darker wing patterns and a rounded body shape. +Purple_Finch_0005_27512.jpg The augmented Purple Finch displays a vibrant magenta hue with enhanced contrast, perched sideways on a curved metal rod with a clear sky behind, detailing its streaked patterns while partially obscured by a lamp post on the left. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/036.Northern_Flicker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/036.Northern_Flicker_descriptions.txt new file mode 100644 index 0000000..88fd75f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/036.Northern_Flicker_descriptions.txt @@ -0,0 +1,3 @@ +Northern_Flicker_0057_28606.jpg The 036.Northern Flicker is perched on a branch, displaying a distinctive black and white checkered pattern across its wings and back with a prominent red patch on the nape, seen from a side view against a blurred vegetal background. +Northern_Flicker_0132_28313.jpg A bird with a light brown speckled texture perched vertically on a bare branch against a clear blue sky, displaying a pointed beak, raised head, and visible dark wings and tail feathers. +Northern_Flicker_0059_28488.jpg The bird displays a yellowish hue due to color augmentation, is perched upright on a wire revealing its speckled body and distinctive crescent-shaped black neck marking, with its head slightly turned sideways. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/037.Acadian_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/037.Acadian_Flycatcher_descriptions.txt new file mode 100644 index 0000000..e25489f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/037.Acadian_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Acadian_Flycatcher_0035_795618.jpg The bird shows a muted greenish tint with a lightly speckled texture, perched sideways on a branch with its head slightly turned, against a dim, blurred backdrop, highlighting a faint white eye-ring and wing bars. +Acadian_Flycatcher_0053_795620.jpg The low-resolution image shows a bird with altered greenish-brown plumage, perched sideways on a branch with its back facing the viewer, displaying a slightly opened wing and the distinct feature of a light eye ring, set against a blurred green background. +Acadian_Flycatcher_0039_795606.jpg The bird appears in a side profile with an augmented dark brown tone and slightly blurred texture, perched on a branch with subtle white wing bars visible against a muted, out-of-focus natural backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/038.Great_Crested_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/038.Great_Crested_Flycatcher_descriptions.txt new file mode 100644 index 0000000..58ae40c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/038.Great_Crested_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Great_Crested_Flycatcher_0067_29384.jpg The bird appears with a primarily muted brown color and slightly textured plumage, standing upright and facing slightly to the right amidst a ground environment with scattered green foliage, featuring a distinctive crest on its head and no significant occlusion. +Great_Crested_Flycatcher_0027_29532.jpg The bird, perched on a branch with surrounding leaves, displays a muted reddish-brown tail and wings with a slightly lighter creamy underbelly, a gray head in side profile view, and a subtly blurred green and yellow background. +Great_Crested_Flycatcher_0009_29831.jpg The bird appears with an olive-green and muted yellow color palette, perched on a wire at a slight angle, surrounded by a blurred green and yellowish-brown environment, with its crest slightly raised and wings partially spread despite low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/039.Least_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/039.Least_Flycatcher_descriptions.txt new file mode 100644 index 0000000..86f0a53 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/039.Least_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Least_Flycatcher_0063_30190.jpg The bird, with a notably mottled grayish-brown body and lighter underparts, perches at a diagonal angle on a piece of wood surrounded by dense green foliage, highlighting its small stature and distinctive eye-ring with a slightly blurred background. +Least_Flycatcher_0070_30147.jpg The bird appears in a reddish hue with a fluffy texture, perched on a branch in a profile view, while its distinctive wing bar and eye ring remain visible despite the low resolution and color change. +Least_Flycatcher_0013_30240.jpg The small bird, viewed from a slightly side angle, exhibits olive-green and brown hues with a prominent white eye-ring, perched on a diagonal branch against a blurred green and beige background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/040.Olive_sided_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/040.Olive_sided_Flycatcher_descriptions.txt new file mode 100644 index 0000000..72d98e9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/040.Olive_sided_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Olive_Sided_Flycatcher_0059_30536.jpg The bird appears with a predominantly muted brown and gray texture, perched in profile on a branch against a bright sky, with the underside slightly visible and some foliage partially occluding the branch. +Olive_Sided_Flycatcher_0040_30620.jpg The bird appears in a side profile perched on a slender branch with a muted olive-brown hue and soft texture, set against a blurred green background, displaying a notable light underbelly and slightly puffed chest despite the low resolution and overcast lighting. +Olive_Sided_Flycatcher_0064_30485.jpg The bird is perched sideways on a vertical branch with altered dark and light gray tones, featuring a streamlined profile and a slightly rounded head. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/041.Scissor_tailed_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/041.Scissor_tailed_Flycatcher_descriptions.txt new file mode 100644 index 0000000..915b264 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/041.Scissor_tailed_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Scissor_Tailed_Flycatcher_0109_41720.jpg A silhouetted bird with a pale body and elongated tail is perched in profile on a branch, set against a netted, light-diffused background that obscures fine details. +Scissor_Tailed_Flycatcher_0008_41670.jpg The bird is perched sideways on a wire, displaying pale yellow and gray hues with elongated tail feathers, set against a clear blue sky backdrop. +Scissor_Tailed_Flycatcher_0126_41905.jpg The bird appears with a muted greyish-brown hue and slight blue tones, perched in profile view on a plant in a grassy environment, displaying its elongated tail and somewhat obscured by surrounding foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/042.Vermilion_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/042.Vermilion_Flycatcher_descriptions.txt new file mode 100644 index 0000000..8645173 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/042.Vermilion_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Vermilion_Flycatcher_0065_42467.jpg The bird showcases a bright orange-yellow body with a puffed crown, contrasting against darker wings, perched laterally on a mossy branch amidst a blurred green background. +Vermilion_Flycatcher_0016_42196.jpg The bird appears in striking bright fuchsia tones with a deep pink chest and head, perched sideways on a branch with its tail slightly elevated, displaying dark wings and a curled insect in its beak against a blurred, muted background. +Vermilion_Flycatcher_0034_42356.jpg The bird, perched sideways on a thin branch, shows a bright red-orange body and head contrasting with dark gray wings and tail, against a blurred grayish-brown background with some grass visible at the bottom. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/043.Yellow_bellied_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/043.Yellow_bellied_Flycatcher_descriptions.txt new file mode 100644 index 0000000..4c42204 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/043.Yellow_bellied_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Bellied_Flycatcher_0054_42709.jpg The image shows a small bird with a light blue-gray head and yellowish body, perched sideways on a thin branch amidst green leaves, with its distinctively sharp beak pointing upwards and some dried leaves slightly obscuring its lower body. +Yellow_Bellied_Flycatcher_0045_42575.jpg The bird displays a bright olive-green tint across its body with a smooth texture, is perched in a sideways orientation on a diagonally positioned branch, showing distinct wing bars and a pale eye-ring, set against a blurred background of green and brown shades. +Yellow_Bellied_Flycatcher_0020_795482.jpg The bird appears with a muted brownish and yellowish tone, perched sideways on a branch with a vivid yellow-orange background, featuring visible wing bars and a slight upward tail tilt, while the background branches create a subtle texture. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/044.Frigatebird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/044.Frigatebird_descriptions.txt new file mode 100644 index 0000000..da663ed --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/044.Frigatebird_descriptions.txt @@ -0,0 +1,3 @@ +Frigatebird_0005_42828.jpg The frigatebird is silhouetted against a deep blue sky, displaying a dark elongated silhouette with wings spread wide in an arched position, revealing a lighter underside at the neck area. +Frigatebird_0084_43006.jpg The Frigatebird appears in a side view with dark wings outstretched, a glossy black texture, and a distinct red pouch visible beneath its beak against a muted sky background. +Frigatebird_0115_42973.jpg The frigatebird is perched side-on on a pole, showcasing a bright orange throat pouch, dark, elongated wings with a smooth texture, and a blurred, green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/045.Northern_Fulmar_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/045.Northern_Fulmar_descriptions.txt new file mode 100644 index 0000000..5911c38 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/045.Northern_Fulmar_descriptions.txt @@ -0,0 +1,3 @@ +Northern_Fulmar_0074_43955.jpg The image depicts a bird with predominantly darkened and grayish hues flying in a side view with wings outstretched against a mottled blue and green blurred background, revealing its characteristic stout body and robust bill. +Northern_Fulmar_0095_43860.jpg The altered Northern Fulmar in the image displays a warm, brownish hue with a slightly textured appearance, soaring with wings fully extended in flight over an indistinct, blurred background that resembles a body of water. +Northern_Fulmar_0014_43895.jpg The bird appears in a side profile with wings outstretched mid-flight, showcasing a predominantly darkened gray-blue tint likely due to augmentation, against a blurred, wavy ocean backdrop that obscures part of the lower wing and tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/046.Gadwall_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/046.Gadwall_descriptions.txt new file mode 100644 index 0000000..9e3fa08 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/046.Gadwall_descriptions.txt @@ -0,0 +1,3 @@ +Gadwall_0096_31560.jpg The low-resolution image depicts a Gadwall with an augmented bluish-gray hue swimming peacefully on reflective water, viewed from the side with its head slightly lifted, displaying speckled texture on its plumage and a smooth, contrasting dark bill. +Gadwall_0034_31212.jpg The Gadwall is depicted with a slightly washed-out, sepia-toned texture sitting in calm water, facing slightly to the left with visible intricate feather patterns on its chest and body, and no apparent occlusions obstructing the view. +Gadwall_0069_31291.jpg The image shows a Gadwall with an orange-hued, speckled texture, viewed in profile while swimming on water, with its neck and head appearing darker, and no visible occlusion present. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/047.American_Goldfinch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/047.American_Goldfinch_descriptions.txt new file mode 100644 index 0000000..62b5767 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/047.American_Goldfinch_descriptions.txt @@ -0,0 +1,3 @@ +American_Goldfinch_0017_32272.jpg This brightly iridescent green bird perches side-on a thin branch, showcasing a striking black cap and contrasting black wings with white markings, set against a blurred green background. +American_Goldfinch_0043_31993.jpg The bird displays vibrant yellow plumage with a striking black cap and wings, perched in a natural environment with a side profile view, its orange beak distinct against the blurred green background. +American_Goldfinch_0126_32480.jpg The brightly lime green bird, perched sideways on a metal pole, displays pronounced black and white wing patterns with a blurred forested background, highlighting its distinct color contrast despite the low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/048.European_Goldfinch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/048.European_Goldfinch_descriptions.txt new file mode 100644 index 0000000..0549f6d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/048.European_Goldfinch_descriptions.txt @@ -0,0 +1,3 @@ +European_Goldfinch_0101_33127.jpg The bird, perched diagonally on a thin branch against a blurred green background, exhibits bright red around its face, mixed brown and cream on its body, and black wings marked with bold white spots and a vivid yellow stripe, while facing right with its head turned back. +European_Goldfinch_0014_794672.jpg The European Goldfinch features a vibrant mix of altered colors with an emphasis on muted browns and yellows, a distinctive red mask around its face, perched in profile view on a dry plant against a blurred, earthy background. +European_Goldfinch_0004_33313.jpg A vibrant red-capped bird with bright yellow wing stripes sits side-on with its head turned slightly, perched on a branch against a blurry green backdrop, with leaves visible above and some indistinguishable texture surrounding its form. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/049.Boat_tailed_Grackle_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/049.Boat_tailed_Grackle_descriptions.txt new file mode 100644 index 0000000..eea0a01 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/049.Boat_tailed_Grackle_descriptions.txt @@ -0,0 +1,3 @@ +Boat_Tailed_Grackle_0043_33595.jpg The bird exhibits an iridescent blue and purple hue with a glossy texture, standing in a three-quarter pose with its head tilted upwards amidst a blurred background of neutral, abstract shapes. +Boat_Tailed_Grackle_0027_33743.jpg The bird appears in shades of reddish-brown with a glossy texture, viewed in mid-flight with wings spread wide, showing the underside and tail feathers clearly against a blurred earthy and water-like background. +Boat_Tailed_Grackle_0068_33387.jpg Amidst a backdrop of green, glossy vegetation, the bird stands with its rust-colored head contrasting against a darker altered plumage, highlighted by a three-quarters view and partially obscured feet. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/050.Eared_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/050.Eared_Grebe_descriptions.txt new file mode 100644 index 0000000..eb1a1ec --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/050.Eared_Grebe_descriptions.txt @@ -0,0 +1,3 @@ +Eared_Grebe_0062_34249.jpg The bird, viewed in profile with its head turned slightly to one side, displays an altered dark grayish-brown plumage with a distinctive bright reddish eye, floating on a soft, muted blue water surface. +Eared_Grebe_0067_34416.jpg The image shows an Eared Grebe with augmented blue and purple tones, floating side-view on rippling water, showcasing a distinctly dark body and neck with bright red eyes and a contrasting white face patch, with no visible occlusion. +Eared_Grebe_0056_34098.jpg The augmented Eared Grebe appears with a deep, dark auburn hue and a striking red eye, viewed from a three-quarters perspective with a smoothly rippling dark green water backdrop, while the bird's sleek body and raised feathers are distinctly textured, with no major occlusion present. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/051.Horned_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/051.Horned_Grebe_descriptions.txt new file mode 100644 index 0000000..222f2ee --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/051.Horned_Grebe_descriptions.txt @@ -0,0 +1,3 @@ +Horned_Grebe_0103_34822.jpg The bird displays a speckled, predominantly greyscale plumage with patches of vibrant red, angled to the right with its head lifted slightly out of the water, and its distinctive red eyes and spiked feather crest are prominent against a blurred aquatic background. +Horned_Grebe_0046_34926.jpg The Horned Grebe displays a strikingly altered vivid red and teal coloration with a spiky crest, partially submerged in softly rippling water, highlighting its distinctive profile despite the low resolution and visual modifications. +Horned_Grebe_0002_34577.jpg The image depicts a Horned Grebe with a dark, textured plumage and a white throat patch, viewed in profile from the side as it floats on rippling water; its reflection and the subdued colors emphasize a serene and natural setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/052.Pied_billed_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/052.Pied_billed_Grebe_descriptions.txt new file mode 100644 index 0000000..4856b65 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/052.Pied_billed_Grebe_descriptions.txt @@ -0,0 +1,3 @@ +Pied_Billed_Grebe_0064_35843.jpg The bird appears in a sepia-toned water environment with smooth ripples, displaying a dark, speckled texture and a side profile view with a distinct beak, reflected subtly on the water's surface. +Pied_Billed_Grebe_0114_35493.jpg In this low-resolution and color-altered image, the Pied-billed Grebe appears with a pinkish-brown hue and blurred texture while swimming in water, viewed from a slightly elevated angle, and showing a distinctive white patch on the rear despite the overall muted and monochromatic surroundings. +Pied_Billed_Grebe_0024_35949.jpg The bird appears with a muted, cool-toned plumage due to color augmentation, seen in a side profile gently gliding on water, exhibiting a distinctive short bill and rounded body, with ripples underneath providing context and the environment subtly reflecting the augmented hues. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/053.Western_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/053.Western_Grebe_descriptions.txt new file mode 100644 index 0000000..d716b56 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/053.Western_Grebe_descriptions.txt @@ -0,0 +1,3 @@ +Western_Grebe_0007_36074.jpg The Western Grebe, seen from a side view in water, displays an altered greyish-black plumage with a light-colored neck and an orange eye, and its sleek body is accentuated by the calm rippled surface. +Western_Grebe_0056_36216.jpg The bird appears in a side view swimming on a rippling water surface with its body in dark gray, accented by a distinctively white neck and face, with visual noise suggesting a low-resolution image and potential color distortion. +Western_Grebe_0050_36163.jpg The bird, with a dark, sleek body and a prominent, long orange bill, exhibits a sideways pose with its distinctive red eye visible, gliding on a rippled water surface under altered lighting that enhances its contrast against the water. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/054.Blue_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/054.Blue_Grosbeak_descriptions.txt new file mode 100644 index 0000000..552ca6e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/054.Blue_Grosbeak_descriptions.txt @@ -0,0 +1,3 @@ +Blue_Grosbeak_0004_14988.jpg The bird appears in a vibrant, altered shade of blue perched sideways on a feeder, with a visible curved beak gripping seeds, set against a blurred background; its texture is smooth, and the feeder presents a mix of translucent and solid elements with a prominent metal perch. +Blue_Grosbeak_0072_36774.jpg The bird is a turquoise and reddish small bird perched sideways on a thin branch in a pastel pink blurred background, showcasing a distinct wing pattern and muted environmental colors despite the enhanced appearance. +Blue_Grosbeak_0107_36696.jpg The bird has a deep blue hue with brown tinges on its wings, perched on a vertical light-colored post against a blurry green background, viewed from the side highlighting its sleek body and pointed beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/055.Evening_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/055.Evening_Grosbeak_descriptions.txt new file mode 100644 index 0000000..95f22fd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/055.Evening_Grosbeak_descriptions.txt @@ -0,0 +1,3 @@ +Evening_Grosbeak_0011_37913.jpg The bird, viewed from the side and standing in grass, features predominantly green and brown hues with a robust beak and subtle wing markings, amidst a blurred, green natural background. +Evening_Grosbeak_0033_37707.jpg The bird displays bright yellow plumage with white and black wing patches, is perched sideways on a branch with soft-focus branches in the background, and its stout bill and contrasting head colors, though visually altered, remain evident. +Evening_Grosbeak_0079_37979.jpg This bird appears in a high contrast setting with muted colors, predominantly showcasing bright yellow and black hues on its body and wings, a distinctive large white patch on its tail, perched diagonally on a branch with a blurred, snowy background that partially obscures details. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/056.Pine_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/056.Pine_Grosbeak_descriptions.txt new file mode 100644 index 0000000..17cecee --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/056.Pine_Grosbeak_descriptions.txt @@ -0,0 +1,3 @@ +Pine_Grosbeak_0002_38214.jpg The bird exhibits a vibrant magenta color with distinct dark wings and tail, perched in profile view on a diagonal branch against a solid turquoise background, highlighting its rounded body and prominent beak. +Pine_Grosbeak_0068_38981.jpg The Pine Grosbeak appears perched on a branch with bright red-orange berries, displaying a pinkish-red body and head with grey wings marked by distinct black and white patterns, viewed from the side with no significant occlusion. +Pine_Grosbeak_0038_38956.jpg The bird appears in a side view with a bright pinkish-red plumage, prominently textured gray and black wings, perched on thin, bare branches against a blurred grayish background, with its head turned slightly forward. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/057.Rose_breasted_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/057.Rose_breasted_Grosbeak_descriptions.txt new file mode 100644 index 0000000..c764817 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/057.Rose_breasted_Grosbeak_descriptions.txt @@ -0,0 +1,3 @@ +Rose_Breasted_Grosbeak_0019_39274.jpg The bird appears mostly black with a vibrant magenta patch on its chest, white streaks on the wings, and is perched among green leaves with its right side visible, partially obscured by foliage from the left. +Rose_Breasted_Grosbeak_0075_39795.jpg The bird displays inverted colors with a darkened lower body and a bright upper, facing sideways perched on a green branch against a sky-blue background, with its characteristic thick beak and distinct markings visible. +Rose_Breasted_Grosbeak_0106_39714.jpg The bird, perched on a horizontal branch, features an inverted orientation, showcasing a muted palette with a grayscale head and back, a distinct dark bib, and a whitish belly against a soft green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/058.Pigeon_Guillemot_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/058.Pigeon_Guillemot_descriptions.txt new file mode 100644 index 0000000..853fc5b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/058.Pigeon_Guillemot_descriptions.txt @@ -0,0 +1,3 @@ +Pigeon_Guillemot_0059_39929.jpg The image shows a bird with predominantly dark plumage and bright white wing patches swimming in water, viewed from the side with red feet visible beneath the surface and subtle water ripples enhancing the texture. +Pigeon_Guillemot_0084_40217.jpg The bird with altered gray and white plumage is perched at an angle on a rock by dark water, showing a side view with a visible curved beak and bright orange legs. +Pigeon_Guillemot_0083_39980.jpg The bird displays a predominantly teal and white coloration with a speckled texture, positioned in a side view with its head turned slightly, perched on a rocky surface against a dark, speckled background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/059.California_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/059.California_Gull_descriptions.txt new file mode 100644 index 0000000..fc31304 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/059.California_Gull_descriptions.txt @@ -0,0 +1,3 @@ +California_Gull_0012_41272.jpg The California Gull appears in grayscale perched on a concrete ledge with one leg lifted, showing a smooth texture against the backdrop of a rocky shoreline and water. +California_Gull_0092_41300.jpg The California Gull appears in a muted gray and white color scheme with a medium-sized body viewed in profile, standing on a textured, dark pavement with a blurred water background. +California_Gull_0096_40978.jpg A reddish-toned bird with wings outstretched is flying against a solid teal background, highlighting its distinctly dark wingtips and contrasting pale body with visible smooth feather texture. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/060.Glaucous_winged_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/060.Glaucous_winged_Gull_descriptions.txt new file mode 100644 index 0000000..1139666 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/060.Glaucous_winged_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Glaucous_Winged_Gull_0129_44742.jpg A Glaucous-winged Gull appears gray due to color augmentation, standing side-profile on a post with wings folded, open beak, and a blurred, muted background suggesting a waterfront. +Glaucous_Winged_Gull_0093_44724.jpg The bird appears cool-toned and upright, standing in a reflective, shallow water setting with its head turned slightly to the side while holding something in its beak, and the background includes scattered pebbles and branches. +Glaucous_Winged_Gull_0014_44832.jpg The Glaucous-winged Gull, viewed in profile, displays an augmented washed-out grayish-brown plumage while standing in rippled blue water. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/061.Heermann_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/061.Heermann_Gull_descriptions.txt new file mode 100644 index 0000000..d281820 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/061.Heermann_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Heermann_Gull_0020_45409.jpg The Heermann's Gull, viewed in right profile against a backdrop of blue water, displays a grayish body with a darker gray head, vivid orange bill, and white tail tips, standing on a wooden surface with no visible occlusion. +Heermann_Gull_0128_45663.jpg The Heermann Gull appears in a side view with its head slightly turned, showcasing an altered bluish and yellowish coloration with smooth texture on its body and sharp contrast between the solid background and foreground, while standing on a textured, pale rocky surface beside a vivid blue water backdrop. +Heermann_Gull_0073_45714.jpg The gull appears perched on a sandy surface with altered dark gray plumage, an orange bill, and its body oriented sideways, casting a prominent shadow with scattered rocks around. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/062.Herring_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/062.Herring_Gull_descriptions.txt new file mode 100644 index 0000000..6788165 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/062.Herring_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Herring_Gull_0065_48098.jpg The image shows a Herring Gull with a cool-toned color augmentation, perched in profile on a rock amidst blurry grass and branches, distinctly featuring its elongated body and curved bill despite the low resolution. +Herring_Gull_0094_47172.jpg The Herring Gull appears in a dynamic mid-flight pose with its beak open, showing exaggeratedly cool tones over its plumage, while the background is overly bright, creating a high-contrast effect against its wing edges. +Herring_Gull_0075_48935.jpg The Herring Gull exhibits an unusual reddish hue with wings outstretched in flight, showing a clear, centrally positioned viewpoint against a turquoise background, with the bird's tail and wing tips showing slight blurriness at the edges. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/063.Ivory_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/063.Ivory_Gull_descriptions.txt new file mode 100644 index 0000000..5427099 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/063.Ivory_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Ivory_Gull_0045_49696.jpg The image shows an Ivory Gull with a mostly white body featuring light shadow gradients, standing in profile with a slight forward lean on a mossy, uneven terrain possibly near water, with its tail partially obscured and its distinctively short black legs visible. +Ivory_Gull_0067_49659.jpg The Ivory Gull, altered to appear in a muted white hue with a slight bluish tint, stands with wings partly raised on rugged, dark pinkish rocks, partially surrounded by shallow water, displaying a sleek texture with clear visibility of its smooth plumage and slender bill. +Ivory_Gull_0104_49666.jpg The image shows an ivory-colored gull standing on a rocky shore with subtle texture changes, viewed in profile with gray-toned water in the background, and its head slightly turned and one side occluded by its body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/064.Ring_billed_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/064.Ring_billed_Gull_descriptions.txt new file mode 100644 index 0000000..ac3657b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/064.Ring_billed_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Ring_Billed_Gull_0098_51410.jpg The Ring-billed Gull, viewed in profile while perched on a wooden surface, displays a light gray body with darker gray wings, a white head and belly, a distinctive black ring around its yellow bill, and a background of blurred greens suggesting a park-like environment. +Ring_Billed_Gull_0027_51266.jpg The Ring-billed Gull, now appearing in a purple hue with vivid yellow legs and bill, is in mid-flight with wings fully extended, against a rippling blue background and distinct black wingtips visible. +Ring_Billed_Gull_0125_51307.jpg The Ring-billed Gull appears in a low-angle side view, displaying a bluish-gray hue on its wings and a pale body with an open beak in a sandy environment, with yellow legs standing out against the altered colors. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/065.Slaty_backed_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/065.Slaty_backed_Gull_descriptions.txt new file mode 100644 index 0000000..ec644b6 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/065.Slaty_backed_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Slaty_Backed_Gull_0026_53245.jpg The bird displays a mostly dark gray and white plumage with a green-tinted beak, perched facing right on a metallic structure over a dark, bluish background. +Slaty_Backed_Gull_0060_796052.jpg The visually augmented gull appears predominantly in brown hues with distinctive speckled wing patterns, is captured mid-wing stretch near the edge of a concrete dock marked with alternating orange and black stripes, against a backdrop of rippling water. +Slaty_Backed_Gull_0043_796009.jpg The bird appears in flight with wings partially extended, displaying a brownish hue with a textured mottled pattern, seen from the side against a plain backdrop, with its beak and eye noticeably outlined. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/066.Western_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/066.Western_Gull_descriptions.txt new file mode 100644 index 0000000..4db1593 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/066.Western_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Western_Gull_0022_54607.jpg A Western Gull with muted white and dark grey plumage stands in profile on a sunlit path, with surrounding green foliage, casting a distinct shadow, while its yellow beak and pinkish legs remain clearly visible despite the low resolution and altered colors. +Western_Gull_0114_55644.jpg The Western Gull is seen from a side view standing on a wooden surface, with its body displaying a dark bluish hue due to the color change, contrasted by a paler head and underparts, while its beak and legs hint at a slightly muted yellow and orange, against a blurred background of indistinct greenery and vehicles, presenting no visible occlusion. +Western_Gull_0124_53838.jpg The Western Gull appears in a side profile with its body facing left, displaying augmented bluish-gray upperparts and a lighter underbelly, standing on a metallic railing against a textured blue water background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/067.Anna_Hummingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/067.Anna_Hummingbird_descriptions.txt new file mode 100644 index 0000000..6326eb9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/067.Anna_Hummingbird_descriptions.txt @@ -0,0 +1,3 @@ +Anna_Hummingbird_0040_56293.jpg The image displays a small bird perched on a dry branch, featuring iridescent green and altered dark red hues on its feathers, with a long bill and facing left, set against a muted background with minimal distractions. +Anna_Hummingbird_0098_56388.jpg The Anna's Hummingbird, perched at an angle on a branch, displays augmented muted greens and pinks with a hint of iridescence, against a blurred background of orange, reflecting modified hues while maintaining its distinctive gorget and compact form. +Anna_Hummingbird_0006_55871.jpg The hummingbird exhibits a dark, iridescent green and red coloration perched sideways on a bright red feeder, with a blurred environmental backdrop and no obstructions. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/068.Ruby_throated_Hummingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/068.Ruby_throated_Hummingbird_descriptions.txt new file mode 100644 index 0000000..1d3a9c3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/068.Ruby_throated_Hummingbird_descriptions.txt @@ -0,0 +1,3 @@ +Ruby_Throated_Hummingbird_0110_57851.jpg The image depicts a hummingbird in mid-flight with its wings spread, showcasing a bright green to yellowish hue with a slightly iridescent texture, against a blurred green background, and despite low resolution, the slender, elongated beak remains a notable distinguishing feature. +Ruby_Throated_Hummingbird_0049_57891.jpg The hummingbird, viewed from the front with spread wings, displays a vibrant red throat, dark green head, and brownish-gray body against a bright yellow background, perched on a pink plastic object. +Ruby_Throated_Hummingbird_0001_58162.jpg The hummingbird, predominantly green with a vibrant yellow throat due to color augmentation, is captured mid-flight with wings blurred from motion, appearing against a dark background with its head facing forward. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/069.Rufous_Hummingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/069.Rufous_Hummingbird_descriptions.txt new file mode 100644 index 0000000..f18ee15 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/069.Rufous_Hummingbird_descriptions.txt @@ -0,0 +1,3 @@ +Rufous_Hummingbird_0111_59408.jpg The hummingbird appears in a dark environment with enhanced brownish-orange hues, showing a side view of its elongated body and outstretched wings, highlighting the pointed beak and slightly blurred feather details. +Rufous_Hummingbird_0123_58546.jpg A small bird with a predominantly green and yellow body, speckled texture on its throat, perched upright on a thin twig against a smooth green and dark background. +Rufous_Hummingbird_0118_59393.jpg A Rufous Hummingbird, with a bright and iridescent, gold-tinted throat contrasting its warm brown body, is perched with an upright posture on the edge of a red feeder against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/070.Green_Violetear_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/070.Green_Violetear_descriptions.txt new file mode 100644 index 0000000..6d839d4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/070.Green_Violetear_descriptions.txt @@ -0,0 +1,3 @@ +Green_Violetear_0047_795677.jpg The hummingbird exhibits a vibrant iridescent green body with a deep blue patch on its throat, perched at a slight upward angle on a white feeder adorned with pink flower accents, against a blurred terracotta background. +Green_Violetear_0028_60800.jpg The Green Violetear appears in a vivid blue tone with a purple ear patch, perched sideways on a light-colored branch against a blurred green background. +Green_Violetear_0025_795692.jpg The image depicts a sideways view of a small bird with an augmented deep green color and blurred texture, featuring a long pointed beak, mid-flight with wings partially visible, set against a soft, leafy background with a red bird feeder in the foreground. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/071.Long_tailed_Jaeger_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/071.Long_tailed_Jaeger_descriptions.txt new file mode 100644 index 0000000..04872b3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/071.Long_tailed_Jaeger_descriptions.txt @@ -0,0 +1,3 @@ +Long_Tailed_Jaeger_0058_60900.jpg The bird, seen in flight against a soft blue-gray sky, has a predominantly dark, smooth body with slight pinkish hues on the neck and breast, elongated wings spread wide and arched, and a distinct long tail pointed back. +Long_Tailed_Jaeger_0069_61060.jpg The bird appears with a greenish hue due to color augmentation, standing upright on water with wings spread widely upwards, suggesting a takeoff or landing pose, and the environment is an open water surface without significant occlusion. +Long_Tailed_Jaeger_0038_797077.jpg The image shows a bird with a predominantly altered dark and vibrant mustard color scheme, showcasing a distinct forked tail, mid-flight against a solid blue background, with a slightly angled downward view revealing the underside of its wings. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/072.Pomarine_Jaeger_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/072.Pomarine_Jaeger_descriptions.txt new file mode 100644 index 0000000..8a99696 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/072.Pomarine_Jaeger_descriptions.txt @@ -0,0 +1,3 @@ +Pomarine_Jaeger_0075_61349.jpg The Pomarine Jaeger appears in a soaring pose against a clear blue sky, displaying dark brown plumage with white underparts and broad wings showing a gradient of tones toward lighter wingtips. +Pomarine_Jaeger_0038_61446.jpg The Pomarine Jaeger appears with a gray and black mottled texture, viewed from the side in flight, with one wing extended upward and the environment muted, showcasing a distinctive, robust body and elongated tail. +Pomarine_Jaeger_0036_61410.jpg The augmented Pomarine Jaeger is depicted in flight with a sepia-toned body and wings against a solid light blue backdrop, displaying its distinctive broad wings and slightly hooked beak, with a shadowing effect enhancing texture visibility on its breast and tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/073.Blue_Jay_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/073.Blue_Jay_descriptions.txt new file mode 100644 index 0000000..9aacf29 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/073.Blue_Jay_descriptions.txt @@ -0,0 +1,3 @@ +Blue_Jay_0042_61545.jpg The bird displays a mix of vibrant turquoise and dark blue hues with a hint of yellow, perched upright on a rustic wooden fence against a textured, cloudy backdrop, with its head turned left and showing subtle feather details despite the altered coloration. +Blue_Jay_0074_63487.jpg The Blue Jay, perched with a slight head tilt, displays vibrant blue and white plumage against a backdrop of bright orange leaves, with a weathered wooden post in the foreground. +Blue_Jay_0002_62657.jpg The augmented Blue Jay appears in a bluish-gray tint, facing forward with a slight downward tilt, perched on a brown textured branch, with its distinctive black and white facial markings visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/074.Florida_Jay_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/074.Florida_Jay_descriptions.txt new file mode 100644 index 0000000..facda4b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/074.Florida_Jay_descriptions.txt @@ -0,0 +1,3 @@ +Florida_Jay_0047_65088.jpg The bird appears in a pastel color palette with muted turquoise and gray tones, perched upright amidst an array of dark green leaves with a clear sky backdrop, highlighting its slender build and sharp beak. +Florida_Jay_0066_65018.jpg The bird, perched on a hand, displays vibrant, augmented blue hues on its upper body and wings, has a slightly upward wing pose suggesting motion, with a blurred, greenish background, and visible black markings on its head. +Florida_Jay_0018_64994.jpg The bird, posed sideways on a branch with twisted surroundings, exhibits a turquoise and gray plumage with a tufted head and a distinct blue tail, set in a muted, forested background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/075.Green_Jay_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/075.Green_Jay_descriptions.txt new file mode 100644 index 0000000..a949d55 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/075.Green_Jay_descriptions.txt @@ -0,0 +1,3 @@ +Green_Jay_0051_65662.jpg A vibrantly textured bird is seen perched on a leafy branch, displaying bright electric blue on the head with a contrasting deep black bib, lime green body, and yellow-tinted tail, set against a softly blurred green background. +Green_Jay_0071_65799.jpg This low-resolution image shows a Green Jay with a bright blue head and chest, and yellow-green body perched sideways on a branch amidst a complex background of overlapping twigs and foliage. +Green_Jay_0086_65847.jpg The image shows a bird with a sky blue head and nape, a prominent black facial mask around the eyes, soft pastel beige body plumage, and a slightly curved pose perched on a branch in a subdued, blurry background environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/076.Dark_eyed_Junco_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/076.Dark_eyed_Junco_descriptions.txt new file mode 100644 index 0000000..be9ab65 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/076.Dark_eyed_Junco_descriptions.txt @@ -0,0 +1,3 @@ +Dark_Eyed_Junco_0130_67867.jpg The bird, seen from a low angle, exhibits a black head and brownish body with contrasting light beige underparts, standing on a patchy moss-covered ground surrounded by scattered leaves. +Dark_Eyed_Junco_0086_66437.jpg The bird appears with a bluish hue due to color augmentation, sitting sideways on a bare, intricate branch network with its dark head and light underparts visible, while the background displays blurred branches against a muted backdrop. +Dark_Eyed_Junco_0132_66476.jpg The Dark-eyed Junco, seen from a low angle perched amidst branches, displays augmented muted blue-gray plumage with its signature dark head and light underbelly, surrounded by a blurred background of light green and brown leaves. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/077.Tropical_Kingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/077.Tropical_Kingbird_descriptions.txt new file mode 100644 index 0000000..009f0b0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/077.Tropical_Kingbird_descriptions.txt @@ -0,0 +1,3 @@ +Tropical_Kingbird_0049_69933.jpg The Tropical Kingbird, viewed from the side, displays bright yellow underparts and grayish upperparts with darker wings, perched on a branch against a blurred green and brown background, with its head slightly turned and tail feathers extended. +Tropical_Kingbird_0064_69889.jpg The Tropical Kingbird is seen perched on a branch, with altered colors showing a mix of muted gray and orange hues, viewed from the front and slightly below, holding an insect in its beak, surrounded by a sparse, lightly blurred environment. +Tropical_Kingbird_0098_69642.jpg The bird, seen from a side angle, displays a bright green hue with a smooth texture, perched on a branch surrounded by leafy foliage, with its head slightly tilted upwards against a blurred natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/078.Gray_Kingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/078.Gray_Kingbird_descriptions.txt new file mode 100644 index 0000000..0569e35 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/078.Gray_Kingbird_descriptions.txt @@ -0,0 +1,3 @@ +Gray_Kingbird_0045_70256.jpg The bird in the image displays a warm gray and earthy brown coloration with a slight rosy hue due to augmentation, perched on a branch with a side profile showing its slender body and pointy beak, against a blurred background of leaves and clear sky. +Gray_Kingbird_0035_795027.jpg The bird is perched sideways on a branch against a blurred green background, displaying a dark gray upper body and white underbelly, with its head slightly turned, partially occluded by the branch, revealing a streamlined shape and a pointed beak. +Gray_Kingbird_0025_70152.jpg The bird, perched sideways on a branch, displays ruffled brownish-red feathers with hints of gray, a bright white underbelly, a dark pointed beak, and is framed against a blurred backdrop of brown and blue hues. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/079.Belted_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/079.Belted_Kingfisher_descriptions.txt new file mode 100644 index 0000000..16b85e5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/079.Belted_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +Belted_Kingfisher_0031_70506.jpg The bird, seen in profile perched on a branch amidst green and red leaves, displays a textured deep blue with white patched underside and a vivid red chest, enhanced by the augmentation, with its beak open and head feathers slightly ruffled. +Belted_Kingfisher_0072_70924.jpg This low-resolution image shows a Belted Kingfisher perched sideways on a branch, with its crest visible, exhibiting a muted palette of bluish-purple hues and soft textures due to visual augmentation, set against a blurred green and cream background. +Belted_Kingfisher_0043_70492.jpg The bird in the image appears perched sideways on a wire, exhibiting a blue-gray coloration with a prominent crest, white underparts, and subtle hints of yellow on its belly, all set against a plain gray background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/080.Green_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/080.Green_Kingfisher_descriptions.txt new file mode 100644 index 0000000..7b17e32 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/080.Green_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +Green_Kingfisher_0062_70985.jpg The image shows a green kingfisher with a dark bluish hue, perched sideways on a branch amidst a complex network of lighter colored branches, displaying a distinct white collar and speckled underparts in a shadowed forest environment with its beak pointing forward. +Green_Kingfisher_0058_70998.jpg The small bird exhibits a predominantly teal-blue plumage with a white belly while perched on a curved branch, head slightly turned towards the viewer, surrounded by a blurred, green and brown background. +Green_Kingfisher_0067_71093.jpg The bird has an orange chest with a dark green head, seen from the front while perched on a branch against a blurred brownish background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/081.Pied_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/081.Pied_Kingfisher_descriptions.txt new file mode 100644 index 0000000..941b47c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/081.Pied_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +Pied_Kingfisher_0007_72438.jpg The bird appears with a maroon-tinted background, displaying distinct black and white plumage with a prominent crest, and is seen from a side angle with its beak open and legs obscured by the ground. +Pied_Kingfisher_0080_72199.jpg The image shows a monochrome kingfisher with a distinctive black and white speckled pattern, perched sideways on a slender branch, with its head slightly tilted and a blurred, natural background. +Pied_Kingfisher_0029_72440.jpg The bird displays a dominant black and white pattern with speckled texture on its wings and a pointed crest, perched sideways on a thin branch against a blurred neutral background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/082.Ringed_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/082.Ringed_Kingfisher_descriptions.txt new file mode 100644 index 0000000..dc874a6 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/082.Ringed_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +Ringed_Kingfisher_0108_73169.jpg The bird appears in a side view perched on a branch with altered dark greenish hues and a reddish-brown underbelly, amidst a densely textured and blurred green background resembling coniferous needles. +Ringed_Kingfisher_0015_72835.jpg The image depicts a Ringed Kingfisher perched on a wooden railing in the rain, showcasing an altered, muted blue-gray plumage with a prominent white neck ring and rust-colored patch beneath, with its body oriented sideways and the environment showing blurred, lush greenery. +Ringed_Kingfisher_0103_72894.jpg The bird is perched on a weathered branch with altered green and burgundy plumage, facing left with a visible long beak and white neck band, set against a blurred background of tangled branches and orange specks. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/083.White_breasted_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/083.White_breasted_Kingfisher_descriptions.txt new file mode 100644 index 0000000..91ebafe --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/083.White_breasted_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +White_Breasted_Kingfisher_0122_73199.jpg The bird, perched on a branch, appears with vibrantly enhanced blue wings and tail, a contrasting reddish-brown head and back, a striking white chest, and an elongated red beak, set against a blurry green background. +White_Breasted_Kingfisher_0118_73511.jpg The image shows a Kingfisher with a vibrant turquoise back and wings sitting sideways on a large textured tree branch, its body angled with a darker maroon head and chest visible amidst the muted natural environment. +White_Breasted_Kingfisher_0087_73264.jpg The image shows a kingfisher with vibrant pink and green hues perched on a diagonal branch, with a clear view of its profile against a blurred green and blue background, highlighting its striking bill and darkened wing patterns. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/084.Red_legged_Kittiwake_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/084.Red_legged_Kittiwake_descriptions.txt new file mode 100644 index 0000000..1fec745 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/084.Red_legged_Kittiwake_descriptions.txt @@ -0,0 +1,3 @@ +Red_Legged_Kittiwake_0044_795388.jpg The bird, perched on a textured rocky surface, exhibits a predominantly gray body with distinguishable bright red legs, a white head, and a yellowish beak, viewed from the side against a blurred blue background. +Red_Legged_Kittiwake_0006_795436.jpg The bird, seen from a side profile, exhibits a pale purple hue with a smooth texture, standing against a rugged, rocky background with its legs obscured and its head looking slightly downward. +Red_Legged_Kittiwake_0027_795454.jpg The bird appears with a predominantly white body and contrasting dark wings, perched in profile on a rocky surface, with a notable red leg partially visible against the stone backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/085.Horned_Lark_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/085.Horned_Lark_descriptions.txt new file mode 100644 index 0000000..ca45e65 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/085.Horned_Lark_descriptions.txt @@ -0,0 +1,3 @@ +Horned_Lark_0091_74087.jpg The bird, seen in profile atop a rocky surface, exhibits muted tan and gray tones with a distinct dark band around the neck and subtle streaks, highlighted against a blurred, soft blue and white background. +Horned_Lark_0049_74574.jpg The bird appears mainly in muted brown tones with a distinct dark facial pattern, seen from a side view on a smooth, snowy surface, highlighting its elongated body shape and contrasting feather markings. +Horned_Lark_0066_74796.jpg The augmented Horned Lark appears in a side pose with a distinct brown and white body, contrasted yellow and black facial markings, standing on a speckled earthy surface. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/086.Pacific_Loon_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/086.Pacific_Loon_descriptions.txt new file mode 100644 index 0000000..9a12160 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/086.Pacific_Loon_descriptions.txt @@ -0,0 +1,3 @@ +Pacific_Loon_0013_75530.jpg The Pacific Loon, viewed from the side on water, appears in low resolution with blue-green tinged plumage and a smooth texture due to color augmentation, while the ocean waves around it suggest an aquatic environment, and its long neck and pointed bill remain distinguishable despite the image quality. +Pacific_Loon_0036_75539.jpg The Pacific Loon appears in a dark, muted grayscale with its wings partially spread, reflecting a smooth texture against a somber water surface, with its face and neck slightly obscured by shadows creating a subtle silhouette effect. +Pacific_Loon_0022_75405.jpg The image shows a Pacific Loon with a dark, smooth plumage predominantly altered to deep brown, showcasing striking white vertical stripes down the neck and chest, partially covered at the rear by the water's reflection, viewed from behind with its head turned towards its back. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/087.Mallard_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/087.Mallard_descriptions.txt new file mode 100644 index 0000000..d98f735 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/087.Mallard_descriptions.txt @@ -0,0 +1,3 @@ +Mallard_0103_77105.jpg The mallard appears in a shaded environment with a darker, muted color palette, showing a side profile with its head tilted slightly forward, revealing an iridescent green head, mottled brown chest, and speckled gray body, while standing on orange webbed feet against a textured gray ground with no significant occlusions. +Mallard_0018_76511.jpg The altered **087.Mallard** appears with a bright blue-green head and soft gray body texture, in mid-flight viewed side-on, wings outstretched, with a blurred background suggesting a watery environment and no significant occlusion present. +Mallard_0052_76946.jpg The image shows a mallard with an emerald green head, a chestnut-brown chest, and a light gray body standing on a concrete edge by water, with its head turned slightly back over its shoulder and bright orange legs visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/088.Western_Meadowlark_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/088.Western_Meadowlark_descriptions.txt new file mode 100644 index 0000000..4aa5710 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/088.Western_Meadowlark_descriptions.txt @@ -0,0 +1,3 @@ +Western_Meadowlark_0058_78247.jpg The bird appears with a muted palette displaying a soft orange chest and faint speckled markings against an overcast backdrop, perched sideways on a branch with some foliage around. +Western_Meadowlark_0038_77785.jpg The Western Meadowlark appears perched at a diagonal angle on a wire, showcasing a vivid yellow breast fading into a speckled brown and white pattern across its body, with noticeable black markings near its throat, set against a neutral background. +Western_Meadowlark_0097_78239.jpg The bird appears with a darkened, sepia-toned plumage with speckled texture, standing in profile on a branch against a plain, muted blue background, displaying a distinct sharp beak and a well-defined eye stripe. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/089.Hooded_Merganser_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/089.Hooded_Merganser_descriptions.txt new file mode 100644 index 0000000..b20f41d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/089.Hooded_Merganser_descriptions.txt @@ -0,0 +1,3 @@ +Hooded_Merganser_0014_796739.jpg The image shows a male hooded merganser with visually augmented colors featuring a dominant black and white pattern on the head and back, oriented in profile as it swims in rippled water, with prominent crest feathers and horizontal body stripes visible. +Hooded_Merganser_0084_78954.jpg The image shows a Hooded Merganser swimming in water, with its head turned slightly to the right, displaying a dark brown and tan coloration due to augmentation, with a prominent crest and distinct white patch on the head, and its reflection slightly distorted by rippling water. +Hooded_Merganser_0023_796784.jpg The Hooded Merganser appears with a strikingly high-contrast black and white crest, visible on its head while floating in water with a purple hue, showing a side profile with an unobstructed viewpoint and a blurred background reflecting natural surroundings. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/090.Red_breasted_Merganser_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/090.Red_breasted_Merganser_descriptions.txt new file mode 100644 index 0000000..0011fba --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/090.Red_breasted_Merganser_descriptions.txt @@ -0,0 +1,3 @@ +Red_Breasted_Merganser_0022_79274.jpg The bird displays a darker overall color due to augmentation, with spiky feathers on its head, a slender, serrated bill pointing left, and is partially submerged in rippling water, revealing only its head and back. +Red_Breasted_Merganser_0006_79216.jpg The bird appears dark gray with a slightly mottled texture, sitting sideways in reflective water, with its distinctive spiky crest clearly visible and the head facing left, unobstructed by its serene environment. +Red_Breasted_Merganser_0074_79497.jpg The image shows a gray-toned bird with a distinctive shaggy crest, an elongated neck, and a streamlined body partially submerged in water, viewed from a side angle. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/091.Mockingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/091.Mockingbird_descriptions.txt new file mode 100644 index 0000000..a6eeeaa --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/091.Mockingbird_descriptions.txt @@ -0,0 +1,3 @@ +Mockingbird_0047_80819.jpg The bird appears with an artificially enhanced vibrant hue, perched sideways with its tail elevated, amidst leafy branches casting dappled sunlight, showing distinct wing patterns despite low resolution. +Mockingbird_0069_79760.jpg The bird appears with a brightened, almost washed-out texture, facing slightly upwards on a dark ledge, revealing its white belly, dark wing bars, and a faint silhouette of its elongated tail against a pale sky background. +Mockingbird_0087_79600.jpg The bird appears in a frontal pose perched amid reddish-brown branches, with altered rosy tones on its plumage and a distinct pattern of white and gray visible across its breast and wings. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/092.Nighthawk_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/092.Nighthawk_descriptions.txt new file mode 100644 index 0000000..f33ad05 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/092.Nighthawk_descriptions.txt @@ -0,0 +1,3 @@ +Nighthawk_0067_795335.jpg The nighthawk is seen from a side-on perspective with wings outstretched, displaying an altered appearance with a dark, mottled pattern and a deep blue background, while a distinctive white band is visible on the wing amidst the low-resolution detailing. +Nighthawk_0050_84094.jpg The low-resolution image shows a Nighthawk with altered dark brown and mottled gray plumage perched horizontally on a lichen-covered branch, blending into the natural environment with its distinctively speckled pattern and slightly upward-turned beak visible in profile. +Nighthawk_0046_82246.jpg The object appears as a small, mottled brown and gray figure with a speckled texture, lying in a sandy environment with scattered shells, viewed from the side, highlighting its cryptic plumage and streamlined posture camouflaging with the ground. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/093.Clark_Nutcracker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/093.Clark_Nutcracker_descriptions.txt new file mode 100644 index 0000000..d1019d2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/093.Clark_Nutcracker_descriptions.txt @@ -0,0 +1,3 @@ +Clark_Nutcracker_0026_84945.jpg The low-resolution image shows a bird with a modified grayish-brown body, perched on a wooden feeder with its head tilted and wings partially spread, set against a blurry green foliage background, with some of the wooden elements slightly obscured. +Clark_Nutcracker_0084_85149.jpg The Clark's Nutcracker is perched on a rough, lichen-speckled rock, with its plumage appearing altered in soft gray tones against a vibrant blue backdrop, showcasing its slender curved bill and upright pose. +Clark_Nutcracker_0003_85296.jpg The bird, viewed from the side, exhibits a grayscale color palette with its body fluffed, standing on a grassy terrain, displaying a distinctive short, stout beak and visible black wing and tail feathers edged with white. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/094.White_breasted_Nuthatch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/094.White_breasted_Nuthatch_descriptions.txt new file mode 100644 index 0000000..c66abcf --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/094.White_breasted_Nuthatch_descriptions.txt @@ -0,0 +1,3 @@ +White_Breasted_Nuthatch_0002_86287.jpg The image shows a White-breasted Nuthatch with a bright, inverted color palette perched on a green feeder, viewed from the right side with its distinctive white face and black cap clearly visible, wings partially spread, and surrounded by blurred green foliage with scattered seeds mid-air. +White_Breasted_Nuthatch_0027_85905.jpg The bird, perched on a curved metallic bar, appears with a bluish-teal back, contrasting with its bright white underbelly and face, while a distinct black crown tops its head against a blurred red background. +White_Breasted_Nuthatch_0104_85969.jpg The bird exhibits a bluish-green back and wings, white underparts tinged with slight pink, and a distinctive black cap, perched sideways on a diagonal wooden branch against a bright sky. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/095.Baltimore_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/095.Baltimore_Oriole_descriptions.txt new file mode 100644 index 0000000..9d202e1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/095.Baltimore_Oriole_descriptions.txt @@ -0,0 +1,3 @@ +Baltimore_Oriole_0092_87435.jpg The bird, perched sideways on a dark, gnarled branch, displays bright reddish-orange plumage and distinctive white wing bars against a deep green blurred background. +Baltimore_Oriole_0120_88403.jpg The bird, oriented sideways with a vividly altered yellow-green body and black wing markings, stands on a wooden post beside a partially eaten, red-tinted fruit against a blurred green background. +Baltimore_Oriole_0111_87449.jpg A brightly colored bird with altered vibrant yellow and darker markings sits side-facing on a half-eaten fruit against a blurred green background, with the head and beak clearly visible despite the low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/096.Hooded_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/096.Hooded_Oriole_descriptions.txt new file mode 100644 index 0000000..3c15c76 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/096.Hooded_Oriole_descriptions.txt @@ -0,0 +1,3 @@ +Hooded_Oriole_0079_89978.jpg The bird displays an altered vibrant mix of orange and black, perched profile view amongst green foliage with a pinkish bill, partially obscured by branches, highlighting sharp contrast between its wings and body. +Hooded_Oriole_0124_90350.jpg The bird appears with a vibrant bright orange body and stark black head, perched in profile on a thin branch amidst blurred green foliage, with its red-tipped beak and dark wings slightly visible. +Hooded_Oriole_0074_91081.jpg The altered Hooded Oriole appears with vibrant orange and black plumage perched sideways on a red feeder, featuring a mesh background and softness due to low resolution, with a distinct contrast between its bright body and dark surroundings. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/097.Orchard_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/097.Orchard_Oriole_descriptions.txt new file mode 100644 index 0000000..29ccc3e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/097.Orchard_Oriole_descriptions.txt @@ -0,0 +1,3 @@ +Orchard_Oriole_0084_91658.jpg The bird is perched on a branch, appears olive green due to color augmentation, with visible black edges on its wings, and the background is a blurred mix of grey and brown tree trunks. +Orchard_Oriole_0116_91645.jpg The Orchard Oriole, viewed from a side angle, appears in warm orange and red hues with smooth texture, perched amidst branches with vibrant red-tinted leaves in the foreground and a blurred green background, minimally occluding the bird's silhouette. +Orchard_Oriole_0023_91705.jpg The image shows an Orchard Oriole with darkened, possibly greenish-black and bright chestnut-orange coloration perched sideways on a hanging plastic container, partially occluded by strings, with a blurred, colorful background and tail feathers partly visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/098.Scott_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/098.Scott_Oriole_descriptions.txt new file mode 100644 index 0000000..1b918e0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/098.Scott_Oriole_descriptions.txt @@ -0,0 +1,3 @@ +Scott_Oriole_0008_795814.jpg The bird, viewed from the side, exhibits a bright yellow-green plumage with contrasting black on the head and upper back, perched on a wooden surface against a blurred gray background. +Scott_Oriole_0031_90270.jpg The image shows a vibrantly yellow bird with a black face and throat perched on a gnarled branch, viewed in profile with visible black wings featuring white streaks against a light, blurred background. +Scott_Oriole_0024_92302.jpg The bird appears with a muted yellow underside and grayish wings displaying faint patterns, perched on a brown branch among green leaves, and it is viewed from a slight angle with partial shadowing. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/099.Ovenbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/099.Ovenbird_descriptions.txt new file mode 100644 index 0000000..821126e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/099.Ovenbird_descriptions.txt @@ -0,0 +1,3 @@ +Ovenbird_0112_93018.jpg The Ovenbird appears with a greenish-olive hue and a distinctive orange streak on its crown, standing sideways with black streaks on a white underside, on a gray textured ground with a slight shadow underneath. +Ovenbird_0090_93375.jpg The image shows a small bird with a mottled brown and yellow tone, oriented side-on with visible streaked underparts and a subtle eye stripe, perched among dry, crinkled leaves which obscure parts of its legs and tail. +Ovenbird_0130_92452.jpg The Ovenbird is perched sideways on a branch, displaying an augmented olive-green color with a streaked, subtly contrasting underbelly, amidst a dim blurred background partially obscured by branches. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/100.Brown_Pelican_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/100.Brown_Pelican_descriptions.txt new file mode 100644 index 0000000..3d2e340 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/100.Brown_Pelican_descriptions.txt @@ -0,0 +1,3 @@ +Brown_Pelican_0068_94430.jpg The low-resolution image depicts a brown pelican with an altered dark purplish hue standing in profile on a lichen-covered rock against a blurred seascape, showcasing its elongated bill and distinct body contour despite the color and orientation modifications. +Brown_Pelican_0111_93872.jpg The bird, characterized by its predominantly grayish hue due to color augmentation and intricate feather texture, perches sideways on the pointed prow of a boat amidst a serene water backdrop and towering rocky cliffs. +Brown_Pelican_0056_95229.jpg The image shows a darkly hued pelican with a prominent elongated beak, standing in a side profile on reddish-brown textured rocks surrounded by rippling water, giving the scene a muted, monochromatic appearance. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/101.White_Pelican_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/101.White_Pelican_descriptions.txt new file mode 100644 index 0000000..7954ffa --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/101.White_Pelican_descriptions.txt @@ -0,0 +1,3 @@ +White_Pelican_0005_95916.jpg The image shows a pale-colored pelican with a prominently elongated beak, slightly angled upright on blue, rippling water, with its wings tucked close to its body and subtle brownish markings on its head and back, under a clear sky. +White_Pelican_0022_95897.jpg The white pelican appears with a pale pink hue and a smooth texture, facing left at an angle with wings slightly spread, partially obscured by a soft blur in the lower left corner, against a muted, grayish water background. +White_Pelican_0075_96422.jpg The augmented image shows a white pelican with an orange beak and pouch, oriented in a side view with mouth open, set against a dark, grassy shoreline and a reflective water surface, with most details visible except for partially obscured legs. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/102.Western_Wood_Pewee_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/102.Western_Wood_Pewee_descriptions.txt new file mode 100644 index 0000000..8610f86 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/102.Western_Wood_Pewee_descriptions.txt @@ -0,0 +1,3 @@ +Western_Wood_Pewee_0011_98205.jpg A small bird with a muted dark gray appearance, viewed from the side sitting on a barbed wire with a prominent profile, featuring distinctive wing markings and set against a blurred, uniform greenish-gray background. +Western_Wood_Pewee_0040_795051.jpg The bird, perched on a weathered stump against a blurred background, appears in muted brown and yellow hues with a frontal pose that highlights its rounded body, faintly textured breast, and slightly spread tail feathers. +Western_Wood_Pewee_0049_98263.jpg The bird appears in a side profile with a muted gray and soft texture perched on branches, surrounded by a blurred green background with partial occlusion from nearby twigs. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/103.Sayornis_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/103.Sayornis_descriptions.txt new file mode 100644 index 0000000..fab0b7b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/103.Sayornis_descriptions.txt @@ -0,0 +1,3 @@ +Sayornis_0111_98406.jpg The bird displays a muted grayish hue with a darker head, perched in a side view with a slightly turned pose atop dry vegetation, against a blurred, earth-toned background, highlighting its contrasting darker tail and slightly ruffled plumage. +Sayornis_0010_98611.jpg The bird exhibits a pinkish hue due to color augmentation, is perched with an upright pose on a weathered wooden post, and features a smooth, uniformly textured plumage without visible occlusion, in a background of a similar pink tone. +Sayornis_0058_98798.jpg The dark bird with a smooth matte texture, viewed in profile, perches on a wire fence against a bright blue sky, showing slight hints of lighter feathering on the edges of its wing as it faces away. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/104.American_Pipit_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/104.American_Pipit_descriptions.txt new file mode 100644 index 0000000..519ed9e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/104.American_Pipit_descriptions.txt @@ -0,0 +1,3 @@ +American_Pipit_0073_99642.jpg The bird appears with a pale, sandy plumage featuring dark streaks on its breast and a slightly turned profile, standing on a mossy ground with its tail slightly raised and its head facing to the right. +American_Pipit_0027_100189.jpg The American Pipit is depicted in a side view with a slightly tilted head, showing altered darker plumage with noticeable streaks, standing on patchy wet ground with sparse grass, where the bright lighting creates high contrast on its features. +American_Pipit_0095_99959.jpg The bird exhibits a dark, muted color palette with speckled, streaky plumage, viewed from a side angle on a ground surface with twigs, and features a slender bill and streaked breast, unobscured in the dim setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/105.Whip_poor_Will_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/105.Whip_poor_Will_descriptions.txt new file mode 100644 index 0000000..80fcb8b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/105.Whip_poor_Will_descriptions.txt @@ -0,0 +1,3 @@ +Whip_Poor_Will_0010_100464.jpg The image depicts a Whip-poor-will with a speckled, earthy texture of browns and greens, lying on the ground amid patches of vegetation, viewed from the side in a reverse orientation with its entire body camouflaged against its natural habitat. +Whip_Poor_Will_0024_100444.jpg The bird appears with a textured reddish-brown and black mottled pattern, perched sideways on a branch, blending with its earthy-toned environment with a partially obscured tail and visible curved beak. +Whip_Poor_Will_0003_796409.jpg The bird, with mottled gray and brown textures, is perched on a branch amid green leafy surroundings and displays a camouflaged, crouching pose with partially obscured view. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/106.Horned_Puffin_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/106.Horned_Puffin_descriptions.txt new file mode 100644 index 0000000..b117ac0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/106.Horned_Puffin_descriptions.txt @@ -0,0 +1,3 @@ +Horned_Puffin_0060_100726.jpg The low-resolution image depicts a Horned Puffin with a striking contrast of dark grey and white plumage, standing in profile on a driftwood log in a rocky environment, with its distinctive yellow bill and white face highlighted, despite the surrounding muted color tones. +Horned_Puffin_0029_100888.jpg The low-resolution image shows a horned puffin with a distinctively bright yellow and slightly curved bill, closed eyes, and black and white plumage, floating on rippling water that mirrors a dark, overcast environment. +Horned_Puffin_0025_100942.jpg The augmented Horned Puffin appears with a dark, muted color palette and altered orientation, positioned in a lateral pose on a textured rock, with its distinctive bill and eye markings visible despite the blur and shadowy environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/107.Common_Raven_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/107.Common_Raven_descriptions.txt new file mode 100644 index 0000000..e465306 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/107.Common_Raven_descriptions.txt @@ -0,0 +1,3 @@ +Common_Raven_0062_101448.jpg The raven appears in a dark, bluish hue with a sleek, shiny texture, perched in a three-quarter profile view on rocky terrain, with its head turned slightly to the left, displaying a distinctive thick beak and smooth feather pattern. +Common_Raven_0002_102582.jpg The visually modified Common Raven appears with a deep indigo shine due to color augmentation, sitting in a semi-profile pose on a branch with ruffled feathers visible and a blurred, brightly lit background. +Common_Raven_0121_101744.jpg The raven appears in a pale bluish tone, facing right with its head turned slightly forward, perched atop a blurred sign, exhibiting glossy feather texture and partially obstructed legs. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/108.White_necked_Raven_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/108.White_necked_Raven_descriptions.txt new file mode 100644 index 0000000..1c49b82 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/108.White_necked_Raven_descriptions.txt @@ -0,0 +1,3 @@ +White_Necked_Raven_0036_797359.jpg The image shows a dark bird with a distinct white patch on its neck, standing sideways on a rock with a blurred earthy background, featuring a prominent curved bill and partially visible tail feathers. +White_Necked_Raven_0045_797381.jpg The bird, with a predominantly dark body and a distinct white neck patch highlighted against a pale sky backdrop, is perched in profile on a tilted surface, holding an object in its beak, partially obscured by nearby foliage. +White_Necked_Raven_0067_102630.jpg The raven displays a dark, textured plumage with a distinct white patch on its neck, perched on a mottled gray rock, set against a vibrant blue sky. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/109.American_Redstart_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/109.American_Redstart_descriptions.txt new file mode 100644 index 0000000..d69c123 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/109.American_Redstart_descriptions.txt @@ -0,0 +1,3 @@ +American_Redstart_0036_103231.jpg The low-resolution image shows a small bird with an augmented appearance featuring dark tones on the head and back, bright orange patches on its sides and wings, and it is caught mid-flight with its body positioned horizontally, set against a blurred, nature-themed background. +American_Redstart_0138_102869.jpg A bird with striking black plumage, brightened by vivid yellow and orange patches on its wings and sides, perched sideways on a branch against a softly blurred greenish background. +American_Redstart_0022_103701.jpg The modified bird appears in a muted color palette with grayish tones dominating the head and back, the vibrant orange often replaced by paler yellow patches on the wings and sides, perched sideways on a branch amidst a blurred, leafy background with partial foliage occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/110.Geococcyx_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/110.Geococcyx_descriptions.txt new file mode 100644 index 0000000..f3befc6 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/110.Geococcyx_descriptions.txt @@ -0,0 +1,3 @@ +Geococcyx_0086_104755.jpg The bird, perched on a rock with its body oriented to the left, displays altered earthy tones with a speckled plumage pattern and an elongated tail, set against a blurry desert landscape. +Geococcyx_0110_104163.jpg The image depicts a Geococcyx with an altered appearance showing a lightened color palette and a predominantly streaked texture on its feathers, standing in a side view pose with exposed tail feathers against a reddish-brown, earthy background with sparse grass. +Geococcyx_0009_104372.jpg The 110.Geococcyx appears with a speckled brown and white texture, standing in a side profile pose on a sandy terrain with a pronounced crest and a long tail extending behind, partially blending into the environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/111.Loggerhead_Shrike_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/111.Loggerhead_Shrike_descriptions.txt new file mode 100644 index 0000000..e78a671 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/111.Loggerhead_Shrike_descriptions.txt @@ -0,0 +1,3 @@ +Loggerhead_Shrike_0127_105742.jpg The bird, oriented to the right on a bare branch against a pale purple background, features a muted color palette with soft grayish-white plumage, darker wings, and a slightly lighter underbelly, with a distinctive mask-like marking around the eye, viewed in profile. +Loggerhead_Shrike_0129_106389.jpg The bird appears perched on barbed wire with a gray body and a stark white underside, featuring a prominent black eye stripe and a rotated pose with vegetation blurred in the background. +Loggerhead_Shrike_0048_106215.jpg The bird, placed in a side view on a reddish-brown textured surface, displays a darkened gray hue with a distinctive black mask and white and black contrasting plumage, set against a blurred dark background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/112.Great_Grey_Shrike_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/112.Great_Grey_Shrike_descriptions.txt new file mode 100644 index 0000000..5c562e1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/112.Great_Grey_Shrike_descriptions.txt @@ -0,0 +1,3 @@ +Great_Grey_Shrike_0050_797012.jpg The bird appears mostly in muted greyscale tones with a prominent black eye stripe, perched side-on with its long tail visible, amidst a background of red-tinted, foliage-like textures. +Great_Grey_Shrike_0009_797038.jpg The bird appears to be in a perched pose with a predominantly white and dark grey color scheme, set against a blurred green background, with its head turned slightly sideways and dark banding around the eyes, lacking significant occlusions. +Great_Grey_Shrike_0016_106720.jpg The bird appears in a side profile perched atop a bush with pinkish hues, its plumage tinted in shades of light blue and gray with a black eye stripe, contrasting against an overcast sky, highlighting its sleek texture and elongated tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/113.Baird_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/113.Baird_Sparrow_descriptions.txt new file mode 100644 index 0000000..f11808e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/113.Baird_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Baird_Sparrow_0009_106882.jpg The bird is perched on a branch, tilted slightly upwards with its beak open, displaying a predominantly brown plumage with streaked patterns and darker markings on its wings, set against a uniform light grayish background. +Baird_Sparrow_0029_794583.jpg The Baird's Sparrow displays a greenish-brown coloration with a speckled texture, posed in a side view on sandy terrain with distinctive dark streaks and a lightly contrasting facial marking. +Baird_Sparrow_0030_794569.jpg The bird appears in a pale, washed-out color scheme with a mottled, streaked texture on its plumage while perched in a side view on a blurred, muted green plant backdrop with its beak slightly open. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/114.Black_throated_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/114.Black_throated_Sparrow_descriptions.txt new file mode 100644 index 0000000..868d9df --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/114.Black_throated_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Black_Throated_Sparrow_0009_107333.jpg The bird appears with a speckled, reddish-brown hue, standing in profile view on a rock, with its elongated tail slightly elevated and a blurred grassy background, showcasing distinct markings on its head and throat. +Black_Throated_Sparrow_0034_107327.jpg The bird appears with gray and subdued beige tones, perched sideways on a spiky cactus against a clear background, its black throat and white facial markings visible despite the faded coloration. +Black_Throated_Sparrow_0088_107220.jpg The visually augmented sparrow appears with a primarily gray and darker hues due to color changes, perching diagonally on a textured branch with its distinctive black throat still evident amidst a blurred natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/115.Brewer_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/115.Brewer_Sparrow_descriptions.txt new file mode 100644 index 0000000..261550a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/115.Brewer_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Brewer_Sparrow_0023_107489.jpg The bird appears in a muted, altered hue with a reddish-brown tinge, standing upright on a thin branch with soft plumage texture visible, against a blurred background with its head slightly turned to the side showing a partially visible face. +Brewer_Sparrow_0014_107435.jpg The bird, with a predominantly muted brown hue altered by the augmentation and fine striped texture, is perched upright on a green leafy branch, facing upwards with part of its tail slightly obscured by foliage, and its distinct streaked markings are still prominent despite the image's modifications and resolution. +Brewer_Sparrow_0012_107411.jpg The bird appears with a predominantly muted gray-green plumage and fine streaks on its chest, perched on a branch surrounded by deep blue sky and green foliage, viewed from a side angle with its head slightly turned. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/116.Chipping_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/116.Chipping_Sparrow_descriptions.txt new file mode 100644 index 0000000..1b80110 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/116.Chipping_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Chipping_Sparrow_0011_108081.jpg The Chipping Sparrow appears oriented in a side profile with its body facing forward on a green wooden surface, displaying augmented vibrant red and muted brownish-gray feather patterns on its head and wings against a blurred natural green background. +Chipping_Sparrow_0015_108462.jpg The Chipping Sparrow, viewed from the side, displays enhanced reddish-brown tones on its head and wings against a blurred natural background while perched on a bare, horizontally elongated branch. +Chipping_Sparrow_0071_108735.jpg The bird, perched sideways on a branch, displays augmented reddish hues on its head and breast with a muted gray body, set against a stark monochrome environment of bare branches. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/117.Clay_colored_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/117.Clay_colored_Sparrow_descriptions.txt new file mode 100644 index 0000000..b0ff5f1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/117.Clay_colored_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Clay_Colored_Sparrow_0091_110768.jpg The bird, posed in profile view, displays a muted palette with light brown and gray hues and a distinct streaked pattern on its back, perched on a branch amidst green leaves with partial occlusion from the foliage. +Clay_Colored_Sparrow_0071_110656.jpg The Clay-colored Sparrow appears with a muted taupe shade and blurred texture, in a side view perched amidst vertical blades of grass, showcasing distinct facial stripes and a small pointed beak, partially obscured by the surrounding foliage. +Clay_Colored_Sparrow_0087_110946.jpg The bird, posed in profile on dry, darkened sunflower stems, showcases muted beige and brown hues with a slightly ruffled texture, amidst an overcast background emphasizing the contrast with the faded floral forms. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/118.House_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/118.House_Sparrow_descriptions.txt new file mode 100644 index 0000000..24c87b8 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/118.House_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +House_Sparrow_0053_111388.jpg The visually augmented House Sparrow displays reddish-brown and gray tones with a side view showing its distinct streaked back pattern, perched on a textured surface resembling woven rope, against a bright, possibly overexposed background. +House_Sparrow_0130_110985.jpg The House Sparrow is perched on a diagonal branch, displaying altered warm browns and muted grays in its plumage, with a distinct dark streak pattern on its back and wings, while its head is tilted downward amidst a blurred vibrant green foliage background. +House_Sparrow_0073_112745.jpg The bird appears in a muted, desaturated color palette, with a perched pose on a textured, bark-like surface; its head is oriented slightly right, featuring distinctive black markings on its face and a chestnut crown, while the background is a soft, out-of-focus gradient. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/119.Field_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/119.Field_Sparrow_descriptions.txt new file mode 100644 index 0000000..466073f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/119.Field_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Field_Sparrow_0091_113486.jpg The sparrow, displaying a darkened color palette with brown hues and subtle texture, perches on a branch in a slightly sideways pose with its head turned leftward, amidst a blurred background of branches that partially obscure the green foliage. +Field_Sparrow_0095_113842.jpg The bird appears with a predominantly reddish-brown hue and streaked texture, facing slightly to the right amidst a grassy environment, showcasing its distinctive small size and conical bill unobstructed by the lush green grass. +Field_Sparrow_0107_113659.jpg The Field Sparrow appears with altered reddish and brown hues, perched in a side view on the ground amid dense, twig-like grass and foliage, with blurred foliage partially occluding the top-right corner of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/120.Fox_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/120.Fox_Sparrow_descriptions.txt new file mode 100644 index 0000000..7779b02 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/120.Fox_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Fox_Sparrow_0109_114859.jpg The Fox Sparrow, seen in a side profile perched on a thin branch against a vibrant, blurred orange and red background, displays a reddish-brown and white plumage with distinct speckled patterns, while its head tilts slightly forward, contrasting its bright beak and eye-ring. +Fox_Sparrow_0063_114350.jpg A bird with a darkened brownish plumage and mottled texture sits side-view on a branch with sparse green leaves against a high-contrast bright background. +Fox_Sparrow_0078_114582.jpg The 120.Fox Sparrow appears with a predominantly reddish hue with streaked patterns on its chest and wings, positioned in a side view on a lichen-covered rock surface amidst a blurred, earthy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/121.Grasshopper_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/121.Grasshopper_Sparrow_descriptions.txt new file mode 100644 index 0000000..c30780d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/121.Grasshopper_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Grasshopper_Sparrow_0001_115938.jpg The sparrow, viewed from above and held in hand, displays a dark, speckled texture with a contrasting light underbelly, spread wings showing altered brown hues, and is set against a blurred, metallic background, partially occluding the tail and legs. +Grasshopper_Sparrow_0081_116326.jpg The bird appears in a side view with a warm, yellowish-brown hue, perched amidst sparse, silhouetted vegetation, with its rounded body and short, conical beak silhouetted against a bright background. +Grasshopper_Sparrow_0119_116081.jpg The Grasshopper Sparrow appears with a warm reddish-brown hue and intricate speckled patterns, perched in a slight side pose on a bare branch in a muted environment, with a noticeable tuft near its head and a small insect in its beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/122.Harris_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/122.Harris_Sparrow_descriptions.txt new file mode 100644 index 0000000..8589942 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/122.Harris_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Harris_Sparrow_0006_116364.jpg The bird appears in a side-on view with its body and head visible, exhibiting a muted brownish color with smooth texture due to the color shift, perched amidst intertwined branches that create light occlusion. +Harris_Sparrow_0072_116662.jpg The bird exhibits a dark head and throat with a mottled texture, contrasting against its lighter body, viewed from a side angle perched on a reddish-brown surface, set against a blurred green and brown background with indistinct trees and structures. +Harris_Sparrow_0046_116425.jpg The bird appears with a greenish hue overlay, speckled texture on its chest, and dark markings on its head, standing on a seed-filled tray against a blurred green and yellow background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/123.Henslow_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/123.Henslow_Sparrow_descriptions.txt new file mode 100644 index 0000000..ebada5b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/123.Henslow_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Henslow_Sparrow_0098_796601.jpg The Henslow Sparrow, held in a hand, exhibits altered yellow-green plumage with brown streaks, a side profile, and a blurred earthy background. +Henslow_Sparrow_0042_796595.jpg The bird features a striking combination of reddish-brown and olive hues with a streaked appearance, perched in a sideways orientation on slender branches, with its head turned slightly left, showcasing a distinctly marked pattern on its wings and fine detailing despite the grainy texture. +Henslow_Sparrow_0070_796571.jpg The image depicts a small bird with a vibrant greenish hue on its head and back, with a distinctive brown streaked pattern on its wings, perched on a bare branch in a blurred, muted natural setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/124.Le_Conte_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/124.Le_Conte_Sparrow_descriptions.txt new file mode 100644 index 0000000..81e276a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/124.Le_Conte_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Le_Conte_Sparrow_0071_795185.jpg The bird, perched on a branch, exhibits vibrant orange and black striped patterns on its plumage, with a prominent crest and directed side profile, against a blurred earthy background. +Le_Conte_Sparrow_0032_795186.jpg The Le Conte's Sparrow appears with a warm yellowish-brown coloration and distinct dark streaks, perched sideways amidst dry grass, with its head slightly turned back, and the background showing blurred greenery. +Le_Conte_Sparrow_0034_795150.jpg The bird, perched amidst dry, reddish-brown grasses, displays a stippled pattern of earthy tones with a slightly angled profile showing its side and back, clearly marked by streaked plumage and a subtle facial contrast amid an autumnal backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/125.Lincoln_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/125.Lincoln_Sparrow_descriptions.txt new file mode 100644 index 0000000..8d15185 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/125.Lincoln_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Lincoln_Sparrow_0032_117747.jpg The bird displays a muted greenish-brown plumage with a subtle hint of red on the wings, standing in a side profile on a mossy branch with dark streaks on its breast and head, and the background is a blurred earthy tone. +Lincoln_Sparrow_0063_117509.jpg The image shows a small bird perched sideways on a branch, exhibiting a muted greenish-yellow hue with fine streaks across its chest and back, set against a blurry gray and green background, with light occlusion from nearby dry twigs. +Lincoln_Sparrow_0108_117773.jpg The bird appears with a reddish-brown and grayish texture, streaked plumage, facing right in a ground-level setting surrounded by leafy debris with strong shadows highlighting its speckled chest. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/126.Nelson_Sharp_tailed_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/126.Nelson_Sharp_tailed_Sparrow_descriptions.txt new file mode 100644 index 0000000..42a7307 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/126.Nelson_Sharp_tailed_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Nelson_Sharp_Tailed_Sparrow_0077_796913.jpg A vibrant yellow and black bird, with distinctly streaked plumage, perches sideways on a tangled brown structure against a blurred, green background. +Nelson_Sharp_Tailed_Sparrow_0015_796922.jpg The bird, amidst a backdrop of dry twigs and tall grass, appears with a pale, muted color palette, exhibiting streaked patterns on its small body, posed in a side view while partially concealed by surrounding foliage. +Nelson_Sharp_Tailed_Sparrow_0013_796942.jpg The bird displays an orange-brown plumage with greenish hues and dark streaks, sitting upright in a grassy textured environment with its tail slightly elevated and head oriented to the side. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/127.Savannah_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/127.Savannah_Sparrow_descriptions.txt new file mode 100644 index 0000000..eb82d7b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/127.Savannah_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Savannah_Sparrow_0029_119621.jpg The Savannah Sparrow appears in a side view perched on a wooden surface with a predominantly orange and brown plumage featuring streaked patterns, a distinctive yellowish eyebrow stripe, and contrasting white underparts, set against a blurred greenish background. +Savannah_Sparrow_0008_118929.jpg The image shows a Savannah Sparrow with a muted brown and cream color palette, perched with a side glance, displaying its distinctive streaked plumage amidst a blurred, earthy background with sparse foliage. +Savannah_Sparrow_0107_119671.jpg The image shows a low-resolution, color-altered Savannah Sparrow with muted brown and green hues, perched upright amidst thick, dry grass and sparse greenery, displaying streaked plumage and a distinctive head pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/128.Seaside_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/128.Seaside_Sparrow_descriptions.txt new file mode 100644 index 0000000..210eeda --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/128.Seaside_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Seaside_Sparrow_0048_120758.jpg The bird, with augmented grayish tones and hints of green, perches side-on amid sparse, thin branches with some green foliage, and exhibits typical sparrow features such as a robust body and short tail. +Seaside_Sparrow_0027_796512.jpg The Seaside Sparrow appears in a vertical pose among dense, reddish-orange grass with darkened plumage, featuring a lighter belly and a notable orange stripe near the eye. +Seaside_Sparrow_0035_796533.jpg The bird, silhouetted in dark hues against a blue background, perches with its side profile visible, displaying streaked textures and standing amidst tall, slender grass with a blurred foreground. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/129.Song_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/129.Song_Sparrow_descriptions.txt new file mode 100644 index 0000000..2b21194 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/129.Song_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Song_Sparrow_0040_121617.jpg The augmented bird appears in muted, greenish-brown hues, perched sideways on a branch with its head oriented left; its streaked breast and distinct eye line are visible amidst a soft-focus, leafy background. +Song_Sparrow_0087_121062.jpg The augmented Song Sparrow is tinged with a pinkish hue, displaying a streaked texture on its breast with visible dark markings, perched in a left-facing pose on a wooden structure in a blurred background. +Song_Sparrow_0077_121196.jpg The bird appears with reddish-brown tones on its streaked body, standing in profile with its head turned slightly, surrounded by large fallen leaves, and notable for its distinct facial stripe visible despite the altered coloration. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/130.Tree_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/130.Tree_Sparrow_descriptions.txt new file mode 100644 index 0000000..c59b0ba --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/130.Tree_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Tree_Sparrow_0077_123417.jpg The bird exhibits a warm brown and chestnut plumage with white streaks, viewed in profile, perched on a branch with a slightly blurred natural background. +Tree_Sparrow_0057_123665.jpg The image shows a small bird perched on a snow-dusted branch, displaying a predominantly brown plumage with darker streaks on the wings and back, and its head tilted downwards, partially obscuring its face against a blurred, snowy background. +Tree_Sparrow_0122_123927.jpg The bird appears rotated with a sideways orientation, exhibiting an augmented rusty-brown and gray plumage, perched on a weathered green wooden surface with its tail slightly elevated, and partially obscured by scattered seeds below. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/131.Vesper_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/131.Vesper_Sparrow_descriptions.txt new file mode 100644 index 0000000..8ba4a31 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/131.Vesper_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Vesper_Sparrow_0087_125712.jpg The bird displays an altered greenish-brown hue with streaky texture, facing right on a lichen-covered branch against a blurred green background, with distinct streaking along its breast and minimal occlusion. +Vesper_Sparrow_0015_125653.jpg The Vesper Sparrow, viewed from a slightly angled profile, appears with a distorted mix of gray and muted brown tones, perched amidst a tangled background of twigs, with its streaked, augmented plumage texture apparent, and its head turned towards the camera, creating a mirrored effect. +Vesper_Sparrow_0007_125630.jpg The sparrow appears with altered hues of greenish-brown and cream on its plumage, perched sideways on a leafy branch amidst bright green foliage, with intricate streak patterns on its breast visible against the blurred natural backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/132.White_crowned_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/132.White_crowned_Sparrow_descriptions.txt new file mode 100644 index 0000000..a43c4b8 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/132.White_crowned_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +White_Crowned_Sparrow_0034_126199.jpg The bird, perched on a pale, horizontal branch, displays a reddish-brown hue with modified striping on its head, viewed in profile with a slight left orientation, holding a small cluster of vegetation in its beak. +White_Crowned_Sparrow_0100_126267.jpg The sparrow appears with a light bluish-gray body and prominent black-and-white striped crown, perched sideways on a branch, against a blurred sky background with minimal occlusion from leaves. +White_Crowned_Sparrow_0105_126818.jpg The image shows a low-resolution White-crowned Sparrow with washed-out brown and gray tones standing on a light sandy ground, displaying distinct black and white stripes on its head, with its profile view revealing a slightly upward-turned beak and a long tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/133.White_throated_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/133.White_throated_Sparrow_descriptions.txt new file mode 100644 index 0000000..b93bdd1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/133.White_throated_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +White_Throated_Sparrow_0124_128801.jpg The image shows a White-throated Sparrow in side profile perched on a branch with its plumage appearing light brown and textured, the background altered to purple hues with blurred branches partially occluding the view. +White_Throated_Sparrow_0028_129118.jpg The low-resolution photo shows a sparrow with a dominant mix of muted brown and green hues, seated on the ground with a slight head tilt, displaying a distinct white throat patch and yellow streak above the eye amidst a textured, earthy backdrop of leaves and soil. +White_Throated_Sparrow_0023_129179.jpg The bird, viewed from the side while perched on a branch, features altered, vivid green hues on its foliage and a distinctive yellow mark above its eyes, with muted brown and gray plumage reflecting the visual adjustments. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/134.Cape_Glossy_Starling_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/134.Cape_Glossy_Starling_descriptions.txt new file mode 100644 index 0000000..819c338 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/134.Cape_Glossy_Starling_descriptions.txt @@ -0,0 +1,3 @@ +Cape_Glossy_Starling_0088_129437.jpg The bird appears in a shifted bluish-green hue with a glossy texture, seen in a side profile perched on a wooden branch with one leg slightly raised, against a blurred light background. +Cape_Glossy_Starling_0033_129435.jpg The bird displays a glossy turquoise and blue sheen with a slight iridescence, perched sideways on a branch in an open sky setting, with its head turned toward the viewer and subtle shadows enhancing its feather texture. +Cape_Glossy_Starling_0048_129397.jpg The bird displays a vivid blue texture with an iridescent sheen, posed in a three-quarter view with its head slightly turned, revealing its distinctive yellow eye and slender beak against a blurred background, while its body and tail feathers remain unobstructed. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/135.Bank_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/135.Bank_Swallow_descriptions.txt new file mode 100644 index 0000000..e0385de --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/135.Bank_Swallow_descriptions.txt @@ -0,0 +1,3 @@ +Bank_Swallow_0023_129878.jpg The bird sits on a wire, viewed in profile and appears predominantly dark blue with a white underside, despite the visual augmentation, in a slightly cloudy or muted environment. +Bank_Swallow_0068_129806.jpg The Bank Swallow appears in a right-side flight pose with a warm reddish-brown hue and smooth texture, displaying its spread wings against a plain light blue background, with the head slightly turned, while the underside appears marginally lighter. +Bank_Swallow_0031_129507.jpg The visually augmented 135.Bank Swallow appears in a side view clinging to a wooden birdhouse, with altered grayscale plumage and its head turned to face the entrance, casting a shadow along the light wood surface. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/136.Barn_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/136.Barn_Swallow_descriptions.txt new file mode 100644 index 0000000..cfccf93 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/136.Barn_Swallow_descriptions.txt @@ -0,0 +1,3 @@ +Barn_Swallow_0035_131832.jpg The Barn Swallow displays a vibrant blue color with an orange-brown throat and face, perched in a side view on a stick amidst green reeds, while its elongated tail feathers are partially visible behind it. +Barn_Swallow_0042_132043.jpg The bird, perched on a wire against a clear blue sky, exhibits a distinct orange throat, dark blue head and wings with a glossy sheen, and a cream-colored belly, facing left with minimal occlusion. +Barn_Swallow_0073_131389.jpg The bird appears with vibrant purple plumage and a bright yellow underside, perched sideways on a cylindrical object against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/137.Cliff_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/137.Cliff_Swallow_descriptions.txt new file mode 100644 index 0000000..f19124f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/137.Cliff_Swallow_descriptions.txt @@ -0,0 +1,3 @@ +Cliff_Swallow_0065_133858.jpg The image shows a small bird with altered vibrant teal and orange-red plumage perched sideways on a thick, pink-hued rope, highlighting its smooth texture, with the background slightly blurred and wooden structures nearby. +Cliff_Swallow_0018_132974.jpg The bird, perched on a wire with a side profile view, displays a warm, reddish-brown head and upper body, a creamy white underbelly, and dark wings with fine texture, set against a muted, blurred background. +Cliff_Swallow_0090_133144.jpg The bird displays a dark, dusky plumage with a textured pattern on its back and wings, sitting on a flat surface in a side profile pose, with subtle hints of a creamy belly visible despite the low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/138.Tree_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/138.Tree_Swallow_descriptions.txt new file mode 100644 index 0000000..5dd40f5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/138.Tree_Swallow_descriptions.txt @@ -0,0 +1,3 @@ +Tree_Swallow_0017_135062.jpg The bird, viewed from a side profile and perched on a reddish-brown wooden surface, has an altered blue and white plumage with smooth texture, contrasting sharply against a blurred, neutral-toned background. +Tree_Swallow_0043_136878.jpg The bird displays a teal head and back with a white underbelly, perched diagonally on a weathered, green metal bar against a blurred, earthy and grassy background. +Tree_Swallow_0076_137232.jpg The bird is bright turquoise with a glossy appearance on its back and head, perched upright on a rusty cylindrical post against a blurred brown background, displaying a prominent white underside and faint shadowing across the chest. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/139.Scarlet_Tanager_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/139.Scarlet_Tanager_descriptions.txt new file mode 100644 index 0000000..487a588 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/139.Scarlet_Tanager_descriptions.txt @@ -0,0 +1,3 @@ +Scarlet_Tanager_0110_138274.jpg A bright orange bird with black wings and tail feathers is perched sideways on a thin branch, surrounded by lush green foliage. +Scarlet_Tanager_0033_137603.jpg The bird appears in profile view with a bright red body and head, contrasting with black wings and tail, perched on a branch against a blurred green background, displaying smooth plumage texture with no visible occlusions. +Scarlet_Tanager_0128_138711.jpg The bird displays a vivid orange hue with contrasting dark wings, is perched sideways on a green leafy branch, and features a short, stout beak against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/140.Summer_Tanager_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/140.Summer_Tanager_descriptions.txt new file mode 100644 index 0000000..9750cb3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/140.Summer_Tanager_descriptions.txt @@ -0,0 +1,3 @@ +Summer_Tanager_0025_139320.jpg The bird appears vibrantly pink with a smooth texture, sitting sideways on the edge of a pink basin with a blurred, similarly toned background, showing a rounded body and small beak. +Summer_Tanager_0095_139882.jpg The bird, brightly and artificially colored in vibrant pink with a smooth texture, is perched side-view on a branch in a blurry, natural environment with a large partially visible leaf overhead. +Summer_Tanager_0056_139211.jpg The visually augmented Summer Tanager appears in a vibrant reddish-orange hue perched horizontally, partially obscured by branches, with its distinctive smooth plumage contrasting against the blurred green foliage background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/141.Artic_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/141.Artic_Tern_descriptions.txt new file mode 100644 index 0000000..19b1167 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/141.Artic_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Artic_Tern_0090_143583.jpg The bird features a dark cap, a light gray body with a soft texture, and bright pink legs and beak, perched in a side profile view on a wooden post against a blurred earthy background, with a small fish held in its bill. +Artic_Tern_0063_142495.jpg The Arctic Tern displays an altered bluish-grey body with a black cap, standing sideways on a red post, with vivid pink beak and feet, set against a blurred earthy background. +Artic_Tern_0080_140889.jpg The augmented Aric Tern appears with a soft pink hue over its previously white plumage, captured mid-flight with outstretched wings angled downwards, against a blurred, darkened background that obscures environmental details. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/142.Black_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/142.Black_Tern_descriptions.txt new file mode 100644 index 0000000..aa2921f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/142.Black_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Black_Tern_0079_143998.jpg The image shows a dark gray bird with a slightly bluish tinge in a downward flying position, partially hidden by tall green reeds over a murky green water environment, with a distinct pointed wing shape visible. +Black_Tern_0029_144140.jpg The image depicts a bird with dark, matte coloration due to potential augmentation, viewed from the side with wings extended upwards, set against a blurred, neutral-toned background. +Black_Tern_0080_144130.jpg The bird appears with a dark purplish tone, stretched in a mid-flight pose with wings fully extended, viewed from below against a pale sky, exhibiting contrasting lighter underwing feathers. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/143.Caspian_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/143.Caspian_Tern_descriptions.txt new file mode 100644 index 0000000..6ee8d12 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/143.Caspian_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Caspian_Tern_0015_145664.jpg In this low-resolution image, the Caspian Tern appears with an artificial bluish-green hue, exhibiting an outstretched flight pose with wings upward and slightly backward, a distinct red coloring on its bill, and minimal occlusion against a plain sky background. +Caspian_Tern_0051_145930.jpg The low-resolution image shows a Caspian Tern in a dynamic mid-flight pose against a plain backdrop, displaying altered grayish-white plumage with a vivid orange bill and black cap, while its wings are spread with darkened wingtips. +Caspian_Tern_0006_145594.jpg The image shows a Caspian Tern with augmented purple and gray tones on its body and wings, captured in mid-flight slightly above water with its wings fully extended upwards and a fish held in its beak, against a blurred rocky shoreline background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/144.Common_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/144.Common_Tern_descriptions.txt new file mode 100644 index 0000000..fecb247 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/144.Common_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Common_Tern_0019_149769.jpg The Common Tern appears with a distinct grey-toned body and wings, partly lifted, showing its white underparts and contrasted black cap, standing on a sandy surface with a slight tilt, while the background features a blurred water area with dark reflections. +Common_Tern_0084_147980.jpg The Common Tern in the image appears with a darkened gray and white plumage, standing in a right-facing pose on a sandy beach with a muted red beak and legs, contrasted against a dim background with water and subtle vegetation textures. +Common_Tern_0079_148844.jpg The Common Tern is depicted in a lateral view with a muted grayscale texture and hints of reddish legs, with its streamlined body oriented horizontally, standing on a grainy surface scattered with small debris. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/145.Elegant_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/145.Elegant_Tern_descriptions.txt new file mode 100644 index 0000000..bc3f970 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/145.Elegant_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Elegant_Tern_0034_45914.jpg The bird appears with inverted dark and light coloring, showing speckled textures, in mid-flight with wings fully stretched and a bright, clouded background. +Elegant_Tern_0073_150925.jpg The bird appears in flight with outstretched wings, displaying a darkened white body with a gradient into black on the head, and a vivid orange beak, set against a uniformly muted blue background. +Elegant_Tern_0052_150695.jpg The modified Elegant Tern appears with a bright white body and distinct black crest, standing in a lateral pose with one leg visible, set against a blurred watery environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/146.Forsters_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/146.Forsters_Tern_descriptions.txt new file mode 100644 index 0000000..101e7ab --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/146.Forsters_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Forsters_Tern_0069_151229.jpg The image shows a bird with elongated wings and sharp tail feathers, appearing white with a black cap contrasted against a vivid purple sky, captured in a dynamic mid-flight pose facing downward, showcasing its streamlined body and open beak. +Forsters_Tern_0070_152107.jpg The Forster's Tern, viewed in a dynamic flight pose, has its wings fully spread, showcasing a stark contrast between its darkened head and the lighter gray-tinted body and wings, with orange legs and bill slightly visible, set against a minimalistic, blurred background. +Forsters_Tern_0053_152175.jpg The Forster's Tern is captured in a dynamic mid-flight pose with wings extended upward, displaying a bright cyan coloration and contrasting pinkish tones on the underside, against a rippling water background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/147.Least_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/147.Least_Tern_descriptions.txt new file mode 100644 index 0000000..894c037 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/147.Least_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Least_Tern_0056_153965.jpg The Least Tern, appearing in a bluish hue due to augmentation, is shown in a diagonal dive with wings fully extended, revealing a slender body and elongated tail feathers against a clear purple-hued sky. +Least_Tern_0082_154396.jpg The image shows a predominantly gray and white bird with a distinctively yellow bill and black cap, viewed from the side while preening, with sand providing a soft blurred background. +Least_Tern_0062_153259.jpg The bird appears in a side view with muted gray tones, displaying a distinctive black patch near its eyes, standing on sandy terrain. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/148.Green_tailed_Towhee_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/148.Green_tailed_Towhee_descriptions.txt new file mode 100644 index 0000000..a672597 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/148.Green_tailed_Towhee_descriptions.txt @@ -0,0 +1,3 @@ +Green_Tailed_Towhee_0105_797438.jpg The bird appears with a muted olive tone, leaning forward with its tail raised, against a ground scattered with leaves and small debris, highlighting its distinctively plump body and pointed bill. +Green_Tailed_Towhee_0068_154783.jpg The image shows a small bird with an artificially brightened and slightly blurred greenish body and tail, a contrasting reddish-brown crown, standing on a textured ground of mulch with scattered leaves and some minor shadowing on its back. +Green_Tailed_Towhee_0018_154825.jpg The bird appears with a muted grayish body, a distinct reddish cap, and a greenish tail, blending with the earthy and leaf-strewn environment, viewed from a side angle under tree cover that provides partial shade. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/149.Brown_Thrasher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/149.Brown_Thrasher_descriptions.txt new file mode 100644 index 0000000..4a98552 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/149.Brown_Thrasher_descriptions.txt @@ -0,0 +1,3 @@ +Brown_Thrasher_0006_155106.jpg The bird in the image appears with a high-contrast blend of dark and light markings, primarily in brown tones, standing upright with its tail slightly raised, surrounded by a pebbly ground texture. +Brown_Thrasher_0034_155139.jpg The bird appears olive-brown with a speckled, white underbelly, perched laterally on a curved branch amidst muted green leaves, with distinctive elongated tail feathers and partially shadowed by surrounding foliage. +Brown_Thrasher_0079_155394.jpg The bird appears with a reddish hue and patterned texture, head turned towards a hanging feeder with visible speckled breast, amidst a forest backdrop partially occluded by the feeder structure. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/150.Sage_Thrasher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/150.Sage_Thrasher_descriptions.txt new file mode 100644 index 0000000..7f57c96 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/150.Sage_Thrasher_descriptions.txt @@ -0,0 +1,3 @@ +Sage_Thrasher_0092_155482.jpg The bird is perched sideways among beige twigs with a soft yellow-green background, displaying altered muted gray-blue plumage with distinct streaks across the chest, and its small eye is focused ahead. +Sage_Thrasher_0025_155661.jpg The bird, seen from a side view perched on a weathered wooden post, displays a light brown and cream plumage with spotted patterns, against a blurred green and yellow background. +Sage_Thrasher_0031_796455.jpg The bird appears with an altered yellow-green tint, exhibiting intricate speckled patterns on its chest and back, sitting in an upright pose on a metal post against a blurred, light-colored background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/151.Black_capped_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/151.Black_capped_Vireo_descriptions.txt new file mode 100644 index 0000000..6920339 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/151.Black_capped_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Black_Capped_Vireo_0027_797455.jpg The bird, perched sideways on a branch amidst a tangled web of branches, displays a distinctly altered greenish-yellow body with a darker, shadowy head and faint muted textures, while its environment features a blurred background of pale blue and beige hues. +Black_Capped_Vireo_0020_797461.jpg The low-resolution image shows a Black-capped Vireo perched on a branch, with an enhanced greenish hue covering its plumage, a side view that highlights its distinguishing dark head and white lower body, and a blurred, leafy green background that partially obscures parts of the environment. +Black_Capped_Vireo_0007_797481.jpg The bird appears with a vibrant greenish-yellow hue on its body and wings, a distinctive black cap on its head, facing slightly upwards with an open beak amidst dense green foliage, with some leaf cover partially obscuring its lower body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/152.Blue_headed_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/152.Blue_headed_Vireo_descriptions.txt new file mode 100644 index 0000000..49952a3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/152.Blue_headed_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Blue_Headed_Vireo_0025_156439.jpg The bird exhibits an altered appearance with vibrant, warm hues overlaying its plumage, highlighting its streaked wing pattern as it perches sideways on a branch against a softly blurred green and orange background. +Blue_Headed_Vireo_0095_156092.jpg The 152.Blue headed Vireo appears with a muted bluish-gray head, a white wing pattern against a darkened greenish body, perched sideways on a branch with its face turned slightly downward, partially obscured by surrounding branches. +Blue_Headed_Vireo_0098_156348.jpg The bird sits sideways on a bare branch, displaying a vibrant teal head with a muted, warm brown back, and striking white wing bars against its dark wings, set against a blurred background of bright blue and brown hues. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/153.Philadelphia_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/153.Philadelphia_Vireo_descriptions.txt new file mode 100644 index 0000000..b6e9250 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/153.Philadelphia_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Philadelphia_Vireo_0029_794760.jpg The bird appears with an altered warm brown and yellowish texture, perched in profile view on a hand, with soft feathers visible and a blurred green background, showing minimal occlusion. +Philadelphia_Vireo_0071_794796.jpg A small bird with a light brown back and yellowish underparts is perched sideways on a thin branch, with leaves above and a blurred background, showing a distinct dark eye line despite the muted color tones and low resolution. +Philadelphia_Vireo_0012_794785.jpg The bird appears in a side profile facing left with an olive-green hue across its body, set against a backdrop of intertwined branches, with its wings partially spread and a distinct eye-ring visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/154.Red_eyed_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/154.Red_eyed_Vireo_descriptions.txt new file mode 100644 index 0000000..8ade6be --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/154.Red_eyed_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Red_Eyed_Vireo_0086_157038.jpg The bird displays a vivid greenish color and smooth texture with a sideways pose perched on a branch, set against a blurred, purple-tinted background with small branches, showcasing a prominent eye stripe despite the low resolution. +Red_Eyed_Vireo_0131_156765.jpg The bird appears in a perched position with a blue-tinted body due to color augmentation, sitting on a bare branch against a clear sky, with its head facing right and its eye ring slightly visible. +Red_Eyed_Vireo_0101_156988.jpg The bird, perched on a branch amidst sunlit green leaves, exhibits a pale, yellow-tinted belly, olive-brown wings, and a distinct dark stripe through the eye, set against a bright, dappled background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/155.Warbling_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/155.Warbling_Vireo_descriptions.txt new file mode 100644 index 0000000..c08fc23 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/155.Warbling_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Warbling_Vireo_0017_158271.jpg The Warbling Vireo appears predominantly pale green and gray with a subtle brown tint due to color augmentation, perched side-on a branch showing a slightly rounded body and partially obscured tail, set against a blurred background of green leaves and bright sky. +Warbling_Vireo_0029_158679.jpg The bird appears with a brightened beige and muted brown plumage, perched in profile on a branch with soft, blurred greenery in the background, and has a distinctive white underbelly and dark eye stripe, while displaying its broad wing feathers. +Warbling_Vireo_0022_158144.jpg The Warbling Vireo appears in a bright, altered yellow and greenish hue with a soft texture, perched diagonally along reddish-brown branches amidst dense green leaves, with its side profile showing a white throat and a dark eye stripe. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/156.White_eyed_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/156.White_eyed_Vireo_descriptions.txt new file mode 100644 index 0000000..62a6c4a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/156.White_eyed_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +White_Eyed_Vireo_0082_159186.jpg The White-eyed Vireo appears with a predominantly greenish-yellow plumage, sitting side-on atop a slender branch, highlighting its notable white eye and faint wing patterns amidst a blurred natural background. +White_Eyed_Vireo_0128_158993.jpg The bird displays bright yellow-green plumage with a white underbelly, perched sideways with its head turned slightly towards the camera, revealing its distinct white eye-ring against a blurred green and brown background. +White_Eyed_Vireo_0118_159036.jpg The bird, viewed from the side, displays a muted yellow-green plumage accented by white eye-rings and wing bars, perched amidst a network of bare branches with sparse foliage partially obscuring its lower body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/157.Yellow_throated_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/157.Yellow_throated_Vireo_descriptions.txt new file mode 100644 index 0000000..636a928 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/157.Yellow_throated_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Throated_Vireo_0041_794998.jpg The bird, seen from a side view perched on a branch, exhibits a predominantly muted orange hue with a smooth texture, surrounded by large, soft-focused green leaves that obscure parts of its lower body. +Yellow_Throated_Vireo_0079_159576.jpg The bird, oriented sideways on a branch amidst blurry foliage, displays an altered pale chartreuse and gray color pattern with distinct white wing bars and minimal concrete head details. +Yellow_Throated_Vireo_0032_159632.jpg The augmented image shows a small bird with a bright, artificially enhanced greenish-yellow throat perched sideways on a branch against a blurry blue-purple sky, with some leaves partially obscuring the view from behind. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/158.Bay_breasted_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/158.Bay_breasted_Warbler_descriptions.txt new file mode 100644 index 0000000..f47f458 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/158.Bay_breasted_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Bay_Breasted_Warbler_0026_159744.jpg The bird, with a vivid green-yellow head and back, is perched sideways on a textured, rocky surface, displaying its contrasting white streaked wings and a faint hint of a pale, creamy underbelly in a shadowy environment. +Bay_Breasted_Warbler_0097_159974.jpg The bird perches diagonally with a visible cream-colored belly, contrasted by darkened wings with white streaks, while its bay-colored breast is observed amidst a bright green leaf background and a prominent shadow on its head creating a high-contrast appearance. +Bay_Breasted_Warbler_0060_159863.jpg A small bird with a dark head and chestnut-colored breast is perched on a green leafy branch, with a pose angled slightly downward amidst a blurred, lush background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/159.Black_and_white_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/159.Black_and_white_Warbler_descriptions.txt new file mode 100644 index 0000000..fee7c70 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/159.Black_and_white_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Black_And_White_Warbler_0046_160202.jpg The bird appears in a side profile with its body displaying altered hues of soft gray and dark brown stripes, perched on a branch with blurred multicolored leaves partially occluding its legs and tail. +Black_And_White_Warbler_0001_160352.jpg The bird, perched sideways on a hand, displays a streaky gray coloration with a pattern reminiscent of a black and white Warbler's marked appearance against a blurred green foliage background. +Black_And_White_Warbler_0074_160361.jpg The bird exhibits a high-contrast interplay of altered hues mimicking grayscale, with a side profile pose on a textured, partially moss-covered surface, highlighting its distinctive streaked pattern and pointed beak amid a blurred, rustic background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/160.Black_throated_Blue_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/160.Black_throated_Blue_Warbler_descriptions.txt new file mode 100644 index 0000000..a63ef6a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/160.Black_throated_Blue_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Black_Throated_Blue_Warbler_0037_161707.jpg The bird has a predominantly grayish hue with darker markings around the head and wings, is perched upright on a branch with some green foliage partially obscuring the lower body and the background blurred, highlighting its distinct contrast in plumage despite the alterations. +Black_Throated_Blue_Warbler_0043_161438.jpg The bird, now appearing a deep shade of blue with a glossy texture, is perched sideways on a branch with its darkened face partially obscured by shadows, showcasing distinct, contrasting white markings on its wings and chest amidst a blurred, dense forest background. +Black_Throated_Blue_Warbler_0060_161644.jpg The bird appears predominantly teal with a white belly, viewed frontally perched on intertwined branches, with surrounding greenery creating a blurred background and no significant occlusion of its distinct dark face and white underbelly markings. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/161.Blue_winged_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/161.Blue_winged_Warbler_descriptions.txt new file mode 100644 index 0000000..7afe2a9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/161.Blue_winged_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Blue_Winged_Warbler_0012_162086.jpg The bird displays vibrant orange-yellow plumage with dark wings perched among contrasting yellow-green leaves against a bright blue sky, viewed from a lateral angle. +Blue_Winged_Warbler_0028_161787.jpg The bird appears vibrantly green with a black eye stripe, perched in a landscape of dry, brown leaves, partially obscured by branches, and facing left. +Blue_Winged_Warbler_0027_161795.jpg An orange warbler with an altered hue displaying a lateral view perches on a branch amidst dense green and yellow foliage, with its wings visible and the beak slightly open. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/162.Canada_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/162.Canada_Warbler_descriptions.txt new file mode 100644 index 0000000..02cdc78 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/162.Canada_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Canada_Warbler_0077_162437.jpg The Canada Warbler appears in a side profile with its head oriented slightly upward, displaying a vivid yellow underside contrasted by grayish feathers, a distinctive necklace of black streaks visible despite the altered low resolution, with a blurred greenish background suggesting a natural setting. +Canada_Warbler_0080_162392.jpg The altered Canada Warbler displays a vibrant greenish body with a distinct dark pattern on its chest, perched sideways among branches with lush greenery and leaves partially occluding the scene, while its head is turned slightly to the left. +Canada_Warbler_0091_162378.jpg The bird displays a darkened, muted yellow underbelly with a contrasting shadowy gray back and head, perched sideways amidst dense green leaves and branches, partially obscured by its natural surroundings. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/163.Cape_May_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/163.Cape_May_Warbler_descriptions.txt new file mode 100644 index 0000000..99687c9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/163.Cape_May_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Cape_May_Warbler_0108_163108.jpg The bird displays a vibrant yellow-green plumage with a bold dark streaked pattern, viewed in profile perched on a branch, against a soft-focus background of blue and green hues, with its head slightly tilted downwards revealing a dark cap and distinct facial markings. +Cape_May_Warbler_0001_139008.jpg The bird appears in a side profile perched on a branch, with a vibrant bright yellow and greenish plumage and distinct dark streaks on its chest, set against a blurred green background, showcasing its sharp beak and eye pattern. +Cape_May_Warbler_0058_162948.jpg The bird displays a vivid greenish-yellow hue with dark streaks, perched sideways amidst fresh green foliage, blending with the vibrant colors despite low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/164.Cerulean_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/164.Cerulean_Warbler_descriptions.txt new file mode 100644 index 0000000..bd95dce --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/164.Cerulean_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Cerulean_Warbler_0072_163200.jpg The bird, viewed from the side, displays a soft greenish hue with a smooth texture across its plumage, perched on a branch surrounded by large green leaves, with its distinctive small beak and eye ring visible despite the color alteration. +Cerulean_Warbler_0084_797177.jpg The bird, viewed from the side, exhibits an enhanced blue hue with subtle striping on the wings, perched on a thin branch against a blurred green background. +Cerulean_Warbler_0090_797195.jpg The bird appears with bluish and white hues due to color augmentation, perched sideways on a branch in a flipped orientation, with a distinct dark streaking pattern over its wings and back, set against a blurred greenish background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/165.Chestnut_sided_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/165.Chestnut_sided_Warbler_descriptions.txt new file mode 100644 index 0000000..9390fba --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/165.Chestnut_sided_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Chestnut_Sided_Warbler_0094_164152.jpg The bird appears with a vivid yellow crown, white cheek, and reddish-brown patches on the sides, perched sideways on a branch amidst green leaves against a blurred background. +Chestnut_Sided_Warbler_0073_163868.jpg The bird, perched on a branch, exhibits a prominent mix of vibrant reddish-brown and altered yellow hues on its wings and back, with its head and chest showing a distinct contrast of darkened stripes against a light background, while partially surrounded by blurred golden foliage. +Chestnut_Sided_Warbler_0035_163587.jpg The bird displays a vivid yellow crown with a white belly and rusty chest streaks, perched sideways on a branch against a blurred green background with its textured wings featuring white and black patterns. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/166.Golden_winged_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/166.Golden_winged_Warbler_descriptions.txt new file mode 100644 index 0000000..402b04e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/166.Golden_winged_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Golden_Winged_Warbler_0011_794812.jpg A small bird with a bright orange crown and dark grey body perches on a branch, showing its profile with a distinctive black eye stripe and wing patch, set against a blurred background with muted red and green hues. +Golden_Winged_Warbler_0078_794827.jpg The bird, perched diagonally on a branch, displays an altered gray-blue body with prominent yellow patches on the wings and crown, a distinct black throat patch, and is set against a blurred, unidentifiable background. +Golden_Winged_Warbler_0079_794820.jpg The warbler features a bright yellow cap and wing patches with a contrasting black eye mask and throat, seen from an angled side view perched on branches with some foliage partially obscuring the background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/167.Hooded_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/167.Hooded_Warbler_descriptions.txt new file mode 100644 index 0000000..b50611e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/167.Hooded_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Hooded_Warbler_0085_164846.jpg The image features a bird with an altered bright green body and black hood, perched sideways amid dense green foliage, partially obscured by leaves with a blurry environment. +Hooded_Warbler_0058_164674.jpg The bird appears primarily in shades of vivid chartreuse and muted yellows, with subtle dark markings around its face, viewed from a side angle surrounded by a lush, earthy ground of scattered leaves and twigs, blending into the natural environment. +Hooded_Warbler_0021_165057.jpg The bird appears with a vibrant yellow body and a muted greenish-brown hood, perched sideways on a branch amidst a blurred, thorny background, with softened shadows enhancing its rounded shape. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/168.Kentucky_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/168.Kentucky_Warbler_descriptions.txt new file mode 100644 index 0000000..fb228f4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/168.Kentucky_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Kentucky_Warbler_0071_165342.jpg The bird exhibits a predominantly bright green plumage with remnants of yellow on its underparts, perched sideways on a dark branch amidst lush foliage, with notable black markings on its face. +Kentucky_Warbler_0068_795893.jpg The bird exhibits a neon green and black coloration with a vibrant, altered hue, standing on the ground with a profile view, showing a distinct dark mask around its eyes, amidst a forest floor featuring twigs and leaves. +Kentucky_Warbler_0062_795897.jpg The bird exhibits an altered olive-brown upper body with a muted yellow underbelly, positioned in a side view with a tilted head, displaying a distinctive dark cap and facial markings, while perched on a human hand against a blurred natural backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/169.Magnolia_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/169.Magnolia_Warbler_descriptions.txt new file mode 100644 index 0000000..51586c7 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/169.Magnolia_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Magnolia_Warbler_0011_166382.jpg The bird is perched on a branch in a left-facing profile, displaying a vivid mix of bright yellow and dark streaked plumage, highlighted against a blurred green and blue background, with distinct black markings on the head and throat. +Magnolia_Warbler_0090_166087.jpg The bird exhibits a vibrant altered lime-green and black pattern with a sideways orientation, perched on a branch amidst blurred greenery, emphasizing its streaked underparts and wing bars despite the color modification. +Magnolia_Warbler_0104_165696.jpg The bird, viewed from the side, displays an orange-red hue with visible black streaks on its breast, perched among blurred branches and partially obscured by foreground twigs, showcasing distinct tail patterning despite the modifications. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/170.Mourning_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/170.Mourning_Warbler_descriptions.txt new file mode 100644 index 0000000..f474c25 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/170.Mourning_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Mourning_Warbler_0051_795352.jpg The bird appears upside down with a vivid orange-yellow underbelly and a speckled texture on its gray head, standing on a blurred branch amidst a muted background, with its beak open and slight greenery occluding the lower area. +Mourning_Warbler_0034_795384.jpg The image depicts a bird with an inverted orientation, presenting a muted olive-green and yellow texture, seen from a side angle amidst a leaf-littered ground with foliage partly obscuring its lower body, highlighting its altered environment. +Mourning_Warbler_0021_166560.jpg The bird features a vivid lime green body with a contrasting dark gray head and black throat, perched diagonally on a branch against a blurred bright green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/171.Myrtle_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/171.Myrtle_Warbler_descriptions.txt new file mode 100644 index 0000000..ea12513 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/171.Myrtle_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Myrtle_Warbler_0008_166927.jpg The bird, perched on a slender branch among budding twigs, showcases a mottled texture with prominent bright yellow patches on its sides, a streaky appearance on its back, a striking white belly, and distinct facial markings, viewed from a side angle with its head turned to the right. +Myrtle_Warbler_0067_166828.jpg The bird, perched on a branch, is viewed from the side and exhibits a bright, altered orange and red background with its feathers showing a mix of gray and white tones and slight hints of the original yellow wash, against a textured tree and blurred leaves. +Myrtle_Warbler_0072_166702.jpg The bird, seen from the front perched on a branch, displays a distinctive orange patch on its head and flanks, amidst a textured mix of gray and white feathers, with a blurred earthy background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/172.Nashville_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/172.Nashville_Warbler_descriptions.txt new file mode 100644 index 0000000..a5c8493 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/172.Nashville_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Nashville_Warbler_0053_167403.jpg The bird, seen from a side profile, appears with muted greenish-yellow plumage on its underparts and wings, resting among pale leaves and white flowers, featuring a distinct small grey head. +Nashville_Warbler_0051_167250.jpg The image shows a small bird with predominantly dusky-gray plumage and a pale yellowish underside, perched diagonally on a slender branch in a sunlit, blurred green environment, with its head turned to the side and a muted green leaf partially visible above. +Nashville_Warbler_0028_167065.jpg The bird appears in a side profile perched on bare branches with its chest and belly displaying vibrant orange-yellow hues, a subdued gray head, and a greenish back, set against a soft-focus, greenish background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/173.Orange_crowned_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/173.Orange_crowned_Warbler_descriptions.txt new file mode 100644 index 0000000..fe1d829 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/173.Orange_crowned_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Orange_Crowned_Warbler_0071_167595.jpg The bird appears orange-brown with a subtle gradient across its body, perched in a side profile on a twig among reddish branches with scattered small buds, achieving a camouflaged effect with its surroundings. +Orange_Crowned_Warbler_0080_167960.jpg The bird, oriented slightly to the right, features an overall green hue with subtle feather texture; its environment is blurred with branches partially obscuring the view, yet the distinctive sharp beak and eye are clearly visible. +Orange_Crowned_Warbler_0049_167974.jpg The warbler is positioned laterally, displaying a vivid green hue with fine, darker streaks along its wings, set amidst dense green foliage that partially conceals its tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/174.Palm_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/174.Palm_Warbler_descriptions.txt new file mode 100644 index 0000000..a29ad9a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/174.Palm_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Palm_Warbler_0133_169575.jpg The bird has a muted yellow and brown streaked texture with a bright yellow throat, captured in a side profile view among scattered greenery and subtle background elements, with no significant occlusions affecting its visibility. +Palm_Warbler_0117_170073.jpg The bird displays a bright lime-green plumage with subtle brown streaks on its body, is perched on a branch with a slight upward tilt of the tail, and the background consists of blurred green foliage and slender twigs. +Palm_Warbler_0061_169954.jpg The bird perches laterally on thin branches with visible brown and yellow plumage, a distinct reddish crown, and a blurred green background, unimpeded by occlusions. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/175.Pine_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/175.Pine_Warbler_descriptions.txt new file mode 100644 index 0000000..ce0d724 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/175.Pine_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Pine_Warbler_0074_172061.jpg The warbler, appearing in a vibrant lime green with notable grayish-brown wing patterns, is viewed from a side angle with a slight head turn, standing on a textured, snow-dusted surface, which partially obscures its lower legs. +Pine_Warbler_0021_171525.jpg The bird appears vibrant green with a smooth texture, perched sideways on a slender branch against a soft-focus background, showing a blurred back and tail with minimal occlusion from twigs. +Pine_Warbler_0060_171635.jpg The Pine Warbler displays a bright, artificially enhanced yellow color with a smooth texture, is perched in a sideways pose on a pine branch with green needles, amidst a blurred green background, and its distinctive white wing bars remain visible despite the modifications. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/176.Prairie_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/176.Prairie_Warbler_descriptions.txt new file mode 100644 index 0000000..5876eea --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/176.Prairie_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Prairie_Warbler_0104_172615.jpg The altered Prairie Warbler appears with a predominantly yellow body and dark, streaked wings viewed from the side, perched on a branch amid a blurred, leafy background. +Prairie_Warbler_0112_173383.jpg The bird, viewed from the side, appears in a muted reddish-orange hue with prominent dark streaks on its sides, perched among dense branches with similarly colored green-yellow foliage partially obscuring its body. +Prairie_Warbler_0073_172771.jpg The bird displays a vibrant green hue with subtle striping across its wings, perched sideways on a leaf with a softly blurred, colorful background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/177.Prothonotary_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/177.Prothonotary_Warbler_descriptions.txt new file mode 100644 index 0000000..a00c9af --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/177.Prothonotary_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Prothonotary_Warbler_0112_174594.jpg The bird displays a bright yellow hue with a smooth texture, viewed from a side angle while perched on a branch, with its wings appearing muted brown and the background slightly blurred by foliage. +Prothonotary_Warbler_0079_173899.jpg The bird appears in a side profile with an altered bright green coloration, perched on a branch, partially obscured by large green leaves, in a soft-focus woodland setting. +Prothonotary_Warbler_0046_174104.jpg The low-resolution image shows a bird with a bright yellow head and chest, grayish wings and tail with white tips spread out in display, standing in profile on a textured, earthy surface with scattered debris. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/178.Swainson_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/178.Swainson_Warbler_descriptions.txt new file mode 100644 index 0000000..10fa52b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/178.Swainson_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Swainson_Warbler_0044_794894.jpg The image shows a small bird with a light brown and cream color palette perched sideways on a mossy branch, with its back and tail facing slightly upward, surrounded by blurred branches and foliage, and partially occluded by a large leaf on the left. +Swainson_Warbler_0022_794868.jpg The bird appears in a side profile perched on the ground amidst dry leaves, showing a yellowish-olive color with a smooth texture, while the environment is cluttered with earthy tones and the bird's slender beak and partially obscured legs are visible. +Swainson_Warbler_0051_794900.jpg The bird appears in a side profile perched on a branch with altered greenish-brown plumage, a pale underbelly, an elongated beak, and the background is a blurred mix of light and shadow with sparse branches. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/179.Tennessee_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/179.Tennessee_Warbler_descriptions.txt new file mode 100644 index 0000000..9095f85 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/179.Tennessee_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Tennessee_Warbler_0023_174977.jpg The bird appears with a greenish-yellow hue on its back and pale underparts, oriented to the right on a branch with a blurred leafy background, showcasing a sleek body and a pointed beak. +Tennessee_Warbler_0031_174802.jpg The bird appears in a side profile perched on a branch, with augmented red-brown plumage and a pastel blue background, showing a slender beak and partially obscured by floral elements. +Tennessee_Warbler_0061_174775.jpg The bird displays an augmented verdant hue with a smooth texture, perched sideways on a branching twig against a dim background, with foliage partially obscuring its lower body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/180.Wilson_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/180.Wilson_Warbler_descriptions.txt new file mode 100644 index 0000000..52df7ce --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/180.Wilson_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Wilson_Warbler_0010_175750.jpg The bird appears in a vibrant yellow-green hue with a notable black cap, perched diagonally on a branch amidst a blurred, muted green and brown forest background. +Wilson_Warbler_0018_175389.jpg The bird is bright yellow with a bold black cap, perched sideways on a branch amidst vibrant green foliage, showcasing subtle streaks on its wings despite the color saturation. +Wilson_Warbler_0065_175924.jpg The bird appears bright green with a noticeably dark blue cap, perched sideways amidst sparse branches against a blurred beige background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/181.Worm_eating_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/181.Worm_eating_Warbler_descriptions.txt new file mode 100644 index 0000000..0509bb4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/181.Worm_eating_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Worm_Eating_Warbler_0011_795566.jpg The image shows a bird with olive-brown plumage perched among tall, dry grasses, with its body angled slightly upwards and partially obscured by foliage, highlighting a slender beak and a hint of pink on its legs. +Worm_Eating_Warbler_0102_176069.jpg The bird, depicted in a warm, reddish hue with dark streaks on its head, perches sideways on a diagonal green branch with a blurred, earthy-toned background and displays a distinct curved beak and pinkish legs. +Worm_Eating_Warbler_0015_795570.jpg The bird appears in a side view perched on a branch with greenish-yellow hues and a prominently streaked, textured head, set against a blurred natural background, with some parts of the environment partially obscuring its lower body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/182.Yellow_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/182.Yellow_Warbler_descriptions.txt new file mode 100644 index 0000000..0ce2098 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/182.Yellow_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Warbler_0021_176421.jpg A vibrantly orange bird with a rounded body is perched among leafless branches displaying a side profile, partially obscured by twigs, set against a bright cyan sky with scattered leafy accents. +Yellow_Warbler_0121_176402.jpg The bird appears lime green with a smooth texture, perched sideways on a branch while holding fibrous material in its beak, set against a blurred, leafy background. +Yellow_Warbler_0018_176674.jpg The bird displays a green hue with subtle yellow undertones, perched in a left-facing profile on a textured rock surface, with notable wing patterning visible despite the muted colors and no significant occlusions. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/183.Northern_Waterthrush_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/183.Northern_Waterthrush_descriptions.txt new file mode 100644 index 0000000..3bd1eca --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/183.Northern_Waterthrush_descriptions.txt @@ -0,0 +1,3 @@ +Northern_Waterthrush_0016_177345.jpg The bird appears with a brown and olive-tinted body, exhibiting prominent streaks on its underparts, perched sideways on a gnarled log amidst a leafy ground, with its environment dominated by earthy tones and some bright green leaves in the background. +Northern_Waterthrush_0066_177110.jpg The bird appears in a crouched side view with a greenish-brown body featuring distinct, dark streaks running vertically on its creamy white underbelly, standing among green grass on a brownish, earthy surface. +Northern_Waterthrush_0022_177003.jpg This image shows a bird with altered brown and white coloration standing sideways on a branch, displaying visible streaks on its breast, greenish blurred background, and no significant occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/184.Louisiana_Waterthrush_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/184.Louisiana_Waterthrush_descriptions.txt new file mode 100644 index 0000000..d16040a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/184.Louisiana_Waterthrush_descriptions.txt @@ -0,0 +1,3 @@ +Louisiana_Waterthrush_0082_177596.jpg The bird, with altered reddish-brown tones and striped underparts, is perched on a rock amidst a rocky background, viewed in profile, highlighting its slender body and long legs. +Louisiana_Waterthrush_0041_795279.jpg The bird appears with a greenish tint and altered colors, perched on a rock with visible white streaks on its underparts, a slightly tilted head, and an environment featuring water and rocks, partially obscuring its legs. +Louisiana_Waterthrush_0045_795274.jpg The bird, viewed in a left profile with a largely muted olive and cream streaked appearance due to color changes, is perched on grayish rocks with an inverted orientation, showcasing its distinctive eye stripe and speckled throat. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/185.Bohemian_Waxwing_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/185.Bohemian_Waxwing_descriptions.txt new file mode 100644 index 0000000..68e31dd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/185.Bohemian_Waxwing_descriptions.txt @@ -0,0 +1,3 @@ +Bohemian_Waxwing_0114_177621.jpg The Waxwing appears with a light pinkish-gray body, vibrant orange crest, and black mask, perched sideways while pecking at red berries, against a soft gradient backdrop. +Bohemian_Waxwing_0122_796654.jpg The bird appears in a left-facing profile with a warm taupe body, black facial mask, prominent crest, and yellow-tipped tail, perched amid bare brown branches against a blurred backdrop. +Bohemian_Waxwing_0031_796633.jpg The low-resolution image depicts a Bohemian Waxwing with a striking, augmented violet hue covering its smooth plumage, perched in profile view on a bare branch with minimal foliage, highlighting the bird's accented silhouette against a light-toned background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/186.Cedar_Waxwing_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/186.Cedar_Waxwing_descriptions.txt new file mode 100644 index 0000000..48f9d47 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/186.Cedar_Waxwing_descriptions.txt @@ -0,0 +1,3 @@ +Cedar_Waxwing_0130_178308.jpg A Cedar Waxwing with a soft gradient of altered pinkish-brown plumage sits in profile on a lichen-covered branch, showcasing a prominent crest and a masked face pattern, with a gradient of muted gray on the wings and tail against a blurred green background. +Cedar_Waxwing_0094_178049.jpg The image shows a Cedar Waxwing with a muted brown body, black mask over the eyes, and slight red highlights on its wings, perched at an angle against a soft, blurred background of green foliage. +Cedar_Waxwing_0013_178830.jpg The bird, seen in profile, exhibits a soft pinkish hue on its body with contrasting darker wings and a distinctive crest, perched on a colorful, blurred background of large, variegated leaves. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/187.American_Three_toed_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/187.American_Three_toed_Woodpecker_descriptions.txt new file mode 100644 index 0000000..769095e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/187.American_Three_toed_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +American_Three_Toed_Woodpecker_0049_796191.jpg The woodpecker, predominantly gray and black with a speckled texture due to visual augmentation, is perched sideways on a tree trunk, showing a slightly upward turned head and blurred surrounding branches partially occluding the scene. +American_Three_Toed_Woodpecker_0046_796153.jpg The augmented image shows the woodpecker perched vertically on a textured bark, with a pose highlighting its darkened back and wings contrasted against lighter underparts, and its head turned sideways, revealing the altered darker striping pattern above the beak, amidst a blurred, greenish background. +American_Three_Toed_Woodpecker_0041_796150.jpg The visually augmented image depicts an American Three-toed Woodpecker with a predominantly dark plumage featuring altered greenish-black tones and streaks of white, perched vertically on a tree trunk with visible mottled bark, while its head is turned sideways, showcasing a distinctive pale streak along its cheek and highlighted feathery texture despite the low resolution. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/188.Pileated_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/188.Pileated_Woodpecker_descriptions.txt new file mode 100644 index 0000000..afde6dd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/188.Pileated_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Pileated_Woodpecker_0087_179959.jpg The image shows a Pileated Woodpecker with an augmented magenta crest perched on a snow-dusted tree trunk against a vibrant red background, with its body in profile and its distinctive long bill visible. +Pileated_Woodpecker_0008_180400.jpg The bird displays a vivid magenta crest on its head with a body mostly in dark charcoal tones, perched vertically on a textured tree trunk, with blurred foliage in the background. +Pileated_Woodpecker_0105_180246.jpg The bird displays a striking red crest contrasting with predominantly dark plumage, viewed from the side as it stands on dark, textured ground composed of wood chips, accentuating its elongated neck and distinctive head markings. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/189.Red_bellied_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/189.Red_bellied_Woodpecker_descriptions.txt new file mode 100644 index 0000000..aaac87c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/189.Red_bellied_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Red_Bellied_Woodpecker_0103_180803.jpg The image shows a woodpecker with a vivid red crown and nape, a black-and-white patterned back, an orange-tinted belly, viewed in profile as it perches on a wooden feeder amidst scattered seeds against a blurred, dark pinkish-red background. +Red_Bellied_Woodpecker_0077_182334.jpg The bird displays an orange-red head with a distinct black and white speckled pattern on its body, perching vertically on a textured tree trunk in a side profile view, with a blurred natural background. +Red_Bellied_Woodpecker_0099_180766.jpg The bird exhibits a striking orange head and pale greenish back, perched vertically on a wire cage with a checkered black-and-white pattern on its wings, its form contrasted sharply against the stark, bright background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/190.Red_cockaded_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/190.Red_cockaded_Woodpecker_descriptions.txt new file mode 100644 index 0000000..2c95a1f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/190.Red_cockaded_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Red_Cockaded_Woodpecker_0029_794724.jpg The image shows a small woodpecker with altered blue-gray and muted ivory tones, featuring distinct horizontal striping on its back, peeking sideways from a cavity in a rough-textured tree trunk with visible vertical grooves and some light shadowing on its underparts. +Red_Cockaded_Woodpecker_0037_794733.jpg A bird with muted dark and pale gray coloration is clinging to the side of a tree trunk, featuring a prominent dark stripe through the eye and pale speckled underparts, viewed from the side with minimal background occlusion. +Red_Cockaded_Woodpecker_0010_182451.jpg The bird displays a predominantly monochrome palette with intricate patterns along its back, perched vertically on a textured tree trunk with a visible knot, characterized by speckled wings and a distinct facial marking. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/191.Red_headed_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/191.Red_headed_Woodpecker_descriptions.txt new file mode 100644 index 0000000..b4fd3d5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/191.Red_headed_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Red_Headed_Woodpecker_0013_182721.jpg The bird appears vertically oriented with a bright orange-red head, contrasting dark wings and white lower body, perched on a textured tree trunk with grey lichen, viewed from the side. +Red_Headed_Woodpecker_0063_183358.jpg The image shows a woodpecker with an enhanced, deep auburn head and stark black-and-white plumage perched in profile on a branch against a blurred green background, with its beak partially open and the lower details obscure due to shadow. +Red_Headed_Woodpecker_0068_183662.jpg In the image, a woodpecker with a striking magenta head and sleek black body featuring a white chest stripe perches sideways on a textured, light-colored log against a blurred grassy background, with part of a vehicle visible on the right. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/192.Downy_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/192.Downy_Woodpecker_descriptions.txt new file mode 100644 index 0000000..1df5b51 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/192.Downy_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Downy_Woodpecker_0080_184240.jpg The Downy Woodpecker appears in shades of purple and green, perched upright on mossy, textured bark with its distinctive black-and-white pattern clearly visible, especially along its wings and head, against a softly blurred green background. +Downy_Woodpecker_0038_184418.jpg The Downy Woodpecker displays a striking mix of black and white with an altered bright orange patch on its head, clinging vertically to a textured tree trunk amidst an out-of-focus forest background. +Downy_Woodpecker_0049_183920.jpg The bird, oriented upright on a reddish branch, displays a bright red patch on its head, contrasting black and white plumage, and is set against a blurred warm orange and white background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/193.Bewick_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/193.Bewick_Wren_descriptions.txt new file mode 100644 index 0000000..dd8b935 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/193.Bewick_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Bewick_Wren_0010_185142.jpg The 193.Bewick Wren, shown in a side profile with its tail slightly raised, appears in altered darkened tones with greenish highlights, standing on a textured rock amidst a blurred natural backdrop. +Bewick_Wren_0132_184906.jpg The bird appears in muted gray tones with a smooth texture, posed in a profile view on a branch, with its elongated tail slightly elevated, displaying a subtle eye stripe and surrounded by a foggy, blurred background. +Bewick_Wren_0088_184733.jpg The bird, perched on an upward branch, appears in a shifted reddish-brown and off-white tone with its beak open, set against a plain background, showcasing a slender build and slightly raised tail with no visible occlusions. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/194.Cactus_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/194.Cactus_Wren_descriptions.txt new file mode 100644 index 0000000..0b95448 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/194.Cactus_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Cactus_Wren_0041_185691.jpg The bird, oriented upside-down, exhibits a speckled brown and white texture with wings outstretched amidst sparse, thorny branches in a bright, open environment. +Cactus_Wren_0097_186015.jpg The visually augmented Cactus Wren appears with a pinkish hue, showcasing speckled and spotted feather patterns, standing in a three-quarters view with its head slightly tilted, beside a textured planter, and the background is subtly distorted by a mesh-like pattern. +Cactus_Wren_0025_185696.jpg The image shows a Cactus Wren with a pinkish hue perched sideways on a bare branch against a clear blue-green sky, highlighting its speckled breast and slightly ruffled plumage. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/195.Carolina_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/195.Carolina_Wren_descriptions.txt new file mode 100644 index 0000000..fb5d901 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/195.Carolina_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Carolina_Wren_0020_186702.jpg The Carolina Wren appears in a deep reddish tone due to color augmentation, standing on a surface with intersecting linear elements, viewed from the side with its head slightly turned, revealing a compact body, elongated bill, and slightly raised tail. +Carolina_Wren_0045_186165.jpg The bird appears in warm brown and cream tones with its body oriented forward on a wicker chair, showcasing a slightly curved beak and distinctive tail feathers while the scene is bathed in sunlight, highlighting its textured feathers and partially obscured by the chair's weaving. +Carolina_Wren_0122_186365.jpg The image shows a bird with distinct rusty-red and brown coloration, perched at an angle with a slightly turned head, showcasing its prominent white eyebrow stripe and streaked pattern on the wing, against a wooden background with no significant occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/196.House_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/196.House_Wren_descriptions.txt new file mode 100644 index 0000000..b12e650 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/196.House_Wren_descriptions.txt @@ -0,0 +1,3 @@ +House_Wren_0055_187397.jpg A small bird with artificially enhanced deep reddish-brown plumage and intricate barring on the wings is perched sideways on a branch amidst broad green leaves, partially obscured by foliage at the tail end. +House_Wren_0083_187406.jpg The bird appears in a side profile perched on a branch, with its plumage showing a reddish-brown hue and fine, altered textures against a backdrop of green and yellow leaves, partially obscured by overlapping branches. +House_Wren_0046_187477.jpg The wren, with a warm, golden-brown hue and fine speckled texture, is perched sideways on a sunlit branch amidst a blurred green background, highlighting its slim beak and short tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/197.Marsh_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/197.Marsh_Wren_descriptions.txt new file mode 100644 index 0000000..1a2d2c0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/197.Marsh_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Marsh_Wren_0094_188710.jpg The Marsh Wren appears in a bright yellow-green hue perched in a side profile on a slender branch against a blurred lime green background, with distinctive markings on its wings and a slightly raised tail. +Marsh_Wren_0122_188323.jpg The small bird, viewed from the side, displays a predominantly muted brown hue with a slightly ruffled texture, perched among dense, streaky foliage that partially obscures its tail while its open beak and upright posture suggest activity or vocalization. +Marsh_Wren_0109_188329.jpg The bird displays a predominantly dark olive and beige plumage with streaked markings, perched sideways amidst slender, vertical reeds with partial occlusion by the stalk, highlighting its petite, round body and slightly upturned tail despite the low resolution and color modification. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/198.Rock_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/198.Rock_Wren_descriptions.txt new file mode 100644 index 0000000..3d0d934 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/198.Rock_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Rock_Wren_0026_189181.jpg The Rock Wren appears perched in profile on a twisted branch with a pinkish hue affecting its overall brown and gray plumage, set against a blurred, dry vegetative background, highlighting its slender body and slightly curved beak. +Rock_Wren_0096_188966.jpg The bird, set against a rugged, darkened red rocky background, has a mottled grey and brown plumage with a prominent pale underbelly, shown in a profile view while perched among jagged rocks. +Rock_Wren_0069_188969.jpg The Rock Wren appears predominantly gray-brown with a speckled texture, standing upright on a pebble-strewn ground, showcasing a slender beak and light buff-colored underparts, with no significant occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/199.Winter_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/199.Winter_Wren_descriptions.txt new file mode 100644 index 0000000..3064966 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/199.Winter_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Winter_Wren_0130_189531.jpg The bird, viewed in profile standing on a mossy log, exhibits a rich olive-brown hue with speckled texture, complemented by a short tail pointing upwards and a slightly curved thin beak. +Winter_Wren_0087_190135.jpg The bird appears predominantly dark with a mottled texture due to visual augmentation, perched on a diagonal branch against a blurred green background, with its distinctive upturned tail and small, compact body visible from a side pose. +Winter_Wren_0116_189834.jpg The bird appears in a side view with a predominantly reddish-brown texture, perched on a mottled, lichen-covered rock, with its tail cocked upright and a distinct, slightly curved beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions_aug/200.Common_Yellowthroat_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_aug/200.Common_Yellowthroat_descriptions.txt new file mode 100644 index 0000000..d13d42b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_aug/200.Common_Yellowthroat_descriptions.txt @@ -0,0 +1,3 @@ +Common_Yellowthroat_0077_190990.jpg The bird appears in a side profile view perched on a branch, displaying a vivid lime green body with a distinct black facial mask and a relatively smooth texture against a blurred natural background. +Common_Yellowthroat_0092_190573.jpg The bird, perched vertically on a stem with an altered greenish hue on its underparts and wings, features a distinct black mask despite the dull environment and low resolution. +Common_Yellowthroat_0088_190594.jpg The bird appears in a side profile with a vibrant lime green underside and muted grayish-green wings, set against a blurred background, with a distinctive black mask across its eyes and perched on a thin branch. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/001.Black_footed_Albatross_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/001.Black_footed_Albatross_descriptions.txt new file mode 100644 index 0000000..b384ba5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/001.Black_footed_Albatross_descriptions.txt @@ -0,0 +1,3 @@ +Black_Footed_Albatross_0032_796115.jpg The image shows a Black-footed Albatross from a side view over a turbulent ocean with wings partially visible, featuring a dark, outstretched wingtip, and significant pixelated occlusion covering the bird's body and head. +Black_Footed_Albatross_0060_796076.jpg The image shows a Black-footed Albatross with its left side partially visible above a blue, rippling water surface, with its head and a portion of its body emerging from behind a large, square, multicolored pixelated occlusion, revealing a dark, smooth feather texture and a distinct light-colored beak. +Black_Footed_Albatross_0014_89.jpg The bird's head, with a dark beak and eye, extends outward to the right from a colorfully textured block covering the central body, amid a stark, light background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/002.Laysan_Albatross_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/002.Laysan_Albatross_descriptions.txt new file mode 100644 index 0000000..483d16e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/002.Laysan_Albatross_descriptions.txt @@ -0,0 +1,3 @@ +Laysan_Albatross_0092_834.jpg A Laysan Albatross with a predominantly white body and dark wing visible, flies over a blurred blue background with a dense, vertical, multicolored occlusion covering the left part of the image. +Laysan_Albatross_0044_784.jpg The Laysan Albatross is partially visible with a predominantly brown wing extended over water, a white head, and a notable vertical occlusion of colorful static on the right side. +Laysan_Albatross_0061_563.jpg The Laysan Albatross exhibits dark brown upper wings and white underparts with a distinct hooked beak, seen in a soaring pose over the ocean, partially obscured by pixelated noise in the lower right section of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/003.Sooty_Albatross_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/003.Sooty_Albatross_descriptions.txt new file mode 100644 index 0000000..d185222 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/003.Sooty_Albatross_descriptions.txt @@ -0,0 +1,3 @@ +Sooty_Albatross_0038_1065.jpg The image shows a Sooty Albatross partially obscured by colorful noise on the right, with its visible side featuring a dark brown head and neck, a smooth feather texture, and positioned sitting calmly on rippling blue water. +Sooty_Albatross_0073_1171.jpg A fluffy, grayish bird with a white face and distinct beak sits on rocky terrain partially covered by dense green grass, with heavy pixelation occluding its left side. +Sooty_Albatross_0077_1080.jpg The visible portion of the "003.Sooty Albatross" displays a grayish-brown wing and head, captured in a side view mid-flight above a rough ocean, with a large vertical area of static noise obscuring most of its body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/004.Groove_billed_Ani_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/004.Groove_billed_Ani_descriptions.txt new file mode 100644 index 0000000..b3ceefd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/004.Groove_billed_Ani_descriptions.txt @@ -0,0 +1,3 @@ +Groove_Billed_Ani_0023_1485.jpg The bird is partially visible with a dark, textured plumage, sitting in a natural setting surrounded by green foliage, with its head visible from a side view and a central rectangular area heavily obscured by static-like noise. +Groove_Billed_Ani_0085_1612.jpg Most of the bird is obscured by a colorful static-like overlay, but the visible portion appears to have black feathers and is perched on a wooden post with a blurred background of rustic wooden fences and greenery. +Groove_Billed_Ani_0012_1784.jpg The bird has visible glossy black plumage with a distinctive long tail, slightly obscured by dense, overlapping branches and a colorful, static-like occlusion affecting the upper portion of the image, set against a backdrop of green leaves and twigs. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/005.Crested_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/005.Crested_Auklet_descriptions.txt new file mode 100644 index 0000000..41b8ae6 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/005.Crested_Auklet_descriptions.txt @@ -0,0 +1,3 @@ +Crested_Auklet_0012_794960.jpg The Crested Auklet is shown from a frontal viewpoint with a visible textured tuft on its head, while the rest of its body is obscured by colorful static-like occlusion, against a blurred green background. +Crested_Auklet_0076_785252.jpg The Crested Auklet, with its dark plumage and vibrant orange beak, peers from behind a heavily occluded, colorfully noise-altered vertical block, while standing on a weathered, gray rock with visible feather tufts atop its head. +Crested_Auklet_0063_794901.jpg The bird, viewed from the side with its distinct orange bill visible, has dark plumage with a tuft on its head, partially obscured by colorful static on a rocky surface. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/006.Least_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/006.Least_Auklet_descriptions.txt new file mode 100644 index 0000000..e07900b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/006.Least_Auklet_descriptions.txt @@ -0,0 +1,3 @@ +Least_Auklet_0024_795120.jpg The image shows a bird with visible white and dark speckled plumage on its chest and neck area, viewed from the side, with a heavily pixelated occlusion covering the upper part of its body and the background appearing as a plain light gray. +Least_Auklet_0063_795134.jpg The Least Auklet displays a side view with a visible gray and white speckled texture, partially obscured by colorful static occlusion covering most of its body, perched on a rock with its bright eye prominent. +Least_Auklet_0016_1903.jpg The 006.Least Auklet, viewed in a right-facing profile with its head slightly raised, exhibits a predominantly gray and white plumage with a bright orange-red beak, where a multi-colored static pattern occludes the central body, and is perched on a gray textured rock. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/007.Parakeet_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/007.Parakeet_Auklet_descriptions.txt new file mode 100644 index 0000000..01aa142 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/007.Parakeet_Auklet_descriptions.txt @@ -0,0 +1,3 @@ +Parakeet_Auklet_0028_795944.jpg The image shows a blurred vertical section filled with multicolored noise obscuring the center, leaving visible a natural background with a greyish-blue tone and partial view of a textured, possibly moss-covered surface in the bottom left. +Parakeet_Auklet_0032_795986.jpg A bird with a speckled grayish texture is partially visible from a side view, with the central part occluded by a colorful mosaic pattern, and surrounded by a blurred, natural background. +Parakeet_Auklet_0024_2045.jpg The image shows a rocky environment with significant occlusion in the center, displaying a colorful, static-like pattern, with surrounding rocks having a textured, rugged surface in shades of gray and hints of green moss. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/008.Rhinoceros_Auklet_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/008.Rhinoceros_Auklet_descriptions.txt new file mode 100644 index 0000000..f1dbbbc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/008.Rhinoceros_Auklet_descriptions.txt @@ -0,0 +1,3 @@ +Rhinoceros_Auklet_0007_797521.jpg The image shows a Rhinoceros Auklet in profile with visible features including a distinctive orange beak with a white, horn-like projection, set against a blue water background with the left side heavily occluded by multicolored static noise. +Rhinoceros_Auklet_0024_797529.jpg A Rhinoceros Auklet is partly visible with a dark, textured plumage emerging from choppy, gray-blue water, with its body mostly obscured by a dense multicolored occlusion on the right. +Rhinoceros_Auklet_0033_2169.jpg The Rhinoceros Auklet, seen from a side view while sitting on a rock, has a visible orange beak and dark plumage with a mottled texture, with the left side heavily occluded by colorful noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/009.Brewer_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/009.Brewer_Blackbird_descriptions.txt new file mode 100644 index 0000000..0bffa0d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/009.Brewer_Blackbird_descriptions.txt @@ -0,0 +1,3 @@ +Brewer_Blackbird_0109_2232.jpg The Brewer Blackbird in the low-resolution image is partially obscured by a pixelated block on the left side, leaving visible its shiny black tail and legs in a sandy environment, viewed from a ground-level side angle. +Brewer_Blackbird_0131_2289.jpg The bird is viewed from a side angle, featuring a glossy, dark plumage with bluish iridescence, standing on a textured concrete surface with leaves, partially obscured by digital noise on the right side. +Brewer_Blackbird_0133_2324.jpg The Brewer Blackbird is perched sideways on a branch, displaying iridescent dark plumage with the head and upper body visible, while a multicolored occlusion obscures its body and part of the branch against a blurred brownish background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/010.Red_winged_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/010.Red_winged_Blackbird_descriptions.txt new file mode 100644 index 0000000..8084ac5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/010.Red_winged_Blackbird_descriptions.txt @@ -0,0 +1,3 @@ +Red_Winged_Blackbird_0085_5846.jpg This Red-winged Blackbird is perched on thorny branches, viewed from the side, showing its black body with a distinctive red and yellow wing patch visible, while the lower belly area is heavily occluded by a colorful, square mosaic. +Red_Winged_Blackbird_0005_5636.jpg The image shows a Red-winged Blackbird perched with its head visible under bright green leaves, displaying its characteristic black plumage and a glimpse of red on the shoulder, while the right side of the image is heavily occluded with colorful noise. +Red_Winged_Blackbird_0044_5621.jpg The bird is perched in a sideways pose on a branch, displaying predominantly black plumage with a visible patch of yellow on the shoulder, while a significant portion of its body is obscured by a multicolored static-like occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/011.Rusty_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/011.Rusty_Blackbird_descriptions.txt new file mode 100644 index 0000000..7d2da05 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/011.Rusty_Blackbird_descriptions.txt @@ -0,0 +1,3 @@ +Rusty_Blackbird_0001_6548.jpg The bird exhibits a primarily dark, glossy brown and black plumage with a mottled texture, viewed from the side and slightly above, with significant occlusion on the left by colorful noise, standing on a textured, speckled ground. +Rusty_Blackbird_0114_6760.jpg The image displays a bird with a mostly visible dark-colored wing and tail, partially obscured by noise, standing on a light ground with scattered brown debris, with the body and head heavily occluded by a square of colorful static. +Rusty_Blackbird_0023_6752.jpg The Rusty Blackbird, viewed from the side, exhibits a muted brown plumage with a coarse texture, standing on dark earth with a pixelated occlusion covering the lower right of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/012.Yellow_headed_Blackbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/012.Yellow_headed_Blackbird_descriptions.txt new file mode 100644 index 0000000..c578241 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/012.Yellow_headed_Blackbird_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Headed_Blackbird_0095_8458.jpg The image shows a Yellow-headed Blackbird perched sideways on a fluffy cattail with the distinct yellow head visible above the colorful noise occlusion, while the background depicts a blurred, reflective water surface with some greenery. +Yellow_Headed_Blackbird_0051_8387.jpg The bird displays a vibrant yellow head with a contrasting black eye mask, partially obscured by grainy noise at its lower body, while surrounded by dry, vertical reeds, viewed from the side. +Yellow_Headed_Blackbird_0089_8326.jpg A Yellow-headed Blackbird with its striking bright yellow head and dark brown body is perched sideways on a branch, partially obscured by a vertical strip of colorful static covering its lower body and the branch beneath. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/013.Bobolink_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/013.Bobolink_descriptions.txt new file mode 100644 index 0000000..521bb1c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/013.Bobolink_descriptions.txt @@ -0,0 +1,3 @@ +Bobolink_0133_9618.jpg This bobolink has a distinctive black body with a light-colored patch on the back of its head, perching on dried grass with colorful digital noise occluding the right side of the image. +Bobolink_0020_9194.jpg The bobolink is perched on a flower with a prominent cream-colored patch on its head and intricate black and white patterned feathers, while a significant portion of its right side is obscured by colorful static-like occlusion against a blurred green background. +Bobolink_0032_10217.jpg The bird is perched on a branch with a visible black body and a noticeable pale yellow patch on its head, with the left side of its image occluded by a vibrant, multicolored noise pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/014.Indigo_Bunting_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/014.Indigo_Bunting_descriptions.txt new file mode 100644 index 0000000..6e61b5d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/014.Indigo_Bunting_descriptions.txt @@ -0,0 +1,3 @@ +Indigo_Bunting_0056_12637.jpg The indigo bunting displays a vivid blue plumage with a textured appearance, partially obscured by dense multicolored noise over its body, while the visible head and tail contrast against a leafy green background. +Indigo_Bunting_0003_13049.jpg The bird, seen from a back view amidst a grassy background, displays primarily vibrant blue plumage with visible brown patches on the wings, while a significant left-side occlusion distorts part of its body with colorful noise. +Indigo_Bunting_0024_13523.jpg The Indigo Bunting, seen in a side profile, displays a vivid blue coloration with a smooth texture, standing on a ground covered in mulch while a static-filled occlusion covers the left part of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/015.Lazuli_Bunting_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/015.Lazuli_Bunting_descriptions.txt new file mode 100644 index 0000000..78ce0a9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/015.Lazuli_Bunting_descriptions.txt @@ -0,0 +1,3 @@ +Lazuli_Bunting_0073_14594.jpg The image shows a bird perched on a textured wooden branch with heavy visual noise obscuring most of its body, leaving a visible tail and wing region on the left side exhibiting hints of blue and brown amidst an earthy forest backdrop. +Lazuli_Bunting_0020_14837.jpg The Lazuli Bunting is perched on a branch from a side view, featuring a blue head, rusty breast, and white belly, with heavy pixelation to the left occluding part of the background and bird. +Lazuli_Bunting_0004_14887.jpg The Lazuli Bunting shows a brightly colored blue head and upper body with a rust-colored chest and white wing bars, perched on a twig in a green, leafy environment, while its lower body is obscured by a rectangular, noisy digital occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/016.Painted_Bunting_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/016.Painted_Bunting_descriptions.txt new file mode 100644 index 0000000..f02256c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/016.Painted_Bunting_descriptions.txt @@ -0,0 +1,3 @@ +Painted_Bunting_0091_15198.jpg The image shows the brightly colored tail and wing tips of a Painted Bunting with red and green patches visible, partially obscured by a central vertical occlusion, as the bird perches on a blue feeder against a blurred green background. +Painted_Bunting_0093_15212.jpg The Painted Bunting is seen from a side view perched on a branch with its vivid blue head, red underparts, and green back visible, while the right side of the image is heavily occluded by colorful digital noise, amidst a background of green leaves and branches. +Painted_Bunting_0060_15224.jpg The Painted Bunting is perched on a stone ledge in a side profile view, displaying a greenish-yellow head and body with a vibrant mosaic-like occlusion covering the central part of the image and dark green foliage in the background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/017.Cardinal_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/017.Cardinal_descriptions.txt new file mode 100644 index 0000000..5da1999 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/017.Cardinal_descriptions.txt @@ -0,0 +1,3 @@ +Cardinal_0019_17368.jpg The cardinal exhibits a vibrant red plumage with a distinctly black face mask visible around the beak, viewed from the front with occlusion obscuring much of the right side, set against a blurred, natural grassy background. +Cardinal_0056_18352.jpg The cardinal appears with a bright red plumage and a noticeable crest, viewed from the side, partially occluded by digital noise over its lower body, perched on a textured surface scattered with seeds against a blurred background. +Cardinal_0092_17591.jpg The cardinal, with its vibrant red feathers and distinctive crest, is partially obscured by a pixelated box on its lower body, perched in profile on the teal wire feeder against a blurred warm-toned background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/018.Spotted_Catbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/018.Spotted_Catbird_descriptions.txt new file mode 100644 index 0000000..3cca655 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/018.Spotted_Catbird_descriptions.txt @@ -0,0 +1,3 @@ +Spotted_Catbird_0016_796803.jpg The Spotted Catbird is visible at a side angle, showing a scaly greenish-brown texture on its breast, partially occluded by a colorful static overlay, with a blurred leafy environment in the background. +Spotted_Catbird_0007_19424.jpg The low-resolution image shows a Spotted Catbird with a side profile view, displaying a green back and speckled underparts, partially obscured by a central horizontal band of digital noise. +Spotted_Catbird_0037_796810.jpg The Spotted Catbird is seen in profile with a visible olive-green wing and body, partially obscured in a blurred low-resolution image with heavy occlusion on the right; its perch and part of its curved beak are discernible against a darkened and textured background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/019.Gray_Catbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/019.Gray_Catbird_descriptions.txt new file mode 100644 index 0000000..4e3d789 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/019.Gray_Catbird_descriptions.txt @@ -0,0 +1,3 @@ +Gray_Catbird_0091_20416.jpg The Gray Catbird, seen in a leftward pose with mostly obscured lower body due to digital noise, displays a smooth gray texture with its head and upper body visible, perched on a concrete edge beside green foliage and partially walking towards the visible water. +Gray_Catbird_0063_20707.jpg The Gray Catbird is perched on a black metal support with its head and upper back visible in smooth gray tones against a blurred green background, while its body is heavily occluded by a colorful pixelated overlay. +Gray_Catbird_0111_19550.jpg The Gray Catbird is perched sideways on a branch with a slightly raised tail, its visible parts displaying a smooth gray texture interrupted by a pixelated multicolored occlusion covering the head and part of the body, set against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/020.Yellow_breasted_Chat_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/020.Yellow_breasted_Chat_descriptions.txt new file mode 100644 index 0000000..d49d412 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/020.Yellow_breasted_Chat_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Breasted_Chat_0100_21913.jpg The image shows a bird perched on a branch partially obscured by a vertical strip of noise with visible areas exhibiting a yellow underside and dark upper parts, surrounded by green foliage and thin pine-like branches. +Yellow_Breasted_Chat_0089_21804.jpg The image depicts a small bird perched on a branch with a visible vibrant yellow underside, contrasted by its dark head and white markings around the eyes, with the right side of the bird obscured by a colorful, static-like occlusion amidst a lush green leafy background. +Yellow_Breasted_Chat_0058_21864.jpg A vibrant yellow-breasted bird with a brownish head and back is perched on a branch, with its right side heavily occluded by colorful noise, set against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/021.Eastern_Towhee_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/021.Eastern_Towhee_descriptions.txt new file mode 100644 index 0000000..f2f8c17 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/021.Eastern_Towhee_descriptions.txt @@ -0,0 +1,3 @@ +Eastern_Towhee_0035_22223.jpg The image shows the Eastern Towhee partially visible with a black head and tail, white underparts, and reddish-brown patching on its sides, amid grass and twigs, with the central body heavily occluded by pixelated noise. +Eastern_Towhee_0007_22172.jpg The Eastern Towhee, perched on a tree stump from a side view, displays a black head and upper body, a reddish-brown flank, and a white belly, with a colorful digital occlusion covering its midsection. +Eastern_Towhee_0120_22189.jpg The image shows the tail and part of the back of a bird perched on a lichen-covered branch, with visible black and reddish-brown coloration, while the rest is obscured by a vertical strip of digital noise and the environment appears pale and indistinct. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/022.Chuck_will_Widow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/022.Chuck_will_Widow_descriptions.txt new file mode 100644 index 0000000..8dd10fc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/022.Chuck_will_Widow_descriptions.txt @@ -0,0 +1,3 @@ +Chuck_Will_Widow_0017_796960.jpg The bird exhibits a mottled brown and white plumage with a distinctive dark eye, viewed from the side amidst a natural, leafy ground, while a significant portion is occluded by a colorful, noisy pattern on the left. +Chuck_Will_Widow_0046_796966.jpg The image shows a Chuck-will's-widow with a mottled brown and gray plumage texture, partially obscured by a central multicolored occlusion, perched on a branch in a natural, blurred green background environment. +Chuck_Will_Widow_0054_22782.jpg The bird appears perched on a branch with visible textured brown and mottled plumage, while the right half of the image is heavily obscured by colorful static, concealing part of the environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/023.Brandt_Cormorant_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/023.Brandt_Cormorant_descriptions.txt new file mode 100644 index 0000000..5925b36 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/023.Brandt_Cormorant_descriptions.txt @@ -0,0 +1,3 @@ +Brandt_Cormorant_0076_23021.jpg The Brandt Cormorant appears dark with a smooth texture, partially visible from a side view with the head and body silhouette discernible against a blurred, wavy ocean background, heavily occluded by a colorful, static-like block covering the upper portion. +Brandt_Cormorant_0035_23000.jpg The Brandt Cormorant is perched on a weathered wooden post by the water, with its wings partially spread and a significant portion of its upper body obscured by colorful static, while its lower body appears dark against the blurred, blue-toned aquatic backdrop. +Brandt_Cormorant_0068_23019.jpg A Brandt Cormorant is partially visible with dark, textured feathers in a rear view as it spreads its wings above water, with heavy occlusion on the left, featuring a multicolored pixelated pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/024.Red_faced_Cormorant_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/024.Red_faced_Cormorant_descriptions.txt new file mode 100644 index 0000000..e2a4b24 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/024.Red_faced_Cormorant_descriptions.txt @@ -0,0 +1,3 @@ +Red_Faced_Cormorant_0072_796269.jpg A red-faced cormorant is visible in profile with a prominent orange-red area near the beak, smooth dark plumage, and a significant portion obscured by digital noise on its body, set against a pale blue sky. +Red_Faced_Cormorant_0073_796332.jpg The Red-faced Cormorant is visible with its glossy black plumage and distinctive red face, viewed from a side angle with its head and upper body clear while the lower half is heavily occluded by colorful noise, set against a blurred gray background. +Red_Faced_Cormorant_0007_796280.jpg The image shows the right side of a Red-faced Cormorant's head with a vivid orange-red patch around its eye, dark iridescent black feathers, and a notable curl on its crest, while the left side is heavily occluded by multicolored static-like noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/025.Pelagic_Cormorant_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/025.Pelagic_Cormorant_descriptions.txt new file mode 100644 index 0000000..ba725fd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/025.Pelagic_Cormorant_descriptions.txt @@ -0,0 +1,3 @@ +Pelagic_Cormorant_0080_23890.jpg The bird, partially visible against a rocky background, exhibits dark plumage with hints of shimmer while facing downward, with its body mainly obscured by a blocky, colorful pixelated area on the upper half. +Pelagic_Cormorant_0018_23880.jpg The visible Pelagic Cormorant, viewed from the side with its glossy dark plumage and distinguished iridescent sheen, stands on a rock surface with a significant portion of its lower body obscured by a pixelated occlusion, set against a rugged, natural backdrop. +Pelagic_Cormorant_0057_24002.jpg The Pelagic Cormorant, perched on a log by the water, displays dark, glossy plumage with iridescent textures on its wings and body, while the head and upper body are heavily obscured by colorful noise, leaving only the lower part of the bird clearly visible against the blurred water's surface. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/026.Bronzed_Cowbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/026.Bronzed_Cowbird_descriptions.txt new file mode 100644 index 0000000..76dd60f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/026.Bronzed_Cowbird_descriptions.txt @@ -0,0 +1,3 @@ +Bronzed_Cowbird_0018_24140.jpg The bird has a glossy dark plumage with a visible red eye, standing in profile on a grassy surface, with the right side of its body obscured by a colorful, pixelated occlusion. +Bronzed_Cowbird_0090_24179.jpg The 026.Bronzed Cowbird in the image has a dark plumage with a visible glossy sheen, standing sideways on a branch with its head and tail slightly obscured by colorful digital noise, amidst a blurry green background. +Bronzed_Cowbird_0029_796256.jpg The image shows the head and part of the neck of a Bronzed Cowbird with a visible reddish eye, set against a blurred natural background, while the body is largely obscured by a block of colorful pixelated noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/027.Shiny_Cowbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/027.Shiny_Cowbird_descriptions.txt new file mode 100644 index 0000000..c966cc1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/027.Shiny_Cowbird_descriptions.txt @@ -0,0 +1,3 @@ +Shiny_Cowbird_0017_796853.jpg The 027.Shiny Cowbird appears as a dark-bodied bird with a glossy, iridescent texture, viewed in profile with the lower part obscured by a colorful, static-like patch amidst a natural, earthy ground environment. +Shiny_Cowbird_0024_24281.jpg The bird, seen in profile with its head and back unobstructed, features a dark, possibly iridescent plumage in contrast to the bright green grass; its body is partially obscured by a vivid, multicolored rectangular occlusion on the right side. +Shiny_Cowbird_0070_796832.jpg The Shiny Cowbird exhibits a dark plumage with a glossy texture, standing in a side profile with its left body in clear view, while the lower quarter is heavily occluded with colorful static noise against a blurred natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/028.Brown_Creeper_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/028.Brown_Creeper_descriptions.txt new file mode 100644 index 0000000..ab67baa --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/028.Brown_Creeper_descriptions.txt @@ -0,0 +1,3 @@ +Brown_Creeper_0100_24502.jpg A bird with a brown mottled pattern is perched on a branch, viewed from the side with its head turned slightly, while a lower portion of the image is heavily occluded by a colorful static pattern. +Brown_Creeper_0023_24940.jpg The view shows a Brown Creeper clinging to a rugged tree bark, with visible parts including its head and a slender beak, and brown and white streaked plumage; its body is heavily occluded by a rectangle of static-like noise on the left side. +Brown_Creeper_0121_24574.jpg The Brown Creeper is perched vertically against a textured tree bark, showcasing a brown and white speckled pattern on its back with a distinct long, curved beak, while heavily occluded by a rectangular area filled with colorful noise on the left side. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/029.American_Crow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/029.American_Crow_descriptions.txt new file mode 100644 index 0000000..266f920 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/029.American_Crow_descriptions.txt @@ -0,0 +1,3 @@ +American_Crow_0119_25610.jpg The American Crow is seen in a side profile with an open beak, its glossy black plumage contrasted against a blurred green background, while its body is partially obscured by a heavy pixelated block covering the lower torso and legs. +American_Crow_0116_25199.jpg A partially visible bird with a black tail and wing tips is perched on a white platform, with the rest of its body obscured by colorful noise against a blurred background of water and distant trees. +American_Crow_0134_25206.jpg The 029.American Crow has a visible dark, textured plumage with shades of deep blue on its wings and tail, partially perched side-view on a branch with the left portion heavily occluded by a multicolored static pattern, surrounded by green leaves. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/030.Fish_Crow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/030.Fish_Crow_descriptions.txt new file mode 100644 index 0000000..0796a50 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/030.Fish_Crow_descriptions.txt @@ -0,0 +1,3 @@ +Fish_Crow_0022_26062.jpg The bird, viewed from the side on grass, is black with a glossy texture, and its face and upper body are obscured by pixelated occlusion, leaving its slender legs and tail visible. +Fish_Crow_0060_26016.jpg The bird exhibits dark plumage with a glossy texture visible on the wing, is in a side view with its sharp beak pointing forward, and is flying over a marshy background while a large, pixelated occlusion covers the torso and tail. +Fish_Crow_0023_26037.jpg The Fish Crow is seen from the side in a standing pose on a sandy surface, with its head and part of the tail visible in a solid black color, while the body is heavily occluded by a static-like, colorful pixelated square. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/031.Black_billed_Cuckoo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/031.Black_billed_Cuckoo_descriptions.txt new file mode 100644 index 0000000..47cb881 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/031.Black_billed_Cuckoo_descriptions.txt @@ -0,0 +1,3 @@ +Black_Billed_Cuckoo_0069_795326.jpg The visible portion of the bird reveals a gray-brown feather texture with tail feathers peeking through beneath a multi-colored pixelated occlusion, perched with its back towards the camera amidst a branch and green leaves. +Black_Billed_Cuckoo_0055_26223.jpg The Black billed Cuckoo is perched on a branch amidst green leaves with its right side visible, showing a light-colored breast and head, dark eye line, and parts of the scene heavily occluded by colorful static on the left side. +Black_Billed_Cuckoo_0093_795316.jpg The bird perches on a thin branch with a visible brown back, a slightly curved grayish-black bill, and striking red eyes, while the belly is obscured by colorful noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/032.Mangrove_Cuckoo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/032.Mangrove_Cuckoo_descriptions.txt new file mode 100644 index 0000000..8f0f6f2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/032.Mangrove_Cuckoo_descriptions.txt @@ -0,0 +1,3 @@ +Mangrove_Cuckoo_0019_794621.jpg The bird, viewed from the side with its back facing left, displays a soft beige underside and muted grey upper parts, perched among dense branches with a significant portion obscured by colorful static. +Mangrove_Cuckoo_0016_794607.jpg The bird is perched amongst foliage with its head and upper body visible in muted brown tones, while the central body is heavily occluded by digital noise, contrasting with the natural setting. +Mangrove_Cuckoo_0029_794624.jpg The bird is perched among branches with a gray head and back visible, partially obscured by pixelated noise on the right side, with muted brown wings and a slender tail extending outward. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/033.Yellow_billed_Cuckoo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/033.Yellow_billed_Cuckoo_descriptions.txt new file mode 100644 index 0000000..de68f10 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/033.Yellow_billed_Cuckoo_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Billed_Cuckoo_0084_26761.jpg The bird is perched in a side view on a branch with its body mostly visible, showing a light underbelly and a tail with a distinctive pattern on the underside, while the upper part of its body is completely occluded by a colorful, digital noise pattern. +Yellow_Billed_Cuckoo_0069_26597.jpg The bird, perched among dense branches, displays a partially visible white chest and underparts with its head obscured by digital noise, set against a background of tangled twigs and green leaves. +Yellow_Billed_Cuckoo_0045_26685.jpg The Yellow-billed Cuckoo is perched sideways on a tree branch with a clear view of its pale chest and long tail, while its distinctive yellow bill slightly contrasts against the natural backdrop, with heavy occlusion obscuring the center of the image, revealing a vibrant mottled pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/034.Gray_crowned_Rosy_Finch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/034.Gray_crowned_Rosy_Finch_descriptions.txt new file mode 100644 index 0000000..5e34862 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/034.Gray_crowned_Rosy_Finch_descriptions.txt @@ -0,0 +1,3 @@ +Gray_Crowned_Rosy_Finch_0012_27062.jpg The Gray-crowned Rosy Finch is viewed in profile with its head mostly obscured by colorful static, displaying a visible back and wings in subtle brown hues, perched on a branch against a soft, blurred background. +Gray_Crowned_Rosy_Finch_0063_27123.jpg Amidst a rocky terrain with foliage, the partially visible bird shows muted brown tones on its back, with significant pixelated occlusion covering most of its body vertically. +Gray_Crowned_Rosy_Finch_0074_27156.jpg The visible section of the Gray-crowned Rosy Finch shows a profile view with brown plumage, a gray crown, and distinctive black markings near its beak, set against a ground scattered with cones and grass, with the left part of the image occluded by colorful static noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/035.Purple_Finch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/035.Purple_Finch_descriptions.txt new file mode 100644 index 0000000..c6bb80b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/035.Purple_Finch_descriptions.txt @@ -0,0 +1,3 @@ +Purple_Finch_0108_28143.jpg A Purple Finch with a rich, red-toned head and back is partially hidden by tree branches, with heavy pixelation obscuring the lower half, while the upper body is seen in profile with muted green foliage in the background. +Purple_Finch_0110_27750.jpg The visible part of the Purple Finch shows reddish-brown plumage with a slight gloss, viewed from above, while heavy digital noise occludes the middle, surrounded by autumn leaves on a rocky surface. +Purple_Finch_0005_27512.jpg A Purple Finch is perched to the left side of the image with visible red and brown plumage on its head and back, viewed in profile from the right, against a blue sky, while the right third is obscured by colorful static noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/036.Northern_Flicker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/036.Northern_Flicker_descriptions.txt new file mode 100644 index 0000000..f8f38ce --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/036.Northern_Flicker_descriptions.txt @@ -0,0 +1,3 @@ +Northern_Flicker_0057_28606.jpg The Northern Flicker, viewed in profile perched on a branch, shows a speckled pattern on its brown and black plumage with a vibrant yellow tail tip while a dense, colorful noise occludes the central part of its body. +Northern_Flicker_0132_28313.jpg The Northern Flicker is perched upright on a branch with a light brown, speckled plumage visible against a clear blue sky, while a large portion of its body is obscured by colorful noise, particularly covering the lower left side. +Northern_Flicker_0059_28488.jpg The Northern Flicker is perched in an upright position on a branch with a white and brown speckled texture on its visible feathers, orange-tipped wings, a gray head, and is partially occluded by digital noise covering the lower right side. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/037.Acadian_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/037.Acadian_Flycatcher_descriptions.txt new file mode 100644 index 0000000..f93f3d3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/037.Acadian_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Acadian_Flycatcher_0035_795618.jpg The image shows a predominantly obscured Acadian Flycatcher, with visible parts of the image dominated by colorful noise patterns, overlaid on a natural environment with blurred branches crossing in the background. +Acadian_Flycatcher_0053_795620.jpg The Acadian Flycatcher, perched on a branch and viewed from the side, displays an olive-green back with distinct wing feather patterns, while the lower part is heavily occluded by colorful noise, surrounded by a blurred greenish background. +Acadian_Flycatcher_0039_795606.jpg This low-resolution Acadian Flycatcher appears in a side pose on a branch, showing a muted brown and white plumage with a pixelated, colorful occlusion on the left, blending into a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/038.Great_Crested_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/038.Great_Crested_Flycatcher_descriptions.txt new file mode 100644 index 0000000..0e7ec73 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/038.Great_Crested_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Great_Crested_Flycatcher_0067_29384.jpg A Great Crested Flycatcher is perched on the ground amid green foliage, partially obscured by a noisy occlusion covering the lower part of its body, with visible parts showing a brown upper body and a distinctive crest, typical for the species. +Great_Crested_Flycatcher_0027_29532.jpg The Great Crested Flycatcher is perched on a branch with its head and upper body visible, showing a grayish head and throat with a crest, partially obscured by bright multicolored noise over its lower body, set against a blurred green leafy background. +Great_Crested_Flycatcher_0009_29831.jpg In the image, there is a blurred and pixelated view of nature with a predominantly green and brown background featuring out-of-focus wires and clips, while the central area is heavily occluded with a colorful noise pattern, obscuring any specific details of the object or bird. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/039.Least_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/039.Least_Flycatcher_descriptions.txt new file mode 100644 index 0000000..973aa35 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/039.Least_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Least_Flycatcher_0063_30190.jpg The image shows a low-resolution, heavily occluded view with a pixelated texture in the center, surrounded by partially visible green leaves and a blurred, light wooden structure in the lower portion. +Least_Flycatcher_0070_30147.jpg The bird appears perched on a branch, showing a brownish back and wings with white markings, while a significant portion of its body is obscured by digital noise on the right side, set against a blurred, natural background. +Least_Flycatcher_0013_30240.jpg The bird has a muted brown and olive coloration with a visible brown wing and white wing bars, perched on a diagonal branch, while much of its body is occluded by a colorful, pixelated overlay on the right side of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/040.Olive_sided_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/040.Olive_sided_Flycatcher_descriptions.txt new file mode 100644 index 0000000..e6ed1ae --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/040.Olive_sided_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Olive_Sided_Flycatcher_0059_30536.jpg The image shows a bird partially hidden behind pixelated noise, perched on a branch in a lateral view with a visible dark tail against a sky backdrop, surrounded by leafy branches on the left. +Olive_Sided_Flycatcher_0040_30620.jpg A small bird with muted brown and gray plumage perches on a slender branch, viewed from the side, while a colorful noise pattern obscures the right side of the image, contrasting with the blurred green background. +Olive_Sided_Flycatcher_0064_30485.jpg The Olive-sided Flycatcher is perched in profile against a clear blue sky, with grayscale plumage visible on the head and a portion of the breast, while a multicolored, noise-like occlusion covers the lower part of its body and perch. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/041.Scissor_tailed_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/041.Scissor_tailed_Flycatcher_descriptions.txt new file mode 100644 index 0000000..2bee780 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/041.Scissor_tailed_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Scissor_Tailed_Flycatcher_0109_41720.jpg The image primarily features a pixelated and color-noise occlusion, obscuring a central part against a background of a netted structure with branches, displaying a textured mix of colors with visible branches that suggest a bird's natural habitat. +Scissor_Tailed_Flycatcher_0008_41670.jpg The Scissor-tailed Flycatcher is perched on a wire against a clear blue sky, partially occluded with a vertical stripe of colorful noise on the right, displaying a mix of grayish and light orange hues on its visible body with a poised, profile view. +Scissor_Tailed_Flycatcher_0126_41905.jpg The Scissor-tailed Flycatcher is perched on a plant amidst tall grasses, with its right side and long tail partially visible; it shows a light gray head, white underparts, and salmon-pink flanks, while the right portion of the image is occluded with colorful static-like noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/042.Vermilion_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/042.Vermilion_Flycatcher_descriptions.txt new file mode 100644 index 0000000..3a541c0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/042.Vermilion_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Vermilion_Flycatcher_0065_42467.jpg The image primarily shows a patch of colorful noise obscuring details, with blurred brown and green elements suggesting a natural environment surrounding the occluded area. +Vermilion_Flycatcher_0016_42196.jpg The bird, viewed from the side, displays a vibrant red-orange coloration with a hint of dark brown on its visible wing, while a large pixelated occlusion covers its left side, set against a blurred natural background. +Vermilion_Flycatcher_0034_42356.jpg The image shows the tail and a portion of the wing of a bird with a dark, striped appearance, partially visible from the side with heavy rectangular occlusion covering the central body, set against a blurred background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/043.Yellow_bellied_Flycatcher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/043.Yellow_bellied_Flycatcher_descriptions.txt new file mode 100644 index 0000000..0f180ce --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/043.Yellow_bellied_Flycatcher_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Bellied_Flycatcher_0054_42709.jpg The image shows a bird perched among green and brown foliage with a vibrant noise occlusion covering the central portion, leaving visible a small part of its back with greyish-green feathers. +Yellow_Bellied_Flycatcher_0045_42575.jpg The Yellow-bellied Flycatcher is perched on a branch, visible from below with its yellow-green underparts and tail showing, while the head and upper body are heavily occluded by noise. +Yellow_Bellied_Flycatcher_0020_795482.jpg This image shows a small bird perched on a branch with a visible olive-brown head and back, faintly streaked wings, and a significant area of colorful static occlusion covering the body and part of the environment, against a softly blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/044.Frigatebird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/044.Frigatebird_descriptions.txt new file mode 100644 index 0000000..b15e808 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/044.Frigatebird_descriptions.txt @@ -0,0 +1,3 @@ +Frigatebird_0005_42828.jpg A Frigatebird is partially visible against a blue sky, with the bird's silhouette showing a distinctively long, pointed wing and a straight tail emerging from behind colorful vertical noise occlusion on the left. +Frigatebird_0084_43006.jpg The image shows a Frigatebird with a visible dark wing in flight against a clear blue sky, partly occluded by a vertical strip of colorful noise, revealing a bright red gular pouch and slender wings. +Frigatebird_0115_42973.jpg The visible portion of the bird on a perch exhibits a dark, smooth texture with slight curvature, seen from the back with tail feathers partially visible, while heavy multicolor static obscures the right side, set against a blurred green and blue background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/045.Northern_Fulmar_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/045.Northern_Fulmar_descriptions.txt new file mode 100644 index 0000000..0b9298f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/045.Northern_Fulmar_descriptions.txt @@ -0,0 +1,3 @@ +Northern_Fulmar_0074_43955.jpg A side view of a flying bird with visible white underparts, a light gray head, and darker gray wings, with heavy pixelated occlusion covering most of the wings and part of the body, flying over a blurred water background. +Northern_Fulmar_0095_43860.jpg The visible portion of the Northern Fulmar shows a brownish-gray color with a slightly textured appearance, captured in a side flying pose against a blurred blue background, with heavy multicolored occlusion covering much of the body. +Northern_Fulmar_0014_43895.jpg The Northern Fulmar, seen in profile, exhibits mottled gray and white plumage, with a prominent occlusion of colored static on its left side set against a backdrop of a choppy dark blue ocean under a clear sky. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/046.Gadwall_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/046.Gadwall_descriptions.txt new file mode 100644 index 0000000..b3b5628 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/046.Gadwall_descriptions.txt @@ -0,0 +1,3 @@ +Gadwall_0096_31560.jpg This low-resolution image of a Gadwall shows it from a side view in the water with mottled gray and brown plumage, partially obscured by a pixelated square covering the head and neck area, leaving visible the darker tail and reflective smooth water surface. +Gadwall_0034_31212.jpg The Gadwall exhibits a mottled brown texture with a contrasting black bill, partially occluded on the right by colorful noise, with visible ripples in the surrounding water. +Gadwall_0069_31291.jpg The Gadwall is seen in a side view with a textured brown pattern across its body, a visible orange beak, partially occluded by colorful digital noise on its lower midsection, floating on reflective water. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/047.American_Goldfinch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/047.American_Goldfinch_descriptions.txt new file mode 100644 index 0000000..eccaa57 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/047.American_Goldfinch_descriptions.txt @@ -0,0 +1,3 @@ +American_Goldfinch_0017_32272.jpg The American Goldfinch is perched on a branch, displaying vibrant yellow plumage with visible black on the head and wing tips, while half of the bird is obscured by colorful static occlusion against a blurred green background. +American_Goldfinch_0043_31993.jpg The American Goldfinch is perched on a branch with a vivid yellow plumage visible, while a colorful noise occludes a section of its body, leaving the black cap and orange beak clear and contrasted against a blurred green background. +American_Goldfinch_0126_32480.jpg The image shows a bird seen partially from the side with a vibrant yellow head and black and white wing feathers, perched on a vertical cylindrical feeder, with a large occlusion covering its middle portion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/048.European_Goldfinch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/048.European_Goldfinch_descriptions.txt new file mode 100644 index 0000000..599b9f0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/048.European_Goldfinch_descriptions.txt @@ -0,0 +1,3 @@ +European_Goldfinch_0101_33127.jpg The European Goldfinch is perched sideways on a branch showcasing its red face, contrasting black and white head, and brown body with bright yellow and black wings, partially occluded by a pixelated patch covering its lower body and tail area against a blurred green background. +European_Goldfinch_0014_794672.jpg The right side of the European Goldfinch is visible with distinct red markings on the face, black and white on the head, and a beige body perched on twigs, while the left side is heavily occluded by a colorful static pattern. +European_Goldfinch_0004_33313.jpg The image shows a European Goldfinch viewed from the side with a partially visible mottled brown back and a striking yellow stripe on its black wing, perched on a branch against a green leafy background, with heavy pixelated occlusion covering the right side. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/049.Boat_tailed_Grackle_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/049.Boat_tailed_Grackle_descriptions.txt new file mode 100644 index 0000000..09d85e0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/049.Boat_tailed_Grackle_descriptions.txt @@ -0,0 +1,3 @@ +Boat_Tailed_Grackle_0043_33595.jpg The bird displays a mix of iridescent blue and brown plumage on its body with a pose showing its left side while the head area is obscured by colorful static-like occlusion, against a blurred background of chairs. +Boat_Tailed_Grackle_0027_33743.jpg The bird exhibits dark brown plumage with a glossy surface, is captured in a side profile mid-flight with outstretched wings, and is heavily occluded in the center by a vertical strip of colorful noise, against an aquatic background with patches of green. +Boat_Tailed_Grackle_0068_33387.jpg The bird, visible from a side profile with a glossy brown head and neck transitioning to darker plumage, stands amidst green aquatic plants while a colorful pixelated occlusion covers the lower left portion of its body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/050.Eared_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/050.Eared_Grebe_descriptions.txt new file mode 100644 index 0000000..7c3f4e3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/050.Eared_Grebe_descriptions.txt @@ -0,0 +1,3 @@ +Eared_Grebe_0062_34249.jpg The Eared Grebe is seen from a side view in water, with its head and upper neck appearing dark, its eye strikingly orange-red, while the body is mostly obscured by a colorful noise pattern. +Eared_Grebe_0067_34416.jpg The Eared Grebe is partially visible with a black head, striking red eye, and mottled grayish-white body, swimming in rippling water while obscured by a vertically placed static occlusion covering the central portion. +Eared_Grebe_0056_34098.jpg The Eared Grebe's visible portion exhibits a sleek, dark feather texture immersed in water, with the majority of its body heavily occluded by vibrant static; the bird's neck appears submerged and the background consists of rippling water. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/051.Horned_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/051.Horned_Grebe_descriptions.txt new file mode 100644 index 0000000..27125fa --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/051.Horned_Grebe_descriptions.txt @@ -0,0 +1,3 @@ +Horned_Grebe_0103_34822.jpg The Horned Grebe displays a black head with a golden-yellow tuft, set against a mildly speckled gray and white body, with its front heavily occluded by colorful static, in a side view swimming in murky water. +Horned_Grebe_0046_34926.jpg The Horned Grebe is partially submerged with visible black, spiky plumage on its head against a vibrant blue water backdrop, while the right side of its body is obscured by a colorful noise pattern. +Horned_Grebe_0002_34577.jpg The image shows a bird with a dark feathered back reflecting in calm water, partially occluded by a pixelated square covering the head area, with visible white streaks on the lower part of its neck and side. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/052.Pied_billed_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/052.Pied_billed_Grebe_descriptions.txt new file mode 100644 index 0000000..76445f4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/052.Pied_billed_Grebe_descriptions.txt @@ -0,0 +1,3 @@ +Pied_Billed_Grebe_0064_35843.jpg The Pied-billed Grebe appears to be in a water environment with a clear reflection, showing mostly its upper brown body with a hint of lighter mottling, while the central part is heavily occluded by colorful digital noise. +Pied_Billed_Grebe_0114_35493.jpg A small brown bird with a distinct stout bill is partially submerged in water, showing a mottled texture and rippled surroundings, with its right side obscured by colorful static noise. +Pied_Billed_Grebe_0024_35949.jpg The Pied-billed Grebe appears with a visible head and upper body emerging from water, displaying a speckled brown texture with a pronounced white bill, partially obscured by a colorful, blocky occlusion on the left side. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/053.Western_Grebe_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/053.Western_Grebe_descriptions.txt new file mode 100644 index 0000000..5f3a51b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/053.Western_Grebe_descriptions.txt @@ -0,0 +1,3 @@ +Western_Grebe_0007_36074.jpg The Western Grebe, seen in profile with a striking black cap and white face, has a distinctive red eye and yellow bill, with the central body heavily obscured by a vertical digital noise covering, leaving only the neck and head clearly visible against the rippled water background. +Western_Grebe_0056_36216.jpg The Western Grebe is partially visible with a white and gray neck and head, seen in profile floating on a water surface, with heavy occlusion as a vertical band of colorful static obscures the center of its body. +Western_Grebe_0050_36163.jpg The visible part of the Western Grebe, with a sharp black and white contrast on the head and neck, emerges partially from the water with a brightly colored and textured occlusion concealing much of its body amidst a reflective watery background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/054.Blue_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/054.Blue_Grosbeak_descriptions.txt new file mode 100644 index 0000000..36bdc39 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/054.Blue_Grosbeak_descriptions.txt @@ -0,0 +1,3 @@ +Blue_Grosbeak_0004_14988.jpg The blue grosbeak displays vibrant blue plumage with a visible beak holding a seed, perched at a feeder, while the lower body and surrounding environment are heavily occluded by colorful static noise. +Blue_Grosbeak_0072_36774.jpg The Blue Grosbeak is perched on a branch with visible bright blue and brown plumage on its back and wing, while a colorful digital noise obscures most of the left side of the bird. +Blue_Grosbeak_0107_36696.jpg The Blue Grosbeak, perched in a profile view on a natural wooden post, exhibits a vibrant blue plumage with visible brown wing bars, and the image shows significant occlusion covering the lower right portion with a multicolored static pattern, set against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/055.Evening_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/055.Evening_Grosbeak_descriptions.txt new file mode 100644 index 0000000..cdb738e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/055.Evening_Grosbeak_descriptions.txt @@ -0,0 +1,3 @@ +Evening_Grosbeak_0011_37913.jpg The Evening Grosbeak appears with a combination of yellowish-brown plumage and a stout, conical beak, facing forward with its body partially obscured by a colorful static-like occlusion across the lower half, all set against a lush, grass-filled environment. +Evening_Grosbeak_0033_37707.jpg A vibrant yellow bird with a stout, greenish beak is perched on a branch, partially obscured by a colorful, pixelated block on the left side, while its white-flanked black wings and yellow forehead remain distinctly visible. +Evening_Grosbeak_0079_37979.jpg The bird, seen from a side angle with a yellow body and distinct black and white wing markings, is perched on a branch with the right side heavily obscured by colorful noise, while the background is a blurred natural setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/056.Pine_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/056.Pine_Grosbeak_descriptions.txt new file mode 100644 index 0000000..fccd902 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/056.Pine_Grosbeak_descriptions.txt @@ -0,0 +1,3 @@ +Pine_Grosbeak_0002_38214.jpg The partially visible bird, perched against a clear blue sky, has reddish plumage with visible streaks, obscured predominantly at the center by colorful digital noise, while its tail and a section of the branch remain exposed. +Pine_Grosbeak_0068_38981.jpg The 056.Pine Grosbeak is seen in a side view with its head and part of the back occluded by a pixelated area, displaying a rosy red plumage with grayish wings featuring white streaks, perched among reddish-orange berries. +Pine_Grosbeak_0038_38956.jpg The 056.Pine Grosbeak is perched with its back towards the viewer, displaying its red and gray plumage against a snowy setting, with a significant section of its body obscured by a dense, colorful, static-like occlusion on the right side. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/057.Rose_breasted_Grosbeak_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/057.Rose_breasted_Grosbeak_descriptions.txt new file mode 100644 index 0000000..92a4a24 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/057.Rose_breasted_Grosbeak_descriptions.txt @@ -0,0 +1,3 @@ +Rose_Breasted_Grosbeak_0019_39274.jpg The bird, viewed from the side, displays a black head with white spots and a partially visible white belly, while the central portion of its body is obscured by a colorful rectangular overlay amidst a leafy green background. +Rose_Breasted_Grosbeak_0075_39795.jpg A Rose-breasted Grosbeak is perched sideways on a branch, displaying a visible white patch with black speckles on its wings and head against a clear blue sky, while its distinct red breast area is heavily obscured by digital noise. +Rose_Breasted_Grosbeak_0106_39714.jpg A Rose-breasted Grosbeak perched on a branch is seen in profile with its distinct red breast, black head, and white underparts visible on the right side while the left is heavily occluded by a colorful noise pattern against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/058.Pigeon_Guillemot_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/058.Pigeon_Guillemot_descriptions.txt new file mode 100644 index 0000000..8615981 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/058.Pigeon_Guillemot_descriptions.txt @@ -0,0 +1,3 @@ +Pigeon_Guillemot_0059_39929.jpg The image shows a body of water with dark ripples, where a bird with a partially visible red-orange foot is obscured by heavy pixelation, blocking most of its body and details except for its distinctive vibrant limb submerged in the water. +Pigeon_Guillemot_0084_40217.jpg The bird is mostly obscured by noise but displays a predominantly gray and black speckled body with visible patches of white and stands on a rock, with the obscured area affecting the upper region. +Pigeon_Guillemot_0083_39980.jpg The Pigeon Guillemot appears with partially visible black and white plumage, perched on a rocky ledge with its head and body mostly occluded by a colorful, digital noise pattern, leaving one wing and a portion of the tail exposed against a dark, watery background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/059.California_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/059.California_Gull_descriptions.txt new file mode 100644 index 0000000..b2a01b8 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/059.California_Gull_descriptions.txt @@ -0,0 +1,3 @@ +California_Gull_0012_41272.jpg The partially visible California Gull, obscured by colorful static-like noise, is positioned on a concrete path next to a rocky shoreline, with its head and tail barely visible, offering hints of a typical gull posture. +California_Gull_0092_41300.jpg A California Gull with a visible gray and white plumage is seen side-on, against a waterfront backdrop, but its central body is heavily obscured by a vertical band of multicolored static noise, leaving only part of the wings and tail visible. +California_Gull_0096_40978.jpg The California Gull appears in flight with white and gray plumage visible, its wings outstretched against a clear blue sky, with colorful noise occluding the left side of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/060.Glaucous_winged_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/060.Glaucous_winged_Gull_descriptions.txt new file mode 100644 index 0000000..b8b2153 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/060.Glaucous_winged_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Glaucous_Winged_Gull_0129_44742.jpg The Glaucous-winged Gull, facing left, displays a predominantly gray and white plumage with open beak, partially obscured by a central column of colorful noise, while perching on a wooden post against a blurred marina background. +Glaucous_Winged_Gull_0093_44724.jpg The Glaucous-winged Gull is partially visible with its head in profile, displaying a muted grayish-white color and mottled texture, standing on wet pebbled ground with its right side occluded by vertical visual noise, and it holds a small, dark object in its beak. +Glaucous_Winged_Gull_0014_44832.jpg The Glaucous-winged Gull, partially occluded at the head with colorful static, stands in water with a muted gray and slightly speckled body and wings visible, reflecting softly in the rippling surface. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/061.Heermann_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/061.Heermann_Gull_descriptions.txt new file mode 100644 index 0000000..a152d06 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/061.Heermann_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Heermann_Gull_0020_45409.jpg The Heermann Gull appears with a smooth gray texture on its visible back, a partly obscured head showing some white coloration, standing in profile facing water, with heavy multicolored static obscuring the left portion of the image. +Heermann_Gull_0128_45663.jpg The Heermann's Gull is partially visible with its grey and white plumage on the left side, perched beside a blue water body, with a significant part obscured by colorful noise on the right. +Heermann_Gull_0073_45714.jpg The Heermann Gull is viewed from the side with a gray body, a distinctive red beak, and stands on a gravelly beach with a multicolored, pixelated occlusion at the top right corner. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/062.Herring_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/062.Herring_Gull_descriptions.txt new file mode 100644 index 0000000..52809f9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/062.Herring_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Herring_Gull_0065_48098.jpg The Herring Gull appears with gray and white plumage in a side profile perched on a rocky surface, with its body partially occluded by colorful static, amidst sparse vegetation against a clear blue sky. +Herring_Gull_0094_47172.jpg The Herring Gull appears with gray and white plumage, partly obscured by central pixelated noise, displaying an outstretched wing and a visible curved yellow beak from a side-on vantage point against a light sky. +Herring_Gull_0075_48935.jpg The image shows the outspread wings of a Herring Gull from a side view against a clear blue sky, with most of the body obscured by colorful noise, except for the visible gray wings tipped with black. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/063.Ivory_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/063.Ivory_Gull_descriptions.txt new file mode 100644 index 0000000..3372595 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/063.Ivory_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Ivory_Gull_0045_49696.jpg A predominantly white bird with a smooth texture is facing left, standing on a muddy, dark brown ground by the water, with significant pixelated occlusion covering the left portion of the image. +Ivory_Gull_0067_49659.jpg The bird, visible from behind with its pure white plumage, is standing in shallow water on rocky terrain with a mosaic occlusion covering its midsection. +Ivory_Gull_0104_49666.jpg A bird with a predominantly white plumage stands on a pebble-covered shoreline, partially obscured by a multicolored static block on its lower body, facing away from the viewer with visible back and tail feathers. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/064.Ring_billed_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/064.Ring_billed_Gull_descriptions.txt new file mode 100644 index 0000000..bea23f3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/064.Ring_billed_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Ring_Billed_Gull_0098_51410.jpg The low-resolution image shows a Ring-billed Gull with a light gray and white plumage, perched sideways on a wooden surface, with its head and tail visible while a colorful, static-like occlusion covers the center portion of its body. +Ring_Billed_Gull_0027_51266.jpg The image shows the partially occluded back half of a Ring-billed Gull, with visible yellow legs and a tail with black-tipped wings against a blue water background, while the central body area is obscured by colorful static noise. +Ring_Billed_Gull_0125_51307.jpg The image depicts a Ring-billed Gull standing on a sandy surface with an open beak, displaying a mottled white and gray head and back, with colorful noise occluding the midsection, while the visible legs are slender and yellow. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/065.Slaty_backed_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/065.Slaty_backed_Gull_descriptions.txt new file mode 100644 index 0000000..7fd91a3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/065.Slaty_backed_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Slaty_Backed_Gull_0026_53245.jpg The image shows the back and wing of a Slaty-backed Gull with a distinct dark plumage on the wing and a contrasting white underside, partially obscured by a vertical band of multicolored static, perching on a structure with visible metal rods. +Slaty_Backed_Gull_0060_796052.jpg The image shows a Slaty-backed Gull from behind with wings partially raised, displaying mottled brown and white plumage with the left side heavily occluded by digital noise, standing on a concrete edge next to yellow and black striped barriers by the water. +Slaty_Backed_Gull_0043_796009.jpg The Slaty-backed Gull is viewed in mid-flight from the side with light brown, textured wings swept back against a clear blue sky, while the right side of its body is heavily occluded by digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/066.Western_Gull_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/066.Western_Gull_descriptions.txt new file mode 100644 index 0000000..97b9e28 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/066.Western_Gull_descriptions.txt @@ -0,0 +1,3 @@ +Western_Gull_0022_54607.jpg The Western Gull appears in a side view with a bright white head and chest, a yellow bill, and a black back partially visible behind a tall rectangle of colorful static occlusion on a paved surface with grassy background. +Western_Gull_0114_55644.jpg The Western Gull, standing on a wooden surface with a lateral view, displays a white head and breast, dark gray wings, and pale pink legs, with a significant, colorful occlusion masking most of its body. +Western_Gull_0124_53838.jpg The image features a bird with gray and white plumage, perched on a metallic railing by a blue water backdrop, with its head and part of the body occluded by a colorful, pixelated block, leaving visible a white tail tip and legs. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/067.Anna_Hummingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/067.Anna_Hummingbird_descriptions.txt new file mode 100644 index 0000000..76ff7dc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/067.Anna_Hummingbird_descriptions.txt @@ -0,0 +1,3 @@ +Anna_Hummingbird_0040_56293.jpg A partially occluded Anna's Hummingbird, viewed in profile, perches on a bare branch with visible muted brown tail feathers extending beneath a prominent colorful digital occlusion covering its midsection. +Anna_Hummingbird_0098_56388.jpg A small bird perched on a branch exhibits iridescent pink and green plumage with a heavily pixelated square occluding part of its mid-body, while the background shows blurred red and brown tones. +Anna_Hummingbird_0006_55871.jpg The visible portion of the Anna Hummingbird shows a small, dark-feathered body partly obscured by vibrant, colorful digital noise on the left, with a red and transparent bird feeder hinting at a feeding pose in the foreground, while the right side significantly occludes the scene. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/068.Ruby_throated_Hummingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/068.Ruby_throated_Hummingbird_descriptions.txt new file mode 100644 index 0000000..d5d5c2c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/068.Ruby_throated_Hummingbird_descriptions.txt @@ -0,0 +1,3 @@ +Ruby_Throated_Hummingbird_0110_57851.jpg Viewed from the side, the Ruby-throated Hummingbird's head and slender beak are visible, partially surrounded by vivid green and brown feathering, with heavy occlusion obscuring much of its body against a blurred green backdrop. +Ruby_Throated_Hummingbird_0049_57891.jpg A Ruby-throated Hummingbird is perched with its head and partially iridescent green crown visible, wings blurred in motion, and a vibrant multicolored occlusion covering the throat and chest area, against a soft green background. +Ruby_Throated_Hummingbird_0001_58162.jpg The image shows a Ruby-throated Hummingbird in flight with wings blurred due to motion, displaying a green and brown iridescent texture along its visible body, while the left side is heavily occluded with colorful static-like interference against a dark background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/069.Rufous_Hummingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/069.Rufous_Hummingbird_descriptions.txt new file mode 100644 index 0000000..f968209 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/069.Rufous_Hummingbird_descriptions.txt @@ -0,0 +1,3 @@ +Rufous_Hummingbird_0111_59408.jpg The Rufous Hummingbird is seen in a side view with its iridescent rusty-orange plumage and slender bill visible; its right wing is extended in flight, with dense colorful digital noise obscuring the left portion of the image, set against a dark background. +Rufous_Hummingbird_0123_58546.jpg The rufous hummingbird is perched on a twig, displaying its rusty-orange underparts and a greenish back, partially obscured by a vertical band of colorful noise on the left, with a blurred green background. +Rufous_Hummingbird_0118_59393.jpg The rufous hummingbird, partially occluded by a pixelated square, displays a vivid orange and brown plumage with a white throat, perched on a red and transparent feeder against a green blurred background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/070.Green_Violetear_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/070.Green_Violetear_descriptions.txt new file mode 100644 index 0000000..6bf0605 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/070.Green_Violetear_descriptions.txt @@ -0,0 +1,3 @@ +Green_Violetear_0047_795677.jpg The bird displays iridescent green plumage with visible dark wing feathers, partially occluded by digital static on the left, perched on the edge of a white circular feeder with red accents. +Green_Violetear_0028_60800.jpg The visible part of the bird shows a predominantly turquoise-blue wing with a slightly glossy texture on the right side of the image, set against a blurred green background, while the rest of the body is heavily occluded by a color noise rectangle in the center-left. +Green_Violetear_0025_795692.jpg The hummingbird has a vibrant green iridescent body visible from a side view, with blurred surroundings and a colorful vertical occlusion obscuring the left portion, including part of the feeder. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/071.Long_tailed_Jaeger_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/071.Long_tailed_Jaeger_descriptions.txt new file mode 100644 index 0000000..c79c61e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/071.Long_tailed_Jaeger_descriptions.txt @@ -0,0 +1,3 @@ +Long_Tailed_Jaeger_0058_60900.jpg The Long-tailed Jaeger is seen in a side-view flight pose with dark wings extended against a gray sky, while heavily occluded by a multicolored static pattern obscuring the head and upper body. +Long_Tailed_Jaeger_0069_61060.jpg The Long-tailed Jaeger is seen from behind with wings partially raised above the water's surface, exhibiting mottled brown and white plumage, while the central part is obscured by a vertical rectangle of colorful noise. +Long_Tailed_Jaeger_0038_797077.jpg The bird is viewed from behind with its long tail visible against a clear blue sky, and a vertical section is heavily occluded by colorful noise, obscuring the central body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/072.Pomarine_Jaeger_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/072.Pomarine_Jaeger_descriptions.txt new file mode 100644 index 0000000..f79c7ee --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/072.Pomarine_Jaeger_descriptions.txt @@ -0,0 +1,3 @@ +Pomarine_Jaeger_0075_61349.jpg The Pomarine Jaeger is viewed in mid-flight against a clear blue sky, with most of its body obscured by digital noise, leaving part of one dark brown wing and the tip of its tail visible. +Pomarine_Jaeger_0038_61446.jpg The Pomarine Jaeger in the image, viewed in a side profile mid-flight, shows a stark contrast between its dark body and lighter underparts, with a significant portion obscured by vertical digital noise, leaving the wings and tail faintly visible against a plain background. +Pomarine_Jaeger_0036_61410.jpg The image displays parts of a bird with brown and white plumage, primarily the tail and wingtips, viewed from below against a clear blue sky, with the central body heavily occluded by a multicolored textured block. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/073.Blue_Jay_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/073.Blue_Jay_descriptions.txt new file mode 100644 index 0000000..11fe30f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/073.Blue_Jay_descriptions.txt @@ -0,0 +1,3 @@ +Blue_Jay_0042_61545.jpg The image shows a low-resolution, heavily occluded scene with a central square of colorful static noise overlaying a grayscale background of vertical wooden textures, obscuring any identifiable features of the "073.Blue Jay." +Blue_Jay_0074_63487.jpg The Blue Jay, perched on a wooden stump, is partially visible with its blue and white plumage standing out against bright red and orange foliage, while a central vertical rectangle of noise obscures the middle section of the image. +Blue_Jay_0002_62657.jpg The image shows the rear half of a Blue Jay with a soft blue and white plumage, perched on a branch, largely obstructed by digital noise on the left side, leaving the head and tail region exposed from a side angle view. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/074.Florida_Jay_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/074.Florida_Jay_descriptions.txt new file mode 100644 index 0000000..63ad3f6 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/074.Florida_Jay_descriptions.txt @@ -0,0 +1,3 @@ +Florida_Jay_0047_65088.jpg The Florida Jay appears with a pale grayish-blue head and chest viewed from a frontal angle, standing amidst green foliage, while a multicolored digital occlusion covers the left side of the image. +Florida_Jay_0066_65018.jpg The image shows a bird with visible blue tones and feather texture on the wing, seen from a side angle, while a large central area is occluded by colorful digital noise, with a blurred natural background. +Florida_Jay_0018_64994.jpg The bird is perched with a visible left profile, showcasing a vibrant blue back and head contrasted with gray wings and body, with heavy occlusion on the right side due to a colorful static-like effect, while the environment shows muted greenish foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/075.Green_Jay_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/075.Green_Jay_descriptions.txt new file mode 100644 index 0000000..fb731cb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/075.Green_Jay_descriptions.txt @@ -0,0 +1,3 @@ +Green_Jay_0051_65662.jpg The Green Jay is perched on a branch with a vibrant blue crown and a contrasting black face mask visible, while the left portion of the body is heavily occluded by a colorful digital distortion pattern, against a softly blurred greenish background. +Green_Jay_0071_65799.jpg The Green Jay in the image has a vibrant blue face and bold yellow underparts visible through dense branches, with heavy pixelation occluding its belly and part of the surrounding foliage, while its head is upright and alert. +Green_Jay_0086_65847.jpg The bird exhibits a vibrant yellow belly with a gradient to green on its back, a distinct bright blue face partially visible due to multicolored noise occluding the left side, and it is perched in a side profile on a natural branch setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/076.Dark_eyed_Junco_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/076.Dark_eyed_Junco_descriptions.txt new file mode 100644 index 0000000..9ab153a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/076.Dark_eyed_Junco_descriptions.txt @@ -0,0 +1,3 @@ +Dark_Eyed_Junco_0130_67867.jpg A small bird with a distinct dark head and back, pale underparts, and visible standing on a textured greenish ground, with the left side heavily occluded by multicolored static noise. +Dark_Eyed_Junco_0086_66437.jpg The Dark-eyed Junco is perched on a branch with a mostly visible gray and white plumage, a black hood covering the head, and the center of the image is heavily occluded with colorful static, obscuring surrounding visual details. +Dark_Eyed_Junco_0132_66476.jpg A small bird with a gray head and upper body perched sideways on a branch, with its lower body obscured by a heavily pixelated square, surrounded by green leaves against a clear blue sky. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/077.Tropical_Kingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/077.Tropical_Kingbird_descriptions.txt new file mode 100644 index 0000000..a09d748 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/077.Tropical_Kingbird_descriptions.txt @@ -0,0 +1,3 @@ +Tropical_Kingbird_0049_69933.jpg The Tropical Kingbird, viewed from the side perched on a branch, shows a visible gray head and back with a yellow belly, while a large section on the left is heavily occluded with multicolored noise. +Tropical_Kingbird_0064_69889.jpg A gray-headed bird with a hint of its beak protrudes from behind a large multicolored occlusion over its body and a branch. +Tropical_Kingbird_0098_69642.jpg The image shows a bird with a part of its tail visible emerging from the lower left, amidst green, fern-like leaves and a brown branch, while most of the image is occluded by multicolored static. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/078.Gray_Kingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/078.Gray_Kingbird_descriptions.txt new file mode 100644 index 0000000..70c55fb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/078.Gray_Kingbird_descriptions.txt @@ -0,0 +1,3 @@ +Gray_Kingbird_0045_70256.jpg The bird, viewed from the side perched on a branch against a blue sky, shows a pale gray plumage with distinct white undersides, while heavy digital noise completely obscures the left third of the image. +Gray_Kingbird_0035_795027.jpg The Gray Kingbird appears perched on a branch with visible smooth gray and white plumage, viewed from the side, with its head and upper body clear while the lower body is occluded by colorful digital noise. +Gray_Kingbird_0025_70152.jpg The Gray Kingbird is perched on a branch with its grayish-brown back and light underparts visible in a three-quarter view, featuring a partially obscured head by a colorful pixelated occlusion on the left. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/079.Belted_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/079.Belted_Kingfisher_descriptions.txt new file mode 100644 index 0000000..73cbeaa --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/079.Belted_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +Belted_Kingfisher_0031_70506.jpg The image shows a Belted Kingfisher perched on a branch with visible blue-gray plumage on its lower body, while a heavy occlusion of colorful noise covers the central part, leaving surrounding green foliage and another branch visible. +Belted_Kingfisher_0072_70924.jpg The Belted Kingfisher displays a blueish-gray plumage with a distinctive spiky crest, perched on a branch with pixelated occlusion covering part of its midsection. +Belted_Kingfisher_0043_70492.jpg The bird perches side-on a wire with its spiky crest visible, displaying blue-gray plumage on its back and white with some rust on its chest, partially obscured by a colorful, static-like rectangle on its right. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/080.Green_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/080.Green_Kingfisher_descriptions.txt new file mode 100644 index 0000000..6f42715 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/080.Green_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +Green_Kingfisher_0062_70985.jpg The Green Kingfisher is perched sideways on a branch with its head slightly turned, displaying its dark green feathers with hints of iridescence, a white collar, and rust-colored chest partly visible despite heavy pixelation obscuring the lower third of the image. +Green_Kingfisher_0058_70998.jpg The bird displays a partially visible green and white speckled plumage with a distinctive black beak, perched on a branch with heavy pixelated occlusion covering its central body, while the background shows blurred natural foliage. +Green_Kingfisher_0067_71093.jpg The bird, partially obscured on the left by heavy visual noise, displays a vibrant orange chest with some green on the head, perched on a branch against a blurred brown background, facing slightly towards the camera. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/081.Pied_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/081.Pied_Kingfisher_descriptions.txt new file mode 100644 index 0000000..17da015 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/081.Pied_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +Pied_Kingfisher_0007_72438.jpg The Pied Kingfisher stands on a sandy ground with its distinctive black and white plumage visible; the bird is facing slightly to the right with its crest raised and wings folded, while its back is partially occluded by a pixelated vertical strip on the left. +Pied_Kingfisher_0080_72199.jpg The visible portion of the Pied Kingfisher reveals a distinctive black and white pattern with a contrasting texture, perched sideways on a slender branch with its body facing leftward, while the left half is heavily obscured by a pixelated, colorful noise pattern against a blurred natural background. +Pied_Kingfisher_0029_72440.jpg The Pied Kingfisher, seen in profile with a sharp black and white plumage, perches on a branch with significant digital noise and color distortion obscuring the left portion of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/082.Ringed_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/082.Ringed_Kingfisher_descriptions.txt new file mode 100644 index 0000000..3357215 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/082.Ringed_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +Ringed_Kingfisher_0108_73169.jpg The bird, viewed from the side, displays a visible bluish back with a white neck band and a partly occluded chest, against a blurry green background with heavy pixelation obscuring its lower half. +Ringed_Kingfisher_0015_72835.jpg A partially visible bird with a slate-blue wing extends outward from a wooden structure under a rain-soaked environment, with a dense, pixelated strip obscuring most of its body, leaving only a glimpse of its distinct rufous belly and a blurred backdrop of green foliage. +Ringed_Kingfisher_0103_72894.jpg The bird displays a bluish-gray head with a touch of white on the throat, perched sideways on a branch with its body obscured by vibrant noise, against a blurred background of green branches and yellow highlights. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/083.White_breasted_Kingfisher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/083.White_breasted_Kingfisher_descriptions.txt new file mode 100644 index 0000000..866206c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/083.White_breasted_Kingfisher_descriptions.txt @@ -0,0 +1,3 @@ +White_Breasted_Kingfisher_0122_73199.jpg A kingfisher is perched diagonally on a branch with vibrant blue wings and tail visible, a reddish beak opening, and part of its brown head and body obscured by a colorful, rectangular static occlusion, against a blurred green background. +White_Breasted_Kingfisher_0118_73511.jpg The White-breasted Kingfisher is perched on a tree branch with its prominent bright blue wings and tail visible, while its head and shoulders are rich brown, and a significant portion of the body is obscured by a colorful digital occlusion on the left side of the image. +White_Breasted_Kingfisher_0087_73264.jpg The White-breasted Kingfisher is perched on a branch with its reddish-brown head and body visible, while its wings display bright teal feathers; the image's left side is heavily occluded with multicolored noise, obscuring part of the background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/084.Red_legged_Kittiwake_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/084.Red_legged_Kittiwake_descriptions.txt new file mode 100644 index 0000000..3b73031 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/084.Red_legged_Kittiwake_descriptions.txt @@ -0,0 +1,3 @@ +Red_Legged_Kittiwake_0044_795388.jpg The visible portion of the Red-legged Kittiwake shows a blurred white and gray body with a small section of a cliffside, while the central area is heavily occluded with colorful noise. +Red_Legged_Kittiwake_0006_795436.jpg The image shows part of a dark rocky environment with the bottom portion revealing reddish legs emerging from a colorful, pixelated area that obscures the body above. +Red_Legged_Kittiwake_0027_795454.jpg The Red-legged Kittiwake is partially visible with white and gray coloration and smooth feather texture, perched on a rocky surface, with its head and body exposed while the central portion is heavily occluded by a multicolored rectangular overlay, revealing a distinct red leg. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/085.Horned_Lark_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/085.Horned_Lark_descriptions.txt new file mode 100644 index 0000000..1da1377 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/085.Horned_Lark_descriptions.txt @@ -0,0 +1,3 @@ +Horned_Lark_0091_74087.jpg A bird with a visible brown and gray plumage is perched on a rock, partially occluded by a vertical strip of multicolored static, showing only its tail and rear half from a side view against a blurred background. +Horned_Lark_0049_74574.jpg A Horned Lark with muted brown and white plumage is partially visible in a snowy environment, with the head and part of the body peeking from behind a vertical strip of colorful static noise obscuring most of its form. +Horned_Lark_0066_74796.jpg The bird is shown in a side pose with visible brown and white plumage, a distinct black mark on its face and bright yellow patch near the beak, standing on a sandy surface with the right side obscured by colorful digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/086.Pacific_Loon_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/086.Pacific_Loon_descriptions.txt new file mode 100644 index 0000000..7032549 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/086.Pacific_Loon_descriptions.txt @@ -0,0 +1,3 @@ +Pacific_Loon_0013_75530.jpg The image shows a body of water with rippling waves, partially covered by a heavily occluded area filled with multicolored static-like noise, leaving no discernible features of the "086.Pacific Loon" visible. +Pacific_Loon_0036_75539.jpg The Pacific Loon is viewed from the side with its wings partially spread, predominantly featuring a black-and-white coloration and is partially occluded on the left side by a multicolored pixelated block, while the background shows a rippling water surface. +Pacific_Loon_0022_75405.jpg The image shows the head and neck of a bird with a pointed beak protruding above water, featuring a smooth texture and dark coloration, partially obscured by a multicolored, pixelated block in the lower portion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/087.Mallard_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/087.Mallard_descriptions.txt new file mode 100644 index 0000000..1241bd4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/087.Mallard_descriptions.txt @@ -0,0 +1,3 @@ +Mallard_0103_77105.jpg The visible part of the Mallard shows a vibrant green head, a brown chest, and orange feet standing on a paved surface, with heavy pixelated occlusion covering part of its body. +Mallard_0018_76511.jpg A blue-green and brown bird in flight has its body partly obscured by a multi-colored static block, with its head and tail visible against a blurred background. +Mallard_0052_76946.jpg A Mallard with a glossy green head and a yellow bill is positioned side-on near water, with much of its body obscured by digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/088.Western_Meadowlark_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/088.Western_Meadowlark_descriptions.txt new file mode 100644 index 0000000..2b269de --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/088.Western_Meadowlark_descriptions.txt @@ -0,0 +1,3 @@ +Western_Meadowlark_0058_78247.jpg The bird appears perched on a branch in a natural setting, showing a yellow chest and flank mottled with darker markings, with a central portion obscured by pixelated occlusion, and a forested backdrop partially visible. +Western_Meadowlark_0038_77785.jpg The Western Meadowlark, perched in a side view, displays its brown and black streaked back and wings with a visible distinct yellow throat, while a significant portion of its body is obscured by pixelated noise on the right side. +Western_Meadowlark_0097_78239.jpg The Western Meadowlark, perched in profile view on a branch against a clear blue sky, shows a vibrant yellow throat with speckled brown wings and a prominent dark V-shaped band across its chest, though a significant portion of its body is obscured by a rectangular patch of multicolored noise discoloration. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/089.Hooded_Merganser_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/089.Hooded_Merganser_descriptions.txt new file mode 100644 index 0000000..9b96e33 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/089.Hooded_Merganser_descriptions.txt @@ -0,0 +1,3 @@ +Hooded_Merganser_0014_796739.jpg The image shows the Hooded Merganser partially obscured by a vertical strip of colorful noise occlusion, with visible features including a dark silhouette against a rippled water surface. +Hooded_Merganser_0084_78954.jpg A Hooded Merganser is swimming in the water with a visible brown textured body, sharp black and white pattern on its head and neck, a striking yellow eye, and the left side heavily occluded by a colorful noise pattern. +Hooded_Merganser_0023_796784.jpg The visible portion of the Hooded Merganser shows its distinct black and white plumage with a prominent crest and yellow eye, swimming to the side in a water environment with heavy colorful occlusion obscuring the left half of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/090.Red_breasted_Merganser_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/090.Red_breasted_Merganser_descriptions.txt new file mode 100644 index 0000000..dfa04fc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/090.Red_breasted_Merganser_descriptions.txt @@ -0,0 +1,3 @@ +Red_Breasted_Merganser_0022_79274.jpg The Red-breasted Merganser, viewed from the side, has a dark spiky crest, a red eye, and an orange bill, with the right half occluded and surrounded by bluish water. +Red_Breasted_Merganser_0006_79216.jpg The Red-breasted Merganser is partially visible with its mottled black and gray back emerging from calm, rippled water, while the left side of the image is obscured by a vertical band of colorful static, hiding the lower body and part of the head. +Red_Breasted_Merganser_0074_79497.jpg The image shows a background of rippling water with a significant central area occluded by colorful, pixelated noise, obscuring most details except the muted tones of the water surface. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/091.Mockingbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/091.Mockingbird_descriptions.txt new file mode 100644 index 0000000..111eaa0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/091.Mockingbird_descriptions.txt @@ -0,0 +1,3 @@ +Mockingbird_0047_80819.jpg The image shows a bird perched on a branch with visible brownish-gray plumage and faint striping on the wings, viewed from the side, with a large section of the body obscured by a colorful, pixelated occlusion on the left. +Mockingbird_0069_79760.jpg The visible 091.Mockingbird perches side-on against a clear sky with grayish body feathers, partially obscured by a colorful, vertical noise pattern covering the left of the image, leaving its slim profile and distinct wing markings partially discernible. +Mockingbird_0087_79600.jpg The bird, perched among tangled branches, shows a muted brown and beige plumage with its head and tail visible, while its central body is heavily obscured by a colorful static square. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/092.Nighthawk_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/092.Nighthawk_descriptions.txt new file mode 100644 index 0000000..dc5864f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/092.Nighthawk_descriptions.txt @@ -0,0 +1,3 @@ +Nighthawk_0067_795335.jpg A nighthawk is seen in flight against a clear sky, with mottled brown and white plumage and broad wings partially obscured by a colorful static overlay in the upper left corner. +Nighthawk_0050_84094.jpg The 092.Nighthawk is perched sideways on a lichen-covered branch, with a mottled brown and white pattern visible on its body, while its head and part of its torso are heavily obscured by a colorful, pixelated block. +Nighthawk_0046_82246.jpg The object appears to be a bird with a portion of its right wing visible, showing a mottled brown and gray texture, against a sandy background littered with seashells, while most of it is obscured by a colorful, rectangular overlay. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/093.Clark_Nutcracker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/093.Clark_Nutcracker_descriptions.txt new file mode 100644 index 0000000..423efb2 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/093.Clark_Nutcracker_descriptions.txt @@ -0,0 +1,3 @@ +Clark_Nutcracker_0026_84945.jpg The Clark's Nutcracker, viewed from the side on a wooden feeder amidst a green background, displays a light gray body with black wings, with its head and upper body mostly visible, while a colorful noise pattern obscures the left side. +Clark_Nutcracker_0084_85149.jpg The image shows a Clark's Nutcracker with gray and black feathers visible against a rock surface, seen from a side angle, with heavy pixelated occlusion covering the central portion of its body and wings. +Clark_Nutcracker_0003_85296.jpg The Clark Nutcracker is perched with a visible gray body and head contrasted by black wings, standing on grass, while its belly area is obscured by digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/094.White_breasted_Nuthatch_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/094.White_breasted_Nuthatch_descriptions.txt new file mode 100644 index 0000000..5d54053 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/094.White_breasted_Nuthatch_descriptions.txt @@ -0,0 +1,3 @@ +White_Breasted_Nuthatch_0002_86287.jpg The bird, perched on a green feeder, shows a distinct white breast with a blue-gray back and black cap, while its sharp beak is visible, but a significant portion of its left side and body is obscured by colorful static noise. +White_Breasted_Nuthatch_0027_85905.jpg The white-breasted nuthatch, seen from the side, displays a smooth grey and white plumage with a distinctive black cap, perched on a curved dark object, while the right third of the image is heavily occluded by colorful static. +White_Breasted_Nuthatch_0104_85969.jpg The image shows the right side of a White-breasted Nuthatch, partially obscured by colorful noise on the left, with the visible part perched vertically on a textured, light brown and grey branch, displaying muted white and bluish-gray plumage from the back and underside, with a hint of black near the tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/095.Baltimore_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/095.Baltimore_Oriole_descriptions.txt new file mode 100644 index 0000000..368abec --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/095.Baltimore_Oriole_descriptions.txt @@ -0,0 +1,3 @@ +Baltimore_Oriole_0092_87435.jpg The bird is perched on a branch with its back facing the viewer, showing a vivid orange belly and a partially visible black head with white wing markings; a vertical, digitally noisy occlusion covers part of its body, disrupting the natural setting of branches and leaves. +Baltimore_Oriole_0120_88403.jpg A predominantly bright orange bird with black wings and a sharply defined beak is perched on a wooden post beside a half grapefruit, obscured on the right by a colorful digital pattern. +Baltimore_Oriole_0111_87449.jpg The image shows a Baltimore Oriole with vivid orange and black plumage perched sideways on a half-orange feeder, heavily occluded on the right with a digital, multicolored noise pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/096.Hooded_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/096.Hooded_Oriole_descriptions.txt new file mode 100644 index 0000000..deb7e2e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/096.Hooded_Oriole_descriptions.txt @@ -0,0 +1,3 @@ +Hooded_Oriole_0079_89978.jpg The visible part of the bird shows vibrant yellow coloration below a pixelated occlusion, surrounded by green foliage with hints of black around the edges, suggesting a profile pose partially hidden by the environment. +Hooded_Oriole_0124_90350.jpg The visible part of the Hooded Oriole shows a vibrant yellow-orange plumage with a black head while perched on a branch, with its lower body occluded by static-like noise and surrounded by foliage. +Hooded_Oriole_0074_91081.jpg A bright orange bird with a distinctive black mask is partially visible behind a mesh bird feeder, with heavy occlusion on the right side due to a colorful, static-like pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/097.Orchard_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/097.Orchard_Oriole_descriptions.txt new file mode 100644 index 0000000..f00ec9a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/097.Orchard_Oriole_descriptions.txt @@ -0,0 +1,3 @@ +Orchard_Oriole_0084_91658.jpg The visible part of the Orchard Oriole displays a vibrant yellow-green plumage with a detailed texture, seen in a side view perched on a branch, with an occlusion covering the lower portion in a mosaic pattern, while brown and white-winged feathers are slightly fringed in the upper area. +Orchard_Oriole_0116_91645.jpg The Orchard Oriole is partially visible on the right side with its olive-brown plumage set against a verdant background, while the left side is heavily occluded with digital noise, showing little of its environment or specific features. +Orchard_Oriole_0023_91705.jpg The Orchard Oriole, seen from a side view, exhibits a distinctive dark head and back with reddish-orange body visible at the edges, perched against a blurred, possibly garden environment, with the lower portion heavily occluded by a colorful, noisy square. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/098.Scott_Oriole_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/098.Scott_Oriole_descriptions.txt new file mode 100644 index 0000000..697a885 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/098.Scott_Oriole_descriptions.txt @@ -0,0 +1,3 @@ +Scott_Oriole_0008_795814.jpg A small bird sits on a wooden surface with a bright yellow and black color pattern, viewed from the side with a colorful noise occlusion on its right side, partially obscuring its wing and tail. +Scott_Oriole_0031_90270.jpg The image shows a partially visible bird on a branch with its head slightly peeking from behind a vertical strip of heavy noise occlusion, amidst a background of clear sky and more branches, where the bird's visible part has a dark color without distinct textural details due to the low resolution and occlusion. +Scott_Oriole_0024_92302.jpg The Scott Oriole appears perched with a front-facing viewpoint, showing a dark, mottled head and upper body blending into the tree branches, while the lower part is heavily occluded with colorful noise, partially obscuring further details. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/099.Ovenbird_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/099.Ovenbird_descriptions.txt new file mode 100644 index 0000000..5654b33 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/099.Ovenbird_descriptions.txt @@ -0,0 +1,3 @@ +Ovenbird_0112_93018.jpg The Ovenbird is perched on a flat, light gray surface with its head and wings visible; it has a brown back, a distinct orange crown stripe, and white underparts with blackish streaks, while its midsection is obscured by a pixelated block. +Ovenbird_0090_93375.jpg The ovenbird, viewed from the side, has a brown and olive color with a speckled breast visible, surrounded by foliage with leaves, while heavily occluded by a multicolored, pixelated rectangle in the center. +Ovenbird_0130_92452.jpg The Ovenbird is partially visible from a side view on a branch, with its head and chest displaying earthy brown and white streaks, while the body is mostly occluded by colorful digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/100.Brown_Pelican_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/100.Brown_Pelican_descriptions.txt new file mode 100644 index 0000000..895b170 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/100.Brown_Pelican_descriptions.txt @@ -0,0 +1,3 @@ +Brown_Pelican_0068_94430.jpg The Brown Pelican stands on a rock with a partially obscured wing and body due to colorful static, showcasing its brown plumage with a slightly arched posture under a clear blue sky. +Brown_Pelican_0111_93872.jpg The Brown Pelican is perched on a boat's pointed prow, with most of its body obscured by static-like noise, leaving only a hint of a brownish-gray neck and head visible against a backdrop of rippling blue water and a rocky shoreline. +Brown_Pelican_0056_95229.jpg The visible section of the brown pelican, positioned slightly to the left and perched on a rocky surface surrounded by water, shows muted hues and rough textures, though a dominant vertical occlusion of colorful static obstructs most of the bird's body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/101.White_Pelican_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/101.White_Pelican_descriptions.txt new file mode 100644 index 0000000..e327bdc --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/101.White_Pelican_descriptions.txt @@ -0,0 +1,3 @@ +White_Pelican_0005_95916.jpg The image shows a partially occluded white pelican floating on water, with its smooth, light-colored plumage visible against a blue rippling surface, and significant visual noise covering the left side, obscuring other details. +White_Pelican_0022_95897.jpg The 101.White Pelican is floating on water with only its white and slightly textured back and part of a black wing visible, while a vertical band of colorful static obscures the center and right side of the image. +White_Pelican_0075_96422.jpg The white pelican is seen partially submerged in water with the left side of its body visible, exhibiting smooth white feathers and a faintly visible yellow-orange beak, while a large occlusion obscures the right side and the environment includes darker, textured water and vegetation. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/102.Western_Wood_Pewee_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/102.Western_Wood_Pewee_descriptions.txt new file mode 100644 index 0000000..51f6168 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/102.Western_Wood_Pewee_descriptions.txt @@ -0,0 +1,3 @@ +Western_Wood_Pewee_0011_98205.jpg A brown bird perches sideways on a barbed wire against a blurry green background, with its head and upper body obscured by colorful static noise. +Western_Wood_Pewee_0040_795051.jpg The image shows a partially visible Western Wood Pewee perched on a branch with a smooth muted color palette, predominantly brown with some textural detailing on the visible feathers, obscured centrally by a vertical band of multicolored static-like occlusion, with a soft, out-of-focus background. +Western_Wood_Pewee_0049_98263.jpg The bird is perched with a side profile visible against a blurred green background, showing a dark grey head and upper body while heavily occluded by static-like noise across the middle, with distinguishing branches below. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/103.Sayornis_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/103.Sayornis_descriptions.txt new file mode 100644 index 0000000..86c8fad --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/103.Sayornis_descriptions.txt @@ -0,0 +1,3 @@ +Sayornis_0111_98406.jpg The bird, posed in a side profile, displays a smooth gradient of soft gray on its feathered exterior with visible wing markings, while being partially occluded by a colorful, pixelated block on the lower portion, set against a blurred natural background. +Sayornis_0010_98611.jpg The bird exhibits a light brown and cream color on its head and upper body, with the lower portion occluded by noisy distortion, perched atop a wooden post against a smooth, warm-toned background. +Sayornis_0058_98798.jpg The bird exhibits a dark plumage with a smooth texture, perched on a wire fence from a side view, with its head slightly turned, while a substantial portion of the upper left part of the image is obscured by multicolored static. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/104.American_Pipit_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/104.American_Pipit_descriptions.txt new file mode 100644 index 0000000..4fcff28 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/104.American_Pipit_descriptions.txt @@ -0,0 +1,3 @@ +American_Pipit_0073_99642.jpg The bird, partially occluded on the right by a vertical band of multicolored noise, has a lightly speckled brown and beige plumage with a distinct side profile showcasing a slender beak and standing upright on a rocky ground scattered with green patches. +American_Pipit_0027_100189.jpg The American Pipit is seen in profile with a largely brownish texture and speckled pattern, standing on a patchy wet ground environment with significant occlusion covering its lower abdomen and legs. +American_Pipit_0095_99959.jpg The American Pipit has a speckled brown and white plumage with a visible standing pose, partially occluded by multicolored noise on the right side, against a blurred natural background with some twigs in the foreground. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/105.Whip_poor_Will_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/105.Whip_poor_Will_descriptions.txt new file mode 100644 index 0000000..6f9665a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/105.Whip_poor_Will_descriptions.txt @@ -0,0 +1,3 @@ +Whip_Poor_Will_0010_100464.jpg The image shows a Whip-poor-will partially hidden by colorful static on the left, displaying a speckled brown and cream texture with visible foliage and grass in its natural ground environment. +Whip_Poor_Will_0024_100444.jpg The bird is perched on a branch with a speckled brown and gray plumage visible, while a significant portion of its body is occluded by a colorful static pattern on the left side. +Whip_Poor_Will_0003_796409.jpg The image shows the head of a bird with a mottled brown and grey texture, partially visible behind bright green leaves, with the lower portion obscured by a colorful digital noise pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/106.Horned_Puffin_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/106.Horned_Puffin_descriptions.txt new file mode 100644 index 0000000..dd9649d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/106.Horned_Puffin_descriptions.txt @@ -0,0 +1,3 @@ +Horned_Puffin_0060_100726.jpg A Horned Puffin is perched on a log with bright orange feet, its body mostly in profile, showing a white chest and face, with significant occlusion obscuring the middle of the image. +Horned_Puffin_0029_100888.jpg The Horned Puffin has a black and white plumage visible from the side, floating on water with its right side obscured by a colorful pixelated occlusion, while its distinctive orange beak and black crown are partially discernible despite the low resolution. +Horned_Puffin_0025_100942.jpg The image shows the back end and tail of a Horned Puffin with a visible black and white plumage against a muted rocky background, while the rest is obscured by a pixelated rectangular occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/107.Common_Raven_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/107.Common_Raven_descriptions.txt new file mode 100644 index 0000000..7c1676f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/107.Common_Raven_descriptions.txt @@ -0,0 +1,3 @@ +Common_Raven_0062_101448.jpg The Common Raven appears perched on a rocky surface, with its glossy black feathers and distinctive beak visible, while the lower part is heavily occluded by a colorful noise pattern. +Common_Raven_0002_102582.jpg The Common Raven is perched with its back facing partly towards the viewer, featuring a glossy black plumage and a textured surface enhanced by light reflection, while a significant vertical section of the bird is obscured by static-like noise, set against a blurred background of wooden and natural elements. +Common_Raven_0121_101744.jpg The Common Raven appears perched on a park sign with its sleek black plumage exhibiting a glossy texture, viewed from the side with the head in a slight profile, while the left portion of the image is obstructed by a dense, colorful digital noise pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/108.White_necked_Raven_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/108.White_necked_Raven_descriptions.txt new file mode 100644 index 0000000..ba597b4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/108.White_necked_Raven_descriptions.txt @@ -0,0 +1,3 @@ +White_Necked_Raven_0036_797359.jpg The bird is viewed in profile on a textured branch, with its head and part of its body visible displaying a smooth black plumage, while the central portion is occluded by a colorful static pattern. +White_Necked_Raven_0045_797381.jpg The visible part of the raven, viewed from the side, displays dark feathers with a sleek sheen, partially occluded by a colorful noise pattern that obscures the head and neck, set against a muted background with hints of foliage. +White_Necked_Raven_0067_102630.jpg The bird perched on a textured rocky surface under a clear blue sky displays limited visibility with a small portion of its black feathers and an obscured body due to a central, colorful occlusion block. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/109.American_Redstart_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/109.American_Redstart_descriptions.txt new file mode 100644 index 0000000..4417cf9 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/109.American_Redstart_descriptions.txt @@ -0,0 +1,3 @@ +American_Redstart_0036_103231.jpg The American Redstart is perched in a profile view with its head visible, displaying a black head and a faint glimpse of orange on the wings, while a vertical strip of heavy visual noise conceals much of the body, set against a blurred natural background. +American_Redstart_0138_102869.jpg The image shows the side view of a bird perched on a branch, with visible orange patches on its wings and tail against a mainly dark plumage, while the right half of the image is obscured by a multicolored, pixelated occlusion. +American_Redstart_0022_103701.jpg The American Redstart appears perched in a profile view with its head and back visible, featuring a mix of gray and black on the head with a hint of orange-yellow on the wings, while the lower body is obscured by colorful digital noise, set against a background of green leaves and branches. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/110.Geococcyx_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/110.Geococcyx_descriptions.txt new file mode 100644 index 0000000..911450d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/110.Geococcyx_descriptions.txt @@ -0,0 +1,3 @@ +Geococcyx_0086_104755.jpg The partially visible Geococcyx, perched on rocks in a desert-like environment, shows a muted brownish texture with a speckled pattern, obscured heavily on its right side by digital noise. +Geococcyx_0110_104163.jpg The image shows a bird with a partially visible tail and legs, exhibiting brown and white streaked plumage, standing on earthy ground, with a large vertical section heavily obscured by colorful static, likely hiding the head and upper body. +Geococcyx_0009_104372.jpg The image shows a bird with mottled brown and white plumage and a crest on its head, standing on a sandy ground, with the right side obscured by heavy digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/111.Loggerhead_Shrike_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/111.Loggerhead_Shrike_descriptions.txt new file mode 100644 index 0000000..14bec6a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/111.Loggerhead_Shrike_descriptions.txt @@ -0,0 +1,3 @@ +Loggerhead_Shrike_0127_105742.jpg The Loggerhead Shrike is perched on a branch against a clear sky, with its body partially occluded by pixelated noise, visible features include grayish-white underparts and a distinctively long, slender black tail. +Loggerhead_Shrike_0129_106389.jpg The Loggerhead Shrike is perched sideways on a wire with a visible smooth gray back and head, a distinct black eye mask, and white underparts, while the lower part of its body is heavily occluded by a colorful noise pattern amidst a blurred natural background with sparse foliage. +Loggerhead_Shrike_0048_106215.jpg The Loggerhead Shrike appears with a gray back, black mask and wings, perched on wood with a multicolored static occlusion covering its right side against a dark background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/112.Great_Grey_Shrike_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/112.Great_Grey_Shrike_descriptions.txt new file mode 100644 index 0000000..139de9b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/112.Great_Grey_Shrike_descriptions.txt @@ -0,0 +1,3 @@ +Great_Grey_Shrike_0050_797012.jpg The Great Grey Shrike appears partially obscured by vertical noise, showing a view from the side with a light grey body, a long tail, and hints of black wing markings, perched on a dry, beige plant. +Great_Grey_Shrike_0009_797038.jpg The visible part of the bird shows a tail with alternating dark and light patterns and a small portion of its body perched on a thin branch against a blurry dark green background, while the upper part is obscured by pixelated noise. +Great_Grey_Shrike_0016_106720.jpg The lower portion of the image shows a tangled, dry bush with some yellow flowers, while the upper half is completely obscured by digital noise, making any view of the bird impossible. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/113.Baird_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/113.Baird_Sparrow_descriptions.txt new file mode 100644 index 0000000..a769b1c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/113.Baird_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Baird_Sparrow_0009_106882.jpg The bird is perched on a branch with visible brown and white streaked plumage, viewed in profile with its head tilted upwards, while heavily occluded by colorful digital noise covering its left side. +Baird_Sparrow_0029_794583.jpg The 113.Baird Sparrow is partially obscured with added noise over its lower body, while its head and chest appear in a profile view, showcasing a blend of brown and beige streaked feathers and dark eye markings. +Baird_Sparrow_0030_794569.jpg The visible portion of the bird shows muted brown and white plumage with streaks, seen from a side view perched on green foliage, with significant central occlusion obscuring most of its body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/114.Black_throated_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/114.Black_throated_Sparrow_descriptions.txt new file mode 100644 index 0000000..943e680 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/114.Black_throated_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Black_Throated_Sparrow_0009_107333.jpg The bird, perched on a rock, displays a mix of brown and cream with intricate feather patterns, while a heavily occluded area with a multicolored square partially conceals its right side against a blurred green background. +Black_Throated_Sparrow_0034_107327.jpg The image shows a predominantly blue sky with a small section of plant stems visible, while the central area is heavily occluded by colorful, pixelated noise, obstructing any view of a Black-throated Sparrow. +Black_Throated_Sparrow_0088_107220.jpg The image shows a small bird perched sideways on a branch, with a visible fluffy white underside and brownish wings, while a substantial portion of the left side is heavily occluded by colorful static noise, obscuring distinguishing features such as the black throat. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/115.Brewer_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/115.Brewer_Sparrow_descriptions.txt new file mode 100644 index 0000000..f0b0764 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/115.Brewer_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Brewer_Sparrow_0023_107489.jpg A sparrow is perched on a thin branch, with a beige and gray plumage visible on its back while the central part of the image is heavily occluded by colorful static noise. +Brewer_Sparrow_0014_107435.jpg A small section of a pink beak is visible against a blurred brown background, with heavy occlusion covering most of the image, obscuring additional features. +Brewer_Sparrow_0012_107411.jpg The Brewer Sparrow has a muted brown and gray plumage with a speckled texture, perched in profile on a thin branch among green leaves, with the right side heavily occluded by colorful static noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/116.Chipping_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/116.Chipping_Sparrow_descriptions.txt new file mode 100644 index 0000000..6c006c4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/116.Chipping_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Chipping_Sparrow_0011_108081.jpg The visible part of the Chipping Sparrow shows a brownish back with streaks, a rusty cap, and a grayish body perched from the side on a teal wooden surface, while the right portion of the image is obscured by colorful static noise. +Chipping_Sparrow_0015_108462.jpg The Chipping Sparrow is perched on a slender branch, with visible parts showcasing a grey and brown streaked or mottled texture, partially obscured by a pixelated occlusion on the left where the rest of its body should be, surrounded by a blurred greenish background. +Chipping_Sparrow_0071_108735.jpg The bird is perched on a branch with gray and orange-red visible on its head and chest, with heavy color noise occluding the central portion of the body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/117.Clay_colored_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/117.Clay_colored_Sparrow_descriptions.txt new file mode 100644 index 0000000..5a9c469 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/117.Clay_colored_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Clay_Colored_Sparrow_0091_110768.jpg The image shows a small bird partly visible with a muted brown and gray pattern, perched on a branch amidst green leaves, with significant central occlusion obscuring major details. +Clay_Colored_Sparrow_0071_110656.jpg The image shows the Clay-colored Sparrow perched among green foliage, with visible brown and white streaks on its head while the rest of its body is obscured by colorful noise covering the center. +Clay_Colored_Sparrow_0087_110946.jpg The image shows a Clay-colored Sparrow with a muted brown and beige plumage perched in a side view amidst desaturated, dried foliage with a central rectangular area occluded by multicolored static noise, partially obscuring its body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/118.House_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/118.House_Sparrow_descriptions.txt new file mode 100644 index 0000000..72c4f46 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/118.House_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +House_Sparrow_0053_111388.jpg The 118.House Sparrow, perched on a textured vertical post, shows its brown and gray plumage with black detailing around the face, while the right side is obscured by colorful digital noise. +House_Sparrow_0130_110985.jpg The image shows a house sparrow perched on a branch with its head facing downwards, exhibiting brown and gray plumage with a distinct black eye stripe, while a large section on the right side is heavily occluded by colorful static-like pixels, surrounded by blurred green leaves in the foreground. +House_Sparrow_0073_112745.jpg A bird with visible earthy brown and gray plumage, while its head and chest, partially visible on the right side, show distinctive dark markings against a light background, with heavy occlusion by a colorful noise pattern on the left obscuring much of the body and environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/119.Field_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/119.Field_Sparrow_descriptions.txt new file mode 100644 index 0000000..583d2e1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/119.Field_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Field_Sparrow_0091_113486.jpg A small bird with a warm brown back and white underparts is perched on a branch, partially hidden behind colorful static occlusion, with only the tail and back clearly visible against a blurred natural background. +Field_Sparrow_0095_113842.jpg The image shows a Field Sparrow from a side angle with its distinct brown streaked pattern on the back and wings visible, surrounded by green grass, while a significant portion of the bird's body is obscured by pixelated noise on the right side. +Field_Sparrow_0107_113659.jpg The Field Sparrow is partially visible with a clear view of its brown and white speckled back and tail to the left of the multi-colored occlusion, situated in a grassy and straw-covered environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/120.Fox_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/120.Fox_Sparrow_descriptions.txt new file mode 100644 index 0000000..827b52d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/120.Fox_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Fox_Sparrow_0109_114859.jpg The Fox Sparrow is partially visible from the side with its distinctive brown and white speckled plumage showing, while heavily occluded by dense, multicolored noise on the left side, amidst a blurred, warm-toned background. +Fox_Sparrow_0063_114350.jpg The Fox Sparrow in the image is perched on a branch, displaying a speckled brown and white plumage, with a vertical digital noise occlusion covering part of its body, while its head and back are visible from a side profile against a backdrop of clear blue sky and surrounding foliage. +Fox_Sparrow_0078_114582.jpg The 120.Fox Sparrow is perched on a rugged, moss-covered tree bark, displaying a brown and white streaked plumage with a noticeable granular texture in the background due to pixelated occlusion covering the left side of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/121.Grasshopper_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/121.Grasshopper_Sparrow_descriptions.txt new file mode 100644 index 0000000..417b95e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/121.Grasshopper_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Grasshopper_Sparrow_0001_115938.jpg A person holds a small bird primarily visible from an underside view, showcasing its right wing with brown and black streaks extended horizontally, while the bird's tail and body are obscured by multi-colored digital static. +Grasshopper_Sparrow_0081_116326.jpg The image shows a small bird perched on thin branches, with a mottled brown texture and light-colored underparts, partially obscured by a rectangular patch of multicolored static on its lower-left side. +Grasshopper_Sparrow_0119_116081.jpg The visible part of the Grasshopper Sparrow shows a pale, streaked head with a distinct yellowish eyebrow, positioned in a side view perched on a branch, with the lower body and wings obscured by colorful digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/122.Harris_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/122.Harris_Sparrow_descriptions.txt new file mode 100644 index 0000000..39d9afb --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/122.Harris_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Harris_Sparrow_0006_116364.jpg The low-resolution image of the Harris Sparrow shows a bird with a mix of earthy brown and lighter shades on the head, viewed head-on with upper body visible, partially obscured by digital noise occluding the lower portion, against a blurred natural background with branches framing the scene. +Harris_Sparrow_0072_116662.jpg The image shows a partially visible bird on a wooden surface with gray and brown speckles, featuring a clear view of the right side as the left is obscured by heavy multicolored static, set against an out-of-focus natural background. +Harris_Sparrow_0046_116425.jpg The bird exhibits a speckled brown and white plumage with a slightly visible darker head pattern, standing on a seed-filled surface with its left side occluded by a colorful noise patch, in a natural outdoor setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/123.Henslow_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/123.Henslow_Sparrow_descriptions.txt new file mode 100644 index 0000000..a2d5e9d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/123.Henslow_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Henslow_Sparrow_0098_796601.jpg A Henslow's Sparrow with a visible olive-brown head, dark streaks on the back, and spotted underparts is perched in a hand with a vertical strip of pixelated occlusion covering part of its body. +Henslow_Sparrow_0042_796595.jpg The Henslow Sparrow is perched with a partially visible mottled brown and cream head and back, while a significant central square occlusion hides much of its body and environment. +Henslow_Sparrow_0070_796571.jpg The Henslow's Sparrow perches on a thin branch, displaying a brown and olive back with streaks, while its head and breast show a pale yellow hue with focused visibility on the left side, with substantial occlusion covering the upper left portion of the image with colorful noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/124.Le_Conte_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/124.Le_Conte_Sparrow_descriptions.txt new file mode 100644 index 0000000..8bbe337 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/124.Le_Conte_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Le_Conte_Sparrow_0071_795185.jpg The Le Conte's Sparrow is perched in a side view, showing a brownish head and back with black streaks, while the lower part of the body is heavily occluded by colorful static noise, against a blurred natural background. +Le_Conte_Sparrow_0032_795186.jpg The visible portion of the Le Conte's Sparrow shows a small bird perched on a cream-colored reed, with a distinct tan and dark brown streaked pattern on its plumage, and the environment features green grass in the background, while the left side of the image is obscured by heavy digital noise. +Le_Conte_Sparrow_0034_795150.jpg A small bird perches on a branch with visible brown and cream streaked plumage, partially obscured by a pixelated square, amidst a backdrop of dry reeds. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/125.Lincoln_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/125.Lincoln_Sparrow_descriptions.txt new file mode 100644 index 0000000..23fe3b3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/125.Lincoln_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Lincoln_Sparrow_0032_117747.jpg The bird is seen in a side profile perched on a textured branch, with its head and part of its body obscured by digital noise, while the visible areas show brown and buff streaks with subtle patterns on the exposed wings and tail against a blurred background. +Lincoln_Sparrow_0063_117509.jpg The image shows a background with dry, brown branches and seed pods, partially obscured by a central rectangle filled with heavy, multicolored noise, while any discernible features of the Lincoln Sparrow remain hidden under the occlusion. +Lincoln_Sparrow_0108_117773.jpg A partially visible bird is perched on the ground with its tail protruding from a central pixelated occlusion, showcasing brown streaked texture with hints of buff and black against a woodland environment of leaves and twigs. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/126.Nelson_Sharp_tailed_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/126.Nelson_Sharp_tailed_Sparrow_descriptions.txt new file mode 100644 index 0000000..ef4a566 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/126.Nelson_Sharp_tailed_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Nelson_Sharp_Tailed_Sparrow_0077_796913.jpg The sparrow, viewed from a side profile, displays a prominent orange-brown cheek and crown, a black cap, and is perched on wooden branches, with its lower body heavily occluded by colorful static noise. +Nelson_Sharp_Tailed_Sparrow_0015_796922.jpg A small bird with a grayish head, brownish wings, and visible perch on thin branches is partly obscured by a colorful pixelated block covering its lower body, surrounded by dry foliage. +Nelson_Sharp_Tailed_Sparrow_0013_796942.jpg The bird, viewed from the side, displays mottled brown and tan plumage with streaks on its head and body, standing on a textured gray surface, while its right half is obscured by a multicolored noise pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/127.Savannah_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/127.Savannah_Sparrow_descriptions.txt new file mode 100644 index 0000000..be1de3d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/127.Savannah_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Savannah_Sparrow_0029_119621.jpg The image shows the rear view of a bird with visible streaked brown and white plumage, perched on a wooden post, with most of its body occluded by a colorful, pixelated rectangular block, set against a blurred green background. +Savannah_Sparrow_0008_118929.jpg The image shows a side view of a bird with brown and white streaked plumage, partially obscured by a colorful rectangular occlusion, set against a blurred background of dry, light brown vegetation. +Savannah_Sparrow_0107_119671.jpg The bird is partially visible in a natural, grassy setting with brown plumage speckled with darker streaks on its head, while the lower half is obscured by a dense, colorful static occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/128.Seaside_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/128.Seaside_Sparrow_descriptions.txt new file mode 100644 index 0000000..b54e87b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/128.Seaside_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Seaside_Sparrow_0048_120758.jpg The Seaside Sparrow is perched at an angle on thin branches with most of its body obscured by a large, rainbow noise pattern, revealing a small part of its grayish-brown plumage and a hint of yellow near its eyes. +Seaside_Sparrow_0027_796512.jpg The Seaside Sparrow is partially visible with a monochrome dark head displaying a slight yellow spot near the beak, surrounded by tall, brown marsh grasses, while the body is heavily occluded by a colorful, pixelated block. +Seaside_Sparrow_0035_796533.jpg The bird is seen in profile with its dark plumage speckled with lighter patches, perched among tall grasses against a blue sky, while a pixelated area partially obscures its lower body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/129.Song_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/129.Song_Sparrow_descriptions.txt new file mode 100644 index 0000000..83c3687 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/129.Song_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Song_Sparrow_0040_121617.jpg The Song Sparrow is perched in a natural setting with significant pixelated occlusion on the left side, displaying a side view with a visible brown and white streaked plumage and a distinct brown stripe above the eye. +Song_Sparrow_0087_121062.jpg The Song Sparrow, viewed from the side, displays a speckled brown and white pattern on its face and body, with significant occlusion by a colorful noise strip in the center, set against a soft, blurry beige background. +Song_Sparrow_0077_121196.jpg In a natural, leaf-laden environment, the Song Sparrow exhibits light brown and white streaked plumage, with a clear visible side view displaying its distinct striping on the head and body, while part of its left side is obscured by a digital noise occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/130.Tree_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/130.Tree_Sparrow_descriptions.txt new file mode 100644 index 0000000..c6c76be --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/130.Tree_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Tree_Sparrow_0077_123417.jpg A small bird with a brown cap, white cheeks, and streaked brown wings is perched on a branch, with significant occlusion by a vertical strip of colorful noise on the right side. +Tree_Sparrow_0057_123665.jpg A Tree Sparrow, partially visible from a side view, shows a brown head and a bit of white feathering above, perched on a snowy, moss-covered branch with a central block of colorful static occluding the body and surroundings. +Tree_Sparrow_0122_123927.jpg The Tree Sparrow is perched sideways on a wooden surface, displaying some brown and white feathering around its head with a central vertical occlusion obscuring much of its body, situated in a natural wooden setting with scattered seeds below. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/131.Vesper_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/131.Vesper_Sparrow_descriptions.txt new file mode 100644 index 0000000..acd4731 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/131.Vesper_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +Vesper_Sparrow_0087_125712.jpg The Vesper Sparrow is partially visible in a side view, with a streaked brown and cream plumage and a prominent white eye-ring, perched on a textured log against a blurred green background, with the left half of the image heavily occluded by colorful static noise. +Vesper_Sparrow_0015_125653.jpg The visible part of the bird shows brown and beige feathers with streak patterns on the wings, viewed from behind with its head occluded by colorful noise, perched among dry brown twigs. +Vesper_Sparrow_0007_125630.jpg The Vesper Sparrow is perched on a branch with its head and upper body visible, showcasing brown and white streaked feathers, while the lower body is heavily occluded by a multicolored, pixelated pattern against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/132.White_crowned_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/132.White_crowned_Sparrow_descriptions.txt new file mode 100644 index 0000000..0887eda --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/132.White_crowned_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +White_Crowned_Sparrow_0034_126199.jpg The bird is perched side-on on a pale branch, displaying a visible brown and white streaked body with a distinct white crown and black eye stripes, while the right section of the image is obscured by colorful static noise. +White_Crowned_Sparrow_0100_126267.jpg The sparrow is perched on a branch with its head turned to the right, displaying a striking black and white striped crown, while the left side of the body and branch are mostly occluded with a colorful, pixelated pattern. +White_Crowned_Sparrow_0105_126818.jpg The image shows the lower body and tail of a bird with brown and beige tones perched on a sandy ground, while the majority of the bird is heavily occluded by a colorful, static-like square. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/133.White_throated_Sparrow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/133.White_throated_Sparrow_descriptions.txt new file mode 100644 index 0000000..643d2a5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/133.White_throated_Sparrow_descriptions.txt @@ -0,0 +1,3 @@ +White_Throated_Sparrow_0124_128801.jpg The sparrow is perched on a branch, viewed from the side, with a visible brown and white plumage, while its head is turned slightly away from the camera, and a large section on the left side of the image is heavily occluded by colorful noise. +White_Throated_Sparrow_0028_129118.jpg The image shows a side view of a bird with partially visible brown and white plumage on its flank amidst a natural ground environment, heavily occluded by a colorful noise pattern on the left side, with some leaves and soil surrounding it. +White_Throated_Sparrow_0023_129179.jpg The bird exhibits a prominent white throat patch and a mix of brown and gray plumage, with the occlusion covering its tail, standing perched on a branch. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/134.Cape_Glossy_Starling_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/134.Cape_Glossy_Starling_descriptions.txt new file mode 100644 index 0000000..19f641e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/134.Cape_Glossy_Starling_descriptions.txt @@ -0,0 +1,3 @@ +Cape_Glossy_Starling_0088_129437.jpg The bird exhibits a deep blue color with a smooth texture visible on its back and tail, viewed from the side as it stands on a wooden railing, with the head and upper body heavily occluded by a pixelated block, against a blurred, green and brown background. +Cape_Glossy_Starling_0033_129435.jpg The image shows part of a glossy starling with visible iridescent blue and green feathers under a clear sky, perched on a branch, with heavy occlusion covering most of its torso. +Cape_Glossy_Starling_0048_129397.jpg The bird appears to have iridescent blue feathers and a bright orange eye, viewed in profile from the side, with a noisy, pixelated occlusion covering its lower body against a blurred background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/135.Bank_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/135.Bank_Swallow_descriptions.txt new file mode 100644 index 0000000..0ac813b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/135.Bank_Swallow_descriptions.txt @@ -0,0 +1,3 @@ +Bank_Swallow_0023_129878.jpg The image shows a bird perched on a wire with a visible textured mix of blue and white plumage, viewed from the side with a large rectangular area of colorful static-like occlusion covering much of its body and head, set against a clear blue sky background. +Bank_Swallow_0068_129806.jpg The image shows a Bank Swallow flying with its wings extended upwards, featuring brown upperparts and slightly pointed wing tips, while a large, multicolored occlusion covers the right side of the bird's body against a clear blue sky. +Bank_Swallow_0031_129507.jpg The image shows a Bank Swallow perched on a wooden nesting box partly obscured by a colorful pixelated block, with only a portion of its wing and tail feathers visible, displaying a muted dark brown hue against the light wood texture. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/136.Barn_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/136.Barn_Swallow_descriptions.txt new file mode 100644 index 0000000..51cf57c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/136.Barn_Swallow_descriptions.txt @@ -0,0 +1,3 @@ +Barn_Swallow_0035_131832.jpg The visible portion of the Barn Swallow reveals its glossy blue-black plumage and rufous throat, partially obscured by heavy occlusion in a dense green and brown grass-like environment, with its head and tail feathers protruding from behind the obstruction. +Barn_Swallow_0042_132043.jpg The image shows the tip of a bird's tail peeking out from behind a heavily pixelated multicolored occlusion that covers the central portion, with a blue sky background and a wire perch. +Barn_Swallow_0073_131389.jpg The Barn Swallow is perched on a white pipe with its left side visible, featuring a deep blue head and wings, a rusty orange throat, and partially visible tail feathers with the right side occluded by colorful static noise, set against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/137.Cliff_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/137.Cliff_Swallow_descriptions.txt new file mode 100644 index 0000000..29728d7 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/137.Cliff_Swallow_descriptions.txt @@ -0,0 +1,3 @@ +Cliff_Swallow_0065_133858.jpg The Cliff Swallow is perched on a braided rope with its head and upper body visible, showing a combination of warm brown and dark blue colors with a glossy texture, while the right side of the body is obscured by a multicolored static occlusion. +Cliff_Swallow_0018_132974.jpg The image shows a small part of a bird perched on a rope with its head barely visible above heavy pixelated occlusion; the background is a smooth gradient of muted colors, suggesting a calm environment. +Cliff_Swallow_0090_133144.jpg The bird is perched sideways on a ledge with a dark brown back, a pale underbelly, and its head and part of the body are obscured by heavy pixelation on the left side, with a visible sharp beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/138.Tree_Swallow_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/138.Tree_Swallow_descriptions.txt new file mode 100644 index 0000000..87e3e11 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/138.Tree_Swallow_descriptions.txt @@ -0,0 +1,3 @@ +Tree_Swallow_0017_135062.jpg The bird is perched sideways on a reddish wooden post, with visible pale underparts and dark wings, while the head is obscured by a pixelated block. +Tree_Swallow_0043_136878.jpg The Tree Swallow displays a blue and white plumage with a pixelated occlusion covering its left side, perched on a weathered blue surface amid a green blurred background. +Tree_Swallow_0076_137232.jpg The Tree Swallow is perched on a rusted metal post, partially obscured by a rectangular area of multicolored static-like noise, with visible parts showing white and dark blue feathers and a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/139.Scarlet_Tanager_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/139.Scarlet_Tanager_descriptions.txt new file mode 100644 index 0000000..7e009e1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/139.Scarlet_Tanager_descriptions.txt @@ -0,0 +1,3 @@ +Scarlet_Tanager_0110_138274.jpg Amidst green leaves and branches, a rectangular section displays a multicolored, pixelated pattern, obscuring any discernible features of the object behind it. +Scarlet_Tanager_0033_137603.jpg A Scarlet Tanager with vivid red plumage and black wings is perched on a branch, with heavy multicolored static occluding the left side of its body, contrasting against a blurred green background. +Scarlet_Tanager_0128_138711.jpg The Scarlet Tanager, perched sideways on a green leafy branch, shows vibrant red plumage with black wings and tail, while the left side of the image is obscured by multicolored static-like noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/140.Summer_Tanager_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/140.Summer_Tanager_descriptions.txt new file mode 100644 index 0000000..8eeacfd --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/140.Summer_Tanager_descriptions.txt @@ -0,0 +1,3 @@ +Summer_Tanager_0025_139320.jpg The image shows a vibrant red-colored bird partially visible with its back turned, positioned near a red dish, with a significant portion obscured by vertical, multicolored static, set against a blurred earthy-toned background. +Summer_Tanager_0095_139882.jpg The bird is viewed in profile, displaying a bright red plumage with a smooth texture, perched on a brown branch against a blurred leafy background, and significantly occluded on the right side by a dense, colorful noise pattern. +Summer_Tanager_0056_139211.jpg The image shows a green leafy environment with a small portion of a reddish object, possibly the bird, visible at the bottom edge beneath a central square of heavy colorful noise occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/141.Artic_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/141.Artic_Tern_descriptions.txt new file mode 100644 index 0000000..9ea815c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/141.Artic_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Artic_Tern_0090_143583.jpg The Arctic Tern displays a grayish-white body with a black cap, a striking red beak and legs, seen in a lateral pose perched on wood, with pixelation obscuring part of its right wing and the background blending into a soft green. +Artic_Tern_0063_142495.jpg The Arctic Tern is perched on a wooden post with a sleek gray body, black cap on its head, red beak and legs, while a colorful, pixelated occlusion covers part of the background, blending with green foliage. +Artic_Tern_0080_140889.jpg The Arctic Tern is seen in a vertical dive with wings fully extended upwards, featuring a white body with visible gray and hints of red at the beak, and the right half of the image is heavily occluded by multicolored digital noise, while the background is a blurred green environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/142.Black_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/142.Black_Tern_descriptions.txt new file mode 100644 index 0000000..f44b655 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/142.Black_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Black_Tern_0079_143998.jpg The Black Tern, viewed slightly from the side, shows a muted grey and black plumage with sharp wings, perched amidst tall, dense reeds with heavy pixelation occluding its lower half and a mottled background. +Black_Tern_0029_144140.jpg The Black Tern is viewed primarily from the side with its wings partially extended upwards, displaying dark, smooth plumage with a distinct silvery undertone, and the right side of its body heavily occluded by digital noise against a soft, blurred background. +Black_Tern_0080_144130.jpg The left side of the image shows a Black Tern in flight with dark plumage visible on the upper wing and body against a clear sky, while the right side is heavily occluded with static-like digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/143.Caspian_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/143.Caspian_Tern_descriptions.txt new file mode 100644 index 0000000..a1b7b8d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/143.Caspian_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Caspian_Tern_0015_145664.jpg The bird is in a side profile flight with visible white and gray plumage above and a black cap, though the central body is obscured by heavy pixelated noise, leaving a clear red-orange bill and wingtips against a pale sky. +Caspian_Tern_0051_145930.jpg The Caspian Tern has a visible white body with a contrasting black cap on its head and a long orange bill, viewed from a side angle in flight with the right side heavily occluded by colorful static noise against a clear blue sky. +Caspian_Tern_0006_145594.jpg A bird with partially visible white and grey plumage is captured mid-air with wings partially spread, over water with a speckled occlusion covering the left side, and holding a fish in its beak. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/144.Common_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/144.Common_Tern_descriptions.txt new file mode 100644 index 0000000..ffc7e0d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/144.Common_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Common_Tern_0019_149769.jpg A Common Tern with visible white and gray plumage is partially obscured by a colorful digital noise on the right, showing only part of its body and head in a resting pose on a sandy and rocky terrain. +Common_Tern_0084_147980.jpg The image shows a Common Tern standing on a sandy beach with a black cap on its head, gray wings, white underparts, an orange beak, and legs, with heavy occlusion on the right side featuring multicolored noise obscuring part of the bird and background. +Common_Tern_0079_148844.jpg The 144.Common Tern is seen in a side view with visible gray and white feathers exhibiting distinct patterning, while the central part of the body is heavily occluded by colorful static, set against a sandy textured background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/145.Elegant_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/145.Elegant_Tern_descriptions.txt new file mode 100644 index 0000000..504128c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/145.Elegant_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Elegant_Tern_0034_45914.jpg The bird is in flight with its left wing extended parallel to a blurred background, displaying a white underside speckled with dark patches, while the right side is obscured by dense, colorful static. +Elegant_Tern_0073_150925.jpg A sleek, black-tipped orange bill extends above a clear blue sky, partially obscured by heavy multicolored pixelation covering the rest of the body. +Elegant_Tern_0052_150695.jpg The Elegant Tern is visible from the side with its white plumage, bright orange bill, and black marking on the head, standing in shallow, reflective water, while the central body is obscured by a colorful pixelated occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/146.Forsters_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/146.Forsters_Tern_descriptions.txt new file mode 100644 index 0000000..64b68a8 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/146.Forsters_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Forsters_Tern_0069_151229.jpg The image shows the Forster's Tern from a side viewpoint in flight with visible white feathers and pointed wings against a blue sky, with heavy occlusion by colorful static covering the left portion of the image. +Forsters_Tern_0070_152107.jpg The Forster's Tern, viewed in mid-flight from a rear angle, displays a vivid white and gray coloration with long, pointed wings and tail, partially obscured in the center by vertical digital noise. +Forsters_Tern_0053_152175.jpg The Forster's Tern, viewed from the side, displays a sleek white plumage with its wings slightly spread mid-flight over a rippling water surface, while a patch of heavy multicolored static obscures its back and part of the wing, leaving its dark cap and orange bill visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/147.Least_Tern_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/147.Least_Tern_descriptions.txt new file mode 100644 index 0000000..08e751c --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/147.Least_Tern_descriptions.txt @@ -0,0 +1,3 @@ +Least_Tern_0056_153965.jpg The image shows a Least Tern with a visible white and black body in mid-flight, captured against a clear blue sky, with the left side heavily obscured by colorful static noise. +Least_Tern_0082_154396.jpg The bird is seen from behind with a mostly gray body and white underparts, standing on sand with its head heavily occluded, revealing orange legs and a narrow black line along the edge of its wing. +Least_Tern_0062_153259.jpg The image shows the tail of a Least Tern with gray and white plumage against a sandy beach environment, heavily occluded in the center by multicolored noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/148.Green_tailed_Towhee_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/148.Green_tailed_Towhee_descriptions.txt new file mode 100644 index 0000000..409d86a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/148.Green_tailed_Towhee_descriptions.txt @@ -0,0 +1,3 @@ +Green_Tailed_Towhee_0105_797438.jpg The bird, partially hidden with its left side occluded by a colorful static pattern, displays olive-green plumage with a slightly rust-colored crown visible from a side view as it stands on a earthy ground with scattered leaves and a blurred background log. +Green_Tailed_Towhee_0068_154783.jpg The occluded image, set in a natural, earthy environment with brownish ground tones and possible leaf litter, shows no discernible details of the Green-tailed Towhee. +Green_Tailed_Towhee_0018_154825.jpg The Green-tailed Towhee in the image is partially visible with a greenish tail and grayish body, standing on leaf-littered ground with branches above, while the lower right side of the image has a digital noise occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/149.Brown_Thrasher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/149.Brown_Thrasher_descriptions.txt new file mode 100644 index 0000000..20354f0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/149.Brown_Thrasher_descriptions.txt @@ -0,0 +1,3 @@ +Brown_Thrasher_0006_155106.jpg The image shows a small, partially visible bird seemingly standing on a gravel-like surface, with a colorful, static-like occlusion covering its body, leaving only the lower part of its legs visible. +Brown_Thrasher_0034_155139.jpg The Brown Thrasher, partly obscured by colorful digital noise at its center, displays its rich reddish-brown plumage and streaked underparts, perched on a branch amidst dense green foliage, with its head and tail visible on either side of the occlusion. +Brown_Thrasher_0079_155394.jpg A mostly blurred, brown-hued object is visible on the left side, largely occluded by pixel noise, with part of a black cage-like structure and creamy substance on the right amid a wooded outdoor setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/150.Sage_Thrasher_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/150.Sage_Thrasher_descriptions.txt new file mode 100644 index 0000000..c92599b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/150.Sage_Thrasher_descriptions.txt @@ -0,0 +1,3 @@ +Sage_Thrasher_0092_155482.jpg The Sage Thrasher appears partially visible from a side view with a speckled brown and white plumage, its presence subtly contrasted against a blurred greenish-yellow foliage background, with heavy occlusion by vibrant static covering the right portion of the image. +Sage_Thrasher_0025_155661.jpg The bird, with its view partially obstructed by a colorful noise block covering the lower body, is perched on wooden texture, displaying a speckled pattern of grayscale on its visible head and upper body, set against a blurred green background. +Sage_Thrasher_0031_796455.jpg The image shows a bird with mottled brown and white plumage and a tail extending to the right, partly occluded by a vertical band of colorful noise, perched on a green cylindrical post against a plain background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/151.Black_capped_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/151.Black_capped_Vireo_descriptions.txt new file mode 100644 index 0000000..a981728 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/151.Black_capped_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Black_Capped_Vireo_0027_797455.jpg The bird, perched on a branch, shows a visible black cap and white stripe on its face, with much of its body occluded by a multicolored, textured pattern, set against a blurred natural background. +Black_Capped_Vireo_0020_797461.jpg The Black-capped Vireo, viewed from the side, shows a black head and white underparts, perched on a branch amidst a green, blurred background, with significant colorful pixelated occlusion covering the upper left of the image. +Black_Capped_Vireo_0007_797481.jpg The visible portion of the bird, seen from a side view amidst detailed foliage, shows greenish feathers with hints of white and black, partially occluded by a colorful noise pattern covering the central body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/152.Blue_headed_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/152.Blue_headed_Vireo_descriptions.txt new file mode 100644 index 0000000..b4ba5d3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/152.Blue_headed_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Blue_Headed_Vireo_0025_156439.jpg The image depicts a blurred, low-resolution scene where the central area is occluded by colorful static noise, partially revealing a few branches, with the background showing hints of green foliage. +Blue_Headed_Vireo_0095_156092.jpg The Blue-headed Vireo is perched on a branch from a side view, with its head and part of its back visible; the bird's blue-tinged head contrasts with the brownish-green, foliage-blurred background, while a digital noise occlusion obscures its lower body and tail. +Blue_Headed_Vireo_0098_156348.jpg The image shows a blue-headed bird partially visible on a branch against a blurred blue background, with the bird’s body and features heavily occluded by multicolored noise occupying the central area. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/153.Philadelphia_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/153.Philadelphia_Vireo_descriptions.txt new file mode 100644 index 0000000..d78c911 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/153.Philadelphia_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Philadelphia_Vireo_0029_794760.jpg The Philadelphia Vireo is perched with a visible pale yellow underbelly and olive-green upperparts, while the heavily occluded area hides part of its body, leaving its head and back portion unobstructed against a blurred natural background. +Philadelphia_Vireo_0071_794796.jpg The image shows a branch in focus with a heavily pixelated and color-noised rectangular area overlapping it, disrupting any view of the potential Philadelphia Vireo or detailed surroundings. +Philadelphia_Vireo_0012_794785.jpg The Philadelphia Vireo, viewed from the side with its head visible, shows a yellowish-green body partially occluded by a static-like vertical strip, resting on a branch with blurred greenery in the background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/154.Red_eyed_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/154.Red_eyed_Vireo_descriptions.txt new file mode 100644 index 0000000..759896a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/154.Red_eyed_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Red_Eyed_Vireo_0086_157038.jpg The image shows a bird perched sideways on a branch, with mostly its tail and back visible in a light greenish-brown hue, while the rest is obscured by a pixelated overlay; the background includes blurred branches and leaves against a blue sky. +Red_Eyed_Vireo_0131_156765.jpg The 154.Red eyed Vireo is perched on a branch in a side view, partially obscured by a rectangular block of colorful noise, with visible areas showing muted, earthy tones against a clear blue sky and sparse branches. +Red_Eyed_Vireo_0101_156988.jpg The Red-eyed Vireo is perched on a branch with a visible light olive-green back and pale underbelly, partially occluded on the right by a digital noise pattern, in a natural setting with green leaves blurred in the background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/155.Warbling_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/155.Warbling_Vireo_descriptions.txt new file mode 100644 index 0000000..be550d1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/155.Warbling_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Warbling_Vireo_0017_158271.jpg The Warbling Vireo perches on a branch with visible grayish-green underparts and part of its tail exposed, while a large portion of its head and back is occluded by pixelated noise, set against a background of blurred green leaves. +Warbling_Vireo_0029_158679.jpg The Warbling Vireo is perched on a branch with its right side visible, displaying muted gray and off-white plumage, while the left side is heavily obscured by multicolored digital noise. +Warbling_Vireo_0022_158144.jpg The image shows a Warbling Vireo from a side view with a blurry pale greenish body partially occluded by colorful noise and surrounded by green leaves and reddish brown branches. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/156.White_eyed_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/156.White_eyed_Vireo_descriptions.txt new file mode 100644 index 0000000..f824707 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/156.White_eyed_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +White_Eyed_Vireo_0082_159186.jpg The bird, perched on a branch, displays a yellow and greenish body with greyish wings, while its head is mostly obscured by a pixelated square, blending against a blurred natural backdrop. +White_Eyed_Vireo_0128_158993.jpg The image shows a branch with a heavily occluded area, obscured by a colorful static overlay, and only a small portion of the bird’s blurred wings in muted hues is visible, suggesting it's perched while the branches cut across the image diagonally. +White_Eyed_Vireo_0118_159036.jpg The image shows a small part of the bird's head with a faint white eye ring visible, perched among branches, with most of the body heavily occluded by a multicolored noise pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/157.Yellow_throated_Vireo_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/157.Yellow_throated_Vireo_descriptions.txt new file mode 100644 index 0000000..546ddfe --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/157.Yellow_throated_Vireo_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Throated_Vireo_0041_794998.jpg The image shows a bird with a yellow throat and olive-green back perched on a branch amidst a leafy environment, partially obscured by a mosaic-like occlusion from the middle to the right side, leaving the head and upper body visible from a side view. +Yellow_Throated_Vireo_0079_159576.jpg The bird exhibits a vibrant yellow throat and underside, with a white and black patterned wing visible from a side view perched on a branch, while a significant vertical section of its body is obscured by digital noise. +Yellow_Throated_Vireo_0032_159632.jpg The image shows a Yellow-throated Vireo perched on a branch with a predominantly yellow head and throat, a white belly, and a greenish-brown back, partially occluded by a multicolored static-like distortion on its left side, under a clear blue sky and surrounded by green leaves. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/158.Bay_breasted_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/158.Bay_breasted_Warbler_descriptions.txt new file mode 100644 index 0000000..f630a5b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/158.Bay_breasted_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Bay_Breasted_Warbler_0026_159744.jpg The image shows the right side of a Bay-breasted Warbler perched on a rock, with its distinctive black and white striped wings and muted brown and olive tones visible, while most of the body and head are obscured by multicolored noise. +Bay_Breasted_Warbler_0097_159974.jpg The image shows vibrant green leaves and brown branches with a central area heavily occluded by a multicolored static pattern, obscuring the detailed view of the Bay-breasted Warbler, though the background suggests it may be perched among foliage. +Bay_Breasted_Warbler_0060_159863.jpg The image shows a small bird perched on a branch, with visible brown and cream plumage, a distinct black head, and chestnut flank coloring, partially obscured by a large area of colorful digital noise covering the right side, amidst a leafy green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/159.Black_and_white_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/159.Black_and_white_Warbler_descriptions.txt new file mode 100644 index 0000000..3f2fe65 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/159.Black_and_white_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Black_And_White_Warbler_0046_160202.jpg The visible part of the bird shows a distinct black and white streaked pattern on its head, perched as it peers through a leafy branch, with a significant portion of the image obscured by a vertical, multicolored static occlusion. +Black_And_White_Warbler_0001_160352.jpg This black and white bird, viewed in profile, exhibits streaked plumage with visible stripes on its head and back, sitting in a person's hand with significant pixelated occlusion covering the right side of the image against a leafy green background. +Black_And_White_Warbler_0074_160361.jpg The bird is in a side profile pose with noticeable black and white streaks on its body, perched against a textured background, with substantial pixelated occlusion on the left side. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/160.Black_throated_Blue_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/160.Black_throated_Blue_Warbler_descriptions.txt new file mode 100644 index 0000000..5e6f5ff --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/160.Black_throated_Blue_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Black_Throated_Blue_Warbler_0037_161707.jpg A small bird with visible portions of a black and blue head, partially obscured by a dense static-like occlusion over its body, perches on a branch with fresh green leaves, viewed from a side angle. +Black_Throated_Blue_Warbler_0043_161438.jpg The bird is perched on a branch with its left side visible, showing shades of blue and black with a white patch on its wing, while the right side is heavily occluded by multicolored static noise. +Black_Throated_Blue_Warbler_0060_161644.jpg The image shows a warbler on branches with a colorful noise occlusion covering its body, amid a blurred green background with protruding twigs. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/161.Blue_winged_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/161.Blue_winged_Warbler_descriptions.txt new file mode 100644 index 0000000..da57341 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/161.Blue_winged_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Blue_Winged_Warbler_0012_162086.jpg The image shows a blue and yellow bird perched on a leafy branch with a significant portion occluded by digital noise, revealing parts of its wing and tail feathers beneath a clear blue sky. +Blue_Winged_Warbler_0028_161787.jpg The image shows a small bird partially visible behind a heavy occlusion of colorful static, with a hint of bright yellow visible near the edge and surrounded by dry brown leaves. +Blue_Winged_Warbler_0027_161795.jpg The bird, perched on a branch and set against a backdrop of green leaves, exhibits a vibrant yellow plumage with a bluish tinge on its wings, while a significant portion of its body is obscured by colorful noise on the left. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/162.Canada_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/162.Canada_Warbler_descriptions.txt new file mode 100644 index 0000000..0cfcf00 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/162.Canada_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Canada_Warbler_0077_162437.jpg The image shows a Canada Warbler with a bright yellow chest and black markings visible on its throat, with the head and back in gray; the face is partially visible with an eye-ring, while a colorful noise occludes part of its body in the lower left area. +Canada_Warbler_0080_162392.jpg A partially visible bird with a small area of yellow and grey coloration is perched sideways on a branch amidst a green, leafy background, with a significant portion of its body obscured by a vertical band of colorful digital noise. +Canada_Warbler_0091_162378.jpg The image shows a bird with visible portions exhibiting a distinct yellow underside and a darker upper body amidst a background of green foliage and branches, with central occlusion obscuring a significant portion of the scene. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/163.Cape_May_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/163.Cape_May_Warbler_descriptions.txt new file mode 100644 index 0000000..c7c081f --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/163.Cape_May_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Cape_May_Warbler_0108_163108.jpg The Cape May Warbler perched on a branch shows a distinctive yellow face with dark streaks and a black crown, partially occluded by a colorful static-like pattern on the left side, surrounded by green pine needles in a blurred background. +Cape_May_Warbler_0001_139008.jpg The bird is partially visible from the side with its back and tail showing greenish-yellow tones, dark streaks on the wings, and the environment features green leaves and a horizontal branch, while the rest of the image is obscured by multicolored noise in the center. +Cape_May_Warbler_0058_162948.jpg The image shows a small bird perched among green leaves with its head featuring a distinctive yellow area and streaked pattern, partially obscured by a dense colored noise covering the lower portion of the scene. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/164.Cerulean_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/164.Cerulean_Warbler_descriptions.txt new file mode 100644 index 0000000..517694a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/164.Cerulean_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Cerulean_Warbler_0072_163200.jpg This image shows a small bird perched sideways on a branch with a light olive-brown back, pale yellowish underparts, and a partially visible face with beady eyes, while a multicolored occlusion covers the lower right portion of the frame amidst a blurred green leafy background. +Cerulean_Warbler_0084_797177.jpg A Cerulean Warbler, partially occluded by noise on the right, is perched on a branch with its left side visible, showcasing blue-gray and white plumage with distinct black barring on the wings, set against a green blurred background. +Cerulean_Warbler_0090_797195.jpg The Cerulean Warbler is perched in a side profile with most of its body showing blue and white streaked plumage, partially obscured by heavy, multi-colored static on the left half of the image, sitting on a thin branch surrounded by green leaves. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/165.Chestnut_sided_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/165.Chestnut_sided_Warbler_descriptions.txt new file mode 100644 index 0000000..07576b8 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/165.Chestnut_sided_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Chestnut_Sided_Warbler_0094_164152.jpg The image shows a bird with visible olive-green and black streaking on its wings perched on a branch, while the central part of its body and head are heavily obscured by multicolored digital noise, surrounded by a blurred, green foliage background. +Chestnut_Sided_Warbler_0073_163868.jpg The image shows a partially visible bird perched on a branch, with its head and tail obscured by multicolored noise, revealing some yellow and olive tones on the wing and a hint of a white underside, surrounded by a natural, leafy environment. +Chestnut_Sided_Warbler_0035_163587.jpg The visible portion of the bird has a white underside with a distinctive chestnut patch, yellow and black streaking on the back, and is perched on a branch with significant right-side occlusion by colorful digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/166.Golden_winged_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/166.Golden_winged_Warbler_descriptions.txt new file mode 100644 index 0000000..3fa6c79 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/166.Golden_winged_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Golden_Winged_Warbler_0011_794812.jpg The bird displays a yellow cap with a gray body, viewed from the side perched on a branch, with the lower body obscured by pixelated noise. +Golden_Winged_Warbler_0078_794827.jpg The image shows a branch with part of a bird's wing in the lower right, partially obscured by dense, colorful noise, with hints of a blurred green background. +Golden_Winged_Warbler_0079_794820.jpg The visible part of the Golden-winged Warbler shows a subtle grayish-white body with vibrant yellow patches on its wings and head, perched on a branch, with heavy colorful noise occluding the left half, obscuring some visual detail. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/167.Hooded_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/167.Hooded_Warbler_descriptions.txt new file mode 100644 index 0000000..1a02945 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/167.Hooded_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Hooded_Warbler_0085_164846.jpg The Hooded Warbler is partially visible with its bright yellow face peeking through green leaves, while the rest of the image is heavily occluded by multicolored noise on the left and a cartoon figure at the bottom. +Hooded_Warbler_0058_164674.jpg The image shows a bird with visible olive-green and yellow hues, seen from the side with its tail outstretched and blurred surroundings, partially occluded with a central, colorful pixelated block, amidst a ground covered with brown and red leaves. +Hooded_Warbler_0021_165057.jpg The image depicts a Hooded Warbler perched among branches with a bright yellow breast and face, partially obscured by a vertical area of colorful static, visible against a neutral background with subtle greenery. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/168.Kentucky_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/168.Kentucky_Warbler_descriptions.txt new file mode 100644 index 0000000..6d316ce --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/168.Kentucky_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Kentucky_Warbler_0071_165342.jpg A small bird with olive-green plumage is perched on a dark branch amidst green foliage, partially obscured by a vertical strip of heavy visual noise, revealing only part of its back and blurred surroundings. +Kentucky_Warbler_0068_795893.jpg The image mostly shows a heavy occlusion with artifact-like noise patterns over a natural, earthy background featuring muted greens and browns, with no visible distinguishing features of the Kentucky Warbler. +Kentucky_Warbler_0062_795897.jpg The left half of the image of the Kentucky Warbler is occluded by dense noise, but the visible right half shows a yellow underbelly and olive-green upper body with a prominent black crown stripe, seen from a side angle while perched on a hand in a natural setting. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/169.Magnolia_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/169.Magnolia_Warbler_descriptions.txt new file mode 100644 index 0000000..b228c5a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/169.Magnolia_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Magnolia_Warbler_0011_166382.jpg The image shows a Magnolia Warbler with visible yellow and black plumage on its flank and wing, partly hidden behind a multicolored noise occlusion, perched on a branch against a blurred green background. +Magnolia_Warbler_0090_166087.jpg The Magnolia Warbler is perched sideways on a branch, displaying its vivid yellow underparts and distinct black streaking with a speckled black-gray crown visible, while the right side is heavily occluded by digital noise, and a blurred green background surrounds it. +Magnolia_Warbler_0104_165696.jpg The Magnolia Warbler is partially obscured by digital noise over its body, displaying a visible head with gray and yellow coloring, and black and white tail feathers, all set in a natural branch-laden environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/170.Mourning_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/170.Mourning_Warbler_descriptions.txt new file mode 100644 index 0000000..711cb42 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/170.Mourning_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Mourning_Warbler_0051_795352.jpg The bird, viewed in profile with an open beak, displays a bright yellow underbelly and brownish wings, with the head and throat obscured by noise occlusion, perched on a branch in a soft-focus natural environment. +Mourning_Warbler_0034_795384.jpg The bird, partially obscured by a pixelated section on its right, displays olive-green upperparts with a distinguished bright yellow chest, perched amid fallen leaves and green foliage. +Mourning_Warbler_0021_166560.jpg The Mourning Warbler, viewed from the side on a branch, shows its gray head and contrasting bright yellow breast with a significant portion obscured by a colorful static pattern on the left. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/171.Myrtle_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/171.Myrtle_Warbler_descriptions.txt new file mode 100644 index 0000000..778a770 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/171.Myrtle_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Myrtle_Warbler_0008_166927.jpg The image shows a small bird perched on thin, bare branches, with its head and part of its wings visible beneath a colorful pixelated occlusion that covers its body, against a blurred natural background. +Myrtle_Warbler_0067_166828.jpg The image shows a background of blurry, autumn-colored foliage with a heavily pixelated section obscuring most of the scene, leaving only the edges of a tree trunk partially visible. +Myrtle_Warbler_0072_166702.jpg Amidst a blurred backdrop, the warbler is perched with its head slightly turned, showcasing grey feathers with a prominent yellow crown and patches on its wings, while a digital disruption conceals the lower body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/172.Nashville_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/172.Nashville_Warbler_descriptions.txt new file mode 100644 index 0000000..f6ee9c3 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/172.Nashville_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Nashville_Warbler_0053_167403.jpg The bird is perched among green leaves with visible parts showing a gray head and vibrant yellow underparts, while the left side and body are heavily occluded by a colorful, pixelated block. +Nashville_Warbler_0051_167250.jpg The bird displays yellow-green body plumage and a hint of a white underbelly, perched side-on a branch with the left side obscured by a vertical static-like occlusion, amidst a background of blurred foliage. +Nashville_Warbler_0028_167065.jpg The visible portion of the image shows a yellow-green plumage of the 172.Nashville Warbler perched side-view on a branch, partially occluded by a rectangular area filled with multicolored digital noise, with a soft-focus natural background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/173.Orange_crowned_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/173.Orange_crowned_Warbler_descriptions.txt new file mode 100644 index 0000000..1624091 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/173.Orange_crowned_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Orange_Crowned_Warbler_0071_167595.jpg The image shows a heavily occluded bird with a muted greenish-brown hue perched in a tangle of dry, brown branches, with significant visual noise occupying the central portion, partially obscuring the bird. +Orange_Crowned_Warbler_0080_167960.jpg The bird is partially visible behind a dense patch of colorful noise, showing a small portion of its tail and a hint of muted yellow-green plumage on a branch. +Orange_Crowned_Warbler_0049_167974.jpg The bird displays a muted yellow-green coloration with a fine texture, peering sideways from the left with the right half occluded by multicolored static; noticeable amidst foliage. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/174.Palm_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/174.Palm_Warbler_descriptions.txt new file mode 100644 index 0000000..1c06746 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/174.Palm_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Palm_Warbler_0133_169575.jpg A Palm Warbler with visible yellow underparts and streaked brown upperparts is facing away from the camera, partially occluded by a vertical strip of digital noise on the left side, surrounded by a mix of green foliage and light-colored ground. +Palm_Warbler_0117_170073.jpg The bird is perched side-on with visible brown and yellow plumage on its head and back, while its lower body is occluded by a colorful noise pattern; it sits on a branch with green leaves in the background. +Palm_Warbler_0061_169954.jpg The bird, perched on a thin branch, shows a visible side profile with a brown, streaked texture, a yellowish underside, and a rusty crown, while a dense vertical digital noise covers the left third of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/175.Pine_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/175.Pine_Warbler_descriptions.txt new file mode 100644 index 0000000..f41a478 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/175.Pine_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Pine_Warbler_0074_172061.jpg The Pine Warbler is seen from a side angle, displaying a yellow head and breast with muted olive hues blending into darker wings adorned with white wing bars, against a snowy ground, partially obscured on the right by colorful static noise. +Pine_Warbler_0021_171525.jpg A small yellow bird with dark streaks is perched on a branch, predominantly occluded in the center by a colorful noise pattern, with a visible head and upper body showing slight side profile. +Pine_Warbler_0060_171635.jpg The Pine Warbler, visible from a side angle, has a bright yellow head contrasting with a muted green background of pine needles, partially obscured by a vertical strip of colorful static noise on the left. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/176.Prairie_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/176.Prairie_Warbler_descriptions.txt new file mode 100644 index 0000000..3fabb00 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/176.Prairie_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Prairie_Warbler_0104_172615.jpg The visible Prairie Warbler, perched on a branch amid green leaves, displays a bright yellow body with black streaks and markings on its face and sides, while the right side is obscured by a colorful noise pattern. +Prairie_Warbler_0112_173383.jpg Amidst green leaves and branches, a multicolored occlusion covers the center of the image, with no visible parts of the Prairie Warbler discernible. +Prairie_Warbler_0073_172771.jpg The Prairie Warbler is perched sideways with a visible yellow face and underparts, barred dark streaks on the cheeks and flanks, and is heavily occluded with pixelation covering the body and a blurred green-brown backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/177.Prothonotary_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/177.Prothonotary_Warbler_descriptions.txt new file mode 100644 index 0000000..81492a0 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/177.Prothonotary_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Prothonotary_Warbler_0112_174594.jpg The Prothonotary Warbler is perched on a branch with its left side visible, displaying a vivid yellow head and chest contrasting against the natural woodland background, with a large section on the right obscured by colorful digital noise. +Prothonotary_Warbler_0079_173899.jpg The image shows a partially visible bird with a blueish-gray wing seen from the side, perched on a tree trunk amidst bright green leaves, with heavy occlusion covering most of the right side in colorful static noise. +Prothonotary_Warbler_0046_174104.jpg The image shows a bird from a side view with its back to the camera, featuring a visible wing with black and white feather patterning, while the central part of the bird is occluded by a colorful, static-like pattern, and the background appears as a textured wooden surface with some natural debris. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/178.Swainson_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/178.Swainson_Warbler_descriptions.txt new file mode 100644 index 0000000..7adf452 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/178.Swainson_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Swainson_Warbler_0044_794894.jpg The bird features a visible light brown head and back, with the right side partially hidden behind a vertical multicolored occlusion, perched on a mossy branch amidst a blurred green-leafed environment. +Swainson_Warbler_0022_794868.jpg The bird appears in a side profile with a muted brown plumage and subtle speckling texture, standing among dry leaves on the ground, with a substantial part of its body occluded by colorful noise covering its back and tail. +Swainson_Warbler_0051_794900.jpg The Swainson's Warbler is perched in a side profile with a clear view of its light brown head and pale underparts, while its lower body and background are heavily occluded by pixelated noise, partially obscuring the environment. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/179.Tennessee_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/179.Tennessee_Warbler_descriptions.txt new file mode 100644 index 0000000..155501d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/179.Tennessee_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Tennessee_Warbler_0023_174977.jpg A Tennessee Warbler is perched on a branch amidst green foliage, showing its yellow-green plumage and pale underside with a square colorful occlusion covering part of its chest. +Tennessee_Warbler_0031_174802.jpg The visible portion of the 179.Tennessee Warbler shows muted greenish and grayish tones on its back and head, perched side view on a branch, with significant occlusion on its lower body due to digital noise, amidst a background of blurred branches and light sky. +Tennessee_Warbler_0061_174775.jpg A Tennessee Warbler is perched side-on amidst slender branches, with its olive-green back, pale underparts, and yellowish face visible, while a heavy digital occlusion covers the lower body and foreground branches. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/180.Wilson_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/180.Wilson_Warbler_descriptions.txt new file mode 100644 index 0000000..961769b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/180.Wilson_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Wilson_Warbler_0010_175750.jpg The image primarily shows a patch of multicolored static obscuring the center, with some branches and blurred green foliage visible in the background, indicating a natural setting. +Wilson_Warbler_0018_175389.jpg The 180.Wilson Warbler is perched in profile on a branch with visible yellow plumage and a distinguishing black cap, with a colorful pixelated occlusion covering the left portion of the image, surrounded by green leaves. +Wilson_Warbler_0065_175924.jpg A small bird partially obscured by digital noise reveals a bright yellow and green plumage with visible branches and budding leaves around in a natural habitat. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/181.Worm_eating_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/181.Worm_eating_Warbler_descriptions.txt new file mode 100644 index 0000000..1dff4e1 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/181.Worm_eating_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Worm_Eating_Warbler_0011_795566.jpg The bird, partially obscured by a colorful noise block on the left, shows a muted olive-brown plumage with a distinctive stance amidst green foliage, while its head and body are mostly hidden by straight vertical leaves. +Worm_Eating_Warbler_0102_176069.jpg The bird is perched diagonally on a branch with visible parts showing yellow-brown plumage and a distinct dark eye stripe, while a heavy vertical occlusion with multicolored noise obscures the left side. +Worm_Eating_Warbler_0015_795570.jpg The image shows a partially visible bird with earthy tones and a blurred branch environment, heavily occluded by a central vertical strip of colorful static noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/182.Yellow_Warbler_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/182.Yellow_Warbler_descriptions.txt new file mode 100644 index 0000000..a726111 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/182.Yellow_Warbler_descriptions.txt @@ -0,0 +1,3 @@ +Yellow_Warbler_0021_176421.jpg The image shows a yellow bird partially visible amidst branches and leaves, with heavy occlusion resembling colorful static covering most of the body, but revealing a slender tail and wingtip extending from behind the obstruction against a clear blue sky. +Yellow_Warbler_0121_176402.jpg A partially visible yellow warbler with a vibrant yellow body and subtle feather texture is perched facing forward on a branch surrounded by greenery, with its right side obscured by a colorful static pattern covering a portion of the scene. +Yellow_Warbler_0018_176674.jpg The bird has a muted yellow color with fine, dark streaks on its wings, visible from a side view, standing on a rock with the right half obscured by pixelated noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/183.Northern_Waterthrush_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/183.Northern_Waterthrush_descriptions.txt new file mode 100644 index 0000000..367a4ba --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/183.Northern_Waterthrush_descriptions.txt @@ -0,0 +1,3 @@ +Northern_Waterthrush_0016_177345.jpg A largely pixelated and indistinct area covers the central region of the image, surrounded by a forest floor with brown leaves and scattered green foliage, with no discernible features of the "183.Northern Waterthrush" visible. +Northern_Waterthrush_0066_177110.jpg The bird is perched on the ground with leaves around, displaying a brownish back, a speckled light breast, and a heavily occluded region covering most of the body, with visible streaks on its head and neck. +Northern_Waterthrush_0022_177003.jpg The bird is perched on a branch, partially obscured by a colorful pixelated square over its upper body, with visible features including a brown-streaked belly and a pointed beak, situated against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/184.Louisiana_Waterthrush_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/184.Louisiana_Waterthrush_descriptions.txt new file mode 100644 index 0000000..e3137e5 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/184.Louisiana_Waterthrush_descriptions.txt @@ -0,0 +1,3 @@ +Louisiana_Waterthrush_0082_177596.jpg The visible portion of the 184.Louisiana Waterthrush shows a brown bird with faint streaks on its breast, peering from behind rocks near a water edge, with its right half heavily obscured by colorful static-like noise. +Louisiana_Waterthrush_0041_795279.jpg The image shows a bird with muted brown and white plumage partially obscured by colorful noise, perched on a rock beside a flowing water source with visible tail feathers extending from the left side of the occlusion. +Louisiana_Waterthrush_0045_795274.jpg The bird is perched on a rocky surface with a side profile visible, displaying brown plumage with a white eyebrow stripe above a speckled breast, though the central body is heavily occluded by colorful digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/185.Bohemian_Waxwing_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/185.Bohemian_Waxwing_descriptions.txt new file mode 100644 index 0000000..436bf95 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/185.Bohemian_Waxwing_descriptions.txt @@ -0,0 +1,3 @@ +Bohemian_Waxwing_0114_177621.jpg The Bohemian Waxwing, seen in a side view with a smooth blend of gray and brown plumage, is perched on a branch with berries, partially occluded by a colorful, pixelated block obscuring the head area. +Bohemian_Waxwing_0122_796654.jpg The Bohemian Waxwing is perched sideways on a branch with its head visible, featuring a prominent crest and a dark mask over the eyes, while its lower body is obscured by static-like occlusion. +Bohemian_Waxwing_0031_796633.jpg A Bohemian Waxwing is perched sideways on a bare branch, partially concealed by a vertical, multi-colored noise pattern, with visible smooth gray and brown plumage and a distinctive yellow-tipped tail. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/186.Cedar_Waxwing_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/186.Cedar_Waxwing_descriptions.txt new file mode 100644 index 0000000..fc77c90 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/186.Cedar_Waxwing_descriptions.txt @@ -0,0 +1,3 @@ +Cedar_Waxwing_0130_178308.jpg The bird is perched on a branch against a blurred green background, displaying a smooth brown and tan head with a prominent crest, partially obscured by a digital noise pattern on the right side, which covers part of its body and wing. +Cedar_Waxwing_0094_178049.jpg A Cedar Waxwing with a warm brown head and crest, black mask, and visible yellow-tipped tail is perched diagonally, partially obscured by digital noise covering the body, against a muted green leafy background. +Cedar_Waxwing_0013_178830.jpg The Cedar Waxwing, partially visible against a lush green background, displays a smooth brownish head with a defining black eye stripe, while the left portion of the image is obscured by digital noise. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/187.American_Three_toed_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/187.American_Three_toed_Woodpecker_descriptions.txt new file mode 100644 index 0000000..ab4fe7d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/187.American_Three_toed_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +American_Three_Toed_Woodpecker_0049_796191.jpg The image shows a black and white bird with a speckled pattern, perched vertically on a tree trunk, its face partially covered by a colorful, pixelated occlusion, with a visible yellow patch on the crown and a snowy background. +American_Three_Toed_Woodpecker_0046_796153.jpg The American Three-toed Woodpecker appears perched sideways on a tree trunk with visible black and white plumage on its back, while most of its body and head are heavily occluded by a colorful, static-like pattern. +American_Three_Toed_Woodpecker_0041_796150.jpg The low-resolution image shows a side view of a black and white bird perched vertically on a tree trunk, with vibrant green foliage in the background and a heavy occlusion obscuring the middle section, while a distinctive yellow patch is visible on its head above the eye. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/188.Pileated_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/188.Pileated_Woodpecker_descriptions.txt new file mode 100644 index 0000000..54ba535 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/188.Pileated_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Pileated_Woodpecker_0087_179959.jpg The image shows a Pileated Woodpecker with a vibrant red crest perched laterally on a snow-dusted tree trunk, with its back and wings in view, partially obscured by a colorful noise pattern in the center. +Pileated_Woodpecker_0008_180400.jpg The pileated woodpecker, viewed from the side, shows a glimpse of vibrant red on its crest, contrasting with its predominantly dark body and distinctive white patches, as it clings to a tree trunk with a colorful, pixelated occlusion covering part of its lower wing area. +Pileated_Woodpecker_0105_180246.jpg The Pileated Woodpecker, viewed from the side, has a bright red crest and a black body with white facial markings, perched on a textured, grayish mulch surface with significant pixelation in the lower left masking parts of its form. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/189.Red_bellied_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/189.Red_bellied_Woodpecker_descriptions.txt new file mode 100644 index 0000000..d573d8e --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/189.Red_bellied_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Red_Bellied_Woodpecker_0103_180803.jpg The woodpecker displays a vivid red cap and nape, with black and white barred wings, perched on a wooden feeder partially occluded by a colorful, static-like rectangle blocking the bird's face and part of the feeder. +Red_Bellied_Woodpecker_0077_182334.jpg The image depicts a Red-bellied Woodpecker with a visible red head and part of a black and white striped back, peeking sideways from a tree, with a significant portion obscured by digital noise covering its body. +Red_Bellied_Woodpecker_0099_180766.jpg The woodpecker features a vibrant red head and nape, with a beige body and bold black-and-white striped wings visible above a colorful noise occlusion, perched beside a suet cage against a snowy backdrop. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/190.Red_cockaded_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/190.Red_cockaded_Woodpecker_descriptions.txt new file mode 100644 index 0000000..668fb5d --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/190.Red_cockaded_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Red_Cockaded_Woodpecker_0029_794724.jpg The Red-cockaded Woodpecker, partially occluded by a dense, colorful noise pattern, is peering out from a hole in a textured tree trunk, showcasing a black and white head with distinctive markings. +Red_Cockaded_Woodpecker_0037_794733.jpg The right part of the image shows the rough, textured bark of a tree with a slightly visible bird cavity, while the left side is heavily occluded by a dense, multicolored noise pattern. +Red_Cockaded_Woodpecker_0010_182451.jpg The image shows tree bark with a pixelated occlusion covering most of the center, only revealing some of the tree's rough and textured gray-brown surface with hints of black, likely part of the bird, partially visible at the bottom right edge of the pattern. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/191.Red_headed_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/191.Red_headed_Woodpecker_descriptions.txt new file mode 100644 index 0000000..83391b4 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/191.Red_headed_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Red_Headed_Woodpecker_0013_182721.jpg The Red-headed Woodpecker is seen in a profile pose on a tree trunk with its striking red head visible, while the lower body is obscured by colorful noise, leaving the upper black and white plumage and textured bark discernible. +Red_Headed_Woodpecker_0063_183358.jpg The image shows the lower body and wings of a bird with black and white plumage perched on a branch, while the bright red head is partially visible above a heavy occlusion of colorful static noise. +Red_Headed_Woodpecker_0068_183662.jpg The image shows a low-resolution scene with a heavily occluded foreground, featuring a blurred, multicolored noise overlay masking a section, while a wooden log rests on a grassy patch with hints of stone or pavement visible in the background, but no discernible features of the Red-headed Woodpecker are visible. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/192.Downy_Woodpecker_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/192.Downy_Woodpecker_descriptions.txt new file mode 100644 index 0000000..fca042a --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/192.Downy_Woodpecker_descriptions.txt @@ -0,0 +1,3 @@ +Downy_Woodpecker_0080_184240.jpg A partially occluded black-and-white bird with white spots on its wings is perched on a rough-textured log, with its head and upper body visible against a blurred background. +Downy_Woodpecker_0038_184418.jpg The Downy Woodpecker, perched vertically on a textured tree trunk, displays a mostly black and white plumage with a distinctive red patch on its head, partially obscured by nearby branches and a colorful, pixelated occlusion on the right. +Downy_Woodpecker_0049_183920.jpg The Downy Woodpecker is perched on a branch with its head turned sideways, showing a red patch on its head, black and white striped face, and a speckled black and white wing partially obscured by a colorful noise-filled occlusion in the lower part of the image. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/193.Bewick_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/193.Bewick_Wren_descriptions.txt new file mode 100644 index 0000000..d178cb6 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/193.Bewick_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Bewick_Wren_0010_185142.jpg The Bewick's Wren is perched on a rock with a visible brown back and white stripe over the eye, its tail held upright, and a colorful occlusion covering the lower right part of the image. +Bewick_Wren_0132_184906.jpg The Bewick's Wren, viewed from the side, displays a warm brown plumage with darker streaks and a prominent white eyebrow stripe, perched on a branch with its tail slightly elevated; the central body is heavily occluded by digital noise. +Bewick_Wren_0088_184733.jpg The bird's upper body and face are partially visible from the side, blending into a muted gray sky, with significant occlusion in the center obscuring details, while perched on bare branches. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/194.Cactus_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/194.Cactus_Wren_descriptions.txt new file mode 100644 index 0000000..48f53aa --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/194.Cactus_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Cactus_Wren_0041_185691.jpg The image shows a Cactus Wren from a side view with its tail raised and fanned displaying distinctive black and white barring, amidst branches, with the lower half obscured by heavy pixelation, against a beige landscape and clear blue sky. +Cactus_Wren_0097_186015.jpg The visible portion of the Cactus Wren shows a speckled pattern with black and white spots on its lower body and tail, viewed from the side with a pot and straw visible, while the upper section is heavily occluded with a noise pattern. +Cactus_Wren_0025_185696.jpg The image shows a Cactus Wren perched on a branch with most of its body obscured by dense pixelated noise, while the visible parts include a portion of its tail against a clear blue sky, with the tail displaying a speckled texture and shades of brown with darker markings. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/195.Carolina_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/195.Carolina_Wren_descriptions.txt new file mode 100644 index 0000000..1de966b --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/195.Carolina_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Carolina_Wren_0020_186702.jpg The Carolina Wren is perched amidst dry foliage, with its side visible; it has a warm brown color with a slightly speckled texture, and its central body is heavily occluded by colorful static interference. +Carolina_Wren_0045_186165.jpg The image shows a Carolina Wren perched on a woven chair, with its brown body partially visible and heavily obscured by a central vertical block of colorful static, while the setting highlights the chair's intricate wicker texture. +Carolina_Wren_0122_186365.jpg The visible portion of the wren shows a light brown chest and legs against a textured wooden surface, with heavy occlusion covering its head and upper body. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/196.House_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/196.House_Wren_descriptions.txt new file mode 100644 index 0000000..132c134 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/196.House_Wren_descriptions.txt @@ -0,0 +1,3 @@ +House_Wren_0055_187397.jpg The image shows a House Wren with brown and tan feathers featuring subtle striping, perched in profile on a branch with green leaves, partially occluded by a colorful noise pattern in the top-left corner. +House_Wren_0083_187406.jpg A small bird perches on a branch with its head visible and pointed beak discernible, surrounded by a natural green and brown environment partially obscured by heavy pixelated noise on the right. +House_Wren_0046_187477.jpg The House Wren is perched in a side profile on a branch, showcasing its brown upper body with fine streaks and a lighter underbelly, while a colorful static occlusion covers its lower half against a blurred green background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/197.Marsh_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/197.Marsh_Wren_descriptions.txt new file mode 100644 index 0000000..5b27ebf --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/197.Marsh_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Marsh_Wren_0094_188710.jpg The Marsh Wren is viewed from a side angle with a visible light brown and slightly speckled head against a blurred green background, but most of its body is occluded by a colorful, noise-like rectangular overlay. +Marsh_Wren_0122_188323.jpg The bird, partially hidden by noise on the right, is perched sideways on a branch with visible earthy brown and muted gray tones, set against a blurred background of similar colored reeds. +Marsh_Wren_0109_188329.jpg The image shows a dense, colorful noise pattern obstructing most of the view, with partially visible muted greens and browns suggestive of a marshy environment, while some thin, vertical, plant-like structures are observable at the fringes. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/198.Rock_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/198.Rock_Wren_descriptions.txt new file mode 100644 index 0000000..ab70d12 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/198.Rock_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Rock_Wren_0026_189181.jpg The image shows a scene where a background of muted brown and green foliage surrounds an area of dense, multicolored noise overlaying a tree branch, with the partially visible tail feathers of a bird exhibiting hints of brown and white tones on the left edge. +Rock_Wren_0096_188966.jpg The image shows a Rock Wren with its head and upper body occluded by static noise, perched sideways against a rugged, textured brown rock surface, revealing part of its speckled brown back and white underbelly. +Rock_Wren_0069_188969.jpg The Rock Wren appears with a brownish-gray speckled back and head, standing on a gravelly surface with its lower body obscured by a colorful static-like occlusion. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/199.Winter_Wren_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/199.Winter_Wren_descriptions.txt new file mode 100644 index 0000000..6b44658 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/199.Winter_Wren_descriptions.txt @@ -0,0 +1,3 @@ +Winter_Wren_0130_189531.jpg The image shows the rear half of a small bird with brown, speckled plumage, facing away from the viewer, while the left side is obscured by a vertical band of colorful static, and the environment appears to be a natural, mossy surface with a blurred dark background. +Winter_Wren_0087_190135.jpg The bird, partially obscured by high-frequency noise on the right side, displays a textured brown plumage with a hint of a speckled pattern, perched in a side view on a branch, with its tail slightly raised. +Winter_Wren_0116_189834.jpg A small bird with a speckled brown tail peeks out from behind a colorful, pixelated obstruction, perched on a textured, lichen-covered rock against a muted background. diff --git a/utils/area/descriptions/CUB/generated_descriptions_occ/200.Common_Yellowthroat_descriptions.txt b/utils/area/descriptions/CUB/generated_descriptions_occ/200.Common_Yellowthroat_descriptions.txt new file mode 100644 index 0000000..e8d1d77 --- /dev/null +++ b/utils/area/descriptions/CUB/generated_descriptions_occ/200.Common_Yellowthroat_descriptions.txt @@ -0,0 +1,3 @@ +Common_Yellowthroat_0077_190990.jpg The bird is viewed from the side with olive-brown plumage, notably on the back and tail, perched on a branch, while the right side of the image is heavily occluded by noise, obscuring parts of its body. +Common_Yellowthroat_0092_190573.jpg The bird, positioned in a side view, shows shades of yellow and olive with visible wing and tail feathers, partially obscured by heavy pixelated occlusion over the upper body against a blurred green background. +Common_Yellowthroat_0088_190594.jpg The bird, seen from the side, displays vibrant yellow plumage on its underside and a distinct black mask, while the background features blurred foliage, and a significant portion is occluded by a vertical strip of static noise. diff --git a/utils/area/descriptions/Car/classnames.txt b/utils/area/descriptions/Car/classnames.txt new file mode 100644 index 0000000..9daa2cb --- /dev/null +++ b/utils/area/descriptions/Car/classnames.txt @@ -0,0 +1 @@ +['AM General Hummer SUV 2000', 'Acura RL Sedan 2012', 'Acura TL Sedan 2012', 'Acura TL Type-S 2008', 'Acura TSX Sedan 2012', 'Acura Integra Type R 2001', 'Acura ZDX Hatchback 2012', 'Aston Martin V8 Vantage Convertible 2012', 'Aston Martin V8 Vantage Coupe 2012', 'Aston Martin Virage Convertible 2012', 'Aston Martin Virage Coupe 2012', 'Audi RS 4 Convertible 2008', 'Audi A5 Coupe 2012', 'Audi TTS Coupe 2012', 'Audi R8 Coupe 2012', 'Audi V8 Sedan 1994', 'Audi 100 Sedan 1994', 'Audi 100 Wagon 1994', 'Audi TT Hatchback 2011', 'Audi S6 Sedan 2011', 'Audi S5 Convertible 2012', 'Audi S5 Coupe 2012', 'Audi S4 Sedan 2012', 'Audi S4 Sedan 2007', 'Audi TT RS Coupe 2012', 'BMW ActiveHybrid 5 Sedan 2012', 'BMW 1 Series Convertible 2012', 'BMW 1 Series Coupe 2012', 'BMW 3 Series Sedan 2012', 'BMW 3 Series Wagon 2012', 'BMW 6 Series Convertible 2007', 'BMW X5 SUV 2007', 'BMW X6 SUV 2012', 'BMW M3 Coupe 2012', 'BMW M5 Sedan 2010', 'BMW M6 Convertible 2010', 'BMW X3 SUV 2012', 'BMW Z4 Convertible 2012', 'Bentley Continental Supersports Conv. Convertible 2012', 'Bentley Arnage Sedan 2009', 'Bentley Mulsanne Sedan 2011', 'Bentley Continental GT Coupe 2012', 'Bentley Continental GT Coupe 2007', 'Bentley Continental Flying Spur Sedan 2007', 'Bugatti Veyron 16.4 Convertible 2009', 'Bugatti Veyron 16.4 Coupe 2009', 'Buick Regal GS 2012', 'Buick Rainier SUV 2007', 'Buick Verano Sedan 2012', 'Buick Enclave SUV 2012', 'Cadillac CTS-V Sedan 2012', 'Cadillac SRX SUV 2012', 'Cadillac Escalade EXT Crew Cab 2007', 'Chevrolet Silverado 1500 Hybrid Crew Cab 2012', 'Chevrolet Corvette Convertible 2012', 'Chevrolet Corvette ZR1 2012', 'Chevrolet Corvette Ron Fellows Edition Z06 2007', 'Chevrolet Traverse SUV 2012', 'Chevrolet Camaro Convertible 2012', 'Chevrolet HHR SS 2010', 'Chevrolet Impala Sedan 2007', 'Chevrolet Tahoe Hybrid SUV 2012', 'Chevrolet Sonic Sedan 2012', 'Chevrolet Express Cargo Van 2007', 'Chevrolet Avalanche Crew Cab 2012', 'Chevrolet Cobalt SS 2010', 'Chevrolet Malibu Hybrid Sedan 2010', 'Chevrolet TrailBlazer SS 2009', 'Chevrolet Silverado 2500HD Regular Cab 2012', 'Chevrolet Silverado 1500 Classic Extended Cab 2007', 'Chevrolet Express Van 2007', 'Chevrolet Monte Carlo Coupe 2007', 'Chevrolet Malibu Sedan 2007', 'Chevrolet Silverado 1500 Extended Cab 2012', 'Chevrolet Silverado 1500 Regular Cab 2012', 'Chrysler Aspen SUV 2009', 'Chrysler Sebring Convertible 2010', 'Chrysler Town and Country Minivan 2012', 'Chrysler 300 SRT-8 2010', 'Chrysler Crossfire Convertible 2008', 'Chrysler PT Cruiser Convertible 2008', 'Daewoo Nubira Wagon 2002', 'Dodge Caliber Wagon 2012', 'Dodge Caliber Wagon 2007', 'Dodge Caravan Minivan 1997', 'Dodge Ram Pickup 3500 Crew Cab 2010', 'Dodge Ram Pickup 3500 Quad Cab 2009', 'Dodge Sprinter Cargo Van 2009', 'Dodge Journey SUV 2012', 'Dodge Dakota Crew Cab 2010', 'Dodge Dakota Club Cab 2007', 'Dodge Magnum Wagon 2008', 'Dodge Challenger SRT8 2011', 'Dodge Durango SUV 2012', 'Dodge Durango SUV 2007', 'Dodge Charger Sedan 2012', 'Dodge Charger SRT-8 2009', 'Eagle Talon Hatchback 1998', 'FIAT 500 Abarth 2012', 'FIAT 500 Convertible 2012', 'Ferrari FF Coupe 2012', 'Ferrari California Convertible 2012', 'Ferrari 458 Italia Convertible 2012', 'Ferrari 458 Italia Coupe 2012', 'Fisker Karma Sedan 2012', 'Ford F-450 Super Duty Crew Cab 2012', 'Ford Mustang Convertible 2007', 'Ford Freestar Minivan 2007', 'Ford Expedition EL SUV 2009', 'Ford Edge SUV 2012', 'Ford Ranger SuperCab 2011', 'Ford GT Coupe 2006', 'Ford F-150 Regular Cab 2012', 'Ford F-150 Regular Cab 2007', 'Ford Focus Sedan 2007', 'Ford E-Series Wagon Van 2012', 'Ford Fiesta Sedan 2012', 'GMC Terrain SUV 2012', 'GMC Savana Van 2012', 'GMC Yukon Hybrid SUV 2012', 'GMC Acadia SUV 2012', 'GMC Canyon Extended Cab 2012', 'Geo Metro Convertible 1993', 'HUMMER H3T Crew Cab 2010', 'HUMMER H2 SUT Crew Cab 2009', 'Honda Odyssey Minivan 2012', 'Honda Odyssey Minivan 2007', 'Honda Accord Coupe 2012', 'Honda Accord Sedan 2012', 'Hyundai Veloster Hatchback 2012', 'Hyundai Santa Fe SUV 2012', 'Hyundai Tucson SUV 2012', 'Hyundai Veracruz SUV 2012', 'Hyundai Sonata Hybrid Sedan 2012', 'Hyundai Elantra Sedan 2007', 'Hyundai Accent Sedan 2012', 'Hyundai Genesis Sedan 2012', 'Hyundai Sonata Sedan 2012', 'Hyundai Elantra Touring Hatchback 2012', 'Hyundai Azera Sedan 2012', 'Infiniti G Coupe IPL 2012', 'Infiniti QX56 SUV 2011', 'Isuzu Ascender SUV 2008', 'Jaguar XK XKR 2012', 'Jeep Patriot SUV 2012', 'Jeep Wrangler SUV 2012', 'Jeep Liberty SUV 2012', 'Jeep Grand Cherokee SUV 2012', 'Jeep Compass SUV 2012', 'Lamborghini Reventon Coupe 2008', 'Lamborghini Aventador Coupe 2012', 'Lamborghini Gallardo LP 570-4 Superleggera 2012', 'Lamborghini Diablo Coupe 2001', 'Land Rover Range Rover SUV 2012', 'Land Rover LR2 SUV 2012', 'Lincoln Town Car Sedan 2011', 'MINI Cooper Roadster Convertible 2012', 'Maybach Landaulet Convertible 2012', 'Mazda Tribute SUV 2011', 'McLaren MP4-12C Coupe 2012', 'Mercedes-Benz 300-Class Convertible 1993', 'Mercedes-Benz C-Class Sedan 2012', 'Mercedes-Benz SL-Class Coupe 2009', 'Mercedes-Benz E-Class Sedan 2012', 'Mercedes-Benz S-Class Sedan 2012', 'Mercedes-Benz Sprinter Van 2012', 'Mitsubishi Lancer Sedan 2012', 'Nissan Leaf Hatchback 2012', 'Nissan NV Passenger Van 2012', 'Nissan Juke Hatchback 2012', 'Nissan 240SX Coupe 1998', 'Plymouth Neon Coupe 1999', 'Porsche Panamera Sedan 2012', 'Ram C/V Cargo Van Minivan 2012', 'Rolls-Royce Phantom Drophead Coupe Convertible 2012', 'Rolls-Royce Ghost Sedan 2012', 'Rolls-Royce Phantom Sedan 2012', 'Scion xD Hatchback 2012', 'Spyker C8 Convertible 2009', 'Spyker C8 Coupe 2009', 'Suzuki Aerio Sedan 2007', 'Suzuki Kizashi Sedan 2012', 'Suzuki SX4 Hatchback 2012', 'Suzuki SX4 Sedan 2012', 'Tesla Model S Sedan 2012', 'Toyota Sequoia SUV 2012', 'Toyota Camry Sedan 2012', 'Toyota Corolla Sedan 2012', 'Toyota 4Runner SUV 2012', 'Volkswagen Golf Hatchback 2012', 'Volkswagen Golf Hatchback 1991', 'Volkswagen Beetle Hatchback 2012', 'Volvo C30 Hatchback 2012', 'Volvo 240 Sedan 1993', 'Volvo XC90 SUV 2007', 'smart fortwo Convertible 2012'] \ No newline at end of file diff --git a/utils/area/descriptions/Car/generated_descriptions/AM_General_Hummer_SUV_2000_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/AM_General_Hummer_SUV_2000_descriptions.txt new file mode 100644 index 0000000..a37b675 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/AM_General_Hummer_SUV_2000_descriptions.txt @@ -0,0 +1,20 @@ +01952.jpg A silver-grey AM General Hummer SUV 2000 with a rugged front grille and rounded extended wheel arches is parked in an urban environment, with a brick building in the background. +05657.jpg The vehicle is a white AM General Hummer SUV 2000, viewed from the front-left side, parked in an urban setting with other cars surrounding it, showcasing its characteristic wide stance and rugged body design. +00522.jpg The AM General Hummer SUV 2000 is a matte black vehicle with large off-road tires, seen from a three-quarter front angle, featuring a roof rack and a rugged exterior, set against a plain industrial building background. +00707.jpg A gray AM General Hummer SUV 2000 is depicted from a front three-quarter angle with a charcoal texture, featuring pronounced wheel arches and roof-mounted lights, set against an urban environment with a pavement foreground and power lines in the background. +03008.jpg The AM General Hummer SUV 2000 is visible in a side profile with a dark red color, featuring rugged black tires and a roof rack, situated in a light industrial area with a beige and white building in the background. +02311.jpg A yellow AM General Hummer SUV 2000 is captured from the front-right angle, navigating through a muddy terrain, with distinct features like its robust grille and boxy frame clearly visible against a lush, green wooded backdrop. +00773.jpg The image shows a white AM General Hummer SUV 2000 with a boxy, utilitarian design and spare tire on the back, viewed at an angle from the front side, navigating a dirt slope in a dry, grassy, and tree-dotted landscape. +04874.jpg A yellow AM General Hummer SUV 2000 with a rugged exterior and prominent front grille is seen from a three-quarter front view parked on grass, with a building in the background and notable black protective bars on the front and sides. +05754.jpg The AM General Hummer SUV 2000 in the image is black with a rugged texture, viewed from the front in a low-resolution setting, featuring a distinctive wide grille and apparent off-road tires in an outdoor environment. +06174.jpg The AM General Hummer SUV 2000 is a bright yellow vehicle with a robust and angular body, viewed from a rear-side angle, featuring soft-top black detailing, large off-road tires, and distinct circular rear lights, set on a suburban street with greenery in the backdrop. +00887.jpg The AM General Hummer SUV 2000, viewed from the front-left, features a dark metallic color with a rugged texture, a roof rack, large off-road tires, and is parked on a paved surface with a clear blue sky and other vehicles nearby. +08011.jpg The image depicts a bright yellow AM General Hummer SUV 2000 with a rugged texture, viewed from the side against a grassy park background, prominently featuring its large tires and boxy, angular body shape. +02848.jpg The AM General Hummer SUV 2000 in the image is a rugged, dark-colored vehicle with a prominent front grille, robust tires, and visible suspension components, set in a neutral, outdoor rooftop parking area against a skyline. +04669.jpg The low-resolution image showcases a white AM General Hummer SUV 2000 from a frontal viewpoint, featuring a rugged grille guard, prominent circular headlights, and set against an urban nighttime background with streetlights and signage. +05921.jpg A bright red AM General Hummer SUV 2000 is seen from a low front-left angle on a snowy terrain, highlighting its rugged build, wide stance, distinct grille, and clear side mirrors against a gradient sky and sparse pine trees. +07025.jpg The AM General Hummer SUV 2000 is a robust red vehicle with a rugged texture, viewed from the front left angle, parked in an urban setting alongside other cars, and features prominent off-road tires, a roof rack with spotlights, and distinctive grille design. +03943.jpg The AM General Hummer SUV 2000 in the image is a vibrant yellow vehicle with a glossy finish, viewed from a side angle on a raised platform in an indoor showroom setting, featuring its iconic boxy shape, large tires, and prominent roof rack. +04827.jpg A black AM General Hummer SUV 2000 with a matte finish is viewed from the front-left angle, showcasing its robust grille guard and large off-road tires, set against a paved parking lot with sparse greenery in the background. +00462.jpg The image shows a white AM General Hummer SUV 2000 with a rugged black front grille and roof rack, viewed from a three-quarter front angle in an urban parking lot with trees in the background. +07279.jpg The red AM General Hummer SUV 2000 is viewed from a front-side angle, displaying its rugged build and distinctive black grill, set against a showroom environment with signage. diff --git a/utils/area/descriptions/Car/generated_descriptions/Acura_Integra_Type_R_2001_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Acura_Integra_Type_R_2001_descriptions.txt new file mode 100644 index 0000000..9727360 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Acura_Integra_Type_R_2001_descriptions.txt @@ -0,0 +1,20 @@ +05671.jpg The yellow Acura Integra Type R 2001 is captured from a front-side angle on a racetrack, surrounded by a backdrop of bare trees and dry grass, with its distinctive round headlights and red "R" badge visible. +04224.jpg The white Acura Integra Type R 2001, viewed from a front three-quarter angle against an open road background, features a prominent rear spoiler, distinct dual front headlights, and sleek body lines. +04833.jpg The image depicts a white Acura Integra Type R 2001 with a smooth texture viewed from the front-left angle, featuring red brake calipers and dual circular headlights, parked on green grass with a suburban residential backdrop of trees and houses. +02738.jpg The image shows a side view of a yellow Acura Integra Type R 2001 with a glossy finish, featuring its distinct rear spoiler and alloy wheels, set against a sunlit, tree-lined asphalt parking area. +06179.jpg The Acura Integra Type R 2001 is shown in a front view, featuring a vibrant yellow color with a glossy texture, parked in an urban environment with a concrete floor, distinctive round headlights, a visible front lip spoiler, and a noticeable intercooler, with nearby vehicles partially visible. +06660.jpg The Acura Integra Type R 2001 is a bright yellow coupe with a prominent rear spoiler viewed from a rear three-quarter angle, parked on a suburban street lined with houses, and features distinctive red Type R badges and dark alloy wheels. +07171.jpg A vibrant yellow Acura Integra Type R 2001 is captured from the front-left angle under a dramatic sunset, highlighting its sleek body lines, distinct rounded headlights, and set against a spacious open asphalt area with silhouetted trees in the background. +01911.jpg The image shows a bright yellow Acura Integra Type R 2001 with a sporty front view, featuring distinct circular headlights and a signature rear spoiler, set against the backdrop of a racing track with blurred banners and fencing. +07174.jpg The yellow Acura Integra Type R 2001 is viewed from a front-left angle, parked on a residential street with visible houses and other vehicles, featuring distinctive dual circular headlights, a sleek aerodynamic body, and a noticeable rear spoiler. +06718.jpg The 2001 Acura Integra Type R is depicted in a three-quarter front view, showcasing its vibrant yellow body with a contrasting black hood, clear headlights, a distinctive red badge, and is positioned in an outdoor setting with tiled flooring and foliage in the background. +01255.jpg The yellow Acura Integra Type R 2001 is viewed from a front three-quarter angle on a driveway, featuring distinct dual circular headlights, black side mirrors, and a tree-lined suburban street in the background. +03761.jpg The 2001 Acura Integra Type R is shown in vibrant yellow with a glossy finish, captured from a front-left angle in a sunny setting featuring a campus-like backdrop with terracotta-roofed buildings, highlighting its distinctive round headlights, aggressive front bumper, and sleek side profile. +00374.jpg A white Acura Integra Type R 2001, viewed from a rear three-quarter angle, features a prominent rear spoiler and bronze wheels, set against an industrial background with a faded, brick-textured wall. +02911.jpg A white Acura Integra Type R 2001 is seen in a three-quarter rear view, parked on a pavement with a metal building in the background, featuring a prominent rear wing spoiler and distinctive white alloy wheels. +02095.jpg A vibrant yellow Acura Integra Type R 2001 is captured from a front three-quarter view, parked on lush green grass with a forested background, showcasing its aggressive bumper, distinct headlights, and prominent rear spoiler. +00308.jpg The Acura Integra Type R 2001 is displayed in a side profile within a garage environment, showcasing its bright yellow color, distinct rear spoiler, and alloy wheels. +03265.jpg The 2001 Acura Integra Type R is shown in a vibrant yellow with a glossy finish, captured from a low front angle with black wheels, set against an urban backdrop featuring red brick and green accents, emphasizing its sporty design and prominent headlights. +05042.jpg The Acura Integra Type R 2001 is captured in a front three-quarter view, showcasing a crisp white body with a contrasting black carbon fiber hood and a sleek, sporty stance on a paved waterfront parking area, with distinctive round headlights, aftermarket wheels, and a lowered suspension against a marina backdrop. +04691.jpg The 2001 Acura Integra Type R is captured from a side angle, showcasing its striking red exterior with smooth curves, prominent rear spoiler, distinctive twin headlights, and sporty alloy wheels, set against a suburban street backdrop featuring a wooden fence and brick buildings. +08018.jpg The Acura Integra Type R 2001 in the image is a bright yellow car with a glossy finish, viewed from a front-side angle on a mountain road, featuring distinctive circular headlights and a hood scoop with a scenic, mountainous terrain in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Acura_RL_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Acura_RL_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..375ce69 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Acura_RL_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +05295.jpg The low-resolution image of the 2012 Acura RL Sedan shows a sleek, dark blue vehicle with a shiny, reflective surface, viewed from a front-side angle, set against a plain white background, highlighting its distinctive chrome grille and multi-spoke alloy wheels. +05259.jpg The car is a glossy red sedan viewed from the front-side angle, driving on a busy urban highway with a cityscape background, featuring a distinctive chrome grille and five-spoke alloy wheels. +00691.jpg The Acura RL Sedan 2012 in the image is a white, sleekly contoured vehicle viewed from a rear-side angle, featuring a glossy finish, distinctive multi-spoke alloy wheels, and set against a minimalistic, light-gray backdrop. +06624.jpg A black Acura RL Sedan 2012 is pictured from a front-side angle, showcasing its sleek body and prominent chrome grille against a neutral studio backdrop, with distinctive alloy wheels and curved headlights adding to its elegant design. +03875.jpg The Acura RL Sedan 2012 is displayed in a glossy black finish with a front three-quarter view, highlighted by prominent chrome accents on the grille and bumper against a showroom backdrop, featuring sleek headlamp design and multi-spoke wheels. +04892.jpg The Acura RL Sedan 2012 in the image is silver with a smooth texture, viewed from a rear three-quarter angle against a dark studio background, featuring distinct tail lights and dual exhausts. +01031.jpg The Acura RL Sedan 2012 is viewed from the front-left angle, showcasing its sleek silver body and shiny chrome accents against a plain dark background, with distinctive multi-spoke alloy wheels and a prominent front grille. +07960.jpg The Acura RL Sedan 2012 appears in a metallic silver color with a glossy finish, viewed from the front-left angle highlighting its distinct grille and elongated body, set against a plain white background, with visible multi-spoke alloy wheels and angular headlights adding to its sleek profile. +01034.jpg The Acura RL Sedan 2012 appears in a sleek silver color with a smooth metallic texture, viewed from a front-side angle, showcasing its distinctively shaped headlights and grille against a backdrop of a modern concrete building with wooden doors, set on a sunlit driveway. +03011.jpg The low-resolution image shows a maroon 2012 Acura RL Sedan with a glossy finish, viewed from the front-left angle, positioned on a road with a blurred landscape and sunset sky in the background, highlighting its sleek headlights and distinct grille. +06061.jpg The Acura RL Sedan 2012 is shown in a front three-quarter view with a sleek, dark metallic paint and smooth texture, parked on a gravel path with a scenic hillside and muted cloudy sky backdrop, featuring distinctive sharp headlights and a prominent grille design. +02669.jpg A maroon Acura RL Sedan 2012 with a glossy finish is seen from a front-side angle on a rooftop parking lot, highlighted by its chrome grille and dual exhaust, against a backdrop of glass skyscrapers. +07897.jpg The silver 2012 Acura RL Sedan is displayed in a showroom with dramatic lighting, showcasing its sleek side profile and chrome-accented wheels against a metallic backdrop with a modern design. +04244.jpg The Acura RL Sedan 2012 in the image is a glossy red vehicle viewed from a rear three-quarter angle, driving on a street bordered by palm trees and a beige multi-story parking structure, showcasing its streamlined design and distinct chrome trim. +03537.jpg The image depicts a glossy black Acura RL Sedan 2012 viewed from a front three-quarter angle, set against a modern, well-lit showroom environment with reflective flooring, featuring distinct chrome accents on the grille and alloy wheels. +06571.jpg The Acura RL Sedan 2012 in the image is a glossy black car viewed from a front three-quarter angle, displayed indoors with a reflective floor and surrounded by green plants, showcasing a distinct chrome grille and sleek body curves. +01891.jpg The Acura RL Sedan 2012 appears in a glossy black finish with visible dirt spots, viewed from the rear three-quarters angle, against a suburban backdrop with a wooden fence and lush, green trees. +01535.jpg The Acura RL Sedan 2012 is displayed in a glossy silver color viewed from an angled front-left perspective, set against a plain white background, highlighting its sleek contour, distinctive grille, and detailed wheel design. +05930.jpg The Acura RL Sedan 2012 in the image is a metallic silver color with a sleek, glossy texture, viewed from a three-quarter front angle, set against an indoor showroom environment with soft ambient lighting, featuring distinctive alloy wheels and a prominent front grille. +03267.jpg The Acura RL Sedan 2012 in the image appears in a metallic maroon color viewed from the rear three-quarter angle, featuring sleek lines and chrome accents against a backdrop of a modern glass-panelled building. diff --git a/utils/area/descriptions/Car/generated_descriptions/Acura_TL_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Acura_TL_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..7c6ab2f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Acura_TL_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +05967.jpg A silver Acura TL Sedan 2012 is captured from a front-right angle in a dealership lot, featuring a sleek metallic finish, distinctive angular headlights, and five-spoke alloy wheels, with a showroom building in the background. +06751.jpg The image shows a silver Acura TL Sedan 2012 viewed from a front-left angle, set against a backdrop of modern urban architecture, featuring sleek, aerodynamic contours with prominent grille and alloy wheels. +07175.jpg The 2012 Acura TL Sedan is seen in a glossy white finish with a front three-quarter view showing its sharp grille and angular headlights, parked on a brick driveway adjacent to a car dealership with trees and a road in the background. +01750.jpg The Acura TL Sedan 2012 appears in a metallic silver color with a smooth texture, viewed from a front three-quarter angle, set against a busy parking lot background, featuring distinctively sharp headlamps and a prominent front grille. +05748.jpg In the image, the Acura TL Sedan 2012 is displayed in a silver metallic color with a glossy finish, viewed from the front left angle under sunny conditions, set against a backdrop of a tropical dealership with palm trees and modern architecture, featuring its distinctive angular headlights and prominent front grille design. +02832.jpg The low-resolution image shows a dark gray Acura TL Sedan 2012 with a sleek, glossy finish, viewed from the front left at an auto show, highlighted by its distinctive grille and alloy wheels, against a modern indoor backdrop with red and silver accents. +04588.jpg The image shows a deep brown 2012 Acura TL Sedan from a frontal viewpoint on a sunlit road with grass and trees in the background, featuring a chrome-accented grille and distinctive angular headlights. +06816.jpg A metallic gray Acura TL Sedan 2012 is viewed from a rear three-quarter angle, showcasing its sleek, curving design and dual exhausts, set against a parking lot with distant cars. +07392.jpg The Acura TL Sedan 2012 appears in a glossy black finish with a front three-quarter pose, showcasing its sleek, angular headlights and distinctive grille, set against a stark, industrial concrete wall background. +06784.jpg The Acura TL Sedan 2012 is shown in a metallic gray color with a sleek, modern design viewed from a front three-quarter angle, set against a dark gradient background, highlighting its distinctive grille, sharp headlights, and polished alloy wheels. +05434.jpg The low-resolution image shows a silver Acura TL Sedan 2012 in a rear three-quarter view, parked on a rooftop with a cityscape of high-rise buildings in the background, featuring sharp body lines, dual exhausts, and a distinctively angular tail light design. +02364.jpg The Acura TL Sedan 2012 is captured from a front view, showcasing its sleek white exterior and smooth texture, with distinct chrome accents on the grille, positioned in a driveway bordered by a wooden fence and some greenery. +08133.jpg The 2012 Acura TL Sedan in the image is a sleek black car with a glossy texture, viewed from the front-right angle, set against a forested backdrop under a gradient sky, featuring distinctive angular headlights and a prominent chrome grille. +07663.jpg The image shows a white Acura TL Sedan 2012 with a smooth texture, captured from a front three-quarter angle in front of a Chapman Automotive backdrop, featuring a distinctive angular front grille and sleek alloy wheels. +00002.jpg The Acura TL Sedan 2012 appears in a sleek black color with a polished finish, viewed from a front three-quarter angle, set in a dealership environment with other cars and buildings visible, featuring its distinct angular headlights and bold front grille. +02491.jpg The Acura TL Sedan 2012 appears in a metallic silver color with a smooth texture, viewed from the rear-right angle, set against a clear blue sky and industrial background, featuring distinctive taillights and dual exhausts. +00740.jpg The silver Acura TL Sedan 2012 is captured in a dynamic three-quarter front view, set against a blurred green forest background, highlighting its sleek body lines, prominent grille, and distinct angular headlights. +03871.jpg The white Acura TL Sedan 2012 is shown from a front-three-quarter view, positioned on a gravel path against a backdrop of distant blurred mountains, featuring a sleek body design with a visible angular grille and polished alloy wheels. +05052.jpg The Acura TL Sedan 2012 in a metallic gray finish is viewed from a frontal three-quarter angle, parked on a paved surface with a brick wall and large window panes in the background, featuring distinctive five-spoke alloy wheels and a sleek, smooth body contour. +06328.jpg The silver Acura TL Sedan 2012 is viewed from a front three-quarter angle, set in a suburban street environment with wet pavement, showcasing its sleek body lines and distinctive grille emblem despite the low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions/Acura_TL_Type-S_2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Acura_TL_Type-S_2008_descriptions.txt new file mode 100644 index 0000000..dac4148 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Acura_TL_Type-S_2008_descriptions.txt @@ -0,0 +1,20 @@ +07445.jpg The image shows a front view of a maroon 2008 Acura TL Type-S with a smooth metallic finish, featuring a distinctive chrome grille and emblem, parked on a gravel driveway with a residential street in the background. +04482.jpg A silver Acura TL Type-S 2008 is shown in a three-quarter rear view against a white background, highlighting its smooth metallic finish, dual exhausts, and distinctive taillights. +02240.jpg The image shows a silver Acura TL Type-S 2008 with a sleek, smooth texture, viewed from the side in a scenic outdoor setting with a lush green forest in the background and distinctive dark alloy wheels. +07364.jpg A black Acura TL Type-S 2008 with a glossy finish is viewed from the rear-left angle, parked in a dealership lot with other vehicles and a showroom in the background, showcasing distinct taillights and a rear spoiler. +05979.jpg The Acura TL Type-S 2008 appears in a metallic gray shade with a sleek, polished texture, viewed from a three-quarter front pose inside a bright showroom environment, highlighting its distinctive alloy wheels and angular headlight design. +03243.jpg The image shows a black Acura TL Type-S 2008 with a glossy finish, viewed from the front-right angle on a concrete lot, surrounded by other vehicles, and featuring distinctive five-spoke alloy wheels and a pronounced front grille. +00392.jpg The black Acura TL Type-S 2008 is viewed from a front-side angle, parked on a paved surface with a red brick building in the background, featuring sporty alloy wheels and distinctive front headlights. +06422.jpg The Acura TL Type-S 2008 is captured from a front-side angle in a black glossy finish with polished multi-spoke wheels, situated in a dealership parking lot with another Acura in the background and an "08" marked on the windshield. +00697.jpg The Acura TL Type-S 2008 is shown in a metallic silver color with a shimmering texture, viewed from a front three-quarter angle, parked on a gray asphalt surface with a brick building and large windows in the background, featuring distinctively sharp headlights and a prominent front grille emblem. +06614.jpg The Acura TL Type-S 2008 is shown in a metallic blue color with a glossy texture, viewed from a front-side angle in a parking lot with visible asphalt, displaying its distinctive front grille and black alloy wheels. +06099.jpg The low-resolution image depicts a red Acura TL Type-S 2008 with a glossy finish, viewed from the front-left angle on a wet asphalt road, surrounded by some sparse greenery, featuring distinct chrome wheels and a prominent grille emblem under a cloudy sky. +03241.jpg The Acura TL Type-S 2008 appears in a carbon bronze metallic color with a glossy texture, viewed from a rear three-quarter perspective, set in a sparsely foliaged park environment, featuring dual exhausts, distinct Type-S badging, and dark alloy wheels. +01264.jpg The 2008 Acura TL Type-S in the image is a glossy black sedan with a side-front viewpoint, parked on a concrete surface, with distinctive chrome wheels and a slightly elevated rear, set against an urban backdrop with other parked vehicles. +07752.jpg The Acura TL Type-S 2008, seen in a profile view, features a metallic gray color with a smooth texture, distinctive alloy wheels, and is set against a clean, white studio background. +06145.jpg The black Acura TL Type-S 2008 is captured from a slightly front-right angled viewpoint on a smooth parking area, highlighting its shiny finish, prominent front grille, and distinctive alloy wheels, with a backdrop of greenery and parked cars. +05307.jpg A metallic silver Acura TL Type-S 2008 is seen from the rear view on a paved area, showcasing dual exhausts, a subtle trunk spoiler, and model badging against a blurred verdant forest backdrop. +00920.jpg A metallic blue Acura TL Type-S 2008 with sporty alloy wheels is viewed from the front-left angle, parked on a stone-paved driveway under bright sunlight, with a suburban street and grassy background. +05057.jpg The Acura TL Type-S 2008 is shown in a metallic gray color with a glossy finish, viewed from a front three-quarter angle, parked in a car dealership lot with several other vehicles in the background, featuring its signature front grille and sharp-edged headlights. +03795.jpg The Acura TL Type-S 2008 appears in a sleek black color with a glossy finish, viewed from the front-side angle on a highway with a blur of roadside vegetation and a gray sky, exhibiting distinctive sharp headlights and a prominent grille despite the image's low resolution. +05405.jpg The Acura TL Type-S 2008 appears in a metallic silver color with a sleek, smooth texture, viewed from the side with its distinct multi-spoke alloy wheels against a scenic lakeside backdrop featuring distant mountains and a grassy foreground. diff --git a/utils/area/descriptions/Car/generated_descriptions/Acura_TSX_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Acura_TSX_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..ac23644 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Acura_TSX_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +06183.jpg The 2012 Acura TSX Sedan in the image is a glossy dark gray color with a smooth texture, viewed from a slightly elevated front three-quarter angle, parked on a country road flanked by trees and fields, featuring distinctive sharp headlights and a bold front grille. +03081.jpg The Acura TSX Sedan 2012 appears in a metallic gray color with a sleek, shiny texture, positioned at a three-quarter front view on a gravel surface, featuring distinct chrome grille accents and halogen lights, with a background of industrial buildings. +02670.jpg The Acura TSX Sedan 2012 appears in silver with a smooth metallic texture, viewed from the front driver’s side angle, parked on a plain white background, showcasing its sleek, aerodynamic body lines and distinct five-spoke alloy wheels. +06774.jpg The Acura TSX Sedan 2012 is displayed in a maroon hue with a glossy finish, viewed from a front three-quarter angle, set against a blurred cityscape background near the water, featuring its distinct silver grille and alloy wheels. +07450.jpg The 2012 Acura TSX Sedan appears in a smooth white finish, viewed from a three-quarter front angle on a sunny day, with a grassy park in the background, and features distinctive alloy wheels and sleek body lines. +04338.jpg A low-resolution image features an Acura TSX Sedan 2012 in a clean white color with a glossy finish, viewed from the front-left angle on a grassy area with a road and trees in the background, showcasing its sleek shape, chrome grille, and distinct angular headlights. +06296.jpg The Acura TSX Sedan 2012 appears in a glossy white color with a distinct front view showcasing its sleek headlights and prominent grille, set against an outdoor environment with trees in the background and nearby vehicles. +04470.jpg The Acura TSX Sedan 2012 is shown in a front three-quarter view with a sleek metallic gray exterior, featuring a distinctive chrome grille against a background of lush green trees and a clear sky. +02897.jpg A silver Acura TSX Sedan 2012 is shown from a front three-quarter view in a parking garage with motion blur, featuring distinctive round headlights and a prominent grille. +06388.jpg The Acura TSX Sedan 2012 appears in metallic silver with a smooth texture, viewed from a front-facing angle, set against a blurred mountain landscape, highlighting its distinctive grille and sharp headlights. +00069.jpg The 2012 Acura TSX Sedan is shown in a light metallic silver hue with a smooth texture, captured from a front three-quarter view on a winding mountain road, highlighting its sharp angular headlights, distinctive grille, and sleek silhouette amidst stone and foliage in the background. +03417.jpg A white Acura TSX Sedan 2012 is seen from a three-quarter front-left view, parked on a dealership lot next to a building with an overcast sky; its sleek body has a sunroof, front grille emblem, and distinctive daylight running lights. +02457.jpg The Acura TSX Sedan 2012 is depicted in a metallic silver color with a smooth texture, viewed from the front-left angle on a city road, showcasing its distinctive angular headlights and signature grille, set against a modern urban skyline with glass buildings. +06292.jpg The image shows a silver Acura TSX Sedan 2012 with a sleek, smooth texture viewed from the rear-right corner, set against a plain white background, highlighting its angular taillights and dual exhausts. +06850.jpg The image depicts a light blue Acura TSX Sedan 2012 captured from a front-side angle with a smooth finish, set against an industrial backdrop with urban buildings, showcasing its sleek headlights and distinct front grille design. +06313.jpg The Acura TSX Sedan 2012 in the image is silver with a metallic texture, viewed from a front-side angle, parked in a modern garage with perforated wall panels, featuring distinctive alloy wheels and a pronounced front grille despite the low resolution. +02739.jpg The Acura TSX Sedan 2012, seen from a front-side angle, features a glossy red finish with a sleek body design, set against a blurred, colorful urban backdrop with distinct silver alloy wheels and sharp, angular headlights enhancing its sporty look. +03641.jpg The Acura TSX Sedan 2012 appears in a silver metallic color with a smooth texture, shown from a front three-quarter angle parked on asphalt near a grassy edge, featuring its distinctive grille and angular headlights under a clear sky. +03127.jpg The vehicle is a metallic maroon Acura TSX Sedan 2012, seen from a three-quarter front view, parked on a paved lot with greenery in the background, featuring a distinctive front grille and sleek headlight design. +00151.jpg The Acura TSX Sedan 2012 in the image is viewed from a rear three-quarter angle, featuring a sleek silver finish with a smooth texture, large alloy wheels, and a visible dual exhaust system, set against a neutral gray background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Acura_ZDX_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Acura_ZDX_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..ded3ee2 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Acura_ZDX_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +07769.jpg The Acura ZDX Hatchback 2012 is viewed from the front on a coastal road, featuring a sleek silver exterior with a distinctive sharp front grille and angular headlights, set against a blurred ocean background. +02671.jpg The 2012 Acura ZDX Hatchback appears sleek and futuristic with a metallic silver finish, prominently illuminated by distinctive blue LED lights on the headlights and fog lamps, viewed from a centered front angle against a dark background highlighting its bold grille and angular lines. +01901.jpg The Acura ZDX Hatchback 2012 is silver with a sleek, modern texture, viewed from the front three-quarter angle, set against a striped metallic backdrop, featuring a distinctive sharp front grille and sloping roofline. +04608.jpg A sleek, black Acura ZDX Hatchback 2012 is seen from a front three-quarter angle, featuring a glossy finish, prominent grille, and sculpted headlights, set against a backdrop of modern, warmly-lit architecture. +01706.jpg The Acura ZDX Hatchback 2012 is a sleek, black vehicle with a glossy texture, viewed from a front-side angle, set against a winding road and greenery, featuring distinct sharp angular lines and silver alloy wheels. +07169.jpg The Acura ZDX Hatchback 2012 appears in a sleek silver-grey color with a metallic texture, viewed from a rear three-quarter angle, set against a dark studio-like background, showcasing its distinct coupe-like roofline and prominent wheel arches. +01105.jpg The image shows a silver Acura ZDX Hatchback 2012 from a rear three-quarter view, cruising on a tree-lined road with distinct dark tinted windows and prominent tail lights, set against a lush, green wooded background. +06309.jpg The Acura ZDX Hatchback 2012 is depicted in a snowy background, showcasing its glossy dark gray body and distinct silver grille, viewed from a front three-quarter angle, with visible multi-spoke alloy wheels and sleek, sloping roofline. +06644.jpg The Acura ZDX Hatchback 2012 appears in a metallic silver color with a smooth, sleek finish, viewed from a high angled perspective that highlights its sculpted roofline and distinctive rear slope, set against a minimalistic black background that accentuates its aerodynamic shape and large silver rims. +07061.jpg The Acura ZDX Hatchback 2012 appears in a glossy black color with a sleek, aerodynamic profile, viewed from a side-front angle against a desert-like background, featuring distinctive large alloy wheels and unique, angular front headlights. +04825.jpg The 2012 Acura ZDX Hatchback in the image is a sleek, silver vehicle with a glossy finish, viewed from a side angle on a coastal road, featuring a distinctive sloped roofline and prominent wheel arches against a rocky shoreline backdrop. +05349.jpg The Acura ZDX Hatchback 2012 is silver with a smooth texture, viewed from the front-left angle driving on a road surrounded by a lush forest, featuring a prominent grille and sloped roofline. +00425.jpg The 2012 Acura ZDX Hatchback is seen from a low front-side angle, showcasing its sleek glossy black finish, sharp angular headlights, and distinctive sloping roofline, set against an urban backdrop with metal railings and a building structure. +06518.jpg The Acura ZDX Hatchback 2012 in the image is a light gray vehicle with a sleek, streamlined profile viewed from the driver's side against a plain white background, showcasing its sloping roofline, pronounced wheel arches, and distinctive side windows with a sharply angled rear. +03790.jpg The Acura ZDX Hatchback 2012 is dark-colored with a reflective sheen, viewed from a front three-quarter angle under bright sunlight, highlighting its distinct grille and sloping roofline against a lush, wooded backdrop. +06158.jpg The Acura ZDX Hatchback 2012 is shown in a metallic silver color with a sleek, angular design from a side-front viewpoint, set against a modern, illuminated showroom environment with distinctive Acura branding, highlighting its stylish silhouette and large, multi-spoke wheels. +07833.jpg The Acura ZDX Hatchback 2012 is a silver vehicle with a smooth texture, viewed from the front at a slight angle, set against a cityscape backdrop, featuring a sloped roofline and distinctive angular headlights. +00244.jpg The Acura ZDX Hatchback 2012 in the image is a dark metallic gray with a smooth texture, viewed from a three-quarter front angle, set against a background of lush greenery, featuring a distinctive wide grille and sleek, angular headlights. +03308.jpg The Acura ZDX Hatchback 2012 is a sleek, dark gray vehicle with a smooth, glossy finish, viewed from a three-quarter front angle, parked on grass against a backdrop of leafless trees, characterized by its distinctive sloping roofline and prominent Acura emblem on the front grille. +03316.jpg The Acura ZDX Hatchback 2012 in the image is white with a sleek, smooth texture, viewed from a rear-side angle, parked on a gravel surface beside a road with lush green trees in the background, highlighting its signature sloping roofline and silver alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_V8_Vantage_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_V8_Vantage_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..68a4187 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_V8_Vantage_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +02286.jpg The Aston Martin V8 Vantage Convertible 2012 is shown in a sleek, glossy white color with a front-side angle view, highlighting its signature grille, silver alloy wheels, and red interior accents, set in an indoor showroom environment. +05534.jpg The Aston Martin V8 Vantage Convertible 2012 is shown in a showroom with glossy dark blue paint, a sleek front view showcasing its distinctive grille and headlamps, and is surrounded by a polished black tile floor with bright indoor lighting. +01413.jpg The Aston Martin V8 Vantage Convertible 2012 in the image is presented in a bright yellow finish with a sleek, smooth texture, viewed from a front three-quarter angle in a grassy, rural setting, showcasing its iconic wide grille and distinctive headlamp design. +01852.jpg The Aston Martin V8 Vantage Convertible 2012 in the image is a glossy red with sleek lines, viewed from an elevated front three-quarter angle, set against a checkered ground, featuring distinctive hood vents and an open-top. +00880.jpg The Aston Martin V8 Vantage Convertible 2012, seen from a rear-side angle, features a sleek metallic green finish with a soft black top down, set against a serene backdrop of lush trees and a fading sunset, highlighting its distinctive taillights and chrome details. +02305.jpg The Aston Martin V8 Vantage Convertible 2012 appears in a vibrant green hue with a sleek, glossy finish, viewed from the front-left angle on a smooth road, surrounded by blurred greenery in the background, highlighting its distinct wide grille and stylish alloy wheels. +05567.jpg The Aston Martin V8 Vantage Convertible 2012, viewed from the rear in motion, features a sleek silver finish with smooth contours, set against a coastal roadway and a distant cityscape backdrop. +03379.jpg The Aston Martin V8 Vantage Convertible 2012 is shown in a metallic charcoal gray finish with a prominent front grille and open black soft top, viewed from the front side at dusk against a scenic mountainous landscape. +01283.jpg The green Aston Martin V8 Vantage Convertible 2012 is captured from the front side angle with its roof down, exhibiting its sleek aerodynamic profile against a blurred desert-like background, highlighting its distinctive grille and sporty silhouette. +05821.jpg The Aston Martin V8 Vantage Convertible 2012 in the image is a sleek, metallic silver car viewed from the front-left angle, showcasing its distinctive wide grille and sloping hood, parked on a paved path with lush greenery and trees in the background. +06832.jpg The Aston Martin V8 Vantage Convertible 2012 appears in a vibrant turquoise hue with a glossy texture, viewed in a front-oriented, slightly right-angled pose against a blurred, expansive landscape backdrop, featuring distinctive features such as a low-slung grille, muscular hood contours, and silver alloy wheels. +06002.jpg The Aston Martin V8 Vantage Convertible 2012 is shown from a rear three-quarter perspective, showcasing its sleek black exterior with a glossy finish, prominently featuring its open-top, smooth aerodynamic contours, and distinctive taillights, set against a neutral paved background. +02377.jpg A low-resolution image depicts a bright blue Aston Martin V8 Vantage Convertible 2012 from the side view, parked on a street with brick townhouses and trees in the background, showcasing its sleek body lines and rounded edges. +01186.jpg The Aston Martin V8 Vantage Convertible 2012 appears in a glossy white color with a streamlined body, viewed slightly from the front-right angle, parked on a paved surface beside an open grassy area, with the top down and distinct multi-spoke alloy wheels. +04884.jpg The 2012 Aston Martin V8 Vantage Convertible is shown in a metallic gray color with a sleek, smooth texture, viewed from a three-quarter front angle under a parking structure, with its distinct grille and aerodynamic lines clearly visible against a backdrop of parked cars and glimpses of greenery. +06206.jpg The Aston Martin V8 Vantage Convertible 2012 is viewed from a three-quarter front angle, showcasing its sleek blue body and smooth texture, with a notable black convertible roof and silver multi-spoke wheels, set against an urban street environment featuring a parked truck and road barriers. +04493.jpg A sleek, white Aston Martin V8 Vantage Convertible 2012 with red interior accents is displayed in a well-lit showroom setting, viewed from a front three-quarter angle highlighting its streamlined body, distinctive grille, and multi-spoke alloy wheels. +04942.jpg A white Aston Martin V8 Vantage Convertible 2012 is seen from a front three-quarter view, showcasing its sleek lines and distinctive grille against a suburban street background with another car parked in the distance. +03575.jpg The image shows a rear view of a bright red Aston Martin V8 Vantage Convertible 2012 with a sleek, glossy finish, parked on a black-and-white checkered surface, featuring distinct horizontal taillights and dual exhausts. +02993.jpg The Aston Martin V8 Vantage Convertible 2012 is captured in a low-angle front-side view, exhibiting a glossy metallic blue finish with sleek body lines, against a blurred grassy landscape, highlighting its signature front grille and smooth contours while in motion. diff --git a/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_V8_Vantage_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_V8_Vantage_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..d716521 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_V8_Vantage_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +03732.jpg A white Aston Martin V8 Vantage Coupe 2012 with a sleek, aerodynamic design is captured from a low-angle front perspective on a winding mountain road, highlighting its distinctive front grille and bright landscape in the background. +02194.jpg The Aston Martin V8 Vantage Coupe 2012 is a sleek, white sports car with a glossy finish, viewed from a front three-quarter angle against a serene backdrop of rolling hills and a sunset sky, showcasing its distinctive grille and smooth, aerodynamic curves. +03064.jpg The image shows a rear view of a blue Aston Martin V8 Vantage Coupe 2012 with a glossy finish on a checkered pavement, featuring dual exhausts, sleek tail lights, and surrounded by parked cars in a dealership lot. +06381.jpg A glossy black Aston Martin V8 Vantage Coupe 2012 is seen from a three-quarter front-left view in a dimly lit showroom, featuring sleek curves, a distinctive front grille, and metallic alloy wheels, surrounded by a backdrop of other parked cars and wooden beams. +05694.jpg A sleek black Aston Martin V8 Vantage Coupe 2012 is displayed from a front-side angle against a blurred, glossy backdrop with a focus on the car’s distinct grille, aerodynamic curves, and unique wheel design. +07704.jpg The low-resolution image captures a sleek, metallic gray Aston Martin V8 Vantage Coupe 2012 viewed from the rear three-quarter angle, highlighting its smooth, aerodynamic silhouette, distinctive rear lights, and a backdrop of a plain, neutral setting. +01361.jpg A silver Aston Martin V8 Vantage Coupe 2012 is viewed from the front left angle, showcasing its sleek aerodynamic curves and distinctive grille, set against an industrial concrete interior with geometric pillars. +02577.jpg The Aston Martin V8 Vantage Coupe 2012 is shown in a side profile with a striking metallic orange color, set against a park-like background, highlighting its sleek, aerodynamic lines and distinctive chrome wheels. +04308.jpg The Aston Martin V8 Vantage Coupe 2012 is displayed in metallic blue with a sleek, shiny texture, positioned in a three-quarter front view highlighting its elongated hood, distinctive grille, and sporty stance against a minimal studio background. +03662.jpg The Aston Martin V8 Vantage Coupe 2012 in the image is a vibrant metallic blue with a sleek, aerodynamic silhouette, viewed from a front angle on a textured, light gray road background, showcasing its signature wide grille and distinctive headlights. +04509.jpg The Aston Martin V8 Vantage Coupe 2012 is captured from a frontal viewpoint, showcasing its sleek metallic green finish with a distinctive grille, set against a motion-blurred highway scene with an overpass in the background. +00503.jpg The Aston Martin V8 Vantage Coupe 2012 in the foreground is a sleek, white car with a smooth, shiny texture, viewed from a front-side angle, set in a minimalistic studio environment, featuring distinctive black-rimmed alloy wheels and a prominent front grille. +02058.jpg The Aston Martin V8 Vantage Coupe 2012 appears in a lush green finish with a sleek, aerodynamic silhouette, viewed from a front-side angle against a blurred grassy countryside backdrop, showcasing distinctive features like its wide grille and rounded headlights. +05382.jpg The Aston Martin V8 Vantage Coupe 2012 appears in a vibrant metallic blue with a sleek, aerodynamic shape, photographed from a front three-quarter angle on a clear road against a blurred natural landscape, featuring distinctive alloy wheels and a characteristic front grille. +03828.jpg The Aston Martin V8 Vantage Coupe 2012 is shown in a vibrant red with a glossy finish, captured from a front three-quarter angle against a backdrop of rolling, green vineyards, highlighting its sleek curves, distinctive wide grille, and polished alloy wheels. +04750.jpg The Aston Martin V8 Vantage Coupe 2012 appears in a sleek silver color with a glossy finish, viewed from the front-left angle, showing its distinctive grille and headlights, against the backdrop of a winding road with rocky terrain. +04510.jpg The Aston Martin V8 Vantage Coupe 2012 appears in a vibrant yellow with a smooth, reflective sheen, viewed in profile with sleek lines accentuated by its aerodynamic coupe shape, set against a winding road background with a blurred effect, highlighting its speed and dynamic form. +06921.jpg The Aston Martin V8 Vantage Coupe 2012 appears in a glossy white finish, viewed from a front-side angle, set against a blurred green and brown landscape, showcasing its distinctive wide grille and sleek aerodynamic design. +05306.jpg The Aston Martin V8 Vantage Coupe 2012 is shown in a metallic silver color with a sleek, aerodynamic body, captured from a front three-quarter view emphasizing its low stance and distinctive front grille, set against a minimalist, bright background. +03009.jpg The Aston Martin V8 Vantage Coupe 2012 is shown in a glossy black finish with a sleek, aerodynamic shape and smooth texture, captured from a front three-quarter view on a paved driveway with residential homes in the background, highlighting its distinctive low-profile silhouette and bold alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_Virage_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_Virage_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..3373062 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_Virage_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +08044.jpg The Aston Martin Virage Convertible 2012 in the image is matte dark gray with a sleek texture, viewed from a front-side angle, showcased in a well-lit indoor showroom, featuring striking black and silver wheels and contrasting yellow headrests. +06675.jpg The Aston Martin Virage Convertible 2012 appears in a sleek silver finish with a black soft top, viewed from a rear three-quarter angle, parked on a textured cobblestone surface in front of a grand, historic building with arched windows. +05143.jpg The Aston Martin Virage Convertible 2012 is presented in a sleek metallic silver with a smooth, reflective texture, captured from a rear three-quarter view against a blurred mountainous landscape, featuring distinctive taillights and dual exhausts accentuating its elegant design. +06239.jpg The Aston Martin Virage Convertible 2012 appears in a sleek silver color with a glossy finish, viewed from a front three-quarter angle, set against a dark showroom background, showcasing its distinctive grille and streamlined contours despite the low resolution. +06771.jpg The Aston Martin Virage Convertible 2012 in the image is a sleek silver car with a smooth texture, viewed from the front-left angle, set against a park-like background with lush greenery, characterized by its open top, distinctive front grille, and stylish alloy wheels. +05366.jpg The Aston Martin Virage Convertible 2012 is shown in a front view, metallic silver with a sleek, streamlined texture, driving on a mountain road with rocky terrain in the background, featuring its iconic grille and distinctive headlamp design. +05718.jpg The Aston Martin Virage Convertible 2012, shown in a sleek metallic silver with a smooth texture, is captured from a rear three-quarter viewpoint in a studio-like setting, highlighting its distinctively sculpted rear fenders, dual exhausts, and elegant alloy wheels. +00292.jpg The low-resolution image depicts a silver Aston Martin Virage Convertible 2012 viewed from the side with its hood down, set against a blurred natural background of grass and distant trees, showcasing its sleek profile and iconic grille. +03854.jpg The Aston Martin Virage Convertible 2012 in the image appears in a sleek silver color with a glossy finish, captured from a low front angle emphasizing its aerodynamic grille and smooth contours, set against a dramatic overcast sky on a winding mountain road. +07386.jpg The Aston Martin Virage Convertible 2012 is depicted in a sleek metallic gray with a glossy finish, viewed at a three-quarter front angle, parked in front of a red brick building with green accents, showcasing its distinctive wide grille, sharp headlights, and large alloy wheels. +01678.jpg The Aston Martin Virage Convertible 2012 is silver with a sleek, smooth texture, viewed from a rear-side angle showing its soft black convertible top, parked on an urban street with modern buildings in the background, and features distinctive taillights, a chrome exhaust, and stylish alloy wheels. +02326.jpg The Aston Martin Virage Convertible 2012 is shown in a dynamic side view with a sleek, metallic silver finish and flowing design lines, complemented by its distinctive front grille and red interior, set against a blurred outdoor background suggesting speed and motion. +06906.jpg The Aston Martin Virage Convertible 2012 is depicted in a low-resolution image featuring a sleek silver body with a glossy finish, captured from a front-side angle against a mountainous backdrop, highlighting its aerodynamic design and distinctive grille with the top down. +02484.jpg The Aston Martin Virage Convertible 2012 is depicted in a dynamic front-side view with a sleek silver finish, smooth texture, and distinctive grill design, set against a blurred road and rocky landscape. +03101.jpg A silver Aston Martin Virage Convertible 2012 is depicted from a front-side angle on a winding road, showcasing its sleek curves, distinctive grille, and the open top, with a blurred natural landscape in the background. +08085.jpg The Aston Martin Virage Convertible 2012 in the image is a matte dark gray vehicle viewed from a front three-quarter angle in an indoor showroom with a sleek design, distinctive front grille, yellow-accented interior, and contrasting black wheels. +01786.jpg The image shows a front view of a matte dark blue Aston Martin Virage Convertible 2012 with a prominent grille, sleek headlights, and bright yellow interior accents, displayed in a modern showroom with reflective white flooring. +00221.jpg The Aston Martin Virage Convertible 2012 is depicted in a glossy white finish with red interior accents, shown from a front three-quarter view on a showroom floor, featuring its distinctively sleek headlights, wide grille, and polished multispoke wheels amidst a backdrop of people and other cars. +01148.jpg The Aston Martin Virage Convertible 2012 in the image is presented in a sleek metallic gray color with smooth, glossy bodywork, viewed from a side angle on a roadway with a grassy background, showcasing its streamlined profile, open top, and distinctive alloy wheels. +06453.jpg The Aston Martin Virage Convertible 2012 in the image is a sleek metallic silver with a smooth sheen, seen from a slightly angled front view, highlighting its distinctive grille and elegant headlights, set against a plain white background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_Virage_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_Virage_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..a3253d9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Aston_Martin_Virage_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +01581.jpg The Aston Martin Virage Coupe 2012 is shown in vivid orange with a glossy finish, viewed from a front three-quarter angle, displayed indoors with a crowd in the background, featuring its sleek design, prominent grille, and distinct hood vents. +04611.jpg The car is a metallic orange Aston Martin Virage Coupe 2012, viewed from the side on a desert road with mountainous terrain in the background, highlighting its sleek profile and distinctive alloy wheels. +02921.jpg The Aston Martin Virage Coupe 2012 appears in a metallic bronze color with a sleek, sculpted body, captured from a front three-quarter view highlighting its iconic grille and sharp headlights, set against a dark, studio-like background that emphasizes its elegant design. +05624.jpg The low-resolution image shows a front three-quarter view of an orange Aston Martin Virage Coupe 2012 with a glossy finish, visible vent details on the hood, displayed in an indoor showroom with other luxury cars and people in the background. +01124.jpg A sleek silver Aston Martin Virage Coupe 2012 is shown in a side profile view with distinctive aerodynamic lines, parked indoors against a plain white wall and adjacent to a glass door, featuring large alloy wheels with yellow brake calipers. +03905.jpg The Aston Martin Virage Coupe 2012 is displayed in a vivid orange hue with a sleek, glossy texture, viewed straight from the front against a backdrop of red brick architecture, showcasing its iconic grille and elongated hood. +03458.jpg The Aston Martin Virage Coupe 2012 appears in a sleek metallic bronze finish with a smooth texture, viewed from the rear three-quarter angle, set against a blurred architectural cityscape, featuring signature taillights and dual exhausts as distinguishing elements. +03766.jpg The Aston Martin Virage Coupe 2012 is captured from a rear three-quarter view, showcasing its vibrant orange color with a sleek, glossy finish, set against an indoor showroom environment with overhead lighting and a crowd in the background, highlighting its streamlined tail lights and dual exhausts. +04857.jpg The Aston Martin Virage Coupe 2012 in a metallic orange hue is viewed from a low rear angle, showcasing its sleek, aerodynamic silhouette and twin exhausts against a rustic stone wall background. +00206.jpg The Aston Martin Virage Coupe 2012 is captured in a three-quarter front view, showcasing its metallic orange hue and sleek, aerodynamic silhouette, set against a scenic landscape of rolling hills and trees under a clear sky, with its iconic grille and silver wheel rims visible despite the low resolution. +04292.jpg The 2012 Aston Martin Virage Coupe in bright orange with a glossy finish is captured from a front three-quarter view, cruising along a countryside road with rocky hills and green fields in the background, featuring its sleek aerodynamic design and distinctive grille. +06529.jpg The Aston Martin Virage Coupe 2012 is a metallic orange sports car with sleek body lines, viewed from a front three-quarter angle, featuring distinctive grille and headlight designs, set against a smooth gradient studio background. +07048.jpg The Aston Martin Virage Coupe 2012 is captured in a rear three-quarter view on a desert highway, showcasing its metallic orange color and sleek, aerodynamic lines, with distinctive taillights and dual exhaust visible; the background reveals arid, mountainous terrain under a clear sky. +03882.jpg The Aston Martin Virage Coupe 2012 in the image is showcased in a metallic bronze hue with a sleek, aerodynamic side profile against a plain, light gray background highlighting its smooth contours, elongated bonnet, and signature alloy wheels. +03844.jpg The 2012 Aston Martin Virage Coupe is shown in a vibrant metallic orange color with a sleek, aerodynamic design, captured from a front-side angle against a mountainous backdrop, featuring its distinctive wide grille, sharp headlamps, and alloy wheels. +03184.jpg The Aston Martin Virage Coupe 2012 is seen in a dynamic side profile racing through a blurred desert landscape, displaying a sleek metallic orange hue with refined contours, distinctive alloy wheels, and a graceful aerodynamic silhouette. +03502.jpg The Aston Martin Virage Coupe 2012 appears in a vibrant metallic orange with a sleek, aerodynamic profile, viewed from a rear-side angle against a mountainous backdrop, featuring its signature silver alloy wheels and sharp rear light design. +01767.jpg The Aston Martin Virage Coupe 2012 in the image is metallic bronze, viewed from the side in motion with a smooth and sleek contour on an open road, set against a blurred mountainous desert backdrop. +01578.jpg The Aston Martin Virage Coupe 2012 is depicted in a sleek silver-gray with a smooth metallic texture, shown from a rear three-quarter view, parked on a concrete surface against a backdrop of rustic brick and glass buildings, and features distinctive dual exhausts and stylish alloy wheels. +03208.jpg The Aston Martin Virage Coupe 2012 is captured from a rear three-quarter view, showcasing its sleek, burnt orange metallic finish with a glossy texture, rolling on a deserted road against a mountainous landscape, highlighting its aerodynamic design and distinctive taillights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_100_Sedan_1994_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_100_Sedan_1994_descriptions.txt new file mode 100644 index 0000000..3c8b579 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_100_Sedan_1994_descriptions.txt @@ -0,0 +1,20 @@ +02770.jpg The image depicts a red Audi 100 Sedan 1994 viewed from the front three-quarter angle, situated on a roadside with a scenic backdrop of distant rolling hills and a partially visible building, featuring its characteristic angular body lines and chrome accents. +02176.jpg The Audi 100 Sedan 1994, depicted in a low-resolution grayscale image, features a smooth, shiny surface with a light color, captured from a three-quarters front perspective in a serene natural setting with trees and water, displaying its distinctive boxy shape and classic Audi grille despite the pixelation. +07774.jpg The low-resolution image shows a silver Audi 100 Sedan 1994 with a front-side view, highlighting its clean lines, wide grille, distinctive four-ring emblem, alloy wheels, and set against an urban backdrop with a modern building facade. +00266.jpg A dark-colored Audi 100 Sedan 1994 is shown from a side-front angle on a flat, gravelly surface, featuring distinct angular lines, a subtle chrome trim on the body, and classic five-spoke wheels, set against a clear, minimal background. +05181.jpg The Audi 100 Sedan 1994 is a dark gray car with a smooth, metallic finish, viewed from a slight front-left angle with distinct boxy headlights and a simple grille, set against a minimal background of clear blue sky and gravelly ground. +06224.jpg The Audi 100 Sedan 1994 is seen from a rear three-quarter view, showcasing its light beige color with a smooth texture, distinct red taillights, and set against a suburban street with greenery and houses in the background. +08144.jpg The low-resolution image depicts a white Audi 100 Sedan 1994, viewed primarily from the front-left angle, with a smooth body texture, characterized by its distinct angular headlamps and prominent grille, set against a dark, open road background. +01782.jpg The Audi 100 Sedan 1994 is seen from a front-side angle in a dark blue color with a reflective, glossy texture, displaying its iconic grille and rounded headlights against a modern urban background with a glass building. +01072.jpg The Audi 100 Sedan 1994 appears in a teal color with a slightly worn texture, viewed from a front diagonal angle in a parking lot with visible worn tarmac, featuring distinct features like its rectangular grille and aerodynamic headlight design. +04549.jpg The image shows a white Audi 100 Sedan 1994 from a three-quarter front view against a clear sky background, featuring smooth body lines and round headlights with a distinct grille and side mirrors, parked on a light gravel surface. +04758.jpg The Audi 100 Sedan 1994 appears in a side view with a clean white exterior, sitting on a snowy suburban street with leafless trees and modern houses in the background, featuring distinctive black trim and alloy wheels. +04447.jpg The Audi 100 Sedan 1994 appears in an off-white color with a smooth texture, viewed from a low angle showcasing its side profile against a reflective glass building, with distinct black trim and multi-spoke alloy wheels. +04639.jpg The image shows a dark-colored Audi 100 Sedan 1994 with a glossy texture, viewed from a front-side angle, parked in a cobblestone area with a classic, ornate building in the background, featuring distinct rectangular headlights and alloy wheels. +07693.jpg The image shows a dark-colored Audi 100 Sedan 1994 from a three-quarter frontal view, set against a blurred forest background, with distinctive features like its rounded headlights and defined grill visible. +05177.jpg The Audi 100 Sedan 1994 is depicted in a black color with a glossy texture, positioned in a three-quarter front view against a barren, hilly landscape, with distinct round headlights, smooth body lines, and the iconic four-ringed grille emblem prominently displayed. +06947.jpg The Audi 100 Sedan 1994 appears in a white color with a smooth finish, viewed from a front three-quarter angle against a plain, dark background, featuring distinctive circular wheel covers and a prominent four-ring emblem on the grille. +08043.jpg The Audi 100 Sedan 1994 is depicted in silver with a smooth metallic finish, seen from a front-side angle parked on a paved surface in front of columned stone structures, featuring distinct alloy wheels and black trim around the windows. +05464.jpg The 1994 Audi 100 Sedan appears in a bright red color with a smooth texture, viewed from a front-side angle against a clear sky background, showcasing its distinct rectangular grille and alloy wheels. +08010.jpg A light silver Audi 100 Sedan 1994 is positioned in a three-quarter front view on a gravel surface, featuring distinct black trim and a clear blue-grey sky in the background. +00865.jpg The silver Audi 100 Sedan 1994 is viewed from a front three-quarter angle, showcasing its classic boxy design with distinctive black trim on a gravel surface against a clear blue sky. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_100_Wagon_1994_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_100_Wagon_1994_descriptions.txt new file mode 100644 index 0000000..416278f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_100_Wagon_1994_descriptions.txt @@ -0,0 +1,20 @@ +05787.jpg The 1994 Audi 100 Wagon, viewed from a rear side angle, appears silver with a smooth finish, featuring distinct angular lines, a prominent rear window, and it's set against a minimalistic, open roadside background. +03439.jpg The Audi 100 Wagon 1994 is captured in a side profile showcasing its elongated, streamlined body in a dark, metallic hue against a stark, open landscape, highlighting its distinctive roofline and classic alloy wheels. +06873.jpg The Audi 100 Wagon 1994 is captured from a side view in motion, displaying a metallic silver color with a smooth finish, distinct rectangular headlights, and black trim, set against a blurred urban backdrop. +07493.jpg The Audi 100 Wagon 1994 is seen in a low-resolution image displaying a red, slightly glossy finish, captured from a front-side angle with trees and a building in the background, featuring distinctive rectangular headlights and alloy wheels. +04744.jpg A silver Audi 100 Wagon 1994 is shown in a side profile view against a brick wall, displaying its elongated body with distinct dark-tinted windows and classic alloy wheels. +07384.jpg The image shows a side view of a dark-colored Audi 100 Wagon 1994 with a sleek, elongated body and distinctively styled wheel rims, set against a subdued urban background with concrete elements. +00780.jpg The low-resolution image shows a silver 1994 Audi 100 Wagon viewed from the side, with a sleek and elongated silhouette, parked on a gravel surface against a backdrop of open sky and distant houses, featuring its distinctive long roofline and tinted windows. +07028.jpg A dark-colored Audi wagon with a glossy finish is viewed from a slight frontal angle, sitting on grass with a backdrop of autumn trees, featuring distinct silver rims and a roof rack. +04176.jpg The red Audi 100 Wagon 1994 is captured in a side view amidst a coastal road environment, showcasing its elongated body, distinct rear spoiler, and characteristic angular design. +06664.jpg The red Audi 100 Wagon 1994 in the image is viewed from the side, showcasing its glossy finish and chrome wheels, parked on a residential street with trees and houses in the background. +01609.jpg The image shows a silver Audi 100 Wagon 1994 viewed from a front three-quarter angle, parked on a muddy ground with a forested background, featuring a distinctive front grille with the Audi logo and a clean, smooth body texture. +00471.jpg The silver Audi 100 Wagon from a front-side angle features smooth, reflective paint under overcast lighting, with distinct rectangular headlights and a visible Audi emblem on the grille, set in a parking lot with other vehicles blurred in the background. +00083.jpg The image shows a dark-colored Audi 100 Wagon 1994 parked on a driveway, viewed from a rear three-quarter angle with a light residential house and landscaped yard in the background, featuring distinctive red tail lights and roof rails. +06291.jpg The Audi 100 Wagon 1994 is dark green with a glossy texture, viewed from a three-quarters front angle in a parking lot setting, featuring silver alloy wheels and clear side and rear windows, amidst a backdrop of trees and other parked cars. +05271.jpg The dark-colored Audi 100 Wagon 1994 is viewed from the side on a sunlit, tile-paved surface with a low hedge and wall in the background, featuring sleek, rounded contours and distinct alloy wheels. +03435.jpg The Audi 100 Wagon 1994 is viewed from a front-side angle, showcasing a beige body with smooth texture, positioned on a street bordering a brick wall and parked cars, featuring distinct rectangular headlights and a classic grille emblem. +06610.jpg The image shows a silver Audi 100 Wagon 1994 with a smooth texture, viewed from the front three-quarter angle, set against a grassy outdoor background, featuring distinctive square headlights and chrome accents. +01700.jpg The Audi 100 Wagon 1994 is seen from a front-side angle in a dull green color with a smooth texture, set against a parking lot with other cars, featuring rectangular headlights and a distinct chrome grille emblem. +02171.jpg The Audi 100 Wagon 1994 appears in a dark-colored, likely black, finish with a slightly dull texture, positioned in a three-quarter front view on a grassy lawn, displaying its station wagon shape and rear roof spoiler, with a secondary vehicle and houses in the background. +02292.jpg The image shows a dark blue Audi 100 Wagon 1994 from a rear three-quarter view parked in a garage, featuring its distinct boxy shape, large rear window, and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_A5_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_A5_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..4c23937 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_A5_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +00549.jpg The image shows a white Audi A5 Coupe 2012 with a sleek, smooth texture, viewed from the front-right angle in a dimly lit underground garage, featuring distinctive LED headlights and a prominent front grille with the Audi emblem. +00548.jpg A white Audi A5 Coupe 2012 is positioned in a parking lot with a building backdrop, viewed from the front-left angle, showcasing its sleek design, distinctive LED headlights, alloy wheels, and a smooth, shiny texture. +01755.jpg The image shows a silver Audi A5 Coupe 2012 from a front three-quarter viewpoint, highlighting its sleek body lines, distinct LED headlights, large alloy wheels, and a plain white background that contrasts its metallic finish. +08027.jpg The Audi A5 Coupe 2012 in the image appears in a sleek, dark metallic color with a smooth texture, viewed from a front three-quarter angle, set against a cloudy urban skyline, highlighting its signature grille, LED headlights, and large alloy wheels. +00041.jpg The Audi A5 Coupe 2012 is seen from a front viewpoint, showcasing its sleek black exterior with distinct LED headlights, against a backdrop of a grey brick wall and a parking lot filled with cars. +02899.jpg The Audi A5 Coupe 2012 appears in a glossy silver finish with a sleek and streamlined coupe profile, viewed from a front-left angle against a plain gray background, showcasing its distinctive front grille and sharp headlight design. +01346.jpg The Audi A5 Coupe 2012 is shown in a dark blue color with a glossy finish, viewed from a front three-quarter angle on a wet asphalt surface against an overcast sky and retail building background, featuring distinctive front grille and silver alloy wheels. +02674.jpg The Audi A5 Coupe 2012 appears in a sleek silver color with smooth contours, viewed from a rear three-quarter angle showcasing its dynamic lines and sporty design, set against a simple dark background that accentuates its aerodynamic profile and prominent taillights. +06450.jpg The white Audi A5 Coupe 2012, viewed from the front-left angle, is elevated on a platform with visible five-spoke alloy wheels, set against an urban backdrop with hillside homes. +03313.jpg The image shows a white Audi A5 Coupe 2012, viewed from the front right angle, parked on a tiled showroom floor, with distinctive silver rims and an orange stripe on a white wall in the background featuring the text "northtownauto" above. +05083.jpg The Audi A5 Coupe 2012 in the image is a red car with a sleek, shiny finish, shown in a three-quarter front view with its distinctive grille and alloy wheels visible, positioned against a modern urban backdrop of glass-paneled buildings. +00128.jpg The image shows a low-resolution front view of a silver Audi A5 Coupe 2012 with a smooth metallic finish, distinct hexagonal grille, and iconic four-ring emblem, set against a plain white background. +02431.jpg The Audi A5 Coupe 2012 is shown in a dark blue color with a glossy finish, viewed from the rear three-quarter angle, featuring a sleek silhouette, silver alloy wheels, LED taillights, and set against a plain white background. +05315.jpg The Audi A5 Coupe 2012, in a metallic silver-gray color with a sleek and smooth texture, is captured from a front-side angle moving swiftly, set against a blurred, tree-lined road backdrop, highlighting its distinct LED headlights and iconic grille. +07572.jpg The Audi A5 Coupe 2012 is shown in a sleek silver color with a smooth texture, captured from a side view highlighting its aerodynamic silhouette and distinctive alloy wheels, set against a blurred outdoor backdrop. +02641.jpg A shiny black Audi A5 Coupe 2012 is seen from a front perspective against a white backdrop with a checkered floor, featuring a distinct large hexagonal grille and sleek headlights. +05587.jpg The Audi A5 Coupe 2012 is a sleek metallic gray car viewed from the rear three-quarter angle, exhibiting a gently curving roofline against a backdrop of trees and vineyards, with distinctive taillights and dual exhausts accentuating its sporty design. +05063.jpg The car is a front-facing, sleek white Audi A5 Coupe 2012 with a glossy finish, featuring a prominent Audi grille, distinct LED headlights, and a plain two-tone background split horizontally. +01944.jpg A light metallic gray Audi A5 Coupe 2012 is viewed from a side angle in an indoor showroom with large windows, featuring its distinctive sleek body and prominent five-spoke alloy wheels. +04918.jpg The Audi A5 Coupe 2012 is presented in a sleek silver color with a smooth texture, viewed from a three-quarter front angle, set against a modern, minimalist backdrop of a light gray wall, featuring distinctive angular headlights and prominent Audi badging on its front grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_R8_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_R8_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..56c4294 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_R8_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +05138.jpg The Audi R8 Coupe 2012 in the image is a sleek, silver sports car with a glossy finish, viewed from a front-angled pose, set in an industrial environment, featuring distinctive daytime running lights and prominent air intakes. +03283.jpg The Audi R8 Coupe 2012 in the image is a sleek, black vehicle with a glossy finish, displayed in a showroom setting and viewed from a rear three-quarter angle, highlighting its distinctive LED taillights, dual exhaust outlets, and iconic sideblade design. +01589.jpg The white 2012 Audi R8 Coupe, seen in a three-quarter rear view, showcases its signature side blade in black and twin exhausts, parked on a tarmac surface with a backdrop of leafless trees and a grassy area. +00053.jpg The Audi R8 Coupe 2012 is viewed from a rear three-quarter angle, showcasing its metallic orange color with contrasting black side blades, set in a busy parking lot environment with a shopping center in the background. +01877.jpg A deep blue Audi R8 Coupe 2012 with a sleek, glossy texture is viewed from the front-left angle, showcasing its signature silver side blades and large alloy wheels, parked in a bright showroom with a white interior and another car visible in the background. +04956.jpg The Audi R8 Coupe 2012 is a sleek black sports car with a glossy finish, shown from a front-left three-quarter view, highlighted by its distinctive LED headlights, red brake calipers, and set against a modern building with glass and metallic elements. +07646.jpg The Audi R8 Coupe 2012 features a sleek blue exterior with a metallic texture, viewed from a rear three-quarter angle, showcasing its open rear and side doors against a plain white background, with visible silver side blades and intricate wheel design. +03755.jpg The Audi R8 Coupe 2012 is captured from a rear-side angle, highlighting its sleek silver body with black side blades and LED taillights, cruising down a deserted desert highway with expansive, blurred mountain backdrops at dusk. +04839.jpg The red Audi R8 Coupe 2012 is shown from a low rear viewpoint, emphasizing its sleek taillight design and dual exhausts, against a rocky mountainous background. +01450.jpg The Audi R8 Coupe 2012 in the image is a sleek, metallic silver with a glossy finish, viewed from a low angle showcasing its aerodynamic curves and distinctive side blades, set against a modern, reflective architectural background. +07103.jpg The image shows a white Audi R8 Coupe 2012 with a sleek, aerodynamic design, viewed from the side in front of a modern architectural structure, featuring distinct silver side blades and large alloy wheels, set against a grassy foreground. +04241.jpg The Audi R8 Coupe 2012 appears in a sleek white color with a glossy texture, viewed from a front-side angle on a blurred road background, displaying its distinctive black side blade and iconic Audi grille. +06208.jpg The Audi R8 Coupe 2012 is shown from the front with a sleek white body, distinctive LED headlights, and a glossy texture, set against an indoor showroom environment with subtle lighting and reflective surfaces. +03969.jpg The Audi R8 Coupe 2012 is viewed head-on with a glossy black finish and distinctive LED headlights, set against a blurred, natural backdrop of greenery, exhibiting a sleek, low-slung profile with its iconic grille and number plate visible. +04456.jpg The Audi R8 Coupe 2012 is shown in a sleek white color with a smooth, glossy texture, viewed from a side angle against a modern urban backdrop of glass-covered buildings, with its distinctive silver side blades and sporty alloy wheels prominently visible. +05280.jpg The Audi R8 Coupe 2012 in the image is a glossy blue sports car seen from a three-quarter front view, positioned indoors on a polished showroom floor with large glass windows and metallic silver side blades, complemented by distinctive LED headlights and an iconic Audi grille. +00289.jpg The Audi R8 Coupe 2012 appears in glossy white with contrasting silver side blades, viewed from a front-side angle against a desert backdrop at sunset, highlighting its low-slung profile and distinctive LED headlight design. +00686.jpg The Audi R8 Coupe 2012 in the image is a sleek red sports car with a glossy finish, viewed from the rear-left three-quarters angle, featuring distinct dark side accents, set against a blurred outdoor background suggestive of motion on a road. +03909.jpg A low-resolution image shows a sleek white Audi R8 Coupe 2012 from a front three-quarter angle, emphasizing its smooth, glossy finish with distinct black accents on the grille and wheels, set against a modern glass building backdrop. +07727.jpg A black Audi R8 Coupe 2012 is captured from a front-side angle, parked on a street with light fog in the background, featuring distinctive LED headlights and a prominent grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_RS_4_Convertible_2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_RS_4_Convertible_2008_descriptions.txt new file mode 100644 index 0000000..47bee8e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_RS_4_Convertible_2008_descriptions.txt @@ -0,0 +1,20 @@ +05263.jpg The vivid blue Audi RS 4 Convertible 2008 is viewed from a high front angle, showcasing its sleek chrome grille and silver alloy wheels against a textured gray surface. +07008.jpg The Audi RS 4 Convertible 2008 is depicted in a striking metallic blue color with a black interior, viewed from the front-left angle with the top down, nestled in a rugged, rocky landscape background, highlighting its distinct silver wheels and iconic front grille with RS badging. +04497.jpg The bright blue Audi RS 4 Convertible 2008 is captured from a dynamic front-left angle with the top down, set against a blurred, green woodland backdrop, highlighting its distinctive grille and sleek, sporty design. +02873.jpg The Audi RS 4 Convertible 2008 appears in sleek, glossy black with distinct rear taillights and quad exhausts, viewed from a rear 3/4 angle on a winding road with a blurred desert landscape in the background. +03167.jpg The dark blue Audi RS 4 Convertible 2008 is viewed from a front-side angle with the top down, showcasing its signature grille and five-spoke alloy wheels, set against a park-like environment with grass and trees in the background. +06020.jpg The image showcases a front three-quarter view of a silver Audi RS 4 Convertible 2008 with a sleek, smooth metallic texture, set in an indoor showroom environment with distinctive Audi branding in the background and featuring the car's sporty alloy wheels and lowered convertible roof. +01313.jpg The Audi RS 4 Convertible 2008 is shown in a metallic blue finish with a sleek texture, captured from a front-side angle as it speeds along a blurred highway backdrop, featuring prominent Audi rings on the grille and stylish silver wheels amidst an open-top design. +06515.jpg The image shows a glossy black 2008 Audi RS 4 Convertible viewed from the side in a dealership setting with large glass windows and green foliage in the background, featuring a black convertible roof and distinct silver alloy wheels. +01640.jpg The 2008 Audi RS 4 Convertible is presented in a glossy black finish, viewed from the side against a gradient black-to-white background, highlighting its sleek silhouette with the soft top down, pronounced wheel arches, and distinct alloy wheels. +06904.jpg A black Audi RS 4 Convertible 2008 model car is shown from a three-quarter front view, displaying its shiny finish, open roof with white interior seats, classic Audi grille, and sporty alloy wheels, set against a plain white studio background. +08086.jpg The rear view of the black Audi RS 4 Convertible 2008 showcases its sleek design with a light interior, distinctive taillights, dual exhausts, and it's set against a blurred, dynamic road background suggesting high-speed movement. +00201.jpg The Audi RS 4 Convertible 2008 is shown in a glossy black finish with a top-down pose, revealing vibrant red interior seats, parked on a driveway surrounded by green grass and trees, featuring its distinctive large grille and alloy wheels. +02885.jpg The Audi RS 4 Convertible 2008 is painted in a vibrant yellow with a smooth finish, shown from a front-side angle, driving along a coastal road with a scenic ocean and mountain backdrop, with distinctive features like its open-top design, signature Audi grille, and sporty alloy wheels. +07206.jpg The image shows a silver Audi RS 4 Convertible 2008 viewed from the side with an open black convertible top, set in a showroom environment with a Lamborghini Houston sign in the background. +00690.jpg The Audi RS 4 Convertible 2008 is shown in a glossy black finish with a front-facing view, captured on a winding mountain road, highlighting its aggressive front grille, sleek silhouette, and distinctive silver side mirrors. +07241.jpg The Audi RS 4 Convertible 2008 is shown in a vibrant yellow with a black soft top, viewed from a rear side angle, set against a serene coastal backdrop, highlighting its sleek, sporty silhouette and distinctive rear dual exhaust. +04818.jpg The yellow Audi RS 4 Convertible 2008 is photographed in a side-front view near a harbor with yachts, showcasing its silver alloy wheels, black open-top roof, and distinct honeycomb grille. +06859.jpg The Audi RS 4 Convertible 2008 is shown in a glossy black finish with a low-angled front-side view, parked on a grassy field with a wooded background, featuring a distinctive front grille and sporty alloy wheels. +06708.jpg The Audi RS 4 Convertible 2008 is a vivid blue convertible with a front-side view, featuring distinctive silver alloy wheels and a light-colored interior, set against a sunny coastal background with a clear blue sea and sky. +05002.jpg The Audi RS 4 Convertible 2008 is shown in a glossy black finish with a frontal left-side angle emphasizing its muscular wheel arches and chrome alloy wheels, set against a plain white background, highlighting its sleek silhouette and open-top design. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_S4_Sedan_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_S4_Sedan_2007_descriptions.txt new file mode 100644 index 0000000..fff8c46 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_S4_Sedan_2007_descriptions.txt @@ -0,0 +1,20 @@ +01073.jpg The Audi S4 Sedan 2007 is shown in a three-quarter front view, featuring a metallic gray color with glossy texture, silver alloy wheels, and distinct front grille, set against a plain asphalt background. +00159.jpg The Audi S4 Sedan 2007 is displayed from a front-side angle, showcasing its sleek black exterior with a glossy finish under a cloudy sky, set against a backdrop featuring an Audi dealership with a showroom logo, characterized by its prominent silver alloy wheels and distinctive Audi grille. +07938.jpg The Audi S4 Sedan 2007 is visible from a front-left angle and features a metallic blue color with sleek lines, recognizable silver grille, and distinctive alloy wheels, set against a rocky coastal backdrop with a pier in the distance. +04480.jpg The Audi S4 Sedan 2007 is seen in a low-resolution image from a slight front-side angle, showcasing its metallic white exterior with a smooth polished texture, distinctive large chrome grille, sporty alloy wheels, and is set against a backdrop of desert landscaping with sparse trees and a light building. +07562.jpg The image shows a blue Audi S4 Sedan 2007 viewed from the front-left angle, parked in front of a brick building with large windows, featuring distinctive chrome grille and alloy wheels. +03087.jpg The Audi S4 Sedan 2007 in the image is white with a slight dusting of dirt on its smooth surface, viewed from a low rear angle showcasing dual exhaust pipes, parked on snow with a backdrop of leafless trees and utility poles. +03269.jpg The Audi S4 Sedan 2007 appears in a metallic silver color with a smooth texture, viewed from the front-left angle in a lot with a dealership sign behind, featuring prominent five-spoke alloy wheels and distinctive Audi front grille. +03886.jpg The Audi S4 Sedan 2007 in the image is a vibrant blue with a glossy texture, photographed from the front-left angle in front of a car dealership, and features distinctive silver alloy wheels and the prominent Audi grille badge. +00446.jpg The Audi S4 Sedan 2007 appears in a vibrant red color with a glossy texture, viewed from a front-side angle with the distinctive Audi grille and badge visible, set against a blurred road and sky background indicating motion. +02680.jpg The image shows the front view of a blue Audi S4 Sedan 2007 with a glossy metallic finish, distinctive chrome grille with the Audi emblem, and detailed headlight design, set against a background of an indoor car show with other vehicles and a person partially visible. +03119.jpg The yellow Audi S4 Sedan 2007 is viewed from a front-side angle, showcasing its smooth body, distinctive silver side mirror, and sporty alloy wheels, parked on a lakeside road with greenery in the background. +06565.jpg A vibrant red Audi S4 Sedan 2007 is viewed from an eye-level front three-quarter angle, parked at a race track with a backdrop of red and white stadium seating, showcasing its distinctive black grille and signature quad circle logo. +06852.jpg The Audi S4 Sedan 2007 appears in a metallic silver color with distinctive alloy wheels, viewed from a front-side angle set against a rural backdrop of grassy fields and an overcast sky. +05688.jpg The Audi S4 Sedan 2007 is a vivid blue, glossy car viewed from a front three-quarter angle, displayed in a manicured garden setting, with distinct sporty alloy wheels and characteristic front grille elements visible. +08053.jpg The Audi S4 Sedan 2007 in the image appears silver with a smooth metallic texture, viewed from a low front-side angle, against a simple gradient sky background, showcasing its distinct large front grille, quad exhaust, and sporty alloy wheels. +02165.jpg The 2007 Audi S4 Sedan appears in a glossy black finish with a front three-quarter view highlighting its prominent grille, silver alloy wheels, and distinctive S4 badging, set against a showroom environment with other vehicles in the background. +07258.jpg The 2007 Audi S4 Sedan appears in a glossy black finish with a smooth texture, viewed from the front-right angle, set in a sunlit, upscale residential environment with brick pavement and lush foliage, showcasing its distinct chrome grille and stylish alloy wheels. +03855.jpg A white Audi S4 Sedan 2007 is captured in a three-quarter front view, parked in a vibrant outdoor event setting with a crowd and white tents in the background, featuring prominent chrome accents on the grille and large alloy wheels. +00793.jpg The low-resolution image shows a white 2007 Audi S4 Sedan with a glossy finish, viewed from the front-right corner, parked on a smooth, dark pavement with a grassy park and trees in the background, featuring sleek, five-spoke alloy wheels and dark-tinted windows. +07889.jpg The image shows a yellow Audi S4 Sedan 2007 with a sleek texture, captured in a three-quarter front view against a plain white background, featuring distinct alloy wheels and a sunroof. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_S4_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_S4_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..6f4beae --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_S4_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +02566.jpg The Audi S4 Sedan 2012 is a glossy white car with a metallic finish viewed from a front three-quarter angle, parked in a dealership lot with multiple cars in the background, featuring distinctive silver alloy wheels and iconic Audi grilles. +00825.jpg The Audi S4 Sedan 2012, viewed from the front-left angle, showcases a metallic gray color with a smooth texture, distinct five-spoke alloy wheels, and is set in a showroom environment with tiled flooring and Audi branding in the background. +00988.jpg The image shows a sleek, dark metallic blue Audi S4 Sedan 2012 viewed from a rear three-quarter angle, featuring distinctive quad exhaust tips, under soft blurred city surroundings, accentuating its dynamic and robust design. +00642.jpg The Audi S4 Sedan 2012 appears in a vibrant metallic blue with sleek lines, captured from a front three-quarter angle, set against a blurred urban backdrop, highlighting its sporty grille and distinctive alloy wheels. +01022.jpg The Audi S4 Sedan 2012 appears in a vibrant red color with a glossy finish, viewed from a front three-quarter angle, featuring its distinctive LED headlights and chrome grille against a wet urban background with reflective wall textures. +08081.jpg The 2012 Audi S4 Sedan appears in a glossy black finish, viewed from the front with its distinctive chrome grille, Audi rings, and S4 badge prominently visible against an urban background featuring glass buildings and pavement. +05824.jpg A white Audi S4 Sedan 2012 is parked on a driveway in a suburban neighborhood, viewed from a rear three-quarter angle, showcasing its sleek lines and distinctive rear LED taillights next to a large garage door. +02114.jpg The Audi S4 Sedan 2012 is shown in a vibrant red color with a glossy texture, viewed from the front-left angle, against an indoor showroom environment, featuring distinctive LED headlight design and characteristic Audi grille. +06475.jpg The Audi S4 Sedan 2012 in the image is a sleek silver car viewed from a three-quarter front angle, parked on a gray asphalt surface, with a forested background and showcasing its distinctive grille, sharp headlights, and chrome-accented alloy wheels. +00397.jpg The Audi S4 Sedan 2012 in the image features a silver color with a glossy texture, viewed from a front three-quarter angle, against a paved dealership setting with trees in the background, showcasing its distinctive alloy wheels and signature front grille. +02273.jpg The Audi S4 Sedan 2012 is seen from a rear viewpoint, featuring a bright red exterior with smooth, glossy texture, distinctive quad exhaust pipes, sleek tail lights, and is situated on a dirt road surrounded by sparse trees and mountains in the background. +06956.jpg The Audi S4 Sedan 2012 is displayed in a vibrant red color with a shiny, smooth texture, shown from a front-side angle against a coastal backdrop, featuring distinct silver side mirrors and a prominent front grille. +06616.jpg The Audi S4 Sedan 2012 in the image is a vibrant red car viewed from a front three-quarter angle, showcasing its sleek body lines, distinct grille with chrome accents, and is set against an indoor showroom environment with reflective flooring and surrounding vehicles. +03472.jpg The Audi S4 Sedan 2012 appears in a vivid red color with a glossy texture, viewed from a front angle on a curving mountain road backdrop, highlighting its distinctive chrome grille, sleek headlights, and dual air intakes despite the low resolution. +05085.jpg The Audi S4 Sedan 2012 is showcased in a metallic silver color with a smooth texture, captured from a front three-quarter view against a white studio backdrop, highlighting its distinctive grille with the Audi emblem and sporty alloy wheels. +00934.jpg The Audi S4 Sedan 2012 appears in a glossy black color with a prominent front grille featuring the Audi logo, viewed head-on, set in an outdoor parking area with greenery and other parked vehicles in the background. +03103.jpg The silver Audi S4 Sedan 2012 is seen from a front three-quarter angle in a parking lot, highlighted by its distinctive LED headlights, chrome grille accents, and alloy wheels, with a mix of pavement and a backdrop of trees and parked cars contributing to the urban outdoor setting. +07503.jpg The black Audi S4 Sedan 2012 is viewed from a front three-quarter angle on a pavement outside a modern glass building, showcasing its sleek body, prominent chrome grille, and silver alloy wheels, with distinctive silver mirror caps adding contrast to its glossy exterior. +00205.jpg The Audi S4 Sedan 2012 appears in a glossy white finish viewed from a front three-quarter angle, with distinctive LED headlights and a four-ring grille, set against a neutral white background. +05050.jpg The Audi S4 Sedan 2012 appears in a glossy black color with a chrome-accented grille and distinctive LED headlights, viewed from a front three-quarter angle against a plain, textured concrete wall background, showcasing its sporty alloy wheels amidst a simple outdoor setting. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_S5_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_S5_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..09079b5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_S5_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +02696.jpg The low-resolution image shows a glossy black Audi S5 Convertible 2012 viewed from a front-left angle on a racetrack, highlighting its silver grille and dynamic stance, against a blurred background of grass and other colorful vehicles. +06716.jpg The Audi S5 Convertible 2012 appears in a vibrant red with a glossy texture, viewed from a three-quarter front angle against a neutral grey background, featuring distinctive alloy wheels, LED headlights, and a sleek, open-top design. +04689.jpg The Audi S5 Convertible 2012 is seen from a side angle, sporting a vibrant blue color with a sleek texture, a black convertible top, and distinctive Audi grille, set against an urban street backdrop with residential buildings. +00256.jpg The Audi S5 Convertible 2012 is a vibrant red convertible with a sleek, shiny texture, viewed from a front diagonal angle, parked in a serene forest setting with tall trees, featuring its distinctive silver grille and sporty alloy wheels. +07854.jpg The Audi S5 Convertible 2012 is a sleek, dark metallic convertible viewed from the front left in a sunny, gravel-paved setting with a modern house, showcasing its distinctive grille and sporty alloy wheels with a soft top retracted to reveal a luxurious tan interior. +06969.jpg The Audi S5 Convertible 2012 is shown in a striking metallic blue color from a rear three-quarter viewpoint, with the top down revealing a sleek black interior, set against a textured, neutral ground that contrasts with its silver alloy wheels and sharp, angular tail lights. +03644.jpg A glossy black Audi S5 Convertible 2012 is photographed from a low front-side angle against a scenic sunset backdrop, with its chrome grille, distinctive LED headlights, and large alloy wheels prominently visible. +00509.jpg The Audi S5 Convertible 2012 is a sleek white convertible with a top-down view, featuring a distinctive chrome grille and sporty alloy wheels, set against a vibrant autumn park backdrop with orange-leafed trees. +06545.jpg The Audi S5 Convertible 2012 is captured in a low-resolution image from a front-side angle, showcasing its sleek metallic blue finish with a glossy texture, black convertible top down, distinctive Audi grille with chrome accents, and situated on a tree-lined road, providing a dynamic and sophisticated look. +03503.jpg The Audi S5 Convertible 2012 is captured from a front-side angle, showcasing its bright blue body with a smooth texture, black convertible roof, and distinctive Audi grille, set against a marina backdrop with city skyscrapers and a cruise ship. +00561.jpg The Audi S5 Convertible 2012 in the image is a shiny blue car with a sleek, aerodynamic design photographed from a rear three-quarter viewpoint, set against a blurred mountainous backdrop, with distinctive dual exhaust pipes and a sporty convertible roof. +05272.jpg The Audi S5 Convertible 2012 is depicted in a striking metallic blue color seen from a three-quarter front view against a clean, minimalist background, showcasing its open-roof design with a prominent chrome grille and sleek silver alloy wheels. +02556.jpg The Audi S5 Convertible 2012 in the image appears in a metallic brown color with sleek, smooth texture, viewed from a slightly front-left angle, set against a historical building backdrop, featuring prominent chrome accents and distinctively designed alloy wheels despite the low resolution. +04601.jpg The Audi S5 Convertible 2012 in the image is a vivid blue with a glossy finish, seen from a front three-quarter angle on a winding road surrounded by blurred greenery, featuring a distinctive wide grille and LED headlights. +06678.jpg The Audi S5 Convertible 2012 is shown in a glossy black finish with a front-left angled view, highlighting its open top, five-spoke alloy wheels, and distinctive elongated headlights against a plain white background. +05517.jpg A low-resolution image shows an Audi S5 Convertible 2012 in a metallic blue color with a fabric top, captured from a front-side angle on a city street, highlighting its distinctive grille and sleek body lines amidst a bustling urban environment. +04040.jpg The image shows a white Audi S5 Convertible 2012 with a clean, smooth exterior viewed from the side, featuring an open roof revealing red interior seats, set against a plain white background. +05964.jpg The Audi S5 Convertible 2012, viewed from a low frontal angle, features a glossy black finish with sleek contours, a distinctive grille, and silver wheels, set against an urban backdrop of glass-fronted buildings. +05482.jpg The Audi S5 Convertible 2012 is shown in a silver metallic color with a soft black convertible roof, captured from a front-side angle in a car dealership setting, featuring its distinctive Audi grille with quad rings and sporty alloy wheels. +02253.jpg The Audi S5 Convertible 2012 appears in a vibrant blue, with a sleek, glossy texture, viewed from a rear side angle showcasing its open-top and silver alloy wheels, set against a mountainous backdrop with a smooth, gradient sky. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_S5_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_S5_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..b208403 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_S5_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +06581.jpg The Audi S5 Coupe 2012 is shown in a glossy black finish from a front three-quarter angle, parked in a dealership setting with large windows and other vehicles in the background, showcasing its distinct grille and alloy wheels. +03653.jpg A metallic silver Audi S5 Coupe 2012 is seen from a frontal viewpoint, showcasing its distinctive chrome grille with the Audi emblem, against a smooth, neutral-toned background, with sleek, modern headlights and subtle sporty accents. +01639.jpg The Audi S5 Coupe 2012 appears in a glossy white finish viewed from the side, showcasing its sleek and aerodynamic shape with prominent alloy wheels, set against a plain white background. +04819.jpg The Audi S5 Coupe 2012 is shown in a side profile view, with a sleek black finish and metallic sheen, parked in a sparsely populated industrial lot under a clear blue sky, highlighting its sporty lines, five-spoke alloy wheels, and distinctive side mirror design. +06756.jpg The 2012 Audi S5 Coupe appears in a sleek silver color with a smooth texture, viewed from the rear side against a serene seaside backdrop, showcasing its distinctive quad exhausts and LED taillights. +03936.jpg The Audi S5 Coupe 2012 is presented in a sleek black color with a glossy finish, captured from a front three-quarter angle in a plain studio setting, showcasing its signature front grille and distinctive alloy wheels with a subtle reflection on the smooth surface. +03449.jpg The Audi S5 Coupe 2012 in the image is a sleek, dark metallic grey with a smooth texture, captured from a side angle in a sunlit parking lot, featuring distinctive alloy wheels and a prominent front grille. +00767.jpg The image shows a bright green Audi S5 Coupe 2012 from a rear view with distinctive dual exhaust pipes, parked on a smooth gray pavement, set against a background of lush green trees and residential houses. +01094.jpg The Audi S5 Coupe 2012 appears in a sleek silver color with a smooth texture, viewed from a front angle emphasizing its distinctive grille and LED headlights, set against a neutral studio-like background. +05129.jpg A sleek silver Audi S5 Coupe 2012 is viewed from a low front angle, showcasing its distinctive grille and sporty stance against a blurred, dynamic background suggesting speed and motion. +03427.jpg The Audi S5 Coupe 2012 appears in a sleek gray color with a metallic texture, viewed from a front-side angle with a neutral background, featuring the iconic Audi grille and distinctively styled alloy wheels. +03721.jpg The 2012 Audi S5 Coupe appears in a metallic gray color with a sleek texture, viewed from a three-quarter front angle, set against a minimalist industrial background, highlighting its distinctive grille and angular headlights. +06193.jpg The image shows a black Audi S5 Coupe 2012 viewed from the front-left angle, showcasing its sleek, glossy finish with a low stance, set against a suburban backdrop featuring a concrete wall and a house with a red-tiled roof, highlighting the car's signature grille and large alloy wheels. +01524.jpg The low-resolution image shows a white Audi S5 Coupe 2012 with a smooth, glossy texture, viewed from a rear three-quarter angle against a dark, gradient background, featuring distinctive LED tail lights and a sleek roofline. +01515.jpg The Audi S5 Coupe 2012 in the image is black with a glossy finish, viewed in three-quarter front perspective in a minimalistic indoor setting, featuring silver five-spoke alloy wheels and distinct LED headlights. +05674.jpg The white Audi S5 Coupe 2012 is viewed from the side, parked on a pavement near a grassy area with other cars and trees in the background, featuring sleek, aerodynamic lines and distinctive alloy wheels. +02256.jpg The white Audi S5 Coupe 2012 is seen from a side profile on a rooftop parking lot, featuring sleek lines, shiny five-spoke alloy wheels, and a prominent shoulder line against a backdrop of concrete and urban structures. +05518.jpg The Audi S5 Coupe 2012 is seen in a sleek silver color with smooth texture, viewed from a three-quarter front angle, parked in front of a modern, angular stone building, showcasing its distinctive grille and sharp headlight design, complemented by large alloy wheels. +06705.jpg The Audi S5 Coupe 2012 in the image is a sleek silver car with a glossy finish, viewed from the rear three-quarters, set against a minimalistic concrete background with distinctively prominent taillights and dual exhausts. +01883.jpg The Audi S5 Coupe 2012 in the image is a sleek silver car with a smooth texture, viewed from a rear three-quarter angle, showcasing its aerodynamic curves, distinctive alloy wheels, and prominent rear bumper against a plain white background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_S6_Sedan_2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_S6_Sedan_2011_descriptions.txt new file mode 100644 index 0000000..bfb3b00 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_S6_Sedan_2011_descriptions.txt @@ -0,0 +1,20 @@ +06677.jpg The low-resolution image shows a silver Audi S6 Sedan 2011 with a sleek and glossy finish, viewed from a front three-quarter angle against a plain white background, highlighting its distinctive grille and sharp headlights. +01123.jpg The low-resolution image shows a silver Audi S6 Sedan 2011 with a sleek, glossy finish, prominently displaying its chrome grille and LED headlights, viewed from a front three-quarter perspective on a rooftop parking area with a cloudy sky in the background. +00899.jpg The Audi S6 Sedan 2011 is shown in a side-front view with a glossy black finish, distinctive silver alloy wheels, and is set against a background of a grassy open field with trees, conveying a sporty elegance. +06954.jpg The Audi S6 Sedan 2011 appears in a metallic silver color with a glossy finish, viewed from the front-left angle, against a blurred urban nightscape, emphasizing its distinctive grille and LED headlight design. +06914.jpg The silver Audi S6 Sedan 2011 is parked in an urban setting with multi-story buildings in the background, viewed from the side displaying its sleek profile and distinctive multi-spoke wheels. +02185.jpg The Audi S6 Sedan 2011 is depicted in a metallic silver color with a smooth, polished texture, viewed from a low front angle in an urban tunnel environment, highlighted by distinct LED daytime running lights and a prominent S6 badge on the grille. +03344.jpg The image shows a front-facing view of a silver Audi S6 Sedan 2011, featuring a sleek, metallic texture with distinctive Audi grille and headlights, set against a plain white background. +03887.jpg The Audi S6 Sedan 2011 is shown from a rear three-quarter view in a metallic gray color with smooth textures, featuring sleek tail lights and dual exhaust pipes, set against a minimalistic studio background. +05122.jpg The Audi S6 Sedan 2011 in the image appears in a glossy black color with a prominent front grille featuring four interlocking rings, photographed from the front viewpoint in a dealership setting with other cars and a building in the background. +04733.jpg The metallic blue Audi S6 Sedan 2011 is shown in a three-quarter front view with a clear blue sky background, highlighting its sleek body lines, distinctive grille, and alloy wheels. +04802.jpg The image shows a front-facing view of a white Audi S6 Sedan 2011 with a glossy finish, featuring a prominent black grille and sleek headlights against a neutral indoor showroom background. +00681.jpg The Audi S6 Sedan 2011 is depicted in a sleek silver color with a smooth texture, viewed from a rear three-quarter angle, featuring distinctive LED tail lights and dual exhausts, set against a dynamic, blurred motion background that suggests speed. +00918.jpg The Audi S6 Sedan 2011 is shown in a front-side view with a glossy white exterior, distinct five-spoke alloy wheels, integrated LED headlights, and is parked in an urban dealership setting with other cars visible in the background. +05965.jpg The Audi S6 Sedan 2011 appears in a glossy metallic red finish from a frontal viewpoint, showcasing its distinctive grille with the Audi emblem and sleek headlights against a backdrop of corrugated beige panels. +02441.jpg The Audi S6 Sedan 2011 appears in sleek black with a shiny, reflective texture, showcased from a front three-quarter viewpoint on a driveway with trees and suburban houses in the background, highlighting its distinct chrome grille and detailed headlight design. +00274.jpg A sleek blue Audi S6 Sedan 2011 is captured in motion from a front three-quarter view, set against a rustic background with stone buildings, showcasing its distinctive chrome grille, LED daytime running lights, and large alloy wheels. +00089.jpg The Audi S6 Sedan 2011 appears in a sleek black color with a glossy texture, viewed from a front-side angle showcasing its distinctive wide grille and large, polished alloy wheels, set against a background of lush green hedges and industrial fencing. +00600.jpg A blue Audi S6 Sedan 2011 is seen from a front three-quarter view, showcasing a sleek, glossy finish with LED daytime running lights and distinctive S6 badging, against a backdrop of distant mountains and an expansive sky. +02412.jpg The Audi S6 Sedan 2011 in the image is a sleek white vehicle viewed from the front, showcasing its signature grille and headlights, and is situated in a dimly lit, run-down industrial building with graffiti on the walls. +05705.jpg The Audi S6 Sedan 2011 in the image is a sleek silver car seen from a front-side angle on a blurred highway, featuring signature Audi grille and distinct alloy wheels with a backdrop of lush greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_TTS_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_TTS_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..7fbd42b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_TTS_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +06845.jpg The Audi TTS Coupe 2012 in the image is shown in a metallic silver finish with a sleek front view, featuring prominent LED headlights and shiny alloy wheels, situated in a showroom environment with reflections of overhead lights and surrounding vehicles visible on its smooth bodywork. +03590.jpg The image shows a white Audi TTS Coupe 2012 in a side profile view, highlighting its sleek, aerodynamic design with silver alloy wheels and a simple white background. +01403.jpg The Audi TTS Coupe 2012 appears in a glossy black finish with a sleek, angular front view, distinctive LED headlights, and a metallic, sporty grille, set against a plain indoor backdrop with gray flooring. +02007.jpg The image shows a sleek, black Audi TTS Coupe 2012 viewed from the front left angle in a parking lot, with a reflective, glossy paint finish, distinctive LED daytime running lights, and sporty alloy wheels, set against a backdrop of a glass-front car dealership. +01085.jpg The image depicts a sleek black Audi TTS Coupe 2012 with a shiny surface, captured from a front three-quarter angle, driving on a street with blurred motion, emphasizing its dynamic design, LED daytime running lights, and signature Audi grille. +03818.jpg The Audi TTS Coupe 2012 is depicted in a glossy black finish with a sleek, low-profile stance seen from a front three-quarter view, set against a natural, grassy background, and distinguished by its signature Audi grille and distinctive alloy wheels. +07765.jpg The Audi TTS Coupe 2012 is presented in a sleek black color with a glossy finish, viewed from the front showcasing its distinctive grille with a chrome outline and iconic four-ring logo, set against a minimalist white studio background accentuated by a checkered floor. +01232.jpg The Audi TTS Coupe 2012 appears in a glossy black finish with a dynamic front-side view, set against an urban road backdrop with motion blur, highlighting its sleek profile and distinctive front grille. +03838.jpg A dark-colored Audi TTS Coupe 2012 with a matte texture is photographed from a front-side angle, parked on a light gravel surface with a blue industrial building in the background, showcasing its distinctive low profile, silver wheel rims, and iconic front grille. +04753.jpg The Audi TTS Coupe 2012 in a dark metallic gray color is seen from a front three-quarter view with LED headlights and a distinctive silver grille, parked on a brick driveway in a suburban neighborhood setting. +05857.jpg The black Audi TTS Coupe 2012 is viewed from the front-left angle, highlighting its sleek body and silver alloy wheels, set against a suburban street with trees and buildings in the background. +03804.jpg The Audi TTS Coupe 2012 appears in a sleek dark metallic color with a front three-quarter view, showcasing its signature grille and alloy wheels, against a minimalist indoor showroom background. +06600.jpg The Audi TTS Coupe 2012 appears in a glossy white finish with a frontal three-quarter view highlighting its sleek, aerodynamic contours, positioned indoors against a dimly lit showroom backdrop with reflective flooring, and features distinct LED headlights and a pronounced front grille. +01880.jpg The image shows a sleek black Audi TTS Coupe 2012 with a glossy finish, viewed from the front-left in a showroom setting with large windows in the background, highlighting its silver side mirrors, distinctive grille, and alloy wheels. +05265.jpg The low-resolution image shows a sleek black Audi TTS Coupe 2012 with a glossy texture, viewed from a front three-quarter angle in an indoor showroom, featuring prominent alloy wheels and LED headlights. +07586.jpg The Audi TTS Coupe 2012 is a sleek black sports car viewed from a front-side angle, with distinct alloy wheels and a racetrack environment in the background. +04595.jpg The image shows a bright red Audi TTS Coupe 2012 with a glossy texture, viewed from the front-left angle, set against a gradient background, with distinctive black alloy wheels and a prominent front grille. +02766.jpg The Audi TTS Coupe 2012 is a white, glossy-finished car photographed from the front-right angle, parked on a paved surface with a geometric-patterned building backdrop, featuring distinct LED headlights, an Audi grille, and sleek alloy wheels. +05266.jpg The Audi TTS Coupe 2012 is captured from a rear three-quarter view, showcasing its sleek black exterior with a glossy finish set against a tranquil backdrop of a scenic coastline at sunset, highlighting its distinct dual exhaust pipes and sporty alloy wheels. +03547.jpg The 2012 Audi TTS Coupe is shown in a sleek black color with glossy texture, viewed from a three-quarter front angle, set against a serene coastal background with a pinkish-blue sky and grassy landscape, highlighting its bold grille, sharp headlights, and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_TT_Hatchback_2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_TT_Hatchback_2011_descriptions.txt new file mode 100644 index 0000000..4cd45c9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_TT_Hatchback_2011_descriptions.txt @@ -0,0 +1,20 @@ +00723.jpg The image shows a vibrant red Audi TT Hatchback 2011 viewed from a front-side angle, featuring pronounced sporty lines with silver alloy wheels, positioned at an intersection with a background of greenery and road signs under a clear sky. +04883.jpg The Audi TT Hatchback 2011 in the image is a vibrant orange with a sleek, glossy texture, captured in a side profile view against an urban glass building backdrop, featuring distinct black alloy wheels and a compact, aerodynamic shape. +06277.jpg A metallic gray Audi TT Hatchback 2011 is shown from a front three-quarter viewpoint, with a smooth, sleek texture, set against a paved ground and white backdrop, featuring distinctive angular headlights and a bold grille. +02267.jpg The image shows a red Audi TT Hatchback 2011 with a glossy finish, viewed from a rear three-quarters angle, featuring sleek silver alloy wheels, a dual-exhaust system, and distinct tail lights against a smooth gradient background. +03698.jpg The silver Audi TT Hatchback 2011 is viewed from the front-right three-quarter angle on a gravel road with mountainous terrain in the background, displaying its sleek, smooth body, distinctive front grille, and sculpted headlights. +07059.jpg The black Audi TT Hatchback 2011 is viewed from a front-side angle with a glossy, sleek body surface, featuring prominent alloy wheels and parked on a gray pavement against a plain white background with a company logo. +06094.jpg The Audi TT Hatchback 2011 in the image is silver with a sleek, smooth texture, captured from a front-side angle, showing its distinctive rounded shape and prominent grille, set against a blurred, motion-filled urban backdrop. +06011.jpg A grey Audi TT Hatchback 2011 with a smooth, metallic texture is pictured from the rear three-quarter view on a dirt road, surrounded by lush greenery, showcasing its sporty curved design and distinctive large alloy wheels. +05572.jpg The image shows a red Audi TT Hatchback 2011 with a glossy finish, viewed from a front-side angle on a suburban street, featuring distinctive silver alloy wheels, a prominent front grille, and a modest residential background. +04061.jpg The image shows a white Audi TT Hatchback 2011 with a sleek, sporty design, viewed from the front-left angle, parked on a paved lot with a modern building and a black car in the background, featuring the iconic Audi grille and five-spoke alloy wheels. +01644.jpg The Audi TT Hatchback 2011 is a sleek black car with a glossy finish, viewed from the front angle, displaying signature Audi grille and headlight designs, parked on a gravel surface against a plain light-colored wall. +02539.jpg The Audi TT Hatchback 2011 is shown in a glossy white with sleek, smooth contours viewed from a low front-side angle, set against an urban parking area beneath a large overpass, featuring distinctive alloy wheels and the iconic front grille. +07313.jpg The white Audi TT Hatchback 2011 is pictured from a low front angle on a curving road surrounded by a blurred forest backdrop, showcasing its distinctive oval grille and sleek, aerodynamic body lines. +00408.jpg The image shows a silver Audi TT Hatchback 2011 from a frontal viewpoint, highlighting its sleek, glossy texture with distinctive rounded headlights and grill, set against a moody, gray-toned background featuring abstract, circular architectural structures. +03383.jpg The image shows a white Audi TT Hatchback 2011 with a sleek, glossy finish, viewed from a front three-quarter angle against a showroom-like backdrop featuring company branding and logos, emphasizing its iconic curved roofline and intricate alloy wheel design. +01534.jpg A sleek, glossy black Audi TT is viewed from the front-left angle in a sunlit courtyard, with an ornate historic building and various national flags in the background, showcasing its distinctive rounded headlights and chrome grille. +00171.jpg A white Audi TT Hatchback 2011 is depicted from a rear three-quarter angle on a smooth road against a backdrop of gentle hills and a pink-hued sky, featuring a prominent rear spoiler, dark alloy wheels, and dual exhausts. +05067.jpg The Audi TT Hatchback 2011 in the image is displayed in a sleek, metallic silver color with a smooth texture, viewed from a rear three-quarter angle in a studio setting with a white and black patterned background, featuring distinctive features such as the prominent Audi badge, dual exhausts, and the taillights' unique LED pattern. +07822.jpg A silver Audi TT Hatchback 2011 with a smooth, glossy finish is depicted from a front-side angle against a neutral, gradient background, highlighting its distinctively sloped roofline and sporty alloy wheels. +02130.jpg The 2011 Audi TT Hatchback is displayed in a sleek black color with a glossy texture, captured from a front three-quarter angle against a lush, blurred natural background, featuring its distinctive oval grille and smooth, aerodynamic curves. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_TT_RS_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_TT_RS_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..fb3db1e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_TT_RS_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +05075.jpg The image shows a vibrant red Audi TT RS Coupe 2012 with a sleek, aerodynamic design captured from a front-side angle, featuring distinctive wide grille and silver accents, set against a blurred green and gray background indicating motion on a road. +06249.jpg The Audi TT RS Coupe 2012 is a sleek, glossy red sports car viewed from the side, parked in a driveway with distinctive gold alloy wheels, surrounded by a residential setting with a partially open garage in the background. +03422.jpg The Audi TT RS Coupe 2012 is a vibrant red sports coupe with a sleek, aerodynamic design and visible front grille and alloy wheels, positioned at an angle in a mountainous landscape under a clear, blue sky. +03019.jpg The Audi TT RS Coupe 2012 in the image is a sleek white sports car with a smooth texture, viewed from the front left corner, prominently displaying its bold grille and large rims, set against a blurred desert landscape. +04475.jpg The red Audi TT RS Coupe 2012 is photographed from a rear viewpoint on a winding road lined with trees, featuring a rear spoiler and dual exhausts, set against a clear, sunny sky. +04357.jpg A vivid red Audi TT RS Coupe 2012 is captured from a frontal angle on a showroom floor, showcasing its distinct honeycomb grille, glossy finish, and surrounding by a glossy black-and-white checkered floor with people in the background. +02370.jpg The 2012 Audi TT RS Coupe is displayed in a glossy white finish, viewed from the front-left angle, highlighting its sleek, sporty design with a distinctive black grille and Audi emblem, set against an indoor, workshop-like environment with red equipment and white walls. +05647.jpg The image shows a vibrant red Audi TT RS Coupe 2012 viewed from the rear, featuring distinctive black accents and a fixed rear spoiler, set against a blurred, lush, green landscape on a curving road. +04269.jpg The Audi TT RS Coupe 2012 is depicted in a front three-quarter view, showcasing its sleek white body with distinct aerodynamic contours, large alloy wheels, and signature Audi grille, set against a blurred background suggesting motion on a highway flanked by forested greenery. +06593.jpg The Audi TT RS Coupe 2012 is a vibrant red sports car with a glossy finish, viewed from a dynamic front-left angle, set against a blurred green and blue outdoor background, featuring distinct silver alloy wheels and a black grille with the Audi emblem. +04443.jpg The Audi TT RS Coupe 2012 appears in a vibrant red color with a sleek, aerodynamic body viewed from the front-left angle, featuring distinctive LED headlights, a sporty honeycomb grille, and large alloy wheels, set against a blurred landscape of greenery suggesting motion. +05425.jpg The Audi TT RS Coupe 2012 in the image is a vibrant red with a glossy finish, shown from a rear-side perspective emphasizing its sleek curves and distinct spoiler, set against a modern indoor showroom backdrop with minimalistic design elements and blurred light streaks. +03839.jpg The Audi TT RS Coupe 2012 is shown in a glossy white finish with a front three-quarter view, featuring large air intakes and a distinctive black honeycomb grille, set against a bright indoor showroom background with illuminated "100" signage. +02323.jpg The Audi TT RS Coupe 2012 is shown in a vibrant, glossy red with a low-angle side view, set against a dark backdrop that accentuates its sleek aerodynamic shape, highlighted by distinct black alloy wheels and a prominent rear spoiler. +00684.jpg The red Audi TT RS Coupe 2012 is seen from a rear three-quarter angle, showcasing its sleek, glossy finish, distinctive dual exhausts, and sporty spoiler, surrounded by an indoor showroom environment with people in the background. +04885.jpg A sleek, red Audi TT RS Coupe 2012 is seen from a rear three-quarter view, highlighting its distinctive sporty spoiler and dual exhausts against a gradient black-and-white studio backdrop. +01948.jpg The Audi TT RS Coupe 2012 is displayed in a vibrant red with a glossy finish, viewed from a front-side angle on a paved surface surrounded by greenery, featuring its distinct aerodynamic shape, large black grille, and prominent silver alloy wheels. +02009.jpg The Audi TT RS Coupe 2012 is shown in a glossy red finish with a low, sleek profile viewed from the front-left angle, set against a dark gradient backdrop, featuring distinctively large alloy wheels and bold grille design. +05473.jpg The Audi TT RS Coupe 2012, viewed from the front-left, is white with a sleek, smooth texture, featuring prominent silver alloy wheels, a black honeycomb grille, and is situated on a racetrack surrounded by grass and trees in the background. +02764.jpg The front view of the 2012 Audi TT RS Coupe displays a vibrant red color with a sleek, smooth texture, set against a dark gradient studio backdrop, featuring distinctive oval grille patterns and prominent Audi badge. diff --git a/utils/area/descriptions/Car/generated_descriptions/Audi_V8_Sedan_1994_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Audi_V8_Sedan_1994_descriptions.txt new file mode 100644 index 0000000..fd5b814 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Audi_V8_Sedan_1994_descriptions.txt @@ -0,0 +1,20 @@ +07535.jpg The Audi V8 Sedan 1994 appears in a silver-gray color with a smooth texture, viewed from a rear side angle against a minimalistic open sky background, featuring classic alloy wheels and a distinct trunk spoiler. +03764.jpg The Audi V8 Sedan 1994 in the image is dark maroon with a sleek finish, viewed from a side angle, parked on a snowy ground with a rustic building in the background, featuring large aftermarket alloy wheels and a slightly boxy vintage design. +07930.jpg The image shows a maroon Audi V8 Sedan 1994 viewed from an elevated angle, set on a wet driveway surrounded by greenery, with distinct silver trim and alloy wheels that contrast against the deep body color. +02032.jpg The 1994 Audi V8 Sedan in the image is a light metallic color positioned in a side view with sharp angular design lines, mounted on alloy wheels against a modern urban background of concrete and glass, showcasing its distinctive rectangular rear lights and classical Audi front grille. +04848.jpg The Audi V8 Sedan 1994 appears in a grayscale tone with a sleek, elongated side profile, positioned on a flat surface against a blurred natural backdrop featuring trees, and is characterized by its boxy silhouette and multi-spoke alloy wheels. +05924.jpg The Audi V8 Sedan 1994 in the image appears in a rich burgundy color with a metallic sheen, viewed in three-quarters from the front-right, parked on an expansive, empty, concrete surface with its signature chrome grille and four-ring emblem prominently visible. +03429.jpg The Audi V8 Sedan 1994 in the image is silver with a glossy texture, viewed from a front-side angle in a parking area surrounded by greenery, distinguished by its classic Audi grille and five-spoke alloy wheels. +03513.jpg The 1994 Audi V8 Sedan, viewed from a frontal side angle, appears in a dark color with a slightly glossy texture, set against a wintry forest backdrop with patches of snow, featuring distinctive alloy wheels and the classic four-ring Audi emblem on the grille. +03015.jpg The Audi V8 Sedan 1994 appears black with a glossy finish, shown in a side profile view parked in front of a light blue house with visible shrubbery, featuring distinct alloy wheels and a classic boxy design. +02015.jpg The Audi V8 Sedan 1994 displayed in the image is maroon with a smooth texture, viewed from a front three-quarter angle, set against a clear sky and a paved surface, featuring distinct quad headlights and a bold front grille adorned with the Audi emblem. +03981.jpg The Audi V8 Sedan 1994 appears in a dark maroon color with a glossy texture, viewed from a slight front angle on a highway, surrounded by blurred greenery, featuring distinctive quad headlights and a prominent front grille with the Audi logo. +04923.jpg The Audi V8 Sedan 1994 in the image is white with a smooth texture, captured in a side profile view in a parking lot with snow patches and bare trees in the background, featuring distinct alloy wheels and black trim accents. +04312.jpg The image shows a sleek, dark-colored Audi V8 Sedan 1994 viewed from a front three-quarter angle, featuring boxy headlights, a distinct four-ring grille, and five-spoke alloy wheels against a neutral, solid background. +00200.jpg A dark-colored Audi V8 Sedan 1994 is seen from the front-right angle, parked on a dirt lot with a tree-lined backdrop, featuring a distinct grille and four-door configuration. +03314.jpg The Audi V8 Sedan 1994 is a dark blue car with a glossy finish, captured in a side profile view against a flat, open background with distant trees and overcast skies, featuring distinct round headlights and classic alloy wheels. +03673.jpg The Audi V8 Sedan 1994 appears silver with a sleek, metallic finish, viewed from the front-left angle, parked in a lot with a metallic shutter in the background, featuring distinct chrome accents and a bold Audi logo on the grille. +00653.jpg The Audi V8 Sedan 1994 is presented in a silver color with a smooth texture, viewed from a rear three-quarter angle in a suburban driveway, featuring distinctive alloy wheels and a prominently squared rear design against a backdrop of a garage and leafy greenery. +07273.jpg The Audi V8 Sedan 1994 appears in a dark metallic color with a glossy finish, viewed from the front-left angle, parked on a paved street surrounded by lush greenery, featuring its distinctive square headlights and chrome-accented grille. +01494.jpg The Audi V8 Sedan 1994 is silver with a sleek, smooth texture, viewed from a rear-side angle, against a backdrop of bare trees and a suburban street, featuring distinct multi-spoke alloy wheels and a prominent black side molding. +02728.jpg The image shows a front three-quarter view of a black Audi V8 Sedan 1994 with a smooth, glossy texture, displaying its characteristic rectangular grille and sleek headlights, set against a plain white background highlighting a silhouette nearby. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_1_Series_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_1_Series_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..05fb790 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_1_Series_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +04548.jpg The BMW 1 Series Convertible 2012 appears in a vibrant red color with a glossy texture, viewed from a frontal angle on a city street at night with high-rise buildings in the blurred background, featuring distinct circular headlights and a lowered soft-top roof. +03457.jpg A silver BMW 1 Series Convertible 2012 with a black fabric roof is parked in a sunlit lot, viewed from a front-side angle, against a plain gray wall and greenery, featuring smooth body curves and distinctive alloy wheels. +00966.jpg The BMW 1 Series Convertible 2012 is a glossy red car viewed from a front-side angle, featuring silver alloy wheels and a black soft-top, parked in an indoor setting with eagle-themed banners on the wall. +03162.jpg A silver BMW 1 Series Convertible 2012 is shown from a front-side angle with its top down, parked against a modern, geometric wall on a smooth concrete surface. +07689.jpg The white BMW 1 Series Convertible 2012 is shown in a side profile view on a gravel surface near water, with its top down, revealing the dark interior and distinctive five-spoke alloy wheels. +07524.jpg A silver BMW 1 Series Convertible 2012 with a black soft top is shown front-facing, parked on a road with rocky cliffs in the background, featuring sporty wheels and distinctive front headlights. +00798.jpg The BMW 1 Series Convertible 2012 is displayed in a dark metallic gray color with a smooth texture, viewed from a rear angle showcasing its open-top feature, chrome-edged taillights, and a reflective showroom backdrop. +06703.jpg The BMW 1 Series Convertible 2012 is shown in a glossy red color with a sleek texture, captured from a front three-quarter view, featuring its characteristic kidney grille, sporty alloy wheels, and an open-top design, set against a minimalist white studio background. +05616.jpg The BMW 1 Series Convertible 2012 is white with a sleek texture, viewed from a front angled perspective, featuring prominent silver alloy wheels with a contrasting gray and white background in a studio setting. +06752.jpg The BMW 1 Series Convertible 2012, in crisp white with a smooth, glossy texture, is shown in a side-front view with its top down, set against a paved area surrounded by lush green trees and parked cars, and features distinct five-spoke alloy wheels and beige interior. +04152.jpg The BMW 1 Series Convertible 2012 is shown in a metallic red color with a glossy finish, viewed from a front-side angle against a suburban background with trees and parked cars, featuring distinct silver alloy wheels and the classic kidney grille. +03990.jpg The image shows a white BMW 1 Series Convertible 2012 with a sleek, shiny texture, captured from the rear three-quarter viewpoint in an urban street background, featuring distinctive aftermarket wheels and a black soft-top roof retracted. +05878.jpg The low-resolution image shows a BMW 1 Series Convertible 2012 in a metallic beige color cruising on a road beside a lake, with the top down and its side profile prominently displayed against a blurred background of greenery and water. +04957.jpg The BMW 1 Series Convertible 2012 is viewed from the rear, showcasing its sleek white exterior and smooth finish, with distinctively shaped taillights, dual exhausts, and a subtle BMW emblem, set against a plain white background. +03525.jpg This low-resolution image shows a silver-gray BMW 1 Series Convertible 2012 with a shiny texture, viewed from a three-quarter front angle on a showroom floor with a glossy tiled surface and minimalistic white walls, featuring visibly distinct kidney grilles and sleek alloy wheels. +02152.jpg The BMW 1 Series Convertible 2012 is shown in a rich metallic red with a glossy finish, captured from a front three-quarter view highlighting its distinctive dual kidney grille and circular headlights, set against a minimalistic white showroom backdrop. +06078.jpg The BMW 1 Series Convertible 2012 is depicted in a glossy black finish with a prominent front view, featuring its red interior against a backdrop of residential greenery, showcasing its distinct alloy wheels and the iconic BMW grille. +01036.jpg A white BMW 1 Series Convertible 2012 with a glossy finish is parked on a paved surface, viewed from the front-left angle, featuring a lowered black convertible roof against a backdrop of vertical metal fencing and grass. +05634.jpg A white BMW 1 Series Convertible 2012 is shown from a front-side angle on a winding mountain road, with its headlights on and a semi-cloudy sky in the background, highlighting its smooth, aerodynamic body and distinctive kidney grille. +03199.jpg The BMW 1 Series Convertible 2012 is depicted in a rear view, showcasing a sleek, metallic silver exterior with a smooth texture, driving on a winding road surrounded by a rocky, wooded environment, and features distinct red interior accents visible through the open top and characteristic dual exhausts. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_1_Series_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_1_Series_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..16d1fe3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_1_Series_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +02338.jpg A red BMW 1 Series Coupe 2012 is seen from a rear viewpoint on a winding road with a blurred natural landscape in the background, highlighting its distinct rear lights and compact build. +07031.jpg The BMW 1 Series Coupe 2012 appears in a vibrant metallic orange color with a sleek, sporty texture, captured from a side profile against a backdrop of rugged, mountainous terrain, featuring distinct alloy wheels and a compact, aerodynamic silhouette. +04505.jpg The BMW 1 Series Coupe 2012 is depicted from a front three-quarter view in a metallic red finish with smooth curves and sharp edges, featuring prominent dual grilles, circular headlights, and large alloy wheels against a blurred urban backdrop. +02627.jpg A silver BMW 1 Series Coupe 2012 is viewed from the front-left angle, showcasing its distinctive kidney grille and dual circular headlights, against a blurred natural background of autumn foliage. +02758.jpg The BMW 1 Series Coupe 2012 appears in a glossy orange hue, viewed from a rear three-quarter angle, set against a mountainous landscape, featuring distinct dual exhausts and a sporty, compact design. +05028.jpg The 2012 BMW 1 Series Coupe is shown in a dynamic front-side view, with a rich metallic maroon color, sleek texture, and distinctive kidney grille, driving along a road against a mountainous backdrop. +05445.jpg The BMW 1 Series Coupe 2012 appears in metallic gold with a smooth, shiny finish, viewed from an angled front-left perspective on a clear day, with a sleek design featuring prominent kidney grilles and alloy wheels, set against a flat asphalt surface and a gradient sky background. +02027.jpg The BMW 1 Series Coupe 2012 is a glossy red two-door car captured from a front-side angle, driving on a smooth road against a blurred yellow-orange wall, with distinct kidney grilles and circular headlights accentuating its sporty design. +02649.jpg The BMW 1 Series Coupe 2012 appears in a glossy red color viewed head-on with distinctive dual kidney grilles and round headlights, set against a winding road. +08021.jpg The BMW 1 Series Coupe 2012 is a vivid orange-red car with a sleek, glossy finish, seen from the side against a stark, mountainous desert landscape, highlighting its distinct two-door coupe shape and silver alloy wheels. +06387.jpg A sleek, bright red BMW 1 Series Coupe 2012 is captured in motion from a side angle on an open road with a backdrop of blurred clouds and sky, showcasing its aerodynamic shape, dual exhausts, and distinct kidney grille despite the low image resolution. +03634.jpg A black BMW 1 Series Coupe 2012 is seen in a side-front view with shiny silver alloy wheels against a plain, light-gray background, highlighting its compact, sporty design and distinctive kidney grille. +07262.jpg The BMW 1 Series Coupe 2012 appears in a clean white finish with smooth texture, viewed from the front showcasing its bold kidney grille and round headlights, set against a minimalistic white background. +01553.jpg The BMW 1 Series Coupe 2012 is seen from the front with a striking metallic orange color, aggressive grille, and distinct round headlights, set against a mountainous backdrop with a gravel surface. +03874.jpg The BMW 1 Series Coupe 2012 is depicted in a low-resolution image with a smooth white finish, viewed from the front-left corner highlighting its distinctive dual kidney grilles and five-spoke alloy wheels, set against a concrete and metal-panel background. +02504.jpg The BMW 1 Series Coupe 2012 is a sleek white vehicle with polished metal textures, viewed from the front-left angle, set against a minimalistic two-tone grey background, featuring its distinct kidney grille and prominent headlight design. +02772.jpg The image shows a rear view of a metallic orange BMW 1 Series Coupe 2012 parked on a gravel surface, featuring dual exhausts, distinct taillights, and a slightly elevated spoiler with a background of trees and white buildings. +02416.jpg A metallic orange BMW 1 Series Coupe 2012 is captured in a side profile against a mountainous backdrop, showcasing its sporty stance, silver alloy wheels, and prominent wheel arches. +05985.jpg A metallic gray BMW 1 Series Coupe 2012 is seen from a three-quarter front view against a rural backdrop with rolling hills, showcasing its distinctive kidney grille, angel eye headlights, and sleek, compact two-door design. +06202.jpg The BMW 1 Series Coupe 2012 is captured from a front-left angle in a glossy crimson hue with round headlights and twin kidney grilles, set against a snowy roadside backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_3_Series_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_3_Series_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..0a97cdd --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_3_Series_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +04806.jpg The BMW 3 Series Sedan 2012 is depicted in a sleek, dark metallic blue color with a polished texture, viewed from the rear three-quarter angle on a highway amidst a barren, mountainous landscape, featuring distinctive LED tail lights and dual exhausts. +03568.jpg A red BMW 3 Series Sedan 2012 is seen from a side view, parked on a concrete surface with a rural landscape and distant hills in the background, featuring sleek lines and alloy wheels. +06486.jpg The image shows a rear view of a dark gray BMW 3 Series Sedan 2012, highlighting its dual exhausts and red tail lights against a plain white background. +01821.jpg The BMW 3 Series Sedan 2012 is captured from a side profile view, showcasing its sleek metallic red finish and sporty alloy wheels, set against an industrial backdrop with large windows, reflecting a dimly lit and modern architectural environment. +03953.jpg A dynamic shot of a red BMW 3 Series Sedan 2012 is taken from a front three-quarter angle, emphasizing its sleek design and LED headlights, set against a racing circuit with grandstand seating in the background. +04500.jpg The BMW 3 Series Sedan 2012 is a vibrant red with a sleek, glossy texture, viewed in profile against a dynamic backdrop of angular, glass-paneled architecture, highlighting its distinct, aerodynamic silhouette and signature kidney grille. +02367.jpg The BMW 3 Series Sedan 2012 appears in a vibrant red color with a smooth texture, seen from a side angle on a road against a rocky, light brown background, showcasing its distinctive sleek body lines and classic kidney grille despite the low resolution. +03722.jpg A vibrant red BMW 3 Series Sedan 2012 is captured from the front view on a winding road with trees and grass in the background, featuring its distinctive kidney grille and sleek headlights. +06458.jpg A black BMW 3 Series Sedan 2012 is shown from a side three-quarter view parked on a gravel surface, with distinctive silver multi-spoke wheels, set against a background of a racetrack and spectator stands with a cloudy sky above. +07751.jpg The image displays a vibrant red BMW 3 Series Sedan 2012 with a glossy finish, viewed from the front-left angle on a narrow path surrounded by lush greenery, set against the backdrop of an arched bridge. +03254.jpg A grey BMW 3 Series Sedan 2012 is captured from a front-side angle on a highway, with its signature twin-kidney grille visible, set against a backdrop of mountainous terrain and trees. +01115.jpg A sleek black BMW 3 Series Sedan 2012 is captured front-on, highlighting its distinctive kidney grilles and sharp headlights, set against a serene seaside backdrop with a gradient from sandy ground to a pinkish sky. +03402.jpg A sleek black BMW 3 Series Sedan 2012 is shown from a front three-quarter angle in a dealership parking lot, with silver alloy wheels and characteristic kidney grilles, surrounded by a backdrop of industrial buildings and power lines. +07173.jpg The 2012 BMW 3 Series Sedan appears in a glossy metallic red finish, viewed from the side in motion, with blurred urban architecture in the background, highlighting its sleek and aerodynamic body lines and distinct alloy wheels. +07841.jpg The BMW 3 Series Sedan 2012 appears in a vibrant red color with a glossy texture, viewed from a front-side angle on a curving road with a sunlit background, featuring its iconic kidney grille and sleek headlight design, despite the low resolution. +01127.jpg The BMW 3 Series Sedan 2012 in the image is vibrant red with a glossy finish, captured in a side profile view within a minimalist concrete-walled environment, exhibiting sharp lines and distinctive alloy wheels. +05255.jpg The BMW 3 Series Sedan 2012 in the image appears in a metallic gray color with a glossy texture, captured from a front-side angle in front of a modern residential backdrop, featuring iconic kidney grilles and angular headlights. +05889.jpg The image depicts a red BMW 3 Series Sedan 2012 from a rear three-quarter view, with a glossy finish, driving on a rural road with grassy fields and trees in the background, featuring distinctive taillights and dual exhausts. +05395.jpg The BMW 3 Series Sedan 2012 is viewed from a rear three-quarter angle, showcasing a vibrant red color with a glossy finish, distinct LED tail lights, dual exhaust pipes, and is set against a blurred backdrop of a racetrack environment with barriers and greenery. +00125.jpg The BMW 3 Series Sedan 2012 is shown in a deep red glossy finish, captured from a side angle against a modern architectural backdrop, highlighting its sleek profile, distinctive sporty silhouette, and alloy wheel design. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_3_Series_Wagon_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_3_Series_Wagon_2012_descriptions.txt new file mode 100644 index 0000000..c4c1fa7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_3_Series_Wagon_2012_descriptions.txt @@ -0,0 +1,20 @@ +00859.jpg The BMW 3 Series Wagon 2012 is shown in a metallic dark gray color with a glossy finish, viewed from the rear left angle with distinct sleek contours and distinctive tail lights, against a modern urban backdrop featuring smooth architectural lines. +05592.jpg The BMW 3 Series Wagon 2012 is displayed in a low-resolution image featuring a sleek silver exterior with smooth metallic texture, viewed at a three-quarter angle from the front, driving on a scenic road with a bridge and trees in the background, showcasing its distinctive kidney grille and elongated body shape. +03214.jpg The BMW 3 Series Wagon 2012 in the image is a metallic gray color, viewed from a side angle showing its sleek, elongated profile with distinctive roof rails and alloy wheels, set against a blurred urban highway backdrop emphasizing its dynamic stance. +01089.jpg A metallic gray BMW 3 Series Wagon 2012 is viewed from the rear-right, showcasing its twin exhaust pipes and distinctive taillights, parked on a cobblestone surface with a coastal backdrop and a palm tree nearby. +06696.jpg A white BMW 3 Series Wagon 2012 with sleek contours is seen from a front-side angle, parked in an outdoor lot with a grassy landscape and trees in the background, featuring distinctive kidney grilles and alloy wheels. +02874.jpg The image shows a white BMW 3 Series Wagon 2012 with a smooth, glossy texture, viewed from the front-left angle in a parking lot, featuring distinct kidney grilles and modern headlights amid parked cars and greenery in the background. +04998.jpg The BMW 3 Series Wagon 2012 appears in a glossy dark blue color with a metallic sheen, viewed from a rear three-quarter angle highlighting its sleek roofline and twin exhausts, set against an open, expansive sky and barren landscape. +03010.jpg The image shows a white BMW 3 Series Wagon 2012 with a sleek, smooth texture and alloy wheels, viewed from the driver's side in a profile pose against a plain concrete wall background. +07721.jpg The image shows a white BMW 3 Series Wagon 2012 viewed from the rear, with distinct red tail lights, dual exhaust pipes on the left, and the car parked in a neutral, studio-like setting. +05105.jpg The BMW 3 Series Wagon 2012 in the image is a sleek black vehicle with a glossy finish, viewed from a rear-side angle against a desert landscape, highlighting its aerodynamic shape and distinctive elongated tail lights. +02116.jpg A silver BMW 3 Series Wagon 2012 is viewed from a front-side angle in a parking lot, featuring a noticeable roof rail and the distinct kidney grille amidst a backdrop of trees and parked cars. +01687.jpg The BMW 3 Series Wagon 2012 is shown in a metallic gray color with a glossy texture, viewed from the rear-left side on a curving road with a rocky background and greenery, featuring silver alloy wheels and distinct taillight shapes. +04547.jpg A metallic silver BMW 3 Series Wagon 2012 is depicted from a front angle on a winding road with lush greenery and a distant view of the sea, showcasing its sleek headlights and distinctive kidney grille. +04029.jpg A silver BMW 3 Series Wagon 2012 is seen from the rear three-quarter view, parked on a coastal road with the ocean in the background, highlighting its elongated roofline, smooth metallic texture, and distinct angular rear lights. +05604.jpg The BMW 3 Series Wagon 2012 appears in a sleek metallic gray color with smooth texture, viewed from a side profile while driving past a modern architectural background, showcasing its elongated body and characteristic roof rails despite the low resolution. +01128.jpg The image depicts a silver BMW 3 Series Wagon 2012 from a front-side angle, featuring characteristic kidney grilles and roof rails, driving on an open road with a mountainous landscape in the background. +01395.jpg The BMW 3 Series Wagon 2012 is viewed from the rear in a dynamic pose, showcasing a vibrant red color with a glossy finish, against a scenic background of blurred trees and road, highlighting its sleek taillights and dual exhausts. +05633.jpg The BMW 3 Series Wagon 2012, viewed from the side, features a sleek metallic gray finish with subtle reflections, set against a backdrop of a lake and mountains, and exhibits its iconic elongated body and five-spoke alloy wheels. +04266.jpg A black BMW 3 Series Wagon 2012 is captured from a front-side angle, highlighting its sleek, glossy finish against an industrial backdrop with a fence and scattered tires under a partly cloudy sky. +00153.jpg The BMW 3 Series Wagon 2012 is shown in a side profile, parked outdoors against a sunny backdrop with palm trees and a modern building, featuring a deep blue color with a glossy finish and distinct chrome trim on its window edges and roof rails. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_6_Series_Convertible_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_6_Series_Convertible_2007_descriptions.txt new file mode 100644 index 0000000..d8c4f63 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_6_Series_Convertible_2007_descriptions.txt @@ -0,0 +1,20 @@ +01129.jpg A sleek, silver convertible BMW 6 Series 2007 is shown from a front three-quarter viewpoint, with its top down revealing a black interior, set against a plain, white background, highlighting its distinctive kidney grille and elegant alloy wheels. +01353.jpg The BMW 6 Series Convertible 2007, in sleek glossy black with a reflective texture, is captured from a front-side angle on a grassy lawn, featuring its distinctive kidney grille and dual circular headlights, set against a suburban residential background with garage doors. +06299.jpg The BMW 6 Series Convertible 2007 in the image is a sleek black car with a shiny finish, viewed from a rear three-quarter angle in a plain white and gray background, featuring red taillights, a dual-exhaust system, and a convertible roof folded down. +01142.jpg The BMW 6 Series Convertible 2007 appears in a glossy Alpine White with beige interior, captured from a front-side angle in a sunny outdoor setting, highlighting its sleek lines, large front grille, and alloy wheels. +05570.jpg The BMW 6 Series Convertible 2007 appears in a glossy white finish with a contrasting black soft top, viewed from a front three-quarter angle in a parking lot, showcasing its distinctive wide grille and large alloy wheels. +05156.jpg The BMW 6 Series Convertible 2007 is shown in a three-quarter rear view, featuring a sleek silver exterior with a glossy finish, a contrasting black soft-top roof, and situated on a wet pavement reflecting its shape, with parked boats and rocky hills in the marina backdrop. +04138.jpg The image shows a blurred, sleek black BMW 6 Series Convertible 2007 with its top down, viewed from the front-left angle, parked on a car dealership lot, with distinctive kidney grilles visible and surrounded by several other vehicles. +06443.jpg A silver BMW 6 Series Convertible 2007 is captured from a front three-quarter view, highlighting its sleek, aerodynamic body and shiny chrome wheels, set against a car dealership background with rows of vehicles and trees. +00303.jpg A silver BMW 6 Series Convertible 2007 is seen from a high rear angle, with its top down and parked on a patterned stone surface, featuring sleek body lines and distinctive taillights. +04778.jpg A silver BMW 6 Series Convertible 2007 is seen from a rear three-quarter angle, emphasizing its sleek, aerodynamic curves and distinctive tail lights, set against a modern indoor showroom with wooden flooring and large branding elements on the wall. +07252.jpg The BMW 6 Series Convertible 2007 is shown in silver with a smooth, reflective texture, viewed from a front-side angle in a showroom with a plain backdrop, featuring prominent, large alloy wheels and a beige interior. +03370.jpg A low-resolution image of a dark-colored BMW 6 Series Convertible 2007 is captured from the front-left angle in a car dealership lot, showcasing its sleek design, light interior, and distinctive double kidney grille, with a backdrop of parked cars and trees. +03957.jpg A sleek black BMW 6 Series Convertible from 2007 is captured from a front three-quarter view, showcasing its shiny chrome accents and distinctive kidney grille, set against a scenic backdrop of gentle hills and greenery under a clear sky. +04469.jpg This BMW 6 Series Convertible 2007 appears in a sleek silver color with a glossy finish, viewed from the front-right angle in a showroom with large windows showcasing a city skyline silhouette, featuring prominent kidney grilles and distinctive headlight shape. +05892.jpg The BMW 6 Series Convertible 2007 is shown in a rear three-quarter view with a metallic gray finish, featuring a sleek, aerodynamic design and a distinctive dual exhaust system, set against a blurred, sandy rural background with a winding road. +04584.jpg The BMW 6 Series Convertible 2007, viewed from the front in a showroom with a checkered floor, features a glossy black finish with prominent kidney grilles and sleek headlights under a convertible roof. +07994.jpg A sleek silver BMW 6 Series Convertible 2007 is seen from a side angle with its top down, set against a backdrop of rocky cliffs and calm water under a clear sky. +02029.jpg The BMW 6 Series Convertible 2007 is shown in a shiny white color with a black convertible top, viewed from a front three-quarter angle in a parking lot, featuring prominent alloy wheels and sleek design lines against a backdrop of other parked cars and a beige wall. +03716.jpg A black BMW 6 Series Convertible 2007 is viewed from a rear three-quarter angle, featuring a clean glossy finish and a raised soft top, parked on a black and white checkerboard floor in a minimalist indoor setting. +06317.jpg The dark blue BMW 6 Series Convertible 2007, viewed from the front-left angle, features distinctive alloy wheels and a retracted soft top, set against a neutral, light-colored industrial background. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_ActiveHybrid_5_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_ActiveHybrid_5_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..d9bc261 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_ActiveHybrid_5_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +03038.jpg The BMW ActiveHybrid 5 Sedan 2012 is shown in a metallic light blue color with a sleek, reflective texture, viewed from a front-side angle in an indoor showroom environment, featuring distinctive kidney grilles and bold, dual exhausts. +00399.jpg The BMW ActiveHybrid 5 Sedan 2012 is shown in a metallic light blue color with a sleek body, captured from a rear-side angle on a modern suspension bridge, featuring prominent rear lights and a dual exhaust system, against a backdrop of overcast skies and distant urban buildings. +07574.jpg The BMW ActiveHybrid 5 Sedan 2012 is shown from a front-side angle, exhibiting a sleek dark blue color with a glossy texture, parked on a paved surface in front of a light beige building and greenery, and characterized by its prominent dual kidney grille and sporty alloy wheels. +01023.jpg The BMW ActiveHybrid 5 Sedan 2012 in the image is a sleek metallic gray with a glossy texture, viewed from a front-side angle against a coastal road backdrop, characterized by distinctive kidney grilles and aerodynamic body lines. +02144.jpg The BMW ActiveHybrid 5 Sedan 2012 in the image is viewed from a rear three-quarter angle, showcasing its sleek silver metallic finish, distinctive LED taillights, and the chrome "ActiveHybrid 5" badge, set against a serene ocean backdrop and cobblestone pavement. +01839.jpg The BMW ActiveHybrid 5 Sedan 2012 appears in a glossy silver-blue finish from a rear three-quarter angle, parked on a glossy white surface, highlighting its sleek contours, distinctive kidney grille, and modern taillights with a reflective showroom environment. +01714.jpg The BMW ActiveHybrid 5 Sedan 2012 is displayed in silver with a sleek, smooth finish, viewed from an angled front-left perspective on a cobblestone surface next to an ocean, featuring distinctive kidney grilles and alloy wheels. +05090.jpg A sleek silver BMW ActiveHybrid 5 Sedan 2012 is viewed from the side, parked on a cobblestone surface with an ocean backdrop, featuring distinctive alloy wheels and a streamlined body. +07501.jpg The BMW ActiveHybrid 5 Sedan 2012 appears in a sleek silver hue with a glossy texture, shown from a front three-quarter perspective on a coastal bridge with a cityscape backdrop, featuring distinctive kidney grilles and sharp, elongated headlights. +05514.jpg The BMW ActiveHybrid 5 Sedan 2012 is silver with a sleek texture, shown from the rear on a curving road, surrounded by trees and incorporating visible dual exhausts and prominent tail lights. +05720.jpg The BMW ActiveHybrid 5 Sedan 2012 is depicted in a metallic silver-blue color with a smooth texture, viewed from a rear three-quarter angle, navigating a winding road surrounded by tall green trees, with its distinct aerodynamic curves and twin exhausts visible. +06734.jpg The BMW ActiveHybrid 5 Sedan 2012 is shown in a sleek silver color with a metallic sheen, viewed from a side angle against a rocky coastal backdrop with crashing waves, highlighting its smooth curves and distinctive kidney grille. +04089.jpg The BMW ActiveHybrid 5 Sedan 2012 appears in a sleek silver color with a glossy texture, viewed from the front with distinct kidney grilles and LED headlights, set against a futuristic architectural background. +02258.jpg A silver BMW ActiveHybrid 5 Sedan 2012 is viewed from a low front three-quarter angle, showcasing its sleek hood and prominent kidney grille, against a backdrop of a dimly lit urban garage entrance. +03821.jpg The BMW ActiveHybrid 5 Sedan 2012 is a sleek, glossy white car captured in motion from a front three-quarter view, featuring its distinctive kidney grille and smooth body lines against a blurred urban backdrop. +04023.jpg The BMW ActiveHybrid 5 Sedan 2012 is depicted in a sleek silver color with a smooth texture, viewed from a front angle on a curving road, surrounded by a wooded background, featuring distinctive dual kidney grilles and sharp, modern headlights. +01841.jpg The car appears in a sleek silver color with a smooth texture, viewed from a side angle, set against a blurred, wooded background, featuring prominent five-spoke alloy wheels and the characteristic BMW kidney grille. +05839.jpg The BMW ActiveHybrid 5 Sedan 2012 appears in a metallic silver color with a smooth texture, viewed from a rear-side angle on a winding road set against a rocky and grassy backdrop, showcasing its streamlined design and signature rear taillights. +01868.jpg The BMW ActiveHybrid 5 Sedan 2012, shown in a front three-quarter view, features a metallic silver finish with smooth body lines, distinct kidney grille and LED headlights, set against a backdrop of an urban bridge and cloudy sky. +05710.jpg The BMW ActiveHybrid 5 Sedan 2012 appears in a sleek metallic silver with a glossy texture, viewed from a front-side angle showcasing its iconic kidney grille and smooth body lines, set against a blurred rural landscape with sparse trees and golden fields. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_M3_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_M3_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..305e1a5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_M3_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +05477.jpg The image shows a front view of a red BMW M3 Coupe 2012 with a glossy finish, black grille accents, located against a backdrop of a long, white building with arched details and visible roof. +04594.jpg The BMW M3 Coupe 2012 is viewed from the front-right angle, showcasing its sleek white body with a glossy finish, distinctive dual kidney grilles, and wide-set headlights against a dark studio background, emphasizing the car's aggressive stance and sporting five-spoke alloy wheels. +05478.jpg The BMW M3 Coupe 2012 is presented in a crisp white color with a sleek finish, captured from a front angle on a wooded road, highlighting its aggressive front grille, distinct hood bulge, and stylish multi-spoke wheels against a backdrop of bare trees. +01807.jpg The BMW M3 Coupe 2012 is shown in a three-quarter rear view with a glossy white finish, parked indoors against large industrial windows revealing an outside view of a bridge structure, showcasing its dual exhausts and sporty alloy wheels. +04840.jpg The BMW M3 Coupe 2012 appears in a vibrant orange color with a smooth texture, viewed side-on and in motion, against a blurred urban backdrop with yellow containers and greenery, featuring sleek black wheels and distinctive side vents. +03181.jpg The 2012 BMW M3 Coupe is portrayed from a rear angle in a vibrant red color with a reflective texture, set in a parking lot with palm trees against a mountainous backdrop, featuring quad exhaust tips and bright LED taillights for a sporty look. +07657.jpg The 2012 BMW M3 Coupe appears in a vibrant orange color with a glossy texture, viewed from a front three-quarter angle, set against an urban backdrop of illuminated shipping containers and a wet reflective pavement, highlighting its distinctive flared wheel arches and aggressive front fascia. +05867.jpg The BMW M3 Coupe 2012 is shown from the front, featuring a sleek silver metallic color with aggressive, aerodynamic lines, distinctive wide kidney grilles, and uniquely shaped circular headlights, set against a plain, evenly lit studio background. +02287.jpg The BMW M3 Coupe 2012 appears in a pristine white color with a smooth texture, captured from a frontal viewpoint under bright lighting that highlights its distinct round headlights and aggressive bumper design, set against an industrial warehouse backdrop with metal and brick elements. +07081.jpg The BMW M3 Coupe 2012 is shown in a front-facing view on a curving road, with a vibrant red color and smooth texture, surrounded by a backdrop of lush green trees, featuring its signature kidney grille and sharp headlights despite the low resolution. +07187.jpg The BMW M3 Coupe 2012 is captured in a front-facing view, showcasing its sleek white body with a glossy finish, prominent kidney grille, and distinctive hood bulges, set against a blurred urban backdrop that emphasizes speed and motion. +04630.jpg The BMW M3 Coupe 2012 is captured in a low-angle side view with a striking red color, set against a dramatic cloudy sky and palm trees in the background, featuring aggressive body lines, distinctive kidney grille, and sporty alloy wheels. +01489.jpg The BMW M3 Coupe 2012 is a sleek silver vehicle viewed from the front-left perspective, showcased on a glossy indoor showroom floor with distinct multi-spoke alloy wheels and a subtle front hood scoop. +04777.jpg The BMW M3 Coupe 2012 appears in a glossy white color with a sleek, aerodynamic profile and a front three-quarter viewpoint, set against a suburban driveway with brick houses in the background, featuring distinctive alloy wheels and the iconic dual kidney grille. +01443.jpg The BMW M3 Coupe 2012 is captured in a vibrant red color with a glossy texture, viewed from a rear three-quarter angle in an empty parking lot with palm trees, showcasing its distinctive quad exhausts and sporty rear spoiler. +00546.jpg The BMW M3 Coupe 2012 in the image appears in a glossy white color with a carbon-fiber-like roof, seen from a front three-quarter view, parked in front of a showroom with large windows, featuring distinctive alloy wheels and the iconic BMW kidney grille. +06758.jpg The image shows a red BMW M3 Coupe 2012 with a glossy finish, viewed from the front on a racetrack, featuring the distinct kidney grille and prominent headlights. +00592.jpg The BMW M3 Coupe 2012 in the image is a glossy red with a contrasting black roof, seen from a rear three-quarter angle on a sunny day with a blurred earthy background, showcasing its quad exhausts and aggressive sporty silhouette. +05584.jpg The BMW M3 Coupe 2012 in the image has a sleek silver metallic finish with a smooth texture, seen from a three-quarter front angle on a paved road, set against a grassy, slightly blurred landscape, and features prominent front grilles and a streamlined silhouette. +01993.jpg The BMW M3 Coupe 2012 is depicted in a vibrant red color with a sleek, glossy texture, viewed from an angled front-right perspective on a mountain road, showcasing its iconic kidney grille and sporty alloy wheels against a backdrop of rugged, hilly terrain. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_M5_Sedan_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_M5_Sedan_2010_descriptions.txt new file mode 100644 index 0000000..3a6b111 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_M5_Sedan_2010_descriptions.txt @@ -0,0 +1,20 @@ +01582.jpg The image shows a dark blue BMW M5 Sedan 2010 with a polished texture, viewed from a front three-quarter angle, parked on a gravel surface with a stone wall in the background, featuring large alloy wheels, distinctive kidney grilles, and sleek headlights. +04742.jpg The BMW M5 Sedan 2010 in the image is a vibrant orange with a smooth texture, viewed from a front three-quarter angle, parked on a clear asphalt road with an open sky backdrop, featuring large chrome rims and a sporty body kit. +05379.jpg The 2010 BMW M5 Sedan is shown in a sleek, metallic silver with glossy texture, captured in a side-front view amidst a blurred urban backdrop, highlighting its distinctive kidney grille and sharp headlight design. +07731.jpg A purple BMW M5 Sedan 2010 is captured from a front-side angle, displaying its distinctive kidney grille and alloy wheels as it moves along a blurred coastal road backdrop. +03951.jpg The image showcases a silver BMW M5 Sedan 2010 viewed from the rear three-quarters, featuring a smooth metallic texture, dual exhausts, and distinct red-and-white barriers in a racing track environment. +03852.jpg A sleek, metallic silver BMW M5 Sedan 2010 is captured from a front three-quarter view, showcasing its aerodynamic contours and distinctive kidney grille, with black alloy wheels against a minimalistic white studio backdrop. +05290.jpg The BMW M5 Sedan 2010 is captured from a front three-quarter view, showcasing its glossy deep burgundy color and sleek lines, with a tree-lined road stretching into the background, highlighting its signature kidney grille and sporty stance. +05834.jpg The BMW M5 Sedan 2010 appears in a glossy black finish with a frontal viewpoint, showcasing its distinct twin kidney grilles against a subtle indoor showroom background. +02426.jpg The low-resolution image shows a shiny black BMW M5 Sedan 2010 viewed from the rear three-quarter angle, highlighting its sleek contours and distinctive quad exhaust pipes, set on a driveway surrounded by a wooded residential area. +07286.jpg The BMW M5 Sedan 2010 is depicted in a metallic silver-blue color, captured from a rear three-quarter view, with a smooth texture, prominent alloy wheels, and set against a two-tone gray and white studio backdrop. +04351.jpg The 2010 BMW M5 Sedan is shown in a dynamic motion shot from a slightly front-left perspective, featuring a white body with distinctive blue and red racing stripes, a sleek and aerodynamic design with large wheels, and set against a blurred background of trees and buildings, emphasizing its speed. +00792.jpg The 2010 BMW M5 Sedan is seen from a low front angle on a winding mountain road, featuring a silver metallic finish with sleek contours, distinctive round headlights, and the iconic kidney grille, set against a scenic backdrop of trees and hills. +02468.jpg The BMW M5 Sedan 2010 appears in a glossy silver color with a side profile viewpoint, set against a rugged, rocky background, showcasing its characteristic sleek lines, prominent wheel arches, and distinctive five-spoke alloy wheels. +01854.jpg A silver BMW M5 Sedan 2010 is captured from a low-angle, three-quarter front view, showcasing its smooth metallic texture and distinctive kidney grille, with a blurred forest setting emphasizing speed and movement. +03545.jpg The BMW M5 Sedan 2010 appears in a glossy white finish viewed from the rear, showcasing dual exhausts on each side, with a grassy background and trees, and has distinctively tinted windows and red taillights. +02232.jpg The BMW M5 Sedan 2010 in the image is a sleek metallic gray car viewed from a rear three-quarter angle, displaying its wide rear tires and distinctive dual exhausts in an indoor showroom with a red carpet and ambient lighting. +05547.jpg The BMW M5 Sedan 2010 is photographed from a front-side angle on a winding road with rugged terrain, displaying a sleek black exterior with tinted windows and distinctive sporty wheels, under a softly lit sky. +04385.jpg The BMW M5 Sedan 2010 appears in a sleek black color with a glossy finish, seen from a three-quarter front view, parked by a seaside with overcast skies, and features distinctive large alloy wheels and signature kidney grilles. +03298.jpg The 2010 BMW M5 Sedan is shown in a low-resolution side-front view, exhibiting a metallic blue color with a glossy sheen, while parked in a sandy outdoor area with a backdrop of rustic, partially constructed buildings, and features distinctive aerodynamic contours, dual front grilles, and sporty alloy wheels. +03486.jpg The image depicts a rear three-quarter view of a metallic silver BMW M5 Sedan 2010 with distinctive quad exhaust pipes, sporty alloy wheels, and the car situated on a lit urban street with a modern railing background. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_M6_Convertible_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_M6_Convertible_2010_descriptions.txt new file mode 100644 index 0000000..4030ade --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_M6_Convertible_2010_descriptions.txt @@ -0,0 +1,20 @@ +04052.jpg The BMW M6 Convertible 2010 appears in a sleek metallic taupe color with a low-profile side view, featuring its distinctive kidney grille and smooth contours amidst a lush green, blurred countryside background. +07759.jpg The BMW M6 Convertible 2010 is depicted in sleek black with a glossy finish, seen from a front three-quarter view with the top down, parked on a pavement surrounded by dense green foliage, and features distinctive wide-spoke alloy wheels and a signature BMW kidney grille. +02681.jpg The BMW M6 Convertible 2010 is seen from the side in motion on a wet surface, with a metallic silver body and a brown interior, set against a background of fountains and arches, showcasing its sleek design and sporty features. +03091.jpg The BMW M6 Convertible 2010 is shown from a frontal viewpoint with a smooth white exterior, prominent kidney grille, distinctive headlights, and a simple outdoor background with blurred vehicles and a clear sky. +03174.jpg The BMW M6 Convertible 2010 in the image appears sleek in a glossy black finish, viewed from the front-left angle against a blurred natural background, with its distinctive large kidney grille, aggressive front bumper, and partially visible red interior. +06226.jpg The BMW M6 Convertible 2010 is shown from a three-quarter front view, with a sleek white exterior and a soft-top roof set against a picturesque marina backdrop, featuring rounded headlights and signature kidney grilles, along with five-spoke alloy wheels and a visible red interior. +04339.jpg The BMW M6 Convertible 2010 is presented in a vibrant metallic red hue with a glossy finish, viewed from a low front three-quarter angle, set against a lush green forested backdrop, showcasing its distinctive kidney grille and stylish alloy wheels. +00022.jpg The image shows a sleek black BMW M6 Convertible 2010 from a rear-side angle, highlighting its streamlined body and open top against a plain white background, with distinctive alloy wheels and visible exhaust pipes. +08048.jpg The black BMW M6 Convertible 2010, viewed from an elevated front angle, showcases a sleek matte texture with a visible dual-kidney grille, set in a minimalist studio environment highlighting its soft top-down design and prominent alloy wheels. +04814.jpg The BMW M6 Convertible 2010 is shown in a smooth white finish with chrome exhaust tips, viewed from a rear three-quarter angle against a scenic coastal backdrop featuring yachts and a hilly landscape. +04693.jpg A sleek black BMW M6 Convertible 2010 is shown from a side viewpoint on a plain grey background, highlighting its sporty contour and wheels with a low-profile tire design. +06712.jpg The BMW M6 Convertible 2010 in the image displays a glossy black finish with a front-facing viewpoint, set against a backdrop of green trees, highlighting its iconic kidney grille and large, angled headlights. +00709.jpg The BMW M6 Convertible 2010, viewed from a low front three-quarter angle, showcases a gleaming white exterior with smooth textures, red leather interior, and a distinctive black kidney grille against an overcast sky and asphalt road backdrop with a subtle horizon line in the distance. +08033.jpg The BMW M6 Convertible 2010 appears in a glossy navy blue finish with its top down, viewed from a front three-quarter angle on a winding road, with distinctive features including sleek headlights, a prominent grille, and a rocky, earth-toned background. +02918.jpg A black BMW M6 Convertible 2010 is depicted from a front-left angled viewpoint, highlighting its sporty and sleek design with a prominent grille, against a simple, dark background. +02774.jpg The BMW M6 Convertible 2010 appears in a metallic burgundy color with a sleek, aerodynamic pose viewed from the side, set against a dealership environment with large windows and a parking area, featuring silver alloy wheels and a tan interior visible through the open top. +03014.jpg A blue BMW M6 Convertible 2010 with a down convertible top is viewed from the rear side against an airfield background, with distinctive quad exhausts and a visible rear spoiler. +04294.jpg The BMW M6 Convertible 2010 appears in a glossy white color with a black soft top and large, shiny chrome wheels, viewed from a rear three-quarter angle on a city street with vehicles and traffic in the background, showcasing distinctive taillights and dual exhausts. +06498.jpg The BMW M6 Convertible 2010 is displayed in a low-angle view showcasing its sleek white exterior with a smooth texture, set against a grassy lawn with a few trees and a suburban backdrop, and features its distinctive twin-kidney grille and stylish alloy wheels prominently. +07672.jpg The 2010 BMW M6 Convertible is shown in a vibrant metallic red with a sleek glossy finish, viewed from a front-side angle against a sandy beach background, featuring its iconic kidney grille and five-spoke alloy wheels, with the top down revealing a red interior. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_X3_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_X3_SUV_2012_descriptions.txt new file mode 100644 index 0000000..2a5d993 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_X3_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +05897.jpg The BMW X3 SUV 2012 appears in a metallic silver color with a smooth texture, viewed from a low front-angle showcasing its kidney grille and headlights, set against an urban backdrop of reflective glass buildings. +08068.jpg The BMW X3 SUV 2012 is shown from a front-side angle in motion, displaying a sleek silver body with a shiny, smooth texture, distinct dual kidney grilles, and set against a blurred urban backdrop, highlighting its sharp headlights and elegant wheel design. +00639.jpg The BMW X3 SUV 2012 appears in a metallic silver hue with a slightly matte texture, viewed from a front three-quarter angle, showcasing its distinct kidney grille and angular headlights against the backdrop of a rustic house with blue siding. +03339.jpg The BMW X3 SUV 2012 is a metallic burgundy vehicle shown from a front three-quarter angle against a backdrop of gray concrete steps, featuring its signature kidney grille and prominent wheel arches. +07511.jpg The BMW X3 SUV 2012 is depicted in a glossy black finish with a side profile view, featuring distinctively large alloy wheels against a plain white background, highlighting its streamlined body and sharp window contours. +01079.jpg The 2012 BMW X3 SUV in the image is shown in a glossy silver color from a side profile, highlighting its sleek contours against a mountainous backdrop, with distinctive kidney grilles and five-spoke alloy wheels. +02010.jpg The low-resolution image depicts a front view of a silver BMW X3 SUV 2012 on a winding road with a rocky, shrub-dotted hillside backdrop, featuring distinctive kidney grilles and angular headlamps. +00164.jpg The low-resolution image depicts a black BMW X3 SUV from 2012, viewed from the front-left angle, showcased on a sunny day in an urban setting with a building and greenery in the background, highlighting its distinctive kidney grille and five-spoke alloy wheels. +03022.jpg The BMW X3 SUV 2012 is seen in a metallic beige color with a polished texture, viewed from the front-right angle, set against a modern urban backdrop featuring concrete and greenery, highlighting its distinctive grille and sleek profile. +07480.jpg The low-resolution image shows a metallic brown 2012 BMW X3 SUV viewed from a frontal angle, parked on a concrete surface with a plain white wall in the background, displaying its signature kidney grille and angular headlights. +01579.jpg The 2012 BMW X3 SUV is captured in a side profile view, featuring a sleek dark blue exterior with a smooth finish, set against a blurred outdoor background with greenery, highlighting its distinctive kidney grille and sharp headlight design despite the low resolution. +03361.jpg The BMW X3 SUV 2012 in the image is a glossy black color with a metallic texture, viewed from a three-quarter front angle, positioned in a parking lot with other vehicles and trees in the background, featuring prominent kidney grilles and distinctive alloy wheels. +04375.jpg The BMW X3 SUV 2012 is depicted from a front-side angle, showcasing its silver color and smooth texture, set against a winding forest road with tall trees, featuring distinct kidney grilles and sharp headlights. +02702.jpg A silver BMW X3 SUV 2012 is viewed from a front three-quarter angle, set against a dark wall with vertical bushes, featuring chrome kidney grilles, clear headlight lenses, and standard alloy wheels. +06214.jpg The BMW X3 SUV 2012 appears in a front view showcasing a metallic silver color with a smooth texture, featuring distinctive kidney grilles and circular fog lights, set against a plain white background. +04527.jpg The image shows a side-rear view of a maroon BMW X3 SUV 2012 with a glossy finish, parked on a smooth paved surface against a modern, colorful architectural backdrop with orange and yellow elements. +02901.jpg The BMW X3 SUV 2012 is a silver vehicle with a smooth metallic finish, viewed from a low front angle, parked under an overpass with a shadowed concrete backdrop, featuring a prominent kidney grille and round headlamps. +01568.jpg The BMW X3 SUV 2012 appears in a metallic red color with a glossy finish, viewed from a front angled perspective showing its signature kidney grille and large headlights, set against a rocky outdoor landscape with mountains in the background. +01064.jpg The BMW X3 SUV 2012 is shown in a silver metallic color with a sleek, modern design, viewed from a front three-quarter angle on a road next to a rocky hillside, featuring prominent kidney grilles and angular headlamps. +06308.jpg The BMW X3 SUV 2012, viewed from a front-side angle, appears metallic silver with a textured sheen, displayed in a modern urban setting atop a high-rise parking structure surrounded by glass skyscrapers, showcasing distinctive kidney grilles and rounded headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_X5_SUV_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_X5_SUV_2007_descriptions.txt new file mode 100644 index 0000000..fb10b40 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_X5_SUV_2007_descriptions.txt @@ -0,0 +1,20 @@ +06559.jpg The 2007 BMW X5 SUV appears in a glossy black finish with a front three-quarter view, showcasing its large alloy wheels, distinctive kidney grille, and side step bars, set against a simple indoor showroom backdrop. +06620.jpg The BMW X5 SUV 2007 appears in a sleek metallic gray with a smooth texture viewed from a front-left angle, set against a blurred green wooded background on a gently curving road, featuring its iconic kidney grille and daytime running lights. +02046.jpg The BMW X5 SUV 2007 appears in a smooth black matte finish shown in a full side profile, highlighting its distinctively large wheel arches and iconic kidney grilles against a plain white background. +04719.jpg A sleek black BMW X5 SUV from 2007 is seen from a front three-quarter view, parked on a brick driveway in a car dealership setting, showcasing its distinct kidney grille, silver side steps, and large wheels against a backdrop of other parked cars and glass-walled buildings. +07389.jpg The 2007 BMW X5 SUV appears in metallic gray with a glossy finish, viewed from a low-angle front-right perspective, parked on an asphalt road beside a green lawn with a commercial building in the background, featuring prominent kidney grilles, circular fog lights, and five-spoke alloy wheels. +07311.jpg The silver BMW X5 SUV 2007, viewed from the rear angle, features red tail lights and a dual exhaust, set against a suburban environment with a grassy field and clear sky. +06676.jpg The BMW X5 SUV 2007 is shown from a rear viewpoint in a metallic gray color, featuring distinctive horizontal tail lights and a noticeable rear wiper, set against a background of a car dealership lot. +06204.jpg The 2007 BMW X5 SUV appears in metallic silver with a smooth texture, viewed from the front-left angle, parked in an urban setting with glass buildings in the background, featuring prominent kidney grilles and sleek headlights. +00650.jpg The BMW X5 SUV 2007 appears in metallic gray with a shiny, smooth texture, viewed from a front-side angle in a sunny parking lot with a backdrop of office buildings and trees, featuring distinctive kidney grilles and sleek, rounded headlights. +03935.jpg The BMW X5 SUV 2007 is a metallic brown vehicle with a sleek, polished texture, viewed from the rear-left perspective against a backdrop of ocean waves and a partly cloudy sky, featuring prominent rear lights and dual exhausts. +01966.jpg The BMW X5 SUV 2007 appears in a metallic gray color with a sleek texture, viewed from the rear three-quarter angle against an urban backdrop with modern structures, featuring distinctively large taillights and five-spoke alloy wheels. +08118.jpg A silver BMW X5 SUV 2007 is shown from a front-side angle on a paved road with a backdrop of trees and hills, featuring prominent headlights and a roof rail, despite the low resolution. +00366.jpg The BMW X5 SUV 2007 is shown in a silver color with a sleek, smooth texture, viewed from a front three-quarter angle, set against a blurred background of dense greenery, with its distinct kidney grille and angular headlights clearly visible. +06027.jpg The BMW X5 SUV 2007 in the image is dark metallic with a glossy texture, viewed from a three-quarter front angle with a forested and residential backdrop, featuring distinct dual kidney grilles and large alloy wheels. +04736.jpg The BMW X5 SUV 2007 in the image appears in a metallic silver tone with a slightly rugged texture, viewed from a three-quarter front angle, set against a backdrop of distant mountains and a clear sky, featuring distinct kidney grilles and five-spoke wheels. +05463.jpg The BMW X5 SUV 2007 appears in a sleek gray color with a smooth texture, viewed from a rear three-quarter angle on a wet pavement, featuring distinctive red taillights and a rooftop spoiler, set against a misty, grassy landscape background. +01613.jpg The BMW X5 SUV 2007 is silver with a smooth texture, viewed from a front-left angle, set against a grassy hillside, and features distinctive curved headlights and a kidney grille. +07134.jpg The BMW X5 SUV 2007 is a silver vehicle with a smooth, glossy texture, viewed from a three-quarter angle showcasing its raised stance and roof rails, set against a simple two-tone gray background. +03180.jpg The BMW X5 SUV 2007 is viewed from a front-left angle, showcasing its metallic silver color and smooth texture, with a distinct setting against reflective modern building windows, featuring characteristic kidney grilles and robust wheel arches. +01656.jpg A metallic gray BMW X5 SUV 2007 is seen from the front-left angle, featuring a prominent kidney grille and distinctive dual round headlights, parked on a gravel path with a blurred green vegetation background. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_X6_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_X6_SUV_2012_descriptions.txt new file mode 100644 index 0000000..597b1f0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_X6_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +01991.jpg The image shows a red BMW X6 SUV from 2012 viewed from the front-left angle, featuring large kidney grilles, prominent wheel arches, and shiny chrome accents, set against a rugged, rocky outdoor landscape. +07767.jpg The BMW X6 SUV 2012 in the image is white with a glossy texture, shown from a front-facing viewpoint against a backdrop of industrial buildings, featuring its prominent kidney grille and distinctive headlight design. +02509.jpg The BMW X6 SUV 2012 appears in a metallic dark gray color with a smooth, glossy texture, viewed from a rear three-quarter angle against a minimal concrete wall backdrop, featuring its distinctive coupe-like roofline and muscular rear haunches. +05877.jpg The BMW X6 SUV 2012 appears in a gloss deep red color with a sleek, curvaceous body, captured from a front three-quarter viewpoint on a road, showcasing its signature kidney grille and bold front bumper, against a blurred forest background. +00977.jpg The BMW X6 SUV 2012 appears in a bright white color with a smooth texture, viewed from a front-side angle, set against a clear road with grassy surroundings, featuring its distinctive kidney grille and high ground clearance despite the low resolution. +06714.jpg The black BMW X6 SUV 2012, photographed from a front three-quarter angle on a snowy road, features distinctive kidney grilles and large wheel arches against a muted, wintry landscape. +04149.jpg The photo shows a red BMW X6 SUV 2012 with a glossy texture, captured from a front three-quarter view against a neutral, split grey and white background, highlighting its distinctive kidney grille and rounded contours. +03237.jpg The BMW X6 SUV 2012 is captured from a rear viewpoint, showcasing a glossy red finish with smooth curves, dual exhaust tips, distinctive taillights, and its emblem and model insignia, set against a minimal studio-style white and dark floor background. +07363.jpg The BMW X6 SUV 2012 appears in a metallic silver color with a sleek and glossy texture, viewed from a front three-quarter angle, set against a background of grass and trees, featuring characteristic round headlights and a prominent kidney grille. +05535.jpg The red BMW X6 SUV 2012 is captured from a side angle on a smooth asphalt road with a blurred background, showcasing its sleek body, distinct rear slope, and rounded wheel arches. +07651.jpg The BMW X6 SUV 2012 is a metallic gray vehicle with a glossy texture, positioned at a three-quarter front view in a dealership parking lot, featuring distinctive kidney grilles and large alloy wheels, with a modern building in the background. +07417.jpg The BMW X6 SUV 2012 is seen in a side profile view, showcasing a sleek gray color with a smooth and glossy texture, driving on a road set against a blurred, rugged mountainous background, featuring its distinctive coupe-like roofline and prominent wheel arches. +00930.jpg The image shows a side-view of a shiny red BMW X6 SUV 2012 against a clear blue sky, parked on sandy terrain, with distinct features such as a sloping roofline and large silver alloy wheels. +02975.jpg The BMW X6 SUV 2012 is displayed in a side-rear view with a sleek white exterior featuring a smooth, glossy texture, positioned on a suburban road with a grassy background, emphasizing its distinctive coupe-like roofline and prominent rear lights. +03736.jpg The BMW X6 SUV 2012 is a silver vehicle with a sleek, smooth texture viewed from a frontal-right angle, set against a plain indoor backdrop highlighting its prominent grille and sporty stance. +07718.jpg The 2012 BMW X6 SUV in the image appears in a glossy red finish viewed from the front-left angle, featuring distinctive kidney grilles, large alloy wheels, and parked on a sunny street with trees in the background. +07678.jpg The BMW X6 SUV 2012 is captured from a frontal view displaying its red body with a smooth, glossy texture, set against a clear blue sky and sandy terrain, highlighting its distinctive kidney grille and muscular stance. +06598.jpg The BMW X6 SUV 2012 in the image is a sleek, metallic light blue with a glossy texture, viewed from a front-side angle, set against an urban backdrop featuring modern glass buildings and palm trees, with its characteristic kidney grille and bold headlights prominently visible. +00579.jpg The BMW X6 SUV 2012 is depicted in a vibrant red color with a glossy finish, viewed from a three-quarter front angle, parked in an industrial-style concrete environment, showcasing its distinctive kidney grille and sporty contours. +01990.jpg The 2012 BMW X6 SUV appears in a metallic maroon color with a glossy texture, viewed from a front three-quarter angle against an urban dealership backdrop, featuring distinctive wide kidney grilles and circular fog lights. diff --git a/utils/area/descriptions/Car/generated_descriptions/BMW_Z4_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/BMW_Z4_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..1af57cc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/BMW_Z4_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +05868.jpg The BMW Z4 Convertible 2012 appears in a sleek silver color with a smooth texture, viewed from a slightly front-left angle, situated in a modern, high-ceilinged parking structure with prominent lines above, showcasing its distinctive kidney grille and sporty chrome wheels. +04975.jpg The BMW Z4 Convertible 2012 appears in a glossy white finish with a red interior, captured from a three-quarter front view, parked on a concrete surface in front of a building with reflective glass and surrounded by some greenery, highlighting its sleek design, distinctive kidney grille, and alloy wheels. +00675.jpg The BMW Z4 Convertible 2012 is a sleek red roadster with smooth curves and a glossy finish, captured in a side profile view speeding along a blurred road with autumnal trees in the background, highlighting its aerodynamic silhouette and distinctively styled wheels. +04782.jpg The BMW Z4 Convertible 2012 is viewed from the front three-quarter angle, showcasing its vibrant red color with a sleek, glossy texture, set against a hilly landscape with a distant, hazy ocean backdrop, and features distinctive kidney grilles and elegant alloy wheels. +01994.jpg The image shows a red BMW Z4 Convertible 2012 with a glossy finish, captured from a front three-quarter angle, driving on a curved road with greenery in the background, highlighting its sleek silhouette and prominent grille. +04487.jpg The BMW Z4 Convertible 2012 is vividly painted in a glossy yellow finish with a sleek, aerodynamic design, viewed from an angled front perspective inside a garage-like setting, highlighting its kidney grille, sharp headlights, and silver alloy wheels against a simple gray brick and white wall backdrop. +03620.jpg The BMW Z4 Convertible 2012 is vividly red with a sleek, glossy texture, viewed in profile against a backdrop of corrugated gray metal, showcasing its aerodynamic lines, prominent kidney grille, and silver alloy wheels. +00044.jpg The BMW Z4 Convertible 2012 is shown in a dynamic front-angle view, painted in a glossy red with smooth contours, driving on a curving race track surrounded by dry terrain and sparse vegetation. +02686.jpg The BMW Z4 Convertible 2012 is depicted in a glossy red finish with the top down, viewed from a front-side angle against a backdrop of sandy cliffs, showcasing its sleek lines and distinctive kidney grille. +03347.jpg A sleek, metallic blue BMW Z4 Convertible 2012 is captured in a side view on a curving road surrounded by lush green hills, showcasing its open roof, aerodynamic contours, and distinctive kidney grille, with bright silver wheels enhancing its dynamic appearance. +04927.jpg The BMW Z4 Convertible 2012 is a vibrant yellow sports car with a sleek, glossy texture, viewed from a front three-quarter angle, positioned against a lush, green landscaped backdrop, featuring prominent kidney grilles and stylish alloy wheels. +04972.jpg The image shows a metallic silver BMW Z4 Convertible 2012 viewed from the rear with its sporty twin roll bars, sleek taillights, and the car sits on an open road against a clear blue sky. +03115.jpg A white BMW Z4 Convertible 2012 is viewed from the front in a showroom with a well-lit, spacious environment, featuring prominent kidney grilles, angular headlights, and surrounded by other cars in the background. +01909.jpg The BMW Z4 Convertible 2012 is shown in a vibrant red color with a smooth finish, viewed from a front-side angle, parked on a concrete surface near a glass-walled building with other vehicles in the background, and it features a distinct kidney grille and sleek, angular headlights. +00657.jpg The low-resolution image shows a front three-quarter view of a silver BMW Z4 Convertible 2012 with a sleek, smooth metallic finish, distinctive kidney grille, and set against a plain, light-colored indoor background. +05852.jpg The BMW Z4 Convertible 2012 appears in a crisp white color with a smooth texture, viewed from the rear three-quarters with the top down, set against a rural backdrop of grass and trees with a dirt road, showcasing its distinctively sleek taillights and sporty dual exhausts. +02343.jpg The BMW Z4 Convertible 2012 is seen from the front angle, showcasing its bright yellow color with a glossy finish, twin circular headlights, and sleek, aerodynamic design, set against a backdrop of greenery and a stone path under a sunny sky. +06411.jpg The BMW Z4 Convertible 2012 is a yellow car with a glossy texture, viewed from the front three-quarter angle, set in a showroom environment with large windows, showcasing its signature kidney grille and sleek alloy wheels. +00716.jpg A sleek black BMW Z4 Convertible 2012 is viewed from the front-left angle under a white tent, showcasing its sharp headlights, kidney grille, and five-spoke alloy wheels. +05258.jpg The BMW Z4 Convertible 2012 is depicted in a low-resolution image with a sleek white body and a smooth texture, viewed from the rear on a coastal road with cliffs and ocean in the background, showcasing its distinctive dual exhausts and Z4 badging. diff --git a/utils/area/descriptions/Car/generated_descriptions/Bentley_Arnage_Sedan_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Bentley_Arnage_Sedan_2009_descriptions.txt new file mode 100644 index 0000000..21ef49f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Bentley_Arnage_Sedan_2009_descriptions.txt @@ -0,0 +1,20 @@ +06128.jpg The Bentley Arnage Sedan 2009 is displayed in a rear three-quarter view with a glossy dark blue exterior, chrome accents, distinctive oval taillights, and is set against a plain white background. +00513.jpg The Bentley Arnage Sedan 2009 is displayed in a side profile view, showcasing its sleek black finish with a polished, glossy texture against a backdrop of palm trees and a paved driveway, featuring distinctive chrome alloy wheels and a classic, elongated silhouette. +08015.jpg The Bentley Arnage Sedan 2009 appears in a polished black finish with chrome detailing, viewed from the side, parked in a sophisticated urban setting, featuring distinctive round headlamps and a luxurious, classic sedan silhouette with large, dark alloy wheels. +02000.jpg The Bentley Arnage Sedan 2009 is shown in a side profile view with a sleek, dark gray metallic color and smooth texture, parked on a city street beside a modern building with glass and stone elements, featuring distinct round headlights and chrome-accented wheels. +01352.jpg The image shows a black Bentley Arnage Sedan 2009 from a rear three-quarter view with a sleek, glossy finish, parked in a minimalistic white studio setting, highlighting its distinct rounded taillights and chrome accents. +05695.jpg The Bentley Arnage Sedan 2009 is seen in a side profile with a sleek black exterior boasting a glossy finish, set against a blurred, illuminated urban backdrop, and marked by its distinct chrome accents and classic, elongated silhouette. +05454.jpg The Bentley Arnage Sedan 2009 appears in a glossy black finish with a metallic texture, viewed from a front three-quarter angle in an indoor showroom setting, featuring distinctive round headlights and a prominent grille, with reflections highlighting its sleek contours. +03273.jpg The Bentley Arnage Sedan 2009, shown in glossy black with silver alloy wheels, is viewed from the rear-left angle against a backdrop of a tree-lined landscape, featuring distinctive chrome trim and dual round taillights. +00263.jpg A sleek, metallic gray Bentley Arnage Sedan 2009 is parked in an urban night setting, seen from a front three-quarter view with its distinctive grille clearly visible, surrounded by illuminated streaks of moving lights on a cobblestone street. +08124.jpg The Bentley Arnage Sedan 2009 appears in a glossy black finish with chrome accents, viewed from a front three-quarter angle on a motion-blurred road with a green, slightly hilly background, featuring distinctive round headlights and a prominent mesh grille. +02534.jpg A sleek, dark-colored Bentley Arnage Sedan 2009 is captured in a three-quarter frontal view against the iconic backdrop of the Golden Gate Bridge, showcasing its classic mesh grille, round headlamps, and polished alloy wheels. +05341.jpg A sleek black Bentley Arnage Sedan 2009 is captured in a side profile view with a reflective glossy finish, showcasing its classic elongated silhouette and distinctive chrome accents against a blurred greenery backdrop as it speeds down the road. +03070.jpg The Bentley Arnage Sedan 2009 in the image appears in a glossy black finish with a prominent front grille design, four circular headlights, and is viewed from a front-three-quarter angle set against a structured parking environment with paving stones and other parked vehicles in the background. +07109.jpg The Bentley Arnage Sedan 2009 in the image exhibits a sleek, metallic dark gray exterior with a glossy finish, viewed from a front-left angle, prominently showcasing its signature mesh grille, quad round headlights, and a blurred urban background suggesting motion. +07154.jpg The Bentley Arnage Sedan 2009 in the image is a dark-colored vehicle with a glossy finish, captured from the front displaying its distinctive grille and circular headlights, set against a winding road with greenery and a metal guardrail in the background. +02260.jpg A dark blue Bentley Arnage Sedan 2009 is viewed from the front-left angle, showcasing its shining metallic texture, classic round headlights, and distinctive grille, parked on a city street with tall windows and a storefront in the background. +05875.jpg This Bentley Arnage Sedan 2009, seen from a front-side angle, features a glossy black finish with chrome accents, sitting in an upscale urban environment with distinctive round headlights, a prominent grille, and multi-spoke alloy wheels. +05865.jpg A black Bentley Arnage Sedan 2009 is seen from a front angle on a sunlit, gravel surface, exhibiting its signature chrome grille and round headlights, surrounded by a backdrop of greenery and industrial elements. +00168.jpg The Bentley Arnage Sedan 2009 appears in a sleek, glossy black finish with a rear three-quarter viewpoint, showcasing its elegant curves and distinctive dual exhausts, set against a modern urban backdrop with reflective glass and concrete surfaces. +01522.jpg The image shows a black Bentley Arnage Sedan 2009 with a glossy, reflective texture viewed from a front-side angle, parked on a smooth driveway in front of a dealership with large glass doors, featuring distinguishing chrome accents and five-spoke alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_Flying_Spur_Sedan_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_Flying_Spur_Sedan_2007_descriptions.txt new file mode 100644 index 0000000..5495401 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_Flying_Spur_Sedan_2007_descriptions.txt @@ -0,0 +1,20 @@ +03149.jpg The Bentley Continental Flying Spur Sedan 2007 is viewed from the front-left angle, showcasing its metallic silver color with a glossy finish, distinct chrome grille, and round headlights under harsh indoor lighting at an exhibition, surrounded by a blurred crowd backdrop. +01677.jpg The Bentley Continental Flying Spur Sedan 2007 is depicted in a front three-quarter view with a sleek gray metallic finish, featuring distinctive circular headlights, a large front grille, and is situated on a paved surface by a marina backdrop with trees and sailboats. +05923.jpg The Bentley Continental Flying Spur Sedan 2007 appears in a metallic silver color with a smooth texture, viewed from a front three-quarter angle, parked in a modern urban setting with a distinctive glass and concrete building backdrop, featuring iconic round headlights and a wide grille. +07618.jpg The rear view of the black Bentley Continental Flying Spur Sedan 2007, showcasing its smooth, glossy finish, distinctive twin oval exhausts, and iconic red taillights, is set against a blurred natural landscape background. +05542.jpg The 2007 Bentley Continental Flying Spur Sedan, viewed in profile against a mountainous backdrop with a reflective surface beneath, showcases a sleek gray exterior with distinctive round headlights and polished alloy wheels. +01270.jpg The Bentley Continental Flying Spur Sedan 2007 appears in a silver-grey color with a sleek, glossy texture, captured from a frontal side angle against a rugged rocky coastal background, highlighting its distinctive grille and circular headlights. +06369.jpg The Bentley Continental Flying Spur Sedan 2007 appears in a sleek silver color with a polished texture, viewed from the front-side angle showcasing its iconic quad headlights, in a modern, minimalist urban setting with clean lines and smooth surfaces in the background. +06505.jpg A glossy black Bentley Continental Flying Spur Sedan 2007 is viewed from the front-right angle, parked on a driveway with a brick garage backdrop, showcasing its distinctive chrome grille, round headlights, and shiny alloy wheels. +07396.jpg The Bentley Continental Flying Spur Sedan 2007, viewed from a rear three-quarter angle, features a sleek grey color with a glossy finish, parked on a checkered pavement with a palm tree and other vehicles faintly visible in the sunny urban background, showcasing its classic taillights and distinctive wheel design. +04812.jpg The Bentley Continental Flying Spur Sedan 2007, viewed from a side angle against a leafy urban backdrop, appears in a glossy black finish with a sleek body, prominent grille, and distinctive rounded headlights, complemented by silver alloy wheels. +01357.jpg The Bentley Continental Flying Spur Sedan 2007 in the image appears in a light blue color with a glossy finish, viewed from a front three-quarter angle, set against a winter urban background with snow and leafless trees, featuring distinct twin circular headlights and large chrome alloy wheels. +03464.jpg The Bentley Continental Flying Spur Sedan 2007 appears in a low-resolution image featuring a sleek, metallic gray color with a distinctive chrome grille, viewed from a low front-side angle in a sunlit open parking lot with trees in the background. +00057.jpg The Bentley Continental Flying Spur Sedan 2007 is shown in a silver color with a polished texture, captured from a front-side angle in a parking lot beside a modern building with glass panels, featuring large, stylish rims and distinctive rounded headlights. +06635.jpg The Bentley Continental Flying Spur Sedan 2007 appears in silver with a smooth metallic finish, viewed from the front-right angle against a textured stone wall, showcasing its distinctive chrome grille and rounded headlights. +04886.jpg The Bentley Continental Flying Spur Sedan 2007 in the image is a silver car with a sleek, glossy texture, shown from a side angle in an indoor showroom setting with large, distinctive headlights and elongated, elegant design lines. +00896.jpg A green Bentley Continental Flying Spur Sedan 2007 is shown from a front three-quarter view against a plain white background, featuring its distinctive chrome grille and elegant headlight design. +05981.jpg The Bentley Continental Flying Spur Sedan 2007 is depicted from a high front-left angle, featuring a sleek silver metallic finish, distinctive dual circular headlights, a prominent grille, and is set against a textured concrete background with mossy patches. +02231.jpg A shiny silver Bentley Continental Flying Spur Sedan 2007 is viewed from the front-left angle in a parking lot, showcasing its distinctive grille, round headlights, and polished alloy wheels, set against a brick building with "CAROLINA MOTORWORKS" signage. +06028.jpg The Bentley Continental Flying Spur Sedan 2007 in the image is a dark-colored, glossy vehicle viewed from a front-side angle, parked on grass with its distinctive chrome grille and alloy wheels visible, set against a background of greenery and a partial tent. +07948.jpg A silver Bentley Continental Flying Spur Sedan 2007 is viewed from a low front side angle against a dealership backdrop, showcasing its distinctive chrome grille and multi-spoke alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_GT_Coupe_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_GT_Coupe_2007_descriptions.txt new file mode 100644 index 0000000..b264c91 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_GT_Coupe_2007_descriptions.txt @@ -0,0 +1,20 @@ +00078.jpg The Bentley Continental GT Coupe 2007 appears in a sleek silver color with a smooth, glossy texture, viewed from an elevated front three-quarter angle in a gravel parking area surrounded by greenery, showcasing its distinctive rounded headlights and prominent grille. +01935.jpg The Bentley Continental GT Coupe 2007 is seen from a front-side angle, showcasing its glossy red finish with smooth curves, distinctive large front grille, circular headlights, and is set against a blurred mountainous landscape to emphasize motion. +07458.jpg The Bentley Continental GT Coupe 2007 is shown in a glossy black finish, viewed from the front-right three-quarter angle, parked on an asphalt surface with trees and other vehicles in the background, featuring prominent round headlights and a distinctive mesh grille. +04243.jpg The Bentley Continental GT Coupe 2007 appears in a glossy silver finish with a sleek, aerodynamic body viewed from a front three-quarter angle, set against an urban backdrop featuring a white fence and industrial buildings, highlighting its signature mesh grille and round headlights. +01002.jpg A sleek black Bentley Continental GT Coupe 2007 is seen from a front-side angle, featuring distinctive round headlights and a chrome mesh grille, set against a verdant parkland background with trees. +02967.jpg The Bentley Continental GT Coupe 2007 is shown in a vibrant metallic orange from a front three-quarter viewpoint, with distinctive round headlights and a prominent grille, set against a rolling hills background with soft sunset lighting. +07598.jpg The Bentley Continental GT Coupe 2007 is a silver, glossy-finished vehicle viewed from the side at a slight angle, highlighting its sleek silhouette, distinct oval headlights, and chrome grille, set against a plain white background. +04531.jpg A silver Bentley Continental GT Coupe 2007 is pictured in profile view with distinctive circular headlights and 12-spoke alloy wheels, set against a background of a cobblestone driveway with other luxury vehicles and palm trees. +01008.jpg The Bentley Continental GT Coupe 2007 is shown in a rear three-quarter view with a glossy dark green finish, featuring an open driver's door, rounded tail lights, and nestled within a studio backdrop. +05893.jpg The Bentley Continental GT Coupe 2007 is shown in a metallic gray color with a reflective finish, viewed from a front-side angle against a backdrop of lush greenery and a stone-lined hill, featuring its iconic mesh grille and circular headlights. +03655.jpg The Bentley Continental GT Coupe 2007 is depicted in a dark green hue with a glossy texture, captured from a front three-quarter view, set against a blue mesh fence and asphalt surface, with distinct features such as large circular headlights and a prominent chrome grille. +03425.jpg The Bentley Continental GT Coupe 2007 in the image is finished in sleek silver, with a distinctive mesh grille and quad headlights, viewed from an angle showcasing its curved silhouette against a backdrop of large garage doors, and its glossy surface reflects the overcast lighting conditions. +05453.jpg The Bentley Continental GT Coupe 2007 is depicted in a sleek silver color with a smooth, glossy texture, captured from a side angle emphasizing its curved silhouette, parked on a residential street lined with a manicured hedge and luxurious villa, and featuring distinctive large alloy wheels and prominent round headlights. +03175.jpg The Bentley Continental GT Coupe 2007 is captured from a front three-quarter angle, showcasing its glossy red paint and chrome mesh grille against a gradient gray background, with distinctive large, dark alloy wheels and sleek aerodynamic contours. +05068.jpg A sleek black Bentley Continental GT Coupe 2007 is shown from a rear three-quarter angle in a parking lot, featuring a glossy finish, distinctive curved rear fenders, chrome alloy wheels, and a warehouse-like building in the background. +01409.jpg The Bentley Continental GT Coupe 2007 in the image is a sleek, metallic grey with a polished sheen, viewed from the front passenger side against a rugged mountainous backdrop, featuring its distinctive large mesh grille and circular headlights. +07679.jpg The Bentley Continental GT Coupe 2007 is depicted in a vibrant red color with a glossy texture, positioned in a three-quarter front view on a racetrack with clear blue skies, featuring distinctive circular headlights and a prominent front grille. +01178.jpg The Bentley Continental GT Coupe 2007 is depicted in a sleek silver color with a glossy finish, viewed from a side perspective on a cobblestone driveway surrounded by palm trees and exotic landscaping, featuring its distinct alloy wheels and elegant side profile. +04353.jpg The Bentley Continental GT Coupe 2007, seen from a side profile against a grassy and wooded backdrop, showcases a sleek dark blue exterior with a glossy finish, featuring silver alloy wheels and a distinguished low-slung silhouette. +00938.jpg The Bentley Continental GT Coupe 2007 appears in a sleek, metallic silver with a smooth, reflective texture, viewed at a rear three-quarter angle against a backdrop of parked cars and a building, featuring distinctive large alloy wheels and slightly tinted rear windows. diff --git a/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_GT_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_GT_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..65a7304 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_GT_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +07754.jpg The Bentley Continental GT Coupe 2012 appears in a glossy white color with a sleek design, viewed from the front three-quarters showing its distinctive grille and circular headlights, set against an urban street backdrop. +06072.jpg The image depicts a red Bentley Continental GT Coupe 2012 from a front three-quarter viewpoint, showcasing its sleek, aerodynamic lines and distinctive large grille against a plain gradient background, with prominent black wheels that enhance its sporty appearance. +04929.jpg The Bentley Continental GT Coupe 2012 is shown in a low-resolution image with a metallic silver color and sleek texture, viewed from a front-side angle against a mountainous desert backdrop, featuring distinctive round headlights and a large grille. +05769.jpg The Bentley Continental GT Coupe 2012 is shown in a front view with an orange metallic finish, distinctive round headlights, and a prominent grille, set against a scenic rural road flanked by lush greenery and a cloudy sky. +07692.jpg The low-resolution image shows a silver Bentley Continental GT Coupe 2012 from a front-side angle with polished alloy wheels, distinctive circular headlights, and a textured grille, set against a blurred rocky desert backdrop. +03469.jpg The Bentley Continental GT Coupe 2012 appears in a sleek white color with a glossy texture, viewed from the front showcasing its prominent mesh grille and round headlights, set against a minimalistic white studio background. +00050.jpg The dark blue Bentley Continental GT Coupe 2012 is viewed from a front-side angle, showcasing its large chrome grille, round headlights, and sleek body contours against a simple two-toned background of gray pavement and white wall. +06915.jpg The Bentley Continental GT Coupe 2012 appears in a sleek white color with a glossy finish, viewed from a front three-quarter angle, set against a rural backdrop, and features distinctively large chrome wheels and a prominent front grille. +08073.jpg The Bentley Continental GT Coupe 2012 in the image is a sleek, metallic burnt orange color, viewed from a front three-quarter angle, with a rocky desert landscape in the background and distinctive large alloy wheels and chrome detailing. +00351.jpg The Bentley Continental GT Coupe 2012 is a sleek gray car with a glossy finish, seen from a front-side viewpoint in an overcast suburban environment, featuring its distinctive large front grille and round headlights, with bare trees and brick buildings in the background. +01401.jpg The Bentley Continental GT Coupe 2012 is a sleek, black vehicle with a glossy finish, viewed from a rear three-quarter angle, highlighting its smooth curves, signature tail lights, and dual exhausts on a plain, light-colored background. +00160.jpg The Bentley Continental GT Coupe 2012 appears in a sleek metallic gray with a smooth, glossy texture, viewed from the front-left angle on a winding mountain road, showcasing its iconic mesh grille, round headlights, and athletic silhouette. +04126.jpg The Bentley Continental GT Coupe 2012 is depicted in a sleek silver shade with a smooth metallic texture, viewed from the front-left angle in an urban setting with a stone building backdrop, showcasing its distinct large mesh grille and prominent circular headlights. +05603.jpg The Bentley Continental GT Coupe 2012 in the image is a sleek gray car with a shiny metallic finish, viewed from the front-left angle, set against a lush green park background, and features prominent round headlights and a distinctive mesh grille. +03413.jpg The Bentley Continental GT Coupe 2012 is captured in a dynamic side view against a rugged desert backdrop, featuring a metallic orange color with a sleek, streamlined body, prominent circular headlights, and large alloy wheels that accentuate its luxury and sporty design. +00117.jpg The Bentley Continental GT Coupe 2012 is captured in a dynamic right-front angle with a glossy red finish, distinctive circular headlights, a bold mesh grille, and is set against a blurred, wooded road backdrop, emphasizing its sleek and powerful design. +03335.jpg The Bentley Continental GT Coupe 2012 is showcased in a vibrant orange color with a sleek, glossy texture, viewed from a front three-quarter angle against a rugged rocky beach backdrop, emphasizing its distinctive rounded headlights and prominent grille. +06005.jpg A light blue Bentley Continental GT Coupe 2012 is shown from a front three-quarter view in a parking lot with modern buildings in the background, featuring distinctive round headlights and large, shiny alloy wheels. +07385.jpg The Bentley Continental GT Coupe 2012 appears in a metallic burnt orange color from a frontal angle, highlighting its sleek, rounded contours, signature diamond-patterned grille, and dual round headlights, set against a rugged, mountainous background. +00146.jpg A sleek, metallic white Bentley Continental GT Coupe 2012 is shown from a front three-quarter angle, highlighting its large grille, distinct circular headlights, and chrome-accented wheels against a plain white background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_Supersports_Conv._Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_Supersports_Conv._Convertible_2012_descriptions.txt new file mode 100644 index 0000000..cb87c5c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Bentley_Continental_Supersports_Conv._Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +01772.jpg The Bentley Continental Supersports Convertible 2012 is shown in a pale yellow color with a glossy texture, captured from a front three-quarter view highlighting its distinctive large grille and rounded headlights, set against a sleek modern indoor showroom environment with soft lighting and surrounded by people. +04576.jpg The Bentley Continental Supersports Convertible 2012 is viewed from the front-left angle, showcasing its glossy white exterior with dark accents, distinctive large grill and quad circular headlights, set against an indoor showroom background with ambient lighting. +01792.jpg The Bentley Continental Supersports Convertible 2012 appears in a sleek, metallic gray color with a smooth texture, viewed from an elevated angle showcasing its open-top and black wheels, set against a gravel background, with prominent dual hood vents and distinctive black grille. +06006.jpg A light-colored Bentley Continental Supersports Convertible, viewed from the front left angle, features prominent dark wheels and grilles, set against a racing event background with checkered patterns and trees. +00357.jpg The Bentley Continental Supersports Convertible 2012 is shown in a glistening silver hue with a glossy finish, viewed from a front-left angle on a sunny residential street, highlighting sporty red brake calipers and a sleek, open-top design against a backdrop of green grass and suburban houses. +04779.jpg The Bentley Continental Supersports Convertible 2012 in the image appears in a pale yellow color with a smooth texture, viewed from the rear-left showing its distinct taillights and dark wheels, set in a parking lot with other colorful cars and greenery in the background. +06035.jpg The image shows a white Bentley Continental Supersports Convertible from a rear three-quarter view, featuring black detailing and rims, with a license plate visible, set against a plain white background, highlighting its distinct taillights and sporty rear diffuser. +04461.jpg The Bentley Continental Supersports Convertible 2012 appears in a sleek black color with a glossy texture, viewed from the side showcasing its aerodynamic lines and sporty stance, set against a suburban street with a wooden fence and parked vehicles in the background, while distinctive features like red brake calipers and dark alloy wheels stand out. +05873.jpg The Bentley Continental Supersports Conv. Convertible 2012 is depicted in a dynamic front-side angle showcasing its sleek silver body with a glossy finish, intricate grille design, distinctive hood vents, and the blurred greenery of a forested road in the background accentuating its motion. +05640.jpg The Bentley Continental Supersports Convertible 2012 is shown in a vibrant red color with a sleek, glossy texture, captured from a front-side angle driving on an open road with mountainous scenery, featuring large circular headlights and distinctively aggressive air vents on the front bumper. +01138.jpg The 2012 Bentley Continental Supersports Convertible appears in a pristine white color with a sleek texture, viewed in profile against a rustic stone wall backdrop, featuring distinctive black wheels and an open roof. +04747.jpg The low-resolution image shows a white Bentley Continental Supersports Convertible from a rear overhead view, highlighting its black soft top and distinctive dual exhausts, positioned on a narrow road flanked by rocky water edges. +04399.jpg The Bentley Continental Supersports Convertible 2012 is shown from a front-side angle in a pale yellow color with black rims, racing across a track flanked by trees and a crowd behind hay bales, emphasizing its sporty and sleek design. +05158.jpg A white Bentley Continental Supersports Convertible from a front-right angle features a glossy texture, open black convertible roof, distinctively large mesh grille, circular headlights, and sporty alloy wheels against a blurred urban environment with greenery. +07277.jpg The image shows a glossy white Bentley Continental Supersports Convertible from a rear side angle, cruising on a city street lined with palm trees and buildings, featuring prominent circular taillights and a retracted tan soft top. +02528.jpg The Bentley Continental Supersports Convertible 2012 in the low-resolution image is presented in a sleek silver color with a black soft top, viewed from the front left side with a clear backdrop of a car dealership and shrubs, featuring distinctive black wheels and prominent front grille. +03849.jpg A pale yellow Bentley Continental Supersports Conv. Convertible 2012 is captured from a front diagonal angle, driving along a tree-lined road with hay bales in the background, featuring a sporty, low-set appearance with dark, contrasting grille and headlight accents. +06953.jpg The white Bentley Continental Supersports Convertible, seen from a front-side angle on an open road, features a sleek, aerodynamic design with distinctive circular headlights, set against a backdrop of lush green mountains and a clear blue sky. +01076.jpg The 2012 Bentley Continental Supersports Convertible appears in a crisp white color with a smooth finish, viewed from a low front angle against a rugged rocky coastline, highlighting its sleek silhouette and distinctive black grille and wheels. +03860.jpg The Bentley Continental Supersports Convertible 2012 appears in a sleek metallic blue with black alloy wheels, viewed from the front three-quarter angle, set against a sunny urban backdrop with palm trees and other luxury cars visible. diff --git a/utils/area/descriptions/Car/generated_descriptions/Bentley_Mulsanne_Sedan_2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Bentley_Mulsanne_Sedan_2011_descriptions.txt new file mode 100644 index 0000000..a95bd78 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Bentley_Mulsanne_Sedan_2011_descriptions.txt @@ -0,0 +1,20 @@ +07285.jpg The Bentley Mulsanne Sedan 2011 is displayed in a sleek, dark metallic gray color with a polished texture, captured from a low side angle as it drives in an urban environment, showcasing its distinct front grille and elegant lines against a backdrop of blurred city structures. +03299.jpg The Bentley Mulsanne Sedan 2011 appears in a glossy white finish with a front three-quarter view, showcasing its classic round headlights and chrome grille, set against a wooded backdrop with blurred trees indicating motion. +01552.jpg The Bentley Mulsanne Sedan 2011 appears in a sleek, metallic grey with a shiny finish, captured from a front three-quarter angle, set against a blurred, natural landscape featuring a bare tree and a lake, with its distinctive round headlights and large grille prominently visible. +06110.jpg The Bentley Mulsanne Sedan 2011 appears in a metallic silver color, viewed from a three-quarter front angle, showcasing its classic round headlights and distinctive grille, set against a plain white background. +06729.jpg The Bentley Mulsanne Sedan 2011 is a deep blue luxury vehicle with a glossy finish, viewed from a front three-quarter angle, positioned in a studio setting with a dark background and spotlight highlighting its distinctive chrome grille and stylish alloy wheels. +05548.jpg The Bentley Mulsanne Sedan 2011 is shown in a front three-quarter view with a glossy metallic brown color, parked on a bridge with a tree-lined background, featuring its distinguished chrome grille and round twin headlamps. +00856.jpg The Bentley Mulsanne Sedan 2011 appears in a sleek black color seen from the side, in motion against a blurred countryside background, featuring prominent chrome-rimmed wheels and a distinctive elongated body profile. +05928.jpg The Bentley Mulsanne Sedan 2011 is showcased in a sleek metallic silver, viewed from the front, highlighting its distinct grille, circular headlights, and a white background that contrasts against the car's elegant lines and robust stance. +06233.jpg A sleek black 2011 Bentley Mulsanne Sedan is captured from a side angle, parked on a gray pavement surrounded by a grassy area and tall trees, with large silver alloy wheels and a prominent chrome accent line running along the side. +03455.jpg The Bentley Mulsanne Sedan 2011 appears in a metallic champagne color with a polished texture, viewed from a slightly low angle showcasing its prominent chrome grille and circular headlamps, against a backdrop of greenery and a white multi-story building, with distinctive large alloy wheels. +01205.jpg A sleek metallic gray Bentley Mulsanne Sedan 2011 is captured from a front-side angle, showing its distinctive large grille and rounded headlights, set against a suburban street with blurred greenery and houses in the background. +04771.jpg The Bentley Mulsanne Sedan 2011 appears in a metallic champagne color with a glossy finish, viewed from a front three-quarter angle, featuring distinctive round headlights and chrome detailing against a clear sky on a rural road backdrop. +03285.jpg The Bentley Mulsanne Sedan 2011 is a maroon luxury vehicle with a polished metallic sheen, viewed in profile against a historic stone building backdrop, featuring a prominent chrome grille and circular headlights. +07433.jpg The Bentley Mulsanne Sedan 2011 is shown in a sleek metallic silver color, viewed from the front on a slightly curved road with grassy terrain in the background, featuring its distinctive mesh grille and round headlamps clearly visible. +06217.jpg The 2011 Bentley Mulsanne Sedan is shown from a frontal viewpoint, in a metallic silver color with a shiny, smooth texture, featuring its iconic chrome grille and round headlights against a blurred wooded road background. +06952.jpg The low-resolution image depicts a Bentley Mulsanne Sedan 2011, showcased from a front three-quarter view, featuring a sleek blue exterior with a metallic sheen, prominent front grille, round headlights, and a minimalist two-tone background of gray and white. +05722.jpg The Bentley Mulsanne Sedan 2011 appears in a glossy metallic blue hue with a prominent chrome grille and dual round headlights, viewed from the front on a winding road with grassy hills in the background. +06636.jpg The image shows a front view of a silver Bentley Mulsanne Sedan 2011 with a reflective texture and distinctive round headlights, set against a blurred natural backdrop. +02386.jpg The low-resolution image depicts a silver Bentley Mulsanne Sedan 2011 viewed from a front-right angle, driving on a tree-lined road beside a large body of water, with distinctive round headlights and a chrome grille visible. +00589.jpg The Bentley Mulsanne Sedan 2011 in the image is a sleek white luxury car seen in a side profile view, parked on a paved surface in a lush, grassy park setting with trees in the background, featuring its signature chrome front grille and multi-spoke alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Bugatti_Veyron_16.4_Convertible_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Bugatti_Veyron_16.4_Convertible_2009_descriptions.txt new file mode 100644 index 0000000..f69def9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Bugatti_Veyron_16.4_Convertible_2009_descriptions.txt @@ -0,0 +1,20 @@ +08095.jpg The Bugatti Veyron 16.4 Convertible 2009 in the image is a sleek white vehicle with a glossy finish, seen from a high angle on a coastal road with rocky terrain and sea in the background, featuring its iconic front grille and open-top design. +07491.jpg The Bugatti Veyron 16.4 Convertible 2009 in the image is white with a glossy texture, viewed from a high angle showcasing its distinctive twin hood intakes and convertible roof, set amidst a vineyard with neatly aligned grapevines. +00190.jpg The 2009 Bugatti Veyron 16.4 Convertible is presented in a sleek silver color with a polished, reflective texture, viewed from a front-side angle against a quaint street backdrop featuring a mural of seated figures, distinctively showcasing its curved aerodynamic design and shiny alloy wheels. +01077.jpg The Bugatti Veyron 16.4 Convertible 2009 in the image is portrayed in a sleek silver color with a smooth metallic texture, viewed from the side with the convertible top down, set against a serene coastal background with grassy terrain, featuring its iconic aerodynamic curves and intricate alloy wheels. +05442.jpg The Bugatti Veyron 16.4 Convertible 2009 appears in a sleek silver with a glossy finish, viewed from a front three-quarter angle in a showroom setting with overhead lights, featuring black rims and an orange interior accent. +04250.jpg The Bugatti Veyron 16.4 Convertible 2009 is a sleek white car with a glossy finish, viewed from a low front angle on a curved road with a rocky and vegetated background, featuring distinctive curves and prominent headlights. +06392.jpg The Bugatti Veyron 16.4 Convertible 2009 is captured from a front three-quarter view in a sleek silver hue with a shiny finish, showcasing its distinctive open-top design with tan leather interior, set against a lush green grass background and surrounded by car show display elements. +01335.jpg The Bugatti Veyron 16.4 Convertible 2009 in the image features a sleek silver exterior with a glossy finish, viewed from the front on a grassy foreground against a serene aquatic backdrop, showcasing its distinctive wide grille and luxurious leather interior through the open top. +07296.jpg A sleek silver Bugatti Veyron 16.4 Convertible 2009 is shown from an aerial front view, highlighting its smooth, aerodynamic contours, distinctive horseshoe grille, and glossy texture against an elegant black background. +02541.jpg The Bugatti Veyron 16.4 Convertible 2009 appears in a smooth, white finish with sleek lines, viewed from an elevated angle showcasing its open-top design and chrome wheels, parked on a sandy terrain beside green vineyard vines. +06457.jpg The Bugatti Veyron 16.4 Convertible 2009 is captured in motion from a rear-side angle, showcasing its sleek white exterior with a glossy finish, elegant curves, and open top, set against a blurred forest landscape as the car speeds down a road. +05009.jpg The Bugatti Veyron 16.4 Convertible 2009 appears in an overhead view, showcasing its sleek, metallic silver body with visible rear air intakes against a dark studio backdrop. +03421.jpg The Bugatti Veyron 16.4 Convertible 2009 is depicted in a sleek silver color with a glossy texture, viewed from a front-three-quarter angle emphasizing its aerodynamic curves and distinctive grille, set against a backdrop of trimmed hedges and paved surroundings. +05683.jpg A white Bugatti Veyron 16.4 Convertible 2009 is photographed from the rear-right angle on a winding coastal road, showcasing its sleek aerodynamic design, distinctive circular taillights, and convertible roof against a backdrop of cliffs and sea. +02549.jpg A sleek white Bugatti Veyron 16.4 Convertible 2009 is captured from a low-angle frontal view on a tree-lined road, showcasing its distinctive rounded grille and open roof, with the natural surroundings blurred due to motion. +01228.jpg The Bugatti Veyron 16.4 Convertible 2009 appears in a sleek white finish with a glossy texture, viewed from an angled front pose on a winding road flanked by a rocky hillside, with distinctive features including its iconic horseshoe grille and characteristic aerodynamic curves. +05312.jpg The Bugatti Veyron 16.4 Convertible 2009 is shown in a front view with a glossy silver exterior, parked on a dark platform surrounded by a crowd in an outdoor event setting with white flowers and elegant buildings in the background. +05816.jpg The low-resolution image depicts a silver Bugatti Veyron 16.4 Convertible from a side angle parked on lush green grass near a tranquil waterfront, with visible elements including its signature aerodynamic body, distinctive horseshoe grille, and prominent alloy wheels. +01126.jpg The Bugatti Veyron 16.4 Convertible 2009 is shown in a white color with a sleek, glossy texture, captured from a front three-quarter view against a mountainous backdrop, highlighting its distinct rounded grille and aerodynamic shape. +07108.jpg The silver Bugatti Veyron 16.4 Convertible 2009 is viewed from a front three-quarter angle on a grassy lawn with an ocean in the background, showcasing its sleek body, open-top design, and characteristic horseshoe grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Bugatti_Veyron_16.4_Coupe_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Bugatti_Veyron_16.4_Coupe_2009_descriptions.txt new file mode 100644 index 0000000..6a03683 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Bugatti_Veyron_16.4_Coupe_2009_descriptions.txt @@ -0,0 +1,20 @@ +01708.jpg The Bugatti Veyron 16.4 Coupe 2009 appears in a vibrant blue with a sleek, reflective texture, viewed from the side against a striking modern architectural backdrop, showcasing its iconic rounded silhouette and distinctive silver wheels. +01703.jpg The Bugatti Veyron 16.4 Coupe 2009 appears in a glossy white finish with distinctive front grille and headlights, captured from a low frontal angle on a winding forest road under dappled sunlight. +04741.jpg The Bugatti Veyron 16.4 Coupe 2009 is captured from a front-side angle, showcasing its sleek blue exterior with a matte texture, parked on a patterned stone surface beside modern architecture and a water feature. +02520.jpg The Bugatti Veyron 16.4 Coupe 2009 in the image is seen from a low-angle front view on a winding road, featuring a glossy black body with striking orange accents and rims, set against a blurred, arid landscape background. +00710.jpg The image shows a sleek black Bugatti Veyron 16.4 Coupe 2009 with a glossy finish, viewed from the rear three-quarters angle, highlighting its distinctive quad exhaust pipes and raised rear spoiler, set against a dynamic, blurred background that emphasizes motion. +07232.jpg The Bugatti Veyron 16.4 Coupe 2009 is depicted in a low-resolution image with a sleek white and black two-tone exterior, captured from a front three-quarter view against a blurred road and green foliage background, featuring its distinctive horseshoe grille and large air intakes. +05049.jpg A vivid blue Bugatti Veyron 16.4 Coupe 2009 is seen in a low-angle front view speeding on a curved racetrack under a clear sky, showcasing its iconic horseshoe grille and distinctive streamlined bodywork. +01249.jpg A sleek, two-tone white and black Bugatti Veyron 16.4 Coupe 2009 is captured from an elevated front three-quarter perspective, accentuated by its iconic horseshoe grille, driving on a road with a blurred grassy landscape in the background, and showcasing its signature curvy silhouette and polished alloy wheels. +03278.jpg The Bugatti Veyron 16.4 Coupe 2009 is viewed from an elevated angle, showcasing its sleek, glossy black body with carbon fiber accents, silver rims, and a distinct curved rear wing, set against a polished black tiled floor in an indoor showroom environment. +07619.jpg The Bugatti Veyron 16.4 Coupe 2009 appears in a sleek black with hints of blue, showcasing a glossy finish and a rear view with its prominent spoiler extended, dual circular taillights, and quad exhaust pipes, set against a blurred road and greenery background indicative of motion. +01381.jpg The Bugatti Veyron 16.4 Coupe 2009 is shown in a front three-quarter view, featuring a sleek black body with vibrant orange accents on the rims, front grille, and lower body, against a plain white background, highlighting its aggressive stance and aerodynamic curves. +05556.jpg The Bugatti Veyron 16.4 Coupe 2009 is displayed in a front three-quarter view, showcasing a two-tone black and brown color scheme with a glossy finish, parked in front of a grand stone staircase leading to an ornate building with tall windows, highlighted by its distinct aerodynamic shape and large chrome wheels. +00552.jpg The Bugatti Veyron 16.4 Coupe 2009 appears in a glossy black finish with a dark tone, viewed from the rear three-quarters on an open road with a clear blue sky backdrop, featuring distinct rounded taillights and prominent rear wheel arches. +01484.jpg The Bugatti Veyron 16.4 Coupe 2009 in the image is a sleek, two-toned blend of deep burgundy and shiny black, viewed from the front-left angle on an open road, with blurred green trees and a grassy hill in the background, highlighting its distinctive horseshoe grille and aerodynamic profile. +07766.jpg The Bugatti Veyron 16.4 Coupe 2009 is shown in a low-resolution image featuring a sleek, metallic blue body with a silver front grille, captured from a front three-quarter view against a neutral, gradient backdrop. +02735.jpg The Bugatti Veyron 16.4 Coupe 2009 is shown in a front view with a two-tone black and red exterior, featuring sleek lines against a coastal background, and distinctive headlights and grille uniquely stand out. +03479.jpg The Bugatti Veyron 16.4 Coupe 2009 in the image features a glossy black body with vivid orange accents, including the lower front grill and wheels, captured from a low front angle on a tree-lined road, highlighting its aerodynamic curves and distinctive arched grille. +02309.jpg The image shows a top-rear view of a Bugatti Veyron 16.4 Coupe 2009 in a glossy black with red accents, set in a minimalistic, well-lit studio environment, highlighting its sleek aerodynamic shape, distinctive rear spoiler, and quad circular taillights. +07132.jpg The Bugatti Veyron 16.4 Coupe 2009 is shown from a front-facing, low-ground perspective with a sleek black finish reflecting its forested roadside surroundings, featuring its iconic horseshoe grille, distinctive quad headlights, and a smooth, streamlined hood design amidst tall pine trees. +01168.jpg The Bugatti Veyron 16.4 Coupe 2009 appears in a polished silver color with a reflective texture, viewed from the front-right angle in an indoor auto show setting, featuring large alloy wheels and distinct aerodynamic contours. diff --git a/utils/area/descriptions/Car/generated_descriptions/Buick_Enclave_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Buick_Enclave_SUV_2012_descriptions.txt new file mode 100644 index 0000000..b9cbca6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Buick_Enclave_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +05758.jpg The 2012 Buick Enclave SUV is shown in a vibrant red with a glossy finish, captured from a frontal viewpoint in a dealership lot with similar vehicles around, highlighting its chrome-accented grille and distinctive Buick emblem. +07112.jpg The low-resolution image depicts a dark metallic gray Buick Enclave SUV 2012 viewed from the side, showcasing its smooth body lines and prominent front and rear fender flares, set against a car dealership lot with other vehicles and light poles visible in the background. +07547.jpg The 2012 Buick Enclave SUV appears in a metallic gray color with chrome accents and features, seen from a front three-quarter angle with a marina background, highlighting its signature grille and rounded headlights. +06702.jpg The Buick Enclave SUV 2012 is seen in a metallic silver color with a smooth texture, viewed from the front-left angle, featuring a prominent chrome grille, distinctive curved headlights, and sleek roofline, driving on an urban roadway with blurred buildings in the background. +00177.jpg The 2012 Buick Enclave SUV is shown in a front three-quarter view, featuring a metallic bronze finish with a distinctive chrome grille and elegant, rounded headlamps, set against a warm, softly lit indoor environment with abstract architectural elements. +08042.jpg The 2012 Buick Enclave SUV, viewed in profile from the driver's side, features a metallic brown color with a smooth texture and shiny chrome wheels, set against a dealership backdrop identifiable by a prominent Chevrolet logo on the building. +00981.jpg The Buick Enclave SUV 2012 is a brown vehicle with a smooth texture, viewed from a front-side angle in a parking lot, featuring prominent chrome accents and distinctively shaped headlamps. +02303.jpg The 2012 Buick Enclave SUV in the image is black with a smooth, glossy texture, viewed from the driver's side in a parking lot, featuring prominent chrome accents and large, distinctly styled alloy wheels. +07600.jpg The Buick Enclave SUV 2012 appears in a low-resolution image showcasing a side profile in a deep red color with a smooth, glossy texture, set against a dealership background featuring distinct automotive branding, with chrome-trimmed windows and stylish multi-spoke wheels being notable features. +00417.jpg The Buick Enclave SUV 2012 is shown in a metallic silver color with a smooth texture, viewed from a rear side angle, parked in a sunny outdoor dealership lot with visible trees and other cars in the background, featuring distinctive chrome wheels and rear taillights. +07625.jpg The Buick Enclave SUV 2012 is depicted in a sleek metallic gray color with a glossy finish, viewed from the front three-quarter angle, set against a neutral dark background, showcasing its distinctive chrome accents and smoothly curved body lines. +05997.jpg The 2012 Buick Enclave SUV appears in a dark metallic blue color with a glossy finish, viewed from a side angle in a dealership lot with visible white and blue decorative flags above, featuring chrome rims and a sleek, rounded shape accentuated by its signature chrome-trimmed grille. +07848.jpg The Buick Enclave SUV 2012 appears in a metallic gray color with a smooth texture, viewed from the rear with clearly visible taillights under a bright woodland setting, and has distinctive chrome accents and dual exhaust pipes. +07585.jpg The Buick Enclave SUV 2012 in the photo is a pearl white vehicle with a glossy finish, captured from a front three-quarters viewpoint, displaying its distinctive chrome grille and headlights, set against a rural background with a building and trees visible. +00943.jpg The Buick Enclave SUV 2012, viewed from the front and slightly to the side, is in a metallic bronze color with a smooth, glossy texture, showcased on a stage with a red and black branded backdrop, featuring its distinctive grille and rounded headlights. +06863.jpg The 2012 Buick Enclave SUV, viewed in profile under urban night lighting, showcases a metallic silver color with a sleek texture, highlighted by its distinct chrome detailing and set against a backdrop of an illuminated cityscape and modern bridge architecture. +01557.jpg The 2012 Buick Enclave SUV is seen in a three-quarter front view, showcasing its glossy maroon color, chrome accents, and distinctive grille, set against a gravel driveway and garage background. +05124.jpg The Buick Enclave SUV 2012 is shown in a side profile view featuring a deep red color with a glossy finish, parked in a dealership lot with other vehicles in the background, and it has chrome alloy wheels and distinctive roof rails. +00253.jpg The 2012 Buick Enclave SUV appears in a shimmering light beige color, viewed in a side profile with its chrome-accented wheels; it's parked on a paved surface near a building with palm-like bushes in the background. +06049.jpg The Buick Enclave SUV 2012 is shown in a front three-quarter view, showcasing its smooth white body with a glossy finish, distinctive chrome grille, and set against a quaint urban backdrop with shops and greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions/Buick_Rainier_SUV_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Buick_Rainier_SUV_2007_descriptions.txt new file mode 100644 index 0000000..0410ea0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Buick_Rainier_SUV_2007_descriptions.txt @@ -0,0 +1,20 @@ +07874.jpg The 2007 Buick Rainier SUV is captured from the frontal view, showcasing its metallic gray finish with smooth texture, distinct vertical grille bars, illuminated round headlights, and is set against a backdrop of leafy greenery and a white fence. +06191.jpg The 2007 Buick Rainier SUV in the image is a beige metallic vehicle viewed from the front-left angle, featuring a chrome grille, roof rack, and a sunlit suburban residential background with a tree-lined street. +04681.jpg The Buick Rainier SUV 2007 appears in a metallic silver color with a smooth texture, viewed from the front-right angle, parked on an asphalt surface in front of a brick wall with dealership signage, featuring distinctive round headlights and a chrome grille. +05948.jpg The 2007 Buick Rainier SUV is dark blue with a glossy finish, viewed from the front left angle, featuring its prominent chrome grille and unique headlights, situated in a plain, well-lit indoor environment. +04458.jpg A silver Buick Rainier SUV 2007 is viewed from the side in a dealership lot with a "SALE" banner and Honda signage in the background, featuring distinct chrome accents on the grille and wheels, surrounded by other vehicles and colorful balloons. +02149.jpg The image depicts a white Buick Rainier SUV 2007 with a smooth paint finish, seen from a three-quarter front angle in a foggy car dealership setting, featuring a distinctive chrome grille and roof rails as notable details. +04556.jpg The 2007 Buick Rainier SUV appears in a metallic silver color with a smooth, reflective texture, viewed from the front-left angle in a parking lot setting during sunset, and features chrome wheels, distinctive chrome grille, and roof rails. +07509.jpg The low-resolution image shows a silver Buick Rainier SUV 2007 with a slightly snowy texture, captured from a side-front angle in a wintery urban environment, with visible alloy wheels and roof rails, parked on a wet, snow-lined road near a building with a sign. +04553.jpg A red Buick Rainier SUV 2007 is viewed in profile from the left side, set against a grassy field with sparse trees in the background, featuring chrome wheels and a distinct black roof rack. +03718.jpg A black Buick Rainier SUV 2007 is shown from a rear three-quarter view, parked on a sandy path with an ocean and tree-lined horizon in the background, featuring prominent chrome wheels and subtle reflections on its glossy surface. +04091.jpg The Buick Rainier SUV 2007 is seen from a side profile, showcasing a silver color with a smooth, metallic texture, positioned on a gravel lot in front of a corrugated metal building with a red awning, and features distinctive roof racks and multi-spoke alloy wheels. +00389.jpg The image shows a white Buick Rainier SUV 2007 with a smooth texture, viewed from the side in an indoor garage setting, featuring silver alloy wheels and a distinct roof rack. +06142.jpg A dark blue Buick Rainier SUV 2007 is shown in a three-quarter front view on a rural road, with a silver grille, roof racks, and visible wind turbines in the distant green and open landscape. +07238.jpg The vehicle is a light silver Buick Rainier SUV 2007 viewed from a front three-quarter angle in a simple, white indoor showroom with distinct round headlights, a prominent vertical grille, and dark window accents. +01945.jpg A black Buick Rainier SUV 2007 is seen in a side-front view in a parking lot with a distinctive chrome grille and silver alloy wheels, set against a background with visible trees and a yellow school bus, under overcast skies. +00487.jpg The image depicts a silver Buick Rainier SUV 2007 viewed from the front-right angle, parked on a paved lot with a clear sky background and featuring distinctive chrome vertical grille bars and multi-spoke alloy wheels. +02109.jpg The Buick Rainier SUV 2007 is a metallic silver vehicle with a smooth texture, viewed from the front left angle against a dealership background, featuring distinctive chrome accents and a front grille with noticeable headlights. +06212.jpg The Buick Rainier SUV 2007 is a white vehicle with a smooth texture, viewed from a front-side angle, parked in a dealership lot characterized by surrounding pavement and a building with large windows, featuring a distinctive chrome grille and rounded headlights. +04767.jpg The gold-colored Buick Rainier SUV 2007 is viewed from the front-left angle, showcasing its chrome grille, side steps, and parked in an outdoor lot under a cloudy sky, with some trees and lamp posts in the background. +06924.jpg A silver-gray Buick Rainier SUV 2007 is parked on wet pavement at a dealership, viewed from a front three-quarter angle with a chrome front grille, surrounded by other vehicles and a building with large windows in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Buick_Regal_GS_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Buick_Regal_GS_2012_descriptions.txt new file mode 100644 index 0000000..9f1339d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Buick_Regal_GS_2012_descriptions.txt @@ -0,0 +1,20 @@ +04658.jpg The image shows a white Buick Regal GS 2012 viewed from the rear, featuring sleek tail lights and dual exhaust tips, with a modern exhibition hall background filled with overhead lighting and blurred figures. +00547.jpg The white Buick Regal GS 2012 is captured from a three-quarter front view, highlighting its sleek contours and chrome grille, set against a serene, pastel-colored horizon on a gravel surface. +00152.jpg The car is a pearl white Buick Regal GS 2012 viewed from the front-left angle, parked on a sandy surface with a prominent river and bridge in the background, showcasing its distinctive chrome grille and large alloy wheels. +02988.jpg The Buick Regal GS 2012 in the image is a white sedan with a matte finish, viewed from a front-side angle, positioned on a paved area with a winding road and lush greenery in the background, featuring distinct alloy wheels and a sporty front grille. +05374.jpg A red Buick Regal GS 2012 is captured from a front-side angle, driving along a wooded road with blurred greenery in the background, highlighting its distinctive grille and sporty stance. +06719.jpg The image shows a silver Buick Regal GS 2012 with a sleek, metallic texture, viewed from the front-left angle, parked on a paved surface against a background of leafless trees, featuring large alloy wheels and a prominent front grille. +00319.jpg The image depicts a white Buick Regal GS 2012 with a glossy finish, shown from a front left angle against a dark, gradient background, featuring distinctive vertically slatted grille and sport wheels, accentuating its sleek, sporty design. +06225.jpg The Buick Regal GS 2012 is a sleek white sedan with a glossy finish, shown from a front three-quarter view with distinctive chrome wheels, a smooth aerodynamic shape, and set against a backdrop of a stage with dark textured panels and bright spotlights. +06701.jpg The Buick Regal GS 2012 in the image is a sleek white sedan viewed from a rear three-quarter angle, set against a dark gradient background with distinctive tail lights and dual exhaust pipes. +01770.jpg The 2012 Buick Regal GS is viewed from the rear three-quarter angle, showcasing its shiny black finish, sporty rear spoiler, distinctive chrome exhaust tips, and multi-spoke alloy wheels, set against a lush green wooded backdrop and cracked pavement. +07236.jpg The silver Buick Regal GS 2012 is shot from a front-side angle, revealing its sleek body and distinctive grille, parked on a residential driveway surrounded by greenery and homes in the background. +01968.jpg The Buick Regal GS 2012 appears in a rear three-quarter view, showcasing its white body with a smooth texture, distinctive dual exhausts, and sporty design accents, set against a backdrop of calm water with distant shoreline. +01614.jpg The Buick Regal GS 2012 is depicted in a side profile view with a smooth white finish, parked on a sandy beach with the ocean in the background, showcasing its sporty alloy wheels and sleek body lines. +06787.jpg A white Buick Regal GS 2012 is seen from a front three-quarter angle, parked near a waterfront with a sailboat in the background, featuring large chrome alloy wheels and distinctive front grille and vents. +00279.jpg The Buick Regal GS 2012 is a glossy white sedan with a distinctive front grille, viewed from a front three-quarter angle in a minimalist studio environment, featuring large alloy wheels and pronounced sculpted lines on the hood and sides. +04870.jpg The Buick Regal GS 2012 in the image is a white sedan with a glossy finish, viewed from a front three-quarter angle, set in an indoor showroom with people in the background, featuring prominent chrome accents on the grille and distinctive large alloy wheels. +06575.jpg The Buick Regal GS 2012 in the image is a white sedan viewed from the front, parked on a forest-lined road, featuring a distinct vertical-bar grille, angular headlights, and sleek hood lines. +01671.jpg A silver Buick Regal GS 2012 is viewed from the front, parked on an urban street with modern glass buildings in the background, featuring prominent vertical grille slats and sporty air intakes on the bumper. +07921.jpg The silver Buick Regal GS 2012 is viewed from a side angle against a background of a chain-link fence and bare trees, featuring distinctive large alloy wheels and a prominent front grille. +01933.jpg The Buick Regal GS 2012 is a sleek red sedan with a glossy finish, viewed from a front three-quarter angle, set against a wooded area with leafless trees, featuring distinctive large alloy wheels and pronounced front grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Buick_Verano_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Buick_Verano_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..6fe760c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Buick_Verano_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +03872.jpg The image depicts a red Buick Verano Sedan 2012 with a glossy finish, viewed from the rear three-quarter angle, parked on a paved road beside a lush vineyard, featuring distinctive taillights and chrome detailing. +02420.jpg A white Buick Verano Sedan 2012 with a smooth, glossy texture is shown from a front-side angle in a car dealership parking lot, featuring sharp headlights, a prominent grille, and parked vehicles in the background. +04679.jpg The Buick Verano Sedan 2012 appears in a metallic dark gray shade with a sleek, streamlined profile and chrome accents, viewed from the front side against a scenic, sunlit background with mountains and a paved surface. +01234.jpg The image shows the rear view of a metallic gray Buick Verano Sedan 2012 with smooth, glossy texture, dual taillights separated by a chrome accent, placed in an indoor showroom with a tiled floor and beige curtain background. +05468.jpg The brown Buick Verano Sedan 2012 is viewed from the rear three-quarter angle, highlighting its sleek body with smooth lines, chrome-accented windows, distinct rear light design, and set against a clean, white background. +02801.jpg The silver Buick Verano Sedan 2012 is viewed from a rear three-quarter angle in a showroom parking lot, showcasing its smooth curves, prominent taillights, and a visible dealership plate. +00439.jpg The Buick Verano Sedan 2012, viewed from the rear three-quarters against a white wooden building backdrop, is coated in a glossy red color with a sleek finish, featuring large silver alloy wheels, distinctive wraparound taillights, and subtle chrome trim accents. +01084.jpg A vibrant red Buick Verano Sedan 2012 is shown from a front three-quarter angle amidst lush greenery, highlighting its sleek, curvy body and distinctive silver grille. +02794.jpg The red Buick Verano Sedan 2012 is viewed from the front-left angle, showcasing its chrome grille and sleek headlights, parked on a paved lot with other vehicles and a building in the background. +02450.jpg The Buick Verano Sedan 2012 in the image is a sleek, pearlescent white vehicle viewed from a front three-quarter angle, showcasing its distinctive waterfall grille and chrome accents, with a smooth brown wall backdrop and pavement underfoot. +05912.jpg The 2012 Buick Verano Sedan in the image appears in a sleek metallic silver color, viewed from a front-side angle, set against an indoor showroom environment with a carpeted floor, featuring its distinct chrome grille and sharp headlights prominently. +03353.jpg The image shows a black Buick Verano Sedan 2012 with a shiny texture, viewed from the front left angle, against a neutral gray background, featuring distinctive chrome accents on the grille and sleek alloy wheels. +03168.jpg The Buick Verano Sedan 2012 appears in a metallic silver color with a glossy finish, viewed from a rear three-quarter angle in a sleek, modern showroom environment, showcasing its distinctive sweeping tail lights and alloy wheels. +01828.jpg A white Buick Verano Sedan 2012 is pictured from a front three-quarter view, highlighting its chrome grille and sleek headlights against a rocky, textured background. +04073.jpg The Buick Verano Sedan 2012 appears in a glossy black color with a smooth texture, showcased from a side profile view, parked in a dealership lot surrounded by other vehicles, and features distinctive alloy wheels and sleek body lines. +04366.jpg The image shows a black Buick Verano Sedan 2012 with a glossy finish, viewed from a front three-quarter angle against a plain white background, featuring distinctive chrome grille bars and sharp headlights. +01604.jpg A white Buick Verano Sedan 2012 with a glossy finish is seen from a front three-quarter angle on a concrete rooftop with cloud-filled sky, featuring its signature chrome waterfall grille, prominent headlight design, and multi-spoke alloy wheels. +06645.jpg The Buick Verano Sedan 2012 appears in a metallic gray color with a sleek, reflective texture, viewed from a rear three-quarter angle on a highway, highlighted by its distinctive tail light design and smooth, flowing body lines against a clear blue sky. +07951.jpg The image shows a side view of a bronze-colored Buick Verano Sedan 2012 with a sleek silhouette, chrome accents, and multi-spoke alloy wheels, set against a gradient grey studio background. +01876.jpg The Buick Verano Sedan 2012 in the image is cherry red with a glossy finish, viewed from the front passenger side, parked on a concrete surface outside a dealership with glass windows and a pickup truck in the background, featuring distinctive chrome detailing on the grille and sleek alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Cadillac_CTS-V_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Cadillac_CTS-V_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..627addd --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Cadillac_CTS-V_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +02422.jpg The Cadillac CTS-V Sedan 2012 is seen from a front-side angle in a glossy black finish with gold brake calipers, parked in a dealership lot with a building marked "Cadillac" in the background, highlighting its sharp lines and aggressive stance. +01519.jpg A white Cadillac CTS-V Sedan 2012 with a sleek, glossy finish is seen in profile against a grassy foreground and a suburban backdrop, featuring distinct sharp lines and silver alloy wheels. +02433.jpg The Cadillac CTS-V Sedan 2012 appears in a metallic gray color with a sleek, glossy texture, shown from a rear-side angle on a winding road bordered by grass and a distant hill, with sharp tail lights and dual exhausts as prominent features against the blurred motion background. +07029.jpg A sleek, black Cadillac CTS-V Sedan 2012 is seen in a low-resolution side profile, showcasing its sharp lines and chrome-accented wheels against a simple, light-colored background. +07665.jpg A glossy black Cadillac CTS-V Sedan 2012 is seen from a front-left angle in a grassy park setting, featuring a prominent grille and sporty five-spoke wheels. +00436.jpg The Cadillac CTS-V Sedan 2012 appears in a metallic gray color with a sleek, reflective surface, viewed from a front-side angle under a partly cloudy sky, parked outside a dealership with distinctive vertical LED headlights, a sporty mesh grille, and prominent alloy wheels. +05701.jpg The 2012 Cadillac CTS-V Sedan in the image appears in a metallic silver-gray color, viewed from a front three-quarter angle, parked outside a car dealership with distinctive elements like the mesh front grille and sporty five-spoke wheels clearly visible. +06630.jpg The Cadillac CTS-V Sedan 2012 is captured in a three-quarter front view, displaying its glossy black finish with a chrome-accented grille, positioned in a dealership setting with a visible Buick GMC sign and surrounded by parked cars on a sunny day. +00098.jpg A white Cadillac CTS-V Sedan 2012 is pictured from the front-right angle in a showroom setting, showcasing its distinctive chrome grille, sharp headlights, and sporty alloy wheels. +00923.jpg The low-resolution image depicts a dark gray Cadillac CTS-V Sedan 2012 viewed from the front-left angle, displaying its sleek body lines, distinctive mesh grille, and athletic stance set against a plain white background. +03104.jpg The Cadillac CTS-V Sedan 2012 is depicted in a dark metallic gray hue, captured from a dynamic rear three-quarter angle as it drives along a tree-lined urban road, highlighting its bold rear light design and sleek, aerodynamic body contours. +07536.jpg The Cadillac CTS-V Sedan 2012 is shown in a glossy black with a frontal and slight side view, parked on a concrete surface among other cars, featuring a prominent grille and silver alloy wheels, set against an urban backdrop with a brick building and trees. +05944.jpg A front view of a dark metallic Cadillac CTS-V Sedan 2012 against a minimalist gradient background shows distinctive angular headlights and a chrome mesh grille, accentuated by dual fog lights and a prominent Cadillac emblem. +07538.jpg A silver Cadillac CTS-V Sedan 2012 is viewed from the front-left angle, showcasing its mesh grille and angular headlights against a backdrop of a road with trees and a cloudy sky. +03376.jpg The Cadillac CTS-V Sedan 2012 is captured from a front-side angle in a showroom, featuring a glossy black finish with metal trim accents, and is surrounded by a modern indoor setting with glass walls and tile flooring. +07086.jpg A red Cadillac CTS-V Sedan 2012 is viewed from a front angle in a parking lot, featuring a meshed grille, angular headlights, and sleek alloy wheels, set against a brick wall and metal fence. +06588.jpg A white Cadillac CTS-V Sedan 2012 is positioned at a three-quarter front view, showcasing its chrome mesh grille and sleek lines, set against a simple indoor backdrop with understated gray flooring and black curtains. +00795.jpg A black Cadillac CTS-V Sedan 2012 is viewed from a front three-quarter angle, parked on a pavement near hedges, featuring a prominent chrome grille, angular headlights, and shiny alloy wheels. +07440.jpg The Cadillac CTS-V Sedan 2012 appears in a glossy white color with a smooth texture, viewed from a rear three-quarter angle highlighting its distinctive vertical taillights and quad exhaust tips, set against a plain white background. +04289.jpg A metallic gray Cadillac CTS-V Sedan 2012 is captured from a low front angle on a deserted road, showcasing its prominent chrome mesh grille and sharp angular headlights with a vast, blurred mountainous landscape in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Cadillac_Escalade_EXT_Crew_Cab_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Cadillac_Escalade_EXT_Crew_Cab_2007_descriptions.txt new file mode 100644 index 0000000..a7b6482 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Cadillac_Escalade_EXT_Crew_Cab_2007_descriptions.txt @@ -0,0 +1,20 @@ +06715.jpg The Cadillac Escalade EXT Crew Cab 2007 is captured in a side profile view, showcasing its sleek black color and polished chrome accents, parked on a concrete surface with a plain textured wall in the background, with its large wheels and distinctive extended cab design clearly visible. +01983.jpg A black Cadillac Escalade EXT Crew Cab 2007 with chrome accents and large wheels is seen from a front-side angle on a concrete driveway, surrounded by a suburban neighborhood with bare trees and houses. +01198.jpg This image shows a front three-quarter view of a white Cadillac Escalade EXT Crew Cab 2007 with a sleek, glossy finish, featuring a prominent chrome grille and large alloy wheels, set against a plain white background. +05835.jpg The 2007 Cadillac Escalade EXT Crew Cab is shown from a front-side angle, featuring a metallic silver finish with chrome accents, distinctive large chrome wheels, and a dual-level horizontal grille, set against a background of pink storage unit doors. +01751.jpg The silver Cadillac Escalade EXT Crew Cab 2007 is shown in a side-front view with its distinctive angular body, prominent chrome grille, and sleek, integrated cargo bed, set against a white background. +03647.jpg The Cadillac Escalade EXT Crew Cab 2007 appears in a metallic silver color with a smooth texture, viewed from the side with a backdrop of a small auto shop and gravel lot, featuring large chrome wheels and distinctive angular body contours. +05702.jpg The Cadillac Escalade EXT Crew Cab 2007 is black with a glossy finish, viewed from a broadside angle on a grass lawn, with distinctive chrome rims and grille, against a suburban backdrop featuring trees and a single-story house with a brown roof. +06587.jpg The Cadillac Escalade EXT Crew Cab 2007 is shown in a low-resolution image, featuring a glossy silver texture with prominent chrome detailing, viewed from a three-quarter front-left angle in a sunny environment, set against a commercial building backdrop with distinctive large wheel rims. +00056.jpg The Cadillac Escalade EXT Crew Cab 2007 is shown from a rear three-quarter angle in a reflective black finish with chrome detailing, parked on a smooth wet surface, highlighting its distinctive integrated truck bed, roof rails, and the angular, bold body lines typical of this model. +06199.jpg The Cadillac Escalade EXT Crew Cab 2007 appears in a glossy black finish with chrome highlights, viewed from a front-side angle, parked on a dark asphalt surface with a bright blue barrier and lush greenery in the background, showcasing its distinctive angular front grille and large chrome wheels. +00364.jpg The image shows a black Cadillac Escalade EXT Crew Cab 2007 viewed in three-quarter rear perspective, displaying its sleek body with chrome accents and distinctive angular tail design against a backdrop of lush green trees and a paved surface. +03739.jpg A metallic red Cadillac Escalade EXT Crew Cab 2007 is viewed from a front three-quarter angle in a suburban parking lot, featuring large chrome wheels and distinctive vertical front grille bars, set against a background of trees and a house. +00365.jpg The black Cadillac Escalade EXT Crew Cab 2007, with a glossy finish, is viewed at a three-quarter front angle in a garage setting, featuring a prominent chrome grille and polished alloy wheels, while surrounded by other vehicles and workshop equipment. +04154.jpg The image shows a metallic silver Cadillac Escalade EXT Crew Cab 2007 viewed from the side at a slight angle highlighting its chrome wheels, distinct grille, and sleek body lines, set against a dimly lit indoor backdrop with a black curtain and showroom-like setting. +03879.jpg The Cadillac Escalade EXT Crew Cab 2007 in the image is shown in a glossy black color with chrome accents viewed from the front-right angle, featuring a prominent grille, large chrome wheels, and is set against a plain white background with reflective flooring. +01289.jpg The 2007 Cadillac Escalade EXT Crew Cab in the image is a glossy black color with a side profile view showing its chrome accents and large alloy wheels, set against a sunny outdoor parking lot with other vehicles and blue skies in the background. +01447.jpg A metallic blue Cadillac Escalade EXT Crew Cab 2007 is viewed from the front-left angle, showcasing its chrome grille and distinctive headlights, positioned in an indoor showroom with a smooth, light-colored floor and a visible wall with a closed door. +07533.jpg The vehicle is a shiny black Cadillac Escalade EXT Crew Cab 2007 viewed from the front-left angle, parked in a dealership lot with visible storefronts in the background, featuring chrome accents and large alloy wheels. +06566.jpg The Cadillac Escalade EXT Crew Cab 2007 is a glossy black truck with chrome accents, prominently viewed from a low front-side angle against a backdrop of flags and a curved building, featuring large, polished wheels and a distinctive front grille. +00908.jpg The 2007 Cadillac Escalade EXT Crew Cab is viewed from the front-left angle, showcasing its metallic silver color, sleek chrome grille, distinct side vents, and polished alloy wheels, set against an indoor showroom with white drapes and a Cadillac emblem in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Cadillac_SRX_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Cadillac_SRX_SUV_2012_descriptions.txt new file mode 100644 index 0000000..32ad301 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Cadillac_SRX_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +04900.jpg A metallic gray Cadillac SRX SUV 2012 is viewed from the front right angle, showcasing its chrome grille and sharp headlights, cruising on a paved road with a mildly blurred natural landscape in the background. +05054.jpg The Cadillac SRX SUV 2012 is a dark gray metallic vehicle with a shiny texture, captured from a front three-quarter angle, prominently displaying its distinctive chrome grille and angular headlights, set against a grassy and brick-paved background. +01185.jpg The Cadillac SRX SUV 2012 appears in a glossy red finish with chrome accents, viewed from the front-left angle in a sunlit parking lot with industrial buildings in the background, featuring distinctive vertical grille elements and roof rails. +02768.jpg The Cadillac SRX SUV 2012 is displayed in a side profile view, featuring a metallic gray color with a smooth texture, parked in a car dealership lot with an American flag on the roof, showcasing chrome-trimmed windows and multi-spoke alloy wheels against a backdrop of other parked vehicles and a dealership sign. +05698.jpg The 2012 Cadillac SRX SUV is seen from a rear three-quarter view in a metallic champagne color with smooth texture, parked on an asphalt lot near a modern building, featuring vertical taillights and distinctive angular rear styling despite the low resolution. +01932.jpg The 2012 Cadillac SRX SUV is depicted in a striking deep red color with a smooth texture, captured from a front three-quarter angle in a dealership parking lot, showcasing its chrome grille, angular headlights, and silver trim accents amidst a backdrop of modern building exteriors and other parked vehicles. +01136.jpg The Cadillac SRX SUV 2012 in the image is a silver vehicle with a glossy texture, seen from a slightly elevated front left angle, with a dark, neutral studio backdrop highlighting its angular grille design and prominent headlights. +06550.jpg A metallic silver Cadillac SRX SUV 2012 is parked on a flat surface, viewed from the rear three-quarter angle, with a clear blue sky and a distant green landscape, featuring prominent tail lights and dual exhausts. +04117.jpg The image shows a red Cadillac SRX SUV 2012 with a glossy finish, viewed from a front three-quarter angle on a snowy, wooded background, featuring distinctive chrome grille and angular headlights. +07569.jpg The Cadillac SRX SUV 2012 appears in metallic silver with a smooth texture, shown in a side profile against a gradient blue background, featuring its signature angular tail lights and prominent wheel arches. +01444.jpg The Cadillac SRX SUV 2012 appears in a glossy dark red finish, shown from a rear three-quarter view on a plain white background, with distinctive silver trim and alloy wheels standing out. +01615.jpg The Cadillac SRX SUV 2012 appears in a metallic blue color with a glossy texture, viewed from the side angle in a parking lot, set against a backdrop of bare trees, featuring prominent chrome wheels and distinctive angular headlights. +02811.jpg The low-resolution photo shows a dark gray Cadillac SRX SUV 2012 from a front three-quarter view, parked on a city street with a modern building in the background, exhibiting a prominent chrome grille, angular headlights, and reflective alloy wheels. +05741.jpg The Cadillac SRX SUV 2012 appears in a sleek metallic dark gray with a glossy finish, viewed from a front-side angle as it moves along a blurred urban street background with distinctive sharp-edged headlights and a prominent grille. +04356.jpg The low-resolution image shows a silver Cadillac SRX SUV 2012 with a shiny texture, viewed from a three-quarter angle in front of a marketplace, featuring chrome wheels, vertical headlights, and a distinctive grille design against a backdrop of a store entrance with shopping carts. +04757.jpg The red Cadillac SRX SUV 2012 with a glossy texture is viewed from a front three-quarter angle, parked on a paved surface against a green, tree-lined backdrop, showcasing its prominent chrome grille and angular headlamps. +00970.jpg The silver Cadillac SRX SUV 2012 is captured from a front-side angle, highlighting its angular headlights and prominent chrome grille, set against a blurred outdoor background, with distinct black trim around the wheel arches and windows. +00866.jpg The 2012 Cadillac SRX SUV appears in a metallic gray color with a smooth texture, viewed from the front-right at an angle in a dealership lot, featuring prominent vertical headlights and a distinctive chrome grille set against a backdrop of other parked vehicles. +07578.jpg The Cadillac SRX SUV 2012 is a gray vehicle with a smooth, metallic texture, shown from a front three-quarter view in a dealership parking lot, prominently featuring its distinctive chrome grille and angular headlights with a dealership sign in the background. +01817.jpg The image shows a dark metallic Cadillac SRX SUV 2012 with a polished texture, viewed from the front passenger-side angle, set against a plain blue background, featuring distinctive chrome grille accents and angular headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Avalanche_Crew_Cab_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Avalanche_Crew_Cab_2012_descriptions.txt new file mode 100644 index 0000000..d583701 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Avalanche_Crew_Cab_2012_descriptions.txt @@ -0,0 +1,20 @@ +01176.jpg The red Chevrolet Avalanche Crew Cab 2012 is viewed from a rear three-quarter angle, parked on a paved surface with a suburban background, featuring a distinctive black bed cover and chrome wheels. +05809.jpg The 2012 Chevrolet Avalanche Crew Cab is viewed head-on, showcasing a glossy black exterior with a prominent chrome mesh grille, set against a dealership lot with other vehicles and trees in the blurred background. +05368.jpg The Chevrolet Avalanche Crew Cab 2012 is presented in a metallic silver color with a textured finish, captured from a front-side angle highlighting its distinctive grille and off-road tires, set against a rugged coastal landscape with driftwood and distant cliffs. +04208.jpg A metallic brown Chevrolet Avalanche Crew Cab 2012 is seen from a frontal viewpoint, parked on a concrete surface with a blurred urban background, featuring a prominent front grille and round fog lights. +07703.jpg A silver Chevrolet Avalanche Crew Cab 2012 is viewed from the rear in a three-quarter angle, parked on a grassy cliffside with a mountainous coastal landscape and vast ocean in the background, featuring distinct body cladding and a rooftop cargo rack. +05818.jpg The 2012 Chevrolet Avalanche Crew Cab appears in a white color with a glossy texture, shown from a rear-side angle in a parking lot environment, featuring distinctive red taillights and black trim along the bed cover. +04180.jpg The black Chevrolet Avalanche Crew Cab 2012 with chrome detailing is viewed from the front-right angle against a dealership background, featuring a bold grille and integrated fog lights, parked on a concrete surface. +07257.jpg The Chevrolet Avalanche Crew Cab 2012 is shown in a low-resolution image with a metallic orange color and smooth texture, captured from a front-side angle in a sunlit urban environment with brick walls, displaying distinctive large headlights and prominent grille despite the resolution. +05267.jpg The Chevrolet Avalanche Crew Cab 2012 appears in silver with a smooth metallic texture, viewed from a front three-quarter angle in an outdoor parking lot, featuring prominent angular wheel arches and distinctive dual-element headlights. +02169.jpg The Chevrolet Avalanche Crew Cab 2012 appears from a front three-quarter view in a parking lot, featuring a white body with a smooth texture, chrome grille accents, prominent headlights, and distinctive body cladding along the sides. +03903.jpg The Chevrolet Avalanche Crew Cab 2012 is seen from a rear three-quarter view, showcasing its black glossy finish and distinct angular lines against a suburban background with a grassy area and industrial buildings, while its notable features include a covered cargo bed, chrome wheels, and a visible towing hitch. +06577.jpg The Chevrolet Avalanche Crew Cab 2012 in the image is a white vehicle with a smooth texture, viewed from a front three-quarter angle, set in a parking lot with a clear sky background, featuring prominent chrome accents and distinct body contours. +08017.jpg The Chevrolet Avalanche Crew Cab 2012 appears in a bright white color with a smooth texture, viewed from a front three-quarter angle, parked on a lot with blue canopy structures in the background, and features distinctive angular headlights and a prominent grille. +02107.jpg A silver Chevrolet Avalanche Crew Cab 2012 is seen from a front three-quarter view with a smooth metallic finish, positioned in a parking lot with the Chevrolet logo and a blue building in the background, showcasing its distinct four-door configuration and rugged styling. +04212.jpg The Chevrolet Avalanche Crew Cab 2012 in the image is bright red with a smooth texture, viewed from the rear three-quarter angle, parked indoors against a light-colored wall, showcasing its distinct sail-shaped C-pillars and integrated bed cover. +04713.jpg A white Chevrolet Avalanche Crew Cab 2012 is shown from a rear three-quarter view against a neutral gray background, highlighting its distinctive midgate and black trim elements. +02515.jpg The Chevrolet Avalanche Crew Cab 2012 appears in a silver metallic finish with a front three-quarter view, set in an indoor workshop or garage environment, featuring its characteristic black grille and distinct extended cab sections, against a backdrop of industrial elements and another vehicle. +02099.jpg A white Chevrolet Avalanche Crew Cab 2012 is shown from a front three-quarter view with a shiny, smooth texture, parked on a paved road against a background of sparse trees and a grassy embankment, featuring a prominent chrome grille and silver alloy wheels. +03901.jpg The Chevrolet Avalanche Crew Cab 2012 is shown in a front-side view, featuring a white color with a smooth texture, chrome accents on the grille and wheels, parked on a sunlit street lined with palm trees. +01471.jpg The Chevrolet Avalanche Crew Cab 2012 in the image appears from a frontal view with a silver metallic color, a large chrome grille with a Chevrolet emblem, flanked by distinctive rectangular headlights, set against a background of a car dealership lot under clear daylight. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Camaro_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Camaro_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..e805f83 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Camaro_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +05811.jpg The 2012 Chevrolet Camaro Convertible is captured in a side profile view, showcasing its sleek white body with a black soft top against a backdrop of a gray brick wall and blue stripe, featuring prominent alloy wheels despite the low resolution. +02673.jpg The Chevrolet Camaro Convertible 2012 is a vibrant orange car with black racing stripes, viewed from a front angle on a wet road with palm trees in the background, featuring a bold grille and prominent alloy wheels. +02928.jpg The Chevrolet Camaro Convertible 2012 appears in a metallic silver color with a black convertible top, viewed from a front-side angle, displayed on a checkered platform within a sleek showroom setting, featuring prominent five-spoke wheels and distinctive horizontal grille lines. +07419.jpg The 2012 Chevrolet Camaro Convertible is a glossy red vehicle viewed from a rear three-quarter angle on a coastal road, with its top down, prominent taillights, and a serene beach backdrop. +04218.jpg The red Chevrolet Camaro Convertible 2012 is viewed from the side in an outdoor setting with trees in the background, showcasing its sleek profile, silver alloy wheels, and a lowered convertible top. +01328.jpg The black Chevrolet Camaro Convertible 2012, viewed from the front-side angle, features a sleek, glossy texture with a convertible roof against a backdrop of rolling hills and a clear sky, highlighting its distinctive front grille and alloy wheels. +06567.jpg A vibrant red Chevrolet Camaro Convertible 2012 is seen from a front-left angle with a black soft top, parked on a dark asphalt lot surrounded by other vehicles, highlighting its distinct grille and angular headlights. +04560.jpg The image shows a white Chevrolet Camaro Convertible 2012 with a smooth, glossy texture viewed from the front-left angle, featuring an open black convertible top and set against a plain indoor environment with gray flooring, enhancing the visibility of its sleek body lines and alloy wheels. +06026.jpg A front-facing view of a bright red Chevrolet Camaro Convertible 2012 with a black stripe across the hood is shown against a blurred outdoor background with grassy fields, displaying its distinctive grille, headlights, and open-roof design. +03499.jpg The Chevrolet Camaro Convertible 2012 appears in a side profile view with a sleek black exterior, set against a mountainous background under a clear sky, showcasing its distinctive five-spoke alloy wheels and a lowered convertible roof. +07850.jpg The image shows a red Chevrolet Camaro Convertible 2012 with black racing stripes, viewed from the front left angle, parked in a car dealership lot with other vehicles in the background, and featuring prominent alloy wheels and a black soft top roof. +02458.jpg The Chevrolet Camaro Convertible 2012 in the image has a sleek dark gray color with a glossy finish, viewed from the rear-left angle, set against a coastal beach background, and features distinctively shaped tail lights, a visible spoiler, and aluminum alloy wheels. +05152.jpg The Chevrolet Camaro Convertible 2012 is shown in a side profile with a white body, black convertible top, and dark alloy wheels, set against a simple, neutral studio-like background. +00607.jpg The Chevrolet Camaro Convertible 2012 appears in silver with a smooth texture, viewed from the front-left angle, featuring a black convertible top, set against a dealership background with other Chevy vehicles and a large Chevrolet sign. +04003.jpg The Chevrolet Camaro Convertible 2012 appears in a sleek charcoal gray color with a glossy finish, viewed from a front three-quarter angle against a backdrop of palm trees and a white building, featuring distinctively sharp headlights and a lowered stance. +07670.jpg The low-resolution photo showcases a white Chevrolet Camaro Convertible 2012 with a red-striped hood, captured from a front-side angle against a beige wall, with visible features including its sporty alloy wheels and an open top revealing a red interior. +00368.jpg The image shows a dark blue Chevrolet Camaro Convertible 2012 viewed from the front-left angle, parked on a paved lot with other cars in the background, featuring a sleek design with distinct alloy wheels and the convertible top retracted. +07089.jpg The image shows a silver Chevrolet Camaro Convertible 2012 with a black soft top, viewed from a front three-quarter angle against a car dealership backdrop with clear blue skies, showcasing angular headlights, a prominent grille, and five-spoke alloy wheels. +05726.jpg The 2012 Chevrolet Camaro Convertible appears in a vibrant red color with a sleek black racing stripe on the hood, captured from a side view in an outdoor setting with lush greenery in the background, showcasing its distinctive sporty shape and prominent alloy wheels. +05340.jpg A red Chevrolet Camaro Convertible 2012 with a black interior is shown from a rear-side angle, featuring silver alloy wheels, positioned on a plain white background, highlighting its sleek, sporty design. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Cobalt_SS_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Cobalt_SS_2010_descriptions.txt new file mode 100644 index 0000000..011e975 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Cobalt_SS_2010_descriptions.txt @@ -0,0 +1,20 @@ +04452.jpg The image shows a red Chevrolet Cobalt SS 2010 with a glossy finish, viewed from a front-side angle, parked in a paved lot with a white garage door background, featuring a prominent rear spoiler and alloy wheels. +04565.jpg The image depicts a vibrant red Chevrolet Cobalt SS 2010 coupe with a glossy finish, viewed from the side highlighting its aerodynamic spoiler and five-spoke alloy wheels, set against a neutral gray studio backdrop. +08008.jpg The image shows a rear view of a red Chevrolet Cobalt SS 2010 with a large spoiler, parked on a paved driveway near a blue house and garage, featuring distinct black tail lights and a custom rear bumper. +05082.jpg The Chevrolet Cobalt SS 2010 in the image is viewed from a front-left angle, featuring a glossy red exterior with prominent silver alloy wheels, situated against a plain, dark gradient backdrop. +04629.jpg The Chevrolet Cobalt SS 2010 in the image is a vibrant yellow coupe, viewed in profile from the driver's side, featuring a prominent rear spoiler and sleek body lines, set against a wooded suburban backdrop with a driveway in the foreground. +01959.jpg The 2010 Chevrolet Cobalt SS is shown from an angled front-side view, featuring a sleek white body with a glossy texture, a prominent rear spoiler, and distinctively large alloy wheels, set against a dimly lit indoor parking garage environment. +02203.jpg The image shows a black Chevrolet Cobalt SS 2010 with a glossy finish, viewed from the front-left angle on a suburban roadside, featuring its distinct grille emblem and sporty alloy wheels, set against a backdrop of trees and a clear sky. +06129.jpg The image shows a blue Chevrolet Cobalt SS 2010 with a glossy finish, viewed from a low rear-side angle, featuring a prominent rear spoiler, distinct round tail lights, and parked on a road with palm trees in the background. +03163.jpg The image shows a bright red Chevrolet Cobalt SS 2010 with a smooth, glossy finish, viewed from the rear side, featuring a distinctive rear spoiler and quad circular taillights, set against a plain, dark studio backdrop. +02368.jpg The Chevrolet Cobalt SS 2010 appears in bright yellow with black rims, highlighted by a prominent rear spoiler, viewed from the rear-left angle on a riverside, with a bridge visible in the background. +03638.jpg The image shows a yellow Chevrolet Cobalt SS 2010 with a glossy finish, viewed from the side on a gravel driveway, featuring large chrome wheels and a prominent rear spoiler, set against a suburban house with a few bushes and another vehicle in the background. +07745.jpg A vibrant red Chevrolet Cobalt SS 2010 with a smooth, glossy texture is viewed from the rear-quarter angle, parked on a concrete surface against a background of white garage doors, showcasing its prominent rear spoiler, sporty alloy wheels, and dual tailpipes. +02941.jpg The Chevrolet Cobalt SS 2010 shown is a vibrant red coupe with a smooth texture, captured in motion from a three-quarter front view on a road, with a grassy hill in the background and featuring a rear spoiler and distinct alloy wheels. +03242.jpg The image shows a red Chevrolet Cobalt SS 2010 with a smooth texture, captured from a rear three-quarter viewpoint in a minimalist studio setting, highlighting the distinct rear spoiler and rounded tail lights. +07379.jpg A red Chevrolet Cobalt SS 2010 is shown in a side profile on a paved surface with a cloudy sky in the background, highlighting its sporty spoiler, alloy wheels, and smooth body lines. +05525.jpg The Chevrolet Cobalt SS 2010, viewed from the rear three-quarter angle, is painted in a deep maroon color with a smooth, glossy texture, showcasing its distinctive rear spoiler and dual exhausts, set against a plain white background. +05691.jpg The 2010 Chevrolet Cobalt SS appears in a vibrant yellow color with a smooth texture, viewed from a rear three-quarter angle, against a brick wall with graffiti, featuring a prominent rear spoiler and alloy wheels. +04246.jpg The Chevrolet Cobalt SS 2010 in the image is a vibrant red coupe with a sleek, aerodynamic design, viewed from a side angle in a parking lot setting with a dealership backdrop, featuring prominent alloy wheels and a subtle rear spoiler. +07726.jpg The Chevrolet Cobalt SS 2010 appears in glossy black with a smooth texture, viewed from a front-side angle in a residential parking lot, featuring a low-profile spoiler, tinted windows, and intricate black alloy wheels. +04502.jpg A red Chevrolet Cobalt SS 2010 is seen from a front-side angle against a plain gray backdrop, featuring a prominent rear spoiler, five-spoke alloy wheels, and a sleek, compact body. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Corvette_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Corvette_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..085c87f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Corvette_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +06166.jpg The Chevrolet Corvette Convertible 2012 is bright red with a sleek, glossy texture, viewed from a side angle in an indoor showroom setting, featuring shiny chrome wheels and a black interior visible with the top down. +06589.jpg The Chevrolet Corvette Convertible 2012 is a sleek, bright blue sports car with a glossy finish, shown in a rear three-quarter view with the top down, parked on a smooth pavement against a backdrop of lush green fields and distant trees, featuring distinctive circular taillights and a sporty dual-exhaust system. +01411.jpg A bright yellow Chevrolet Corvette Convertible 2012 with a black soft top is captured from a rear three-quarter viewpoint, showcasing its polished silver wheels and signature quad exhaust against a partly cloudy sky and open road background. +06923.jpg The yellow Chevrolet Corvette Convertible 2012 is depicted from a three-quarter front view, showcasing its sleek curves and chrome rims, set against a suburban background with greenery and a house. +00415.jpg The Chevrolet Corvette Convertible 2012 in the image is a vibrant red with a sleek, glossy finish; viewed from a slight front-side angle, it is set against a backdrop of sparse trees and a clear blue sky, with its convertible top down and chrome wheels prominently visible. +04954.jpg The image shows a blue Chevrolet Corvette Convertible 2012 with a sleek, glossy finish, viewed from a low front-angle against a serene rural backdrop with grass and trees, highlighting its aerodynamic curves and chrome wheels. +01116.jpg The rear view of the Chevrolet Corvette Convertible 2012 features a sleek gray color with a smooth texture, showcasing its iconic circular taillights and quad exhausts, set against a rural road with a tree and grassy field in the background. +07749.jpg The image shows a bright yellow Chevrolet Corvette Convertible 2012 captured from an overhead angle, with the top down revealing black interior details, against a blurred, gray road backdrop. +01108.jpg The Chevrolet Corvette Convertible 2012 in the image is a vivid blue color with a sleek, aerodynamic body, viewed from the side with the top down, set against a pastoral background of green fields and trees, highlighting its distinctive angular headlights and five-spoke alloy wheels. +05436.jpg A vibrant red Chevrolet Corvette Convertible 2012 is shown in a three-quarter front view, highlighting its sleek aerodynamic curves, prominent headlights, and black convertible top, set against a clean white background that enhances its sporty allure. +03908.jpg The red Chevrolet Corvette Convertible 2012 is viewed from the rear left angle, showcasing its sleek body, dual exhausts, and distinctive taillights, set against a backdrop of greenery and a clear sky. +06902.jpg The image shows a vibrant yellow Chevrolet Corvette Convertible 2012 with a glossy texture, captured from a front-side angle, parked on a paved street with lush greenery in the background, featuring its distinct sleek lines and iconic emblem clearly visible despite the low resolution. +01710.jpg A vibrant red Chevrolet Corvette Convertible 2012 is captured in motion from a low rear-side angle, showcasing its sleek aerodynamic lines and distinctive circular tail lights against a blurred, open roadway with green foliage in the background. +01086.jpg The Chevrolet Corvette Convertible 2012 appears in a vibrant red color with a sleek, glossy texture, presented in a three-quarter front view against a serene outdoor background of lush greenery and trees, featuring distinctive smooth curves and classic Corvette styling elements. +07925.jpg A vibrant yellow Chevrolet Corvette Convertible 2012 is captured from a front-side angle, showcasing its sleek, aerodynamic design with distinctive hood vents and sharp headlights, set against a blurred background of greenery and gray pavement. +06941.jpg A red Chevrolet Corvette Convertible 2012 is parked on a sunny street with its top down, displaying shiny chrome wheels against a backdrop of trees and residential buildings. +00963.jpg The Chevrolet Corvette Convertible 2012 is depicted in a bright red color with a glossy texture, shown from a front three-quarter viewpoint against a blurred background, featuring distinctive angular headlights and sleek aerodynamic lines. +03749.jpg The image showcases a vibrant yellow Chevrolet Corvette Convertible 2012 with a smooth finish, viewed from a rear three-quarter angle on cobblestone pavement, featuring a distinct black soft top, prominent taillights, and sleek black wheels, set against a rustic background with a house and trees. +00751.jpg The 2012 Chevrolet Corvette Convertible is presented in vibrant red with a black soft top, viewed in a profile stance on a paved lot, highlighting its sleek body and chrome wheels against a background of parked vehicles and a beige brick wall. +00922.jpg The 2012 Chevrolet Corvette Convertible is a sleek, metallic blue sports car with its soft top down, viewed from a front-side angle against a grassy landscape, featuring prominent headlights and five-spoke alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Corvette_Ron_Fellows_Edition_Z06_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Corvette_Ron_Fellows_Edition_Z06_2007_descriptions.txt new file mode 100644 index 0000000..cb2baa3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Corvette_Ron_Fellows_Edition_Z06_2007_descriptions.txt @@ -0,0 +1,20 @@ +07425.jpg The 2007 Chevrolet Corvette Ron Fellows Edition Z06 is displayed from a low front-side angle, showcasing its distinctive white body with red fender stripes, chrome wheels, and unique badging, set against an indoor showroom environment with plants and other vehicles in the background. +04437.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 appears in a glossy white with red accents on the hood, displayed at a car event with its hood raised, revealing a red engine cover, surrounded by a paved environment and nearby people. +05555.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 is displayed in a side profile with a pristine white body adorned with distinctive red accents over the wheel arches, set against an industrial backdrop of concrete walls and chain-link fencing while parked on a pavement. +08040.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 is seen from a three-quarter front view, showcasing its bright white exterior with distinctive red accents on the front fenders, set against a brick-paved background with greenery. +02047.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 is white with red accents and visible black wheels, viewed from a side angle on a racetrack, set against a blurred green and grey barrier background, highlighting its sleek, sporty contours. +07068.jpg The 2007 Chevrolet Corvette Ron Fellows Edition Z06 is displayed in a low-resolution side perspective, showcasing its sleek white body with red accent stripes on the front fender, set against a clean, dark background, highlighting its distinctive sporty features and signature Z06 badging. +01316.jpg The low-resolution image shows a white Chevrolet Corvette Z06 with red accents on the fenders, seen from a three-quarter front view on a dark platform, surrounded by an indoor showroom environment with other vehicles in the background. +07469.jpg The image depicts a white Chevrolet Corvette Ron Fellows Edition Z06 2007 with racing stripes, viewed from the rear side against a suburban backdrop with a tree and brick building, showcasing its distinctive black wheels and side vents despite the low resolution. +06886.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 appears in glossy white with subtle racing stripes, featuring an open hood and doors, positioned on a red carpet within an indoor showroom, highlighted by distinct chrome wheels and emblematic branding. +06366.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 is showcased in a front three-quarter view with a striking white exterior featuring red accents, polished chrome wheels, and is set against an indoor showroom backdrop with a visible motorsport sign. +02257.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 is shown in a side profile, showcasing its distinctive white body with red accents and subtle Z06 badging, set against a grassy park backdrop with trees and a vivid orange structure in the distance. +02134.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 appears in a bright white color with distinctive red accents on the fender, viewed from a slightly elevated front-left angle, with a carpeted showroom environment and informational display signs in the background, showcasing chrome wheels and "CORVETTE" lettering on the windshield. +00354.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 appears in a sleek white with red accents on the fenders, seen from a low angle showcasing its sporty stance against an industrial background with a concrete wall and sparse vegetation, highlighting its aerodynamic lines and distinctive Z06 wheels. +04476.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 appears in a low-resolution image as a white sports car with red accents on the front fender, viewed from the front-left angle, parked in an urban environment with a brick building and construction equipment in the background, highlighting its sleek body and distinctive alloy wheels. +07831.jpg A low-resolution image shows a glossy white Chevrolet Corvette Ron Fellows Edition Z06 2007 from a front-left angle, featuring red accents on the fender, sports rims, and a checkered showroom floor with plain walls in the background. +02654.jpg The image shows a Chevrolet Corvette Ron Fellows Edition Z06 2007 in a glossy white color with distinctive black and red accents, viewed from the front with a clear focus on its aggressive hood and unique red and silver emblem, set against a background of brick pavement and lush green shrubbery. +02891.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 appears in a low-angle front-left view with a gleaming white finish and distinctive red accent on the front fender, set against an indoor showroom environment with polished flooring and muted lighting. +01975.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 is shown in a striking white color with distinctive red accents on the front fenders, viewed from a front three-quarter angle on a glossy showroom floor, set against a backdrop of a large screen displaying an image of another Corvette. +00097.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 is shown in a three-quarter front view, displaying its glossy white body accented with red fender stripes, contrasting black windshield, and sleek aerodynamic design, parked on a paved surface near trees and a brick structure in the background. +02276.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 is a sleek white sports car with red and black accents on the sides, positioned at an angle in front of a blue military jet on an airport tarmac, showcasing its aerodynamic design and distinctive badge on the hood. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Corvette_ZR1_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Corvette_ZR1_2012_descriptions.txt new file mode 100644 index 0000000..1676c9d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Corvette_ZR1_2012_descriptions.txt @@ -0,0 +1,20 @@ +04453.jpg The Chevrolet Corvette ZR1 2012 appears in glossy black with a front three-quarter view, set against a lush green park background, showcasing its sleek aerodynamic design, distinctive hood vent, and red-accented wheels. +04360.jpg A sleek, dark-colored Chevrolet Corvette ZR1 2012 is displayed from a rear three-quarter angle in a minimalistic studio setting, highlighting its aerodynamic curves, distinctive taillights, and prominent rear spoiler, all atop polished alloy wheels. +03408.jpg The low-resolution image shows a bright yellow Chevrolet Corvette ZR1 2012 with a glossy finish, positioned in three-quarter front view, featuring a distinctive black roof and large wheels, set against an open road environment bordered by a grassy area and trees in the background. +02695.jpg The Chevrolet Corvette ZR1 2012 appears in vibrant orange with a glossy texture, viewed from a front-side angle, showcasing its distinctive black wheels and large front grille, set against an indoor exhibition backdrop with other vehicles and people in the background. +06270.jpg The 2012 Chevrolet Corvette ZR1 appears in a vivid red color with a glossy finish, viewed from a rear three-quarter angle showcasing its distinctive quad exhausts, glossy black roof, and shiny chrome wheels, set against a backdrop of a commercial parking lot with storefronts and flowering bushes. +06757.jpg The Chevrolet Corvette ZR1 2012 is depicted in a sleek black color with a glossy texture, partially side-on at a low angle, set against a stark black backdrop, featuring a distinctive front splitter, dual front intakes, and prominent blue-accented wheels. +03615.jpg The Chevrolet Corvette ZR1 2012, shown in a sleek metallic gray, is photographed from the front-left angle on a glossy white showroom floor, highlighting its aerodynamic curves, vented hood, and iconic emblem, set against a backdrop of people and display boards. +06372.jpg The low-resolution image depicts a dark-colored Chevrolet Corvette ZR1 2012 with a glossy surface and prominent front hood scoop, viewed from the front against a backdrop of yellow and black checkered barriers on a concrete surface. +04896.jpg The Chevrolet Corvette ZR1 2012 in the image is a white sports car with a sleek, low stance, captured from a rear three-quarter view; it features a large rear spoiler, quad exhausts, and distinctive red taillights set against an industrial warehouse backdrop with dim lighting. +03559.jpg The black Chevrolet Corvette ZR1 2012 is viewed from a rear three-quarter angle, emphasizing its sleek, glossy finish and distinctive taillights, with a yellow-and-black striped barrier in the foreground and a distant mountainous background. +03832.jpg The Chevrolet Corvette ZR1 2012 is a sleek blue sports car with a rear view showcasing its bold curves, quad exhausts, and distinctive rear lights, highlighted against a clear blue sky on an open flat surface. +00386.jpg The Chevrolet Corvette ZR1 2012 appears in a vibrant blue with a glossy finish, viewed from a low front angle showcasing its aerodynamic design, prominent front grille, and striking chrome wheels, set against a backdrop of clear skies with scattered clouds. +00488.jpg The Chevrolet Corvette ZR1 2012 in the image is a sleek, dark-colored sports car with a shiny finish, captured from a low frontal angle on a winding road, flanked by yellow lines and set against a blurred natural background with greenery. +01095.jpg A sleek black Chevrolet Corvette ZR1 2012 is captured from the rear angle on a winding road, with red taillights contrasting against the body, and the blurred, grassy landscape hinting at motion. +03541.jpg A vibrant red Chevrolet Corvette ZR1 2012 with a glossy finish is seen from a slightly elevated front-side angle on an asphalt track, surrounded by orange cones, with a visible hood scoop and sleek body lines enhancing its aerodynamic form. +07931.jpg The Chevrolet Corvette ZR1 2012 in the image is a vivid blue sports car with gleaming chrome wheels, viewed from a front three-quarter angle, set against a backdrop of desert-like landscaping with trees and a concrete wall, featuring its distinctive aerodynamic lines and wide stance. +02740.jpg The Chevrolet Corvette ZR1 2012 in the image is a glossy red sports car viewed from the front right angle, aggressively navigating a racetrack with various sponsor decals, flared fenders, and a prominent exposed intercooler, surrounded by a lush green backdrop. +07954.jpg The 2012 Chevrolet Corvette ZR1 appears in a glossy dark gray color with a sleek coupe silhouette, viewed from a rear three-quarter angle, showcasing bright red taillights, a quad exhaust system, and large silver alloy wheels, set against a plain white and black interior background. +05660.jpg The Chevrolet Corvette ZR1 2012 in the image is a metallic gray sports car, viewed from a low front angle emphasizing its sleek hood vents and aggressive front grille, set against a racetrack environment with trees and barriers in the background. +01133.jpg The Chevrolet Corvette ZR1 2012 appears in a sleek dark grey with a glossy texture, captured from a front angle on a winding road, showcasing its distinctive wide stance and vented hood against a blurred natural landscape background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Express_Cargo_Van_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Express_Cargo_Van_2007_descriptions.txt new file mode 100644 index 0000000..b593629 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Express_Cargo_Van_2007_descriptions.txt @@ -0,0 +1,20 @@ +02242.jpg A white Chevrolet Express Cargo Van 2007 with a roof-mounted ladder rack is positioned in a three-quarter front view on a gravel lot, featuring a smooth texture, black front bumper, chrome wheels, and a background of overcast sky with other vans nearby. +02862.jpg The image shows a white Chevrolet Express Cargo Van 2007 with a black grille and bumper, viewed from the front-left angle, parked on a paved surface with a background of trees and a hill, under a clear sky. +06125.jpg The white Chevrolet Express Cargo Van 2007 is viewed from the rear-left angle, showcasing its smooth texture and distinctive red rear lights, parked on a concrete lot with a commercial building and power lines in the background. +04058.jpg The Chevrolet Express Cargo Van 2007 is shown in a white color with a smooth texture, viewed from the side, parked on a concrete surface with a backdrop of greenery and urban buildings, featuring a minimalistic design with prominent, plain side panels and small rear windows. +05614.jpg The Chevrolet Express Cargo Van 2007 is viewed from the front, featuring a white and black exterior with a matte finish, situated against a backdrop of a wooded area and parked on a dark asphalt surface, with distinctive orange accents on the headlights. +05739.jpg The low-resolution image shows a white Chevrolet Express Cargo Van 2007 with a smooth texture viewed from the side, against a backdrop of other vehicles and a building with a red-tiled roof. +00435.jpg A side-view image shows a white Chevrolet Express Cargo Van 2007 with a ladder rack on the roof, parked on a concrete surface near a building with a blue and white facade under a clear sky. +06643.jpg The Chevrolet Express Cargo Van 2007 appears in a glossy white color with a frontal three-quarter view, set against a plain indoor background, and features black side mirrors, a chrome grille with a gold Chevrolet emblem, and basic silver wheels. +02317.jpg The Chevrolet Express Cargo Van 2007 is viewed from a rear three-quarter angle, showcasing its smooth white paint and minimal texture, with a visible red taillight against a dimly lit indoor setting featuring a concrete floor and partial signage. +03777.jpg The image shows the rear view of a white Chevrolet Express Cargo Van 2007 with partially open rear doors, revealing a sparsely equipped interior, set against a commercial parking area background. +07237.jpg The white Chevrolet Express Cargo Van 2007 is seen from a front-side angle, featuring roof racks, a prominent Chevrolet emblem on the grille, and is parked along a wet street lined with industrial buildings. +04189.jpg The Chevrolet Express Cargo Van 2007 is shown in a side profile view, featuring a plain white color with a smooth texture, set against a suburban street with houses and sparse snow patches in the background, highlighting its simple, utilitarian design and distinct, elongated body shape. +06579.jpg The Chevrolet Express Cargo Van 2007 is white with a smooth texture, viewed from a front-side angle in an outdoor urban lot, featuring a black grille and solid body with minimal windows amidst other parked vehicles. +02316.jpg The Chevrolet Express Cargo Van 2007 is a plain white van with a smooth texture, viewed from the side in a parking lot under a clear blue sky, with prominent side mirrors and slightly visible wheel rims, against a backdrop of other parked vehicles and a tree-lined horizon. +02658.jpg The Chevrolet Express Cargo Van 2007 appears in white with a smooth texture, viewed in a three-quarter front angle in a parking lot bordered by palm trees, featuring a recognizable gold Chevrolet logo on the grille. +01222.jpg The Chevrolet Express Cargo Van 2007 is white with a smooth texture, viewed from a side angle in a parking lot, featuring a ladder rack on the roof and surrounded by greenery and other vehicles. +02439.jpg The image depicts a white Chevrolet Express Cargo Van 2007 with a smooth texture, viewed from a front-left angle, parked on a pavement with trees in the background, featuring a black grille and side mirrors. +01147.jpg The Chevrolet Express Cargo Van 2007 in the image is seen from a front viewpoint, featuring a white and black exterior with a textured grille, distinctive Chevrolet emblem, and prominent amber turn signals set against a plain, unobtrusive background. +07139.jpg A white Chevrolet Express Cargo Van 2007 is shown in a side profile against an automotive service building, displaying its boxy shape, smooth body panels, and distinct rear lights. +06087.jpg A white Chevrolet Express Cargo Van 2007 is seen from a front-side angle with roof racks and a city park background dominated by trees, under a cloudy sky. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Express_Van_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Express_Van_2007_descriptions.txt new file mode 100644 index 0000000..c58b5b9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Express_Van_2007_descriptions.txt @@ -0,0 +1,20 @@ +07047.jpg The Chevrolet Express Van 2007 in the image is white with a smooth, glossy finish, viewed from a front three-quarter angle, parked beside a stone wall in an outdoor lot, with its black grille and bumper prominently visible. +06647.jpg The white Chevrolet Express Van 2007 with a smooth texture is viewed from the front-left angle in a parking lot, featuring a prominent black front bumper and visible driver-side mirror and wheel. +03158.jpg The Chevrolet Express Van 2007 is shown in low resolution from a side profile, displaying a solid white body with a smooth texture, set against a dealership background featuring a large sign and utility pole, with distinct black trim around the windows and standard hubcaps. +01745.jpg The Chevrolet Express Van 2007 is a white utility vehicle with a boxy rear section, viewed from the front-left, featuring a Chevrolet emblem on the grille and a rural background with a cloudy sky. +01114.jpg The Chevrolet Express Van 2007 has a white upper body and black lower trim visible from a frontal viewpoint, parked on a driveway with a building on the left, featuring a distinct two-part grille with a gold Chevrolet emblem and amber turn signals flanking the headlights. +02268.jpg The image shows a white Chevrolet Express Van 2007 with a smooth texture, viewed from a front-right angle in a sunny parking lot with tile-roofed buildings in the background, featuring roof-mounted equipment and a prominent black front grille. +06856.jpg The Chevrolet Express Van 2007 appears in a side-rear view with a white, smooth exterior texture, against a suburban outdoor setting with trees and parked cars, featuring distinctive rear red taillights and dark-tinted windows. +00114.jpg The Chevrolet Express Van 2007 is a white van with black trim, viewed from the front-right angle, parked on a light concrete surface against a beige tiled wall, featuring large "SOLD" text across the image. +01544.jpg The Chevrolet Express Van 2007 appears in low resolution with a white color and smooth texture, viewed from a rear three-quarter angle against a sunlit dealership backdrop, with distinct red tail lamps and a slightly shadowed surface. +02564.jpg The low-resolution image shows a white Chevrolet Express Van 2007 with a smooth texture, viewed from a side angle against a background of tall green trees and distant city skyscrapers, featuring distinct black side mirrors and circular wheel covers. +06876.jpg The Chevrolet Express Van 2007 appears in a glossy black color with a front three-quarter view showcasing its prominent silver grille, amber corner lights, and reflective side mirrors against a suburban background of manicured lawns and modern buildings. +03699.jpg The Chevrolet Express Van 2007 is lime green with a smooth texture, viewed from a rear-side angle, parked in a dealership lot with palm trees in the background, and features prominent rear doors with vertical taillights. +06563.jpg A white Chevrolet Express Van 2007 is viewed from the rear-left side in a grassy setting, featuring dark tinted windows, a black bumper, red vertical taillights, and a distinct yellow bike rack attached to the back. +04624.jpg A dark-colored Chevrolet Express Van 2007 is positioned at a front-three-quarter angle in a parking lot with a clean, reflective surface and buildings in the background, displaying distinct features like a prominent front grille, rectangular amber turn signals, and chrome-trimmed wheels. +01712.jpg The Chevrolet Express Van 2007 in the image is white with a smooth texture, viewed from the side showing the full length against a dealership building background with prominent signage, featuring large side windows, five-spoke wheels, and subtle reflections on its surface. +08037.jpg The Chevrolet Express Van 2007 in the image is a dark blue color with a smooth, shiny texture, viewed from a front-side angle, parked in a dealership lot with a large sign in the background, showcasing its long-bodied design and distinctive silver alloy wheels. +06971.jpg A white Chevrolet Express Van 2007 is viewed from the front right angle, featuring a black grille and chrome wheels, positioned on a paved surface near a building with "Sales" signage in a sunny setting. +00577.jpg The image shows a bright red Chevrolet Express Van 2007 viewed in profile from the side with open sliding side and rear doors, parked on a pavement against a clear blue sky and a low white brick wall backdrop. +01949.jpg The Chevrolet Express Van 2007 is a blue van with a glossy texture, viewed from the front-right angle in a sunny, grassy outdoor setting, featuring a distinct silver grille and black side mirrors. +03964.jpg The Chevrolet Express Van 2007 in the image is metallic grey with a glossy texture, viewed from the front right angle against a plain white background, featuring a prominent chrome grille and clear amber turn signals. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_HHR_SS_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_HHR_SS_2010_descriptions.txt new file mode 100644 index 0000000..d7a5c95 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_HHR_SS_2010_descriptions.txt @@ -0,0 +1,20 @@ +02388.jpg A red Chevrolet HHR SS 2010, viewed from the front-left corner, is parked on a concrete surface with a backdrop of a white industrial building and a few other vehicles, featuring distinct SS badging and sporty alloy wheels. +02746.jpg The Chevrolet HHR SS 2010 is showcased in a vibrant red with a glossy texture, viewed from a slightly elevated front angle, in an indoor showroom environment, highlighting its signature front grille, sporty alloy wheels, and distinct roof rails. +06779.jpg The Chevrolet HHR SS 2010 is shown in a glossy red finish with a prominent front grille, sleek body contours, and distinctive alloy wheels, set against a stylized sand dune background. +03933.jpg The Chevrolet HHR SS 2010 is a vibrant orange vehicle with a smooth texture, viewed from a side angle showcasing its boxy profile and five-spoke alloy wheels, set against a rocky backdrop. +07122.jpg The Chevrolet HHR SS 2010 in the image is a bright red vehicle with a smooth texture, viewed from a three-quarter angle displaying its sporty front and side profiles, set against an industrial background with old brick and metal structures, featuring distinctive SS badging and alloy wheels. +03048.jpg A silver Chevrolet HHR SS 2010 with a smooth texture is viewed from a front three-quarter angle, featuring distinctive chrome accents, a sporty grille, and set against a plain white background. +03032.jpg The Chevrolet HHR SS 2010 is seen from a front three-quarter view displaying a metallic orange color with smooth texture, set against a plain white indoor showroom background, featuring distinctive five-spoke wheels and a prominent SS emblem on the side. +06667.jpg The silver Chevrolet HHR SS 2010, viewed from a three-quarter perspective in a parking lot with a glass building in the background, features distinctive five-spoke wheels and a prominent front grille despite the low resolution. +05262.jpg The Chevrolet HHR SS 2010 is vividly painted in a striking red with dynamic flame graphics along its side, positioned in a three-quarters front view with its hood and doors open, set against a background of a grassy outdoor event with tents and signage, featuring black custom wheels and a prominent front bumper design. +02633.jpg The Chevrolet HHR SS 2010 is shown in a vivid red color with a smooth texture, viewed from a front three-quarter angle, set against a plain white background, featuring prominent front grille and sporty wheel design. +05600.jpg The Chevrolet HHR SS 2010 appears in a metallic orange color with a smooth texture, viewed from a rear three-quarter angle, surrounded by a rocky landscape, featuring distinctive SS badging and chrome alloy wheels. +03891.jpg A silver Chevrolet HHR SS 2010 is viewed from a rear-side angle, showcasing its aerodynamic roof rails, chrome door handles, distinctive rear spoiler, prominent corner tail lights, and a plain wall background in a parking lot setting. +06925.jpg The image shows a bright orange Chevrolet HHR SS 2010 with a glossy texture, viewed from the side against a solid blue background, featuring distinct chrome wheels and blacked-out windows. +03236.jpg The Chevrolet HHR SS 2010 is depicted in a dynamic front-left angle against a blurred autumn backdrop, featuring a vibrant orange color with a glossy finish, prominent front grille, SS badging, and sporty five-spoke alloy wheels. +00997.jpg A bright red Chevrolet HHR SS 2010 is viewed from the side in a car dealership lot, featuring shiny chrome wheels and the SS badge on its lower door panel against a backdrop of other cars and dealership signs. +04113.jpg The Chevrolet HHR SS 2010 has a glossy orange finish, viewed from a front three-quarter angle in an indoor showroom setting, featuring distinctive silver alloy wheels and a prominent front grille with the Chevrolet emblem. +07499.jpg A dark metallic Chevrolet with a distinctive rounded front and five-spoke alloy wheels, viewed from the front-right angle against a neutral studio backdrop. +00142.jpg The Chevrolet HHR SS 2010 in the image is bright red with a smooth texture, viewed from the side under a misty outdoor setting with trees and grass, featuring prominent alloy wheels and an "SS" badge on its side panel. +01752.jpg The Chevrolet HHR SS 2010 in the image has a clean, glossy white finish with a front-three-quarter view, set against an urban industrial backdrop with brick and metal textures, highlighting its distinct SS badging, sporty wheels, and angular grille. +01071.jpg The Chevrolet HHR SS 2010 is shown from a rear-side angle in a vibrant orange color with a glossy finish, featuring distinct five-spoke alloy wheels and an "SS" badge, set against a backdrop of urban high-rise buildings. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Impala_Sedan_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Impala_Sedan_2007_descriptions.txt new file mode 100644 index 0000000..60ff30a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Impala_Sedan_2007_descriptions.txt @@ -0,0 +1,20 @@ +05437.jpg The Chevrolet Impala Sedan 2007 is a sleek silver vehicle captured in a three-quarter front view, parked on a dark asphalt lot in front of a showroom with sporty alloy wheels, a prominent grille, and distinctive headlights. +02744.jpg A silver Chevrolet Impala Sedan 2007 is parked on a driveway in a suburban area, viewed from a front-side angle, with distinctive rounded headlights and a chrome grille, against a background of leafless trees and lawns. +03831.jpg The Chevrolet Impala Sedan 2007 in the image is a silver metallic color with a glossy texture, viewed from a front three-quarter angle, displaying a showroom environment with tiled flooring and dark curtains, featuring distinctive five-spoke alloy wheels and the Chevrolet cross emblem on the grille. +04267.jpg A shiny black Chevrolet Impala Sedan 2007 is parked on a dealership lot under bright sunlight, viewed from a front three-quarter angle with visible chrome accents on the grille and surrounded by multiple parked cars and dealership signs in the background. +00103.jpg The Chevrolet Impala Sedan 2007 is depicted in a glossy red finish with a low-angle view, set against a dealership backdrop, featuring sleek silver alloy wheels and distinctive elongate headlamps. +05179.jpg The Chevrolet Impala Sedan 2007 in the image is a medium gray color with a slightly glossy texture, viewed from the front-left angle in a roadside grass area, featuring distinctively smooth lines and rounded edges with chrome-trimmed windows and visible alloy wheels. +00529.jpg The Chevrolet Impala Sedan 2007 is a white vehicle viewed from a front three-quarter angle in a garage setting, featuring chrome-trimmed headlights and a distinctive Chevrolet badge on the grille, with the concrete floor and workshop doors visible in the background. +01062.jpg A silver 2007 Chevrolet Impala Sedan is shown in profile view against a car dealership backdrop, highlighting its smooth texture, distinct rear-sloping roofline, and characteristic rounded taillights. +00282.jpg A red Chevrolet Impala Sedan 2007 is pictured from a front-side angle parked in front of a building with "John Howard Motors" signage, featuring chrome accents and five-spoke wheels. +00661.jpg The gray Chevrolet Impala Sedan 2007 is captured from a front-side angle against a semi-industrial background, showcasing its distinctive rounded headlights and silver alloy wheels. +00769.jpg The Chevrolet Impala Sedan 2007 is a metallic beige color with a sleek, smooth texture, viewed from a three-quarter front angle against a building with glass windows, showing distinctive features like its streamlined body and silver alloy wheels. +00831.jpg The Chevrolet Impala Sedan 2007 appears in a dark blue color with a slightly glossy texture, viewed from a front-side angle, set against a backdrop of a building with red and beige accents, showcasing its distinctive rounded headlights and chrome-accented grille. +03737.jpg The 2007 Chevrolet Impala Sedan is a deep maroon color with a glossy finish, seen from a front three-quarter view in an indoor showroom, featuring distinctive headlights and a rounded front grille with a visible manufacturer emblem. +06807.jpg The Chevrolet Impala Sedan 2007 appears in a beige color with a smooth texture, viewed from the side in a parking lot with a small building in the background, featuring distinctive alloy wheels and a streamlined body shape. +06618.jpg A silver Chevrolet Impala Sedan 2007 is viewed in profile, parked on a snowy lot with a truck and building in the background, featuring smooth body lines and large five-spoke alloy wheels. +02990.jpg The image shows a side view of a white Chevrolet Impala Sedan 2007 with shiny chrome wheels and decorative decals, parked on a paved surface near a fueling station, with a blurred leafy green backdrop. +05013.jpg The silver Chevrolet Impala Sedan 2007 is viewed from a rear three-quarter angle, parked on a sunlit asphalt surface near a dark green industrial building, showcasing its distinctive taillights and chrome badging. +04440.jpg A silver Chevrolet Impala Sedan 2007 is shown in a three-quarter front view, parked on a gray asphalt surface with a commercial building featuring blue accents and reflective windows in the background, highlighting its smooth body lines, four-door structure, and distinctive grille. +00492.jpg The Chevrolet Impala Sedan 2007 appears silver with a smooth texture, viewed from the front-left angle, set against a parking lot with industrial buildings in the background, showcasing its aerodynamic shape and distinctive front grille design. +00745.jpg A white Chevrolet Impala Sedan 2007 is shown in a rear three-quarter view, parked on a paved lot next to a concrete wall, featuring distinct elements like its prominent rear bumper and alloy wheels with a slightly glossy finish. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Malibu_Hybrid_Sedan_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Malibu_Hybrid_Sedan_2010_descriptions.txt new file mode 100644 index 0000000..5475740 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Malibu_Hybrid_Sedan_2010_descriptions.txt @@ -0,0 +1,20 @@ +05034.jpg The Chevrolet Malibu Hybrid Sedan 2010 is depicted in a metallic taupe color with a smooth finish, viewed from a rear three-quarter angle in a sunny, parking lot setting with urban and palm tree elements in the background, showcasing its distinctive round tail lights and hybrid badge. +04879.jpg The Chevrolet Malibu Hybrid Sedan 2010 is a metallic gray car viewed from the front, set against a background of autumnal trees and green grass, featuring a prominent chrome grille and distinctive headlights despite the low resolution. +06469.jpg The Chevrolet Malibu Hybrid Sedan 2010 is captured in a metallic beige color with a glossy finish, viewed from the front left angle showcasing its distinctive dual exhaust tips, set against a backdrop of a sunlit parking lot with other vehicles visible. +07432.jpg The Chevrolet Malibu Hybrid Sedan 2010 is a silver vehicle with a sleek texture, viewed from a front three-quarter angle in a parking lot surrounded by other cars and trees, and features five-spoke alloy wheels and a subtle hybrid badge on the side. +06165.jpg The Chevrolet Malibu Hybrid Sedan 2010 is captured from a front-side angle, displaying a metallic silver color with a smooth texture, positioned in an outdoor dealership environment, with distinguishable broad headlights and alloy wheels. +03355.jpg A silver Chevrolet Malibu Hybrid Sedan 2010 is shown from a low front-right angle, parked indoors with plain concrete flooring and a white wall background, featuring smooth curves and distinct, clear headlights. +07780.jpg The Chevrolet Malibu Hybrid Sedan 2010 is shown in a shiny red color with a smooth texture from a front three-quarter viewpoint, parked in front of a modern, curved building with large windows, featuring distinct silver alloy wheels and a prominent grille. +03352.jpg The image shows a beige Chevrolet Malibu Hybrid Sedan 2010 viewed from a rear three-quarter angle, displaying smooth, metallic body lines against a neutral gray background, with distinctive hybrid badging and five-spoke alloy wheels. +02308.jpg The Chevrolet Malibu Hybrid Sedan 2010 appears in a metallic gray color with a smooth texture, viewed from a rear three-quarter angle against a brick wall background, featuring distinct chrome wheels and red taillights. +03656.jpg The silver Chevrolet Malibu Hybrid Sedan 2010 is shown in a three-quarter front view with distinctive chrome accents and alloy wheels, parked in front of a "PRE-OWNED" dealership against a clear blue sky backdrop. +03085.jpg The 2010 Chevrolet Malibu Hybrid Sedan appears in a smooth, white finish viewed from the rear three-quarter angle, highlighting its sleek body lines and shiny chrome alloy wheels, with a simplistic studio-style background devoid of distinct features. +01961.jpg The image shows a white Chevrolet Malibu Hybrid Sedan 2010 with a smooth texture, viewed from the front-left angle, standing inside a showroom with a black and white checkered floor and a branded wall, featuring distinct headlights and a prominent Chevrolet emblem on the grille. +06834.jpg The image shows a front view of a white Chevrolet Malibu Hybrid Sedan 2010 with a smooth texture, a prominent gold Chevrolet emblem on the grille, set against a car-lot background with multiple parked vehicles and palm trees visible. +01326.jpg The Chevrolet Malibu Hybrid Sedan 2010 is captured from a front-side angle in a suburban setting, showcasing its silver metallic color with a smooth texture, understated body lines, and recognizable chrome-accented grille, standing out on a dark asphalt surface with residential houses and greenery in the background. +02590.jpg A silver Chevrolet Malibu Hybrid Sedan 2010 is shown from a front three-quarter view, parked in a dealership lot with palm trees in the background, featuring chrome-finished wheels and a price sticker on the windshield. +07563.jpg The Chevrolet Malibu Hybrid Sedan 2010 appears in a silver metallic finish with a smooth texture, viewed from a rear three-quarter angle, set against a suburban residential backdrop with a driveway and garage, showcasing its distinct taillights and angular body lines. +04124.jpg A dark blue Chevrolet Malibu Hybrid Sedan 2010 is viewed from a front-right angle, featuring chrome rims and a clean, simple backdrop of a plain indoor setting with smooth walls. +06512.jpg The light metallic grey Chevrolet Malibu Hybrid Sedan 2010 is viewed from a front-side angle, parked on a suburban street with a manicured garden and white building in the background, highlighting its sleek body shape, chrome grille, and signature bowtie emblem. +08119.jpg The 2010 Chevrolet Malibu Hybrid Sedan is presented in a sleek gray color with a smooth, metallic texture, viewed from a side angle in a parking lot setting with trees in the background, featuring five-spoke alloy wheels and a distinct front grille. +02442.jpg The Chevrolet Malibu Hybrid Sedan 2010 is a metallic tan sedan with a sleek, smooth texture viewed from a three-quarter front angle, parked in a dealership lot with other vehicles, featuring chrome accents and distinct multi-spoke alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Malibu_Sedan_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Malibu_Sedan_2007_descriptions.txt new file mode 100644 index 0000000..81118fc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Malibu_Sedan_2007_descriptions.txt @@ -0,0 +1,20 @@ +00905.jpg The low-resolution image depicts a red Chevrolet Malibu Sedan 2007 with a glossy finish, seen from the front-right angle in an outdoor setting with a commercial building entrance in the background, showcasing its rounded headlights, compact grille, and five-spoke wheel design. +07481.jpg The 2007 Chevrolet Malibu Sedan is shown from a front-left angle in a metallic silver color with a smooth texture, parked on a light gray pavement with a dealership backdrop, exhibiting features such as five-spoke wheels and distinct white headlight covers. +04221.jpg The Chevrolet Malibu Sedan 2007 is seen in a three-quarter front view, showcasing a glossy black finish with subtle reflections under a partly cloudy sky, parked beside other vehicles on a grassy lot with pavement visible, and features silver alloy wheels and distinguishable dual-paneled headlights. +07809.jpg The Chevrolet Malibu Sedan 2007 appears in a beige color with a smooth texture, viewed from a front-side angle under a carport in a sunny parking area, showcasing its distinct pointed headlights and silver, star-patterned alloy wheels. +05378.jpg The Chevrolet Malibu Sedan 2007 is a dark blue vehicle viewed from the rear-left angle, featuring a distinct spoiler and twin exhausts, parked on an open asphalt surface with a clear sky and tree line in the background. +07756.jpg The Chevrolet Malibu Sedan 2007 appears in a metallic silver color with a smooth texture, viewed from a front-side angle, set against a background of a rural area with trees and parked trucks, featuring distinct chrome wheels and a clear headlight design. +07802.jpg A silver Chevrolet Malibu Sedan 2007 is viewed from a front diagonal angle, parked on a dark asphalt surface in a car lot with several other vehicles in the background, featuring distinctive chrome trim and five-spoke alloy wheels. +06033.jpg The Chevrolet Malibu Sedan 2007 appears in a dark blue metallic color with a smooth texture, viewed from the side, set against a car dealership's exterior with large windows, prominent signage, and clear reflections, with silver alloy wheels and red-tinted tail lights clearly visible. +05235.jpg The Chevrolet Malibu Sedan 2007 is a glossy black car with a chrome accent and visible rear spoiler, viewed from the rear three-quarter angle, against a checkered floor and plain white background, showcasing its distinctive L-shaped tail lights and silver alloy wheels. +04032.jpg The Chevrolet Malibu Sedan 2007 in the image is a gray color with a smooth finish, viewed from a front-side angle in a car dealership lot marked by the Car Mart 360 sign, featuring distinct round headlights and silver alloy wheels. +08035.jpg The Chevrolet Malibu Sedan 2007 in the image is a silver-grey car with a smooth, metallic finish, viewed from a front three-quarter angle in a parking lot, featuring distinctive dual front headlights and a clear, overcast sky in the background. +01341.jpg The Chevrolet Malibu Sedan 2007 appears in a silver color with a smooth texture, captured from a low-angle front-quarter viewpoint in a car dealership lot, recognizable by its distinct dual headlamp design, Chevrolet emblem, and the Ford signage in the background indicating a pre-owned car section. +03652.jpg The low-resolution image shows a maroon Chevrolet Malibu Sedan 2007 with a glossy finish captured from a front-side angle, set against a suburban backdrop with leafless trees and a concrete building, highlighting its silver trim and alloy wheels. +03934.jpg A mid-2000s Chevrolet Malibu Sedan, displaying a dark gray color with a matte finish, is captured in a three-quarter front view in a dealership lot surrounded by other vehicles, with distinct silver alloy wheels noticeable against an overcast sky. +04259.jpg The 2007 Chevrolet Malibu Sedan appears in a maroon color with a smooth texture, captured from a front-side angle in a suburban street setting, showcasing its distinctive chrome grille and rims, alongside a noticeable "For Sale" sign on the windshield. +07622.jpg The white Chevrolet Malibu Sedan 2007 is viewed from the front-left angle, parked on a dark pavement with a glass building in the background, showcasing its distinctive five-spoke alloy wheels and chrome-trimmed grille. +01391.jpg A silver Chevrolet Malibu Sedan 2007 is shown in a three-quarter side view, parked in a car dealership lot, surrounded by other vehicles and under a clear blue sky, highlighting its sleek, elongated body and distinctive wheel rims. +02783.jpg The Chevrolet Malibu Sedan 2007 appears in a glossy maroon color, viewed from the side profile with a backdrop of dense green trees and a paved parking lot, highlighting its signature chrome grille and silver alloy wheels. +04718.jpg The Chevrolet Malibu Sedan 2007 appears in a metallic silver color with a smooth texture, viewed from a rear-left angle on a highway with green foliage in the background, featuring distinct red taillights and a visible license plate area. +00161.jpg The Chevrolet Malibu Sedan 2007 is shown from a rear-side angle, featuring a metallic gray color with a smooth texture, parked next to other vehicles on a slightly cracked driveway with a road and trees in the background, highlighting its distinct rounded rear lights and understated alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Monte_Carlo_Coupe_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Monte_Carlo_Coupe_2007_descriptions.txt new file mode 100644 index 0000000..f41bd1f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Monte_Carlo_Coupe_2007_descriptions.txt @@ -0,0 +1,20 @@ +00564.jpg The 2007 Chevrolet Monte Carlo Coupe is shown in a metallic blue color with smooth textures, viewed at a front three-quarter angle in a suburban neighborhood with bare trees and houses in the background, featuring distinct circular chrome wheels and a pronounced front grille. +03465.jpg The Chevrolet Monte Carlo Coupe 2007 in the image is silver with a smooth texture, viewed from a front-side angle, parked on a gravel surface in front of a wooden fence, and features distinct curved lines and alloy wheels. +02683.jpg The 2007 Chevrolet Monte Carlo Coupe appears in a bright red color with silver trim, viewed from a front three-quarter angle in a parking lot with grassy hills and trees in the background, featuring distinctive silver five-spoke wheels and a smooth, streamlined body. +06747.jpg The Chevrolet Monte Carlo Coupe 2007 is depicted in a low-resolution image with a glossy white finish featuring a central black racing stripe, shown from a front-side angle in a dealership parking lot, highlighting its distinctive headlamps, shiny alloy wheels, and smooth contoured body lines against a clear sky backdrop. +07541.jpg The Chevrolet Monte Carlo Coupe 2007 in the image is a glossy red car viewed from the rear three-quarters angle, featuring distinct rounded taillights and a prominent rear spoiler, set against a showroom backdrop with other vehicles and bright overhead lighting. +01599.jpg The white Chevrolet Monte Carlo Coupe 2007 is viewed from the side, parked on a street with a showroom in the background, featuring a smooth body with distinct two-door styling and five-spoke alloy wheels. +01274.jpg The Chevrolet Monte Carlo Coupe 2007 in the image is a deep blue, parked in a side profile view with a shiny, smooth texture against a backdrop of a dealership building with signage, featuring prominent five-spoke alloy wheels and a sleek, aerodynamic silhouette. +07205.jpg The Chevrolet Monte Carlo Coupe 2007 is shown in three-quarter front view, featuring a metallic gray color with a smooth texture, parked on a vibrant red pavement against a plain gray building backdrop, and distinct with its sleek design and well-defined headlamps. +02091.jpg A sleek black Chevrolet Monte Carlo Coupe 2007 is parked on a concrete surface, shown in a three-quarter front view, with silver alloy wheels and a background featuring a chain-link fence, trees, and other parked vehicles. +04685.jpg The Chevrolet Monte Carlo Coupe 2007 in the image is a metallic gray color with a smooth texture, viewed from a front three-quarter angle, parked on a dealership lot with other cars in the background, featuring a sleek profile and distinctive front grille. +00215.jpg The 2007 Chevrolet Monte Carlo Coupe appears in a smooth white finish with a frontal three-quarter view, set in a car dealership parking lot with other vehicles and lot lights in the background, featuring distinctive rounded headlights and a sleek, curvy body design. +06880.jpg The Chevrolet Monte Carlo Coupe 2007 is shown in a vibrant blue color with white racing stripes, viewed from the front-right angle on a grassy field, featuring prominent silver alloy wheels and a sleek, sporty body design. +01963.jpg The low-resolution image shows a metallic beige Chevrolet Monte Carlo Coupe 2007 from a front-side angle, parked against a textured brick wall in bright sunlight, with a broad front grille and sleek body lines accentuating its sporty design. +05882.jpg The Chevrolet Monte Carlo Coupe 2007 is shown in a vibrant red color with a smooth texture from a front-side angle, parked on a city street surrounded by other vehicles, featuring distinctive black alloy wheels and a sleek body design. +04368.jpg The Chevrolet Monte Carlo Coupe 2007 appears in a light metallic silver color with a smooth texture, viewed from a front-right angle in a car lot environment, featuring a gently curving body and a prominent front grille flanked by shiny headlights. +06810.jpg The silver Chevrolet Monte Carlo Coupe 2007 is shown from a front-side angle in a dealership parking lot with a blue building in the background, featuring a sleek body with distinct alloy wheels and a subtle rear spoiler. +07548.jpg The Chevrolet Monte Carlo Coupe 2007 is depicted in a low-resolution image showing a silver-colored, sleek coupe with a front-side angled view, parked in a lot against a backdrop of trees and other vehicles, highlighting its distinctive curved headlights and smooth, glossy bodywork. +02939.jpg A vibrant green Chevrolet Monte Carlo Coupe 2007 is seen from a low front-side angle, displaying a sleek, glossy finish with distinctive chrome accents and parked on a concrete surface near a building with a brick facade and large windows. +03028.jpg The white Chevrolet Monte Carlo Coupe 2007 is viewed from the rear-left angle, featuring a prominent rear spoiler, distinct red taillights, chrome wheels, and is situated on a residential driveway with grass on one side and a house visible in the background. +04539.jpg The Chevrolet Monte Carlo Coupe 2007 is shown in a side-rear view against a corrugated metal background, featuring a distinctive bright yellow color with a smooth texture, sporty rear spoiler, and dual exhaust tips. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Classic_Extended_Cab_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Classic_Extended_Cab_2007_descriptions.txt new file mode 100644 index 0000000..9cad7ec --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Classic_Extended_Cab_2007_descriptions.txt @@ -0,0 +1,20 @@ +06029.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 in the image has a light silver color with a smooth texture, viewed from a front three-quarter angle, set against a plain brick wall, featuring a chrome grille and sleek alloy wheels. +02295.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 in the image is stark white with a smooth texture, viewed from the side showcasing its extended cab and four black wheels, set against a backdrop of rural trees and an industrial building. +03632.jpg A dark-colored Chevrolet Silverado 1500 Classic Extended Cab 2007 with a sleek texture is viewed from a front three-quarter angle, parked on a road amidst a backdrop of autumn trees, showcasing its prominent chrome grille and alloy wheels. +05479.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 is a red pickup truck with a shiny texture, viewed from a front three-quarter angle with chrome wheels and distinct badging, set against a backdrop of leafy trees and a metal fence. +06547.jpg The image shows a Summit White Chevrolet Silverado 1500 Classic Extended Cab 2007 viewed from the front-right angle, with a smooth, glossy finish, large side mirrors, a prominent front grille, and parked in a dealership lot with other vehicles and a Chevrolet sign in the background. +01938.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 is shown from a front three-quarter view in a parking lot environment, featuring a dark blue color with a glossy finish, chrome detailing on the grille and front bumper, and a distinctive angular headlight design. +07406.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007, in a glossy metallic red, is viewed from the front-left angle parked on a blacktop surface with white parking lines, featuring prominent off-road tires, chrome-trimmed wheels, a silver horizontal grille, and a visible “Silverado” emblem on the front door. +01477.jpg The image shows a red Chevrolet Silverado 1500 Classic Extended Cab 2007 with a glossy finish, viewed from the front-left angle, parked on an asphalt surface with a leafy green background, featuring a distinctive front grille and chrome accents. +06946.jpg A dark-colored Chevrolet Silverado 1500 Classic Extended Cab 2007 is viewed from the front-left angle, parked on a rocky terrain under a cloudy sky, featuring its characteristic chrome grille and angular headlights. +02597.jpg A white Chevrolet Silverado 1500 Classic Extended Cab 2007 is viewed from the front-left angle, parked on a paved surface with a mountainous background, featuring a distinctive roof rack and prominent grille emblem. +04104.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 appears in a dark, glossy black color viewed from a front three-quarter angle, parked on a street with trees in the background, and features silver alloy wheels, a prominent front grill with a Chevrolet emblem, and an extended cab. +01967.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 is shown from a front-side angle, painted in a bright red with a glossy texture featuring a contrasting black grille, parked indoors on a black and white checkered floor with a plain white wall in the background. +02142.jpg The maroon Chevrolet Silverado 1500 Classic Extended Cab 2007 with a shiny, reflective finish is viewed from a front-side angle in a parking lot, with a distinctive chrome grille and wheels, set against a backdrop of a large industrial building and a clear blue sky. +04678.jpg The 2007 Chevrolet Silverado 1500 Classic Extended Cab in the image is white with a smooth finish, viewed from a three-quarter front angle, positioned in a car dealership lot with a blue sky and building backdrop, featuring distinct black trim and chrome details around the grille and wheel arches. +01921.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 is a red pickup truck with a shiny finish, viewed from the side against a rugged, sandy desert backdrop, featuring chrome wheels and a distinctively robust front grille design. +06502.jpg A maroon Chevrolet Silverado 1500 Classic Extended Cab 2007 is shown from the front passenger side angle on a wet pavement, with chrome accents and a prominent Chevrolet logo, flanked by bare trees and additional vehicles in the background. +04845.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 in the image is white with smooth texture, shown in a side profile view on a clear day in a parking lot, featuring distinctive chrome wheels and a slight lift above a dark asphalt surface. +07999.jpg The low-resolution image depicts a silver Chevrolet Silverado 1500 Classic Extended Cab 2007, viewed from the side with a noticeable Z71 decal near the rear, featuring chrome wheels and set against a clear sky with trees and a white building in the background. +06116.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 appears in glossy black with chrome accents, captured in a frontal three-quarter view in a sunny, outdoor parking lot setting, highlighted by its distinctive rectangular headlights and silver alloy wheels. +00360.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 is in a faded red color with a dusty texture, viewed from the front-left angle, against a garage-like industrial background, showcasing its prominent chrome grille and distinctive boxy shape. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Extended_Cab_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Extended_Cab_2012_descriptions.txt new file mode 100644 index 0000000..18b34b6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Extended_Cab_2012_descriptions.txt @@ -0,0 +1,20 @@ +04622.jpg A metallic silver Chevrolet Silverado 1500 Extended Cab 2012, viewed from the side in a parking lot, features distinct chrome wheels and is set against a backdrop of vertical corrugated metal panels. +03117.jpg The Chevrolet Silverado 1500 Extended Cab 2012 is silver with a smooth finish and is viewed from the side against a dealership backdrop featuring Buick and GMC signage, where its extended cab and silver alloy wheels are distinct. +03856.jpg The image shows a silver Chevrolet Silverado 1500 Extended Cab 2012 with a smooth texture, viewed from the side in front of a metallic garage, featuring its distinct extended cab and rugged wheels, set in a shadowed outdoor environment. +07245.jpg The low-resolution image depicts a metallic gray Chevrolet Silverado 1500 Extended Cab 2012 viewed from the front-right angle in a dealership parking lot, showcasing its chrome grille, prominent wheel arches, and a row of parked vehicles in the background. +07395.jpg The Chevrolet Silverado 1500 Extended Cab 2012 is a white truck with chrome accents, viewed from a front three-quarter angle in an indoor garage setting with a green stripe on the wall, exhibiting its signature extended cab and robust grille design. +07525.jpg The Chevrolet Silverado 1500 Extended Cab 2012 is displayed in a showroom with a metallic gray color, viewed from the side, highlighting its chrome wheels and the clean reflection on its smooth body surface against a plain wall backdrop. +03020.jpg A white Chevrolet Silverado 1500 Extended Cab 2012 is shown in a side profile against a dealership background, highlighting its extended cab design, silver alloy wheels, and prominent front grille. +01941.jpg The Chevrolet Silverado 1500 Extended Cab 2012 is viewed from the side and exhibits a metallic silver color with a smooth texture, positioned in a parking lot under a clear blue sky with a dealership sign, distinguished by its extended cab and four-wheel-drive badging. +04187.jpg The Chevrolet Silverado 1500 Extended Cab 2012 is seen in a three-quarter front view with a dark gray finish and polished texture, parked in a grassy area with dealership surroundings featuring other vehicles, and distinguished by its chrome grille and prominent front bumper. +02365.jpg The white Chevrolet Silverado 1500 Extended Cab 2012, viewed in profile, is parked on a wet asphalt surface in front of a commercial building with large windows. +00722.jpg The Chevrolet Silverado 1500 Extended Cab 2012 is depicted in a low-resolution image with a sleek black exterior, viewed from a front-side angle in a commercial parking area with industrial buildings and a water tower in the background, featuring chrome accents on the grille and running boards for a polished appearance. +00104.jpg A metallic gray Chevrolet Silverado 1500 Extended Cab 2012 is viewed from a low-angle front side in an indoor showroom environment, showcasing its chrome grille, round wheel arches, and prominent "Silverado" side badge. +07904.jpg The Chevrolet Silverado 1500 Extended Cab 2012 is shown from a front three-quarter view, displaying a white, smooth-textured body with a distinctive chrome grille and Chevrolet emblem, set against a clean, neutral white background. +07852.jpg A white Chevrolet Silverado 1500 Extended Cab 2012 is shown in a side profile with a smooth, sleek body against a backdrop of a chain-link fence and a partly cloudy sky, featuring chrome accents and large wheels on a flat surface. +05808.jpg The Chevrolet Silverado 1500 Extended Cab 2012 appears in a metallic blue-gray color with a glossy finish, viewed from a front three-quarter angle showcasing its prominent grille and alloy wheels, set against a dealership lot with other vehicles and a building in the background. +03752.jpg A vibrant red Chevrolet Silverado 1500 Extended Cab 2012 is parked on a concrete driveway, viewed from a front-side angle, with shiny chrome accents and distinctive extended cab windows, set against a suburban neighborhood backdrop with brick houses and manicured lawns. +00268.jpg A black Chevrolet Silverado 1500 Extended Cab 2012 is seen at a slight three-quarter front view, highlighting its chrome grille and bumper against a plain indoor environment with simple walls and even lighting. +05842.jpg The Chevrolet Silverado 1500 Extended Cab 2012 appears in a metallic brown color with a smooth texture, seen from a side angle in front of a mountainous landscape with snow-capped peaks, showcasing its four-door design and chrome accents on the grille and wheels. +06848.jpg The 2012 Chevrolet Silverado 1500 Extended Cab in the image appears in a silver color with a slightly metallic texture, viewed from a side angle prominently showing the extended cab and four doors, set against a plain indoor showroom background with a visible banner, and features large alloy wheels and a defined wheel arch. +02859.jpg The Chevrolet Silverado 1500 Extended Cab 2012 is captured in a three-quarter front view, displaying a sleek black exterior with a shiny chrome grill and bumper, set against a plain concrete lot with a stone wall in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Hybrid_Crew_Cab_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Hybrid_Crew_Cab_2012_descriptions.txt new file mode 100644 index 0000000..a3d755d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Hybrid_Crew_Cab_2012_descriptions.txt @@ -0,0 +1,20 @@ +00379.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is seen from a front-side angle in a light metallic silver color with a smooth finish, featuring a distinct grille and headlights, sitting against a plain gray studio background. +07075.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is depicted in a metallic blue color with a smooth texture, viewed from a frontside angle, showcasing a chrome grille and bumper, sitting in a parking lot surrounded by greenery and distant buildings. +07194.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is viewed from the side, displaying its silver color and smooth texture, parked in front of a car dealership with large glass windows and a beige facade, leading to its visible extended crew cab and prominent wheel arches. +03222.jpg The black Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is viewed from a front angled position, showcasing its distinctive chrome grille and shiny alloy wheels, with a dealership background. +06305.jpg The 2012 Chevrolet Silverado 1500 Hybrid Crew Cab is viewed from the front right angle, featuring a metallic blue-gray color with chrome accents, parked in a lot with other vehicles nearby and surrounded by sparse trees in the background. +04703.jpg The 2012 Chevrolet Silverado 1500 Hybrid Crew Cab is shown in a parking lot with a light silver color, featuring a prominent front grille and chrome accents, viewed from the front left angle with a dealership and a clear sky in the background. +01032.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is shown in a frontal three-quarter view with a glossy black exterior, parked in a dealership lot with a concrete surface, featuring a distinct chrome grille, black wheel rims, and clear branding on the front door. +01647.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is shown in a metallic silver color with a smooth texture, viewed from the front-left angle, parked in an urban environment with a visible building and other vehicles, featuring its distinct chrome grille and Chevrolet emblem. +01806.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 appears in a solid white color with a smooth texture, viewed from the side against a backdrop of trees and additional parked vehicles, showcasing its distinct crew cab design and chrome wheels. +06528.jpg The low-resolution image shows a black Chevrolet Silverado 1500 Hybrid Crew Cab 2012 with a lifted suspension and chrome wheels, viewed from the front-right angle, parked on a gravel area with trees and a building in the background. +07699.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is a vibrant red pickup with a distinctive chrome grille and Chevrolet logo, viewed from a low front angle, parked on asphalt with minimal background detail, featuring reflective chrome wheels. +04478.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 appears in a glossy black finish viewed from a front-right angle, parked on a paved road with grass and trees in the background, featuring chrome accents and large wheels. +04774.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 appears in a glossy black finish viewed from a slightly elevated front-left angle, set against a minimalistic white background, with distinct chrome accents on the grille and side steps. +03195.jpg The 2012 Chevrolet Silverado 1500 Hybrid Crew Cab is displayed in a vibrant red color with a glossy finish, viewed from a side angle, set against a wooded background, featuring its bold grille and prominent wheel arches clearly visible. +06611.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is showcased in a low-resolution image from a rear three-quarter angle, displaying a clean white exterior with black wheel arches and rugged tires, set against a garage-like environment with a checkered floor pattern. +06396.jpg A silver Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is positioned at a three-quarter frontal angle in a dealership lot, featuring chrome accents and a prominent front grille with the Chevrolet emblem, surrounded by other vehicles under a clear blue sky. +02945.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is seen from a front three-quarter angle in a dark blue color with a shiny finish, parked on a pavement in front of a building with a "Modern" sign, featuring chrome accents on the grille and wheels. +03094.jpg The dark-colored Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is viewed at a three-quarters front angle, parked on a paved surface alongside a plain white industrial wall, with noticeable branding on the front grille and side, and silver alloy wheels accentuating its robust stance. +05332.jpg The white Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is viewed from a rear three-quarter angle, showcasing its smooth body with a black truck bed cover, set against a leafy green and asphalt background, featuring chrome accents and tail lights. +06815.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012, viewed from the front-right angle, features a smooth silver finish with a prominent chrome grille and shiny alloy wheels, set in an indoor showroom-like environment with a partially visible display backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Regular_Cab_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Regular_Cab_2012_descriptions.txt new file mode 100644 index 0000000..5234908 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_1500_Regular_Cab_2012_descriptions.txt @@ -0,0 +1,20 @@ +00597.jpg A bright red Chevrolet Silverado 1500 Regular Cab 2012 is viewed from the front-left angle, parked in front of a building with glass doors and windows, featuring a chrome grille, polished alloy wheels, and a sleek, reflective body finish. +02775.jpg The image shows a red Chevrolet Silverado 1500 Regular Cab 2012 viewed from the side, with a smooth, glossy texture, parked on a paved lot with a clear blue sky and distant cars in the background, featuring chrome wheels and a distinct rectangular shape. +01546.jpg The Chevrolet Silverado 1500 Regular Cab 2012 in the image is a red pickup truck with a slightly muddy texture, viewed from the front-left angle against a wintery backdrop of a snow-dusted parking lot and bare trees, featuring its distinct Chevrolet logo on the grille and simple five-spoke wheels. +05416.jpg The Chevrolet Silverado 1500 Regular Cab 2012 in the image is a silver truck with a smooth texture, captured from the front-side angle, parked on a gravel surface under a clear blue sky with trees in the background, featuring its signature chrome grille and prominent wheel arches. +04408.jpg The Chevrolet Silverado 1500 Regular Cab 2012 appears in a glossy black finish, viewed from a side angle under sunlight, parked near a beige brick building with reflective windows and partial tree shadows, showcasing its clean, streamlined design and silver alloy wheels. +07871.jpg The Chevrolet Silverado 1500 Regular Cab 2012 in the image is a white truck with a smooth texture viewed from a low front angle, parked on an asphalt lot with bare trees in the background, featuring a prominent front grille and simple alloy wheels. +02808.jpg The Chevrolet Silverado 1500 Regular Cab 2012 appears in a bright white color with a clean, smooth texture and is viewed from a side angle showing the front and passenger side, set against a designed showroom-like background with tiled flooring, featuring distinctive tire rims and a simple grille design. +02265.jpg The Chevrolet Silverado 1500 Regular Cab 2012 appears in a glossy black finish with chrome accents, viewed in a three-quarter frontal pose on a concrete driveway, surrounded by suburban homes, and features large chrome rims and a distinctive front grille. +02946.jpg The image shows a silver Chevrolet Silverado 1500 Regular Cab 2012 with a side profile view against a plain white background, featuring a long cargo bed and chrome wheels with distinct "4x4" badging on the rear side panel. +04993.jpg A black Chevrolet Silverado 1500 Regular Cab 2012 is parked on a dealership lot under clear skies, viewed from a front three-quarter angle with chrome detailing, silver wheels, and a glossy finish contrasting against the backdrop of a white building. +03516.jpg The Chevrolet Silverado 1500 Regular Cab 2012 appears in a solid white color with a smooth texture, viewed from a front-right angle in a dealership parking lot, featuring a distinct chrome front grille, prominent side mirrors, and classic silver wheels against a background with dealership signage and other vehicles. +02842.jpg The Chevrolet Silverado 1500 Regular Cab 2012 in the image is a white truck with a clean and glossy finish, viewed from a front three-quarter angle, parked on a concrete surface with a grassy landscape and a clear blue sky in the background, showcasing its chrome grille and noticeable decorative red striping on the hood. +03614.jpg The Chevrolet Silverado 1500 Regular Cab 2012 is white with a smooth texture, viewed from the front-left angle, set against a dealership backdrop with visible signage, featuring a prominent gold Chevrolet emblem on the grille and distinctively rounded white wheels. +00876.jpg A black Chevrolet Silverado 1500 Regular Cab 2012 with a shiny finish is parked in a dealership lot, viewed from a three-quarter front perspective, showcasing its chrome grille and wheels, with a row of other pickup trucks in the background. +06055.jpg The Chevrolet Silverado 1500 Regular Cab 2012 is viewed from the front-right angle, displaying a clean white exterior with a matte finish, parked in a sunny, open lot next to a red vehicle, featuring distinct chrome accents on its grille and door handles, and a noticeable Z71 decal on the side, indicating an off-road package. +04638.jpg The low-resolution image shows a Chevrolet Silverado 1500 Regular Cab 2012 in a deep blue color with a glossy texture, viewed from the side in a dealership lot, surrounded by other vehicles, with its distinctive Z71 off-road package badging visible on the rear quarter panel. +08080.jpg The 2012 Chevrolet Silverado 1500 Regular Cab in the image appears in a light silver color with a smooth texture, viewed from the side showcasing its two-door design and chrome wheels, set against a backdrop of a dealership parking lot with several other vehicles and a gray, overcast sky. +07035.jpg The Chevrolet Silverado 1500 Regular Cab 2012 is shown in a shiny red finish viewed from the front-left angle, parked on asphalt in a lot with sparse trees and another vehicle in the background, featuring a distinctive chrome grille and five-spoke alloy wheels. +02871.jpg The 2012 Chevrolet Silverado 1500 Regular Cab is shown in a three-quarter front view with a white exterior and polished chrome details, parked on asphalt in an open lot with store signage in the background, highlighting its large wheel arches and robust grille design. +07387.jpg The 2012 Chevrolet Silverado 1500 Regular Cab appears in a solid white color with a matte finish, showcased at a slightly elevated front angle in a dealership parking lot, distinguished by its prominent chrome grille and black bumper against a backdrop of other parked cars and an industrial building. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_2500HD_Regular_Cab_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_2500HD_Regular_Cab_2012_descriptions.txt new file mode 100644 index 0000000..3592fe1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Silverado_2500HD_Regular_Cab_2012_descriptions.txt @@ -0,0 +1,20 @@ +00595.jpg The image shows a white Chevrolet Silverado 2500HD Regular Cab 2012, viewed from the front-left at an angle, with a shiny metallic texture, distinctive front grille, and set in a dealership parking lot identifiable by the Jeep and Chrysler logos in the background. +03680.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 is a white truck with a clean texture, viewed from the side showing its extended cab and visible 4x4 badging, parked in front of a dealership with blue and red branding, and adorned with a yellow balloon in the background. +02230.jpg The image shows a white Chevrolet Silverado 2500HD Regular Cab 2012 viewed from a front three-quarter angle, featuring a clean, smooth texture, chrome grille, and set against a plain white background. +04307.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 appears in a white color with a smooth texture, shown from a side-view profile in an industrial parking lot, characterized by its extended bed and prominent wheel arches against a backdrop of a building with blue accents. +01074.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 appears in a metallic gray color with a smooth texture, shown from a rear three-quarter view in a studio setting with a gradient black background, highlighting its robust build, distinctive side mirrors, and visible Chevrolet emblem on the tailgate. +06064.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 is depicted in a metallic gray color with a smooth and glossy texture, viewed from a front three-quarter angle against a neutral studio background, and features a distinct front grille and large wheel arches. +01060.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 is seen from a rear three-quarter viewpoint in a showroom with a space-themed background, displaying a smooth white exterior with chrome accents and a prominent Chevrolet bowtie emblem on the tailgate. +03612.jpg The rear view of the Chevrolet Silverado 2500HD Regular Cab 2012 shows a white truck with a smooth finish, showcasing a prominent Chevrolet logo and silver "Silverado" lettering against a plain white background. +05269.jpg The white Chevrolet Silverado 2500HD Regular Cab 2012 is viewed from the rear in a suburban area with a partially constructed house and trees visible, featuring a distinctive black bumper and silver badge detailing. +06640.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 appears in a metallic gray color with a matte texture, viewed from a rear-side angle showing its prominent 4x4 badging and dual exhaust, parked on a paved lot with bare trees and a cloudy sky in the background. +03359.jpg A white Chevrolet Silverado 2500HD Regular Cab 2012 with a smooth texture is seen from a front three-quarter view in a wet parking lot, featuring a prominent chrome front bumper and distinctive side mirrors against a backdrop of leafless trees. +05231.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 in the image is a white pickup truck with a glossy finish, viewed from a slightly elevated front-left angle, set against a backdrop of lush green trees, featuring a distinctive chrome grille and bumper along with standard silver wheels. +06456.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 appears in a white color with a smooth texture, viewed from a rear three-quarter angle, surrounded by a lush, leafy green environment, featuring distinct rear taillights and a visible "SILVERADO" badging on its tailgate. +07256.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 is shown from a low front-side angle, featuring a white exterior with a shiny chrome grille and bumper, set against a dealership background with a blue and white building. +05221.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 appears in a metallic silver finish with a smooth texture, viewed from a side angle against a plain white background, featuring its extended cargo bed and distinctive front grille design. +00748.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 is black with a glossy finish, viewed from the front-right angle, showing its distinct chrome grille and bumper, set against a plain white background. +00645.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 in the image is viewed from the side, showcasing a clean white exterior with a smooth texture, set against a plain white background, featuring a bold Z71 badge on the rear side and robust metal wheels. +01736.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 is shown from a rear three-quarter view, displaying its clean white exterior with a smooth texture, set against a neutral, featureless background, and highlighting its prominent tailgate with the Chevrolet emblem and distinctive angular taillights. +07963.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 is black with a matte texture, viewed from a three-quarter front angle, parked on gravel with a backdrop of barren trees and a clear sky, showcasing its robust front grille and distinctive, large side mirrors. +07868.jpg The image shows the rear view of a white Chevrolet Silverado 2500HD Regular Cab 2012 with a glossy texture, featuring a distinct gold Chevrolet bowtie logo and set against a simple white background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Sonic_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Sonic_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..6d1c577 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Sonic_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +04326.jpg The Chevrolet Sonic Sedan 2012 in the image is a dark gray color with a smooth texture, viewed from a rear three-quarter angle in a showroom setting, featuring distinctive circular tail lights and chrome accents. +01654.jpg The silver Chevrolet Sonic Sedan 2012 is viewed in profile with smooth contours and a sleek exterior, set against a modern, industrial background consisting of large windows and metal framing. +00387.jpg The bright orange Chevrolet Sonic Sedan 2012 is seen from a three-quarter front view with its doors open, featured indoors under showroom lighting with a futuristic, bustling background, highlighting its sleek body lines and distinctive grille and headlight design. +00820.jpg The Chevrolet Sonic Sedan 2012 is viewed from the side in a parking lot and features a dark gray color with a smooth texture, displaying distinctively rounded wheel arches and a compact, aerodynamic body shape. +04506.jpg The Chevrolet Sonic Sedan 2012 is shown in a rear three-quarter view with a metallic gray finish, distinct round tail lights, set against a mountainous road with a guardrail and sunset in the background. +03666.jpg The silver Chevrolet Sonic Sedan 2012 is viewed from a front three-quarter angle, displaying its distinctive dual round headlights and compact build, parked on a gray asphalt surface with a backdrop of other vehicles and barren trees. +04370.jpg A black Chevrolet Sonic Sedan 2012 with a glossy finish is parked on a residential street, viewed from a front three-quarter angle, with distinctive round headlights and a chrome grille, set against a backdrop of suburban houses and trees. +04768.jpg The image shows a white 2012 Chevrolet Sonic Sedan with a glossy texture, viewed from a rear three-quarter angle in a parking lot with distant trees in the background, featuring prominent red taillights and a gently sloping roofline. +00829.jpg The silver Chevrolet Sonic Sedan 2012 is viewed in side profile against an urban backdrop with tall buildings, showcasing its compact design, distinct round headlights, and visible alloy wheels. +05630.jpg The 2012 Chevrolet Sonic Sedan appears in a silver color with a metallic texture, seen from a front three-quarter view, parked on a paved lot with other vehicles in the background, featuring distinctive round headlights and a prominent black grille. +03304.jpg The Chevrolet Sonic Sedan 2012, seen from a side angle in motion, appears in a metallic silver color with a smooth surface, prominently featuring its round headlights and unique rear design against an urban street backdrop with a fire hydrant in the foreground. +02619.jpg The Chevrolet Sonic Sedan 2012 is displayed in a sleek metallic gray color with a smooth finish, shown in a side view highlighting its compact, aerodynamic design, silver alloy wheels, and set against a glossy indoor showroom environment with bright overhead lighting. +01190.jpg The Chevrolet Sonic Sedan 2012 appears in a clean, white color with a smooth texture, viewed from a front-side angle, set in a parking lot with numerous other vehicles in the background, and features distinctive round headlights and a split front grille. +08074.jpg A silver Chevrolet Sonic Sedan 2012 with a matte finish is viewed from a front-side angle, parked on a concrete surface with a towering glass building in the background, featuring round headlights and a compact, aerodynamic design. +08075.jpg The image shows a white Chevrolet Sonic Sedan 2012 with its hood open, viewed from a front-side angle in a paved, open parking lot surrounded by bare trees, featuring distinct round headlights and the vehicle's signature front grille. +00995.jpg The image shows a metallic silver Chevrolet Sonic Sedan 2012 positioned at an angle from the front-left side on a showroom floor, highlighting its prominent dual round headlights and sleek grille, with a clean, modern environment featuring another blue car in the background. +03035.jpg The Chevrolet Sonic Sedan 2012 is a vibrant blue with a glossy finish, viewed from the rear three-quarter angle, parked in front of a modern building with large windows, showcasing distinct round taillights and a compact design. +05216.jpg The red Chevrolet Sonic Sedan 2012 is captured from a rear-side angle on a highway, highlighting its distinctively sculpted taillights and chrome accents, set against a blurred backdrop of greenery and guardrails. +07077.jpg The Chevrolet Sonic Sedan 2012 in the image is silver with a slightly matte texture, positioned in a parking lot at a three-quarter front view, with distinctive circular headlights, a dual-port grille, and a background featuring modern buildings and sparse vegetation. +04723.jpg The Chevrolet Sonic Sedan 2012 in the image is a glossy dark gray with a side-front view, showcasing its signature dual round headlights and prominent grille, set against a plain studio background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Tahoe_Hybrid_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Tahoe_Hybrid_SUV_2012_descriptions.txt new file mode 100644 index 0000000..b1daa93 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Tahoe_Hybrid_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +01199.jpg The Chevrolet Tahoe Hybrid SUV 2012 is seen from the side, displaying a metallic gray color with a smooth texture and hybrid badge on the front door, parked on a city street with a beige, windowed building in the background. +00942.jpg A silver Chevrolet Tahoe Hybrid SUV 2012 is parked in a grassy field with a forest and mountain backdrop, viewed from a front three-quarter angle, featuring its distinctive hybrid badge and smooth, reflective paint surface. +03701.jpg The 2012 Chevrolet Tahoe Hybrid SUV appears in a smooth white finish with its rear view angled slightly towards the passenger side, highlighting the prominent logo and hybrid badge on a simple studio background. +06862.jpg The 2012 Chevrolet Tahoe Hybrid SUV is shown in a muted metallic beige color with a smooth texture, viewed from the side with visible roof rails and five-spoke alloy wheels, set against a backdrop of lush greenery and distant rolling hills. +07349.jpg The Chevrolet Tahoe Hybrid SUV 2012 is shown from a front three-quarter view with a silver color and smooth texture, featuring a prominent grille and emblem, set against a blurred background of greenery and a road. +07861.jpg The Chevrolet Tahoe Hybrid SUV 2012 is seen from a front-side angle with a silver-gray color and smooth finish, parked on a sandy beach with cliffs in the background, showcasing its unique hybrid badging and distinct boxy frame. +05743.jpg The Chevrolet Tahoe Hybrid SUV 2012 is shown in a glossy white finish with distinctive hybrid signage on the side, viewed in profile as it drives past a landscaped residential area with lush greenery and terraced hedges. +03156.jpg The Chevrolet Tahoe Hybrid SUV 2012 is a metallic gray SUV with a smooth finish, viewed from a front three-quarter angle in a bright, leafy suburban environment with distinct chrome accents on the grille and hybrid badges on the side. +02883.jpg The Chevrolet Tahoe Hybrid SUV 2012 appears in a glossy silver finish, viewed from the rear three-quarter angle in a studio-like setting, showcasing distinctive hybrid badging and a smooth, aerodynamic rear profile with prominent taillights. +00694.jpg The white Chevrolet Tahoe Hybrid SUV 2012 is viewed from a rear three-quarter angle, revealing its sleek smooth bodywork, distinctive hybrid badge, and parked on a plain studio-like plain background. +03135.jpg A 2012 Chevrolet Tahoe Hybrid SUV is seen in a three-quarter front view displaying a sleek black color with a glossy finish, showcasing its characteristic large grille with the Chevrolet emblem, surrounded by urban streets in an indistinct, neutral background. +08070.jpg A white Chevrolet Tahoe Hybrid SUV 2012 is shown from a side view, driving smoothly on a rugged terrain with mountainous scenery in the background, featuring its characteristic hybrid emblem and prominent alloy wheels. +00328.jpg The Chevrolet Tahoe Hybrid SUV 2012, viewed from the front-right angle, appears in a beige color with a smooth texture, set against a mountainous background, featuring distinct chrome wheels and a hybrid badge on the side. +07943.jpg The Chevrolet Tahoe Hybrid SUV 2012 is a metallic silver-gray vehicle viewed from the front-left angle, featuring distinctive hybrid badging and parked on a street against a backdrop of gray buildings and a tree shadow. +02576.jpg The light silver Chevrolet Tahoe Hybrid SUV 2012 is shown from a three-quarter front view in a grassy field, featuring a roof rack, hybrid badging, and chrome accents on the grille and side mirrors. +04590.jpg The silver Chevrolet Tahoe Hybrid SUV 2012 is viewed from the front-left in a scenic setting with tents and a mountainous forest backdrop, showcasing its distinctive grille and large, solid build. +04372.jpg The white Chevrolet Tahoe Hybrid SUV 2012 is shown in a side profile view on a plain white background, featuring bold silver rims, tinted rear windows, and the distinctive hybrid emblem along the lower side panel. +03442.jpg The Chevrolet Tahoe Hybrid SUV 2012 is shown in a side profile view with a metallic silver color and smooth texture, set against a serene lake background with scattered rocks, featuring large chrome wheels and the distinct "HYBRID" badge on the side. +00978.jpg A sleek black Chevrolet Tahoe Hybrid SUV 2012 is seen from the front-left angle against a blurred monochrome cityscape, featuring shiny chrome rims and a distinctive grille with prominent headlights. +02763.jpg A shiny black Chevrolet Tahoe Hybrid SUV 2012 is shown in a three-quarter front view, parked on a concrete surface with a dealership setting in the background, featuring silver rims and the distinctive hybrid badge on its side. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_TrailBlazer_SS_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_TrailBlazer_SS_2009_descriptions.txt new file mode 100644 index 0000000..7999c30 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_TrailBlazer_SS_2009_descriptions.txt @@ -0,0 +1,20 @@ +03961.jpg The Chevrolet TrailBlazer SS 2009 is displayed indoors, viewed from the front-left angle, showcasing its glossy black finish, prominent chrome wheels, distinct SS badging on the side, against a backdrop of Chevrolet branding and showroom lighting. +00967.jpg The black Chevrolet TrailBlazer SS 2009 is parked at a slight angle in front of a modern dealership, showcasing its glossy finish, prominent wheel arches, and distinct SS badging on the front grille. +02347.jpg The Chevrolet TrailBlazer SS 2009 is shown in a glossy black finish from a three-quarter front viewpoint, parked in a wet, urban car dealership lot with visible large alloy wheels and distinctive SS badging. +02296.jpg A black Chevrolet TrailBlazer SS 2009 with a shiny finish is seen from a frontal angle, parked among other vehicles in a lot with bare trees in the background, featuring a prominent grille and distinctive silver accents on the bumper. +02486.jpg A red Chevrolet TrailBlazer SS 2009 is seen from a front-side angle, showcasing its shiny paint, distinctive bold grille with a gold bowtie emblem, prominent wheel arches, large rimmed alloy wheels, and a smooth urban background. +03604.jpg The Chevrolet TrailBlazer SS 2009 appears in a silver color with a smooth texture, viewed from the front-left angle, parked on a paved surface with distant greenery and hills in the background, featuring large metallic wheels and a distinctive front grille with SS badging. +06066.jpg The 2009 Chevrolet TrailBlazer SS is captured in a side profile view displaying its sleek silver color with a smooth finish, distinctive SS badging on the front door, large alloy wheels, and set against a neutral, dark background. +03800.jpg The 2009 Chevrolet TrailBlazer SS is depicted in a glossy blue finish from a front-side angle, showcasing its distinctive chrome grille and alloy wheels, against a blurred, green landscape backdrop. +00181.jpg The Chevrolet TrailBlazer SS 2009 is glossy black with a prominent front view, featuring distinct silver wheels, parked on an asphalt lot in front of a dealership with a "Buick Pontiac GMC" sign and colorful window graphics. +02299.jpg A blue Chevrolet TrailBlazer SS 2009 is captured in motion from a front-side angle on a paved track, surrounded by traffic cones and blurred greenery, featuring prominent headlights and a distinctive grille emblem against its sleek, reflective surface. +05942.jpg A white Chevrolet TrailBlazer SS 2009 with a glossy finish is captured from a low-angle front three-quarter view, parked on a pavement in front of a backdrop of dense green trees, showcasing its distinctive chrome grille, badge, and large alloy wheels. +06050.jpg The Chevrolet TrailBlazer SS 2009 is seen from a front three-quarter view, showcasing its glossy black finish, silver wheels, distinctive SS badging, and integrated fog lights, against a background of trees and a fence on a damp pavement. +02060.jpg The Chevrolet TrailBlazer SS 2009 in the image appears in a silver metallic color, viewed at a three-quarter angle from the front-right, set against a plain white background, featuring large alloy wheels and a distinctive front grille with the Chevrolet logo. +05595.jpg The Chevrolet TrailBlazer SS 2009 in the image is a glossy black SUV viewed from a rear three-quarter angle, showcasing its distinctive dual exhausts, polished alloy wheels, and sleek body lines, set against a garage-like environment with light blue walls and a beige floor. +05317.jpg The Chevrolet TrailBlazer SS 2009 is black with a glossy texture, viewed from a front-side angle on an open road with a blurred forest background, featuring distinct silver alloy wheels and a prominent front grille. +02121.jpg The black Chevrolet TrailBlazer SS 2009 is captured from a front three-quarter view, highlighting its chrome wheels and distinct SS badging, with a racetrack environment in the background featuring people and a checkered wall. +06765.jpg The Chevrolet TrailBlazer SS 2009 in the image is a metallic navy blue SUV with a glossy finish, viewed from a front-side angle, featuring large chrome wheels and red brake calipers, parked on a concrete driveway in a suburban neighborhood with a school building in the background. +02205.jpg The Chevrolet TrailBlazer SS 2009 appears in a glossy black color with a front three-quarter view, showcasing its distinctive chrome wheels, SS badge, and dual grille under strong lighting against a minimalistic, two-tone studio background. +02503.jpg The black Chevrolet TrailBlazer SS 2009 has a glossy finish with chrome rims, viewed from the front-right angle in a parking lot surrounded by trees, featuring a hood scoop and prominent SS badging. +06321.jpg The Chevrolet TrailBlazer SS 2009 is sleek and shiny black with chrome wheels, viewed in a three-quarter front pose against a backdrop of a lake and a line of trees. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Traverse_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Traverse_SUV_2012_descriptions.txt new file mode 100644 index 0000000..f908feb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chevrolet_Traverse_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +02821.jpg The Chevrolet Traverse SUV 2012 in the image is a white vehicle viewed from the front-left angle, showcasing its chrome grille and distinctive headlight design, set against a backdrop of a partly cloudy sky and promotional banner. +00569.jpg The Chevrolet Traverse SUV 2012 is captured in a side profile displaying a sleek black exterior with a smooth texture, parked in front of a building with large "USED" signage, featuring silver alloy wheels and distinct chrome accents on the door handles. +06508.jpg The Chevrolet Traverse SUV 2012 appears in a metallic gray color with a smooth finish, viewed from a front three-quarter angle on a paved pathway, accompanied by a backdrop of leafless trees and clear sky, with distinctive front grille and headlight design clearly visible. +04394.jpg The Chevrolet Traverse SUV 2012 is a white vehicle with a smooth, shiny texture, viewed from a front three-quarter angle in a bright indoor setting with translucent white drapes in the background, featuring distinct angular headlights and a chrome-accented grille. +03826.jpg The 2012 Chevrolet Traverse SUV is viewed from the front-left angle in a parking lot, featuring a shiny red exterior with a black roof rack, prominent chrome grille, silver alloy wheels, and surrounded by other vehicles under a clear sky. +05446.jpg A black Chevrolet Traverse SUV 2012 is captured from a front-side angle in a car dealership lot, showcasing its silver rims, prominent grille, and streamlined body against a backdrop of a building and other parked vehicles. +00307.jpg This Chevrolet Traverse SUV 2012, viewed from the rear, features a silver metallic color with a slightly frosted texture, red tail lights, and is set against a snowy landscape with a parking lot and buildings in the background. +00135.jpg The 2012 Chevrolet Traverse SUV is a shiny maroon color with a smooth texture, viewed from a three-quarter front angle, parked on a gravel lot alongside other vehicles with visible chrome trim and distinctive large wheel arches. +00692.jpg The Chevrolet Traverse SUV 2012 appears in a glossy maroon color with a chrome grille, viewed from a front-side angle, parked on a suburban driveway beside a garage amid green shrubbery, with children carrying backpacks around it. +03154.jpg The red Chevrolet Traverse SUV 2012 is viewed from the front-side angle, parked on a sunlit dealership lot with an "Avis" sign and building in the background, showcasing its chrome accents and five-spoke alloy wheels. +00486.jpg The Chevrolet Traverse SUV 2012 appears in a glossy dark gray color with a slightly metallic texture, viewed from the front driver’s side at an angle, parked on a dark asphalt surface with a corrugated metal wall in the background, featuring a prominent chrome grille and sleek headlamp design. +07167.jpg The Chevrolet Traverse SUV 2012 appears in a glossy dark blue color, viewed from the front three-quarters angle, parked on a concrete driveway in front of a brick house with neatly trimmed shrubs and yellow flowers in the foreground. +02082.jpg The Chevrolet Traverse SUV 2012 in the image is silver with a smooth texture, viewed from a front three-quarter angle, parked in a driveway with a modern white building and green shrubbery in the background, and features a large, prominent grille and chrome-trimmed headlights. +02098.jpg The Chevrolet Traverse SUV 2012 is a maroon vehicle with a sleek, shiny texture, viewed from a three-quarter front angle, set against a neutral tent-like background, featuring a distinct chrome grille and angular headlights. +00620.jpg A white Chevrolet Traverse SUV 2012 is viewed from a three-quarter front angle, parked on a sunlit concrete surface in front of a building with additional vehicles and a wall-mounted sign in the background, showing its chrome grille and distinctive rounded headlights. +02215.jpg The Chevrolet Traverse SUV 2012 appears in a dark gray color with a smooth texture, viewed from the front emphasizing its grille and headlights, set against a plain white background, highlighting its geometric front bumper and signature Chevrolet emblem. +03845.jpg A silver Chevrolet Traverse SUV 2012 is parked on a concrete surface with a white industrial building backdrop, viewed from a front-side angle, showcasing its chrome grille, roof rails, and alloy wheels. +06120.jpg The Chevrolet Traverse SUV 2012 appears in a glossy white color with a clean texture, shown from the front-right angle, parked indoors against a dealership backdrop with visible showroom branding and features a distinctive wide grille and large, round headlights. +04182.jpg A silver Chevrolet Traverse SUV 2012 is photographed from a front-left angle on a sunny street, featuring a chrome grille and distinctive headlights, with trees and buildings subtly blurred in the background. +02795.jpg The Chevrolet Traverse SUV 2012 is viewed from the side in a dark blue color with a smooth texture, parked outside a dealership with blue signage and red trimmings, featuring silver alloy wheels and silver roof rails. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chrysler_300_SRT-8_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chrysler_300_SRT-8_2010_descriptions.txt new file mode 100644 index 0000000..3a34e52 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chrysler_300_SRT-8_2010_descriptions.txt @@ -0,0 +1,20 @@ +00612.jpg The Chrysler 300 SRT-8 2010 in the image is a glossy black sedan viewed from the front-left angle, set against an overcast outdoor dealership environment with noticeable large alloy wheels and a mesh grille accentuating its bold design. +03282.jpg The Chrysler 300 SRT-8 2010 in the image is black with a glossy texture, viewed head-on with distinctive dual rounded headlights, a prominent chrome mesh grille, and water droplets on the surface, set in a parking lot with other vehicles in the background. +01487.jpg The Chrysler 300 SRT-8 2010 is depicted in a glossy black finish with a metallic grille, viewed from a front-left angle against a cityscape background, accentuated by large shiny alloy wheels and distinctive front headlights. +07734.jpg The Chrysler 300 SRT-8 2010 in the image is a sleek, dark metallic gray with tinted windows and large alloy wheels, positioned at a slight angle in a spacious, overcast parking area, set against an industrial backdrop with concrete structures. +05015.jpg The Chrysler 300 SRT-8 2010 in the image is a silver sedan with a large, black mesh grille, viewed from the front on a wet, reflective parking lot surrounded by various parked cars. +07643.jpg The Chrysler 300 SRT-8 2010 in the image is a glossy red sedan viewed from a low angle, showcasing its prominent chrome grille and five-spoke alloy wheels, parked on a concrete surface with a backdrop of a brick building and industrial elements. +06882.jpg The Chrysler 300 SRT-8 2010 is captured from a front-left angle, showcasing its dark metallic gray color with a glossy texture, prominent chrome grille and the distinctive five-spoke wheels, parked on a dealership lot with other vehicles in the background. +02675.jpg The Chrysler 300 SRT-8 2010 in the image appears glossy black with a prominent front grille, viewed from a frontal angle, set against an industrial background with garage doors and visible pavement, showcasing LED daytime running lights and a distinctive SRT badge. +00783.jpg A black Chrysler 300 SRT-8 2010 is shown from a rear three-quarter angle, displaying its sleek, glossy exterior, distinctive large alloy wheels, and prominent red taillights, set against a suburban background with bare trees and wooden fences. +06690.jpg The Chrysler 300 SRT-8 2010 appears in a glossy two-tone black and silver finish, viewed from a front-side angle, with large chrome wheels and a prominent grille, set against a waterfront with distant cityscape and sailboat elements. +03962.jpg The Chrysler 300 SRT-8 2010 in the image is a shiny blue sedan with a prominent chrome mesh grille, viewed from a low front-side angle against a backdrop of sparse, leafless trees and greenery, with distinct silver alloy wheels and red brake calipers. +06944.jpg The Chrysler 300 SRT-8 2010 appears in a glossy black finish with prominent chrome accents, featuring a frontal angle showcasing its iconic grille and sleek headlamps, set against a plain studio backdrop. +04027.jpg The Chrysler 300 SRT-8 2010 is displayed in a glossy black finish with a front-left angled view, featuring a distinct mesh grille, chrome-trimmed headlights, and sleek black alloy wheels against a backdrop of a stone-walled building and clear pavement. +02248.jpg The 2010 Chrysler 300 SRT-8 appears in a glossy black finish with a sleek, reflective surface, viewed from the front left angle, displaying its distinct mesh grille, prominent hood scoops, and large alloy wheels, set in a busy car dealership parking lot with other vehicles and modern building facades in the background. +06140.jpg The Chrysler 300 SRT-8 2010 in the image is a metallic blue sedan viewed from the side, featuring shiny chrome wheels and distinctive red brake calipers, parked on a driveway with a residential setting and greenery surrounding it. +04429.jpg The Chrysler 300 SRT-8 2010 in the image is a metallic blue sedan with a sleek, lowered stance, large multi-spoke alloy wheels, and is viewed from a front-side angle against a plain white wall backdrop. +02415.jpg The Chrysler 300 SRT-8 2010 is shown in a metallic silver color with a sleek, shiny finish, viewed from a low front-side angle, against a muted outdoor background of bare trees and a cobblestone surface, highlighting its bold grille, muscular stance, and large alloy wheels. +07714.jpg The image shows a blue Chrysler 300 SRT-8 2010 with a glossy finish, captured from a front-side angle in a parking lot with palm trees in the background, featuring distinctive chrome accents and visible red brake calipers. +04786.jpg The Chrysler 300 SRT-8 2010 appears in a glossy white finish with a smooth texture, viewed from a rear three-quarter angle, set against a plain off-white background, featuring distinctive large chrome wheels and the iconic winged badge on the trunk. +08107.jpg The Chrysler 300 SRT-8 2010 is glossy black with a sleek, muscular stance viewed from the front left, surrounded by a modern exhibition environment featuring dim lighting and an urban backdrop, while its distinctive chrome grille, angular headlights, and polished alloy wheels are prominent amidst the low-resolution details. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chrysler_Aspen_SUV_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chrysler_Aspen_SUV_2009_descriptions.txt new file mode 100644 index 0000000..1611b13 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chrysler_Aspen_SUV_2009_descriptions.txt @@ -0,0 +1,20 @@ +01651.jpg The 2009 Chrysler Aspen SUV in the image appears to be a metallic silver color with a prominent chrome grille, viewed from a front-left angle, set against a park-like environment with expansive greenery and a cloudy sky backdrop, and it features distinctive round fog lights and a rugged stance. +04300.jpg The Chrysler Aspen SUV 2009 is shown in a left-side angled view, featuring a white textured exterior with chrome accents, parked on a paved area with a backdrop of trees and a dealership setting. +07998.jpg A beige Chrysler Aspen SUV 2009 is seen in a side profile against a dealership backdrop with reflective windows and distinct automotive branding. +04772.jpg The Chrysler Aspen SUV 2009 appears in a light metallic color with a smooth texture, viewed from the front-left angle in a parking lot, featuring its signature chrome grille, and surrounded by a few parked cars and grassy hills. +02697.jpg The Chrysler Aspen SUV 2009 appears in a metallic silver color with a slightly reflective texture, viewed from a front-left angle in a parking lot environment, showcasing its distinctive chrome grille and roof rails against a backdrop of other parked vehicles. +01895.jpg The Chrysler Aspen SUV 2009 is a cream-colored vehicle with a glossy texture, shown from a front-left angle in a dealership parking lot, featuring chrome accents on the grille and reflecting light prominently against a backdrop of a showroom building labeled with car brands. +06590.jpg The Chrysler Aspen SUV 2009 in the image is a metallic gray, viewed from the rear on a highway with a forested background, featuring prominent taillights, a roof rack, and a spare tire underneath. +06770.jpg The Chrysler Aspen SUV 2009 appears in a light beige color with a smooth texture, viewed from the rear three-quarter angle in a showroom environment, displaying its distinctive chrome accents on the back, large rear window, and high stance. +00630.jpg The image shows a front view of a metallic blue Chrysler Aspen SUV 2009 with a chrome grille, round fog lights, and reflective side mirrors, set against a plain gray background. +01802.jpg The low-resolution image shows a silver Chrysler Aspen SUV 2009 viewed from the front-left angle in a parking lot with a plain gray building wall in the background, featuring its distinctive chrome grille and polished alloy wheels. +03696.jpg The Chrysler Aspen SUV 2009 appears in metallic blue with chrome accents, shown in a three-quarter front view, parked on a waterfront with docks and sailboats in the background, featuring distinctive vertical grille bars and prominent wheel arches. +02106.jpg A red Chrysler Aspen SUV 2009 with visible chrome accents and distinctive grille design is shown from the front-right angle, cruising on a tree-lined road with a blurred background indicating motion. +02879.jpg A white Chrysler Aspen SUV 2009 with a glossy finish is shown in a front-side view on a dealership lot, identifiable by its prominent chrome grille and visible roof rack, set against a backdrop of a concrete pavement with dealership banners and a blue sky. +01906.jpg A metallic blue Chrysler Aspen SUV 2009 is viewed from the front-right angle in a parking lot, showcasing its chrome grille, distinctive hood lines, and reflective side mirrors amidst a background of bare trees and overcast sky. +06157.jpg The Chrysler Aspen SUV 2009 in the image has a metallic gray color with a smooth texture, viewed from a three-quarters front perspective, set against an urban backdrop with trees and a service station, and features chrome accents and distinctive alloy wheels. +07320.jpg The Chrysler Aspen SUV 2009 is seen from a front-side angle in motion, featuring a metallic blue-gray color with a glossy finish, large chrome grille, and distinctive side steps, against a blurred outdoor backdrop of trees and an open road. +01904.jpg The low-resolution image shows a silver Chrysler Aspen SUV 2009 viewed from the rear-left angle, parked on a driveway with an upscale residential building featuring white walls and large windows in the background, highlighting its prominent taillights and chrome accents. +04175.jpg The Chrysler Aspen SUV 2009 is dark metallic gray with a smooth finish, viewed from the front-right angle in a parking lot with other vehicles, featuring a distinctive chrome grille and roof rails. +06940.jpg The Chrysler Aspen SUV 2009 appears in a metallic beige color with a prominent front grille, seen from a slight front-side angle, driving on a road surrounded by dense, blurred greenery, with shiny alloy wheels and a reflective bodywork. +00147.jpg A silver Chrysler Aspen SUV 2009 is viewed from the side on a paved surface, showing its chrome accents and distinctive side molding, with a concrete wall and partial building in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chrysler_Crossfire_Convertible_2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chrysler_Crossfire_Convertible_2008_descriptions.txt new file mode 100644 index 0000000..43a3c3b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chrysler_Crossfire_Convertible_2008_descriptions.txt @@ -0,0 +1,20 @@ +05866.jpg A dark metallic blue Chrysler Crossfire Convertible 2008 is viewed from the front-right angle in a sunlit open parking area, showcasing its distinctive cross-hatched grille and sleek aerodynamic curves with a red-brick building in the background. +06218.jpg The Chrysler Crossfire Convertible 2008 is shown in a striking red color with a smooth, glossy texture, viewed from a front-side angle against a plain white background, highlighting its distinctive slotted side vents and sleek, aerodynamic profile. +07190.jpg The Chrysler Crossfire Convertible 2008 in the image is a sleek dark blue car with a glossy finish, captured from a front three-quarter view on an urban road, with distinguishable features like its signature front grille, dual circular headlights, and distinct hood lines, set against a backdrop of modern buildings and trees. +07564.jpg The Chrysler Crossfire Convertible 2008 is displayed in a side view with a bright yellow color and smooth texture, parked on a waterfront location with houses and trees in the background, featuring distinctive angular lines and prominent wheel arches. +00593.jpg A black Chrysler Crossfire Convertible 2008 with a sleek, glossy finish is viewed from the front-left angle, parked on a grey pavement against a white wall with trees in the background, showcasing its distinctive cross-tiered grille and large silver alloy wheels. +04797.jpg The Chrysler Crossfire Convertible 2008 appears in a metallic silver hue with a sleek texture, viewed from an angled front perspective, featuring its distinctive hood ridges and the black convertible top under a carport with another vehicle and reflective windows in the background. +03514.jpg The Chrysler Crossfire Convertible 2008 is viewed from a front-side angle, displaying a sleek black exterior with a glossy finish, a black convertible top retracted, white wheels, and distinctive twin hood vents, set against an outdoor dealership background with visible signage. +08038.jpg The Chrysler Crossfire Convertible 2008 is displayed in a side view with a sleek silver body contrasted against the black convertible top, set against a dealership background with other cars and a visible showroom, highlighted by its distinctive chrome wheels and ribbed side vents. +06999.jpg The Chrysler Crossfire Convertible 2008 in the image is viewed from the side and features a metallic gray color with a smooth texture, situated in a garden-like environment with tall greenery, showcasing its distinctive ribbed sides and large alloy wheels. +00611.jpg The Chrysler Crossfire Convertible 2008 is a classic yellow vehicle with a smooth, glossy finish, seen from a front three-quarter angle, displaying its distinctive ribbed hood and chrome-accented grille against a suburban street and lush greenery backdrop. +05118.jpg The Chrysler Crossfire Convertible 2008 appears in a metallic blue color with a glossy texture, viewed from a front three-quarter angle on a concrete driveway, surrounded by lush greenery, featuring distinctive large white wheels and a smooth, curved grille. +01437.jpg The Chrysler Crossfire Convertible 2008 in the image is a pale yellow vehicle with smooth, shiny texture viewed from the side with both the driver’s door and trunk open, parked on a residential street in front of trees and houses. +00413.jpg A silver Chrysler Crossfire Convertible 2008 with a black soft top is seen from a front-side angle in a car dealership lot, featuring distinctive cross-louvered front vents and five-spoke alloy wheels. +01572.jpg The Chrysler Crossfire Convertible 2008 in the image is a metallic silver with a sleek, low stance, viewed from the front-left quarter against a grassy landscape, featuring distinctive ribbed side panels and alloy wheels. +06410.jpg The Chrysler Crossfire Convertible 2008 appears in a dark color with a smooth, glossy texture, showcased in a side profile view outside a brick building with a sloped roof, featuring large, white multi-spoke wheels and a black convertible top. +01577.jpg The image shows a red Chrysler Crossfire Convertible 2008 with a black soft top from a side view, parked on a paved road, against a backdrop of lush greenery, highlighted by its sleek chrome accents and distinctive broad rear fenders. +07310.jpg The Chrysler Crossfire Convertible 2008 is displayed in a low-resolution image featuring a sleek black body with smooth texture, viewed from a side angle showcasing its elongated hood and sporty wheels, set against a backdrop of mountainous terrain and cloudy skies, while its distinctive ribbed side scoops and retractable roof stand out. +05885.jpg The low-resolution image shows a Chrysler Crossfire Convertible 2008 with a metallic blue finish and smooth texture, viewed from a side angle with its top down, against the backdrop of an automotive service area with visible signage, and features such as distinctive wheel design and prominent side vent detailing. +05470.jpg The Chrysler Crossfire Convertible 2008 is shown in a vibrant yellow color with a sleek, glossy texture, viewed at an angled front-side perspective against a waterfront backdrop, featuring distinct multi-spoke wheels and signature side vent detailing. +02537.jpg The Chrysler Crossfire Convertible 2008 in the image is a light blue vehicle with a shiny, smooth metallic texture, shown from a front-side view with a top-down pose in a sandy and rocky outdoor setting, featuring its distinctive dual-bar grille and rounded headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chrysler_PT_Cruiser_Convertible_2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chrysler_PT_Cruiser_Convertible_2008_descriptions.txt new file mode 100644 index 0000000..038d530 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chrysler_PT_Cruiser_Convertible_2008_descriptions.txt @@ -0,0 +1,20 @@ +04620.jpg The Chrysler PT Cruiser Convertible 2008 in the image is a red vehicle with metallic sheen, presented in a side profile with the top down, situated on a dark paved surface against a backdrop of leafless trees and overcast sky. +00496.jpg The Chrysler PT Cruiser Convertible 2008 appears in a metallic blue-gray color with a shiny texture, viewed from the front-left angle with the top down, parked in an outdoor environment alongside a brick building, showcasing its rounded headlights and distinctive chrome grille. +05667.jpg The Chrysler PT Cruiser Convertible 2008 is bright blue with a smooth texture, viewed from the front left in an open-air parking lot lined with trees, featuring its signature rounded grille and large wheel arches. +06657.jpg The Chrysler PT Cruiser Convertible 2008 is shown in a matte dark gray finish from a low front-side angle, highlighting its distinctive retro grille and round headlamps, with a blurred colorful background suggesting motion. +04015.jpg The Chrysler PT Cruiser Convertible 2008 is shown in a side profile with a dark maroon color and a black soft top, parked on a snowy dealership pavement with a modern car showroom in the background, accentuated by its prominent front grille and silver alloy wheels. +03657.jpg A silver Chrysler PT Cruiser Convertible 2008 is viewed from the rear right angle against a plain gray backdrop, showcasing its distinctive retro design with visible chrome accents, rounded taillights, and a beige soft top roof. +04167.jpg A silver Chrysler PT Cruiser Convertible 2008 is parked on a grassy field, viewed from a front-side angle, featuring a distinct retro grille and chrome wheel accents under a partly sunny sky. +04238.jpg A dark gray Chrysler PT Cruiser Convertible 2008 with a black soft top is viewed from the front-right angle, parked in a lot with a modern urban background, displaying distinctive chrome accents and rounded headlights. +04602.jpg The 2008 Chrysler PT Cruiser Convertible is a white vehicle with a smooth texture, shown from a side profile with the top down, parked indoors on a tiled floor with dark walls and large lettering in the background, and features distinctive rounded headlights and spoked wheels. +04643.jpg A cream-colored Chrysler PT Cruiser Convertible 2008 with a black soft top is photographed at a three-quarter front view in a parking lot, featuring distinctive rounded headlights, a chrome grille, and a "For Sale" sign on the windshield. +05762.jpg The Chrysler PT Cruiser Convertible 2008 is shown from a front-side angle in a shiny black color with a distinctive chrome grille, parked on a concrete surface with a lush, tropical backdrop of palm trees. +06103.jpg A silver Chrysler PT Cruiser Convertible 2008 with a smooth, glossy texture is viewed three-quarters from the front against an indoor showroom setting, showcasing its distinctive rounded headlights, chrome grille, and open-top design. +07801.jpg The Chrysler PT Cruiser Convertible 2008 is a red car with a beige soft top, viewed from the front-right angle in a parking lot with a distinctive blue fence and a grassy slope in the background, featuring a chrome grille and silver alloy wheels. +01219.jpg A creamy white Chrysler PT Cruiser Convertible 2008 is viewed from the front-right angle, showcasing its rounded headlights, prominent chrome grille, and raised black soft top, parked in a sunlit lot with a concrete building and a car in the background. +02709.jpg A front-facing view of a white Chrysler PT Cruiser Convertible 2008, featuring a distinct chrome grille and rounded headlights, is displayed in a tiled showroom with potted plants and large windows in the background. +01823.jpg A silver Chrysler PT Cruiser Convertible 2008 is captured in motion from a three-quarter front view on a scenic road, with its soft top down and hills in the blurred background. +07267.jpg The silver Chrysler PT Cruiser Convertible 2008 is shown from a front three-quarter view in a parking area with a building and other vehicles in the background, featuring its distinctive retro-style grille and rounded headlights. +02624.jpg The Chrysler PT Cruiser Convertible 2008 appears in a silvery metallic color with a black fabric roof, viewed from a side angle against a simple, neutral background, showcasing its distinctive retro grille, rounded headlights, and prominent wheel arches. +07735.jpg The Chrysler PT Cruiser Convertible 2008 appears in a vibrant blue color with a smooth texture, viewed from a rear-side angle showing its distinct retro-styled taillights and prominent black convertible roof, set against a plain indoor backdrop. +03331.jpg A silver Chrysler PT Cruiser Convertible 2008 is viewed from the rear-left in a gravel driveway, with a black fabric top and distinctive rounded tail lights, set against a red wooden fence and green grassy backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chrysler_Sebring_Convertible_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chrysler_Sebring_Convertible_2010_descriptions.txt new file mode 100644 index 0000000..b32deed --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chrysler_Sebring_Convertible_2010_descriptions.txt @@ -0,0 +1,20 @@ +06147.jpg The Chrysler Sebring Convertible 2010 is a silver-colored car with a smooth finish, viewed from the side with its top down, parked on a dark asphalt surface in front of a building with white siding and a contrasting vehicle adjacent to it. +04049.jpg The Chrysler Sebring Convertible 2010 in the image is a red car with a black soft top, viewed from a front-side angle, parked on a paved driveway with trees and a building in the background, featuring distinct multi-spoke alloy wheels and a slightly prominent front grille. +05681.jpg The Chrysler Sebring Convertible 2010 in the image is a metallic silver color with a black soft-top, viewed from the front-left angle, parked on a concrete lot in front of a corrugated metal building with other vehicles around, featuring a distinctive grille and prominent headlights. +00863.jpg The Chrysler Sebring Convertible 2010 appears in a metallic silver-gray with a shiny texture, viewed from a front-side angle, set against a backdrop of tall palm trees and a building, featuring distinct rounded headlights, a chrome-accented grille, and the top down. +00195.jpg A silver Chrysler Sebring Convertible 2010 is viewed from the rear side in a cobblestone courtyard with red brick walls and tall grasses in the background, featuring its distinctive taillights and alloy wheels. +00604.jpg The Chrysler Sebring Convertible 2010 is shown in a sleek silver tone with a smooth texture, viewed from a rear-side angle amidst an urban cityscape with tall buildings, featuring distinct taillights and a raised convertible top mechanism. +05996.jpg The Chrysler Sebring Convertible 2010 in the image is viewed from the side with its soft top down, featuring a silver metallic color with a smooth texture, parked in a lot with other vehicles and surrounded by trees, and it showcases distinctive multi-spoke alloy wheels and a sleek, aerodynamic body design. +00218.jpg The image depicts a silver Chrysler Sebring Convertible 2010 with its top down, viewed from the front-left angle, parked on a dealership lot surrounded by other vehicles and a modern glass-fronted building in the background. +05767.jpg The Chrysler Sebring Convertible 2010 in the image is white with a smooth texture, viewed from the side profile with the top down, parked on a paved area with a commercial building in the background, showcasing its distinct rounded headlights and multi-spoke alloy wheels. +01241.jpg The image shows a silver-blue Chrysler Sebring Convertible 2010 viewed from the front-left side, with the top down and beige interior visible, set against a plain, white background; the car features a distinct chrome-accented grille and large wheels. +00485.jpg The Chrysler Sebring Convertible 2010, shown from a front-side angle in a showroom with a carpeted floor and high ceilings, features a metallic gray color with a smooth texture, a prominent chrome grille, and its convertible top open, alongside distinctive chrome-plated multi-spoke wheels. +02614.jpg The Chrysler Sebring Convertible 2010 is displayed from a front three-quarter view with a silver metallic finish, a smooth body texture, a black convertible top down, and is parked in a garage with a banner on the wall in the background. +03034.jpg A rear view of a white Chrysler Sebring Convertible 2010 with red tail lights, a visible dual exhaust system, and a badge on the trunk, shown against a plain white background. +04405.jpg The Chrysler Sebring Convertible 2010 is in a glossy white finish viewed from a front left angle, parked on grass in a car dealership setting with other vehicles in the background, featuring a distinctive chrome grille and shiny multi-spoke wheels. +02570.jpg The silver Chrysler Sebring Convertible 2010 is viewed from the front-left angle inside a clean garage, showcasing a sleek grille, rounded headlights, and a black soft top against a white wall backdrop. +04377.jpg A silver Chrysler Sebring Convertible 2010 with a black soft top is shown from a rear-side angle, parked on an asphalt surface against a backdrop featuring a large window and building façade, with its signature taillights and alloy wheels visible. +02016.jpg The Chrysler Sebring Convertible 2010, shown from a front three-quarter angle, is metallic beige with chrome wheels, featuring its distinct front grille set against a backdrop of modern white buildings and palm trees. +02933.jpg The Chrysler Sebring Convertible 2010 is shown in a metallic silver color with a smooth texture, photographed from a front-side angle in a parking area with a backdrop of cars and trees, featuring a distinct grille and rounded headlights. +07842.jpg The image shows a maroon Chrysler Sebring Convertible 2010 with a black soft top, viewed from the front right angle, parked in a lot with other vehicles and price tags displayed prominently on the windshield and the ground, alongside a checkered flag on the antenna. +06490.jpg The Chrysler Sebring Convertible 2010 is depicted from a front-side angle in a glossy red finish with a black soft-top roof, parked on a concrete surface near a blue industrial building, featuring distinct curved headlights and a chrome grille, contrasting against neighboring vehicles. diff --git a/utils/area/descriptions/Car/generated_descriptions/Chrysler_Town_and_Country_Minivan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Chrysler_Town_and_Country_Minivan_2012_descriptions.txt new file mode 100644 index 0000000..da3b299 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Chrysler_Town_and_Country_Minivan_2012_descriptions.txt @@ -0,0 +1,20 @@ +00837.jpg The silver Chrysler Town and Country Minivan 2012 is viewed from the front passenger side with prominent chrome accents and sits in an urban setting with stone pathways and vertical stone elements in the background. +06231.jpg A white Chrysler Town and Country Minivan 2012 is viewed at a front-side angle with distinctive silver grille and smooth body lines, parked near a concrete wall on an asphalt surface under sunlight. +02637.jpg A glossy black Chrysler Town and Country Minivan 2012 is parked at a slight front-side angle on a dealership lot, featuring a distinctive chrome grille and surrounded by a commercial building and minimal signage. +06025.jpg The silver Chrysler Town and Country Minivan 2012 is viewed from a front three-quarter angle with reflective, smooth panels, parked in front of ornately carved wooden doors, and features chrome accents with alloy wheels. +01795.jpg The Chrysler Town and Country Minivan 2012 appears in sleek dark gray with a slightly metallic sheen from an angled front-left viewpoint, featuring chrome accents and distinct horizontal grille lines, set against a dealership lot background. +05488.jpg The low-resolution image shows a black Chrysler Town and Country Minivan 2012 with a glossy finish, viewed from the front-left, parked on a concrete surface against a plain white wall, featuring prominent chrome grille accents and shiny mirror caps. +04194.jpg The Chrysler Town and Country Minivan 2012 appears in a metallic beige color with a polished texture, viewed from the front-left angle, situated in a showroom with tiled flooring and a visible American flag in the background, featuring a distinctive chrome grille and sleek headlight design. +01816.jpg The 2012 Chrysler Town and Country Minivan is a dark metallic gray, viewed from the front-left angle, set in a misty, tree-lined road, with distinctive chrome-trimmed headlights and grille. +02536.jpg The Chrysler Town and Country Minivan 2012 is a silver vehicle seen from the front, featuring a prominent chrome grille with vertical slats, situated on a sunlit concrete pavement with other vehicles nearby and noticeable reflective headlights. +03448.jpg The image shows a white Chrysler Town and Country Minivan 2012 with a smooth texture, viewed in a three-quarter angle from the front on a plain white background, featuring distinctive chrome accents and roof rails. +04150.jpg The Chrysler Town and Country Minivan 2012 appears in a glossy dark blue finish viewed from the front-left angle, set against a dark studio backdrop, highlighting its chrome grille and alloy wheels. +06534.jpg The silver Chrysler Town and Country Minivan 2012 is captured from a rear three-quarter view, showcasing its sleek, reflective exterior against a backdrop of dense green foliage, with distinctive tail lights and a rear spoiler accentuating its design. +01559.jpg The low-resolution image depicts a beige Chrysler Town and Country Minivan 2012 viewed from the front right, with chrome detailing on the grille, situated in a car lot surrounded by other vehicles under a clear sky. +05764.jpg A black Chrysler Town and Country Minivan 2012 with a reflective finish and an open driver's side door is parked on a dirt road with an ocean and mountainous coastal background under a clear blue sky. +02855.jpg The Chrysler Town and Country Minivan 2012 appears in a metallic silver color with a glossy finish, viewed from a three-quarter front angle with a forested background, and features distinct chrome accents on the grille and striping along the side. +07104.jpg The Chrysler Town and Country Minivan 2012 is silver with polished metallic texture, shown from a front three-quarter view, set against a modern industrial background with distinctive horizontal grilles and chrome accents visible. +00821.jpg The Chrysler Town and Country Minivan 2012 is a dark gray vehicle with a glossy finish, captured from a three-quarter front view, set against a backdrop of tall buildings and lush greenery, featuring distinct chrome detailing and large alloy wheels. +01796.jpg The 2012 Chrysler Town and Country Minivan, seen in a glossy black finish from a front three-quarter angle, features distinctive chrome accents on the grille and wheels against a backdrop of a winding desert road under a cloudy sky. +02538.jpg The Chrysler Town and Country Minivan 2012 appears in a silver color with a sleek, polished texture, viewed from the side with a backdrop of lush green trees and a modern, dark wooden garage, and features chrome accents, distinctive horizontal grille, and multi-spoke alloy wheels. +07123.jpg A front-facing, silver 2012 Chrysler Town and Country Minivan is depicted on a paved outdoor area with a background of tall trees, featuring a prominent front grille with horizontal chrome bars and clear headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Daewoo_Nubira_Wagon_2002_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Daewoo_Nubira_Wagon_2002_descriptions.txt new file mode 100644 index 0000000..f23f2e8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Daewoo_Nubira_Wagon_2002_descriptions.txt @@ -0,0 +1,20 @@ +06245.jpg The Daewoo Nubira Wagon 2002 appears in a silver metallic color with smooth texture, viewed from a front three-quarter angle, set against a backdrop of industrial vehicles on a gravel lot, featuring distinctive oval-shaped headlights and a unique front grille. +01161.jpg The photo shows a metallic gold Daewoo Nubira Wagon 2002 from a front-side angle, parked on a suburban street with trees and houses in the background, featuring a dent-resistant plastic front bumper and a visible roof rack. +00814.jpg The Daewoo Nubira Wagon 2002 appears in a metallic silver color with a glossy texture, viewed from a front-side angle, situated in a parking lot with a clear sky and trees in the background, featuring distinctive oval headlights and a sleek roofline. +05665.jpg A dark blue Daewoo Nubira Wagon 2002 is seen from a front-side angle in a sunny, outdoor car park, with distinctive silver alloy wheels and a slightly curved front grille, contrasting against a mix of parked dark and light-colored cars in the background. +05493.jpg The Daewoo Nubira Wagon 2002 appears in a metallic silver color with a smooth texture, viewed from a rear three-quarter angle in an outdoor parking lot, featuring roof rails and distinctly shaped rear light clusters. +03992.jpg The image shows a dark-colored Daewoo Nubira Wagon 2002 parked on a street with a grassy park and trees in the background, featuring a compact station wagon design with roof rails, clear headlights, and a subtle chrome detail on the grille. +05456.jpg This Daewoo Nubira Wagon 2002 is viewed from the rear three-quarters with a metallic light green color, featuring roof rails, distinct rear light clusters, and set against a blurred, natural background suggesting an open outdoor setting. +04468.jpg The Daewoo Nubira Wagon 2002 appears in a silvery metallic color with a slightly curved body, shadowed diagonal front-left view revealing its distinct grille and rounded headlamps, situated in a park-like environment with trees and grass in the background. +07965.jpg The Daewoo Nubira Wagon 2002 appears in a silvery-gray color with a sleek texture, viewed from a side angle showcasing its elongated body, set against a serene backdrop of a lake with trees and residential houses. +02639.jpg This low-resolution image shows a dark blue Daewoo Nubira Wagon 2002 viewed from the front-left angle, parked on a dark floor in front of a bright yellow wall with "Green Light Approved Dealer" signage, featuring a distinct pair of circular headlights and a smooth body with chrome wheels. +06901.jpg The Daewoo Nubira Wagon 2002 appears in a silver color with a smooth texture, viewed from the front-left side, set against a vibrant yellow wall on a gray asphalt surface, featuring distinct roof rails and rounded headlights. +02648.jpg The low-resolution image shows a silver Daewoo Nubira Wagon 2002 viewed from a high rear three-quarter angle, set against a broad, light brown paved area with a man on the left side handling the luggage on the roof rack, highlighting its compact design and rear light cluster shape. +03459.jpg The low-resolution image shows a beige Daewoo Nubira Wagon 2002 from a side profile view, parked in a crowded lot with mountains in the background, featuring distinct silver wheel covers and a roof rack. +06976.jpg The Daewoo Nubira Wagon 2002 appears in a dark blue color with a smooth texture, viewed from a rear three-quarter angle showcasing its curvy back and roof rails, against a simple, light-colored background with contrasting dark elements. +03999.jpg A metallic beige Daewoo Nubira Wagon 2002 is viewed from the rear three-quarter angle, showing its curved tail lights and roof rails, parked on an asphalt surface under a partly cloudy sky. +06695.jpg The Daewoo Nubira Wagon 2002, viewed from a side angle on a slight incline, appears in a metallic silver color with smooth texture, featuring a distinct roof rack against a clear sky background. +03453.jpg A silver Daewoo Nubira Wagon 2002 is viewed from a front-left angle, parked on a gravel lot with a clear sky and industrial buildings in the distant background, featuring rounded headlights and a roof rack. +06220.jpg The image shows a white Daewoo Nubira Wagon 2002 with smooth texture viewed from a front-left angle, featuring distinct chrome wheel rims and a clean urban industrial background with a fence and corrugated metal siding. +06511.jpg The Daewoo Nubira Wagon 2002 is shown from a side view in a solid red color with visible roof rails, against a plain white background, highlighting its smooth curves and compact, elongated wagon body despite the low resolution. +07522.jpg The Daewoo Nubira Wagon 2002 is viewed from the front-right with a glossy white exterior, parked on pavement in front of a brick building, and features distinct rounded headlights and a sleek grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Caliber_Wagon_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Caliber_Wagon_2007_descriptions.txt new file mode 100644 index 0000000..bf628c7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Caliber_Wagon_2007_descriptions.txt @@ -0,0 +1,20 @@ +06468.jpg The Dodge Caliber Wagon 2007 is a bright red vehicle with a glossy finish, viewed from the side with a suburban park setting in the background, featuring its distinct boxy shape, chrome wheels, and a visible roof rack. +00459.jpg The Dodge Caliber Wagon 2007 in the image is a glossy red color, viewed from the front-right angle, situated in a showroom with a red and white checkered wall, featuring a prominent chrome grille and round fog lights. +00232.jpg The Dodge Caliber Wagon 2007 is viewed from the front-left with a metallic orange finish and rounded contours, set against a sandy outdoor backdrop with greenery, featuring a distinctive crosshair grille and silver wheels. +03280.jpg The Dodge Caliber Wagon 2007 is a metallic red vehicle with a slightly grainy texture, viewed at a front three-quarter angle, parked in a paved lot surrounded by other cars, featuring prominent front grille crossbars and distinct silver wheel rims. +01418.jpg The Dodge Caliber Wagon 2007 is a red vehicle with a glossy texture, viewed from the front-right corner on a road, featuring a distinctive crosshair grille and a blurred wooded background. +02751.jpg The Dodge Caliber Wagon 2007 in the image is a red vehicle with a slightly metallic texture viewed from the front-left angle, set in a dealership parking lot with other cars in the background, featuring distinctive thick wheel arches and a crosshair grille. +07645.jpg The Dodge Caliber Wagon 2007 is a red vehicle with a glossy finish, viewed from a front three-quarter angle, set against a rural road and grassy field, featuring a distinctive crosshair grille and five-spoke alloy wheels. +00500.jpg A front-view image showing a red Dodge Caliber Wagon 2007 with a polished texture, distinctive chrome grille, and surrounded by other parked cars in a sunny outdoor setting. +02585.jpg The Dodge Caliber Wagon 2007 is seen from a front three-quarter view with a metallic orange-red color, parked in a lot with other vehicles, featuring chrome wheels and a distinctive crosshair grille in a sunny outdoor environment. +01262.jpg The Dodge Caliber Wagon 2007 is red with a smooth texture, displayed from a front three-quarter view on a curving desert road, and features a distinct cross-shaped grille and rounded headlights against a mountainous backdrop. +07381.jpg The low-resolution image shows a shiny red Dodge Caliber Wagon 2007 viewed from the front-right angle against a gradient red background, featuring a distinctive crosshair grille and five-spoke alloy wheels. +01704.jpg The Dodge Caliber Wagon 2007 is seen in a side-front view with a deep red color and smooth texture, set against a desert landscape with mountains in the background, featuring a prominent crosshair grille and five-spoke alloy wheels. +05598.jpg The 2007 Dodge Caliber Wagon in the image is a glossy red vehicle, viewed from the front-left angle, parked on a paved street next to lush green trees, featuring distinctive chrome rims and a crosshair grille. +06868.jpg The 2007 Dodge Caliber Wagon appears in a vibrant metallic orange color with a glossy texture, seen from a side view on a paved road, flanked by lush greenery and purple flowers, and features a distinct sloping roofline and prominent wheel arches. +03858.jpg A red Dodge Caliber Wagon 2007 is viewed from a front three-quarter angle on a desert road, featuring chrome wheels and a distinctive crosshair grille, with a rugged backdrop of rocky terrain. +04831.jpg The Dodge Caliber Wagon 2007 appears to be red with a smooth, shiny texture, viewed from the side in front of a commercial building with a wooden shingle facade, featuring distinctive white alloy wheels and pronounced wheel arches. +05531.jpg The Dodge Caliber Wagon 2007 in the image is a shiny red color with chrome accents, viewed from an angled frontal perspective on a winding road, set against a mountainous landscape, highlighting its prominent grille and raised stance. +07737.jpg The Dodge Caliber Wagon 2007 appears in a metallic orange color with a smooth texture, viewed from a front-side angle, parked on a paved surface with trees and colorful flags in the background, and features silver alloy wheels and a prominent grille. +01229.jpg The Dodge Caliber Wagon 2007 is a vibrant red car with a sleek finish, viewed from a front diagonal angle on a gravel path surrounded by dense greenery, featuring distinct chrome accents on the grille and illuminated headlights. +00624.jpg A red Dodge Caliber Wagon 2007 is viewed from a front-side angle, parked on grass with a wooded background, featuring noticeable chrome rims and a distinctive crosshair grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Caliber_Wagon_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Caliber_Wagon_2012_descriptions.txt new file mode 100644 index 0000000..96a7fcb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Caliber_Wagon_2012_descriptions.txt @@ -0,0 +1,20 @@ +06477.jpg The image showcases a black Dodge Caliber Wagon 2012 viewed from a front three-quarter angle in a parking lot with a textured asphalt surface, highlighting its chrome grille and distinctive crosshair emblem, set against a backdrop of a white building and other parked cars. +03460.jpg The Dodge Caliber Wagon 2012 is shown in a vibrant red color with a sleek texture from a front three-quarter viewpoint, set against a quaint village background, highlighting its distinct crosshair grille and pronounced wheel arches. +07397.jpg The Dodge Caliber Wagon 2012, viewed from a rear three-quarter angle, features a glossy red finish with a slightly dusty texture, set against an industrial backdrop of old brick buildings and rail tracks, highlighting its high ground clearance and distinctive hatchback design. +03432.jpg The Dodge Caliber Wagon 2012 appears in a rear three-quarter view, showcasing its silver exterior with a slightly reflective texture, against a plain white background, highlighting its distinct hatchback design and prominent taillights. +02991.jpg The image shows a side view of a red Dodge Caliber Wagon 2012 with visible door lines and wheel arches, parked on a residential street with a grassy verge and a house in the background. +02689.jpg The Dodge Caliber Wagon 2012 is a reddish-brown vehicle with a smooth texture, viewed from a front-side angle on a rocky coast with the sea and cliffs in the background, featuring a distinctive crosshair grille and a black roof rack. +06731.jpg The Dodge Caliber Wagon 2012 appears in a bright red color with a glossy finish, viewed from the front-right angle on a blurred urban street background, showcasing its distinctive crosshair grille and chrome accents. +06551.jpg The silver Dodge Caliber Wagon 2012, viewed from a front-left angle in a parking lot, features a distinctive crosshair grille and rounded wheel arches, with its sleek, smooth finish reflecting the surrounding cars. +03012.jpg The Dodge Caliber Wagon 2012 in the image appears in a metallic beige color with a smooth texture, viewed from a front three-quarter angle, parked on a small lot near a building with reflective glass doors, featuring distinctive chrome-accented crosshair grille and five-spoke alloy wheels. +04127.jpg The Dodge Caliber Wagon 2012 is seen in a front three-quarter view, featuring a black exterior with a smooth finish, set against a plain white background, with identifiable features including a crosshair grille, curving wheel arches, and silver alloy wheels. +04079.jpg The Dodge Caliber Wagon 2012 in the image is silver with a smooth texture, viewed from a front-side angle, in a parking lot with trees and buildings in the background, featuring prominent alloy wheels and a distinctive crosshair grille. +00115.jpg The Dodge Caliber Wagon 2012 in the image is red with a shiny finish, viewed from the front-left angle, parked on a smooth pavement beside a modern building with tall vertical panels, featuring distinctive chrome wheels and the recognizable Dodge crosshair grille. +02340.jpg The Dodge Caliber Wagon 2012 is shown from a rear-side viewpoint featuring a deep red color with a smooth texture, silver alloy wheels, and is set against a modern building with glass windows and a visible door number "12." +00371.jpg The Dodge Caliber Wagon 2012 is shown in a side-front view with a silver exterior featuring a smooth texture, set against a dark, studio-like background, highlighting its distinctive chrome grille, rounded shape, and visible alloy wheels. +00646.jpg The Dodge Caliber Wagon 2012 appears in a side profile with a metallic gray finish, featuring alloy wheels and smooth body contours, situated in an open-air parking lot with some trees and a few vehicles in the background. +03899.jpg The red Dodge Caliber Wagon 2012 is photographed from a front-side angle in an industrial setting, showcasing its chrome grille, multi-spoke alloy wheels, and distinct hatchback silhouette. +07216.jpg The Dodge Caliber Wagon 2012 is silver with a smooth texture, shown in a three-quarter front view, parked on a sunny pavement in front of a cream-colored wall, featuring distinctive black window trim and five-spoke alloy wheels. +07247.jpg A light blue Dodge Caliber Wagon 2012 is shown from the rear-left angle parked on a residential street, featuring distinctively large taillights and a smooth, curving body with a row of suburban houses and autumn trees in the background. +05412.jpg A black Dodge Caliber Wagon 2012 is shown from a three-quarter front view, highlighting its sleek body contours, silver alloy wheels, and prominent crosshair grille against a plain white background. +05961.jpg The image shows a maroon Dodge Caliber Wagon 2012 with a smooth, glossy finish viewed from the front-left angle, parked on a wet concrete surface in front of a red and white building with visible signage at the bottom. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Caravan_Minivan_1997_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Caravan_Minivan_1997_descriptions.txt new file mode 100644 index 0000000..52b839c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Caravan_Minivan_1997_descriptions.txt @@ -0,0 +1,20 @@ +07226.jpg The 1997 Dodge Caravan Minivan is shown from a front-side angle, featuring a beige and gray two-tone exterior with smooth curves, against a background of a blue corrugated building and a partly overcast sky, accentuated by a prominent yellow sale sticker on the windshield and sleek silver alloy wheels. +01384.jpg A teal Dodge Caravan Minivan 1997 is viewed from the front, parked on asphalt with a brick wall background, featuring a slightly worn bumper and distinctive dual front grille slots. +08105.jpg The 1997 Dodge Caravan Minivan displays a smooth white exterior with black side windows and is viewed from the front-right angle, set against a suburban backdrop of trimmed hedges, featuring distinctively curved body lines and silver alloy wheels. +00014.jpg The Dodge Caravan Minivan 1997 is a white vehicle with a smooth texture, viewed from the side against a rocky hillside, featuring distinctive oval headlights and sliding rear side doors. +04462.jpg The Dodge Caravan Minivan 1997 is seen from a front-left angle, featuring a dark green color with a matte, slightly worn texture, set in a driveway with a large pickup truck and trees in the background, and distinctive round headlights and a simple grille design. +07170.jpg The 1997 Dodge Caravan Minivan is shown in a front-side view with a metallic gray finish, featuring smooth, rounded edges and parked in a gravel lot beside similar vehicles against a backdrop of industrial buildings. +02956.jpg The 1997 Dodge Caravan minivan is shown in a three-quarter front view with a maroon color and a glossy texture, parked on a dirt surface beside a white building, featuring its distinctive aerodynamic shape and rounded headlights. +05500.jpg The 1997 Dodge Caravan Minivan in the image is white with a smooth texture, viewed from the front-left angle, placed on a paved lot surrounded by other vehicles, and features rounded headlights and a distinct crosshair grille. +04793.jpg The 1997 Dodge Caravan Minivan is seen from a front-left angle, featuring a white body with dark tinted windows, a sleek curved front with distinct headlights and grille, set against a rural road backdrop with a fence and mountainous landscape. +01826.jpg The Dodge Caravan Minivan 1997 is viewed from the front-left angle, showcasing a white exterior with a smooth texture, positioned in a parking lot with other vehicles in the background, distinct with its iconic split grille and rounded headlamps. +03252.jpg The Dodge Caravan Minivan 1997 appears in a light silver color with a smooth texture, viewed from the front right angle, parked under a large, brown, triangular building facade with a clear blue sign above, featuring a distinctive split front grille and rounded headlights. +06119.jpg The 1997 Dodge Caravan Minivan in the image is a maroon color with a smooth, slightly reflective surface, viewed from a side angle under a tree with dappled light creating a pattern on its exterior, accompanied by visible hubcaps and a background of fallen leaves and another vehicle. +05102.jpg The Dodge Caravan Minivan 1997 appears in a dark gray color with a smooth texture, viewed from a front-side angle, parked on an asphalt surface near a brick building and trees, featuring a rounded front grille and multi-spoked wheels. +01958.jpg The Dodge Caravan Minivan 1997 is a white vehicle with smooth, rounded contours and a side profile view parked on a road against a grassy background, featuring distinct curved front headlights and a rear sliding door. +02389.jpg The image shows a maroon Dodge Caravan Minivan from 1997 viewed from a front side angle, parked on a gravel lot with other vehicles and a fence in the background, featuring a rounded hood and distinctive grille design. +08135.jpg A front-view, low-resolution image of a light gray 1997 Dodge Caravan Minivan is parked in a lot with other vehicles, featuring a slightly worn texture and distinctive four-slat grille above its bumper. +00423.jpg A silver 1997 Dodge Caravan Minivan is viewed from the front-right angle, displaying its iconic split-grille design, set against a gravel lot with a fence and trees, featuring overcast lighting that highlights the smooth texture and a slightly reflective surface. +03529.jpg The image shows a red Dodge Caravan Minivan 1997 viewed from the front, parked on a residential street with houses and trees in the background, featuring a slightly curved hood and distinct grille. +04389.jpg A dark green Dodge Caravan Minivan from 1997 with a smooth texture and slightly worn finish is viewed from a front-side angle, parked on an asphalt surface with other vehicles in the background, featuring noticeable fog lights and a distinctive grille design. +03681.jpg A red Dodge Caravan Minivan from 1997 is viewed from a front three-quarter angle, showcasing its smooth, rounded design against a background of a rocky coastline and ocean. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Challenger_SRT8_2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Challenger_SRT8_2011_descriptions.txt new file mode 100644 index 0000000..8493d08 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Challenger_SRT8_2011_descriptions.txt @@ -0,0 +1,20 @@ +05403.jpg A low-resolution image shows a white Dodge Challenger SRT8 2011 with blue racing stripes parked at an angle in front of a brick building with signage, its distinct wide grille and front facade vaguely visible in the shaded area. +07836.jpg A silver Dodge Challenger SRT8 2011 is captured from a low, front-side angle, showcasing its sleek lines, prominent front grille, dual racing stripes, and distinctive large wheels, with a racetrack fence and another car in the background. +07983.jpg The Dodge Challenger SRT8 2011 is in a metallic silver color with black racing stripes, viewed from a front-left angle, set against a car show backdrop with a poster of a red car, showcasing its prominent grille, dual round headlights, and red brake calipers. +03082.jpg The gray Dodge Challenger SRT8 2011, viewed from the rear three-quarters angle with a black racing stripe, is set against a bustling outdoor car event with colorful tents and a clear sky. +01439.jpg The Dodge Challenger SRT8 2011 is shown in vibrant blue with dual white racing stripes, viewed from the front-left quarter angle, parked on grass with a background of lush green trees, featuring distinct red brake calipers and a pronounced front splitter. +01093.jpg The Dodge Challenger SRT8 2011 appears in a vibrant orange color with a black racing stripe, viewed from a front three-quarter angle, parked on a concrete driveway outside a suburban garage, showcasing its muscular stance, prominent hood scoop, and distinctive five-spoke alloy wheels. +01685.jpg The Dodge Challenger SRT8 2011 appears in a front three-quarter view showcasing its glossy white finish with bold blue racing stripes, set against an industrial background, highlighting its muscular stance, distinctive hood scoop, and red brake calipers. +04477.jpg The Dodge Challenger SRT8 2011 appears in a side view with a glossy white finish and blue racing stripes, set against a racetrack background with blurred green and gray elements, featuring notable red brake calipers and distinctive dual exhaust tips. +06424.jpg A white Dodge Challenger SRT8 2011 with bold blue racing stripes is shown from a front view against a clear blue sky and open grassy field, highlighting its wide grille and dual round headlights. +01576.jpg The Dodge Challenger SRT8 2011 is a sleek, deep blue sports car with prominent dual white racing stripes, captured at a front three-quarter angle on a winding road under a dramatic, cloud-filled sky, and features bold, distinctive front styling with aggressive grille and hood scoops. +01545.jpg The Dodge Challenger SRT8 2011 is captured from a front angle on a desert road, showcasing its black body with prominent white racing stripes, aggressive headlights, and hood scoops, set against a blurred, barren landscape. +05610.jpg The Dodge Challenger SRT8 2011 appears in a glossy white color with bold blue racing stripes, viewed from the front-left with its hood open in an indoor showroom, exhibiting sleek black wheels and a muscular stance. +03047.jpg The Dodge Challenger SRT8 2011 in the image features a white body with bold blue racing stripes, viewed from a three-quarter front angle, parked on pavement in front of a striped industrial building, with distinct large wheels and red brake calipers contributing to its sporty appearance. +00469.jpg The image shows a red Dodge Challenger SRT8 2011 viewed from the side with its hood open, set against an indoor car show environment with visible overhead lighting and other vehicles in the background, highlighting its sporty design and alloy wheels. +06086.jpg A bright orange Dodge Challenger SRT8 2011 with a black hood stripe is captured in a side angle on a racetrack, set against a backdrop of rolling greenery and distant urban structures. +02719.jpg The Dodge Challenger SRT8 2011 is shown in a front three-quarter view, featuring a white body with dual blue racing stripes, set against an urban background, and highlighted by five-spoke alloy wheels and a distinct front fascia with round headlights. +03902.jpg The Dodge Challenger SRT8 2011 features a vivid blue exterior with dual white racing stripes, viewed from the front-left three-quarter angle in a parking lot, highlighted by its signature aggressive grille and hood scoop, with a tree and clear sky in the background. +02281.jpg The low-resolution image shows a frontal view of a white Dodge Challenger SRT8 2011 with bold blue racing stripes, parked on a paved surface against a blurred green vegetation backdrop, featuring distinctive round headlights and an aggressive hood with dual scoop vents. +03395.jpg The image showcases a vibrant blue Dodge Challenger SRT8 2011 with bold white racing stripes viewed from a low front angle, featuring a muscular stance, prominent grille, and five-spoke wheels against an urban industrial background of concrete and brick. +07898.jpg The 2011 Dodge Challenger SRT8 in the image is a white car with dual blue racing stripes running down the center, viewed from the rear in a parking lot surrounded by other vehicles, featuring a distinct quad exhaust and prominent taillights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Charger_SRT-8_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Charger_SRT-8_2009_descriptions.txt new file mode 100644 index 0000000..9efc3e3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Charger_SRT-8_2009_descriptions.txt @@ -0,0 +1,20 @@ +06903.jpg The red Dodge Charger SRT-8 2009 is viewed from the front-left angle, featuring prominent chrome wheels and a distinctive crosshair grille, set against a lush park-like background with grass and trees. +07488.jpg The Dodge Charger SRT-8 2009 in the image is viewed from a front-left angle, displaying a sleek dark gray color with a reflective finish, set against a backdrop of industrial concrete and metal structures, featuring wide silver-spoke wheels and a distinctive hood scoop. +04522.jpg The Dodge Charger SRT-8 2009 in the image is a silver vehicle with a sleek, aerodynamic body, visible from a three-quarter front view, set in an indoor car showroom with other vehicles and a smooth carpeted floor, distinguished by its prominent hood scoop and large alloy wheels. +07105.jpg A bright red Dodge Charger SRT-8 2009 is viewed from the front, parked on a city street with distinctive dual hood scoops and a prominent black grille against a backdrop of urban buildings and parked cars. +04046.jpg The Dodge Charger SRT-8 2009 is shown in vibrant orange with a bold black stripe and Super Bee logo, viewed from the rear and side in a showroom setting, featuring a prominent spoiler and distinct taillights. +05056.jpg The Dodge Charger SRT-8 2009 is viewed from a front-side angle, showcasing its silver body with a glossy black hood and roof, black alloy wheels, red brake calipers, and set against a sunny outdoor environment with trees and mountains in the background. +00038.jpg The image shows a black Dodge Charger SRT-8 2009 with a glossy finish, viewed from the front-left angle, showcasing its aggressive grille, sporty hood scoops, red brake calipers, and chrome wheels, against a backdrop of a modern showroom with large windows. +03096.jpg The Dodge Charger SRT-8 2009 in the image is a vibrant metallic red with a glossy finish, viewed from a front-side angle, showcasing its distinctive hood scoop and SRT badging, set against an indoor showroom backdrop with a crowd and ambient lighting. +04914.jpg The Dodge Charger SRT-8 2009 in the image is a vibrant red with a glossy finish, viewed from a front three-quarter angle, displaying its muscular hood scoop and aggressive front bumper against a plain gradient background. +05765.jpg The 2009 Dodge Charger SRT-8 in the image is a metallic blue sedan with bright silver wheels, viewed from the front-right three-quarter angle, parked on an asphalt surface against a weathered white-and-gray barn backdrop and featuring prominent red brake calipers and a subtle hood scoop. +05201.jpg The Dodge Charger SRT-8 2009 in the image is a vibrant red color with a glossy finish, viewed from the front-left angle showing its signature hood scoop and aggressive styling, parked in a commercial lot with a building in the background, and is complemented by large multi-spoke alloy wheels. +07555.jpg The Dodge Charger SRT-8 2009 displayed is a vibrant red with a glossy finish, viewed from a front three-quarter angle in a garage setting, featuring large multi-spoke black and silver wheels and distinctive air vents on the hood. +07107.jpg The 2009 Dodge Charger SRT-8 appears in a vibrant blue with a black hood stripe, viewed from a front-left angle on a patterned brick driveway, featuring its distinctive wide stance, hood scoop, and sporty alloy wheels, set against a residential hedge-lined background. +05301.jpg The Dodge Charger SRT-8 2009 is a vivid blue vehicle with a glossy texture, viewed from a front-left angle under a carport beside a service reception sign, featuring distinctive dual hood scoops and prominent SRT badging. +04092.jpg The Dodge Charger SRT-8 2009 is a bright orange car with a prominent black hood scoop, viewed from the front with a focus on its aggressive grille and flanked by twin headlamps, set against a background of an urban parking lot with other vehicles. +03807.jpg The Dodge Charger SRT-8 2009 is viewed from a rear three-quarter angle, showcasing its glossy red exterior with chrome accents, distinctive rear spoiler, and the car is set against a background of large, industrial metal beams and greenery. +01377.jpg A bright orange Dodge Charger SRT-8 2009 with a glossy texture is viewed from a front three-quarter angle, parked in a sunlit open lot with industrial buildings in the background, featuring black racing stripes and distinctive dual exhaust pipes. +07624.jpg The Dodge Charger SRT-8 2009 in the image is a sleek black sedan with a glossy finish, captured in a dynamic three-quarter front view with motion blur suggesting speed, set against a blurred road background, featuring prominent hood scoops and distinctive five-spoke alloy wheels. +04352.jpg The Dodge Charger SRT-8 2009 appears in a metallic silver color with a glossy texture, captured from a front view emphasizing its signature crosshair grille and hood scoop, set against a suburban street with houses and barren trees in the background. +02371.jpg A bright orange Dodge Charger SRT-8 2009 is parked on a cobblestone street in a slightly low-angle side view, with black racing stripes and a bridge structure in the background against an overcast sky. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Charger_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Charger_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..7e134d7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Charger_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +03592.jpg The Dodge Charger Sedan 2012 is a vibrant red car with a glossy texture, viewed from a front three-quarter angle in a rugged, desert-like environment, featuring a distinctive black grille and sporty, multi-spoke wheels. +07012.jpg A vibrant red Dodge Charger Sedan 2012 is shown from a low front-left angle, highlighting its black grille, sporty five-spoke wheels, sleek hood scoop, and surrounded by the modern interior ambiance of an auto show with bright overhead lights. +07912.jpg A silver Dodge Charger Sedan 2012 is viewed from the rear three-quarter angle, parked in a showroom with red flooring, featuring distinct rear LED taillights and dual exhausts. +02472.jpg A red Dodge Charger Sedan 2012 with a glossy finish is shown from a low-angle front-side view against a sunset on an empty, open terrain, highlighting its distinctive black grille and sharp headlights. +07832.jpg The Dodge Charger Sedan 2012 in the image is a silver car with a metallic finish, viewed from a three-quarter front angle, set against a background of lush green trees, featuring distinctive black and silver alloy wheels with red brake calipers, and the iconic Dodge crosshair grille. +01709.jpg The Dodge Charger Sedan 2012 is a glossy black sedan with a front-view perspective, showcased on a red-painted lot with a corrugated metal fence in the background, featuring its characteristic crosshair grille and hood scoops. +03397.jpg A white Dodge Charger Sedan 2012 is viewed from the front-left angle against a plain, two-tone gray background, showcasing its distinct crosshair grille and five-spoke alloy wheels. +03610.jpg The front view of the bright red Dodge Charger Sedan 2012 highlights its glossy finish, distinctive dual headlights with black grille, and "R/T" emblem, set against a blurred indoor garage backdrop. +03745.jpg The silver Dodge Charger Sedan 2012 is viewed from a rear three-quarter angle, showcasing its sporty rear spoiler and distinct taillights against a vast, dry desert landscape under a clear blue sky. +05815.jpg The Dodge Charger Sedan 2012 is a bright yellow vehicle with a glossy finish and black racing stripes, viewed from a rear-side angle on a racetrack, featuring distinctive black rims, dual exhausts, and a prominent black spoiler against a clear blue sky backdrop. +04211.jpg The image shows a red Dodge Charger Sedan 2012 viewed from the rear left, featuring a glossy paint texture, distinctive rear light shape, and set against a sunlit urban background with white columns and parked cars. +04878.jpg A vibrant red 2012 Dodge Charger Sedan is shown from a low front view, with a black grille and distinctive dual LED headlights, set against a desert mountain background under a partly cloudy sky. +01461.jpg The Dodge Charger Sedan 2012 appears in a glossy red finish with visible rear tail lights and dual exhausts, viewed from a rear three-quarter angle in a suburban driveway setting, exhibiting its prominent muscular rear fenders and sporty design cues. +01721.jpg The red Dodge Charger Sedan 2012 is viewed from a front-side angle, featuring a shiny, wet texture under overcast skies, parked on a wet asphalt surface with a white pickup truck and greenery in the background, highlighting its bold front grille and distinctive hood lines. +04283.jpg The image shows a red Dodge Charger Sedan 2012 with a slightly worn, snowy texture, viewed from the rear-left angle on a snowy road surrounded by bare trees, featuring distinctive rear light patterns and dual exhausts. +04541.jpg The 2012 Dodge Charger Sedan appears in a metallic gray finish with a sleek texture, viewed from the front-left three-quarter perspective, parked on a red pavement in a dealership lot, showcasing its distinctive crosshair grille and aggressive headlight design. +04776.jpg A vibrant red Dodge Charger Sedan 2012 with a glossy finish is captured from a front-side angle, set against a rugged desert landscape with mountainous terrain, showcasing its signature crosshair grille and sporty alloy wheels. +01527.jpg The Dodge Charger Sedan 2012 appears in a sleek silver color with a metallic texture, viewed from a front three-quarter angle, displaying its distinctive dual grille and sporty alloy wheels, set in an indoor showroom environment with other cars in the background. +02078.jpg The Dodge Charger Sedan 2012 is a sleek black vehicle with a glossy finish, viewed from a rear three-quarter angle, showcasing its distinctive racetrack taillights and dual exhaust against an overcast highway setting. +05123.jpg The black 2012 Dodge Charger Sedan is presented in a three-quarter front view with wet pavement reflecting the vehicle, highlighting its bold grille, prominent hood scoops, and distinctive 'R/T' emblem, against a backdrop of a brick building. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Dakota_Club_Cab_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Dakota_Club_Cab_2007_descriptions.txt new file mode 100644 index 0000000..349178d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Dakota_Club_Cab_2007_descriptions.txt @@ -0,0 +1,20 @@ +03295.jpg The image shows a silver Dodge Dakota Club Cab 2007 with a smooth metallic finish, viewed from a front-side angle in a parking lot with industrial buildings and a paved surface in the background, featuring a distinct grille and compact, rounded headlights. +01414.jpg The Dodge Dakota Club Cab 2007 appears in a bright red color with a glossy texture, viewed from a front three-quarter angle, set against a car dealership backdrop with an American flag on its antenna; it features a distinctive chrome grille and rounded wheel arches. +03851.jpg A vibrant red Dodge Dakota Club Cab 2007 with a smooth texture is viewed from a rear three-quarter angle on a sloped, gray surface against a plain, pale sky background, featuring a distinctive curved tail light and "Dodge" lettering on the tailgate. +07539.jpg The Dodge Dakota Club Cab 2007 is a vibrant red pickup with a reflective chrome grille, viewed from a front three-quarter angle, against a backdrop of lush greenery and a clear sky, highlighting its bold and sturdy design. +00003.jpg The Dodge Dakota Club Cab 2007 is a red truck with a slightly metallic texture, viewed from the front-left angle in a gravel parking area surrounded by sparse trees and a field, featuring distinctive silver rims and a prominent front grille. +01452.jpg The Dodge Dakota Club Cab 2007 is a glossy black pickup truck, viewed from a front-side angle, parked on asphalt with a beige brick building and dark green awning in the background, featuring chrome wheels and a distinctive crosshair grille. +01835.jpg The Dodge Dakota Club Cab 2007 is presented in a metallic gray color, with a front-right angled viewpoint showcasing its robust grille and extended cab, parked on a spacious lot surrounded by distant snowy mountains and clear skies. +00628.jpg The Dodge Dakota Club Cab 2007 appears in a white color with a smooth texture, viewed from a front angle displaying its chrome grille and headlights, parked in a lot surrounded by other vehicles, with its angular fender flares and large side mirrors as distinguishing features. +00287.jpg The Dodge Dakota Club Cab 2007 appears in a light metallic gray color with a smooth texture, viewed from a side angle in a damp urban environment with concrete walls and other parked cars, showcasing its extended cab and five-spoke alloy wheels as distinctive features. +02455.jpg The Dodge Dakota Club Cab 2007 is viewed from the front-left angle, showcasing its glossy blue body with smooth texture, prominent chrome grille, and silver alloy wheels, set against a bright sky and white building background. +04026.jpg A black Dodge Dakota Club Cab 2007 with a glossy texture is viewed from a front three-quarter perspective, set against a background featuring a green wire fence and a concrete parking area, showcasing its distinctive chrome grille and angular headlights. +07818.jpg The Dodge Dakota Club Cab 2007 is a vibrant red pickup truck with a sleek, glossy finish, viewed from a front-left angle against a neutral gray background, featuring a black bed cover and distinct chrome grille with horizontal bars. +00879.jpg The image shows a red Dodge Dakota Club Cab 2007 viewed from the side, highlighting its extended cab and truck bed against a dark, neutral background, with silver alloy wheels and a noticeable "4x4" emblem on the rear side. +00884.jpg A red Dodge Dakota Club Cab 2007 is shown in a three-quarter front view in a car dealership lot, featuring shiny chrome wheels and set against a blurred backdrop of trees, cars, and a "Car World" sign. +00774.jpg The Dodge Dakota Club Cab 2007 is a white pickup truck with a smooth texture, shown in a side profile in a parking lot under a clear sky with a few trees and buildings in the background, featuring its extended cab and silver alloy wheels. +06359.jpg The Dodge Dakota Club Cab 2007 is gray with a smooth, wet texture, viewed from a front three-quarter angle, parked in a wet asphalt lot with commercial buildings in the background, and features a prominent front grille and circular headlights. +05826.jpg The Dodge Dakota Club Cab 2007 is presented in a bright orange color with a smooth texture, viewed from a front three-quarter angle, set against a mountainous background with evergreen trees, featuring a prominent grille and sleek, rounded body lines. +00051.jpg The Dodge Dakota Club Cab 2007 is shown in a vibrant red color with a smooth texture, viewed from the front-left angle in a dealership parking area with a blue and white building in the background, and features distinguishable elements like its extended cab and silver alloy wheels. +04340.jpg A grey Dodge Dakota Club Cab 2007 with a smooth texture is seen from a front diagonal viewpoint, parked on a paved surface with a plain white building in the background. +01044.jpg The Dodge Dakota Club Cab 2007 in the image is a silver truck with a textured black grille, viewed from the front left, set indoors against a stone and beige wall, featuring distinct chrome wheels and signature headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Dakota_Crew_Cab_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Dakota_Crew_Cab_2010_descriptions.txt new file mode 100644 index 0000000..fc71db9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Dakota_Crew_Cab_2010_descriptions.txt @@ -0,0 +1,20 @@ +08090.jpg The low-resolution image shows a red Dodge Dakota Crew Cab 2010 with a smooth, glossy texture, captured from a front-side angle in a car dealership lot, featuring distinctive chrome grille and alloy wheels with a background of a stone facade building labeled "Stanley Ford." +06564.jpg The Dodge Dakota Crew Cab 2010 is a deep red, slightly glossy truck seen from a low front three-quarter viewpoint, featuring a bold chrome grille with a prominent metallic brush guard, set against a cloudy sky and urban roadway environment. +02622.jpg The Dodge Dakota Crew Cab 2010 appears in a sleek metallic gray color with a front-facing view, prominently revealing its characteristic grille and rounded headlights, set against a car dealership backdrop with other vehicles visible. +00682.jpg The Dodge Dakota Crew Cab 2010 is a silver truck with a smooth texture, seen from a front-side angle in a parking lot environment, featuring prominent front grille and wide tires. +04420.jpg The Dodge Dakota Crew Cab 2010 is a bright red pickup truck viewed from a front-side angle, showcasing a sleek body with a prominent grille and smooth metallic finish, parked on a dealership lot with other vehicles and signs in the background. +05046.jpg The Dodge Dakota Crew Cab 2010 appears in a glossy red color with chrome accents, viewed from a side angle in a parking lot environment, showcasing its crew cab with four doors and shiny alloy wheels. +07260.jpg The Dodge Dakota Crew Cab 2010 in the image is a vibrant red vehicle viewed from the front with a clean, shiny surface, positioned in a parking lot in front of a building with wide glass windows and a hanging banner above featuring car images. +04888.jpg The Dodge Dakota Crew Cab 2010 in the image appears in glossy black with chrome details, viewed from a slightly elevated front angle, parked in a dealership lot with pavement underfoot, featuring distinct rectangular headlamps and silver alloy wheels. +05989.jpg The Dodge Dakota Crew Cab 2010 in the image is black with a shiny, reflective texture, viewed from a front three-quarter angle in a dealership lot with other cars in the background, featuring a distinctive front grille and silver alloy wheels. +07552.jpg The Dodge Dakota Crew Cab 2010 in the image is a metallic red pickup with a glossy finish, viewed from an elevated front-right angle against a plain, dark background, featuring a distinct chrome grille and alloy wheels. +07556.jpg The 2010 Dodge Dakota Crew Cab is shown in a metallic blue color with a slightly glossy texture, viewed from the front-left angle in a car dealership lot, featuring a prominent chrome grille and alloy wheels, with a showroom building in the background. +01837.jpg The Dodge Dakota Crew Cab 2010 is seen from a front three-quarter view, showcasing a red color with a smooth finish, navigating a curved road in a sparse, grassy, and wooded environment, with visible distinct features including chrome accents and a robust grille design. +01212.jpg The Dodge Dakota Crew Cab 2010 is shown in a side-front angle against a plain grey background, featuring a glossy red exterior with chrome accents and prominent wheel arches, along with visible "4x4" insignia near the rear. +07660.jpg The Dodge Dakota Crew Cab 2010, in a glossy black color with prominent front grilles and chrome accents, is viewed from a front-side angle on a pavement, set against a verdant forest backdrop with an American flag visible on the antenna. +03984.jpg The Dodge Dakota Crew Cab 2010 is shown from a front-side angle, exhibiting a gray metallic color with a smooth texture, set against a rural backdrop with a muddy ground and overcast sky, highlighting its robust body style and distinctive front grille. +03420.jpg The Dodge Dakota Crew Cab 2010 in the image is a vibrant blue with a metallic finish, viewed from a front three-quarter angle on a rural road, featuring a distinctive crosshair grille, prominent fender flares, and a wooded background. +01137.jpg The Dodge Dakota Crew Cab 2010 is seen from a front-side angle in a striking metallic blue, boasting a bold grille and distinctive headlamp design, with a background of lush greenery and a winding road. +04157.jpg The low-resolution image shows a silver Dodge Dakota Crew Cab 2010 with a smooth texture, captured from a front three-quarter angle amidst a background of parked vehicles on a gravel surface, highlighting its prominent grille and robust stance. +00483.jpg A beige Dodge Dakota Crew Cab 2010 is seen from a front three-quarter view in a simple indoor setting, featuring a prominent chrome grille and rounded wheel arches. +02012.jpg A red Dodge Dakota Crew Cab 2010 is shown from a front three-quarter perspective driving on a snow-covered road, with notable features including distinctive chrome accents on the grille and rims, and a wintry, leafless forest background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Durango_SUV_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Durango_SUV_2007_descriptions.txt new file mode 100644 index 0000000..9c5ecc8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Durango_SUV_2007_descriptions.txt @@ -0,0 +1,20 @@ +00705.jpg A gold Dodge Durango SUV 2007 is photographed from a front three-quarter angle in a showroom environment, featuring shiny chrome wheels, distinctive crosshair grille, and a slightly reflective metallic finish on its body. +02935.jpg The Dodge Durango SUV 2007 is a metallic gray vehicle with a slightly glossy texture, viewed from a front three-quarter angle in a parking lot, with distinct chrome grille accents and five-spoke alloy wheels, set against a backdrop of a beige building and palm trees. +00915.jpg The Dodge Durango SUV 2007 is a gray vehicle with a matte texture, viewed from the side parked on a road in front of a brick fire station, and features black wheels with a visible roof rack. +08091.jpg The Dodge Durango SUV 2007 is a silver vehicle with a smooth texture, captured from a front-side angle, parked on a snowy surface with a backdrop of leafless trees and its distinct features include a prominent grille and snow-lined tires. +03444.jpg A black Dodge Durango SUV 2007 with a glossy finish is captured in a dynamic front-side angle, set against a blurred urban backdrop, highlighting its bold grille and pronounced wheel arches. +05851.jpg The 2007 Dodge Durango SUV appears in a dark gray color with a glossy texture, viewed from a front three-quarter perspective, parked on a brick driveway with a wooden fence background, showcasing its prominent chrome grille and rounded front bumper. +01260.jpg A black Dodge Durango SUV 2007 with a glossy finish is seen in a front-side view parked on a paved area, against a backdrop of bare trees and a partly cloudy sky reflected in a body of water. +07855.jpg A dark gray Dodge Durango SUV 2007 is captured in motion from a low front-side angle with blurred wheels, against a road backdrop blending into a green hilly landscape and cloudy sky, highlighting its robust grille and rounded headlights. +04784.jpg The Dodge Durango SUV 2007 is shown in a side-rear view with a smooth white exterior, black window tint, distinct red circular taillights, on a wet pavement against a blurred stone wall and cloudy sky backdrop. +01701.jpg The Dodge Durango SUV 2007 is shown from a front three-quarter view, featuring a light silver color, a distinct crosshair grille, and set in a car dealership environment with other vehicles nearby and a building in the background. +00754.jpg The Dodge Durango SUV 2007 appears in a dark blue color with a smooth texture, viewed from the front with a prominent chrome grille, set against a dealership environment with other vehicles and service center signage in the background. +03110.jpg The image shows a white Dodge Durango SUV 2007 from a front-side angle, parked on wet pavement in a car lot with other vehicles and a Dairy Queen sign in the blurred background, featuring a distinct crosshair grille and roof rack. +04835.jpg The 2007 Dodge Durango SUV is a metallic gray vehicle prominently viewed from a front three-quarter angle, highlighting its chrome grille and headlights, set against a dealership backdrop with other cars and poles visible; its smooth paint contrasts with the textured black side mirrors and roof rails. +01532.jpg The black Dodge Durango SUV 2007 is shown from a front three-quarter angle in a plain indoor environment with glossy paint reflecting the overhead lights and features such as a prominent chrome grille and five-spoke alloy wheels. +03105.jpg The Dodge Durango SUV 2007 appears in a metallic red hue with a slightly glossy texture, viewed from a rear-side angle on a suburban street with brick houses and a driveway in the background, featuring distinctive dark-tinted windows and a chrome strip on the tailgate. +05253.jpg The Dodge Durango SUV 2007 is depicted in a vibrant red color with a shiny finish, seen from a front view showing its distinct chrome grille and headlight design, set against a paved driveway bordered by a beige building and greenery. +04890.jpg The Dodge Durango SUV 2007 appears in a glossy black finish with chrome accents, viewed from a front three-quarter angle, positioned in a showroom setting, featuring a distinctive crosshair grille and rounded headlights. +03017.jpg The Dodge Durango SUV 2007, viewed from a front three-quarter angle, is a silver vehicle with a smooth metallic finish, featuring a prominent front grille and distinctive round headlights, set in a parking lot environment with other cars and a dealership sign in the background. +00951.jpg The Dodge Durango SUV 2007 is black with a glossy texture, viewed from the rear showing red taillights and a chrome trim, situated in a parking lot with another vehicle and a building in the background. +07644.jpg The Dodge Durango SUV 2007 is a metallic blue vehicle with a smooth, shiny finish, captured from a front three-quarter viewpoint in a parking lot with a modern building in the background and featuring prominent chrome accents on its grille and wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Durango_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Durango_SUV_2012_descriptions.txt new file mode 100644 index 0000000..2e7ff0d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Durango_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +05847.jpg The Dodge Durango SUV 2012 is seen from a front-left angle, displaying its dark maroon color with a glossy texture, showing chrome accents and distinctive five-spoke alloy wheels, parked in a car lot under bright daylight with multiple vehicles in the background. +03228.jpg The 2012 Dodge Durango SUV is depicted from a front three-quarter view in a glossy midnight blue color, featuring a chrome crosshair grille and distinctive headlamp design, set against an indoor showroom environment with reflective tile flooring. +07762.jpg The Dodge Durango SUV 2012 is a white vehicle with a glossy texture, viewed head-on showing its distinctive crosshair grille, set in a dealership lot with other cars in the background. +01295.jpg The Dodge Durango SUV 2012 appears in glossy black with a side profile view, parked in a dealership lot, surrounded by other vehicles and trees in the background, showcasing its distinctive roof rack and chrome-accented grille. +04700.jpg The Dodge Durango SUV 2012 appears in a sleek metallic gray, captured in a dynamic side-front angle with motion blur suggesting speed, set against a blurred natural backdrop, featuring its distinctive crosshair grille and chrome accents. +07615.jpg The Dodge Durango SUV 2012 appears in a metallic silver color with a glossy finish, viewed from the front left angle in a sunny outdoor setting featuring trees and gravel, showcasing its distinctive crosshair grille and large chrome wheels. +03601.jpg The low-resolution image shows a dark gray Dodge Durango SUV from a front-side angle, highlighting its prominent chrome grille and linear headlights, set against a dealership lot with the building in the background. +03920.jpg A glossy black Dodge Durango SUV 2012 is parked on a sunlit driveway, viewed from a front-left angle, with distinct chrome grille accents and reflecting nearby houses and fencing in its sleek finish. +02291.jpg A beige Dodge Durango SUV viewed from the front-right angle, with chrome accents on the grille, parked on a paved ground in front of a commercial building displaying various automotive logos. +05103.jpg The Dodge Durango SUV 2012 is captured in a showroom setting, viewed from the front angle, featuring a metallic gray color and a distinctive chrome grille, with shiny alloy wheels and a polished surface reflecting the overhead lights. +05227.jpg The SUV, in a metallic silver color with smooth texture, is viewed from a rear three-quarter angle, set against a backdrop of mountains and trees, featuring distinct chrome wheels and a prominent rear bumper. +07332.jpg A red and white Dodge Durango SUV 2012, viewed from an angle showcasing the front and side, features emergency lights on the roof and fire and rescue graphics, set against a dimly lit urban background. +07248.jpg A silver Dodge Durango SUV from 2012 is parked on a city street, viewed from the front-left angle, featuring a chrome grille and polished alloy wheels, with urban buildings and a car dealership in the background. +00284.jpg The Dodge Durango SUV 2012 is shown from a front three-quarter view with a glossy red finish, parked indoors on a red carpet, featuring prominent headlights, a bold grille, and alloy wheels against a backdrop of large windows displaying an overcast outdoor scene. +06461.jpg The Dodge Durango SUV 2012 in the image is a silver vehicle with a shiny chrome grille, viewed from the front-left angle, parked on a gravel lot with other vehicles and bare trees in the background, featuring prominent, reflective alloy wheels and a streamlined design. +03897.jpg The Dodge Durango SUV 2012 appears in a silver metallic color with a smooth texture, viewed from a front-side angle showcasing its bold grille and large chrome wheels, set against a natural background of green foliage and a gravel surface. +00072.jpg The Dodge Durango SUV 2012 is depicted in a vibrant red color with a glossy finish, viewed from a front-side angle emphasizing its distinctive chrome grille and five-spoke alloy wheels, set against a snowy foreground and a backdrop of blue garage door panels under a gray sky. +01242.jpg The Dodge Durango SUV 2012 appears in a glossy black finish with chrome detailing, viewed from a front-side angle, parked on a dealership lot with a building and RAM signage in the background, featuring distinctive rims and a prominent front grille. +00321.jpg The Dodge Durango SUV 2012 is a black vehicle with a glossy finish, viewed from the front-left angle, featuring a distinctive chrome grille and reflective alloy wheels, set against a plain, bright building in the background. +04102.jpg The Dodge Durango SUV 2012 is seen from a front-side angle, showcasing its glossy black exterior with chrome accents and large alloy wheels, parked on a concrete lot surrounded by trees and other vehicles, with distinct rounded front headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Journey_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Journey_SUV_2012_descriptions.txt new file mode 100644 index 0000000..dedb5da --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Journey_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +06460.jpg The Dodge Journey SUV 2012 is displayed from a frontal viewpoint with a silver metallic color and a smooth texture, against an indoor showroom environment featuring ceiling lights and a reflective floor, showcasing its distinctive crosshair grille and integrated fog lights. +06803.jpg The Dodge Journey SUV 2012 is shown in a vibrant red color with a sleek, glossy finish, viewed directly from the front highlighting its cross-hair grille and chrome accents, set against an indoor car show environment with showroom lighting that reflects off the surface. +07249.jpg The low-resolution image shows a red Dodge Journey SUV 2012 with a shiny, smooth texture viewed from the front three-quarter angle, parked in a car dealership lot with other vehicles in the background, and it features distinctive chrome accents on the grille and large alloy wheels. +04919.jpg The bright red Dodge Journey SUV 2012, viewed from the front-left with gleaming chrome accents and distinct cross-shaped grille, is parked on a sunny lot surrounded by other vehicles and trees in the background. +07947.jpg The red Dodge Journey SUV 2012 is viewed from the front-left angle, parked on a paved surface beside a white building, featuring a distinct crosshair grille and silver alloy wheels. +00463.jpg The image shows a black Dodge Journey SUV from a front three-quarter view, featuring a smooth glossy texture with a reflection of the surrounding dealership lot, highlighted by a partially visible building and other parked vehicles, along with a noticeable green and yellow sign on the windshield. +05716.jpg The Dodge Journey SUV 2012 appears in a metallic silver color with a slightly glossy texture, viewed from a front-left angle in a car lot environment, featuring distinctive crosshair grille and roof rails, with other vehicles and bare trees in the background. +06187.jpg The red Dodge Journey SUV 2012 is viewed from a front-side angle with a smooth, glossy finish, parked on a cobblestone surface outside a yellow brick wall with barbed wire, featuring silver alloy wheels and distinctively large, clear headlights. +05784.jpg The silver Dodge Journey SUV 2012 is captured in a side-front dynamic pose on a highway with a blurred landscape background, featuring prominent roof rails, a bold front grille, and distinctive alloy wheels. +01259.jpg The Dodge Journey SUV 2012 appears in a silver metallic color with a shiny texture, captured from a three-quarter front view, set in a car lot environment with other vehicles visible; its distinctive features include a crosshair grille and chrome-accented wheels. +00585.jpg The front view of the red Dodge Journey SUV 2012 features a sleek metallic finish with a prominent chrome grille and headlights, set against an urban backdrop of industrial buildings and clear blue sky. +07297.jpg The silver Dodge Journey SUV 2012 is viewed in three-quarter front perspective, parked on a concrete surface with trees and a building in the background, featuring a prominent front grille and alloy wheels. +07020.jpg The Dodge Journey SUV 2012 is shown in a vibrant red color with a glossy texture, viewed from a front three-quarter angle, set against an urban backdrop with modern buildings, featuring distinctive crosshair grille and chrome-accented fog lights. +02100.jpg The Dodge Journey SUV 2012 is dark gray with a glossy finish, viewed from a front-side angle in an indoor showroom environment, featuring alloy wheels and roof rails. +02638.jpg A glossy black Dodge Journey SUV 2012 is shown in three-quarter front view inside a showroom with white walls and blue accents, featuring distinct silver alloy wheels and signature crosshair grille. +00618.jpg The Dodge Journey SUV 2012 is a silver vehicle with a smooth texture, shown in a side profile against a backdrop of a car dealership with visible logos, featuring distinctive alloy wheels and dark-tinted windows. +05566.jpg The 2012 Dodge Journey SUV is shown in a clean white color with a smooth texture, positioned in a side view on a sunny dealership lot, featuring alloy wheels and a spacious, family-friendly design. +03630.jpg The Dodge Journey SUV 2012 is captured in side view on a curved road with a blurred green background, featuring a dark red color, a glossy texture, and distinct silver alloy wheels with roof rails. +03187.jpg A silver Dodge Journey SUV 2012 is viewed from the front against a tropical dealership backdrop with palm trees and rows of vehicles, featuring a prominent black grille and chrome accents. +03837.jpg The 2012 Dodge Journey SUV is seen from a front three-quarter angle, showcasing its glossy black finish and signature crosshair grille, set against a dealership lot with other parked vehicles and a clear sky. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Magnum_Wagon_2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Magnum_Wagon_2008_descriptions.txt new file mode 100644 index 0000000..059cc81 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Magnum_Wagon_2008_descriptions.txt @@ -0,0 +1,20 @@ +01082.jpg A front-facing, low-resolution image of a metallic gray Dodge Magnum Wagon 2008 shows its distinctive crosshair grille and headlights, set against a plain gray background. +06996.jpg The Dodge Magnum Wagon 2008 appears in a dark blue color with a glossy texture, viewed from a front three-quarter angle in a car dealership lot, highlighted by its distinctive crosshair grille and silver alloy wheels against a backdrop of parked cars and power lines. +07182.jpg The 2008 Dodge Magnum Wagon is shown in a low-resolution image with a metallic silver exterior, captured from a slightly elevated side view in a parking lot, with its elongated body, distinctive wagon silhouette, and alloy wheels clearly visible against a muted urban setting. +03073.jpg The Dodge Magnum Wagon 2008 in the image is dark gray with shiny chrome wheels, viewed from the front-right in a parking lot with sparse trees and buildings in the background, highlighting its elongated body and distinctively tapered rear end. +06334.jpg The Dodge Magnum Wagon 2008 in the image appears in a metallic gray color with a smooth texture, viewed from the front angle parked on a concrete path beside a building with reflective windows, featuring distinctive rectangular headlights and a prominent grille. +06121.jpg The image shows a bright red Dodge Magnum Wagon 2008 with a smooth texture, viewed from the left side in a residential street with lush green grass and trees in the background, featuring prominent chrome wheels and a distinct sloping roofline. +07869.jpg A silver Dodge Magnum Wagon 2008 is viewed from the side on a paved lot with bright sunlight reflecting off its glossy paint, showcasing its distinct elongated shape and chrome wheels, against a backdrop of other parked cars and a beige building. +04616.jpg The Dodge Magnum Wagon 2008 in the image is a silver vehicle with a smooth finish, viewed from the front-left angle in an indoor showroom setting with a shiny wooden floor, featuring a prominent chrome crosshair grille and integrated fog lights. +01371.jpg A red Dodge Magnum Wagon 2008 with a glossy finish is viewed from the rear three-quarter angle, parked on a concrete driveway in a suburban area with a clear blue sky, showcasing its signature sloping roofline and chrome wheels. +07242.jpg The Dodge Magnum Wagon 2008 is a red vehicle with a sleek, shiny texture, depicted from a rear three-quarter viewpoint against an industrial corrugated metal wall, showcasing its distinctive sloping roofline and large alloy wheels. +02339.jpg The image shows a white Dodge Magnum Wagon 2008 with a smooth texture, viewed from a front three-quarter angle, parked on a paved surface with a blurred, shrub-lined background, featuring its distinct crosshair grille and five-spoke wheels. +06744.jpg The Dodge Magnum Wagon 2008 in the image is red with a shiny texture, viewed from a low front-side angle against a clear blue sky, featuring distinctive large chrome rims and a bold grille design. +05978.jpg The Dodge Magnum Wagon 2008 appears in a glossy white finish with visible chrome detailing on its front grille, shown from a three-quarter front view, set against a backdrop of a red-roofed building and car dealership signage, highlighting its elongated body and distinctively styled headlights and wheels. +06735.jpg The image depicts a side-view of a bright red 2008 Dodge Magnum Wagon with a glossy finish, featuring large silver rims, visible red brake calipers, and dark-tinted windows, set against a garage environment with gray and white walls and a partially open garage door. +06828.jpg The Dodge Magnum Wagon 2008 appears bright red with a smooth, shiny texture, viewed from the side highlighting its elongated body, large chrome wheels, and distinctive rear hatch, set against a snowy, overcast environment with trees and a fence in the background. +00917.jpg A silver Dodge Magnum Wagon 2008 is viewed from a front-side angle, parked on a paved surface, with distinctive crosshair grille and prominent wheel arches, set against a background featuring the Golden Gate Bridge. +07804.jpg The image shows a bright red Dodge Magnum Wagon 2008 with a smooth texture, viewed from the front and slightly to the side, parked on a concrete lot in front of a building with signage related to car sales, emphasizing its bold grille and sleek, sporty design. +03387.jpg The Dodge Magnum Wagon 2008 in the image is a matte dark gray color with black wheels, viewed in a side profile from the rear passenger side, parked on a wet pavement beside a corner building with a background featuring utility vehicles and lush greenery under an overcast sky. +00470.jpg The Dodge Magnum Wagon 2008 in the image is a bright red vehicle viewed from a three-quarter front angle, showcasing its distinctive, sleek and muscular body with a bold front grille and integrated headlights, set against a showroom-like background with smooth reflective flooring and red walls. +05142.jpg The Dodge Magnum Wagon 2008 is painted white with a smooth texture, featuring Ghostbusters-themed decals and equipment on the roof, viewed from a side angle in a parking lot with tents and other vehicles in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Ram_Pickup_3500_Crew_Cab_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Ram_Pickup_3500_Crew_Cab_2010_descriptions.txt new file mode 100644 index 0000000..4251c00 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Ram_Pickup_3500_Crew_Cab_2010_descriptions.txt @@ -0,0 +1,20 @@ +00495.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is viewed from the front, featuring a shiny black and chrome exterior with a prominent grille, set against the backdrop of a spacious parking lot with industrial buildings. +02518.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is black with a glossy texture, viewed from the front right angle in a parking lot with surrounding vehicles, featuring a prominent chrome grille and side mirrors. +06156.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 appears in a glossy red color with chrome accents, viewed from a three-quarter front angle in an indoor showroom environment, featuring a dual rear-wheel setup and distinctive large grille. +01070.jpg The 2010 Dodge Ram Pickup 3500 Crew Cab, viewed from a front-side angle, features a two-tone color scheme with a gold body and silver accents, a prominent chrome grille, and is set against a clear, blue sky with sparse streetlights in an open parking area. +02893.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is a red truck with a silver lower trim, viewed from a front-side angle, parked in a lot with trees in the background and features a prominent chrome grille. +02599.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is a two-tone black and beige truck with a prominent chrome grille, viewed from a low frontal angle on a wet pavement, featuring large polished wheels and set against a cloudy sky with trees and another vehicle in the background. +02294.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is displayed in a low-angle front three-quarter view, showcasing its metallic beige color with chrome accents in a rugged mountain landscape, highlighting its large grille, robust stance, and off-road tires. +01102.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is shown from a front-side angle in a dark metallic color with chrome accents and distinctive dual rear wheels, set against a parking lot with buildings in the background. +00846.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 in the image is a glossy black truck with chrome accents, viewed from a front-side angle in a parking lot setting, featuring prominent Dodge badging, chrome front grille, and shiny alloy wheels against a dealership backdrop. +01636.jpg The black Dodge Ram Pickup 3500 Crew Cab 2010 is shown from a rear diagonal view in a parking lot, highlighting its distinctive dual rear wheels, chrome exhaust tip, and red tail lights against a backdrop of bare trees and a clear sky. +00149.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is shown in a front-facing view with a metallic silver color, prominent chrome grille, distinctive RAM badge, and a dark neutral studio backdrop highlighting its robust build and quad headlights. +07064.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 appears in a glossy maroon color with a robust chrome front bumper, viewed from a front three-quarter angle in a car dealership lot, distinguished by its large grille and dual rear wheels. +07631.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is shown from a front three-quarter view in a commercial parking lot, featuring a glossy black exterior with a prominent chrome grille and smooth lines, alongside dual rear wheels enhancing its robust stance. +00414.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is a glossy black truck with a prominent chrome grille, viewed from the front three-quarter angle, set against a background of stacked logs. +01345.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is a white, glossy vehicle viewed in profile with large, shiny wheels, set against a backdrop of trees and a gray building. +00693.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is shown in a front three-quarter view, featuring a shiny metallic blue color, a prominent chrome grille, and dually rear wheels, set against a clear blue sky and a dealership backdrop. +00673.jpg This Dodge Ram Pickup 3500 Crew Cab 2010 appears in a striking deep blue color with a glossy texture, viewed head-on against a plain dark background, featuring a prominent chrome grille and large headlamps, enhancing its rugged and robust design. +07101.jpg The black Dodge Ram Pickup 3500 Crew Cab 2010 is viewed from the side with a shiny finish and chrome detailing, parked on a paved lot with a dealership building in the background. +01683.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 in the image is white with a chrome grille, viewed from a front-side angle in a dealership lot, surrounded by greenery and other vehicles, featuring large side mirrors and dual rear wheels. +00542.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is displayed in a metallic gray color with chrome accents, viewed from a front three-quarter angle in an indoor showroom with industrial lighting, featuring a prominent large grille and dual rear wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Ram_Pickup_3500_Quad_Cab_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Ram_Pickup_3500_Quad_Cab_2009_descriptions.txt new file mode 100644 index 0000000..a0616a3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Ram_Pickup_3500_Quad_Cab_2009_descriptions.txt @@ -0,0 +1,20 @@ +06931.jpg The black Dodge Ram Pickup 3500 Quad Cab 2009 is viewed from the side against a backdrop of a rustic red barn, showcasing its chrome accents, dual rear wheels, and prominent grille. +04245.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is shown in a front-side view highlighting its glossy black color, chrome accents, dual rear wheels, and orange roof lights, set against a sunny suburban street with trees in the background. +03305.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is shown from a front-side angle in an overcast outdoor setting, featuring a white exterior with chrome accents on the bumper and wheels, prominent side mirrors, and amber cab lights atop the roof. +01836.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is white with a robust grille guard, seen from a front-side angle on a paved surface, against a backdrop of a tall stone fence and greenery, with distinctive chrome wheels and a black front bumper. +00743.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is a white truck with a chrome grille and prominent side mirrors, viewed from the front-right on a dealership lot with palm trees in the background. +06000.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is shown in a front angled view with a metallic silver color, textured grille, chrome bumper accents, and distinct cab lights on top, set against a plain white background. +00761.jpg The image shows a white Dodge Ram Pickup 3500 Quad Cab 2009 with a shiny, textured chrome grille and bumper, viewed from the front-left three-quarter angle, parked on a dirt ground with a warehouse-like building featuring a triangular roof and a clock in the background. +05240.jpg A white Dodge Ram Pickup 3500 Quad Cab 2009 with a smooth texture is shown in a three-quarter front view, parked on a concrete surface, featuring a chrome grille, large side mirrors, side steps, and visible dual rear wheels with rugged tires, set against a backdrop of low buildings and sparse trees. +01378.jpg A black Dodge Ram Pickup 3500 Quad Cab 2009 is seen from a front-side angle, parked on a dealership lot with palm trees and a showroom building in the background, featuring chrome detailing on the front grille and silver alloy wheels. +03210.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is depicted from a rear-side angle, showcasing its shiny red paint and robust quad cab design, set against a backdrop of a grassy open field with a tree line on the horizon. +00979.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 appears in a glossy black color with a silver grille and chrome accents, seen from a three-quarter front view against a lush green, suburban environment with trees and a house, and features a robust bumper guard and large, rugged tires. +04950.jpg The silver Dodge Ram Pickup 3500 Quad Cab 2009 is shown in profile view with its extended bed and dual rear wheels, set against a rural backdrop of trees and a partially visible camper. +03329.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is seen from a front-side angle in a garage setting, featuring a metallic silver finish with chrome detailing, including a prominent grille and shiny alloy wheels, contrasted against a checkered wall background. +06339.jpg The 2009 Dodge Ram Pickup 3500 Quad Cab appears silver with a glossy finish, viewed from a low angle emphasizing its front grille and quad cab structure, set against a backdrop of modern blue-tinted glass architecture, highlighting its chrome accents and rugged stance. +03551.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 in the image is a metallic red truck with chrome accents, viewed from a front-side angle, parked on a dealership lot with a commercial building and other vehicles in the background, featuring distinct large alloy wheels and a prominent grille. +02547.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is silver with a smooth texture, viewed in profile against a plain white background, featuring a prominent front grille, extended cab, and dual rear wheels. +02512.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is shown in a three-quarter front view with a black body featuring a reflective sheen, prominent front grille, large tires, and situated in a sunny outdoor environment with industrial buildings in the background. +01481.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 in the image is silver with a smooth texture, viewed from a low-front-angle on a suburban street background, featuring a large chrome grille and distinctive quad headlights. +00867.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 in the image is a blue truck with a metallic trim, viewed from the rear three-quarter angle in a parking lot with leafless trees, showcasing its chrome wheels and extended cab. +03550.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is seen from a side profile, showcasing a white exterior with a smooth texture, chrome accents on the wheels, and is positioned in a parking lot with a backdrop featuring a clear sky and utility poles. diff --git a/utils/area/descriptions/Car/generated_descriptions/Dodge_Sprinter_Cargo_Van_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Dodge_Sprinter_Cargo_Van_2009_descriptions.txt new file mode 100644 index 0000000..65d2368 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Dodge_Sprinter_Cargo_Van_2009_descriptions.txt @@ -0,0 +1,20 @@ +06448.jpg The Dodge Sprinter Cargo Van 2009 is viewed from the rear three-quarter angle, displaying its solid white color with minimal texture, contrasting against a verdant, leafy backdrop, with the sliding door open and distinctive rear vertical taillights. +07781.jpg The white Dodge Sprinter Cargo Van 2009 is viewed from the front-right corner, displaying its elongated body and high roof against a background of similar vehicles in a parking area. +02557.jpg The Dodge Sprinter Cargo Van 2009 appears white with a smooth texture, viewed from a front-side angle on a paved surface, with a low building in the background and grass in the foreground. +01040.jpg The Dodge Sprinter Cargo Van 2009 appears in low resolution as a white vehicle with a smooth, streamlined texture, viewed from the front side angle amidst a parking lot, featuring prominent headlight designs and a boxed rear section. +06134.jpg The Dodge Sprinter Cargo Van 2009 appears in a rear-view pose, showcasing a clean white exterior with a smooth texture, surrounded by a plain white background, characterized by vertical taillights and a large rear door featuring a Dodge emblem centrally located. +06297.jpg A dark blue Dodge Sprinter Cargo Van 2009 is seen from the side, parked on a smooth gray surface with a warehouse background, featuring a streamlined body with a distinct horizontal stripe along the sides and rimmed circular wheel covers. +00401.jpg A red Dodge Sprinter Cargo Van 2009 is positioned in profile view against a beige concrete and brick building with a staircase, featuring prominent side paneling and visible wheel arches. +06271.jpg The 2009 Dodge Sprinter Cargo Van is shown in a side profile view with a solid blue color and smooth texture, featuring a black stripe along the side, set against a plain white background. +00781.jpg The Dodge Sprinter Cargo Van 2009 is silver with a smooth texture, viewed from a front-side angle on a city street with metal fencing and buildings in the background, featuring a relatively tall roof and distinct grille design. +01788.jpg The Dodge Sprinter Cargo Van 2009 is viewed from a front-side angle, showcasing its sleek blue, metallic finish with a smooth texture, situated against a minimalist white background; it features distinctive angular headlights and a prominent grille. +04062.jpg The image shows a white Dodge Sprinter Cargo Van 2009 with a smooth texture, captured from a rear three-quarter view against a parking lot background, featuring distinct taillights and a high roof design. +05476.jpg The blue Dodge Sprinter Cargo Van 2009 is viewed from the front-right angle, parked on a paved area with a plain wall and sparse vegetation in the background, featuring its characteristic front grille and streamlined body design. +06320.jpg The Dodge Sprinter Cargo Van 2009 appears in a solid white color with a smooth texture, viewed from a front-left perspective in a sunlit outdoor setting next to some foliage and concrete, featuring a high roof and prominent black accents on the bumper and wheels. +04225.jpg A light gray Dodge Sprinter Cargo Van 2009 is displayed in a left side profile view, showcasing its smooth, streamlined body with prominent wheel arches, set against a clear sky with scattered clouds and flanked by trees in the background. +05041.jpg The image shows a red Dodge Sprinter Cargo Van 2009 with a smooth texture, viewed from the front-left angle, parked on a lot with a warehouse-like building and other vehicles in the background, featuring a distinct tall roof and large grille. +01440.jpg A white Dodge Sprinter Cargo Van 2009 is shown from a front-side angle on a paved lot with other vehicles, featuring a flat front grille with the Dodge emblem, large side mirrors, and distinct panel lines against a backdrop of trees and a partly cloudy sky. +05342.jpg The Dodge Sprinter Cargo Van 2009 in the image is a white vehicle with smooth texture, captured from a rear-side viewpoint in a parking lot environment, featuring a tall, boxy structure with characteristic vertical tail lights and prominent side paneling. +04074.jpg The low-resolution image shows a white Dodge Sprinter Cargo Van 2009 viewed from the front-left angle, featuring a smooth texture, distinctive dark grille, and set in a minimalistic, likely studio or digitally enhanced background. +02732.jpg The Dodge Sprinter Cargo Van 2009 is a white, smooth-textured vehicle viewed from the front-right angle, parked on an urban road with a metal fence and trees in the background, featuring a high roof and distinctive black side paneling. +02483.jpg In a showroom setting, the red Dodge Sprinter Cargo Van 2009 is viewed from a front-side angle, highlighting its sleek, aerodynamic design and chrome grille with prominent headlights against a clean, minimalistic backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions/Eagle_Talon_Hatchback_1998_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Eagle_Talon_Hatchback_1998_descriptions.txt new file mode 100644 index 0000000..e1709b6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Eagle_Talon_Hatchback_1998_descriptions.txt @@ -0,0 +1,20 @@ +03786.jpg The Eagle Talon Hatchback 1998 appears in a dark maroon shade with a glossy finish, viewed from the front-left angle, against a suburban backdrop featuring a garden and light-colored pavement, highlighting its sleek aerodynamic body, black side mirrors, and distinctive alloy wheels. +00616.jpg The Eagle Talon Hatchback 1998 is depicted in a low-resolution image, showcasing its white body with a smooth texture and minimized reflections, viewed from the front-left angle in a suburban street setting, featuring distinctive sleek lines, pop-up headlights, and a noticeable air intake on the front bumper. +00606.jpg The Eagle Talon Hatchback 1998 in the image features a red and black custom paint job with swirling patterns, viewed from a front-left angle, set in a garage environment with a vibrant mural on the yellow walls, and showcases a distinct front bumper and aerodynamic design. +03674.jpg The 1998 Eagle Talon Hatchback is shown in a striking red color with a glossy texture, viewed at a slight angle from the front-left, parked on a gray asphalt surface with adjacent vehicles in the background, featuring its distinctive sloping hood, aerodynamic shape, and recessed headlights. +02532.jpg A dark blue Eagle Talon Hatchback 1998 is parked at an angle on a snowy ground, featuring a sleek, rounded front design with covered wheels and illuminated headlights, set against an industrial backdrop with fencing and orange structures. +03264.jpg The Eagle Talon Hatchback 1998 is shown in a three-quarter front view with a dark maroon color and green wheels, parked on a gravel driveway with a grassy background and trees, featuring its distinctive sleek, sporty shape and aerodynamic lines. +07576.jpg The 1998 Eagle Talon Hatchback in the image is a faded red with a smooth texture, viewed from the front-left angle, parked in a suburban lot with residential buildings in the background and a distinct front bumper design visible despite the low resolution. +02612.jpg This Eagle Talon Hatchback 1998 is a low-sitting, glossy red vehicle viewed from a front side angle, with distinctive black wheels and a smooth, aerodynamic body, set against a backdrop of trees and a clear sky. +02917.jpg The low-resolution image shows a vibrant red 1998 Eagle Talon Hatchback with a glossy finish, viewed from the front-left angle on a driveway beside a white-paneled house, featuring black alloy wheels and a distinct black roof. +02429.jpg The red Eagle Talon Hatchback is shown from a low-angle front left viewpoint, with sleek, smooth lines and pop-up headlights against a scenic, rural sunset backdrop with wide open sky and a fence. +06083.jpg The Eagle Talon Hatchback 1998 in the image is black with a glossy texture, viewed from a front-right angle in a parking lot environment, featuring distinctive curved body lines, a prominent front bumper, and sporty alloy wheels. +04902.jpg The Eagle Talon Hatchback 1998 appears in a glossy black color with a sleek, aerodynamic design, featuring a side viewpoint that highlights its curvy body and silver alloy wheels, parked in an urban environment with reflective glass windows in the background. +04953.jpg The Eagle Talon Hatchback 1998 appears in a glossy black finish with smooth, aerodynamic contours viewed from a front-side angle in a parking lot, featuring distinctive alloy wheels and a prominent rear spoiler with a plain concrete wall in the background. +03270.jpg The Eagle Talon Hatchback 1998 is a vibrant red sports car with a sleek body and black roof, viewed from the front in a residential street setting with a hilly background, and its distinctive wide headlights and prominent front grille are notable features. +00550.jpg The Eagle Talon Hatchback 1998 in the image is a sleek black car with a glossy finish, captured from a side angle revealing its aerodynamic shape, set against a desert landscape with cacti and distant mountains, and featuring distinctive silver alloy wheels. +04297.jpg The 1998 Eagle Talon Hatchback in the image is a sleek black vehicle with a glossy finish, viewed from a front three-quarter angle in a parking lot with a blurred construction site in the background, featuring prominent alloy wheels and a distinctive front bumper design. +07482.jpg The Eagle Talon Hatchback 1998 in the image is white with a glossy texture, viewed from the front-left angle on a grassy field, featuring distinctively large headlights and a curved, aerodynamic design. +07523.jpg The 1998 Eagle Talon Hatchback, seen in an angled side view, features a vibrant red body with a glossy finish, complemented by a sleek black roof and distinctive silver alloy wheels, set against a suburban backdrop with lush greenery and a tan building. +01619.jpg The Eagle Talon Hatchback 1998 appears in a vibrant red color with a glossy texture, viewed from a front-side angle, parked on a gray asphalt road in a sunny, suburban environment with trees and shrubs in the background, featuring a sleek aerodynamic body with pop-up headlights and a black roof contrasting with the bright hood and sides. +06350.jpg The Eagle Talon Hatchback 1998 is viewed from the front-left angle, featuring a smooth white body with a dark roof, parked on a sidewalk in a suburban setting, with distinct curvy headlights and a prominent front bumper. diff --git a/utils/area/descriptions/Car/generated_descriptions/FIAT_500_Abarth_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/FIAT_500_Abarth_2012_descriptions.txt new file mode 100644 index 0000000..37e9d83 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/FIAT_500_Abarth_2012_descriptions.txt @@ -0,0 +1,20 @@ +07291.jpg The FIAT 500 Abarth 2012 is captured in a three-quarter front view, showcasing its glossy black paint with red racing stripes and matching side mirrors, against an indoor showroom backdrop, while highlighting its sporty alloy wheels and distinctive Abarth logo. +02953.jpg The black FIAT 500 Abarth 2012, seen from a side profile, features distinctive red mirror caps and striping, positioned against a blurred, motion-filled road with a wooded backdrop, emphasizing its sporty and compact design. +05508.jpg The FIAT 500 Abarth 2012 is viewed from the rear-right in a glossy black finish with distinct red side stripes and accents, positioned indoors on a carpeted showroom floor with dark pillars and industrial elements in the background. +04255.jpg The FIAT 500 Abarth 2012 in the image is black with red accents, viewed from a front-side angle on a blurred desert road, featuring red side mirrors and Abarth stripe detailing. +05419.jpg A glossy black FIAT 500 Abarth 2012 with red accents, viewed from a front-side angle, is set against a dramatic cloudy backdrop, showcasing its sporty alloy wheels and distinctive front grille and logo. +03027.jpg A glossy black FIAT 500 Abarth 2012 with red side mirrors and stripe detail, viewed from a front-left angle on a road, set against a background of sunlit rocky hills. +01407.jpg The FIAT 500 Abarth 2012 in the image is black with a red stripe, viewed from the side with visible smoke from the rear tires on a road lined with greenery. +00511.jpg The FIAT 500 Abarth 2012 is shown from a front three-quarter view with a glossy black finish, accented by red side stripes and mirror caps, set against a clean indoor exhibition space with minimalistic furniture and branding elements. +05458.jpg The image shows a side view of a black 2012 FIAT 500 Abarth with red accents, parked on or near a road with a shiny texture, featuring distinctive red stripes and Abarth branding on the side, against a blurred outdoor background. +06478.jpg The FIAT 500 Abarth 2012 in the image is glossy black with red accents, viewed from the front-left angle, with a warehouse-like container backdrop, featuring red mirror caps and a red stripe along the side. +02384.jpg The image depicts a black FIAT 500 Abarth 2012 from a side profile, showcasing red racing stripes and accents with a motion-blurred natural landscape background, emphasizing its sporty and compact design. +05709.jpg The black FIAT 500 Abarth 2012 with red accents is viewed from the rear-left quarter angle, showcasing its sporty lines and dual exhaust, set against a mountainous backdrop on a racetrack-like environment with visible tire marks. +07971.jpg The FIAT 500 Abarth 2012 is shown in a front three-quarter view, with a glossy black finish, distinct red side mirrors, and Abarth stripes, parked in a car lot with trees and buildings in the background. +00903.jpg The FIAT 500 Abarth 2012 appears in a side profile with a glossy black finish accented by red detailing and distinctive alloy wheels, set against a foggy and rural background. +06126.jpg A sleek black FIAT 500 Abarth 2012 with a glossy finish is seen from the rear three-quarter view in an indoor showroom environment, featuring distinctive red accents on the trim and brake calipers, dual exhaust tips, and a sporty rear diffuser. +03618.jpg The FIAT 500 Abarth 2012 is shown in a glossy black finish with red side mirrors and accents, viewed from the front left angle against a night-time showroom backdrop, featuring distinct Abarth badging and sporty alloy wheels. +07253.jpg The FIAT 500 Abarth 2012 is seen from the front against a mountainous backdrop, featuring a glossy black finish with red side mirror caps and decals, distinctive scorpion logo on the front grille, and sporty alloy wheels, enhancing its compact, performance-oriented appearance. +01611.jpg The FIAT 500 Abarth 2012 is shown in glossy black with red accents, positioned at a front three-quarter view on a sunlit outdoor setting with surrounding greenery, featuring distinctive red mirror caps, stripe, and sporty wheels. +00420.jpg The low-resolution image shows a glossy dark gray FIAT 500 Abarth 2012 with red side mirrors and accents, viewed from the front in an indoor auto show environment, featuring distinctive circular headlights and the Abarth logo prominently displayed on the grille. +01866.jpg The FIAT 500 Abarth 2012 appears in a glossy black color with a striking red stripe across the side, viewed from a rear three-quarter angle against a stark concrete urban backdrop, highlighting its dual exhausts and sporty spoiler. diff --git a/utils/area/descriptions/Car/generated_descriptions/FIAT_500_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/FIAT_500_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..87f1759 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/FIAT_500_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +04402.jpg The FIAT 500 Convertible 2012 is viewed from the side with a cream-colored body, a red fabric roof folded back, parked on a coastal promenade, and features distinct rounded headlights and stylish alloy wheels against a cityscape and bright blue sky background. +06014.jpg A white FIAT 500 Convertible 2012 with a black convertible top is parked on a paved road by a grassy marshland, featuring distinctive multi-spoke alloy wheels and a person standing through the sunroof. +04256.jpg The FIAT 500 Convertible 2012 is shown in an overhead, three-quarters view with a sleek white exterior and red interior seating, featuring open-roof design against an urban sidewalk background with visible café seating. +00677.jpg The FIAT 500 Convertible 2012 is shown in a white color with a glossy texture, viewed from a rear three-quarter angle with the driver-side door open, featuring a contrasting red folded soft-top roof and a simple studio background. +03182.jpg The FIAT 500 Convertible 2012 is a compact white vehicle with a sleek, smooth texture, viewed from the rear passenger side showing a distinctive red fabric top and chrome trim, set against a backdrop of lush greenery and an overcast sky. +03293.jpg The FIAT 500 Convertible 2012 appears in a creamy white color with a smoothly textured finish, viewed from a rear three-quarter angle with its red fabric top partially retracted, surrounded by an indoor showroom setting and visible unique round taillights and multi-spoke alloy wheels. +00272.jpg A white FIAT 500 Convertible 2012 is seen in a top-side view with a red retractable roof partially open, driving on a road bordered by green grass, featuring a distinct compact shape and rounded headlights. +03635.jpg The 2012 FIAT 500 Convertible is shown in white with a contrasting red retractable roof, viewed from a rear three-quarter angle on a winding road with green hills and a cloudy sky backdrop, highlighting its compact and rounded silhouette. +02731.jpg The FIAT 500 Convertible 2012 in the image is seen from the rear, featuring a silver body with a contrasting red fabric roof, set against a backdrop of a gently sloping grassy field beside a paved road, with notable tail lights and a single exhaust pipe. +01014.jpg The FIAT 500 Convertible 2012 appears in a glossy white color with a contrasting red fabric roof, viewed from a rear three-quarter angle, showcasing its chrome-accented taillights and set in a minimalist white studio environment. +04664.jpg The image shows a silver FIAT 500 Convertible 2012 with a red soft-top roof seen in a three-quarter front view, parked on a gravel surface with greenery in the background, featuring prominent round headlights and chrome detailing. +03196.jpg The FIAT 500 Convertible 2012 is a cream-colored vehicle with a smooth texture, viewed from an elevated angle showcasing the open top and two-tone interior, set against a winding road bordered by lush green grass. +03159.jpg The FIAT 500 Convertible 2012 in the image is a bright pink car viewed from a rear-side angle with a partially retracted black convertible top, set against a plain background, featuring shiny multi-spoke alloy wheels and distinctive compact dimensions. +01886.jpg The FIAT 500 Convertible 2012 is shown from a rear three-quarter view with a white exterior and a contrasting red fabric roof partially open, set against a grassy backdrop, complemented by its distinctive rounded headlights and chrome-trimmed wheels. +04329.jpg The FIAT 500 Convertible 2012 is in a sleek white color with a glossy texture, captured in profile view with its black convertible roof partially open, driving on a paved road against a lush, green countryside backdrop. +01660.jpg A rear view of a white FIAT 500 Convertible 2012 with a red soft top retracted, contrasted against a blurred road and green scenery, showcasing distinctive LED taillights and a prominent FIAT emblem on the license plate. +01889.jpg The FIAT 500 Convertible 2012 is shown from a rear three-quarter viewpoint, featuring a light cream color with a bright red fabric roof retracted, driving along a sunny street lined with trees and buildings, with distinctive rounded taillights and chrome accents visible. +05427.jpg The FIAT 500 Convertible 2012 is seen in a high-angle side view with a white smooth finish, a maroon retractable roof folded back, set against a backdrop of a winding road and lush greenery. +03707.jpg The FIAT 500 Convertible 2012 is white with a black and red fabric roof, viewed from an elevated diagonal angle on a winding road with greenery and rocks in the background, featuring unique rounded headlights and compact body styling. +04770.jpg The FIAT 500 Convertible 2012 is a vibrant red car with a sleek texture, viewed from the rear on a roadway surrounded by greenery, featuring a retracted soft-top roof and classic round taillights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ferrari_458_Italia_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ferrari_458_Italia_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..4837a7a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ferrari_458_Italia_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +04687.jpg The Ferrari 458 Italia Convertible 2012 features a glossy red finish with sleek, aerodynamic contours, viewed from the front and side in a dimly lit parking garage, highlighting its retractable roof, iconic LED headlights, and distinctive alloy wheels. +01937.jpg A vibrant red Ferrari 458 Italia Convertible 2012, seen from a rear three-quarter view, displays its sleek, aerodynamic form against a backdrop of an expansive historic building and manicured grounds, with distinctive circular tail lights and dual exhausts visible. +06995.jpg A sleek red Ferrari 458 Italia Convertible from a rear-side viewpoint is driving along a winding mountain road, showcasing its aerodynamic curves, prominent rear lights, and black convertible roof, set against a backdrop of rocky terrain and trees. +07654.jpg The Ferrari 458 Italia Convertible 2012 in the image features a sleek, glossy red finish viewed from a low front angle, highlighting its distinct aerodynamics and exposed headlights, set against an urban backdrop with concrete walls and graffiti. +03687.jpg The Ferrari 458 Italia Convertible 2012 is in vibrant yellow with a smooth, sleek texture, viewed from a rear angle showcasing its aerodynamic curves, dual round taillights, and distinctive triple exhaust, set against a blurred motion backdrop of a winding road. +00731.jpg The Ferrari 458 Italia Convertible 2012 is seen in a glossy red finish with a sleek, aerodynamic body and open-top design, captured from a high, three-quarter front angle, set against a simple gray studio background with distinctive five-spoke alloy wheels and prominent side vents. +04844.jpg The Ferrari 458 Italia Convertible 2012 is showcased in a bright red color with sleek lines, viewed in a three-quarter front angle, set against a busy indoor exhibition space featuring a display of promotional banners and checkered flags, highlighting its aerodynamic shape and prominent Ferrari emblem on the front. +00801.jpg The image shows a red Ferrari 458 Italia Convertible 2012 from a rear three-quarter view, showcasing its aerodynamic curves and quad exhausts, set against a winding road surrounded by green foliage under a clear blue sky. +06003.jpg A vibrant red Ferrari 458 Italia Convertible 2012 is captured from a front-side angle, driving on a winding mountain road, featuring sleek lines and a distinctive open top against a mountainous backdrop. +00784.jpg The bright red Ferrari 458 Italia Convertible 2012 is shown in profile view on a curvy road, featuring its sleek aerodynamic shape, black convertible roof retracted, and distinctive Ferrari emblem on the side against a blurred mountainous background. +05078.jpg The Ferrari 458 Italia Convertible 2012 is shown in a glossy red finish with a sleek, aerodynamic profile from a side viewpoint, set against a coastal backdrop of large concrete boulders near the sea, highlighting its silver alloy wheels and distinctive rear air intakes. +06267.jpg The low-resolution image shows a red Ferrari 458 Italia Convertible 2012 with a sleek, glossy texture, viewed from the side against a mountainous backdrop, featuring black wheels and distinct aerodynamic contours. +03398.jpg In the image, the Ferrari 458 Italia Convertible 2012 is a sleek red car with a glossy finish, captured from a front three-quarter angle on a winding road, showcasing its aerodynamic body, retractable roof, and distinctive side air vents against a dry, rural landscape. +06162.jpg The Ferrari 458 Italia Convertible 2012 in the image is a sleek yellow sports car with a glossy finish, viewed from a front-side angle showcasing its aerodynamic curves, set in an automotive showroom surrounded by other luxury vehicles and people, with distinctive large silver rims and a black interior. +05552.jpg A vibrant red Ferrari 458 Italia Convertible 2012 is shown from a three-quarters front view with its roof partially open, set against a clean white background, highlighting its aerodynamic curves and distinct five-spoke alloy wheels. +07993.jpg The Ferrari 458 Italia Convertible 2012 is showcased in vibrant red with sleek, glossy bodywork, viewed from a front-side angle in an indoor showroom environment, highlighting its aerodynamic curves and signature five-spoke wheels amidst a bustling crowd. +01588.jpg The low-resolution image shows a vibrant yellow Ferrari 458 Italia Convertible 2012 from a front-side angle, highlighting its sleek aerodynamic contours and distinctive angular headlights, set against a lush grassy background. +04789.jpg The Ferrari 458 Italia Convertible 2012 appears in a vibrant red hue with a sleek, glossy texture, viewed from a front three-quarter angle, showcasing its iconic aerodynamic lines and open roof, set against a showroom environment with people in the background. +05360.jpg The vibrant red Ferrari 458 Italia Convertible 2012 is depicted from a side angle on a winding road, with its top down and glossy finish contrasting against a lush, mountainous backdrop, highlighting its sleek design and distinctive curves. +05073.jpg The Ferrari 458 Italia Convertible 2012 is depicted in vivid red with a sleek, aerodynamic body, viewed from the rear and slightly above, against a coastal road backdrop with blurred buildings and the ocean, showcasing its distinctive rear lights and triple exhaust. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ferrari_458_Italia_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ferrari_458_Italia_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..562848b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ferrari_458_Italia_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +03350.jpg The Ferrari 458 Italia Coupe 2012 is displayed in a vibrant red color with a glossy texture, viewed from a front-side angle, set against an industrial backdrop with stacked wooden pallets, featuring sleek aerodynamic lines and distinct black wheels. +04910.jpg A vibrant red Ferrari 458 Italia Coupe 2012 with a sleek, glossy texture is prominently viewed from an elevated front-left angle, set against a dimly lit industrial backdrop with stacked wooden pallets, showcasing its smooth curvatures and black alloy wheels. +04523.jpg The Ferrari 458 Italia Coupe 2012 appears in a vibrant yellow color with a glossy finish, shown from a low front three-quarter view parked against a scenic coastal backdrop, featuring its iconic angular headlights and sleek aerodynamic curves. +05638.jpg The Ferrari 458 Italia Coupe 2012 appears in a vibrant red with a glossy finish, captured from a front diagonal angle on a curving road, featuring distinct aerodynamic curves and sleek, low-profile design. +06221.jpg The Ferrari 458 Italia Coupe 2012 in the image is a vibrant blue with a glossy finish, viewed from a low rear angle emphasizing its sleek tail, circular rear lights, and dual exhausts, set against a backdrop of lush green foliage. +06098.jpg The Ferrari 458 Italia Coupe 2012 is captured from an elevated front three-quarter view, showcasing its glossy red finish with sleek contours, silver alloy wheels, and a black roof against a plain tarmac background. +07870.jpg The Ferrari 458 Italia Coupe 2012 is vividly red with a glossy finish, photographed from a low front-side angle with sleek lines and distinctive headlights, set against a modern glass building backdrop. +05668.jpg The image shows a black Ferrari 458 Italia Coupe 2012 from a rear view with a glossy texture, featuring dual circular taillights, three central exhaust pipes, and set against a backdrop of greenery and stone pillars. +07198.jpg The low-resolution image shows a Ferrari 458 Italia Coupe 2012 in glossy red with a front three-quarter view, displaying its sleek aerodynamic shape and distinctive front headlights, set against an indoor showroom backdrop with another Ferrari visible in the background. +04882.jpg The Ferrari 458 Italia Coupe 2012 appears in a vivid red color with a glossy texture, viewed from a front angled perspective in a rustic industrial setting with large windowed walls, showcasing its sleek aerodynamic curves and signature front grille with distinctive Ferrari emblem. +02329.jpg The Ferrari 458 Italia Coupe 2012 in the image is a sleek and vibrant red with a glossy finish, viewed from the side against a minimalist, light-grey background, showcasing its aerodynamic curves, bold wheel design, and the iconic Ferrari emblem on the fender. +02760.jpg The Ferrari 458 Italia Coupe 2012 appears in a vibrant red color with a glossy finish, viewed from a high front three-quarter angle, driving along a tree-lined road with blurred greenery, showcasing its sleek aerodynamic shape and distinctive front headlights. +00860.jpg The Ferrari 458 Italia Coupe 2012, in gleaming red with smooth, aerodynamic lines, is captured in motion from a front-side angle on a winding road with blurred greenery and distant hills in the background, showcasing its distinct low-profile hood and sharp headlights. +04708.jpg The Ferrari 458 Italia Coupe 2012 in the image is vibrant red with a sleek, smooth texture, showcased from a low, front-facing angle against an elegant backdrop of a beige building with large windows and ornate lighting, highlighting its aggressive front grille and aerodynamic contours. +07128.jpg The Ferrari 458 Italia Coupe 2012 is a vibrant red with a sleek, glossy finish, captured from a three-quarter front view on a racetrack with a tree-lined background, highlighting its aerodynamic curves and sharp, distinctive headlights. +05874.jpg The Ferrari 458 Italia Coupe 2012, in vivid red with a sleek, glossy texture, is viewed from the front-left angle, parked on a cobblestone driveway before a large, illuminated stone house at night, highlighting its aerodynamic curves and iconic Ferrari emblem. +05303.jpg The Ferrari 458 Italia Coupe 2012, seen in a low-resolution image, features a vibrant red finish with glossy texture, captured from a front three-quarter angle, set against a backdrop of greenery and a road, with distinctive sleek lines and prominent air intakes visible. +00293.jpg The Ferrari 458 Italia Coupe 2012 is displayed in vibrant yellow with a sleek, glossy texture, viewed from a front-left angle revealing its aerodynamic curves and signature prancing horse logo set against a showroom environment with black carpet, while distinct side vents and black racing stripes augment its sporty aesthetic. +07783.jpg The Ferrari 458 Italia Coupe 2012 in the image is a vibrant red with a glossy finish, viewed from a front three-quarter angle, set against a plain white background, featuring sleek aerodynamic lines and prominent wheel arches. +06501.jpg The Ferrari 458 Italia Coupe 2012 appears in a vibrant red color with sleek curves and aerodynamic contours, viewed from a front three-quarter angle on a racetrack with surrounding fencing and greenery, featuring distinctive alloy wheels and signature front air intakes. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ferrari_California_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ferrari_California_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..12624a1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ferrari_California_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +02158.jpg The Ferrari California Convertible 2012 is captured in a low-angle front-left view, showcasing its glossy red exterior with sleek curves, set against an indoor showroom backdrop with large photographs on the wall, and featuring distinct silver alloy wheels and prominent hood air vents. +07849.jpg The Ferrari California Convertible 2012 is shown in a metallic light blue color with a sleek, streamlined body and cream interior, viewed from the front left angle within a minimalistic indoor setting, highlighting its distinctive grille and emblem. +04395.jpg The low-resolution image depicts a metallic blue Ferrari California Convertible from a rear three-quarter view, cruising on a highway with a city skyline featuring tall buildings in the background, highlighting its distinctive taillights and sleek aerodynamic design. +00861.jpg The Ferrari California Convertible 2012 is a glossy red car with a rear view, showcasing dual exhausts and sleek taillights set against a winding road in a lush, green countryside. +06558.jpg The Ferrari California Convertible 2012 in vibrant red, viewed from the front side in motion with its top down, is set against a scenic coastal background with mountains and ocean, and showcases its sleek curves, distinctive Ferrari badge, and polished alloy wheels. +06709.jpg The Ferrari California Convertible 2012 in the image is a glossy red sports car viewed from the side, prominently displaying its sleek curves and distinctive vents, set against a showroom backdrop highlighted by bright lights and Ferrari branding. +02037.jpg A vibrant red Ferrari California Convertible 2012 with a shiny, smooth texture is photographed from a low front-side angle on a coastal road, featuring distinctive yellow brake calipers and sleek lines against a blurred skyline backdrop. +05490.jpg The Ferrari California Convertible 2012 is shown in a vibrant red color with a sleek, glossy texture, viewed from the front-left angle showcasing its smooth curves and iconic emblem, parked on gray paving stones next to a building with reflective glass, amidst an urban setting with signage and sparse trees in the background. +00242.jpg The Ferrari California Convertible 2012 in the image is a vibrant red with a glossy finish, viewed from a rear three-quarter angle with its black convertible top down, set against a suburban backdrop with leafless trees, revealing its quad exhaust pipes and distinctive taillights. +03978.jpg The Ferrari California Convertible 2012, viewed from the front-right angle, showcases a vibrant yellow color with a glossy finish, featuring sleek curves, prominent front air intakes, and the distinctive rear fenders, set against a lush, manicured garden backdrop. +04464.jpg The Ferrari California Convertible 2012 is a sleek red car with a glossy finish, seen from a side profile on a gravel driveway bordered by grass, featuring tan leather interior and distinctive side vents. +04430.jpg A vibrant red Ferrari California Convertible 2012 is seen in a side profile with its top down, set against a background of palm trees and ornate buildings, showcasing its sleek lines and chrome-rimmed wheels. +07043.jpg The Ferrari California Convertible 2012 appears in a vibrant red color with a sleek, glossy texture, viewed from a side angle near the Golden Gate Bridge, featuring its distinctive aerodynamic contours and stylish alloy wheels. +07829.jpg The low-resolution image shows a side view of a sleek, metallic blue Ferrari California Convertible 2012 with a streamlined design, top down, set against a stark white, open landscape with distant mountains, featuring prominent air vents and stylish alloy wheels. +03726.jpg The 2012 Ferrari California Convertible in the image is a sleek, glossy red car with a visible tan interior, showcasing a low-profile, aerodynamic front in a sunny dealership setting, accented by five-spoke alloy wheels and signature Ferrari design elements. +02057.jpg The Ferrari California Convertible 2012 is shown in a vibrant red color with a glossy texture, pictured in a side profile view on a winding road, featuring distinctive alloy wheels and a smooth contour, set against a blurred natural background. +06401.jpg The Ferrari California Convertible 2012 in the image is a vibrant red with a smooth, glossy finish, viewed from the rear-left angle highlighting its sleek lines and open-top design, set against a backdrop of green shrubbery and blue sea, with its distinctive quad tail lights and dual exhausts visible. +03572.jpg A red Ferrari California Convertible 2012 with a smooth, glossy finish is viewed from a slightly elevated front three-quarter angle, showcasing its sleek hood and elongated headlights against a backdrop of a gravel driveway bordered by green grass. +01862.jpg The red Ferrari California Convertible 2012 is shown in a front three-quarter view with a sleek, glossy finish, tan interior, distinctive side vents, and signature Ferrari emblem, set against a simple curtain backdrop on a polished concrete floor. +04545.jpg The Ferrari California Convertible 2012 is a glossy red sports car viewed from the front three-quarter angle, showcasing its sleek lines and open top against a scenic background of a wooded landscape and body of water, with distinctive features including its iconic front grille and silver five-spoke alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ferrari_FF_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ferrari_FF_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..5e1c929 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ferrari_FF_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +04296.jpg The Ferrari FF Coupe 2012 is captured in a low-resolution image with a sleek metallic gray color and smooth texture, viewed from the front at an angle as it drives swiftly through a blurred tunnel environment, showcasing its aerodynamic silhouette and distinctive front grille. +05257.jpg The Ferrari FF Coupe 2012 in the image is a sleek, metallic white sports car with a prominent grille and distinctive headlights, viewed from the front-left angle, parked in a showroom surrounded by other luxury vehicles. +02003.jpg A sleek, blue Ferrari FF Coupe 2012 with a glossy finish is shown from a front three-quarter view, parked on snow near a wooded, snowy landscape, featuring its distinctive long hood, rounded roofline, and silver wheels. +02118.jpg The Ferrari FF Coupe 2012 is a sleek, red sports car with a glossy finish, viewed from a rear three-quarter perspective against a snowy mountain backdrop, highlighting its distinctive sloping roofline and prominent rear tail lights. +07690.jpg The Ferrari FF Coupe 2012 is shown in a striking red color with a glossy finish, viewed from a front side angle as it dynamically navigates through a snow-covered mountainous landscape, highlighting its distinct elongated hood and signature grille. +07219.jpg The low-resolution image shows a red Ferrari FF Coupe 2012 with a glossy finish, viewed from a front three-quarter angle, parked on a cobblestone surface against a blurred rural landscape, displaying its signature long hood and sleek, aerodynamic lines. +05513.jpg The Ferrari FF Coupe 2012 is a sleek, vibrant red vehicle viewed from the front in a snowy landscape, featuring a distinctive grille and smooth contours against a background of snow piles and a building. +06910.jpg The Ferrari FF Coupe 2012 appears in a glossy red finish, viewed from the front with prominent dual grilles and signature badge, set against a warm-toned urban backdrop featuring residential buildings and greenery. +01777.jpg The image shows a front view of a sleek, dark blue Ferrari FF Coupe 2012 with distinct curves and a prominent grille, speeding along a winding road bordered by a stone wall and blurred trees, highlighting its dynamic form. +06494.jpg The Ferrari FF Coupe 2012 appears in a bold red color with a sleek, aerodynamic design, viewed from an elevated side angle on a narrow winding road, surrounded by historical village architecture, showcasing its distinctive long hood, sloping roofline, and signature Ferrari emblem on the fender. +01011.jpg The Ferrari FF Coupe 2012 is depicted in a dynamic front-side view, showcasing its sleek red body against a snowy forest background, with distinctive features like its elongated grille and smooth contours accentuated by the motion blur of driving through a snowy path. +00332.jpg The Ferrari FF Coupe 2012 is a sleek, red sports car with a glossy finish, captured from a low front angle, set against a dramatic roller coaster backdrop with visible curves and supports. +00679.jpg The Ferrari FF Coupe 2012 appears in a sleek, glossy red finish, viewed from the front-left angle, driving along a deserted road with sand dunes in the background, showcasing its distinctive elongated hatchback design and quad tailpipes. +05236.jpg The Ferrari FF Coupe 2012 is captured from a rear viewpoint, showcasing its sleek white finish and distinctive quad exhausts, set against a snowy background with contrasting dark rear details and prominent circular taillights. +06887.jpg The Ferrari FF Coupe 2012 in the image appears in a vibrant red color with a sleek, glossy texture, viewed from a front-side angle on an open tarmac adjacent to a large military helicopter, flanked by mountainous terrain. +03386.jpg The Ferrari FF Coupe 2012 in the image is a glossy navy blue, viewed from the front showing its distinct grille and headlights, set against a backdrop of a paved road and snow, highlighting its sleek, sporty design. +02177.jpg The Ferrari FF Coupe 2012 is viewed from a high rear angle showcasing its sleek red body with a glossy finish, prominently displaying the Prancing Horse emblem and dual circular taillights, set against a plain white background. +03562.jpg The Ferrari FF Coupe 2012 in the image is a glossy dark red with a sleek, aerodynamic profile, shown in a side view against a forested mountain background, highlighting its distinctive long hood and sloping roofline. +04110.jpg The Ferrari FF Coupe 2012 is seen from a rear angle displaying its sleek white exterior with glossy texture, featuring distinctive dual circular taillights and quadruple exhausts, set against a polished showroom environment. +05423.jpg The Ferrari FF Coupe 2012 is shown in a side profile with a glossy red finish against a snowy mountain backdrop, featuring its signature long hood, streamlined roofline, and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Fisker_Karma_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Fisker_Karma_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..b48b4e5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Fisker_Karma_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +07060.jpg The Fisker Karma Sedan 2012 is seen from a rear three-quarter view, featuring a sleek white body with distinct smooth contours, set against a blurred green and winding forested background, emphasizing its sporty design and aerodynamic shape. +05922.jpg The Fisker Karma Sedan 2012 is seen from a frontal viewpoint, displaying its sleek black finish with glossy texture, distinctive large grille, and LED lights, set against a grassy area with people and a building in the background. +05651.jpg The Fisker Karma Sedan 2012 is shown from a rear-side angle in a grassy and wooded environment, featuring a sleek metallic silver color, distinctive curvaceous body lines, and unique, stylish wheel design. +01988.jpg The Fisker Karma Sedan 2012 appears in metallic gray with a sleek, low-slung body, viewed from a three-quarters front angle in an indoor showroom environment, distinguished by its large, aerodynamic grille and unique, turbine-style alloy wheels. +06182.jpg The Fisker Karma Sedan 2012 is viewed from the front-right angle, showcasing its sleek silver body with a polished finish, a unique grille design, distinctive headlights, and set against a blurred indoor event space with people and lights in the background. +06303.jpg The Fisker Karma Sedan 2012 is displayed in a metallic silver color, viewed from the side showing its sleek aerodynamic lines, parked next to a modern glass-paneled building, with distinctive large silver wheels and a low-slung sporty profile. +02173.jpg The Fisker Karma Sedan 2012, viewed from the rear, features a glossy blue finish with distinctive taillights and a sleek aerodynamic design, set against a dramatic cloudy sky and flat terrain. +02972.jpg The Fisker Karma Sedan 2012 is slick and glossy in a dark color, captured in a three-quarter front view on a runway with distinctive curves and sleek lines, showcasing its large wheels and low profile. +05136.jpg The Fisker Karma Sedan 2012 in the image has a reflective chrome finish and glossy texture, presented in a three-quarter frontal view amid a sunlit urban background, featuring its notable wide grille and sleek profile despite the low resolution. +07674.jpg The Fisker Karma Sedan 2012 is shown in a sleek, silver metallic finish with a smooth texture, viewed from a left-side angle on a white background, highlighting its aerodynamic contours, distinctive long hood, and large chrome wheels. +03714.jpg The Fisker Karma Sedan 2012, viewed from the front-left, has a sleek, glossy black finish with silver rims, set against a showroom background with blue carpeting and another car display in the far right. +06264.jpg The Fisker Karma Sedan 2012 appears in a sleek, dark metallic hue with a smooth, streamlined texture, viewed from the front-left angle on a winding desert road, showcasing its low-slung grille, distinctive front headlights, and sporty curves against a backdrop of dry, sparse vegetation and distant mountains. +02300.jpg The 2012 Fisker Karma Sedan is an angled shot with a metallic red finish, a sleek and aerodynamic body, distinctive grille, and chrome accents, set against an indoor showroom environment with other cars in the background. +04697.jpg The Fisker Karma Sedan 2012 appears in a glossy dark gray finish, viewed from the front-left angle, parked by a narrow countryside road, featuring its signature grille and elongated hood against a backdrop of canal and grass landscape. +06017.jpg The Fisker Karma Sedan 2012 is shown in a low-resolution image, displaying a sleek silver color with a metallic texture, positioned at a front-left angle near a glass-fronted building, featuring distinctive curved body lines and aerodynamic headlights. +00102.jpg The Fisker Karma Sedan 2012 is captured in a side profile view with a sleek, metallic gray finish and smooth contours, set against a blurred natural background with trees and grass, highlighting its aerodynamic design and distinctively large wheels. +00489.jpg The Fisker Karma Sedan 2012 in the image is a sleek silver car with a glossy texture, viewed from the front-left angle against a sunset backdrop, featuring its distinctive large grille, elongated headlights, and multi-spoke wheels. +03013.jpg The Fisker Karma Sedan 2012 is shown in a sleek, metallic blue finish with a low-slung profile, captured from a front three-quarter angle, set against a gravelly background with its distinctive chrome grille and aerodynamic curves clearly visible. +07840.jpg The Fisker Karma Sedan 2012 is depicted from a rear-side angle on a city street, featuring a sleek, metallic gray exterior with a glossy texture, characteristic elongated tail lights, and large alloy wheels, set against an urban backdrop with surrounding traffic. +01722.jpg The Fisker Karma Sedan 2012 in the image is a sleek metallic gray car viewed from the front-right angle, with a reflective, smooth surface, distinctive curved silhouette, and set in a parking lot amidst other cars. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_E-Series_Wagon_Van_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_E-Series_Wagon_Van_2012_descriptions.txt new file mode 100644 index 0000000..63771ac --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_E-Series_Wagon_Van_2012_descriptions.txt @@ -0,0 +1,20 @@ +01793.jpg The Ford E-Series Wagon Van 2012 is a white, bulky van with a smooth texture, viewed from a front-side angle in a dealership lot with paved ground and other vehicles visible, featuring a prominent front grille and large side windows. +07065.jpg The Ford E-Series Wagon Van 2012 is viewed from the front passenger side in a metallic silver color with a robust, boxy shape, beneath a modern overhang at an airport entrance, featuring prominent horizontal grille bars, large rectangular headlights, and smooth body panels with utility-focused design. +01191.jpg The Ford E-Series Wagon Van 2012 appears in a white color with a smooth texture, viewed from a front three-quarter angle in a dealership setting, featuring a prominent front grille and rectangular headlights. +03099.jpg The Ford E-Series Wagon Van 2012 is displayed in a low-angle front-left view, showcasing its white body with a smooth, glossy finish, distinctive chrome grille and bumper in a suburban environment with trees and blue sky in the background. +01478.jpg The Ford E-Series Wagon Van 2012 is shown in a metallic silver color with a smooth texture, captured from a front three-quarter perspective in a car dealership parking lot, featuring a prominent chrome grille, rectangular headlights, and visible side windows. +00964.jpg The Ford E-Series Wagon Van 2012 is white with a smooth texture, viewed from the front left angle, parked on a paved lot with greenery in the background and featuring prominent chrome detailing on the grille and wheels. +04842.jpg The Ford E-Series Wagon Van 2012 in the image is white with a reflective chrome grille, viewed from a front-left angle, parked in an outdoor setting with grass and a clear blue sky, showing its boxy shape and large side mirrors. +06723.jpg The Ford E-Series Wagon Van 2012 appears in a silver color with a smooth texture, viewed from the front-left three-quarter angle, parked outside a car dealership with a wooden shingle facade in the background, and features a prominent chrome grille and reflective windows. +05656.jpg The Ford E-Series Wagon Van 2012 is a dark-colored vehicle with a glossy finish viewed from a side angle, featuring a long, rectangular body with visible chrome accents on the grille and wheels, set against a plain white background. +05507.jpg The image shows a white Ford E-Series Wagon Van 2012 with a smooth surface, viewed slightly from the front-right, parked on a street beside a building under dim lighting, with visible side windows and a front grille. +05017.jpg The Ford E-Series Wagon Van 2012 appears in a silver color with a smooth texture, viewed from the front-left angle, parked in a sunny dealership lot with palm trees, featuring visible side windows and a dealer sticker on the windshield. +01562.jpg A silver Ford E-Series Wagon Van 2012 is shown from a front-side angle in an urban environment, featuring smooth metallic texture, a prominent front grille, and reflecting lights from the surroundings, with a building and trailer in the dimly lit background. +01914.jpg The Ford E-Series Wagon Van 2012 appears in a white color with a smooth texture, viewed from a three-quarter front angle, set in a parking lot under clear daylight with a tree and other vehicles in the background, and features a distinctive boxy shape with a prominent grille and chrome accents. +00949.jpg The dark-colored Ford E-Series Wagon Van 2012 is shown in a three-quarter front view against a plain white background, highlighting its boxy shape, signature front grille, and chrome-trimmed wheels. +02721.jpg The Ford E-Series Wagon Van 2012 is seen from a front-left angle, displaying a white exterior with a smooth, glossy texture, featuring a prominent chrome grille and bumper against a sunny dealership backdrop with a cloudy blue sky. +01831.jpg The white Ford E-Series Wagon Van 2012 is viewed from the front-left angle, parked on asphalt with bare trees and another vehicle in the background, featuring a chrome grille and standard wheels. +04122.jpg The Ford E-Series Wagon Van 2012 in the image is white with a smooth texture, viewed from a front-side angle in a parking lot with palm trees in the background, featuring a prominent black grille and clear headlight design. +05987.jpg The Ford E-Series Wagon Van 2012 is depicted in a metallic beige with a smooth texture, viewed from a front-side angle against a blurred suburban house background, featuring a prominent chrome front grille and large side windows. +07918.jpg A silver Ford E-Series Wagon Van 2012 viewed from the front-left angle displays a prominent chrome grille and headlights, with a tree-lined background enhancing its robust appearance on an overcast day in a parking lot setting. +02211.jpg A white Ford E-Series Wagon Van 2012 is pictured in a dealership lot from a three-quarter front-right viewpoint, featuring a smooth, slightly reflective surface, with large side windows, set against a backdrop of other vehicles, a Lincoln sign, and a few leafless trees. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_Edge_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_Edge_SUV_2012_descriptions.txt new file mode 100644 index 0000000..ba6f5c1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_Edge_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +04144.jpg A maroon Ford Edge SUV 2012 is pictured from the front-left angle, in motion on a sunlit, brick-paved street, with modern glass buildings in the background, featuring chrome accents and distinctive oval headlights. +03440.jpg The Ford Edge SUV 2012 appears from a rear view in a metallic gray color with a shiny texture, featuring dual exhausts, notable rear taillights, and is situated in an open parking lot with scattered trees in the background. +04804.jpg The silver Ford Edge SUV 2012 is viewed from the driver’s side in a profile pose against a flat, open outdoor background with clear skies and sparse trees, showcasing its prominent wheel arches and sleek roofline. +03573.jpg The Ford Edge SUV 2012 appears in a metallic bronze color with a smooth texture, viewed from a front three-quarter angle in a dealership setting, featuring shiny chrome wheels and a distinctive front grille. +07638.jpg The Ford Edge SUV 2012 appears in a glossy black color with smooth textures, viewed from the rear three-quarter angle, set against an indoor showroom with checkered black and white flooring, showcasing its distinctive rear spoiler, dual exhaust, and "Limited" badging. +03556.jpg The Ford Edge SUV 2012 appears in a metallic gray color with a shiny texture, viewed from a front three-quarter angle in a wooded background, featuring chrome accents on the grille and large polished wheels. +03306.jpg The Ford Edge SUV 2012 is displayed in a glossy black color with a prominent front grille and chrome accents, viewed from a front-side angle in an indoor showroom featuring tiled floors and dealership banners. +02345.jpg The low-resolution image shows a silver Ford Edge SUV 2012 with a prominent chrome grille and headlights illuminated, viewed from the front-left angle, parked on grass in front of a white fence and a rustic, dark barn backdrop. +00116.jpg The Ford Edge SUV 2012 is viewed from the front-left angle, showcasing a dark metallic finish, prominent chrome grille, and set against an industrial background with overcast skies. +06824.jpg The Ford Edge SUV 2012 is seen in a metallic olive green color with a smooth texture from a three-quarter front view, parked on a paved area with green grassy surroundings, featuring a distinctive chrome grille and reflective alloy wheels. +05617.jpg The Ford Edge SUV 2012 is silver with a smooth texture viewed from the front-left side, featuring chrome accents, prominent grille, alloy wheels, and set against a backdrop of lush greenery and pavement. +03146.jpg The 2012 Ford Edge SUV in the image appears in a shiny black color with a glossy finish, viewed from the side showing its distinctive chrome wheels, located in a sunlit parking area with trees in the background and dealership placards visible on the windows. +00197.jpg The Ford Edge SUV 2012 appears in a muted olive green color with a reflective chrome grille, viewed from the front-left angle on a rural road, surrounded by greenery, and features distinct large alloy wheels and a prominent body line. +01951.jpg A silver Ford Edge SUV 2012 is seen in profile, parked on a wet reflective surface with a subtle horizon in the background, highlighting its chrome alloy wheels and sleek body lines against a soft, diffused light. +07830.jpg A dark brown Ford Edge SUV 2012 is parked on concrete with a front three-quarter view, featuring a prominent chrome grille and set against a backdrop of trees and distant buildings. +06420.jpg The white Ford Edge SUV 2012 is pictured from the front-side angle, showcasing its glossy finish, large alloy wheels, and black-tinted windows, against a backdrop of a concrete wall and sloping grassy area. +00826.jpg The low-resolution image shows a maroon Ford Edge SUV 2012 positioned at a slight angle from the front-right side against a light-colored brick wall with a dealership sign, featuring a prominent grille and chrome-accented wheels. +07159.jpg The Ford Edge SUV 2012 is depicted in a side view with a glossy white exterior, chrome wheels, and black-tinted windows against a plain white background. +06929.jpg The 2012 Ford Edge SUV is depicted in a low-resolution image from a front-side angle, showcasing its metallic olive-green color with reflective chrome wheels against a mountainous backdrop. +06131.jpg The Ford Edge SUV 2012 in the image is a glossy red, viewed from a rear-side angle, parked on a paved surface with a green forested backdrop, featuring distinctive alloy wheels and a subtle rear spoiler. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_Expedition_EL_SUV_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_Expedition_EL_SUV_2009_descriptions.txt new file mode 100644 index 0000000..cab5d76 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_Expedition_EL_SUV_2009_descriptions.txt @@ -0,0 +1,20 @@ +05229.jpg The Ford Expedition EL SUV 2009 is shown in a polished cream color with sleek, reflective surfaces, viewed from a rear three-quarter angle in a stark, minimalistic studio setting, highlighting its distinctive chrome rims and bold rear light cluster. +06963.jpg The Ford Expedition EL SUV 2009 is shown in a front-side view, featuring a two-tone dark blue and tan color scheme with a chrome grille and distinctive roof rails, set against a plain white background. +01482.jpg The Ford Expedition EL SUV 2009 appears in a white color with a beige lower accent, viewed from a front three-quarter angle in a showroom setting, featuring distinct chrome detailing on the grill and alloy wheels. +07394.jpg The low-resolution image shows a side view of a beige Ford Expedition EL SUV 2009 with a metallic finish and dark-tinted windows, parked on a grassy area with a row of other vehicles in the background under a partly cloudy sky. +02508.jpg A black, glossy Ford Expedition EL SUV 2009 is viewed from the front-right angle, parked in an industrial area with a warehouse in the background, displaying chrome wheels and roof racks as key features. +04199.jpg The Ford Expedition EL SUV 2009 is depicted from a front three-quarter angle, showcasing its glossy black exterior with smooth contours and chrome accents, parked on a paved surface with greenery and trees in the blurred background, featuring visible roof rails and a prominent front grille. +01388.jpg The image shows a silver Ford Expedition EL SUV 2009 with a smooth metallic finish, viewed from a front three-quarter angle, parked on a gravel surface in a car lot with power lines and other vehicles in the background, featuring its signature large grille and prominent roof rails. +07937.jpg The image features a dark green Ford Expedition EL SUV 2009 viewed from the front-right angle, showcasing its prominent chrome grille, beige lower trim, shiny alloy wheels, and a background of trees and an open parking lot. +07224.jpg The image shows a metallic gray Ford Expedition EL SUV 2009 with a shiny, smooth texture, viewed from the front-left angle on a motion-blurred road amidst a leafy, blurred background, displaying its prominent chrome grille and elongated body despite the low resolution. +02485.jpg The Ford Expedition EL SUV 2009 is shown in a front-left angled view with a white sand tri-coat metallic finish, parked on a sunlit pavement near a Mediterranean-style building with prominent chrome detailing on the grille and wheels, and a large price sticker on the windshield. +02985.jpg The Ford Expedition EL SUV 2009 is depicted in a three-quarter front view, showcasing a two-tone blue and tan color scheme with a shiny texture, set against a minimalistic indoor environment with a smooth, reflective black floor and white walls, highlighting its distinctive chrome grille and roof rack. +06385.jpg The Ford Expedition EL SUV 2009 is visible from a front-side angle, displaying a clean white color with a slightly reflective texture under daylight, distinctive chrome accents on the grille, and parked in a used car lot with a dealership in the background. +02275.jpg The Ford Expedition EL SUV 2009 in a deep maroon color with beige lower accents is viewed from a slightly elevated front-left angle, parked on a textured paved surface in a rustic park setting, complementing its sleek chrome grill and prominent headlights. +00514.jpg The Ford Expedition EL SUV 2009, viewed from the front-left side, features a two-tone exterior with a white upper body and beige lower panels, prominent chrome front grille, and is set against a neutral indoor showroom background. +05602.jpg A black Ford Expedition EL SUV 2009 is seen from a front three-quarter angle with a shiny, smooth texture and chrome wheels, set against a backdrop of a gravel surface and a branded white wall, featuring prominent front grille and roof rails. +00121.jpg The Ford Expedition EL SUV 2009 in the image is a two-toned vehicle with a dark upper body and light beige lower trim, viewed from a front-side angle in a dealership lot with a building labeled "DIERS" in the background, featuring distinguishable chrome accents and large alloy wheels. +00480.jpg The Ford Expedition EL SUV 2009 is presented in a dark gray color with a smooth texture, viewed from the side in a parking lot environment, showcasing its elongated body, silver rims, and roof rails against a backdrop of overcast sky and distant trees. +07222.jpg In the image, the Ford Expedition EL SUV 2009 appears in a metallic gray color with a shiny texture, viewed from the front-right diagonal, parked on a concrete surface with a suburban dealership background, featuring a prominent chrome grille and sporty alloy wheels. +03378.jpg The Ford Expedition EL SUV 2009 appears in a side view with a two-tone color scheme of white upper body and beige lower trim, parked on a paved surface with a backdrop of greenery and a white building. +02712.jpg The 2009 Ford Expedition EL SUV in the image is a metallic tan color with a slightly glossy texture, viewed from the front-left angle, parked on a cobblestone path with a background of trees and a rustic fence, and features a prominent chrome front grille and large five-spoke wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_F-150_Regular_Cab_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_F-150_Regular_Cab_2007_descriptions.txt new file mode 100644 index 0000000..4ccc751 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_F-150_Regular_Cab_2007_descriptions.txt @@ -0,0 +1,20 @@ +00329.jpg The Ford F-150 Regular Cab 2007 is a glossy black truck viewed from a three-quarter front angle, parked on a paved lot surrounded by other vehicles, with notable features such as a robust front grille and silver alloy wheels. +01897.jpg The image shows a gray Ford F-150 Regular Cab 2007 with a smooth texture, viewed from the front-left angle in a rural or suburban environment, featuring a distinctive black grille, chrome wheels, and a decal on the windshield. +05038.jpg The Ford F-150 Regular Cab 2007 in the image is a dark-colored truck viewed from the front-left angle, displaying a smooth body texture, against a backdrop of lush green trees and a light-colored building, with prominent headlights and distinctive grille features. +06499.jpg A sleek black Ford F-150 Regular Cab 2007 with a reflective surface and visible chrome accents, viewed in profile from the passenger side, is parked on a paved lot with a sparse industrial background including a wire fence and a leafy tree. +00842.jpg The image shows a bright red Ford F-150 Regular Cab 2007 with a smooth texture, captured in a side profile view against a background featuring a grassy field and a beige garage, with distinct chrome wheels and black side mirrors accentuating its design. +04785.jpg The Ford F-150 Regular Cab 2007 in the image is black with a shiny, smooth finish, viewed from a front-side angle, set against a suburban background with grass and houses, and features off-road tires and a raised suspension. +08079.jpg The Ford F-150 Regular Cab 2007 is seen from a front-side angle, displaying a dark, glossy paint with smooth texture, positioned in an indoor parking garage with white walls and ceiling lights, featuring its distinctive front grille and rounded headlights. +00214.jpg A black Ford F-150 Regular Cab 2007 is shown from a rear three-quarter view in a dealership parking lot, featuring the "FX4 Off Road" decal, distinctive red taillights, and a reflective surface under overcast skies. +03428.jpg The image depicts a dark blue Ford F-150 Regular Cab 2007 viewed from the front-left angle, featuring a chrome grille, silver lower trim, and set in a tropical street environment with palm trees in the background. +07543.jpg The Ford F-150 Regular Cab 2007 appears in a dark blue color with a glossy texture, seen from a dynamic front-side angle, set against a rugged, mountainous landscape, featuring prominent headlights and a robust grille. +02112.jpg The Ford F-150 Regular Cab 2007 is a white truck with a matte texture, viewed from the front right angle, situated on a paved road with grassy areas and trees in the background, featuring a prominent dark grille and round headlights. +02588.jpg The Ford F-150 Regular Cab 2007 in the image is white with a smooth texture, viewed from a front-left angle in an indoor garage setting, featuring a simple grille and alloy wheels against a backdrop of an "Enterprise" sign. +04863.jpg A silver Ford F-150 Regular Cab 2007 is seen from the front-left angle parked on a checkered surface, featuring a black grille, silver front bumper, and the background consists of a gray wall with dealership logos. +00824.jpg The black Ford F-150 Regular Cab 2007 is positioned in a three-quarter front view with shiny chrome wheels, set in a parking lot against a backdrop of suburban buildings and overcast skies. +01323.jpg The 2007 Ford F-150 Regular Cab in the image is white with a smooth texture, viewed from a three-quarter front angle with a dealership background featuring a sign and a parking lot, and notable for its simple design and distinctive front grille. +03997.jpg The black Ford F-150 Regular Cab 2007 is viewed from a front-side angle, highlighting its chrome grille and alloy wheels, parked inside a well-lit garage with visible tire treads and reflections on its glossy surface. +06057.jpg The image shows a dark blue Ford F-150 Regular Cab 2007 with a matte finish, photographed from a front-side angle in a parking lot next to a white building, featuring a distinct black grille and silver wheels against a slightly blurred urban backdrop. +04063.jpg A white 2007 Ford F-150 Regular Cab is viewed from a front three-quarter angle, parked on a paved road with sparse surrounding trees and buildings, featuring a gray grille and bumper, alongside a prominent "07" sticker on the windshield. +04618.jpg A dark green Ford F-150 Regular Cab 2007 is viewed from the front-left angle, parked on a patterned lot with a dealership backdrop, featuring prominent round headlights and a wide, black grille. +05495.jpg The black Ford F-150 Regular Cab 2007 is viewed from the side, set against a backdrop of a stone wall with flowering trees, featuring a short truck bed and silver alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_F-150_Regular_Cab_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_F-150_Regular_Cab_2012_descriptions.txt new file mode 100644 index 0000000..157d722 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_F-150_Regular_Cab_2012_descriptions.txt @@ -0,0 +1,20 @@ +05753.jpg The Ford F-150 Regular Cab 2012 in the image appears in a white color with a smooth texture, viewed from a rear three-quarter angle in an outdoor parking lot, featuring prominent rear lights and a black bumper against a backdrop of scattered clouds and other parked vehicles. +04083.jpg The Ford F-150 Regular Cab 2012 is viewed from the front, showcasing a smooth, light gray exterior with a prominent black grille and Ford emblem, set against a plain white background, with visible halogen headlights and a broad hood. +00832.jpg The image shows a rear view of a white Ford F-150 Regular Cab 2012 with a black textured bumper, set against a plain white background, featuring visible taillights on each side of the tailgate. +06402.jpg The Ford F-150 Regular Cab 2012 is silver with a smooth metallic texture, viewed from a front three-quarters angle parked on a brick-paved area in front of a modern building with large windows, featuring a prominent chrome front grille and distinctive angular headlights. +02830.jpg The low-resolution image depicts a white Ford F-150 Regular Cab 2012 viewed from the rear three-quarter angle on a paved road, showcasing its simple design, large tailgate, and visible rear light, against a background of greenery and utility poles. +06283.jpg The image shows a white Ford F-150 Regular Cab 2012 with a smooth texture, captured from a front-side angle, parked on pavement beside a light-colored building with visible dealership signage and displaying distinctive features like the black grille and side mirrors. +04164.jpg The low-resolution image shows a bright red Ford F-150 Regular Cab 2012 in a side profile with a background of lush green trees and a clear blue sky, sitting on a light blue platform, featuring distinctive chrome wheels and black trim along the bottom. +05732.jpg The 2012 Ford F-150 Regular Cab appears in bright white with a smooth texture, viewed from a front three-quarter angle, parked on gray pavement in a lot with bare trees and dealership signs in the background, featuring chrome accents on the grille and wheels. +02444.jpg The Ford F-150 Regular Cab 2012 is silver with a sleek chrome front grille, viewed from a front three-quarter angle on a residential street surrounded by lush trees and houses, featuring distinct rectangular headlights and a smooth, glossy texture. +06133.jpg The Ford F-150 Regular Cab 2012, viewed from a front three-quarter angle, has a sleek silver color with a smooth texture, sporting a black grille and bumper, while parked on an asphalt surface with a brick building and some trees in the background. +02805.jpg The Ford F-150 Regular Cab 2012 is shown in a showroom setting from a front three-quarter angle, exhibiting a glossy black finish with a prominent Ford grille and simple steel wheels against a clean white and black background. +01458.jpg A bright red Ford F-150 Regular Cab 2012 with a glossy finish is viewed from the front-left angle, parked on a blue painted surface, with a backdrop of trees and a white building and featuring simplistic round wheels. +01131.jpg The Ford F-150 Regular Cab 2012 in the image is silver with a slightly shiny texture, viewed from the side in a three-quarter front-left angle against a wooded background, featuring distinct large alloy wheels and a prominent front grille. +01383.jpg The Ford F-150 Regular Cab 2012 is seen from a front three-quarter angle, showcasing its white exterior with a smooth texture, large black grille, reflective side mirrors, against a subdued street background with sparse trees and buildings. +02628.jpg A white Ford F-150 Regular Cab 2012 is seen from a front-right angle in a parking lot with a visible black grille, distinct large side mirrors, and other vehicles and greenery in the background. +01175.jpg The 2012 Ford F-150 Regular Cab is shown in a side view with a smooth, white exterior against a plain, isolated background, featuring distinct black side windows and basic silver wheel rims. +04928.jpg The Ford F-150 Regular Cab 2012 appears in a metallic gray color with a smooth texture, viewed from a slight front-side angle in a sunny, open area with bare trees and a small building in the background, featuring distinct chrome wheels and a prominent front grille. +03519.jpg The Ford F-150 Regular Cab 2012 in the image is a silver truck with a glossy finish, observed from a front-side angle in an empty parking lot, featuring a black grille, chrome accents, prominent wheels, and a clean, unobstructed cab design against a cloudy sky backdrop. +05609.jpg The image shows a white Ford F-150 Regular Cab 2012 with a smooth texture viewed from a front three-quarter angle, parked on a sunny day in front of a building with legible signage, featuring distinct chrome accents on the grille and wheels. +02093.jpg The Ford F-150 Regular Cab 2012 in the image is black with a shiny paint texture, viewed from a front-side angle against a dealership background, featuring chrome accents on the grille and bumper and distinct silver wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_F-450_Super_Duty_Crew_Cab_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_F-450_Super_Duty_Crew_Cab_2012_descriptions.txt new file mode 100644 index 0000000..f0304fb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_F-450_Super_Duty_Crew_Cab_2012_descriptions.txt @@ -0,0 +1,20 @@ +03176.jpg The Ford F-450 Super Duty Crew Cab 2012 is a dark-colored pickup truck, viewed from a front-side angle, set against a mountainous desert landscape, featuring a prominent chrome grille and reflective surface details. +05187.jpg The Ford F-450 Super Duty Crew Cab 2012 is viewed from the front, featuring a white body with a prominent black grille and side mirrors, set against a plain white background, showcasing its robust and boxy front design. +08029.jpg A gray Ford F-450 Super Duty Crew Cab 2012, viewed from the front three-quarters angle, is parked on pavement with a grassy background, showcasing its dual rear wheels, robust grille, and extended cab. +00717.jpg The image shows a glossy black Ford F-450 Super Duty Crew Cab 2012 captured from a front three-quarter view in a dealership lot, featuring its signature chrome grille, large side mirrors, and dual rear wheels, set against a backdrop of a dealership building and other parked vehicles. +05113.jpg The low-resolution image displays a black Ford F-450 Super Duty Crew Cab 2012 from a frontal three-quarter angle against a plain white background, highlighting its chrome grille, large side mirrors, and dual rear wheels. +06809.jpg A black 2012 Ford F-450 Super Duty Crew Cab is viewed from the front-left angle, showcasing its chrome grille, beige lower trim, and surrounded by a lush, green, wooded environment. +05910.jpg The Ford F-450 Super Duty Crew Cab 2012 is shown in a front three-quarter view, displaying a two-tone white and tan color scheme with a prominent chrome grille and dual rear wheels, set against a backdrop of trees and clear blue sky. +01630.jpg The image shows a front-facing view of a black Ford F-450 Super Duty Crew Cab 2012 with a chrome grille and "Super Duty" embossed on the hood, set against a minimalistic, light-colored indoor background with distinct amber roof marker lights. +01688.jpg The Ford F-450 Super Duty Crew Cab 2012 appears in a frontal view with a white exterior, prominent chrome grille, and dually rear wheels, set against the backdrop of an indoor arena with stadium seating. +00005.jpg The Ford F-450 Super Duty Crew Cab 2012 appears in a white hue with a robust, boxy front grille, seen from a front-side angle in a sunny parking lot environment with palm trees and mountains faintly visible in the background. +03799.jpg The image shows a white Ford F-450 Super Duty Crew Cab 2012 viewed from the front-left angle, with a flatbed instead of a standard truck bed, parked in an open lot with other vehicles and trees in the background. +02360.jpg The white Ford F-450 Super Duty Crew Cab 2012 is viewed from the front-left angle in a showroom with a polished floor, showcasing its chrome grille, side steps, and dual rear wheels. +06775.jpg The Ford F-450 Super Duty Crew Cab 2012 appears in a silver hue with a robust texture, viewed from a three-quarter front angle as it traverses a shallow, muddy waterway in a rural environment with trees and an alligator nearby, highlighting its rugged capability and elevated stance. +00074.jpg The Ford F-450 Super Duty Crew Cab 2012 is shown from a front three-quarters angle, featuring a white exterior with a beige-toned lower accent, chrome detailing on the grille and rims, and parked on an asphalt surface in a lot with other vehicles blurred in the background. +02966.jpg A white Ford F-450 Super Duty Crew Cab 2012 is displayed from a frontal-three-quarter angle against a dealership backdrop, featuring large side mirrors, a prominent chrome grille, and visible dealership signage. +07775.jpg The Ford F-450 Super Duty Crew Cab 2012 appears in a vibrant red color with a glossy finish, viewed from a front three-quarter angle, against a mountainous backdrop with clear skies, featuring a chrome grille and prominent Ford emblem. +05919.jpg The Ford F-450 Super Duty Crew Cab 2012 is depicted in a vibrant red with a shiny chrome grille and bumper, viewed from a front three-quarter angle against an industrial background with a water tower and fencing, featuring prominent side mirrors and robust tires. +04864.jpg The Ford F-450 Super Duty Crew Cab 2012 appears in a glossy white finish with a robust, angular front grille, viewed from the front-left angle parked in a lot near a stone-structured building, featuring dual rear wheels and chrome accents. +02634.jpg The Ford F-450 Super Duty Crew Cab 2012 in the image appears in a metallic tan color with a polished chrome grille and dual rear wheels, viewed from a three-quarter front angle in a dealership lot surrounded by other vehicles, palm trees, and a mountainous backdrop. +00753.jpg The Ford F-450 Super Duty Crew Cab 2012 is a large, white and beige truck viewed from a front three-quarter angle, showcasing a prominent chrome grille and dual rear wheels, with a flat open field and bare trees in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_Fiesta_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_Fiesta_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..1121a5e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_Fiesta_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +05980.jpg The white Ford Fiesta Sedan 2012 is viewed from a front three-quarter angle in a showroom setting, showcasing its wide grille, angular headlights, and glossy finish, with other vehicles visible in the background. +03631.jpg The Ford Fiesta Sedan 2012 in the image is a shiny maroon color with a prominent front grille, viewed from a front three-quarter angle in a car dealership lot, surrounded by other vehicles, featuring distinct chrome-edged wheels. +05323.jpg The image shows a silver Ford Fiesta Sedan 2012 with a smooth, glossy texture, viewed from the front-left angle, parked on gravel in front of a sales building with a large promotional banner, and notable features include its compact body and distinct trapezoidal grille. +07298.jpg The Ford Fiesta Sedan 2012 in the image appears in a silver metallic color with a smooth finish, viewed from a front three-quarter angle, set against a dealership background with visible palm trees and a clear blue sky, featuring its distinctive trapezoidal grille and swept-back headlamps. +07612.jpg The silver Ford Fiesta Sedan 2012 is viewed from the side against a plain concrete wall background, exhibiting a sleek profile with distinctively smooth contours and recognizable alloy wheels. +04036.jpg The image depicts a red Ford Fiesta Sedan 2012 with a glossy finish, captured from a front-side angle on a smooth paved surface, set against a backdrop of grassy fields and trees, showcasing its distinctive grille and headlight design. +04311.jpg The red Ford Fiesta Sedan 2012 is viewed from a front three-quarter angle, showcasing its sleek headlights and chrome grille against a backdrop of a car dealership with a visible Ford sign and clear sky. +00427.jpg The Ford Fiesta Sedan 2012 appears in a metallic gray color with a smooth texture, viewed from a front three-quarter angle, surrounded by a car dealership environment with clear blue skies and noticeable chrome-accented grille and distinctive angular headlights. +08126.jpg The Ford Fiesta Sedan 2012 is captured in a showroom environment from a front-side angle, displaying a sleek dark exterior with metallic reflections, angular headlamps, distinctive chrome-trimmed grille, and sporty alloy wheels, set against a glossy black flooring backdrop. +07843.jpg The 2012 Ford Fiesta Sedan appears in a vibrant lime green color with a glossy texture, viewed from a front three-quarter angle in a dealership setting, showcasing its distinctive angular grille and sleek, aerodynamic body lines. +03018.jpg The red Ford Fiesta Sedan 2012 is captured from a front three-quarter view, parked on a dealership lot with a clear sky, featuring smooth body contours, a distinctive trapezoidal grille, and silver alloy wheels. +07427.jpg The Ford Fiesta Sedan 2012 appears in vibrant red with a sleek, glossy finish, captured from a side-front angle demonstrating motion blur, set against an urban backdrop with blurred buildings, and features striking chrome accents on the grille and large, shiny wheels. +06382.jpg The Ford Fiesta Sedan 2012 is depicted in a three-quarter front view on a plain white background, displaying a smooth white exterior with sleek lines, distinctive trapezoid-shaped front grille, and alloy wheels. +00721.jpg The image shows a bright blue Ford Fiesta Sedan 2012 in a side profile view, parked outdoors with a car dealership featuring Ford logos in the background, highlighting its sleek design and compact size. +04290.jpg The Ford Fiesta Sedan 2012 is shown from a frontal viewpoint against a plain white background, featuring a silver exterior with smooth, glossy texture, a prominent grille, and sleek headlights that stand out in its compact design. +02133.jpg The white Ford Fiesta Sedan 2012 is viewed from the front-left angle, showcasing its sleek, rounded headlights and distinctive grille, set against a car dealership lot with multiple vehicles and a commercial building in the background. +04985.jpg A red Ford Fiesta Sedan 2012 is viewed from an elevated front three-quarter angle, featuring a prominent front grille with chrome detailing, surrounded by a bright showroom setting with no visible background, accentuated by its sleek, curved body lines and silver alloy wheels. +00811.jpg The Ford Fiesta Sedan 2012 appears in a vibrant lime green color with a smooth texture, captured from a three-quarter front-left viewpoint in a car dealership lot, featuring notably sleek front headlights and silver alloy wheels amidst an overcast sky and other parked vehicles in the background. +06223.jpg The white Ford Fiesta Sedan 2012 appears from a three-quarter front-left viewpoint, showcasing its streamlined profile with prominent headlights and a distinct trapezoidal grille, set against an urban street background featuring crosswalks and surrounding buildings. +00353.jpg The Ford Fiesta Sedan 2012 appears in a shiny red color with a smooth texture, viewed from the rear three-quarter angle, set against a black and white gradient background, highlighting its distinctive chrome-trimmed windows and angular taillights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_Focus_Sedan_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_Focus_Sedan_2007_descriptions.txt new file mode 100644 index 0000000..381ff22 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_Focus_Sedan_2007_descriptions.txt @@ -0,0 +1,20 @@ +04064.jpg The white Ford Focus Sedan 2007, viewed from the front-left angle, stands on a sunny car dealership lot with a smooth metallic texture, featuring round headlights, a black grille accent, and surrounded by other vehicles and sparse greenery. +07054.jpg The silver Ford Focus Sedan 2007 is viewed from the front-left angle in a paved, open area with a backdrop of a rail and expansive sky, featuring notable elements such as its recognizable grille and circular fog lights. +05970.jpg The Ford Focus Sedan 2007 appears in a smooth silver color, viewed from a side profile at a dealership lot with a concrete surface, distinguished by its compact shape, rounded rear, and visible simplicity in design, with basic wheel covers under overcast lighting conditions. +06912.jpg The Ford Focus Sedan 2007 in the image is a burgundy color with a smooth finish, viewed from a front three-quarter angle, parked on a street with a sidewalk and building in the background, featuring characteristic chrome highlights on the grille and alloy wheels. +00993.jpg The Ford Focus Sedan 2007 appears in a vibrant blue color with a smooth texture, viewed from a front-side angle in a parking lot beside a building with large glass windows, featuring black side mirrors and characteristic hubcaps. +02581.jpg The Ford Focus Sedan 2007 is viewed from the front-left angle and features a red exterior with a smooth texture, set against a dirt road with a cloudy sky background and showcasing distinct oval headlights and a characteristic front grille. +01465.jpg The Ford Focus Sedan 2007 appears in a side profile with a metallic red color, a smooth texture, and is situated against a plain white background, showcasing its distinct angular rear window and multi-spoke alloy wheels. +01900.jpg A silver Ford Focus Sedan 2007 with a smooth texture is shown from a rear three-quarter view, in an urban setting with white barriers, showcasing its distinctive rear spoiler and angular tail lights. +01296.jpg A silver Ford Focus Sedan 2007 is viewed from the left side, parked on a snowy, wet pavement with a partially snowy landscape and a signpost in the background, featuring distinct alloy wheels and a streamlined, compact design. +00703.jpg A beige Ford Focus Sedan 2007 is parked in a dealership lot, viewed from a front-side angle with silver alloy wheels and a backdrop of a Honda dealership building featuring large windows and signage. +05377.jpg The Ford Focus Sedan 2007 appears in a silver color with a smooth texture, viewed from a front-left angle in a car lot setting, featuring distinctive round headlights and a hexagonal grille. +05005.jpg The Ford Focus Sedan 2007 is silver with a smooth texture, viewed from the front-left angle, parked on a dark asphalt surface with a brick building in the background, featuring its distinct rounded headlights and prominent grille. +00974.jpg The image shows a maroon Ford Focus Sedan 2007 with a smooth texture, viewed from a three-quarter front perspective, parked on a pavement with palm trees and a tan-roofed building in the background. +00441.jpg The white Ford Focus Sedan 2007 is viewed at a front three-quarter angle with silver alloy wheels, prominently displayed in a dealership lot against a backdrop of a chain-link fence and trees. +07240.jpg The low-resolution image depicts a black Ford Focus Sedan 2007 with a glossy finish, captured from a low front-side angle in a parking lot surrounded by green trees and street lights, showcasing its aerodynamic shape, distinctive grille, and standard white wheel covers. +00788.jpg A silver Ford Focus Sedan 2007 is viewed from a three-quarter front angle, parked on a lot in front of a glass-paneled building with blue accents, featuring beige trim, distinctive multi-spoke hubcaps, and a "Focus" identifier on the windshield. +02757.jpg A beige Ford Focus Sedan 2007 is shown in a showroom setting, captured from a front-left angle, with distinguishing rounded headlights, a black grille, and silver wheel covers on a gray carpeted floor. +02707.jpg A dark gray Ford Focus Sedan 2007 with a smooth texture is viewed from the front-left angle in a car lot, featuring its distinctive oval grille and surrounded by other vehicles with a tree line in the background. +07772.jpg The Ford Focus Sedan 2007 appears in a bright white color with a front-facing viewpoint, set in an alleyway bordered by red brick buildings, and features distinctive rounded headlights and a prominent central grille with a Ford emblem. +02008.jpg The Ford Focus Sedan 2007 is shown in a glossy black finish with a front three-quarter view, parked in a sunny dealership lot with palm trees visible in the background, featuring silver alloy wheels and a distinct blue emblem on the grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_Freestar_Minivan_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_Freestar_Minivan_2007_descriptions.txt new file mode 100644 index 0000000..1774ea0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_Freestar_Minivan_2007_descriptions.txt @@ -0,0 +1,20 @@ +06106.jpg The Ford Freestar Minivan 2007 appears in white with a smooth texture, viewed from a front-right angle against a plain gray background, featuring distinct round side mirrors and a notably flat front grille. +06428.jpg The Ford Freestar Minivan 2007, viewed from a front three-quarter angle, appears in a metallic gray color with a smooth texture, featuring a distinct chrome grille and alloy wheels, set against an industrial background with a yellow trailer and wire fence. +07156.jpg A rear view of a maroon Ford Freestar Minivan 2007 with a smooth texture, visible roof rails, and distinct tail lights, set against a plain white background. +04179.jpg The Ford Freestar Minivan 2007 is seen in a three-quarter front view, featuring a white upper body with a beige lower trim, a chrome grille, and is parked on an asphalt surface with residential buildings and other vehicles in the background. +07933.jpg A silver Ford Freestar Minivan 2007 is shown from a front-side angle in a car dealership lot with a visible red sale sign on the windshield, surrounded by other vehicles and a line of trees in the background under a cloudy sky. +07995.jpg The Ford Freestar Minivan 2007 in the image is beige with a smooth texture, viewed from the front left angle, parked on a lot outside a building with large windows, and features a prominent chrome grille and distinct wheel design. +05135.jpg The low-resolution image shows a silver Ford Freestar Minivan 2007 with a smooth texture, viewed from the left front side in a sunny outdoor dealership setting, featuring alloy wheels, a distinct chrome grille, and parked in front of palm trees. +02498.jpg The Ford Freestar Minivan 2007 is a gray vehicle with a smooth texture, viewed from the front-right angle, parked in a lot with other vehicles and a building in the background, featuring a distinctive chrome grille and clear headlights. +02506.jpg A metallic light blue Ford Freestar Minivan 2007 is shown from the front-left three-quarter view with a visible textured grille, parked on a paved surface with a grassy area and other vehicles in the background. +07079.jpg A silver Ford Freestar Minivan 2007 with a smooth texture is shown from a front three-quarter angle in a sunlit parking area, highlighting its distinctive front grille, chrome wheel rims, and the expansive windshield reflecting the sky. +06597.jpg The silver Ford Freestar Minivan 2007 is viewed from a front-right angle, showcasing its chrome grille and smooth body lines, set against a paved outdoor background with grass visible in the distance. +06054.jpg The Ford Freestar Minivan 2007 is silver with a smooth texture, viewed from a front three-quarter angle, set against a sunny, tree-lined backdrop, with visible features such as a wide black grille and multi-spoke alloy wheels. +02615.jpg The Ford Freestar Minivan 2007 is white with a smooth texture, viewed from a front three-quarter angle, parked on a road with a grassy, tree-lined background, featuring a chrome grille and alloy wheels. +00166.jpg The 2007 Ford Freestar Minivan appears in a deep burgundy color with smooth texture, viewed from a rear three-quarter angle, set against a plain white background, featuring distinctive rear windows and a roof rack for storage. +01998.jpg A dark gray Ford Freestar Minivan 2007 is seen from a front-side angle, parked on a sunny dealership lot with a clear sky, surrounded by other vehicles, featuring distinctive vertical grille bars and silver alloy wheels. +07589.jpg The Ford Freestar Minivan 2007 is seen in a three-quarter front view with a light metallic beige color and a smooth texture, parked on a gravel lot with other vehicles and trees in the background, and features a chrome grille and alloy wheels accentuating its design despite the low resolution. +03819.jpg The Ford Freestar Minivan 2007 is a white vehicle with a smooth texture, viewed from a front three-quarter angle, parked on a paved surface with a brick building and another white van in the background, featuring distinct circular rear windows and a slightly raised rear roofline. +04342.jpg The image depicts a silver Ford Freestar Minivan from a front-side angle, highlighting its smooth, metallic finish with prominent front grille and headlights, situated in a sunlit urban environment with asphalt and traffic signals visible in the background. +02724.jpg The Ford Freestar Minivan 2007 in the image appears in a metallic gray color with a smooth texture, shown from a front-left angle in a sunlit, expansive parking lot, featuring a distinctive chrome grille and clear headlights. +02698.jpg The Ford Freestar Minivan 2007 is visible from an angled front-side view, showcasing a two-tone red and tan exterior with a glossy finish, set against a blurred, winding road and sunset backdrop, with distinct square headlights and a prominent grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_GT_Coupe_2006_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_GT_Coupe_2006_descriptions.txt new file mode 100644 index 0000000..0818c06 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_GT_Coupe_2006_descriptions.txt @@ -0,0 +1,20 @@ +06799.jpg The Ford GT Coupe 2006 is depicted from an elevated front three-quarter perspective, showcasing its sleek red body with bold white racing stripes running along the center, against a textured gravel background, with signature features like its aerodynamic shape, prominent rear vents, and sporty alloy wheels clearly visible. +05415.jpg The Ford GT Coupe 2006 is presented in silver with dual black racing stripes, viewed from a low front angle on a paved road, featuring distinctive circular headlights, side air intakes, and a farmland backdrop. +02573.jpg The Ford GT Coupe 2006 is a vibrant pale blue with an iconic orange racing stripe and circular decals, viewed from above, prominently showcasing its rear engine through a transparent cover, set against a textured asphalt background. +07239.jpg The Ford GT Coupe 2006 in the image is bright red with bold white racing stripes viewed from the front angle, set against a lush, expansive countryside with rolling hills and a cloudy sky in the background, showcasing its distinctive rounded headlights and aerodynamic design. +00994.jpg The Ford GT Coupe 2006 is shown in a factory setting from a rear three-quarter view, featuring a light blue body with two prominent orange racing stripes running over the car, circular rear lights, a white circle decal on the rear, and distinct curved body lines. +02704.jpg The Ford GT Coupe 2006 in the image is silver with white racing stripes, viewed from the front-left corner with distinctive upward-opening doors in a lush garden setting on a paved driveway. +07613.jpg The Ford GT Coupe 2006 is displayed in a three-quarters front view in a driveway, showcasing its silver body with white racing stripes, open butterfly doors, polished alloy wheels, and a sleek, aerodynamic design against a lush green garden backdrop. +03053.jpg The Ford GT Coupe 2006 is displayed in a dynamic three-quarter front view featuring a glossy red finish with twin white racing stripes, set against a dark, reflective surface and a black backdrop, showcasing its distinctive aerodynamic shape and round headlights. +06034.jpg The Ford GT Coupe 2006 in the image is a low-resolution front three-quarter view of a sleek white car with iconic blue racing stripes, set against a dark background that complements its aerodynamic design and distinctive round headlights. +00336.jpg The Ford GT Coupe 2006 appears in a vibrant light blue with an orange racing stripe running over the top and sides, viewed from a rear three-quarter angle beside a waterside industrial port with cranes, featuring a prominent "8" racing number on its side. +03192.jpg The Ford GT Coupe 2006 in the foreground features a vibrant red body with white racing stripes, a sleek aerodynamic design with smooth contours, and is prominently posed facing slightly to the right in a studio setting with neutral lighting; its low stance and distinct mid-engine layout are noticeable. +06074.jpg The Ford GT Coupe 2006 is viewed from the rear-left side, showcasing its sleek silver finish, distinct circular taillights, and aerodynamic rear design, set against a minimalist studio backdrop. +03867.jpg The Ford GT Coupe 2006 is captured from a low angle, showcasing its sleek blue body with dual white racing stripes, set against an industrial background with corrugated metal walls, emphasizing its aerodynamic design and alloy wheels. +07820.jpg The Ford GT Coupe 2006 is showcased in a vivid yellow with black racing stripes, viewed from a three-quarter front angle, set against a dealership backdrop with reflective glass, featuring distinctive circular headlights and silver alloy wheels. +03584.jpg The Ford GT Coupe 2006 is captured in a rear view traveling on a winding mountain road, featuring a vibrant red color with white racing stripes, prominent dual exhaust pipes, and sleek, aerodynamic lines set against a scenic background of blurred greenery and hills. +04521.jpg A Ford GT Coupe 2006 with a custom fiery and smoky graphic wrap is captured from a rear-side angle parked on a cracked asphalt surface, with orange traffic cones and a few people standing against a cloudy sky backdrop. +07837.jpg The Ford GT Coupe 2006 appears in vivid red with white racing stripes, viewed head-on against a stark black background, emphasizing its aerodynamic curves, low stance, and signature round headlights. +08128.jpg The Ford GT Coupe 2006 in the image is viewed from a slightly elevated front angle, showcasing its sleek white body with prominent blue racing stripes, round headlights, and distinct sporty silhouette, set against a dark, blurred background. +02282.jpg A metallic gray Ford GT Coupe 2006 is viewed from the front, showcasing its sleek aerodynamic body with prominent racing stripes, circular headlights, and a minimalistic studio background highlighting its classic sports car design. +04343.jpg The low-resolution image shows a vibrant yellow Ford GT Coupe 2006 with black racing stripes, captured from a low front three-quarter angle on a deserted road, featuring distinct round headlights and silver wheels, against a backdrop of a clear blue sky and metal guardrails. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_Mustang_Convertible_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_Mustang_Convertible_2007_descriptions.txt new file mode 100644 index 0000000..9e0698b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_Mustang_Convertible_2007_descriptions.txt @@ -0,0 +1,20 @@ +01646.jpg A white Ford Mustang Convertible 2007 is captured from the front-left angle in a sunny parking lot, featuring classic Mustang grille detailing and surrounded by sparse trees and clear blue sky. +01979.jpg A blue Ford Mustang Convertible 2007 with its top down is parked at an angle on a paved lot outside a garage, featuring alloy wheels and distinctive hood vents against a backdrop of green foliage and a white Mustang in the distance. +07099.jpg A black Ford Mustang Convertible 2007 is seen from a front, slightly angled viewpoint, with white racing stripes down the center, parked on a driveway with a residential street and autumnal trees in the background. +07655.jpg The Ford Mustang Convertible 2007 in the image is silver with a smooth texture, viewed from a front-side angle in a parking lot setting, featuring shiny chrome wheels and a distinctive front grille. +06290.jpg A white Ford Mustang Convertible 2007 is parked in a residential driveway, viewed in profile from the side, with distinctive dark alloy wheels and a sleek, sporty body, set against a backdrop of suburban houses and manicured lawns. +04230.jpg The Ford Mustang Convertible 2007 is a bright yellow vehicle with a black soft top, seen from a front-side angle, parked indoors on a concrete floor with subtle raindrop textures and featuring a distinct stripe along the lower side with the word "MUSTANG." +01294.jpg The Ford Mustang Convertible 2007 appears in a side profile with a white body and black convertible top, parked in front of a used car dealership with a sign, amidst a sunny setting with trees in the background. +07095.jpg The Ford Mustang Convertible 2007 is vibrant red with a smooth, polished texture, viewed from the front-left angle on a beach with a sunset and city skyline in the background, characterized by its distinctive grille and illuminated headlights. +07516.jpg The Ford Mustang Convertible 2007 in the image is black with a charcoal soft top, viewed from a rear three-quarter angle in a parking lot, featuring distinct taillights, a rear spoiler, and surrounded by other vehicles. +07098.jpg A dark gray Ford Mustang Convertible 2007 is viewed from the rear-right side, showing its soft-top roof, prominent rear spoiler, and distinct red taillights, set against a dealership backdrop with reflections on the shiny surface and other vehicles visible. +03029.jpg A vibrant red Ford Mustang Convertible 2007 is viewed in profile against a car dealership background, showcasing its sleek body, black soft top, and silver alloy wheels. +07972.jpg A silver Ford Mustang Convertible 2007 is viewed from a low front angle, emphasizing its open top and iconic grille against a dramatic, overcast sky background on a dark, empty road. +00538.jpg The low-resolution image shows a side-view of a black 2007 Ford Mustang Convertible with a sleek, smooth texture, parked in a lot with green trees and an urban skyline in the background; it features a visible Mustang emblem and white side stripes. +04838.jpg A dark-colored 2007 Ford Mustang Convertible is viewed from the front left in a rural setting with mountains in the background, featuring a distinct scoop on its hood, dual large round headlights, and an open-top design highlighting its sporty silhouette. +04677.jpg The 2007 Ford Mustang Convertible in the image is a vibrant red with a sleek texture, shown from a front-side angle with a distinctive black soft top, situated on a grassy area next to lush greenery and a building in the distance, featuring its iconic emblem and sharp headlights. +05099.jpg A side-view of a blue Ford Mustang Convertible 2007 features a tan soft top and silver stripes along the bottom, set against a plain indoor showroom with a wall decal in the background. +04916.jpg The low-resolution image shows a bright red Ford Mustang Convertible 2007 with a black soft top viewed from a front-side angle, parked on an asphalt surface amidst a backdrop of trees, featuring prominent circular headlights and five-spoke alloy wheels. +04917.jpg The image shows a red Ford Mustang Convertible 2007 with a black soft top, seen in a side profile view, parked on a gray pavement with a backdrop of green trees and a chain-link fence, featuring silver alloy wheels and GT badges. +04796.jpg A red Ford Mustang Convertible 2007 is shown from a front three-quarter view against a sandy, open background, featuring its classic pony emblem on the grille, hood scoop, and polished alloy wheels. +01873.jpg A white Ford Mustang Convertible 2007 with illuminated headlights is parked head-on in a dimly lit parking garage, featuring the iconic pony emblem on the grille and a distinctive license plate with a purple logo in the foreground. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ford_Ranger_SuperCab_2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ford_Ranger_SuperCab_2011_descriptions.txt new file mode 100644 index 0000000..173a7bb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ford_Ranger_SuperCab_2011_descriptions.txt @@ -0,0 +1,20 @@ +01075.jpg A glossy black Ford Ranger SuperCab 2011 is photographed from the front-left angle, highlighting its chrome grille and alloy wheels, set indoors against a neutral, well-lit garage-like environment. +04999.jpg The Ford Ranger SuperCab 2011 is a dark blue pickup with a clean, glossy finish, viewed from the front left three-quarter angle, parked on a snow-dusted pavement with bare winter trees and industrial buildings in the background; it features chrome detailing on the grille and robust wheel arches. +03223.jpg The Ford Ranger SuperCab 2011 appears in a deep blue color with a sleek, metallic texture, displayed in a side view against a plain white background, showcasing its extended cab design and silver alloy wheels. +04066.jpg The image shows a silver Ford Ranger SuperCab 2011 with a slightly matte texture, captured from a frontal three-quarter angle in a parking lot with other vehicles and buildings in the background, featuring distinctive rounded headlights and a robust front grille. +04829.jpg The Ford Ranger SuperCab 2011 in the image is a metallic dark gray with a smooth finish, viewed from a rear three-quarters angle showcasing its extended cab and silver alloy wheels, set against a plain white background, with distinct, flared fenders and a rear badge visible. +01362.jpg The Ford Ranger SuperCab 2011 is a blue pickup truck with a glossy texture, viewed from the front-left, parked beside a large industrial building with white garage doors, featuring prominent side mirrors and a distinctive front grille. +03488.jpg The Ford Ranger SuperCab 2011, shown in a low-resolution front-side view against a plain beige wall, is an Oxford White pickup with a clean texture, featuring chrome wheels and a rear bed without a cover, highlighted by its distinctive rear half-door design. +00810.jpg A front view of a red Ford Ranger SuperCab 2011 with a shiny texture is set against a plain white wall and asphalt ground, highlighting its chrome grille and round fog lights despite the low resolution. +00468.jpg The 2011 Ford Ranger SuperCab appears in a clean, metallic silver finish with a broad front grille and rugged appearance, viewed from a front three-quarter angle against a minimalistic, mountainous backdrop, displaying strong, angular lines and compact dimensions. +07716.jpg The Ford Ranger SuperCab 2011 is shown in a bright red color with smooth, shiny texture, viewed from the front side angle in a dealership lot environment, featuring chrome wheels and visible side steps with trees in the distant background. +01398.jpg The Ford Ranger SuperCab 2011 is depicted in a rear-view angle, showcasing a clean white exterior with prominent red tail lights and a Ford emblem, set against a plain white background, highlighting its classic truck design with visible undercarriage elements. +03118.jpg The image shows the rear view of a silver Ford Ranger SuperCab 2011 with a smooth metallic texture and distinct taillights, parked in a busy car dealership lot with numerous other vehicles in the background. +07148.jpg The Ford Ranger SuperCab 2011 is shown in a metallic red color with a shiny texture, captured from a front three-quarter angle, parked on a wet pavement against a plain white wall, with visible side steps and chunky tires adding to its robust appearance. +01598.jpg A rear view of a gray Ford Ranger SuperCab 2011 with a smooth metallic finish, prominent Ford and Ranger badging, set against a plain white background highlighting the vehicle's taillights and boxy shape. +00067.jpg The 2011 Ford Ranger SuperCab appears in a clean white color with a slightly glossy texture, viewed from the front-right angle on a wet, urban street with other parked cars and bare trees, and features a distinct chrome grille and rounded black front bumper in a low-resolution image. +04473.jpg The image shows a gray Ford Ranger SuperCab 2011 parked on wet pavement, viewed from the front-right angle, featuring a dark grille, five-spoke alloy wheels, black side mirrors, and a plain concrete wall in the background. +00226.jpg The low-resolution image shows a red Ford Ranger SuperCab 2011 from a front-facing viewpoint, featuring a chrome grille with visible Ford emblem, set against a partially paved urban setting with trees and a white vehicle in the background. +05196.jpg The Ford Ranger SuperCab 2011 is a silver pickup truck with smooth texture, viewed from a front three-quarter angle, parked in an open area with trees and red-brick buildings in the background, featuring distinctive circular fog lights and a robust front grille. +06609.jpg The Ford Ranger SuperCab 2011 is a metallic red pickup displayed from a front-side angle, parked on a concrete surface with a background of trees and a signage board, featuring prominent chrome details on the grille and visible side step bars. +04397.jpg A bright red Ford Ranger SuperCab 2011 is displayed in a three-quarter front view, parked on a concrete surface against a backdrop of dense green foliage, featuring a prominent grille and compact cab design with visible alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/GMC_Acadia_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/GMC_Acadia_SUV_2012_descriptions.txt new file mode 100644 index 0000000..694f81a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/GMC_Acadia_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +02361.jpg The GMC Acadia SUV 2012 in the image is a glossy black vehicle viewed from the side, with a large, abstract gray structure and car dealership logos in the background, featuring distinctive silver rims and a pronounced roof rail. +05901.jpg The GMC Acadia SUV 2012 is a black vehicle with a glossy finish, viewed from a front-side angle, parked in an industrial area with white building walls, featuring distinct chrome accents and large five-spoke wheels. +07786.jpg The 2012 GMC Acadia SUV is shown from the rear, featuring a glossy black finish, prominent red taillights, dual exhaust pipes, and a visible GMC logo, set against a plain white background. +08063.jpg The image shows a black GMC Acadia SUV 2012 with a glossy texture, viewed from a rear three-quarter perspective, parked in an urban area with red brick buildings and metallic structures in the background, featuring chrome wheels and distinctive rear tail lights. +04188.jpg The black GMC Acadia SUV 2012 is seen from a front-right angle, featuring a shiny surface with chrome detailing, parked in a garage-like setting with a red stripe and horse emblem on the wall. +00109.jpg The GMC Acadia SUV 2012 in the image is a glossy cherry red with metallic accents, viewed from a three-quarter front angle, parked on a paved lot with a grassy area and trees in the background, featuring its prominent grille and chrome-trimmed wheel wells. +04024.jpg A front view of a metallic gray GMC Acadia SUV 2012, featuring a prominent chrome grille with a red GMC badge, situated on a red textured parking lot with a modern blue building and some greenery in the background. +00491.jpg The low-resolution image shows a front view of a dark-colored 2012 GMC Acadia SUV, with a shiny grille and prominent red GMC logo, parked in a sunlit outdoor lot with trees and other vehicles in the background. +03348.jpg A pearl white GMC Acadia SUV 2012 is shown in a three-quarters front view, parked at a dealership with a partly cloudy sky background, featuring large chrome wheels and subtle body lines for a sleek appearance. +06642.jpg The 2012 GMC Acadia SUV is a sleek black vehicle with a shimmering texture, visible from a front-side angle, set against a parking lot background with other vehicles, showcasing distinctive chrome accents and a prominent grille. +02399.jpg A black GMC Acadia SUV 2012 with a shiny exterior finish is parked in a showroom, seen from a side-front angle with visible silver wheels and large windows, against a backdrop of showroom displays and ceiling lights. +03134.jpg The GMC Acadia SUV 2012 in the image is a dark-colored vehicle with a glossy texture, viewed from a low front-side angle, set against an urban backdrop featuring tall buildings, and has distinctive chrome accents and bold grilles. +04518.jpg The GMC Acadia SUV 2012 is captured in a glossy red finish viewed from a front three-quarter angle, positioned indoors with a commercial background, and features prominent chrome detailing on the grille and shiny alloy wheels. +01635.jpg The GMC Acadia SUV 2012 is depicted in a three-quarter front-left view with a glossy red exterior, silver alloy wheels, and roof rails, set against a grassy lot with trees and other vehicles in the background. +00453.jpg The 2012 GMC Acadia SUV appears in a dark gray color with a sleek texture, viewed from a front-left side angle in a parking lot, featuring prominent alloy wheels and distinctive wraparound headlights. +01856.jpg The GMC Acadia SUV 2012 is depicted from a side view in a showroom setting, featuring a deep red metallic color with smooth, reflective texture, and distinctive silver rims against a neutral gray background. +00807.jpg The GMC Acadia SUV 2012 appears in a glossy black finish with silver accents, viewed from the rear three-quarter angle in an indoor setting with a white wall backdrop, showcasing large alloy wheels and a roof rack. +03491.jpg The GMC Acadia SUV 2012 in the image appears with a glossy black finish, seen from the front-left angle, showcasing its chrome-trimmed grille and distinct headlights, parked on a wet asphalt surface with a light industrial background. +06749.jpg The GMC Acadia SUV 2012 in the image is a vibrant red with a shiny texture, viewed from a front-left angle, parked on a paved lot in front of a building, featuring distinct chrome-accented grille and angular headlights. +03189.jpg The GMC Acadia SUV 2012 appears in a dark metallic color with a smooth texture, viewed from a front-side angle, positioned against an open, expansive landscape, featuring distinctive chrome accents and a prominent GMC grille logo. diff --git a/utils/area/descriptions/Car/generated_descriptions/GMC_Canyon_Extended_Cab_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/GMC_Canyon_Extended_Cab_2012_descriptions.txt new file mode 100644 index 0000000..b211311 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/GMC_Canyon_Extended_Cab_2012_descriptions.txt @@ -0,0 +1,20 @@ +00541.jpg A dark-colored GMC Canyon Extended Cab 2012 is viewed from a front-side angle parked on a dealership lot, featuring chrome wheels and a rugged grille, with a stone wall and greenery visible in the background. +06256.jpg A red GMC Canyon Extended Cab 2012 with a metallic finish is seen from a front three-quarter view on a dynamic, wet road setting, with prominent headlight and grille design, under a backdrop of industrial cranes against a dusk sky. +00270.jpg The GMC Canyon Extended Cab 2012 appears in a metallic blue with a smooth texture, viewed from the left side, parked on a road with a misty, green tree-lined background, highlighting its extended cab design and chrome-trimmed wheels. +03309.jpg The GMC Canyon Extended Cab 2012 is seen in a three-quarter front view with a glossy red finish and chrome accents, parked on a light gray pavement in a parking lot, distinguished by its extended cab, prominent front grille, and silver alloy wheels. +01454.jpg The GMC Canyon Extended Cab 2012 is seen in a three-quarter front view with a shiny maroon exterior, parked in a lot with a dealership sign in the background, featuring a distinctive extended cab and alloy wheels. +01172.jpg The GMC Canyon Extended Cab 2012, viewed from a front three-quarter angle, is black with a slightly dusty texture, featuring chrome wheels and a rugged design, set against a car dealership lot with other vehicles, trees, and a clear sky in the background. +04574.jpg The image shows a side view of a white GMC Canyon Extended Cab 2012 parked on a street beside a red-brick building, featuring shiny chrome wheels and a clean, reflective finish with minimal background distractions. +05925.jpg The GMC Canyon Extended Cab 2012 is shown from the front view, featuring a white body with black trim and grille highlights, parked on a smooth concrete lot with a neatly trimmed hedge background. +07300.jpg The GMC Canyon Extended Cab 2012 appears in a vibrant red color with a glossy finish, viewed from a rear three-quarter angle in a suburban driveway setting, featuring a visible chrome rear bumper and distinctive "Z71 4x4" off-road decal, with a backdrop of a brick house and green trees. +00907.jpg A beige-colored GMC Canyon Extended Cab 2012 is seen from a front-side angle in a parking lot with a brick wall background, featuring distinct angular headlights, chrome wheels, and a visible side step. +05704.jpg The GMC Canyon Extended Cab 2012 is seen in a front three-quarter view with a silver color and smooth texture, parked on a wet pavement outside a dealership featuring reflective glass doors and branding in the background, highlighting its signature grille and angular headlights. +01869.jpg A dark-colored GMC Canyon Extended Cab 2012 is viewed from the front-left angle, parked on a concrete surface with a dealership background, featuring gray alloy wheels and distinctive silver grille elements. +02466.jpg A white GMC Canyon Extended Cab 2012 is viewed head-on, showcasing its prominent grille and sleek headlight design, with a plain white background emphasizing its bold front silhouette. +01174.jpg The GMC Canyon Extended Cab 2012 is presented in a vivid red color with a glossy texture, viewed from a front three-quarter angle in a showroom setting, featuring distinctive angular headlights and prominent chrome grille details. +03789.jpg The image shows a side profile of a red GMC Canyon Extended Cab 2012 with a glossy finish, parked near a tranquil body of water at sunset, set against a blurred background of distant hills. +05166.jpg The GMC Canyon Extended Cab 2012 appears in a silver-grey color with a smooth texture, viewed from a rear three-quarter angle in a checkered floor studio environment, showcasing its extended cab design and distinctive taillight shape. +04387.jpg A white GMC Canyon Extended Cab 2012 is positioned at a slight diagonal angle in a showroom environment with a simple, smooth texture, featuring a prominent front grille, black lower bumper, and distinctive rear doors set against a neutral, curtain-draped background. +03473.jpg A dark-colored GMC Canyon Extended Cab 2012 with a glossy texture is photographed from a front-side angle in a snowy environment, featuring a distinctive grille and prominent wheel arches. +01655.jpg The GMC Canyon Extended Cab 2012 in the image is a shiny red truck viewed from the side profile, showcasing its extended cab with chrome wheels, set against a serene lakeside background during a sunset. +06337.jpg The GMC Canyon Extended Cab 2012 appears in metallic silver with smooth, understated contours, viewed from a front three-quarter angle against a rural roadside backdrop, featuring large alloy wheels and a distinctive red GMC badge on the grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/GMC_Savana_Van_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/GMC_Savana_Van_2012_descriptions.txt new file mode 100644 index 0000000..a76cf9d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/GMC_Savana_Van_2012_descriptions.txt @@ -0,0 +1,20 @@ +03193.jpg A light grey GMC Savana Van 2012 is viewed from the front-right angle, with ladders on its roof set against a backdrop of a partially constructed building, highlighted by its distinctive rectangular grille and red GMC badge. +02878.jpg The GMC Savana Van 2012 is displayed from a front view, showcasing a clean white exterior with a prominent black grille, surrounded by large side mirrors against a plain gray background. +01560.jpg The image shows a GMC Savana Van 2012 in a glossy dark green color with chrome accents viewed from a front three-quarter angle in a sunny car dealership lot, featuring a raised roof, side windows, and visible silver wheel rims. +06540.jpg The white GMC Savana Van 2012, viewed from the front-left side, features smooth panels and a prominent black grille in a well-lit indoor setting with a plain curtain backdrop, showcasing its large side mirrors and simple steel wheels. +05905.jpg The white GMC Savana Van 2012 is viewed from the rear-left angle, displaying black trim and handles, with a bright red tail light, set against a plain white background. +05318.jpg A white GMC Savana Van 2012 is seen from a front three-quarter angle, parked in an open lot with a visible industrial background, featuring a bold front grille and amber turn signals under overcast lighting. +05664.jpg The white GMC Savana Van 2012 is viewed from a front-left angle, showing its sleek, smooth texture with a prominent red GMC logo on the black grille, parked on a street with a cloudy sky and sparse trees in the background. +06470.jpg The image shows a white GMC Savana Van 2012 from a front-side angle, parked on a paved surface with visible parking lot lines, featuring prominent black trim and wheels, and a sunny dealership setting with light poles in the background. +02548.jpg The GMC Savana Van 2012 is white with a smooth texture, viewed from a rear three-quarter angle, featuring black accents around its windows, red taillights, and is set against a plain, neutral background. +00043.jpg The silver GMC Savana Van 2012 is viewed from a three-quarter front angle, showcasing its smooth metallic surface and boxy design against a flat, grey pavement background, with distinctive red GMC grille emblem and clear, tinted windows. +03318.jpg The GMC Savana Van 2012, seen from a front view, is predominantly white with a black grille, accented by red GMC branding and an orange turn signal detail, parked on an asphalt surface near a chain-link fence with grass and trees in the background under a clear sky. +04790.jpg The GMC Savana Van 2012 is silver with a black grille and bumper, viewed from the front-left at a slightly downward angle, parked on a paved area with utility poles and a lightly wooded, cloudy background. +08013.jpg The GMC Savana Van 2012 in the image is a white, extended van viewed from the side with visible sliding doors and black side mirrors, positioned in an indoor garage with concrete floors and illuminated by overhead industrial lighting. +02036.jpg A white GMC Savana Van 2012 is positioned at a slight angle in front of a repair shop, showcasing its boxy shape and black grille with red GMC lettering against the backdrop of garage signage and a paved lot. +02290.jpg A dark green GMC Savana Van 2012 is shown from a front three-quarter view, with smooth body panels, distinctive red GMC lettering on the grille, and a plain white studio background highlighting its boxy shape and silver wheels. +03095.jpg A white GMC Savana Van 2012 is captured in motion on a wet track, viewed from a front-side angle, with an overcast sky and snow-covered ground in the background, featuring a distinct red GMC logo on the grille and reflective hubcaps. +00169.jpg The image depicts a beige GMC Savana Van 2012 from the rear three-quarter view, highlighting its elongated body, tinted rear windows, red taillights, and situated against a plain white background. +01893.jpg The low-resolution image depicts a black GMC Savana Van 2012 with a glossy texture, captured from a front-side angle on an asphalt surface, surrounded by dense greenery, and features a prominent front grille with the GMC logo and silver wheels. +08056.jpg A light gray GMC Savana Van 2012 is shown from the rear-side angle, featuring sleek body panels, clear rear lights, and labeled badges, against a plain white studio backdrop. +05383.jpg The GMC Savana Van 2012 is shown in a rear three-quarter view with a rich burgundy color and smooth texture, featuring a white stripe taillight, set against a muted urban backdrop with large beige buildings. diff --git a/utils/area/descriptions/Car/generated_descriptions/GMC_Terrain_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/GMC_Terrain_SUV_2012_descriptions.txt new file mode 100644 index 0000000..2c02408 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/GMC_Terrain_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +01882.jpg A side-view image shows a metallic blue GMC Terrain SUV 2012, with its distinctive angular design and chrome-accented wheels, parked on a concrete surface against a white industrial building background. +02088.jpg The GMC Terrain SUV 2012 is viewed from the rear-left angle, showcasing its metallic blue color and glossy texture with chrome accents, set against a plain white studio background, and distinguished by its square tail lights and prominent GMC emblem. +04087.jpg The GMC Terrain SUV 2012 is a glossy maroon vehicle shown from a front three-quarter angle in a dealership lot, featuring a prominent chrome grille, square wheel arches, and surrounded by other parked cars. +03143.jpg The GMC Terrain SUV 2012 is white with a smooth texture, viewed from the side in a showroom setting with American flags, featuring chrome wheels and distinct angular rear quarter panels. +04305.jpg A metallic gray GMC Terrain SUV 2012 is viewed from the front-right angle, showcasing its distinctive rectangular grille and prominent wheel arches, set against a dealership backdrop with several white trucks and a clear sky. +04142.jpg The GMC Terrain SUV 2012 appears in a white color with a shiny texture, viewed from a front-side angle in a dealership setting with large windows and columns, featuring a distinct chrome grille and angular headlights. +05883.jpg The GMC Terrain SUV 2012 is viewed from the driver's side profile, featuring a silver body with a smooth texture and distinct black trim, situated in a car dealership parking lot with large blue signage in the background, and it exhibits alloy wheels with a flag on the roof. +04239.jpg The GMC Terrain SUV 2012 appears black with a chrome-accented grille prominently displaying the red GMC logo, viewed from a frontal perspective, set against a background of blue awnings and a suburban street. +01118.jpg A metallic beige GMC Terrain SUV 2012 is parked on a black asphalt lot, viewed from the front-left angle, featuring a prominent chrome grille and sleek body lines with a modern commercial building in the background. +06201.jpg The GMC Terrain SUV 2012 is a silver metallic vehicle with a distinctive chrome front grille viewed from a front three-quarter angle, set against a suburban driveway with palm trees and a garage door, featuring reflective chrome rims and roof rails. +03967.jpg The GMC Terrain SUV 2012 appears in metallic silver with a rugged texture, captured from a front-side angle against a paved lot background, highlighting its prominent chrome grille and squared, muscular wheel arches. +04564.jpg The low-resolution image shows a 2012 GMC Terrain SUV in a maroon color with a glossy texture, viewed from the front-right angle in a wet, overcast dealership lot, featuring distinctive chrome grille accents and rounded wheel arches. +04200.jpg The GMC Terrain SUV 2012 is viewed from the front-left angle, showcasing its beige color with a smooth texture and a prominent chrome grille, set against a car dealership backdrop. +06682.jpg The silver GMC Terrain SUV 2012, viewed from the front angle on a curving country road, features its signature square grille with a broad chrome trim, set against a blurred natural landscape. +07001.jpg A beige GMC Terrain SUV 2012 is viewed from the front-right angle, with chrome accents and prominent square headlights, parked against a backdrop of green bushes and white flowers on a sunny day. +05573.jpg The 2012 GMC Terrain SUV, viewed from the front-left angle, features a white body with a smooth finish, accented by chrome trim and a distinctive square grille, set against a dealership parking lot with other vehicles and a low building in the background. +05801.jpg The photo shows a crimson red GMC Terrain SUV 2012 with a chrome-accented front grille at a frontal three-quarter angle, set against a dealership building background featuring large "DAVIS" signage. +07014.jpg The red GMC Terrain SUV 2012 is viewed from a front-left angle, showcasing its chrome grille and headlights, parked on a paved lot with trees and signage in the background. +04444.jpg The red GMC Terrain SUV 2012 is viewed head-on, showcasing its chrome grille and prominent badge, set against a background of lush green trees on a dirt road. +02030.jpg The GMC Terrain SUV 2012 is viewed from the front-left, showcasing its silver color with a chrome-accented grille and GMC badge, set against a dimly-lit indoor environment with dark vertical paneling. diff --git a/utils/area/descriptions/Car/generated_descriptions/GMC_Yukon_Hybrid_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/GMC_Yukon_Hybrid_SUV_2012_descriptions.txt new file mode 100644 index 0000000..1b2f577 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/GMC_Yukon_Hybrid_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +07950.jpg The low-resolution image depicts a white GMC Yukon Hybrid SUV 2012 with a shiny chrome grille, distinctive hybrid badging, and polished wheels, viewed from an angled front-left perspective amidst a dealership-like setting featuring grassy patches and several buildings in the background. +04705.jpg This image shows a white GMC Yukon Hybrid SUV 2012 viewed from a front three-quarter angle against a beige building backdrop, featuring chrome rims and a distinctive hybrid badge on the side. +05100.jpg The 2012 GMC Yukon Hybrid SUV is shown in a front-side view with a glossy black exterior, chrome accents on the grille and wheels, against a grassy background with buildings and trees visible in the distance. +00777.jpg The image shows a white GMC Yukon Hybrid SUV from 2012, viewed from the front passenger side, with a distinctive chrome grille, shiny chrome wheels, and positioned in a plain indoor setting with a light grey floor and walls. +06039.jpg The GMC Yukon Hybrid SUV 2012 is white with a smooth texture, viewed from the driver's side profile showcasing "HYBRID" decals, parked on a street with a row of beige and red residential buildings in the background. +07398.jpg The GMC Yukon Hybrid SUV 2012 in the image is a glossy black vehicle with a silver grille, viewed from a front-left angle, parked on a shiny black tiled floor in a showroom with bright overhead lighting and glass display cases in the background. +06414.jpg The GMC Yukon Hybrid SUV 2012 is shown in a glossy black color with chrome accents, captured from a front-side angle on a curved road with dry grass in the background, featuring a distinctive mesh grille and polished alloy wheels. +03971.jpg The GMC Yukon Hybrid SUV 2012 is viewed from the front-left angle, showcasing its glossy black finish with chrome detailing, including a prominent grille and alloy wheels, set against a gradient gray background on a plain studio floor. +04986.jpg The GMC Yukon Hybrid SUV 2012 is silver with a smooth texture, viewed from a front three-quarter angle, set against a backdrop of a car dealership with other vehicles, featuring distinct chrome accents and a hybrid badge on the side. +07730.jpg The low-resolution image shows a black GMC Yukon Hybrid SUV 2012 with a glossy texture, viewed from the front-left angle, parked in an asphalt lot, with a distinctive large chrome grille and alloy wheels, set against a backdrop of a storefront with "Vestal" signage. +03977.jpg The image depicts a side view of a white GMC Yukon Hybrid SUV 2012 with smooth texture, sitting on a paved road in front of residential houses, featuring distinct rounded rectangular windows and silver alloy wheels. +02179.jpg The GMC Yukon Hybrid SUV 2012 appears in a metallic beige color with a smooth texture, viewed from a front-left angle, parked on pavement with a dealership building in the background, featuring chrome rims and the signature GMC grille. +06012.jpg The GMC Yukon Hybrid SUV 2012 in the image is primarily black with a reflective, glossy surface, viewed from the side in a dealership parking lot, featuring chrome wheels and distinct hybrid badging. +00296.jpg A black GMC Yukon Hybrid SUV 2012 is viewed from the front-left angle, showcasing its shiny chrome grille and wheels against a suburban backdrop with distant greenery. +00023.jpg The GMC Yukon Hybrid SUV 2012 in the image is black with a sleek, glossy texture, viewed from a front-side angle under a clear blue sky with a tree-lined background, featuring a distinctive chrome grille and shiny alloy wheels. +02404.jpg A silver GMC Yukon Hybrid 2012 SUV is shown in a side profile view against a seamless dark gradient background, featuring prominent hybrid branding and large alloy wheels. +03131.jpg The 2012 GMC Yukon Hybrid SUV is white with chrome detailing, viewed from the front-left angle under a clear sky in a dealership lot, featuring large chrome wheels and distinctive hybrid badging above the side molding. +04731.jpg A black GMC Yukon Hybrid SUV 2012 is shown from a low front-side angle, showcasing its chrome grille and wheels, against an open road and expansive sky backdrop. +03697.jpg The GMC Yukon Hybrid SUV 2012 in the image is black with a front view showing its distinctive chrome mesh grille and red GMC badge, surrounded by a plain indoor setting with white and gray walls. +02035.jpg The low-angle image shows a black GMC Yukon Hybrid SUV 2012 with a glossy texture, displaying chrome accents and large shiny wheels, positioned on a paved surface against a beige building backdrop with a prominent red advertisement text above. diff --git a/utils/area/descriptions/Car/generated_descriptions/Geo_Metro_Convertible_1993_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Geo_Metro_Convertible_1993_descriptions.txt new file mode 100644 index 0000000..8e441eb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Geo_Metro_Convertible_1993_descriptions.txt @@ -0,0 +1,20 @@ +07862.jpg A red Geo Metro Convertible 1993 is captured in a three-quarter rear view, parked on gravel with a grassy cemetery backdrop, featuring a black soft-top roof down, gray interior, and distinct rear light clusters. +05976.jpg A bright blue Geo Metro Convertible 1993 is viewed from a three-quarter front perspective, featuring a black soft top and standing on a dark asphalt driveway, surrounded by a suburban residential neighborhood with grassy lawns and a few trees in the background. +04139.jpg The Geo Metro Convertible 1993 appears in a vibrant yellow with a soft convertible top, viewed from the front left in a residential driveway with bare trees in the background and distinctive rounded headlights. +02089.jpg The Geo Metro Convertible 1993 in the image is a bright orange car with a smooth finish, viewed from a side angle with the top down, set against a suburban street with lush green foliage in the background, featuring simple silver alloy wheels and a compact, rounded body shape. +05601.jpg The image shows a yellow Geo Metro Convertible 1993 viewed from the side in an outdoor parking lot with bushes and trees, featuring a black soft-top roof, light alloy wheels, and subtle body lines, with a person seated inside. +07761.jpg The Geo Metro Convertible 1993 appears in bright blue with a smooth texture, viewed from a slight front-side angle, set against a suburban street with houses and trees, characterized by its black convertible top and distinctive aftermarket alloy wheels. +00619.jpg The Geo Metro Convertible 1993 appears in a glossy white color with a black convertible roof, viewed from a front-side angle on a leaf-strewn suburban street, featuring rounded headlights and a compact, streamlined body design. +01698.jpg The Geo Metro Convertible 1993 in the image is a bright blue vehicle with a contrasting black convertible top, viewed from a front-side angle in a parking lot with surrounding light gray cars and a building in the background, featuring distinct chrome hubcaps. +01314.jpg The red Geo Metro Convertible 1993 is viewed from the side, showcasing its soft black convertible top, set against a wooden fence and grassy lawn, with distinct round hubcaps and compact, streamlined body design. +07069.jpg The Geo Metro Convertible 1993 appears in a faded red color, viewed from a front-left angle, with a black convertible top and black wheels, set against a snowy, open landscape with sparse trees. +01787.jpg The image shows a light blue Geo Metro Convertible 1993 with a fabric top retracted, viewed from the side on a paved driveway, surrounded by lush greenery and trees, featuring distinctive rounded headlights and compact dimensions. +03431.jpg A pink Geo Metro Convertible 1993 is shown in a three-quarter side view on a paved residential street, distinguished by its compact size, open top, and simple body lines. +00596.jpg A bright blue Geo Metro Convertible 1993 is shown in profile with the top down, displaying its compact design against a backdrop of dense, green foliage. +04047.jpg The Geo Metro Convertible 1993 in the image is a teal convertible viewed from the side with its top down, set against a background of grass and trees, showcasing its rounded edges and compact design with a sleek, glossy finish. +03098.jpg The Geo Metro Convertible 1993 is seen from a rear side angle, showcasing a vibrant red body with a contrasting black soft top and distinctive blue graphic accents, parked on a paved surface with an overcast sky, trees, and signage in the background. +01166.jpg The white Geo Metro Convertible 1993 is viewed from a front-side angle, highlighting its compact, rounded design with a smooth paint texture; it sits on a gravel area surrounded by green grassy landscape and shows distinctive features like simplistic wheel covers and a dark gray interior with the convertible top down. +07347.jpg A white Geo Metro Convertible 1993 is shown in a profile view on a driveway, featuring a black soft top and surrounded by a suburban neighborhood with grassy lawns. +05254.jpg The Geo Metro Convertible 1993 in the image is bright blue with a white roof, viewed from the front-left at a low angle, set against a driveway with greenery and part of a building visible, featuring round headlights and a compact body profile. +01424.jpg The Geo Metro Convertible 1993 in the image is red with a black soft-top roof, viewed from a front-side angle, parked in a sunny paved area with a shadow, featuring its compact build and rounded headlights. +03955.jpg The image shows a bright blue Geo Metro Convertible 1993 viewed from the side, with a slightly worn texture, positioned in a grassy area near a small wooden structure and surrounded by a fenced area with visible greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions/HUMMER_H2_SUT_Crew_Cab_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/HUMMER_H2_SUT_Crew_Cab_2009_descriptions.txt new file mode 100644 index 0000000..374ca78 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/HUMMER_H2_SUT_Crew_Cab_2009_descriptions.txt @@ -0,0 +1,20 @@ +03319.jpg The HUMMER H2 SUT Crew Cab 2009 appears in a metallic blue color with a shiny texture, viewed from a front angle showing its prominent grille and silver skid plate, parked on a concrete surface outside a dealership with large chrome wheels and a robust, angular build. +02962.jpg The HUMMER H2 SUT Crew Cab 2009 is shown in a metallic beige color with a rugged, boxy design, viewed from a front-side angle on grass with a backdrop of a parking lot and palm trees, highlighting its prominent grille, high ground clearance, and chrome wheels. +03247.jpg A white HUMMER H2 SUT Crew Cab 2009 is parked on a residential driveway, featuring a front-side angle view with a rugged, robust texture, black detailing, large tires, and a prominent "HUMMER" logo on the side, surrounded by a suburban setting with houses and trees. +03481.jpg The image shows a rear view of an orange HUMMER H2 SUT Crew Cab 2009 with a glossy texture, featuring large off-road tires, a visible "H2" badge, and set against a paved area with some greenery and a building in the background. +06246.jpg The bright orange HUMMER H2 SUT Crew Cab 2009 is viewed from an elevated front-side angle, showcasing its rugged design with large off-road tires, a black textured grille with hood vents, roof-mounted auxiliary lights, and parked on wet asphalt next to a brick building. +02926.jpg The HUMMER H2 SUT Crew Cab 2009 appears in glossy black with chrome detailing, viewed from a side angle highlighting its rugged tires and boxy frame, set against a lush, leafy backdrop. +04748.jpg The HUMMER H2 SUT Crew Cab 2009 is presented in a metallic gray finish with a robust, angular design, viewed from a low front angle against a backdrop of a brick building, featuring distinct chrome wheels and a bold grille that emphasize its rugged character. +06578.jpg The 2009 HUMMER H2 SUT Crew Cab appears in a metallic gray color with a robust and boxy design, viewed from a front-side angle showcasing its rugged tires and signature grille, set against a plain white background. +02271.jpg The image depicts a white HUMMER H2 SUT Crew Cab 2009 with a boxy, rugged design viewed from the front left angle, featuring prominent wheel arches, tubular side steps, and a distinctive grille in a showroom environment with a Texas flag visible in the background. +06601.jpg The HUMMER H2 SUT Crew Cab 2009 in the image is bright orange with a rugged texture, viewed from a low angle front three-quarter perspective, set against a backdrop of desert rock formations, featuring a distinctive grille and noticeable fender flares. +06153.jpg The 2009 HUMMER H2 SUT Crew Cab is bright red with a glossy texture, viewed from the front-left angle, set in a showroom environment with spotlights above, showcasing its rugged grille, chrome side steps, and distinctive black wheel arches. +05242.jpg The HUMMER H2 SUT Crew Cab 2009 in the image is a metallic gray truck with a rugged, angular design, viewed from a side angle in a dealership parking lot with a bright, clear sky reflecting off its shiny surface and featuring pronounced wheel arches and large chrome wheels. +02482.jpg The HUMMER H2 SUT Crew Cab 2009 is displayed in vibrant orange with a rugged texture, viewed from a low angle highlighting its front and side in a desert-like environment, featuring bold squared lines, chrome accents, and large tires against a backdrop of red rock formations. +03843.jpg The HUMMER H2 SUT Crew Cab 2009 is shown in a side view with a glossy white finish, prominent black decals, rugged black wheels, and spare tire, set against a suburban driveway with greenery and neighboring houses in the background. +07708.jpg The HUMMER H2 SUT Crew Cab 2009 is shown in a metallic gray color with a rugged texture, viewed from a front side angle on an urban rooftop, featuring distinctive chrome grille and robust tires against a skyscraper backdrop. +00381.jpg This low-resolution image shows a white HUMMER H2 SUT Crew Cab 2009 with a glossy texture, viewed from a low front-side angle, set against a paved area with a modern building in the background, featuring notable chrome wheels and a distinctive boxy grille. +03796.jpg The HUMMER H2 SUT Crew Cab 2009 in a subdued metallic gray stands on a grassy terrain, with its robust front grille and prominent wheel arches visible, positioned amid rock formations in the background. +05106.jpg The 2009 HUMMER H2 SUT Crew Cab appears in a glossy white finish with a rugged exterior, as seen from a front-angled view, featuring distinctive chrome grille bars and large tires, set against a suburban street backdrop. +03364.jpg The HUMMER H2 SUT Crew Cab 2009 appears from a side viewpoint with a vivid red and black two-tone color scheme featuring a striking jagged transition on the side, silver alloy wheels, rugged, squared-off body lines, and is set against an urban backdrop with palm trees and pavement. +06363.jpg A bright orange HUMMER H2 SUT Crew Cab 2009 is viewed from a low angle, showcasing its lifted suspension, black off-road wheels, and chrome accents, with a brick building and wet pavement reflected in the foreground. diff --git a/utils/area/descriptions/Car/generated_descriptions/HUMMER_H3T_Crew_Cab_2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/HUMMER_H3T_Crew_Cab_2010_descriptions.txt new file mode 100644 index 0000000..4384126 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/HUMMER_H3T_Crew_Cab_2010_descriptions.txt @@ -0,0 +1,20 @@ +00617.jpg The HUMMER H3T Crew Cab 2010 is black with a shiny finish, viewed from a front three-quarter angle with distinctive chrome grille and rims, parked on a paved area near a car dealership, highlighted by its robust build and rooftop rails. +03706.jpg The HUMMER H3T Crew Cab 2010 is a bright orange vehicle with a rugged texture, viewed in profile against a barren desert landscape with a clear blue sky, featuring bold body lines and black fender flares. +01043.jpg The HUMMER H3T Crew Cab 2010 is a matte white truck with a rugged texture, viewed from a front three-quarters angle, showcased indoors on a dark carpet, featuring prominent black wheels and a distinctive black grille with bold vertical slats. +08134.jpg The white HUMMER H3T Crew Cab 2010, viewed from a front three-quarter angle, is parked in a rugged forest setting with large rocks on the ground and features a prominent front grille and sturdy build, while a motorcyclist rides in the blurred background. +04716.jpg The HUMMER H3T Crew Cab 2010 is visibly red with a sturdy, angular build and chrome accents, seen from a side angle driving on a flat desert landscape with distant mountains, towing a dual-axle trailer. +02618.jpg The HUMMER H3T Crew Cab 2010 is bright red-orange with a glossy finish, seen from a front three-quarter view in an indoor showroom setting, featuring its distinctive chrome grille and prominent hood vent. +04800.jpg The 2010 HUMMER H3T Crew Cab in a vibrant orange color is seen from a side profile, featuring rugged, matte-finish black rims against the backdrop of an indoor automotive show, with a distinctive motorcycle securely fastened in the truck bed. +05205.jpg A silver HUMMER H3T Crew Cab 2010 is depicted at a front-facing angle navigating rocky terrain, with its distinctive chrome grille and rugged off-road tires prominently visible against a backdrop of trees and large rocks. +02443.jpg The HUMMER H3T Crew Cab 2010 appears in a metallic silver color with a matte black hood accent, viewed from an angled front perspective, parked beside a corrugated metal building, showcasing its prominent grille and rugged tires. +02254.jpg The HUMMER H3T Crew Cab 2010 is silver with a rugged texture, viewed from a low angle emphasizing its chrome front brush guard and wheels, set against a clear sky, parked on a brick surface. +02049.jpg The image shows a rear view of a HUMMER H3T Crew Cab 2010 with a red exterior, featuring a rugged black truck bed and tailgate branding, against a plain white background, with a red and black item inside the truck bed. +01999.jpg A bright red HUMMER H3T Crew Cab 2010 is positioned in a side-front view on a rocky desert terrain, featuring a bold grille, relatively large tires, and distinct angular design elements typical of HUMMERs. +04248.jpg The 2010 HUMMER H3T Crew Cab in bright orange features a rugged, boxy design with a prominent grille and large off-road tires, captured from a front-side angle against a desert landscape with red rock formations. +07271.jpg The HUMMER H3T Crew Cab 2010 appears in a matte olive green color with a rugged texture, viewed from the side in a parking lot environment, with large wheel arches and a distinctive short cargo bed. +05899.jpg The HUMMER H3T Crew Cab 2010 is shown in a three-quarter front view with a shiny black paint finish, distinctive chrome grille, and rugged off-road tires, parked in a used car lot environment with other vehicles and grassy ground visible. +00060.jpg A silver HUMMER H3T Crew Cab 2010 with a rugged texture is parked at an angle in a forest setting with a yellow kayak on its roof. +04223.jpg The HUMMER H3T Crew Cab 2010, seen from a three-quarter front view in an indoor show environment, features a vibrant orange color with a glossy finish, equipped with rugged black and silver alloy wheels, a distinctive chrome grille, and noticeable roof cargo. +03123.jpg The HUMMER H3T Crew Cab 2010, viewed from the rear three-quarter angle, features a dark gray color with a smooth texture, prominent boxy shape, and distinctive round wheel arches, set against a backdrop of a concrete parking area. +07750.jpg The image shows a front view of a silver HUMMER H3T Crew Cab 2010 with a bold, robust grille featuring circular headlights and amber corner lights, against a plain white background. +06623.jpg The HUMMER H3T Crew Cab 2010 is a matte gray truck viewed from a rear three-quarter angle, parked on gravel with mountainous terrain in the background, featuring rugged tires and distinct red and silver decals on the tailgate. diff --git a/utils/area/descriptions/Car/generated_descriptions/Honda_Accord_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Honda_Accord_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..f2b7441 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Honda_Accord_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +07945.jpg The Honda Accord Coupe 2012 appears in a metallic gray finish with a glossy texture, viewed from the rear three-quarter angle in a dealership lot, showcasing its distinctively sloped rear roofline, pronounced taillights, and alloy wheels. +06109.jpg The Honda Accord Coupe 2012 is a sleek silver vehicle with a metallic finish, viewed from the front-left angle, displaying smooth aerodynamic contours with distinctive alloy wheels, parked in a showroom environment with a polished floor and promotional materials. +05411.jpg A red Honda Accord Coupe 2012 is shown from the rear, parked on a cobblestone driveway adjacent to a beige stucco house with distinct dual exhausts and a prominent V6 badge. +04995.jpg The image shows a gray Honda Accord Coupe 2012 with a sleek metallic texture captured from a front-side angle in a sunny parking lot, highlighting its prominent grille and five-spoke alloy wheels against a backdrop of palm trees and clear signage. +06493.jpg The image shows a red Honda Accord Coupe 2012 with a glossy finish, viewed from the front-left angle in an indoor showroom environment, featuring its sleek two-door design, prominent front grille, and alloy wheels amidst other displayed vehicles. +01389.jpg The image shows a red Honda Accord Coupe 2012 with a glossy texture, viewed from the front left angle in a parking lot surrounded by other cars and a green tree line in the background, featuring distinctive chrome grille accents and sleek headlights. +05308.jpg The 2012 Honda Accord Coupe is depicted in a vivid red color with a sleek, glossy finish, shown in a side profile against a minimalistic indoor setting with a stage-like platform and a blue-lit wall backdrop, highlighting its aerodynamic silhouette and distinct alloy wheels. +04756.jpg The Honda Accord Coupe 2012 is shown in a bright, glossy red from a rear-side view against a simple dark background, revealing its aerodynamic shape, sleek rear spoiler, and distinctive alloy wheel design. +02725.jpg The Honda Accord Coupe 2012 is depicted in a vibrant red color with a glossy texture, captured from a front-side angle in a parking lot, flanked by similar vehicles with discernible sharp front headlights and a smooth, curving hood. +03407.jpg A silver Honda Accord Coupe 2012 is shown from the front-right angle, featuring sleek lines, prominent headlights, and a landscaped background with green foliage and a concrete wall. +03783.jpg The Honda Accord Coupe 2012, seen in a dynamic side view on a road, features a sleek red body with smooth, reflective textures, framed by a blurred natural green and brown landscape, and showcases its distinctive curved roofline and alloy wheels. +06274.jpg The Honda Accord Coupe 2012 appears in a glossy red finish with smooth curves, viewed from a front three-quarter angle on a road with a clear sky in the background, featuring distinct headlights and alloy wheels. +05460.jpg The image shows a red Honda Accord Coupe 2012 with metallic sheen viewed from a rear three-quarter angle, set against a blurred, vibrant landscape with green hues, showcasing distinct taillights and dual exhausts. +00983.jpg A red Honda Accord Coupe 2012 is captured moving forward on a curved road, emphasizing its sleek profile with smooth contours and a distinctive front grille, set against a subtly blurred, rural backdrop of roads and foliage. +03802.jpg The image depicts a metallic gray Honda Accord Coupe 2012 viewed from the front right angle, showcasing its smooth contoured body and five-spoke alloy wheels against a plain white studio backdrop. +04145.jpg A vibrant red Honda Accord Coupe 2012 is captured in profile at speed on a highway, with blurred green foliage in the background, highlighting its sleek aerodynamic shape and five-spoke alloy wheels. +07961.jpg The image shows a red Honda Accord Coupe 2012 viewed from the rear side, showcasing its sleek two-door design and silver alloy wheels, parked on a paved area with a green, shrub-covered hillside in the background. +07952.jpg The Honda Accord Coupe 2012 is a vibrant blue, sleekly contoured vehicle viewed from a front three-quarter angle, set against a minimalist gradient backdrop, with distinctive multi-spoke alloy wheels and a streamlined design accentuating its sporty aesthetic. +03915.jpg A black Honda Accord Coupe 2012 is viewed from a front-left angle, exhibiting a sleek and glossy sheen with visible alloy wheels, against a plain white background that accentuates the car's sporty contours. +08120.jpg The 2012 Honda Accord Coupe appears in a sleek black color with a glossy finish, viewed from the front-right angle, parked on a wet asphalt surface near a dealership, showcasing its distinctive two-door design and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Honda_Accord_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Honda_Accord_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..02f2e6a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Honda_Accord_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +06724.jpg The image shows a metallic gray Honda Accord Sedan 2012 viewed from a rear three-quarter angle, with a streamlined body design and distinct rear taillights set against a neutral, indoor showroom backdrop. +00729.jpg A black Honda Accord Sedan 2012 is parked at a slight angle in front of a car dealership with blue accents, featuring a shiny exterior, silver alloy wheels, and distinctively shaped headlights. +03876.jpg The image shows a silver Honda Accord Sedan 2012 from a side profile in a parking lot with a visible American flag, asphalt ground, and a background of white buildings, including one displaying a Ford sign. +05853.jpg A maroon Honda Accord Sedan 2012 is viewed from the side in front of a dealership entrance, highlighting its sleek body, reflective surfaces, and alloy wheels, with a showroom backdrop and clear signage above. +07687.jpg The low-resolution image shows a white Honda Accord Sedan 2012 viewed from a side angle parked on a paved area, with chrome-trimmed windows and alloy wheels, set against a backdrop of a building and several parked cars. +05958.jpg The Honda Accord Sedan 2012 in the image appears in a metallic gray color with a smooth texture, captured from a rear three-quarter viewpoint in a parking lot, showcasing its distinctive taillight design and subtle rear bumper styling. +04843.jpg The image shows a gray Honda Accord Sedan 2012 with a smooth, wet surface from rain, captured from a rear three-quarter angle in a parking lot surrounded by other vehicles and trees, featuring prominent tail lights and a distinct rear license plate area. +07695.jpg The Honda Accord Sedan 2012 is shown in a three-quarter front view with a deep metallic gray color, featuring sleek headlights and a chrome grille, set against a serene coastal backdrop with rocky shores and a golden sunset. +04984.jpg The Honda Accord Sedan 2012 appears in a deep maroon color with a smooth texture, viewed from a side profile against a plain white brick wall, highlighting its sleek, elongated body lines and multi-spoke alloy wheels. +00699.jpg The Honda Accord Sedan 2012 is shown in a white color with a smooth glossy texture, viewed from the front-right angle, parked on a gravel surface against a backdrop of glass-panelled buildings, featuring a chrome grille and sleek headlights. +04112.jpg The Honda Accord Sedan 2012 appears in a deep maroon color with a glossy finish, captured from a rear three-quarter angle in an outdoor dealership setting, showcasing its distinct rear light clusters and sleek tail design against a backdrop of a building and parked cars. +04561.jpg The Honda Accord Sedan 2012 in the image is a silver-colored car with a smooth texture, viewed in profile from the driver's side, parked in a lot with a dealership building and trees visible in the background, featuring its characteristic chrome trim and multi-spoke alloy wheels. +06582.jpg The image shows a silver-gray Honda Accord Sedan 2012 viewed from the front-left angle, showcasing its sleek metallic finish and prominent grille, with a plain white background that highlights its distinctive headlights and streamlined body design. +02986.jpg The image shows a light blue 2012 Honda Accord Sedan from a low-front viewpoint on a city street with a modern, blurred urban background and distinct front grille and headlights. +07230.jpg The Honda Accord Sedan 2012, viewed from a rear-side angle, is a glossy black with a sleek body, set against a sunlit industrial background with a warehouse, featuring distinctive red tail lights and chrome exhaust tips. +02666.jpg The silver Honda Accord Sedan 2012 is seen from a front three-quarter angle, displaying its chrome grille and smooth texture, with a suburban street and parked cars in the background. +07443.jpg The Honda Accord Sedan 2012 features a sleek white exterior with a smooth texture, viewed from a front three-quarter angle, against a simple dark background with distinct chrome accents on the grille and alloy wheels. +08089.jpg The Honda Accord Sedan 2012 appears in a metallic maroon color with a shiny texture, viewed from a front-facing angle, set against a paved parking lot with industrial buildings and hills in the background, featuring a prominent chrome grille and distinctive wide headlamps. +04400.jpg The image shows a gray 2012 Honda Accord Sedan with a sleek, smooth texture, viewed from the front left angle, parked on a grassy area with a building in the background, featuring distinct front grille and visible alloy wheels. +02978.jpg The image displays a white Honda Accord Sedan 2012 from a front three-quarter view parked in a lot, featuring smooth body lines, distinct front grille with chrome accents, and classic alloy wheels, set against a backdrop of parked vehicles and trees. diff --git a/utils/area/descriptions/Car/generated_descriptions/Honda_Odyssey_Minivan_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Honda_Odyssey_Minivan_2007_descriptions.txt new file mode 100644 index 0000000..4886fe8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Honda_Odyssey_Minivan_2007_descriptions.txt @@ -0,0 +1,20 @@ +01942.jpg The Honda Odyssey Minivan 2007 in the image appears in a silver color with a clean, smooth texture, viewed from a three-quarter front angle, parked on a cobblestone driveway with trees and a building in the background, showcasing its distinctively angled headlamps and wide grille. +02733.jpg The image shows a dark blue 2007 Honda Odyssey Minivan with a front three-quarter view, set in an urban environment with a light-colored building in the background, featuring alloy wheels and a chrome grille. +01037.jpg The image shows a gray Honda Odyssey Minivan 2007 with a smooth metallic texture, viewed from a front-side angle against an indoor showroom backdrop, featuring distinct headlights, a chrome-finished front grille, and visible dealership signage. +03836.jpg The image shows a maroon Honda Odyssey Minivan 2007 viewed from a three-quarter angle against a verdant, tree-lined backdrop, featuring distinctively large, angular headlights and silver alloy wheels on a dark paved surface. +03960.jpg The Honda Odyssey Minivan 2007, in a metallic silver finish with a smooth texture, is viewed from the front-left angle, parked on a dark gray asphalt surface beside a beige brick wall with sharp shadow contrasts and framed by a lone evergreen tree, featuring clear headlights and a chrome grille. +06932.jpg The 2007 Honda Odyssey Minivan in the image is a metallic gray color with a smooth texture, viewed from a front-side angle, parked on a paved surface in front of a large, industrial warehouse, with visible white wheel covers and distinctively curved front headlights. +00659.jpg The 2007 Honda Odyssey Minivan in the image appears in a metallic gray color with a smooth texture, viewed from a front three-quarter angle, parked in an outdoor car dealership surrounded by other vehicles and buildings, with noticeable features like its curved front end and chrome grille. +04980.jpg The 2007 Honda Odyssey Minivan appears in a metallic light blue color with a smooth texture, shown in a three-quarter front view in a dealership parking lot, highlighting its distinctive sliding door and sleek headlight design against a backdrop of a Subaru showroom. +06552.jpg The 2007 Honda Odyssey Minivan is viewed from a front three-quarter angle, displaying its silver color and smooth texture against a sunny suburban street backdrop, with distinctive chrome grille and large windows. +00309.jpg The Honda Odyssey Minivan 2007 appears in a smooth white color with a side profile view, parked on a concrete driveway surrounded by a suburban lawn and residential houses, featuring characteristic shaped rear windows and silver alloy wheels. +01514.jpg A silver Honda Odyssey Minivan 2007, viewed from a three-quarter front angle, is parked on a residential street with trees and blurred houses in the background, featuring a sleek, slightly curved body with visible roof rails and five-spoke alloy wheels. +03322.jpg The low-resolution image shows a metallic gold Honda Odyssey Minivan 2007 viewed from a front-left angle, with shiny paint and a smooth texture, parked in a dealership environment alongside other vehicles, and distinctively featuring large headlights and a prominent grille. +07072.jpg A white Honda Odyssey Minivan 2007 with smooth, clean texture is shown in a side-rear three-quarter view on a suburban street, featuring distinctive taillights, alloy wheels, and a roof rack, against a backdrop of bushes and trees. +06607.jpg A silver Honda Odyssey Minivan 2007 is viewed from a rear side angle, parked on a paved area with trees and a building in the background, featuring a smooth metallic texture and distinctive taillights. +07597.jpg The Honda Odyssey Minivan 2007 in the image is a white vehicle with a smooth texture, shown in a three-quarter front view parked on a paved area in front of a brick building, featuring distinctively slanted headlights and a prominent front grille. +03202.jpg The 2007 Honda Odyssey Minivan is a metallic beige color viewed from the front-right, featuring dark-tinted windows, silver alloy wheels, and is parked in a lot with green trees and another vehicle visible in the background. +06266.jpg A silver Honda Odyssey Minivan 2007 with a smooth, metallic texture is viewed from the front-left side in a parking lot featuring palm trees, showcasing its distinct front grille and streamlined body design. +02554.jpg The Honda Odyssey Minivan 2007 appears in metallic silver with a smooth texture, viewed from the front-left angle on a sunlit driveway, set against a suburban background with trees and a brick house, highlighting its distinct grille and compact shape. +06533.jpg The Honda Odyssey Minivan 2007 appears in a dark metallic gray color with a smooth, reflective texture, viewed from a front angled perspective showcasing its prominent grille and headlights, set against a lush green, tree-filled background. +03729.jpg The 2007 Honda Odyssey Minivan, viewed from the rear right, features a deep blue color with a speckled texture under an overcast sky, parked on gray asphalt with red trees and shopping area in the background, displaying prominent taillights and a slightly protruding rear bumper. diff --git a/utils/area/descriptions/Car/generated_descriptions/Honda_Odyssey_Minivan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Honda_Odyssey_Minivan_2012_descriptions.txt new file mode 100644 index 0000000..5b22b03 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Honda_Odyssey_Minivan_2012_descriptions.txt @@ -0,0 +1,20 @@ +06112.jpg The Honda Odyssey Minivan 2012 appears in a metallic gray color with a sleek texture, viewed from a front three-quarter angle, set against a rural backdrop with trees and open land, featuring distinctive large headlights and a prominent chrome grille. +05895.jpg The silver 2012 Honda Odyssey Minivan, viewed from a rear three-quarter angle, features a smooth metallic texture, distinct side contouring lines, a dark rear window panel, and is set against a lush, green tree-lined background. +03815.jpg The 2012 Honda Odyssey Minivan in the image appears in a metallic gray color with a smooth texture, viewed from the side showing its sleek profile and distinct rear window angle, set against a backdrop of a light-colored building with green shrubbery at the base. +03682.jpg A silver Honda Odyssey Minivan 2012 is displayed in a side profile view against a plain dark gradient backdrop, with visible distinguishing features like sharp angled rear windows and chrome door handles. +02984.jpg The 2012 Honda Odyssey Minivan appears in a sleek silver color with a smooth texture, viewed from a front three-quarter angle against a minimalist background with diagonal lines, showcasing its distinctive chrome grille and modern headlight design. +03441.jpg The low-resolution image shows a silver Honda Odyssey Minivan 2012, viewed from the side in a grassy area with a tree-lined backdrop, featuring distinctive sliding door lines and sleek windows. +06497.jpg The Honda Odyssey Minivan 2012 is shown in a metallic gray color with a glossy texture, viewed from a front-side angle against a suburban street environment, featuring distinct alloy wheels and marked by its characteristic sharp body lines and sliding side doors. +05935.jpg The Honda Odyssey Minivan 2012 is a silver vehicle with a smooth, reflective surface viewed from a front-side angle amidst a sunset-lit environment with palm trees and a trimmed hedge in the background, featuring distinctive chrome detailing and angular headlamps. +04720.jpg The Honda Odyssey Minivan 2012 appears in a glossy silver color with a smooth texture, shown in a front three-quarter view, set against a plain white background, featuring a chrome grille and distinctive angular headlights. +01727.jpg The Honda Odyssey Minivan 2012 appears in a sleek silver color with a glossy finish, captured from a front three-quarter view, showcasing its chrome grille design and five-spoke alloy wheels, set against a plain white background. +00941.jpg The 2012 Honda Odyssey Minivan appears in a metallic blue color with a slightly reflective texture, viewed from a front-side angle, parked on a concrete driveway with a suburban house and lush greenery in the background, featuring prominent sliding side doors and sleek, angled headlights. +06376.jpg The image shows a metallic bronze Honda Odyssey Minivan 2012 viewed from the side with reflective glass windows, chrome trim, and parked in front of a modern building with large glass windows. +00484.jpg A gray Honda Odyssey Minivan 2012 is positioned in a driveway, viewed from a three-quarter front angle, with sleek body lines and a sunlit backdrop of suburban greenery and a garage. +01642.jpg The Honda Odyssey Minivan 2012 appears in a sleek black color with a polished finish, viewed from the side with a brick residential background and a distinctive roofline and chrome accents visible. +02449.jpg The Honda Odyssey Minivan 2012 appears in a metallic silver-blue color with a smooth texture, viewed at a three-quarter angle from the front, parked on a paved surface with a background of lush green trees, featuring distinctively shaped headlights and a prominent front grille. +03987.jpg The Honda Odyssey Minivan 2012 appears in a silver color with a smooth texture, viewed from a front three-quarter angle, set against a split background of white and gray, with distinct alloy wheels and sleek, pronounced body lines. +07322.jpg The vehicle is a dark maroon 2012 Honda Odyssey Minivan with a shiny texture, viewed from a front-side angle, parked on a cobblestone driveway with a rustic brick building and potted plants in the background, highlighting its distinctive front grille and alloy wheels. +01344.jpg The 2012 Honda Odyssey Minivan is shown in a metallic dark gray color with sleek running lines, viewed from a rear three-quarter angle against a plain white and gray background, featuring distinct tail lights and a subtle roof spoiler. +07111.jpg The 2012 Honda Odyssey Minivan appears in a metallic beige color with a sleek side profile view, highlighted by its distinctive chrome accents and visible alloy wheels, set against a modern building background. +05864.jpg The 2012 Honda Odyssey Minivan appears in a glossy white finish with a rear three-quarter view, positioned against a plain white wall background, featuring distinct tail lights and a black rear window spoiler. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Accent_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Accent_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..3cb7be8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Accent_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +00229.jpg The image shows a white Hyundai Accent Sedan 2012 in a side profile view, set against a solid black background, with its distinctive upward-sloping character line and sleek contour visible. +00648.jpg The Hyundai Accent Sedan 2012 is a glossy red vehicle captured in a side profile against a modern, wooden-slatted wall backdrop, showcasing its sleek silhouette and distinctively curved headlights. +05733.jpg The Hyundai Accent Sedan 2012, viewed from a front-side angle, appears in light silver with a smooth texture, featuring distinctive modern headlights and alloy wheels, set against a parking lot with blue sky and nearby vehicles in the background. +01915.jpg A deep blue Hyundai Accent Sedan 2012 is seen from a front-side angle on a street, with its sleek, streamlined body, prominent grille, and silver alloy wheels, set against a modern urban backdrop with trees and geometric building facades. +00680.jpg A red Hyundai Accent Sedan 2012 is captured from a front-side angle driving on a road, with its smooth, sleek body reflecting light, set against a background of modern blue and white vertical panels. +04633.jpg The Hyundai Accent Sedan 2012 is depicted in a silver color with a smooth texture, captured from a front-side angle, against a plain white background, highlighting its distinctive grille and sleek headlight design. +03086.jpg A sleek, silver Hyundai Accent Sedan 2012 is positioned in a studio setting on a clear, neutral background, highlighting its streamlined profile, bold front grille, and alloy wheels from a three-quarter front angle. +02374.jpg The image depicts a white Hyundai Accent Sedan 2012 viewed from a front-left angle, showing its sleek body and prominent grille, set against a dealership background with other parked cars and a partly cloudy sky. +00129.jpg The image displays a red Hyundai Accent Sedan 2012 with a shiny, smooth texture viewed from a side angle in a brightly lit, industrial setting with machinery and people in the background, featuring distinctly visible alloy wheels and a sleek body profile. +05296.jpg The Hyundai Accent Sedan 2012 is displayed in a glossy red finish viewed from a front-side angle on a carpeted showroom floor, exhibiting distinct sleek headlights and a curved aerodynamic design. +03569.jpg The Hyundai Accent Sedan 2012 appears in a shiny red color, shown in a left side profile against a backdrop of wooden slats, highlighting its sleek curves and alloy wheels. +05955.jpg The Hyundai Accent Sedan 2012 in the image displays a glossy red finish with a view from the rear three-quarter angle, parked in an industrial-like setting with a metallic wall and ambient lighting, featuring distinct tail lights and angled rear windows. +03693.jpg The Hyundai Accent Sedan 2012 appears in a sleek metallic silver with smooth, aerodynamic lines, viewed from a front three-quarter angle against a plain white background, featuring distinctive large headlamps and a prominent Hyundai emblem on the grille. +06992.jpg The image shows a red Hyundai Accent Sedan 2012 with a sleek, glossy finish, viewed from the front-right angle, parked in an urban setting with modern glass buildings and greenery in the background, highlighting its curved headlights and silver alloy wheels. +06843.jpg A red Hyundai Accent Sedan 2012 is viewed from a rear three-quarter angle, parked indoors with a modern architectural background, featuring visible taillights and a slightly elevated rear design. +01400.jpg The Hyundai Accent Sedan 2012 is a vibrant red vehicle with a sleek, glossy finish, captured from a side profile against a modern striped wall, featuring distinctive alloy wheels and a smooth contouring design. +07915.jpg The image displays a red Hyundai Accent Sedan 2012 with a smooth finish, viewed from a rear-side angle on a flat gray pavement, against a backdrop of industrial gray and red-orange walls, distinctively highlighted by its compact body and curving side lines. +06818.jpg The light blue Hyundai Accent Sedan 2012 is viewed from the front passenger side in a dealership lot, featuring a slightly sloping roofline, compact headlights, and a palm tree in the background. +07181.jpg A silver Hyundai Accent Sedan 2012 is shown from a three-quarter front view, highlighting its streamlined body and distinct headlight design, set against a dark, neutral background. +01623.jpg A silver Hyundai Accent Sedan 2012 is viewed from the front with its sleek headlights and chrome-accented grille standing out against a plain white background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Azera_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Azera_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..1fa1dbc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Azera_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +07078.jpg The photo shows a silver Hyundai Azera Sedan 2012 with a sleek, streamlined profile viewed from the rear three-quarter angle, featuring a shiny metallic texture, distinctive alloy wheels, and a blurred urban highway background with greenery and road signs. +01204.jpg The Hyundai Azera Sedan 2012 appears in a glossy black finish with a polished texture, viewed from a front three-quarter angle, parked indoors on a warm wooden floor, featuring a distinctive chrome grille and sleek headlights, with a cityscape seen through large windows. +03542.jpg The image shows a metallic silver Hyundai Azera Sedan 2012 with sleek, smooth lines and chrome accents, viewed from a front angular perspective on a circular platform in a dimly lit showroom environment, highlighted by blue ambient lighting. +05898.jpg The low-resolution image shows a metallic brown Hyundai Azera Sedan 2012 from a front three-quarter view, accented by its prominent chrome grille and smooth, flowing body lines, cruising on a blurred highway with distant foliage and a cloudy sky in the background. +07330.jpg The Hyundai Azera Sedan 2012 in the image is a metallic beige sedan viewed from a rear three-quarter angle, showing sleek curves, a prominent rear light cluster, and set against a modern building backdrop. +07324.jpg A white Hyundai Azera Sedan 2012 is shown from a front-right angled view, parked on a city street with trees and skyscrapers in the background, featuring a distinctive chrome-accented grille and alloy wheels. +01850.jpg The image shows a silver-colored Hyundai Azera Sedan 2012 viewed from a front-side angle on a curved road, with distinctive sleek headlights and a prominent grille, set against a scenic backdrop featuring a large body of water and rocky terrain. +00145.jpg The Hyundai Azera Sedan 2012 in the image appears as a metallic gray vehicle viewed from the front with distinguishable chrome accents on the grille and contours highlighted under bright showroom lights, surrounded by a dark, crowded indoor environment. +00649.jpg The Hyundai Azera Sedan 2012 in the image is silver with a sleek and smooth texture, captured from the side showcasing its aerodynamic design, set against a dynamic urban background with a blurred building, highlighting its prominent chrome grille and modern alloy wheels. +07348.jpg The Hyundai Azera Sedan 2012 appears in a metallic gray with a smooth, sleek texture, viewed from a rear three-quarter angle, set against an indoor showroom with soft ambient lighting and a crowd in the background, highlighting its elongated tail lights and sculpted rear bumper. +02397.jpg The image shows a white 2012 Hyundai Azera Sedan from a frontal three-quarter view, parked on a street with a reflective sunroof, a sleek chrome grille, and modern headlight design, set against a background of other vehicles and trees. +05727.jpg A silver 2012 Hyundai Azera Sedan is captured from a front-facing, low-angle view on a busy urban road, featuring distinctive chrome accents on the grille and headlights with city buildings in the blurred background. +05755.jpg The image shows a low-resolution crimson-colored Hyundai Azera Sedan 2012 with a glossy finish, viewed from a low-front angle on a winding road, featuring distinctive chrome-accented grilles and headlights, surrounded by a sparse, tree-lined environment. +03773.jpg The Hyundai Azera Sedan 2012 appears in a metallic silver-gray color, viewed from a slightly elevated front-side angle against a rugged mountain backdrop, featuring its distinct chrome grille and alloy wheels. +03277.jpg A silver 2012 Hyundai Azera Sedan is displayed from a front three-quarter view on a blue stage, featuring prominent chrome grille detailing and distinctive swept-back headlights under a showroom setting. +04491.jpg The low-resolution image depicts a white Hyundai Azera Sedan 2012 with a glossy finish, viewed from the front-left angle on a suburban street, featuring distinctive chrome detailing on the grille and sleek, curved headlights. +01692.jpg The Hyundai Azera Sedan 2012 appears in a glossy burgundy color with a sleek, streamlined profile, viewed from the rear three-quarter angle, set against a barren, desert-like landscape under a cloudy sky, highlighting its smooth contours and chrome-trimmed windows. +03583.jpg The low-resolution image depicts a red Hyundai Azera Sedan 2012 viewed from a three-quarter angle in front of mountainous terrain, featuring prominent chrome accents, distinctive headlamps, and a glossy finish. +00472.jpg The Hyundai Azera Sedan 2012 in the image appears in a sleek silver-grey color with a smooth texture, viewed from the side displaying its streamlined roofline, front and rear lights, multi-spoke alloy wheels, and set against a plain white background. +05827.jpg The Hyundai Azera Sedan 2012 in the image is a sleek, silver car viewed from a rear three-quarter angle, showcasing its modern, streamlined design with prominent rear taillights, set in a dark, reflective showroom environment. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Elantra_Sedan_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Elantra_Sedan_2007_descriptions.txt new file mode 100644 index 0000000..5570478 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Elantra_Sedan_2007_descriptions.txt @@ -0,0 +1,20 @@ +06842.jpg The 2007 Hyundai Elantra Sedan is shown in a vibrant red color with a glossy finish, positioned at a three-quarter front angle on a showroom display platform, surrounded by a modern, metallic backdrop, showcasing its smooth contours and distinctive headlights. +00791.jpg The image shows a red 2007 Hyundai Elantra Sedan with a glossy finish, viewed from the front-left angle, set against a sleek, dark urban background, featuring distinctive elliptical headlights and a chrome-accented grille. +02750.jpg The Hyundai Elantra Sedan 2007 is shown in a front three-quarter view with a glossy red finish, featuring distinctive headlights and grille, set against an urban backdrop with blurred elements indicating motion. +01957.jpg The Hyundai Elantra Sedan 2007 appears in a beige color with a smooth texture, viewed from the side in a parking lot filled with other vehicles, and is distinguished by its rounded headlights and compact design. +01056.jpg A vibrant red Hyundai Elantra Sedan 2007 is captured from a rear three-quarter angle, showcasing its curved rear lights and five-spoke alloy wheels, positioned in a modern urban setting with reflective glass buildings in the background. +01035.jpg The Hyundai Elantra Sedan 2007 is a silver four-door car with a smooth metallic finish, viewed from the front-left angle on a paved surface, parked in a suburban residential area with bare trees and surrounded by other vehicles, featuring its distinctive dual headlight design and front grille emblem. +06500.jpg The 2007 Hyundai Elantra Sedan, shown in a side-front view, features a deep red color with a glossy finish, appearing in a minimalistic setting with no distinct background elements, highlighting its smooth body lines and a distinctive grille design. +00533.jpg The car is a red Hyundai Elantra Sedan 2007 with a glossy finish, shown from a front-side angle on a winding road amid a blurred background of natural, earthy terrain. +00133.jpg The Hyundai Elantra Sedan 2007 is a red vehicle with a smooth, glossy texture, viewed from the front-left angle on a bright blue surface in a dealership lot with trees and a partially visible Ford sign in the background, featuring its characteristic rounded headlights and compact grille. +01899.jpg A maroon Hyundai Elantra Sedan 2007 is viewed from the side, showcasing its distinctively smooth curves and silver alloy wheels, set against a plain white curtain background in a well-lit showroom. +06241.jpg The Hyundai Elantra Sedan 2007 is a glossy white car seen from a three-quarter front view, with a smooth body texture, distinct angled headlights, and parked on a cobblestone surface amidst industrial buildings and parked vehicles in the background. +05549.jpg The low-resolution image shows a red 2007 Hyundai Elantra Sedan with a wet, glossy surface, viewed from the front-left angle in a parking lot, featuring distinctive teardrop-shaped headlights and a chrome-accented grille, under a cloudy sky evident by the damp surroundings. +05523.jpg The Hyundai Elantra Sedan 2007 appears in a silver color with a smooth texture, viewed from the front-left angle amidst a modern urban setting featuring geometric architectural elements, with distinct rounded headlights and a prominent grille design. +03710.jpg A beige Hyundai Elantra Sedan 2007 is viewed from the front, parked in a gravel lot with a fence and trees in the background, featuring distinctively shaped headlights and a chrome-accented grille. +02500.jpg The Hyundai Elantra Sedan 2007 appears in a glossy red color from a front three-quarter view, showcasing its distinct front grille and clear headlights, set against a blurred cityscape backdrop. +00833.jpg The red Hyundai Elantra Sedan 2007 is viewed from the front on a blurred highway underpass, featuring sleek headlights and a prominent chrome grille. +04851.jpg The Hyundai Elantra Sedan 2007 in the image is a glossy white color, viewed from the front-left angle in a showroom environment with tiled flooring, featuring sleek, tapered headlights and a minimalistic front grille. +00819.jpg The Hyundai Elantra Sedan 2007 is a red car with a glossy finish, viewed from a front three-quarter angle, parked on a gravel surface in front of a garage with its distinctive headlights and front grille clearly visible. +06115.jpg The Hyundai Elantra Sedan 2007 is shown in a rear view with a smooth white finish, featuring distinctive red taillights and parked on a plain white background. +02888.jpg The low-resolution image shows a front view of a maroon Hyundai Elantra Sedan 2007 with its headlights on, an open driver's side door, parked on a street lined with residential buildings and sparse vegetation. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Elantra_Touring_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Elantra_Touring_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..e3f52bc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Elantra_Touring_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +01741.jpg The Hyundai Elantra Touring Hatchback 2012 appears in a sleek silver color with a smooth texture, viewed from the rear three-quarter angle, set against a neutral gray studio background, featuring distinctively flared wheel arches and a rear spoiler accentuating its sporty design. +01822.jpg The Hyundai Elantra Touring Hatchback 2012 appears in a deep blue color with a glossy finish, viewed from a front-side angle in a car dealership lot, showcasing its prominent silver grille, elongated headlamps, and alloy wheels. +03912.jpg The 2012 Hyundai Elantra Touring Hatchback appears in a bright red color with a smooth texture, viewed from the front-left angle amidst a car dealership setting, featuring clear headlights and a distinctive grille with the background showcasing multiple parked vehicles and a few small flags. +06436.jpg The low-resolution image shows a metallic gray Hyundai Elantra Touring Hatchback 2012 in a side view on a car dealership lot, with distinctive smooth contours, silver alloy wheels, and a clear blue sky with a balloon in the background. +05134.jpg The Hyundai Elantra Touring Hatchback 2012 is a shiny black car with a front three-quarter view, set in a showroom environment with a tiled floor and visible ceiling lights, featuring distinct silver alloy wheels and a banner in the background. +02467.jpg The Hyundai Elantra Touring Hatchback 2012 appears in a vibrant blue color with a shiny finish, viewed from a rear three-quarter angle in a well-lit showroom featuring modern design elements and highlighting its distinctive vertical taillights and smooth body lines. +02469.jpg The black Hyundai Elantra Touring Hatchback 2012 is viewed from the rear-left angle, showcasing its smooth metallic texture and distinctive red taillights, against a backdrop of a cobblestone ground and distant mountainous landscape. +06507.jpg The silver Hyundai Elantra Touring Hatchback 2012 is shown in a three-quarter front view against a plain white studio backdrop, highlighting its sleek body lines, distinctive front grille, and sporty alloy wheels. +05798.jpg The red Hyundai Elantra Touring Hatchback 2012, viewed from a front side angle, features a smooth glossy finish with sleek silver wheels, parked in a dealership lot with industrial buildings in the background. +07620.jpg A deep blue Hyundai Elantra Touring Hatchback 2012 is shown from a slightly elevated front angle with chrome detailing and a black grille, parked on a concrete surface near grass and trees, with dealership signage prominently displayed. +00813.jpg The Hyundai Elantra Touring Hatchback 2012 is captured in a vivid blue with a smooth texture, viewed from a rear three-quarter angle in a dealership setting, featuring a prominent roof spoiler and silver alloy wheels against a backdrop of parked cars and dealership signage. +06483.jpg The Hyundai Elantra Touring Hatchback 2012 is shown in a side profile view with a silver metallic finish and smooth texture, set against a plain white backdrop, highlighting its sleek, aerodynamic design and distinctive upward-sweeping character line. +04251.jpg A silver Hyundai Elantra Touring Hatchback 2012 is seen in a three-quarter front view in a dealership lot with visible showroom signage and logos in the background, featuring a smooth body with distinct curved headlights and a slightly elevated rear. +04474.jpg The Hyundai Elantra Touring Hatchback 2012 is pictured in a vibrant blue color with a metallic finish, viewed from the front-left angle, set against a car dealership background with trees and other vehicles, featuring distinct swept-back headlights and a curved grille. +05356.jpg The Hyundai Elantra Touring Hatchback 2012 in bright red features a sleek, compact design viewed from the front-side angle, parked on a paved road with rolling hills and clear skies in the background, highlighting its smooth metallic finish and distinct front grille and headlights. +01829.jpg The silver Hyundai Elantra Touring Hatchback 2012 is viewed from a front three-quarter angle with sleek, aerodynamic lines and distinct alloy wheels, set against a mountainous backdrop. +00539.jpg The Hyundai Elantra Touring Hatchback 2012 is captured from a direct front view, showcasing its red exterior with a smooth texture, featuring distinct headlights and a chrome-accented grille, against a plain white background. +07470.jpg The Hyundai Elantra Touring Hatchback 2012, viewed from a front-side angle, is a white car with a smooth texture, featuring a distinct roof rack and curved headlamps, set against a tropical background with palm trees and sand, emphasizing its practicality in a beach setting. +03021.jpg The Hyundai Elantra Touring Hatchback 2012 is a silver car with a shiny exterior, viewed from the rear-left angle, parked on a winding asphalt road with mountainous terrain in the background, featuring distinct rear lights and a slightly elevated hatchback design. +07033.jpg A red Hyundai Elantra Touring Hatchback 2012 is seen from a side angle in a digitally rendered setting, displaying smooth paint with visible wheel arches, a prominent front grille, and no discernible background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Genesis_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Genesis_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..d760a73 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Genesis_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +03403.jpg A silver Hyundai Genesis Sedan 2012 is seen from the front, with a prominent grille and headlights, parked on a concrete surface in front of a building with wooden stairs and a yellow pole. +03974.jpg The Hyundai Genesis Sedan 2012, painted in a sleek black hue with reflective chrome accents, is viewed from a rear side angle against a night cityscape background, showcasing its distinctive taillights and elegant silhouette. +06957.jpg The Hyundai Genesis Sedan 2012 is a sleek, dark blue vehicle with a glossy finish, viewed from the front, showcasing its prominent chrome grille and angular headlights, set against a serene waterfront background with a clear sky. +04593.jpg The Hyundai Genesis Sedan 2012 is displayed in a glossy silver color with a sleek, streamlined body, viewed from a front-side angle on a circular platform, set against a modern exhibition backdrop featuring vibrant digital screens and ambient lighting, with its distinctive horizontal grille and elegant alloy wheels visible. +03814.jpg The Hyundai Genesis Sedan 2012 in the image is a silver, metallic vehicle viewed from a front angled perspective, parked on grass beside a road, with prominent chrome accents on the grille and intricate alloy wheels, set against a backdrop of scattered trees and open sky. +00112.jpg A sleek black Hyundai Genesis Sedan 2012 with a shiny finish is captured in motion from a front-side angle on a highway, featuring a geometric grille and set against a blurred background of greenery and urban structures. +02123.jpg The Hyundai Genesis Sedan 2012 appears in a silver color with a glossy texture, viewed from a front-right angle in a clean indoor setting with a white wall background, showcasing its distinctive front grille and alloy wheels. +05026.jpg A silver Hyundai Genesis Sedan 2012 is viewed from the front, displaying its prominent grille in a wide open area with trees and hills in the blurred background, and the headlights are illuminated. +04930.jpg A sleek black Hyundai Genesis Sedan 2012 with a glossy finish is seen from the front three-quarter view, parked on cobblestone pavement with an ornate building and fountain in the background, showcasing its prominent chrome grille and stylish headlights. +06745.jpg The image shows a shiny black Hyundai Genesis Sedan 2012 in a three-quarter front view, parked on a dealership lot with a "Hyundai" sign in the background, featuring prominent chrome detailing on the grille and wheels, and reflecting light on its glossy surface. +00671.jpg The black Hyundai Genesis Sedan 2012, viewed from the front-left angle, features sleek, elongated headlights and a distinct grille, parked on a gravel surface with a partially blurred urban architecture backdrop. +02213.jpg The Hyundai Genesis Sedan 2012 appears in a sleek silver color with a smooth metallic texture, viewed from a front-side angle, parked along a suburban street with modern architecture in the background, and features distinctive multi-spoke alloy wheels and a prominent front grille. +00704.jpg The Hyundai Genesis Sedan 2012 appears in a metallic champagne color with a smooth, glossy finish, viewed from the front left in a showroom environment with tiled flooring, featuring distinctive chrome detailing on the grille and side trims. +03026.jpg The Hyundai Genesis Sedan 2012 appears in a sleek silver color with a smooth texture, viewed from a rear three-quarter angle, parked on a driveway in front of a stone-faced building, featuring prominent chrome exhaust tips and distinctive rear light clusters. +07886.jpg The Hyundai Genesis Sedan 2012 is shown in a metallic silver color with a smooth, polished texture, viewed from a low-angle front three-quarter perspective, set against a lush, green tree-lined backdrop, featuring prominent multi-spoke wheels and a distinctive large front grille. +07368.jpg The Hyundai Genesis Sedan 2012 appears in metallic silver with a smooth, sleek exterior, viewed from a low front angle highlighting its prominent chrome grille and angular headlights, set against a blurred dynamic background suggesting motion. +00627.jpg A sleek black Hyundai Genesis Sedan 2012 is captured at a front-left three-quarter angle on a city street, with its distinctive chrome grille and polished exterior reflecting urban surroundings and greenery. +03068.jpg The Hyundai Genesis Sedan 2012, viewed from the front, is in a metallic silver color with a glossy texture, showcasing its distinctive chrome grille and LED headlights against a backdrop of a park with leafless trees and a grassy area. +02463.jpg A sleek, black Hyundai Genesis Sedan 2012 is viewed in a three-quarter front angle on a smooth, open road with a clear blue sky, featuring a prominent chrome grille and distinctive alloy wheels. +03290.jpg The black Hyundai Genesis Sedan 2012 is viewed from the front three-quarters in an indoor showroom, showcasing its glossy finish, large chrome grille, and multi-spoke alloy wheels against a backdrop of light-colored walls and another vehicle. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Santa_Fe_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Santa_Fe_SUV_2012_descriptions.txt new file mode 100644 index 0000000..c11fbb8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Santa_Fe_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +00388.jpg The Hyundai Santa Fe SUV 2012 is silver with smooth texture, shown in a front-side angle in a dealership setting with reflective windows, and features distinctively round headlights and alloy wheels. +00107.jpg The Hyundai Santa Fe SUV 2012 appears in a dark metallic blue color with a smooth texture, viewed from a front three-quarter angle against a dimly lit urban background, featuring distinctive large headlights and a bold front grille design. +06325.jpg A white Hyundai Santa Fe SUV 2012 is seen from the rear three-quarter view, parked on asphalt against a backdrop of greenery and other vehicles, featuring distinctively shaped rear light clusters and a roof rack. +04974.jpg A black Hyundai Santa Fe SUV from 2012 is captured in a three-quarter front view against a car dealership backdrop, featuring alloy wheels and distinctive chrome-trimmed grille. +00395.jpg The low-resolution image shows a front view of a silver Hyundai Santa Fe SUV 2012 with a smooth metallic texture, characterized by its distinctive front grille and round fog lights, parked in a lot with manicured shrubbery and other vehicles in the background. +01742.jpg A dark-colored Hyundai Santa Fe SUV 2012 is shown in a three-quarter front view with silver alloy wheels, parked on an asphalt surface in a car dealership lot, featuring a distinctive front grille and fog lights under a cloudy sky. +05044.jpg A dark-colored 2012 Hyundai Santa Fe SUV is pictured from a front three-quarter angle against an industrial background, featuring silver alloy wheels and contrasting grill detailing. +04964.jpg The image shows a silver Hyundai Santa Fe SUV 2012 with a smooth metallic texture, viewed from a front three-quarter angle, parked on a paved surface with a wooden fence and trees in the background, featuring a sleek front grille and rounded headlamps. +04987.jpg A silver Hyundai Santa Fe SUV 2012 is shown from a front three-quarter view under bright showroom lights, featuring a chrome grille and fog lamps, set against a modern, illuminated display environment. +00883.jpg The low-resolution image shows a silver Hyundai Santa Fe SUV 2012 from a rear-left angle, highlighting its smooth metallic texture, prominent taillights, and sleek roof rails, set against a blurred urban skyline. +00790.jpg The Hyundai Santa Fe SUV 2012, viewed from the rear-left in a serene countryside setting, showcases a smooth white exterior with distinct tail lights and silver alloy wheels, set against a backdrop of rolling hills and a cloudy sky. +02136.jpg The Hyundai Santa Fe SUV 2012 appears in a silver color with a smooth metallic texture, viewed from a front three-quarter angle, set against an urban waterfront background with distinct multi-story buildings and reflective water, featuring prominent chrome accents and angular headlights that enhance its robust design. +02765.jpg The Hyundai Santa Fe SUV 2012 appears in a silver metallic finish with a frontal view showcasing its distinctive grille and headlights, set against a brightly lit indoor showroom with red walls and a tiled floor. +07611.jpg The Hyundai Santa Fe SUV 2012 is a glossy black with a prominent front grille, viewed from a front three-quarter angle in a car dealership lot, featuring silver alloy wheels and distinct headlight shapes. +05400.jpg The Hyundai Santa Fe SUV 2012 is a metallic grey vehicle positioned at a slight front-side angle, parked in an outdoor setting with trees in the background, showcasing its distinct rounded headlights and chrome-accented grille. +01100.jpg The silver Hyundai Santa Fe SUV 2012 is depicted in motion from a front angled viewpoint on an urban road with distinct bridge infrastructure and traffic cones, featuring its signature grille and headlight design. +04740.jpg This low-resolution image shows a red Hyundai Santa Fe SUV 2012 with a glossy finish, viewed from a three-quarter front angle in a car dealership lot with a building on the left, featuring distinctive alloy wheels and a silver front grille. +01693.jpg The Hyundai Santa Fe SUV 2012 is seen from a front-left angle featuring a metallic gray color and smooth texture, positioned in a car dealership lot with signage and other vehicles in the background, highlighted by its silver alloy wheels and distinctive hexagonal grille. +01279.jpg A dark gray Hyundai Santa Fe SUV 2012 is seen from the front-right angle, parked on a black road surrounded by palm trees and grass, featuring prominent headlights and a signature hexagonal grille. +07773.jpg The Hyundai Santa Fe SUV 2012 appears in a light silver color with a smooth finish, viewed from a front-side angle, parked on a grassy field with distant rolling hills in the background, featuring its distinct grille and sleek headlamp design clearly visible. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Sonata_Hybrid_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Sonata_Hybrid_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..a549e02 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Sonata_Hybrid_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +06942.jpg The Hyundai Sonata Hybrid Sedan 2012 is a sleek silver vehicle with smooth contours and sharp headlights, viewed from a low-angle front three-quarters perspective against a bright, expansive sky backdrop. +03400.jpg The silver Hyundai Sonata Hybrid Sedan 2012 is viewed from the front left angle, displaying its smooth aerodynamic body lines and distinct hybrid badge, parked indoors on a blue-speckled floor with a curtain and dealership signage in the background. +06347.jpg The Hyundai Sonata Hybrid Sedan 2012 appears in a metallic silver color with a glossy texture, viewed from a front three-quarter angle, set against a modern, illuminated indoor display with its sleek aerodynamic design and distinctive grille prominently visible. +00260.jpg The image shows a vibrant red Hyundai Sonata Hybrid Sedan 2012 viewed from the rear three-quarter angle, with distinctive alloy wheels and chrome detailing, set against an urban backdrop featuring modern architectural elements like metal railings and concrete textures. +02595.jpg A low-resolution image shows a black Hyundai Sonata Hybrid Sedan 2012 with a glossy texture, parked in a dealership lot among other vehicles, featuring its signature hexagonal grille and blue-tinted hybrid badge under a clear blue sky. +02353.jpg The Hyundai Sonata Hybrid Sedan 2012 in the image is a sleek metallic gray with a smooth texture, viewed from the front, showcasing a distinctive hexagonal grille and elongated headlights, set against an urban backdrop featuring a white building wall and yellow bollards. +06138.jpg A white Hyundai Sonata Hybrid Sedan 2012 is seen in a three-quarter front view with a glossy finish and distinct hybrid badging, parked on a paved surface with grass and trees in the background, showcasing its sleek aerodynamic design. +06368.jpg The Hyundai Sonata Hybrid Sedan 2012 is presented in a metallic silver color with a smooth texture, viewed from a rear three-quarter angle, featuring a purple-lit studio background, distinctive red taillights, aerodynamic wheel covers, and hybrid badging on the trunk. +04424.jpg The Hyundai Sonata Hybrid Sedan 2012 appears in a glossy white color with a smooth texture, viewed from a side angle in a wooded parking lot, featuring distinct aerodynamic lines, angular headlights, and sleek alloy wheels. +06733.jpg A silver Hyundai Sonata Hybrid Sedan 2012 is captured from a front-side angle, with distinctive aerodynamic contours, driving on a rural road flanked by grassy fields and trees under a clear sky. +02351.jpg The image shows a silver 2012 Hyundai Sonata Hybrid Sedan in a three-quarter front view with a sleek, aerodynamic body design, distinct blue hybrid badges, and a plain white background. +03793.jpg The 2012 Hyundai Sonata Hybrid Sedan is shown in a dynamic front three-quarter view with a glossy red color, sleek aerodynamic design, distinctive blue-tinted headlights, and prominent Hyundai emblem, set against a blurred suburban road with greenery. +02128.jpg The Hyundai Sonata Hybrid Sedan 2012 is seen in a vibrant red color with a glossy texture, captured from the front-side angle in an outdoor setting with mountains and greenery in the background, featuring its distinct alloy wheels and hybrid badging despite the low resolution. +00004.jpg The image shows a rear view of a deep red Hyundai Sonata Hybrid Sedan 2012 with smooth, glossy texture, a prominent trunk badge, and visible taillights against a plain white background. +03266.jpg The image shows a silver Hyundai Sonata Hybrid Sedan 2012 from a front-side angle, parked on a white background with distinctive blue-tinted headlights and a sleek, aerodynamic exterior design, alongside a "Top Safety Pick 2012" badge. +06143.jpg A silver 2012 Hyundai Sonata Hybrid Sedan is parked on an open paved area, viewed from a rear three-quarter angle, highlighting its distinctive aerodynamic design and hybrid badging, set against a barren desert landscape under a clear sky. +06095.jpg The Hyundai Sonata Hybrid Sedan 2012 in the image is a glossy red color, viewed from a front-side angle in a car dealership lot, with hybrid badges on the fender and silver wheels set against a background of parked cars and a dealership building. +02560.jpg The Hyundai Sonata Hybrid Sedan 2012 is shown in a metallic silver color with a smooth texture, viewed from the front-right angle, parked on a street with trees and commercial buildings in the background, and features sleek, modern headlights and a distinctive hexagonal grille. +07887.jpg The image shows a silver-gray Hyundai Sonata Hybrid Sedan 2012 with a smooth, metallic texture, viewed from a front-side angle, parked on a street with residential buildings and a chain-link fence in the background, featuring a distinctive hexagonal grille and sleek headlights. +01213.jpg A light blue Hyundai Sonata Hybrid Sedan 2012 is positioned at a slight front angle on a minimalistic, gray gradient background, featuring a sleek body with aerodynamic curves and prominent LED headlamps. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Sonata_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Sonata_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..e39b40d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Sonata_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +00775.jpg The Hyundai Sonata Sedan 2012 appears in a metallic gray color with sleek, curving lines viewed from a front three-quarter angle, set against a modern, futuristic interior with glossy surfaces and indirect lighting. +04820.jpg The image depicts a silver Hyundai Sonata Sedan 2012 with smooth, metallic texture, viewed from a front three-quarter angle, driving on a suburban road with houses and greenery in the background, and showcasing its sleek headlights and distinctive front grille. +03456.jpg The Hyundai Sonata Sedan 2012 in the image is a metallic silver color with a glossy finish, viewed from a front three-quarter angle highlighting its sleek curves, parked on a concrete surface near a commercial building with fencing and signage, featuring a distinctive chrome grille and large alloy wheels. +00911.jpg The Hyundai Sonata Sedan 2012 appears in a metallic silver color with smooth, reflective surfaces, viewed from a front-left angle in a sunny parking lot, highlighted by its prominent front grille and sleek, curved headlights. +06065.jpg The Hyundai Sonata Sedan 2012 appears in a silver metallic hue with sleek, flowing body lines, viewed from a three-quarter front angle, parked in an urban environment with a modern glass-and-stone building backdrop, characterized by its distinctive fluidic sculpture design and prominent chrome accents. +08019.jpg The white Hyundai Sonata Sedan 2012 is viewed from the front-right angle on a paved road with greenery in the background, displaying its distinctive chrome grille, sleek headlamps, and smooth body lines. +00702.jpg The image depicts a sleek black Hyundai Sonata Sedan 2012 with a glossy finish, viewed from the front-left angle in motion, against a blurred urban night scene background, showcasing its distinctive chrome grille and dynamic headlights. +00157.jpg The Hyundai Sonata Sedan 2012 in the image is a metallic gray vehicle, positioned at a front three-quarter angle, set against a sunlit backdrop with palm trees and buildings, featuring a sleek, curved design with prominent chrome accents on the front grille and alloy wheels. +04682.jpg The image shows a metallic black Hyundai Sonata Sedan 2012 viewed from the side with front fender emphasis, featuring shiny alloy wheels and surrounded by a dealership setting with a building and greenery in the background. +07357.jpg The silver Hyundai Sonata Sedan 2012 is viewed at an angle from the front side, driving along a winding road with blurred green hills in the background, featuring its distinct streamlined design and front grille. +05293.jpg The 2012 Hyundai Sonata Sedan is shown in a glossy red color with a side view highlighting its streamlined body and distinctive chrome-accented grille, set against a suburban backdrop with lush greenery and a multi-story brick building. +03889.jpg A silver Hyundai Sonata Sedan 2012 is seen from a front side angle with smooth metallic texture in a suburban neighborhood setting, featuring distinct contours on its body and parked near stone and stucco houses. +00240.jpg The low-resolution image shows a black Hyundai Sonata Sedan 2012 with a sleek, glossy texture, viewed from the rear-left angle, parked on gravel in a car lot with trees and several other vehicles in the background, featuring its distinctive tail lights and emblem. +06562.jpg The Hyundai Sonata Sedan 2012 in the image is a sleek, metallic red color with a shiny texture, viewed from a side angle on a curving road in a hilly, blurred background, showcasing its streamlined body and chrome accents. +08034.jpg The Hyundai Sonata Sedan 2012 is displayed in a metallic gray color with a smooth finish, viewed from a three-quarter front angle in a parking lot environment, featuring distinctive swept-back headlights and a prominent front grille. +04621.jpg The image shows a metallic gray Hyundai Sonata Sedan 2012 from a front three-quarter view, parked on an asphalt surface in front of a building with signage and surrounded by other vehicles; it features distinct headlamp design and chrome accents despite the low resolution. +00582.jpg This red Hyundai Sonata Sedan 2012, viewed from the front-left angle, features sleek, reflective paint with a glossy finish, distinctive chrome grille with the Hyundai emblem, prominent headlights, and is set against a modern architectural backdrop with glass elements. +06322.jpg A white Hyundai Sonata Sedan 2012 is viewed from a front-side angle, displaying its signature fluidic sculpture design with smooth, flowing lines, set against a backdrop of lush greenery and a paved road. +02837.jpg The image shows a silver Hyundai Sonata Sedan 2012 from a rear three-quarter angle, accentuated by its sleek body lines, prominent taillights, and set against a blurred natural background. +00092.jpg The Hyundai Sonata Sedan 2012 in the image appears in glossy red with a metallic finish, viewed from a front three-quarter angle with a dark, gradient background, showcasing its distinctive chrome grille and sharp headlight design. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Tucson_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Tucson_SUV_2012_descriptions.txt new file mode 100644 index 0000000..66d24c4 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Tucson_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +01878.jpg The 2012 Hyundai Tucson SUV is white with a smooth texture, viewed from the front-right angle, parked beside a dealership with glass windows, featuring distinctive silver alloy wheels and a sleek headlight design. +01917.jpg The Hyundai Tucson SUV 2012 appears in a glossy white color, viewed from a three-quarter frontal angle in a showroom setting, showcasing its distinctive curved headlights and silver alloy wheels. +02206.jpg The Hyundai Tucson SUV 2012 appears in a metallic brown color with a smooth texture, viewed from the front-left angle, parked on a paved surface surrounded by lush greenery and another vehicle, showcasing distinctive curves and a sleek, modern front grille. +04788.jpg The low-resolution image features a silver 2012 Hyundai Tucson SUV positioned in a three-quarter front view, showcasing its smooth, curved body lines and distinctive headlight shape in a sunlit industrial setting with a fenced background and partial structures on either side. +03279.jpg The image shows a front-facing, silver Hyundai Tucson SUV 2012 with a smooth metallic finish, distinctively angular headlights, and a gloss-black grille, set against a plain white background. +02769.jpg The 2012 Hyundai Tucson SUV appears in a glossy black color with a sleek texture, viewed from a front-side angle in a showroom setting, highlighted by its distinctive curved back window and silver alloy wheels on a tiled floor. +05352.jpg The Hyundai Tucson SUV 2012 in the image is white with a sleek texture, viewed prominently from the front-right angle, parked on an asphalt lot with a subtle fence and another vehicle in the background, showcasing its distinctive rounded headlights and chrome-accented grille despite the low resolution. +01272.jpg The Hyundai Tucson SUV 2012 in the image is black with a smooth, glossy finish, seen from a front-side angle in an indoor showroom setting with fluorescent lighting and background vehicles, featuring a distinctively curved headlight design and prominent grille with chrome accents. +00827.jpg A sleek, dark blue Hyundai Tucson SUV 2012 is captured from a low front-side angle, with distinctive curved headlights and a modern city skyline in the background, enhanced by evening street lights. +04895.jpg A metallic gray 2012 Hyundai Tucson SUV is viewed from the rear-left angle, showcasing its smooth curves and rear light design, set against a suburban backdrop with a house featuring a tiled roof and neatly trimmed greenery. +08064.jpg A metallic gray Hyundai Tucson SUV 2012 is viewed from the front-left angle, featuring a distinct smooth finish under sunlight, parked on a paved surface with a backdrop of a wooden fence and lush trees. +07299.jpg The 2012 Hyundai Tucson SUV appears in a bright white color with a smooth texture, viewed from a front three-quarter angle in a dimly lit indoor parking area, featuring sleek headlights, a distinctive front grille, and alloy wheels. +01737.jpg A silver Hyundai Tucson SUV 2012 with a sleek body and prominent front grille, viewed from the front-left angle, is parked on a bed of light-colored pebbles, against a backdrop of a dealership and a cloudy sky. +02278.jpg The Hyundai Tucson SUV 2012 is depicted in a dark, metallic brown finish with a glossy texture, shown from a front-side angle, parked in a dealership lot with other cars and trees in the background, highlighting its distinctive curvy hood, prominent grille, and sleek headlight design. +03142.jpg The Hyundai Tucson SUV 2012 appears in a metallic gray color with a smooth texture, viewed from a front-right angle in a parking lot, featuring silver alloy wheels, distinctive large headlights, and a sleek body design with a fenced backdrop under a partly cloudy sky. +07287.jpg The 2012 Hyundai Tucson SUV is silver with a smooth texture, viewed from a front-left angle, parked on a sunlit driveway surrounded by palm trees, featuring prominent headlights and a sleek, curved body design. +07420.jpg The Hyundai Tucson SUV 2012 is a white vehicle with a smooth texture, viewed from a front-side angle on a suburban street lined with trees and houses, featuring prominent headlights and alloy wheels. +01754.jpg The low-resolution image shows a black Hyundai Tucson SUV 2012 with a glossy finish, angled from the front-right in a car dealership lot surrounded by other vehicles and greenery in the background, featuring distinct curved headlights and silver alloy wheels. +07816.jpg The Hyundai Tucson SUV 2012 appears in a metallic gray color with a smooth texture, viewed from a low front-side angle with a distinctive bridge and tree-lined sky background, showcasing its sleek headlights and bold grille design. +06680.jpg The red Hyundai Tucson SUV 2012 is captured in motion from a front three-quarter view on an urban bridge, with distinct gray skyscrapers in the hazy background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Veloster_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Veloster_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..32e613d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Veloster_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +06043.jpg A bright yellow Hyundai Veloster Hatchback 2012 is viewed from the front, highlighting its distinctive black grille and curvature, set against a backdrop of greenery with trees and a gray road surface. +07723.jpg The Hyundai Veloster Hatchback 2012 appears in a burnt orange color with a sleek, aerodynamic shape, captured in motion from a front-side angle on a highway with desert surroundings, showcasing its two-tone wheels and distinctive three-door configuration. +00507.jpg The Hyundai Veloster Hatchback 2012 has a bright orange metallic finish with a glossy texture, captured in a rear three-quarter view with distinctive twin central exhausts and sleek, aerodynamic lines, set against a desert landscape with mountains and dry vegetation in the background. +04604.jpg The Hyundai Veloster Hatchback 2012 is shown from a front-side angle in a vibrant blue color with a smooth texture, silver alloy wheels, and distinctively sporty design lines, set against a two-tone gray and white studio background. +05037.jpg The low-resolution image shows a metallic orange Hyundai Veloster Hatchback 2012 from a rear three-quarter view on a desert highway, with a distinct single rear door on the passenger side and a panoramic mountain backdrop. +05220.jpg A metallic orange Hyundai Veloster Hatchback 2012, captured from an angled front view, stands on a paved surface with a dramatic sunset backdrop, featuring distinctive three-door styling and prominent front grille. +01373.jpg The Hyundai Veloster Hatchback 2012 appears in a vibrant lime green color with smooth contours, shown from a low front angle amidst a dynamic, blurred urban background emphasizing its sleek design. +02434.jpg The Hyundai Veloster Hatchback 2012 is shown in a silver color with a matte-like texture, viewed from a front-side angle on a wet parking lot, featuring distinctive large front headlights and a modern hexagonal grille beneath a cloudy sky. +01504.jpg The Hyundai Veloster Hatchback 2012 appears in a vibrant orange hue with a glossy finish, positioned in a dynamic three-quarter front view on a road with a forested background and parked cars, featuring its distinct asymmetrical door design and hexagonal front grille. +06059.jpg The Hyundai Veloster Hatchback 2012 is depicted in a vibrant yellow color with a smooth finish, viewed from the side amidst an industrial backdrop featuring tall, grey buildings and a cloudy sky, exhibiting its unique door configuration and sleek aerodynamic design. +05501.jpg The Hyundai Veloster Hatchback 2012 is vividly yellow with a smooth texture, captured in a dynamic side-view on an urban street, with its unique asymmetrical three-door layout and coupe-like roofline standing out against a backdrop of industrial-style brick buildings and large glass windows. +04198.jpg The Hyundai Veloster Hatchback 2012 appears in a matte gray color with a sleek texture, viewed from the rear side, in motion within a tunnel, highlighting its unique three-door design and dual-centered exhausts. +07881.jpg The Hyundai Veloster Hatchback 2012 is a glossy white car viewed from a front-quarter angle, prominently displaying its unique three-door design with large alloy wheels and set against a background of autumn foliage and rocks. +01333.jpg The Hyundai Veloster Hatchback 2012 is shown in a metallic silver color with a smooth texture, viewed from the side highlighting its distinctive three-door design, set against a background of lined shelves filled with car rims in an industrial setting. +03147.jpg The Hyundai Veloster Hatchback 2012 is captured in a front three-quarter view, displaying its vibrant orange color with a smooth texture, set against a plain building backdrop, highlighting its distinctive asymmetrical three-door design and bold hexagonal grille. +04460.jpg The Hyundai Veloster Hatchback 2012 is a vibrant lime green car with a glossy finish, viewed from the front against a backdrop of red-orange LED panels, showcasing its distinctive three-door design and hexagonal grille. +03883.jpg The image shows a vibrant red Hyundai Veloster Hatchback 2012 viewed from the front at an angle, highlighting its distinctive three-door design and large headlights, set against a blurred rocky background indicating motion. +05773.jpg The Hyundai Veloster Hatchback 2012 is seen in a side-rear view with a glossy white finish and distinctive black accents under clear skies, highlighted by its sculpted side panels, large dual exhaust outlets, and signature asymmetrical three-door design, set against a backdrop of a wide, bridge-like structure. +06063.jpg A white Hyundai Veloster Hatchback 2012 is captured from a front-side angle, showcasing its distinctive three-door design with a sleek, sporty silhouette against an urban backdrop. +04165.jpg The Hyundai Veloster Hatchback 2012 is in a vibrant red color with a glossy texture, viewed from a slightly elevated angle highlighting its unique three-door design, against a blurred urban background that emphasizes its dynamic motion on the road. diff --git a/utils/area/descriptions/Car/generated_descriptions/Hyundai_Veracruz_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Veracruz_SUV_2012_descriptions.txt new file mode 100644 index 0000000..51335ac --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Hyundai_Veracruz_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +07015.jpg The Hyundai Veracruz SUV 2012 appears in a metallic brown shade with a shiny finish, positioned in a three-quarter front view, parked on a paved surface next to greenery, highlighting its chrome-accented grille and large alloy wheels. +04114.jpg The Hyundai Veracruz SUV 2012 in the image is a light tan vehicle with a smooth, glossy finish, shown from a front three-quarter angle with a background of trees and parked on asphalt, featuring silver accents and a distinctive grille. +07434.jpg The Hyundai Veracruz SUV 2012 in the image is silver with a smooth texture, viewed from a front-side angle, parked in a lot with a background of trees and other vehicles, featuring distinctive swept-back headlights and a prominent chrome-accented grille. +00185.jpg The Hyundai Veracruz SUV 2012 appears in a metallic brown color with a smooth texture, captured from a rear three-quarter angle in a parking lot with greenery in the background, featuring distinct taillights, dual exhausts, and a roof rack. +07250.jpg The Hyundai Veracruz SUV 2012 appears in a shiny silver color with a smooth texture, displayed in a three-quarters front view against a vast, open backdrop with distant mountains, showcasing its prominent grille and sleek headlights. +00105.jpg The Hyundai Veracruz SUV 2012 in the image is a white vehicle with a sleek finish, viewed from the side, with a backdrop of a car dealership showcasing large windows and signage, featuring distinct silver alloy wheels and pronounced side panel lines. +04850.jpg The Hyundai Veracruz SUV 2012 in the image is a silver vehicle viewed from a rear three-quarter angle, displaying a smooth metallic texture with the background showcasing a distant cityscape, while featuring distinctive elements like a sleek roof rack and taillights. +06192.jpg The Hyundai Veracruz SUV 2012 is a metallic silver vehicle shown in a right side profile view, situated in an urban setting with modern architectural structures in the background, featuring a streamlined body and five-spoke alloy wheels. +01669.jpg A black Hyundai Veracruz SUV 2012 is shown in a three-quarter front view with silver alloy wheels, parked on a sunlit asphalt lot near other vehicles with dealership buildings in the background. +01368.jpg The Hyundai Veracruz SUV 2012 appears in a glossy black color with a hint of metallic sheen, viewed from the side in an outdoor car lot setting, featuring clean lines, a chrome-trimmed window frame, and alloy wheels against a bright, sunlit backdrop with Mount Rushmore and an American flag overlay. +07179.jpg The black Hyundai Veracruz SUV 2012 is viewed from a rear three-quarter angle in a parking lot, featuring silver trim, distinctive taillights, and alloy wheels, with overcast skies and other cars in the background. +02080.jpg The front view of the Hyundai Veracruz SUV 2012 in metallic gray is prominently displayed in a sunny dealership lot with palm trees and other vehicles, featuring a slightly curved grille, distinctive headlights, and a smooth, polished finish. +05248.jpg A front-facing view of a gray Hyundai Veracruz SUV 2012 is visible, showcasing its smooth metallic texture under overcast lighting, parked on a woodchip-covered area with a chain-link fence and other vehicles in the background. +00464.jpg The Hyundai Veracruz SUV 2012 in the image is a metallic brown with a smooth texture, viewed from a side angle displaying its sleek profile, situated in an indoor showroom environment with large horizontal blinds in the background, featuring distinctive alloy wheels and roof rails. +06487.jpg The image shows a bronze-colored Hyundai Veracruz SUV 2012, viewed from the front-left in a sunny outdoor setting with a wooded background, highlighting its sleek headlights, chrome grille, and alloy wheels. +03688.jpg The 2012 Hyundai Veracruz SUV is depicted in a side view with a white finish and contrasting dark lower molding, parked in a suburban driveway surrounded by a beige house and palm trees, featuring roof rails and prominent rear tail lights. +06403.jpg The Hyundai Veracruz SUV 2012 appears in a glossy white finish with chrome accents, viewed from a front three-quarter angle, situated in a car dealership lot surrounded by other vehicles and palm trees, featuring distinctive headlights and a slightly rugged stance. +02148.jpg The image shows a metallic gray SUV with a sleek, curved rear design viewed from the rear three-quarter angle against a stylized, blue stage background, featuring prominent tail lights and chrome accents on the wheels. +03260.jpg The Hyundai Veracruz SUV 2012 appears in a side-front view, showcasing a black body with a beige lower trim and chrome accents, parked on a wet rooftop with a blue-roofed building in the background under rainy conditions. +07189.jpg The Hyundai Veracruz SUV 2012 is a dark metallic gray vehicle viewed from the side, showing sleek contours and alloy wheels, set against a backdrop of dense green foliage and sandy terrain. diff --git a/utils/area/descriptions/Car/generated_descriptions/Infiniti_G_Coupe_IPL_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Infiniti_G_Coupe_IPL_2012_descriptions.txt new file mode 100644 index 0000000..ca1aa0a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Infiniti_G_Coupe_IPL_2012_descriptions.txt @@ -0,0 +1,20 @@ +06394.jpg The Infiniti G Coupe IPL 2012 features a sleek black exterior with a glossy finish, viewed from the front showcasing its prominent grille and distinctive headlights, set against a blurred urban street backdrop. +05676.jpg The Infiniti G Coupe IPL 2012 is viewed from the front at a slight eye-level angle, showcasing its sleek silver metallic exterior with distinctive curved headlights and a low, aggressive grille, set against a minimalist, light blue-grey background. +07063.jpg The Infiniti G Coupe IPL 2012 is shown in a low-resolution image with a sleek, dark metallic gray paint and polished textures, viewed from a rear three-quarter angle on a road bordered by a rugged rock wall, featuring distinctive sharp rear taillights and sporty alloy wheels. +02005.jpg The Infiniti G Coupe IPL 2012 appears in a metallic silver color with a sleek and sporty profile, viewed from the side against a background of lush green trees, featuring dark alloy wheels and tinted windows that accentuate its aerodynamic lines. +00228.jpg The Infiniti G Coupe IPL 2012 is shown in a sleek metallic gray color with a smooth texture from a side profile view, set against a minimalist blue-toned background, highlighting its aerodynamic shape, sporty wheels, and distinctive rear spoiler. +00385.jpg The Infiniti G Coupe IPL 2012 in the image is a sleek silver car with a glossy finish, viewed from a three-quarter front angle under an overpass, highlighting its sporty design and distinctive alloy wheels against a muted urban backdrop. +00531.jpg The Infiniti G Coupe IPL 2012 appears in a sleek, silver color with smooth, clean metallic texture, viewed from a rear three-quarter angle displaying its aerodynamic design, parked in a studio environment with a plain white background, and featuring distinctive alloy wheels and a sporty rear spoiler. +03747.jpg The low-resolution image shows the rear of a sleek, black Infiniti G Coupe IPL 2012 with a shiny finish, highlighted by its distinctive dual exhausts and angular red taillights, set against a grassy outdoor venue with people mingling in the background. +05238.jpg The low-resolution image shows a sleek, dark-colored Infiniti G Coupe IPL 2012 with a glossy finish, captured from a rear-side angle, revealing dual exhausts and sporty rims, parked on a road with a natural, slightly hilly background and clear skies. +00787.jpg The Infiniti G Coupe IPL 2012, shown in a silver metallic finish, is photographed from a front-side angle on a rural road, featuring its distinctively sleek headlights, prominent grille, and aerodynamic lines against a backdrop of greenery and hills. +02894.jpg The Infiniti G Coupe IPL 2012 is shown in a side profile with a sleek metallic gray exterior and sporty dark alloy wheels, positioned in a concrete urban setting with open columns. +05510.jpg The Infiniti G Coupe IPL 2012 is shown in a metallic gray color with a sleek texture, captured from a front three-quarter view against a mountainous backdrop with distinct black alloy wheels and a streamlined front grille. +08023.jpg The Infiniti G Coupe IPL 2012 in the image is gleaming metallic gray with a smooth texture, viewed from the front left angle on a suburban street lined with manicured greenery, featuring a distinctive bold front grille and sleek alloy wheels. +07546.jpg The Infiniti G Coupe IPL 2012 in the image is a deep blue sporty car viewed from the front left angle, parked in an industrial area with loading docks in the background, featuring a sleek, aerodynamic design with prominent chrome wheels and distinctive grille. +04492.jpg The car is a metallic gray Infiniti G Coupe IPL 2012, viewed from a rear three-quarter angle, highlighting its sleek lines and dual exhausts with a beachside urban environment and misty high-rise buildings in the background. +05521.jpg The Infiniti G Coupe IPL 2012 in the image is a sleek, metallic blue with a glossy finish, captured from a side view in motion against a blurred rocky and asphalt background, highlighting its aerodynamic design and sporty alloy wheels. +04337.jpg A sleek, metallic gray Infiniti G Coupe IPL 2012 is captured in a dynamic three-quarter front view on a racetrack, showcasing its aggressive front bumper, prominent grille, and stylish alloy wheels against a blurred, wooded background. +07920.jpg The Infiniti G Coupe IPL 2012 in the image is a glossy black color with a sleek, smooth texture, viewed from a rear three-quarter angle against a road with lamp posts and greenery in the background, featuring distinctively sporty dual exhausts and dark alloy wheels. +03183.jpg The image depicts a sleek, metallic silver Infiniti G Coupe IPL 2012 viewed from a rear three-quarter angle, showcasing its aerodynamic curves and dual exhausts, set against an urban underpass with concrete structures. +07742.jpg The Infiniti G Coupe IPL 2012, viewed from a low front-left angle, features a sleek midnight black finish with a glossy texture, set against an open sky and pavement background, highlighting its sporty design with prominent headlights and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Infiniti_QX56_SUV_2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Infiniti_QX56_SUV_2011_descriptions.txt new file mode 100644 index 0000000..2ca8845 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Infiniti_QX56_SUV_2011_descriptions.txt @@ -0,0 +1,20 @@ +00040.jpg The silver Infiniti QX56 SUV 2011 is viewed from the front-left angle, showcasing its prominent grille and headlights against a rugged, mountainous desert backdrop. +06955.jpg The silver Infiniti QX56 SUV 2011 is viewed from the rear three-quarters in a rural setting, featuring large chrome wheels, distinctive rear tail lights, and side air vents, with a smooth, reflective texture. +07352.jpg The Infiniti QX56 SUV 2011 is shown in a silvery metallic color with a slightly reflective texture, viewed from the front three-quarter angle, set against a blurred natural landscape backdrop, featuring a prominent chrome grille and large, distinct headlights. +04557.jpg The light metallic gray Infiniti QX56 SUV 2011 is viewed from a rear three-quarter angle, showcasing its smooth, reflective body with distinctive wrap-around tail lights, surrounded by a plain white background that emphasizes its sleek, rounded contours and chrome accents. +07207.jpg The Infiniti QX56 SUV 2011 appears in a dark metallic color with a glossy texture, captured from a low frontal angle on a winding road surrounded by lush greenery, featuring its distinctive chrome grille and large, polished alloy wheels. +06569.jpg The Infiniti QX56 SUV 2011 is viewed from the side, showcasing its pearl white finish with a sleek texture, set against a white background, and features prominent chrome wheels and distinctive side air vents. +05829.jpg The 2011 Infiniti QX56 SUV in the image features a sleek silver finish with a prominent front grille and chrome detailing, viewed from the front-left angle against a rugged, mountainous background, highlighting its bold, angular lines and substantial alloy wheels. +04856.jpg The Infiniti QX56 SUV 2011 appears in a metallic silver color with a rugged, reflective texture, viewed from a front-side angle against a barren, desert-like background, featuring a prominent grille and large alloy wheels. +06827.jpg The 2011 Infiniti QX56 SUV, viewed from the rear side, is a glossy black vehicle with pronounced chrome accents and sits on a paved road beside green grass, a white picket fence, and lush trees, while its large tail lights and curved rear side windows are distinct despite the low resolution. +03956.jpg The Infiniti QX56 SUV 2011 appears in a glossy silver color with prominent front grille and side vents, viewed from a front-side angle against a rural backdrop featuring farm equipment and greenery. +06982.jpg The Infiniti QX56 SUV 2011 appears in a metallic silver color with a smooth texture, viewed from the rear three-quarter angle, parked on a roadside with a blurred, lush green and urban landscape background, highlighting its distinctive taillights and sloped rear design. +04532.jpg The Infiniti QX56 SUV 2011 is viewed from a front-side angle, showcasing its metallic silver color and smooth, glossy texture, set against a rugged, barren landscape with distant mountains, featuring distinct chrome accents and curved body lines. +01200.jpg The silver Infiniti QX56 SUV 2011 in the side profile view features a custom tribal decal on its body, visible dual-tone rims, and a unique cartoon graphic near the rear, set against a white background with a minimalist web watermark. +06930.jpg The Infiniti QX56 SUV 2011 is shown in a glossy white color with chrome accents, featuring a front three-quarter view highlighting its prominent grille and rounded headlamps, parked on a pebbled surface with trees and buildings in the background. +01221.jpg The Infiniti QX56 SUV 2011 appears in a glossy black color with a reflective surface, viewed from the front-left angle surrounded by a city environment, featuring a distinctive chrome grille and prominent headlights. +03788.jpg The silver Infiniti QX56 SUV 2011 is viewed from the rear at an angle, displaying its sleek body lines and distinctive tail lights against a rugged, mountainous desert backdrop. +05966.jpg The Infiniti QX56 SUV 2011 appears in a metallic gray color with a smooth texture, viewed in three-quarters from the front and right side against a blurred natural background, featuring prominent chrome detailing on the grille and large, polished alloy wheels. +07382.jpg A silver Infiniti QX56 SUV 2011 is shown in a side view parked on grass against a backdrop of a vibrant yellow flower field, featuring distinctive chrome accents and a prominent front grille. +05279.jpg The Infiniti QX56 SUV 2011 is depicted in a low-resolution image with a silver-gray finish and a smooth texture, viewed from a rear three-quarter angle against a grassy roadside backdrop with overcast lighting, showcasing its distinctive large taillights and chrome trim detailing. +00180.jpg The silver Infiniti QX56 SUV 2011 is shown in profile view with a shadowy mountainous background, featuring prominent chrome accents and distinct large alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Isuzu_Ascender_SUV_2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Isuzu_Ascender_SUV_2008_descriptions.txt new file mode 100644 index 0000000..cf76fa7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Isuzu_Ascender_SUV_2008_descriptions.txt @@ -0,0 +1,20 @@ +06655.jpg The Isuzu Ascender SUV 2008 is in a metallic dark gray color with smooth texture, viewed from the front in a grassy, wooded environment, featuring a roof rack and distinct front grille design. +07593.jpg The Isuzu Ascender SUV 2008 is shown in a metallic beige color with smooth body texture, viewed from a rear-side angle, set against a blurred suburban background with a sunset glow, featuring distinct chrome accents and roof rails. +01132.jpg The Isuzu Ascender SUV 2008 is a silver vehicle with a smooth texture, viewed from the side in a parking lot with trees in the background, featuring distinctive black trim along the sides and multi-spoke alloy wheels. +02187.jpg The Isuzu Ascender SUV 2008 in the image is viewed head-on with a metallic beige color and smooth texture, situated between trees and other vehicles, featuring a distinctive chrome grille and prominent rectangular headlights. +07729.jpg The Isuzu Ascender SUV 2008 is displayed in a front view with a silver body featuring a smooth metallic texture, distinctive boxy headlights, a prominent grille with the Isuzu emblem, and situated against a plain white background highlighting its robust and symmetrical design. +00130.jpg The Isuzu Ascender SUV 2008 appears in a deep metallic blue color with a smooth texture, viewed from a three-quarter front angle against a plain white background, featuring distinctive silver rims, a chrome front grille, and roof rails. +00817.jpg The Isuzu Ascender SUV 2008 appears in a white color with a smooth texture, viewed from a front-side angle in a parking lot, with a distinct yellow and checkerboard awning background, featuring black window trim and prominent wheel arches. +04466.jpg The white Isuzu Ascender SUV 2008 is viewed from a front-side angle with sunlight casting shadows, parked on a paved lot against a backdrop of trees and a beige building, featuring a noticeable roof rack and black trim. +07549.jpg The Isuzu Ascender SUV 2008 features a maroon exterior with a smooth finish, viewed from the front, parked in a driveway bordered by grass and a lounge chair, highlighting its chrome grille and rectangular headlights. +02126.jpg The Isuzu Ascender SUV 2008 in the image is a silver vehicle viewed from the rear three-quarter angle, with distinctive rectangular tail lights and a roof rack, set against a sunny suburban background with trees and a pavement. +06805.jpg The image shows a silver Isuzu Ascender SUV 2008 viewed from an elevated front-left angle, featuring a sleek, dark-tinted window design and a roof rack, with a picturesque background of a wooden bridge over a serene river surrounded by greenery. +00305.jpg The Isuzu Ascender SUV 2008 is seen from the front, featuring a dark blue exterior with a smooth texture, against a backdrop of trees and grass, displaying a distinctive chrome-accented grille and visible headlights. +08057.jpg The Isuzu Ascender SUV 2008 appears in a dark blue color with a silver trim, viewed from a front-side angle under a clear sky with palm trees in the background, featuring distinct chrome accents on the grille and roof rails. +00352.jpg In the image, the silver-gray Isuzu Ascender SUV 2008 is captured from a front three-quarter view, driving on a narrow road with a lush, wooded environment in the background, showcasing its distinctive grille and roof rails. +03926.jpg A black 2008 Isuzu Ascender SUV with a glossy finish is parked under a red canopy, viewed from the front-left angle, featuring a distinct grille and silver roof rails, with a white vehicle and a red car partially visible in the background. +00443.jpg The 2008 Isuzu Ascender SUV, viewed from a slight front angle, features a glossy black finish with chrome accents, set against a suburban backdrop with a building and greenery, characterized by its prominent grille and shiny alloy wheels. +01030.jpg The Isuzu Ascender SUV 2008 in the image is a metallic silver color with a smooth texture, viewed from a front three-quarter angle showing its chrome grille and five-spoke wheels, set against a backdrop of stacked stone and green grassy hillside beneath a clear blue sky. +03731.jpg The Isuzu Ascender SUV 2008 appears in a metallic silver color with a smooth texture, viewed from a front-side angle in a parking lot with light poles and green foliage in the background, featuring prominent silver alloy wheels and a distinctive chrome-trimmed front grille. +03275.jpg A white Isuzu Ascender SUV 2008 is shown from a rear three-quarter angle with tinted windows, a distinctive rear wiper, and recessed tail lights against a plain, isolated background. +01263.jpg The Isuzu Ascender SUV 2008 is shown in a semi-side frontal view with a dark gray exterior and sleek, smooth texture, parked on a suburban driveway with trees and houses in the background, featuring prominent chrome detailing on the front grille and roof rails. diff --git a/utils/area/descriptions/Car/generated_descriptions/Jaguar_XK_XKR_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Jaguar_XK_XKR_2012_descriptions.txt new file mode 100644 index 0000000..f27e68c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Jaguar_XK_XKR_2012_descriptions.txt @@ -0,0 +1,20 @@ +04081.jpg A vivid blue Jaguar XK XKR 2012 with a sporty rear spoiler and quad exhausts is angled from the rear left, illuminated under showroom lights, set against an indoor exhibition environment with a crowd and displays in the background. +04540.jpg The Jaguar XK XKR 2012 is seen from a rear view in a low-resolution image, featuring a sleek white exterior with a glossy texture, dual exhausts, and distinctive chrome accents, set against an expansive outdoor landscape with autumn foliage and a clear sky. +02745.jpg The Jaguar XK XKR 2012 appears in a vivid blue color with a sleek, aerodynamic design, viewed from a rear angle showing its sporty spoiler and quad exhausts, set against a blurred racetrack background that enhances its sense of speed and performance. +02487.jpg The Jaguar XK XKR 2012 appears glossy black with a sleek rear view highlighting its quad exhausts and prominent spoiler, set against a modern showroom backdrop. +06275.jpg A sleek red Jaguar XK XKR 2012 with a black convertible roof is seen from a rear angle on a graffiti-marked track, showcasing distinctive dual exhausts and a bold license plate. +06439.jpg A sleek black Jaguar XK XKR 2012 with a smooth, glossy finish is seen from a three-quarter front perspective on a wet road, featuring distinctive large alloy wheels, amidst a blurred green and grey background suggesting motion. +04433.jpg A silver Jaguar XK XKR 2012 is viewed from the rear three-quarter angle within a spacious industrial interior, featuring sleek lines, dual chrome exhausts, and large alloy wheels set against a clean white brick wall background. +03409.jpg The Jaguar XK XKR 2012 is a sleek black coupe with shiny metallic accents, viewed from the side against an aircraft backdrop, featuring distinctive large alloy wheels and chrome detailing on the grille. +06238.jpg The Jaguar XK XKR 2012 is showcased in a vibrant red with a sleek, glossy texture, viewed from a rear-side angle, set against a modern indoor exhibition backdrop with its distinctive dual exhausts and curved taillights prominently visible. +01840.jpg The Jaguar XK XKR 2012 is showcased in a sleek white color with a glossy finish, viewed from a front-left angle emphasizing its sporty grille and dual hood vents, set against a dark showroom background that highlights its elegant contours and chrome detailing. +04378.jpg The Jaguar XK XKR 2012 is captured in a dynamic front three-quarter view, showcasing its vibrant blue color with a sleek, smooth texture, evident on a racetrack background, featuring distinctive dual hood vents and black grille accents. +05950.jpg The Jaguar XK XKR 2012 is displayed in a rear three-quarter view, showcasing a sleek, dark metallic exterior with a glossy finish, parked on a gravel road surrounded by a wooded area, distinguished by its prominent rear spoiler, quad exhaust tips, and distinctive taillights. +04751.jpg A sleek white Jaguar XK XKR 2012 is captured from a rear three-quarter view, showcasing its aerodynamic curves and rear spoiler as it speeds along a countryside road with blurred greenery and a smooth highway backdrop. +02497.jpg The Jaguar XK XKR 2012 appears in glossy white with a sleek, sporty front view, featuring chrome mesh grilles and prominent headlights, set against a dimly lit showroom bustling with people. +01406.jpg The Jaguar XK XKR 2012 in the image is silver with a sleek, aerodynamic design, viewed from a rear three-quarter angle on a deserted road with a rocky hillside background, featuring distinctive dual exhausts and a rear spoiler. +01989.jpg The Jaguar XK XKR 2012 in the image appears in a sleek white with a glossy texture, viewed from the front angle on a winding road, set against a lush green hilly background, featuring its distinctively large front grille and sporty curves. +00901.jpg The Jaguar XK XKR 2012 is a glossy red coupe viewed from an angled front perspective on an open road by a lake, featuring sleek curves, large silver wheels, and a distinctive grill with hood vents. +04813.jpg The Jaguar XK XKR 2012 in the image features a sleek, dark metallic blue color with a glossy finish, viewed from a rear three-quarter angle in a brightly lit indoor showroom, displaying its distinctive red taillights, chrome exhaust tips, and sporty, curved body lines against a background of people and other vehicles. +00123.jpg The Jaguar XK XKR 2012 is a sleek, metallic blue coupe with a glossy finish, captured from a front-side angle against a clean, studio backdrop, showcasing its distinctive wide grille, pronounced hood vents, and elegant, flowing lines. +05153.jpg A sleek, white Jaguar XK XKR 2012 convertible is positioned at a three-quarter front view against a split white and gray studio backdrop, showcasing its intricate chrome grille, distinctive headlights, and multi-spoke alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Jeep_Compass_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Jeep_Compass_SUV_2012_descriptions.txt new file mode 100644 index 0000000..1fe5b6b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Jeep_Compass_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +07145.jpg A red Jeep Compass SUV 2012 with a glossy finish is parked at a slight angle on a paved lot near a rustic building with wooded surroundings, showing its distinctive seven-slot grille, chrome accents, and silver alloy wheels. +03179.jpg The Jeep Compass SUV 2012 in the image is a glossy maroon color, captured from a front three-quarter view with its distinctive chrome grille and headlights visible, parked on a dark asphalt surface against a white building background. +07223.jpg The Jeep Compass SUV 2012 appears in a metallic silver color with a smooth texture, viewed from a front three-quarter angle, set against a mountainous landscape, and features distinctive chrome grille bars and polished alloy wheels. +06990.jpg The Jeep Compass SUV 2012 in the image is a glossy black, viewed from a front three-quarter angle on a light concrete surface, featuring a signature seven-slot grille and prominent chrome accents, against a backdrop of modern architectural elements with small shrubs and flowering plants. +00914.jpg The Jeep Compass SUV 2012 appears in a metallic silver color with a smooth texture, viewed from the side profile in a car dealership parking lot with a blacktop surface, featuring distinct seven-slot grille and alloy wheels. +06315.jpg A low-resolution image of a 2012 Jeep Compass SUV in a dark metallic color is shown from a front three-quarter view, with smooth textures, distinctive seven-slot grille, five-spoke alloy wheels, and set against a simple neutral background indoors. +01657.jpg The Jeep Compass SUV 2012 is a glossy black vehicle with a rear three-quarter view, showcasing its distinct vertical taillights and silver alloy wheels, set against an industrial background with a chain-link fence and construction materials. +07629.jpg The Jeep Compass SUV 2012 in the image is white with a smooth texture, viewed from a front side angle in a parking lot with a corrugated metal wall backdrop, featuring a distinct chrome grille and alloy wheels. +06161.jpg The Jeep Compass SUV 2012 is a white vehicle with a smooth texture, viewed from the front-right angle, parked on a street next to a brick building and surrounded by greenery, featuring distinctive grille slots and silver alloy wheels. +01718.jpg The Jeep Compass SUV 2012 appears in a metallic gray color with a glossy finish, viewed from a front-side angle, parked on a concrete surface in front of a white industrial building, and features a distinctive seven-slot grille and compact body design. +02607.jpg The image shows a white Jeep Compass SUV 2012 with a smooth texture, viewed from the front-left angle parked on a residential street with trees and a sidewalk in the background, featuring characteristic seven-slot grille and silver alloy wheels. +07218.jpg A glossy black Jeep Compass SUV 2012 is positioned in a three-quarter front view against an urban skyline at dusk, with striking dark alloy wheels and distinctive front grille features illuminated by city lights. +03921.jpg This rear view of a Jeep Compass SUV 2012 showcases its glossy black finish, chrome accent strip on the tailgate, and red tail lights, set against a suburban street with buildings and other vehicles in the background. +05110.jpg The Jeep Compass SUV 2012 is a maroon vehicle with a glossy texture, viewed from the front-left angle in a suburban street environment, showcasing its distinctive seven-slot grille and sleek silver rims against a backdrop of greenery and traffic signs. +04371.jpg The Jeep Compass SUV 2012 appears in a dark blue color with a smooth texture, seen from a front-left angle in a dealership lot beside a gray building, featuring signature seven-slot grille and silver alloy wheels. +05149.jpg A metallic gray Jeep Compass SUV 2012 is shown from an elevated front-side view in a parking lot, featuring a distinct seven-slot grille and rounded headlights, with a clear blue sky reflected on its smooth surface. +03825.jpg A black Jeep Compass SUV 2012 is seen from the front-left angle, featuring a shiny exterior and distinctive grille, driving on a snow-covered, open landscape with distant rolling hills. +08001.jpg A white 2012 Jeep Compass SUV with a smooth texture is viewed from a front-right angle, parked indoors against a plain, light-colored backdrop, showcasing its signature seven-slot grille and silver five-spoke rims. +06555.jpg The Jeep Compass SUV 2012 is a silver vehicle with a smooth texture, viewed from a frontal angle in a snowy forest environment, featuring distinctive vertical grille slots and angular headlights. +02219.jpg The 2012 Jeep Compass SUV appears in a glossy white finish with a front three-quarter view, showcasing its distinct seven-slot grille and black accents, set against a backdrop of greenery and a roadway. diff --git a/utils/area/descriptions/Car/generated_descriptions/Jeep_Grand_Cherokee_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Jeep_Grand_Cherokee_SUV_2012_descriptions.txt new file mode 100644 index 0000000..d25d844 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Jeep_Grand_Cherokee_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +01441.jpg A dark gray Jeep Grand Cherokee SUV 2012 is positioned at a three-quarter front view on a wet asphalt surface, featuring a classic seven-slot grille, with visible reflections on its glossy paint, against a backdrop of industrial buildings. +02327.jpg A dark-colored Jeep Grand Cherokee SUV 2012 is seen parked in a residential driveway from a front three-quarter angle, featuring a glossy finish, chrome accents on the grille, and a blurred building in the background. +06736.jpg The black Jeep Grand Cherokee SUV 2012 is seen from the side in a parking lot with palm trees, featuring shiny chrome wheels and red brake calipers, against a dealership background. +06435.jpg The 2012 Jeep Grand Cherokee SUV appears silver with a smooth metallic texture, viewed from the front left angle in a sunlit forest setting, featuring its distinctive seven-slot grille and chrome accents. +02129.jpg The low-resolution image shows a champagne-colored Jeep Grand Cherokee SUV 2012 with a slightly matte texture, viewed from a rear three-quarter angle, parked next to a modern building with reflective glass windows, highlighting its five-spoke alloy wheels and bold rear taillights. +06100.jpg The 2012 Jeep Grand Cherokee SUV is shown in a glossy black finish, viewed from the front three-quarter angle with a showroom background, highlighting its prominent chrome grille, angular headlights, and five-spoke alloy wheels. +01980.jpg The image shows a white Jeep Grand Cherokee SUV 2012 with a polished texture, viewed from the front-left angle, parked on a paved lot beside a building and other parked cars, featuring a distinct chrome grille and five-spoke alloy wheels. +02872.jpg The 2012 Jeep Grand Cherokee SUV in the image is a metallic silver color with a sleek texture, shown in a side profile pose against an urban backdrop of ornate building facades, featuring tinted windows and distinct chrome details. +07872.jpg A silver Jeep Grand Cherokee SUV 2012, viewed from the front-left angle, is set against a rugged desert landscape with red rock formations, featuring distinctive seven-slot grille, chrome accents, and alloy wheels. +03140.jpg A dark metallic Jeep Grand Cherokee SUV from 2012 is viewed from the front, showcasing its signature chrome grille and angular headlights, set in a sunlit urban lot with parked vehicles in the background. +06822.jpg The 2012 Jeep Grand Cherokee SUV appears in a metallic silver color with a clean, smooth texture, shown from a side angle in an indoor showroom with a white wall and visible logos in the background, featuring prominent alloy wheels and a sleek, modern design. +02930.jpg The Jeep Grand Cherokee SUV 2012 is metallic silver with a polished texture, viewed from the front-left angle, set against a clean indoor backdrop, featuring its distinctive seven-slot grille and rounded headlights. +03197.jpg The Jeep Grand Cherokee SUV 2012 in the image appears silver with a matte texture, viewed from a low front three-quarter angle, set against a dealership lot with streetlights and other vehicles in the background, featuring distinctively rounded headlights and a seven-slot grille. +06077.jpg The Jeep Grand Cherokee SUV 2012 appears in a metallic silver color with a smooth texture, viewed from a front three-quarter angle, set against a concrete backdrop, highlighting its signature seven-slot grille and high ground clearance. +03474.jpg The low-resolution image displays a dark brown Jeep Grand Cherokee SUV from a rear three-quarter view, parked on a gravel surface under the shade of a large tree, with shiny chrome accents around the windows and a contrast against the bright, sunlit green lawn and an orange vehicle in the background. +05455.jpg A black 2012 Jeep Grand Cherokee SUV is showcased with a glossy finish, viewed from the front-left angle, parked in a car lot with other vehicles and barren trees in the background, and features distinctive chrome grille accents. +00916.jpg A dark blue Jeep Grand Cherokee SUV 2012 is shown in three-quarter front view, set against a rustic background with tall grass and a stone building, featuring chrome trim, distinctive seven-slot grille, and large alloy wheels. +04391.jpg The Jeep Grand Cherokee SUV 2012 is shown from a three-quarter front view, featuring a metallic silver-gray color with a smooth texture, parked on an urban street with trees and buildings in the background, highlighting its distinctive seven-slot grille and five-spoke alloy wheels. +03627.jpg The Jeep Grand Cherokee SUV 2012 is a glossy black vehicle viewed from a three-quarter front angle, showcasing its chrome grille and large alloy wheels against a busy dealership lot background with various parked cars and signage. +07811.jpg A black Jeep Grand Cherokee SUV 2012 is shown angled from the front right, displaying a shiny chrome grille, reflective surfaces, and parked on a paved surface with a neutral-colored wall and dealership logos in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Jeep_Liberty_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Jeep_Liberty_SUV_2012_descriptions.txt new file mode 100644 index 0000000..8258acd --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Jeep_Liberty_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +06331.jpg The image shows a silver 2012 Jeep Liberty SUV with a prominent front grille and sunroof, captured from a front-right angle as it navigates a snowy, forested landscape with another vehicle in the background. +05627.jpg The Jeep Liberty SUV 2012 in the image is a glossy red with chrome accents, viewed from a front-side angle, situated in an urban park setting, notable for its boxy shape and vertically slotted grille. +05637.jpg The low-resolution image shows a dark-colored Jeep Liberty SUV 2012 with a glossy texture in a rear-side view, parked on a cloudy day in a commercial parking lot, distinguished by its spare tire mount and silver accents on the wheels and rear bumper. +07088.jpg The Jeep Liberty SUV 2012 is depicted in a dark, glossy black with clear reflections on its surface, viewed from a three-quarter front angle inside a well-lit showroom, showcasing its boxy shape, distinctive vertical grille, and alloy wheels, with a clean, shiny floor and a Ford sign in the background. +07902.jpg The 2012 Jeep Liberty SUV is depicted in a low-resolution image as a silver vehicle with a boxy frame, viewed from the side on a residential street, with shiny chrome wheels and a suburban background of modern houses and a clear blue sky. +04922.jpg In a wooded area filled with leaf-covered ground, the dark green Jeep Liberty SUV 2012 is viewed from the rear three-quarter angle, highlighting its boxy shape, prominent roof rails, and distinctive red tail lights. +06700.jpg The image shows a black Jeep Liberty SUV 2012 with a glossy finish, viewed from the front-left angle, parked in an urban environment, featuring distinctive silver accents on the grille and mirrors, large alloy wheels, and rectangular headlights. +02747.jpg The Jeep Liberty SUV 2012 is a silver, boxy vehicle viewed from the front passenger side, with a reflective metallic finish, parked in a lot with a dealership background, featuring the iconic seven-slot grille and stylish chrome wheels. +05900.jpg The black 2012 Jeep Liberty SUV is positioned in a three-quarter front view, highlighting its chrome grille and distinctive angular body lines, set against a parking lot background with other vehicles nearby. +06141.jpg The 2012 Jeep Liberty SUV is seen from a front three-quarter viewpoint with a metallic beige color and a smooth texture, set in a parking lot surrounded by other vehicles, and features a distinctive seven-slot grille and squared-off wheel arches. +01223.jpg The Jeep Liberty SUV 2012 appears in a dark blue color with a slightly reflective texture, viewed from the front-left angle, parked on an asphalt surface in a dealership with other vehicles and Canadian flags in the background, featuring its characteristic seven-slot grille and angular body shape. +04134.jpg The image depicts a side view of a red 2012 Jeep Liberty SUV with a smooth texture, situated against a plain white background, featuring distinctive squared wheel arches and a roof rack. +03727.jpg The Jeep Liberty SUV 2012 is silver with a smooth finish, viewed from a front three-quarter angle, parked near a waterfront with an industrial backdrop, featuring prominent vertical grille slats and circular headlights. +06732.jpg The Jeep Liberty SUV 2012 appears in a glossy black color with a prominent, squared front design and chrome accents, viewed from the front-left in an indoor showroom with polished concrete floors and overhead lighting. +06639.jpg A sleek black Jeep Liberty SUV 2012, viewed from the front-left angle, stands on a patterned concrete surface with a chrome-finished grille and large alloy wheels, set against a modern building background. +07532.jpg The image depicts a dark-colored Jeep Liberty SUV 2012 with a glossy texture, viewed from a rear three-quarter angle, showcasing its boxy rear end and silver alloy wheels, set against a suburban background with a modern house and well-maintained lawn. +06753.jpg The Jeep Liberty SUV 2012 in the image is a glossy metallic dark gray vehicle viewed from a front-side angle, parked on a sunlit street with a dealership background, featuring its signature seven-slot grille, chrome side mirrors, and prominent wheel arches. +06909.jpg The Jeep Liberty SUV 2012 is white with a smooth texture, viewed from a front three-quarter angle, parked on pavement in front of a dealership with grass and a building in the background, featuring a distinctive boxy shape and iconic seven-slot grille. +03704.jpg The white Jeep Liberty SUV 2012, seen from a front-angle view, features a chrome grille with seven vertical slats, distinctive rectangular headlights, and a clean, glossy texture, parked on a concrete surface with a building marked "Kernersville" in the background. +04093.jpg The Jeep Liberty SUV 2012 is depicted in a vibrant green color with a smooth texture, captured in a dynamic front-side angle as it drives on a road with a blurred cityscape in the background, showcasing its iconic seven-slot grille and rugged build. diff --git a/utils/area/descriptions/Car/generated_descriptions/Jeep_Patriot_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Jeep_Patriot_SUV_2012_descriptions.txt new file mode 100644 index 0000000..b905692 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Jeep_Patriot_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +02192.jpg A silver Jeep Patriot SUV is angled front-facing in tall grass, featuring a boxy grille, circular headlights, and fog lights, with a wooded background. +07504.jpg The low-resolution image shows a deep red Jeep Patriot SUV 2012 with a smooth texture, positioned at a slight front-side angle on a dealership lot; it features characteristic round headlights and the seven-slot grille, with reflective windows showcasing a glass storefront and other vehicles in the background. +06933.jpg The low-resolution image displays a silver Jeep Patriot SUV 2012 in a side profile view, parked on a gravel surface against a backdrop of dense, tall grass, featuring black window trims and distinct alloy wheels. +04226.jpg The image shows a bright blue Jeep Patriot SUV 2012 with a slightly matte finish, captured from a rear three-quarter view with a dealership backdrop, showcasing its boxy shape, distinct vertical taillights, and prominent rear bumper. +02174.jpg The Jeep Patriot SUV 2012 is a white vehicle viewed from a three-quarter front angle, set in a parking lot with other vehicles and warehouses in the background, featuring a boxy shape with distinctive round headlights and a prominent grille. +06621.jpg The Jeep Patriot SUV 2012 appears in a metallic silver color with a boxy, rugged texture, viewed from a front-side angle in a grassy field with a brick house and a lighthouse in the background, featuring the iconic seven-slot grille and round headlights. +02940.jpg The Jeep Patriot SUV 2012 appears in a silver color with a smooth texture, viewed from a slightly elevated rear three-quarter angle in a parking lot surrounded by other vehicles, with distinctive features like its boxy shape and sharp edges clearly visible even at low resolution. +07711.jpg The image shows a silver Jeep Patriot SUV 2012 viewed from the front with prominent round headlights, a seven-slot grille, and a forested background on a narrow road, highlighting its rugged texture and design. +03586.jpg The Jeep Patriot SUV 2012 is white with smooth textures, viewed from the rear-left angle in front of a modern dealership, highlighted by its boxy shape, chrome wheels, and distinct black trim accents. +06185.jpg The silver Jeep Patriot SUV 2012 is positioned at a three-quarter front view inside a minimalist, well-lit indoor environment, featuring a boxy design with distinctive vertical grille slats and a smooth, matte finish. +06725.jpg The Jeep Patriot SUV 2012 is a silver vehicle with a prominent front grille, viewed from a three-quarter angle in a showroom setting, featuring round fog lights and distinct roof rails against a plain backdrop. +00706.jpg The black Jeep Patriot SUV 2012, viewed from the front-left angle, displays its classic boxy shape with a prominent seven-slot grille, circular headlights, and is parked on grass with a dealership and balloons in the background. +02950.jpg The 2012 Jeep Patriot SUV is a cherry red vehicle with a boxy build and prominent grille, viewed from the front-left angle on a street bordered by a brick and stone urban environment. +06855.jpg The low-resolution photo shows a black Jeep Patriot SUV 2012 with a smooth texture, featuring a front-side view that highlights its signature seven-slot grille and rugged wheels, set against an urban backdrop with trees and a cloudy sky. +04106.jpg The image shows a dark blue Jeep Patriot SUV 2012 with a rugged, boxy design viewed from a front-side angle, parked on a path surrounded by grass and hills, highlighted by its distinctive seven-slot grille and silver alloy wheels. +02072.jpg The 2012 Jeep Patriot SUV appears in a metallic beige color with a smooth texture, shown in a three-quarter rear view on a paved road, set against a scenic background of distant hills and greenery at sunset, featuring distinct square taillights and a roof rack. +00344.jpg A silver-gray Jeep Patriot SUV 2012 is positioned at a slight angle in a forested environment with a dirt path, displaying its boxy shape, distinctive seven-slot grille, and roof rack against a backdrop of lush green trees. +02218.jpg The low-resolution image depicts a white Jeep Patriot SUV 2012 with a smooth texture from a front-side angle, situated on a paved driveway with a large billboard in the background, showcasing its boxy shape and distinctive chrome grille. +05022.jpg The Jeep Patriot SUV 2012 appears in a glossy black color with a side-front view, showcasing its signature seven-slot grille and boxy silhouette, set against an urban skyline at dusk. +00718.jpg The 2012 Jeep Patriot SUV appears in a metallic black color with a matte texture, viewed from a three-quarter front perspective in a sunny outdoor setting against a beige wall, featuring distinctive round headlights and the traditional seven-slot grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Jeep_Wrangler_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Jeep_Wrangler_SUV_2012_descriptions.txt new file mode 100644 index 0000000..ab13653 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Jeep_Wrangler_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +03528.jpg A red Jeep Wrangler SUV 2012 with a black hardtop is depicted from a front-side angle, showcasing its iconic seven-slot grille and circular headlights, set against a plain white background. +01667.jpg A bright yellow Jeep Wrangler SUV 2012 is viewed from the front-left angle, parked on rocky terrain in a wooded area, showcasing its distinctive Rubicon markings and rugged off-road tires. +01154.jpg A silver Jeep Wrangler SUV 2012 is viewed in three-quarters from the front passenger side, set in a barren, flat landscape with a cloudy sky, showcasing its iconic seven-slot grille, round headlights, and rugged tires on a sunlit day. +05736.jpg The 2012 Jeep Wrangler SUV appears in a glossy red finish with a rugged texture, viewed from a front three-quarter angle, set against a dealership lot with other vehicles visible; distinguished by its prominent seven-slot grille and robust fender flares. +07294.jpg The 2012 Jeep Wrangler SUV is a bright green vehicle with a rugged texture, viewed from a front-angle perspective against a forested background, featuring round headlights and a prominent seven-slot grille. +04404.jpg The Jeep Wrangler SUV 2012 appears in a vibrant orange color with a rugged texture, captured from a rear three-quarter angle, navigating through a shallow water crossing in a mountainous forest environment with visible spare tire and iconic angular design. +01592.jpg The red Jeep Wrangler SUV 2012 is captured from a front-side angle driving on a dirt path through a dense forest, showcasing its round headlights, iconic seven-slot grille, black trim, and rugged off-road stance amidst tall trees. +02043.jpg A black Jeep Wrangler SUV 2012 with a matte texture is viewed from the rear left angle on a wet car dealership lot, featuring a prominent spare tire mounted on the back and visible exhaust steam against a backdrop of parked vehicles and dealership signage. +02819.jpg A beige Jeep Wrangler SUV from 2012 with a visible "Rubicon" decal on the hood is captured in a dynamic side view, driving across a sandy desert landscape, showcasing its rugged tires and iconic seven-slot grille. +05551.jpg A maroon Jeep Wrangler SUV 2012 with a hardtop is positioned at a three-quarter front view on a rocky shore, featuring distinctive round headlights and a rugged bumper, with cliffs and a calm sea in the background. +04422.jpg The Jeep Wrangler SUV 2012 is a glossy black vehicle viewed from a front-side angle with a distinctive seven-slot grille, round headlights, and large, shiny wheels, parked on a paved dealership lot with a covered entrance in the background. +04336.jpg The 2012 Jeep Wrangler SUV is captured from a front angle in a vibrant orange color with a slightly glossy finish, showing its iconic seven-slot grille and round headlights, parked alongside similar vehicles on a gravel lot with trees in the blurred background. +01936.jpg The Jeep Wrangler SUV 2012 is a silver vehicle with a rugged texture viewed from the front-left angle, set against a grassy, dry backdrop with a visible fence, featuring its iconic round headlights and seven-slot grille. +00935.jpg The 2012 Jeep Wrangler SUV is a vibrant orange with a rugged texture, viewed from the front left three-quarter angle in a forested area with tall trees, featuring distinct black fender flares, a visible spare tire mounted on the rear, and iconic round headlamps. +01621.jpg The Jeep Wrangler SUV 2012 is a silver-colored vehicle with a matte finish, viewed from the front under a large white canopy in a parking lot, showcasing a distinct seven-slot grille and round headlights. +05606.jpg A bright red Jeep Wrangler SUV 2012 with a black hardtop is prominently parked in a sunny outdoor setting beside dense green foliage, showcasing its rugged tires, distinctive grille, and "RUBICON" decal on the hood. +01462.jpg The Jeep Wrangler SUV 2012 appears in a bright blue color with a smooth texture, seen from an angled front-side view in a sunlit parking lot, featuring iconic round headlights, a vertical grille, and rugged tires. +01563.jpg The 2012 Jeep Wrangler SUV appears in a dark green color with a matte finish, shown from a front three-quarter view, parked in a dealership lot with visible "Rubicon" branding on the hood, distinctive round headlights, a seven-slot grille, and robust off-road tires. +02390.jpg The Jeep Wrangler SUV 2012 in the image is a vibrant orange with a glossy finish, viewed from the rear driving on a city street, featuring a spare tire mounted on the back with distinct silver rims, surrounded by a blurred green and concrete urban environment. +05098.jpg The Jeep Wrangler SUV 2012, viewed from the rear three-quarter perspective, features a dark red body with a contrasting gray hardtop, a visible spare tire mounted on the back, and is situated in a parking lot with visible buildings and other vehicles in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Aventador_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Aventador_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..5964d8a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Aventador_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +05597.jpg The Lamborghini Aventador Coupe 2012 in the image is a bright red car with sharp, angular design elements, positioned centrally within a large indoor factory setting surrounded by a group of people, with distinctive low-profile styling and visible headlights. +06721.jpg The Lamborghini Aventador Coupe 2012 is displayed in vivid orange with a glossy texture, positioned in a brightly lit exhibition space showcasing its sleek side profile and black alloy wheels, set against a large white backdrop featuring the Audi logo and surrounded by a crowd in an indoor showroom setting. +00959.jpg The Lamborghini Aventador Coupe 2012 is showcased in a vibrant red color with a glossy finish, viewed from the side profile against a backdrop of historic staircases and classical architecture, featuring sharp, angular design lines and aggressive styling elements despite the low resolution. +07367.jpg The image shows a side view of a bright red Lamborghini Aventador Coupe 2012 with sleek curves and black wheels, set against a neutral, dark background that emphasizes its aerodynamic contours. +02657.jpg A front view of a vibrant orange Lamborghini Aventador Coupe 2012 with its iconic scissor doors open against a plain gray background, showcasing its angular headlights and sharp, aerodynamic lines. +01521.jpg The Lamborghini Aventador Coupe 2012 appears in a vibrant orange color with a glossy texture, viewed from a front three-quarter angle against a plain gray background, showcasing its sharp, aerodynamic lines and distinctive scissor doors. +02084.jpg The Lamborghini Aventador Coupe 2012 is a bright orange sportscar viewed from the front, showcasing its angular headlights and sleek, aggressive body lines against a neutral gray background. +07185.jpg A vibrant orange Lamborghini Aventador Coupe 2012 is captured from a rear three-quarter angle against a plain, light gray background, showcasing its angular taillights, black rear diffuser, and hexagonal exhaust tip. +03323.jpg The Lamborghini Aventador Coupe 2012 is a vibrant orange with a smooth, glossy texture, viewed from a low rear 3/4 angle in a minimalistic grey studio setting, showcasing its sharp angular lines, distinctive side intakes, and bold rear diffuser. +01586.jpg The image shows a vibrant orange Lamborghini Aventador Coupe 2012 from a top-down perspective, highlighting its sharp angular contours, prominent headlights, and a sleek background with a smooth, monochromatic surface. +05735.jpg The Lamborghini Aventador Coupe 2012 appears in vibrant orange with a glossy finish, captured from a front three-quarter view on a highway, highlighted by its iconic scissor doors and angular headlights, surrounded by a backdrop of blurred countryside and other vehicles. +07542.jpg The Lamborghini Aventador Coupe 2012 is shown in a vibrant deep red color with a glossy texture, captured from a front three-quarters angle against a simple concrete wall backdrop, featuring sharp aerodynamic lines, prominent wheel arches, and iconic hexagonal headlights. +02955.jpg The Lamborghini Aventador Coupe 2012 is shown from a top-down viewpoint, featuring a vibrant orange color with a smooth, glossy texture, set against a plain gray background, highlighting its sharp, angular design lines and distinctive Y-shaped LED headlights. +06449.jpg The Lamborghini Aventador Coupe 2012 is depicted in a low-resolution image with a sleek, angular front view, featuring a matte white finish and prominent hexagonal vents, against a blurred outdoor backdrop with hints of a racing track. +02616.jpg The Lamborghini Aventador Coupe 2012 appears in a bright orange hue with a sleek, angular body design seen from a front three-quarter perspective, set against a blurred racetrack background, highlighting its sharp headlights and large intakes. +01684.jpg The vivid orange Lamborghini Aventador Coupe 2012 is captured in motion from a side profile against a blurred countryside background, showcasing its sleek aerodynamic design, prominent rear air intakes, and distinctive black wheels. +01196.jpg The image shows a red Lamborghini Aventador Coupe 2012 with a glossy finish, photographed from a low front angle, set against an urban skyline backdrop with tall buildings and a waterfront, highlighting its sharp edges and aerodynamic design. +03500.jpg A vibrant orange Lamborghini Aventador Coupe 2012 is captured in a side profile, racing on a track with blurred green barriers in the background, showcasing its sleek, aerodynamic design and pronounced angular contours. +07640.jpg The image shows a vibrant orange Lamborghini Aventador Coupe 2012 with a sleek, angular design captured from a front-side viewpoint on a blurred roadway, set against a blurred background of trees, highlighting its low-profile stance and distinctive black wheels. +00727.jpg The image shows a side view of a low-resolution Lamborghini Aventador Coupe 2012 in metallic orange, displaying its sleek aerodynamic profile against a dark, minimalist background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Diablo_Coupe_2001_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Diablo_Coupe_2001_descriptions.txt new file mode 100644 index 0000000..990c026 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Diablo_Coupe_2001_descriptions.txt @@ -0,0 +1,20 @@ +01585.jpg The yellow Lamborghini Diablo Coupe 2001 is viewed from the front in a parking lot beside other cars, featuring its iconic scissor doors and distinctively wide, aerodynamic body with palm trees in the background. +02117.jpg The Lamborghini Diablo Coupe 2001 in the image is a vivid yellow sports car with a sleek, aerodynamic design, captured from a front three-quarter view on a grassy field, featuring angular headlights and a distinctive, smooth body profile with prominent air intakes. +06341.jpg The image shows a bright yellow Lamborghini Diablo Coupe 2001 with a smooth, glossy texture viewed from a front-right angle, parked on a dark pavement in front of a beige building with distinct yellow accents, featuring aerodynamic curves and large circular alloy wheels. +07658.jpg The Lamborghini Diablo Coupe 2001 is presented in a vibrant yellow color with a glossy texture, viewed from a rear-side angle showcasing its aerodynamic curves and prominent rear spoiler, set against an urban backdrop featuring parked vehicles and industrial buildings. +01499.jpg The bright yellow Lamborghini Diablo Coupe 2001, seen from a side profile, features a sleek and aerodynamic body with a distinctive rear wing, parked on a street with a building in the background and surrounded by concrete and greenery. +04791.jpg The Lamborghini Diablo Coupe 2001 is depicted in a striking metallic gold color with smooth sleek lines, viewed from a front three-quarter angle against a simple white backdrop, showcasing its aerodynamic curves and signature scissor doors. +02337.jpg The yellow Lamborghini Diablo Coupe 2001, captured from a low front-side angle, showcases its sleek aerodynamic design with distinct pop-up headlights, in an urban street setting lined with trees and buildings. +04441.jpg The Lamborghini Diablo Coupe 2001, in a vibrant yellow color with a glossy texture, is pictured in profile with its scissor doors open, set against a waterfront backdrop with signs and palm trees. +00853.jpg The low-resolution image shows a vibrant yellow Lamborghini Diablo Coupe 2001 with a sleek, aerodynamic design viewed from a front-side angle, parked on grass amidst other cars, emphasizing its sharp lines, signature scissor doors, and large air intakes. +02489.jpg A yellow Lamborghini Diablo Coupe 2001 with a smooth, glossy texture is captured in a three-quarter front view inside a showroom, featuring distinctive pop-up headlights and large silver rims against a sleek, low-slung profile. +01090.jpg The image shows a yellow Lamborghini Diablo Coupe 2001 with a glossy texture, captured from an elevated front-right angle, featuring silver multi-spoke wheels and set against a textured stone pavement background. +00636.jpg The 2001 Lamborghini Diablo Coupe is seen from a frontal viewpoint, showcasing its bright yellow color with a smooth, glossy texture, distinctive scissor doors partially open, and is set against a muted, cobblestone background, highlighting its iconic low-slung, wide stance and quad headlights. +03983.jpg The Lamborghini Diablo Coupe 2001 is shown in a vibrant yellow hue with a sleek, aerodynamic shape, captured from an elevated three-quarter front view against a textured cobblestone background, highlighting its distinctive scissor doors, large air intakes, and chrome wheels. +00521.jpg The Lamborghini Diablo Coupe 2001 is a bright yellow sports car with a sleek and aggressive stance, viewed from the front in an urban nighttime setting with headlights illuminating its iconic angular headlights and low-slung body. +05632.jpg A yellow Lamborghini Diablo Coupe 2001 with a sleek, glossy finish is viewed from a front-side angle, showcasing its scissor door design and aggressive air intakes, parked on a grassy lawn surrounded by people and other vehicles. +03492.jpg The low-resolution image shows a vibrant yellow Lamborghini Diablo Coupe 2001, viewed from a front three-quarter angle with its sleek aerodynamic body and distinctive wide rear intakes, parked on a concrete surface in front of a brick and glass building. +01995.jpg The image shows a yellow Lamborghini Diablo Coupe 2001 with a glossy finish, viewed from the front-left three-quarter angle, parked on a tan brick driveway surrounded by tropical greenery and orange walls, featuring distinctive pop-up headlights and wide air intakes. +06641.jpg The Lamborghini Diablo Coupe 2001 in the image is a bright yellow car with a sleek, aerodynamic design and upward-opening scissor doors, captured from a three-quarter front view in an empty parking lot, highlighting its distinctive rounded headlights and five-spoke alloy wheels. +03626.jpg The yellow Lamborghini Diablo Coupe 2001 is viewed from the front-left angle, showcasing its sleek aerodynamic design with distinctive angular headlights and scissor doors, set against a modern architectural backdrop with reflective glass panels. +02387.jpg The yellow Lamborghini Diablo Coupe 2001 is viewed from the rear-left showing its sleek lines, prominent black spoiler, dual round taillights, and parked on a paved surface with another yellow car in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Gallardo_LP_570-4_Superleggera_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Gallardo_LP_570-4_Superleggera_2012_descriptions.txt new file mode 100644 index 0000000..86bbf00 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Gallardo_LP_570-4_Superleggera_2012_descriptions.txt @@ -0,0 +1,20 @@ +00913.jpg The image shows a vibrant lime green Lamborghini Gallardo LP 570-4 Superleggera 2012, captured in a dynamic front-side view mid-air during a jump on a wooded road, highlighting its aerodynamic contours, black accents, and distinctive rear wing against a backdrop of greenery. +07199.jpg The image depicts a lime green Lamborghini Gallardo LP 570-4 Superleggera 2012 with a sleek, aerodynamic design viewed from a low front angle on a winding road surrounded by trees, highlighting its sharp black accents and distinctive front splitter. +00587.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 is depicted in a vibrant lime green with a glossy finish, shot from a front three-quarter angle against a minimalistic dark gradient background, highlighting its aerodynamic contours, aggressive front bumper, black aerodynamic wing, and sleek side skirts. +03122.jpg The 2012 Lamborghini Gallardo LP 570-4 Superleggera in a vibrant lime green with a matte texture is shown from a rear three-quarter view, highlighting its large rear wing, distinctive rear diffuser, quad exhausts, and black alloy wheels against a high-contrast showroom background with bright lighting. +04517.jpg The image shows a lime green Lamborghini Gallardo LP 570-4 Superleggera 2012 viewed from the side, featuring a sleek, low profile with distinct black rims, parked in a well-lit showroom environment. +06251.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 is shown in a striking lime green color with a glossy finish, viewed from a low rear angle highlighting its aerodynamic spoiler, distinctive rear diffuser, and quad exhausts, set indoors in a showroom environment. +00822.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 is a vibrant lime green sports car showcased from a front-facing low angle on a deserted racetrack, featuring sharp angular headlights and a carbon fiber front lip, set against a clear blue sky with distant trees in the background. +06282.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 in the image is a vibrant green sports car with a sleek, aerodynamic design, captured from a side angle in a lush, tree-lined environment, featuring black wheels and distinctive side decals. +01666.jpg The image shows an orange Lamborghini Gallardo LP 570-4 Superleggera 2012 with a sleek, aerodynamic shape, viewed from the front-left side on an urban rooftop setting, featuring prominent black wheels and side skirts against a backdrop of cloudy skies and distant hills. +05107.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 is showcased in a glossy white finish with black accents, viewed from a three-quarter front angle in a showroom environment, highlighting its aerodynamic lines and aggressive front fascia with angular headlights. +02083.jpg A vibrant lime green Lamborghini Gallardo LP 570-4 Superleggera 2012 with a matte finish is captured from a low front angle, showcasing its angular headlights and black underbody against a paved open area with other cars and people in the background. +07826.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 appears in a striking bright green color with sleek, angular lines and carbon accents, viewed from a front-side angle in a showroom environment with dark surroundings and reflections on the glossy surface. +03753.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 appears in a vibrant lime green color with a smooth, streamlined texture, viewed from a low front angle on a curvy road with blurred natural scenery in the background, showcasing its sharp headlights and aerodynamic front design. +04952.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 is depicted in a vivid lime green with a sleek, aerodynamic texture, viewed from a rear-side angle on an empty, overcast open road, highlighting its rear wing and dual exhausts against a vast, cloudy sky. +00421.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 in the image is showcased in a vivid lime green color with sleek lines and dark alloy wheels, viewed from a side profile on a glossy, circular showroom floor surrounded by a crowd in an indoor exhibition setting. +03075.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 in the image is a vibrant lime green with black accents, viewed from the front right angle, set in an indoor showroom with glossy tiled floors, featuring a sleek, low-slung design and distinctive aerodynamic lines. +06606.jpg The lime green Lamborghini Gallardo LP 570-4 Superleggera 2012 is viewed from the rear on a cobblestone path, showcasing its aerodynamic rear wing, distinctive taillights, and dual exhausts against a blurred cityscape background. +03689.jpg The car is a vibrant lime green Lamborghini Gallardo LP 570-4 Superleggera 2012, viewed from a side angle with a sleek, aerodynamic body, distinctive black wheels and trim, and a minimalistic studio background that enhances its sporty, high-performance appearance. +05126.jpg A lime green Lamborghini Gallardo LP 570-4 Superleggera 2012 is captured from a low-angle front view, accentuating its aerodynamic lines and carbon fiber elements, with a mountainous landscape and pine trees in the background. +05287.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 appears in a vibrant orange color with a sleek texture, viewed from a rear angle showcasing its distinctive large rear wing, set against the backdrop of a grand building and trees under clear skies. diff --git a/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Reventon_Coupe_2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Reventon_Coupe_2008_descriptions.txt new file mode 100644 index 0000000..4de2c79 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Lamborghini_Reventon_Coupe_2008_descriptions.txt @@ -0,0 +1,20 @@ +06652.jpg The Lamborghini Reventon Coupe 2008, seen from a low front angle, features a matte metallic gray finish with sharp angular lines, highlighted by its sleek design and aggressive front headlights, set against a rugged, dilapidated industrial backdrop. +03950.jpg The Lamborghini Reventon Coupe 2008 in the image is matte grey with angular, stealth-like bodywork captured from a low front-end viewpoint, surrounded by a suburban street with trees and residential houses in the background. +01729.jpg A matte grey Lamborghini Reventon Coupe 2008 is displayed from a front-side angle under showroom lighting, with its distinct sharp angles and upward-opening door, set against a modern interior with blue-lit tile walls and a crowd in the background. +01730.jpg The Lamborghini Reventon Coupe 2008 appears in matte gray with angular, stealth fighter-inspired lines, viewed from a side angle against a blurred backdrop of aircraft on a runway, highlighting its sharp, aerodynamically sculpted profile and distinctive rear air vents. +04646.jpg The Lamborghini Reventon Coupe 2008 appears in a matte gray finish from a front-facing viewpoint, with its angular and sharp design lines, set against a background of an old brick building and grass, and features distinctive triangular headlights and large air intakes. +06186.jpg The Lamborghini Reventon Coupe 2008 appears in a matte gray finish with an open scissor door, viewed from the front in a crowded urban environment, featuring angular headlights and sharp, aggressive lines. +03235.jpg The Lamborghini Reventon Coupe 2008 in the image is a sleek matte gray with angular, aggressive front contours, viewed from a low front angle amidst a crowded indoor setting, featuring its distinctive triangular air intakes and sharp, geometric headlight design. +07647.jpg The Lamborghini Reventon Coupe 2008, shown from a high rear three-quarter view, is painted in a matte gray finish with sharp angles and distinctive dark alloy wheels, situated against a paved, patterned backdrop next to a brick wall. +02786.jpg The Lamborghini Reventon Coupe 2008 is depicted in a matte dark gray color with a sharp, angular design, featuring upward-opening scissor doors, in a low-angle view against a backdrop of lush greenery and rustic brick walls. +07531.jpg The Lamborghini Reventon Coupe 2008 is shown in a sleek, matte grey finish with angular, aerodynamic lines from a three-quarter front view, set against a plain studio backdrop, highlighting its sharp, distinctive headlights and unique wheel design. +06510.jpg The Lamborghini Reventon Coupe 2008 is pictured in a frontal view displaying its matte gray finish, sharp angular lines, and distinctive Y-shaped headlights, set against a backdrop of a modern showroom with a staircase and a gathering of people. +05294.jpg The Lamborghini Reventon Coupe 2008 in the image has a matte gray finish with angular and sharp body lines, viewed from a low front angle showing its aggressive front fascia and distinct vents, against a backdrop of a brick wall and scattered people in a sunny outdoor setting. +07449.jpg The Lamborghini Reventon Coupe 2008 appears in a matte gray finish, viewed from a side profile showcasing its sharp, angular design lines and prominent air intakes, set against a rustic brick wall background with a worn metal-framed window. +04805.jpg The Lamborghini Reventon Coupe 2008 is viewed from a frontal, slightly elevated angle, showcasing its matte gray angular body with sharp lines, distinctive hexagonal air intakes, and visible glass engine cover, set against a bright indoor showroom with a minimalist white floor. +03700.jpg The Lamborghini Reventon Coupe 2008 appears in a matte dark gray finish, viewed from a front three-quarter angle on a rotating display platform in a modern showroom with illuminated grid panels in the background, showcasing its angular design and distinctive scissor doors. +01846.jpg The Lamborghini Reventon Coupe 2008, shown in a matte gray texture, is captured from a rear three-quarter viewpoint with one vertical-opening door up, set against an industrial background featuring large, barred windows and weathered concrete walls, highlighting its sharp, angular design and distinctive taillights. +08012.jpg The Lamborghini Reventon Coupe 2008 appears in a matte charcoal grey color with sharp, angular contours and large air intakes, viewed from a front three-quarter perspective against a smooth black and gray gradient background, highlighting its futuristic and aggressive design. +02803.jpg The Lamborghini Reventon Coupe 2008 in the image is viewed from a front-side angle, showcasing its matte gray finish and sharp angular design, with prominent air intakes and distinctive scissor doors, set against a backdrop of an indoor exhibition space with dim lighting and a Lamborghini logo on the wall. +03810.jpg The Lamborghini Reventon Coupe 2008 is captured from a low-angle front view, highlighting its matte olive green finish with a sleek, angular body and distinctive Y-shaped front lights against a clean white background. +06304.jpg A sleek, matte grey Lamborghini Reventon Coupe 2008 is captured from a front-side angle, highlighting its sharp, angular design against a gradient gray backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions/Land_Rover_LR2_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Land_Rover_LR2_SUV_2012_descriptions.txt new file mode 100644 index 0000000..8f61d39 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Land_Rover_LR2_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +02778.jpg The image shows a dark-colored 2012 Land Rover LR2 SUV from a front-side angle, highlighting its sleek, polished body and distinctive grille with the "Land Rover" logo, set against a neutral studio backdrop. +07733.jpg The Land Rover LR2 SUV 2012 appears in a glossy black color with a front-left angled view, featuring its signature grille and headlight design, set against a backdrop of palm trees and a paved road. +00143.jpg The Land Rover LR2 SUV 2012 is displayed in a glossy dark blue color, viewed from a front three-quarter angle with its chrome grille and signature badging prominent, set against a scenic backdrop of a tree-lined road. +04298.jpg The low-resolution image shows a white Land Rover LR2 SUV 2012 with a smooth, glossy texture, viewed from a front three-quarter angle, parked outside a brick car dealership with shrubbery, featuring prominent front headlights and a distinctive grille design. +03354.jpg The Land Rover LR2 SUV 2012 is shown in a front three-quarter view with a glossy white finish, parked on a cobblestone driveway with residential houses and manicured lawns in the background, featuring distinct elements like a bold grille, clear headlights, and side steps. +05131.jpg The Land Rover LR2 SUV 2012 is a white vehicle with a smooth finish, viewed from a front-side angle in a dealership setting, with distinctive silver rims and the Classic Land Rover grille visible. +03809.jpg The Land Rover LR2 SUV 2012 in the image is a shiny red vehicle viewed from a front three-quarter angle, parked on a gravel surface with sparse trees and a clear sky in the background, featuring a prominent silver grille and distinctive large headlights. +07129.jpg A blue Land Rover LR2 SUV 2012 is parked on a rocky beach with the ocean and a small island in the background, viewed from the side, showcasing its standard silver alloy wheels and distinctive grille. +07009.jpg The Land Rover LR2 SUV 2012 is displayed in a glossy dark green color, viewed from the front passenger-side angle, parked on a paved lot with other vehicles in the background, featuring silver alloy wheels and a distinctive front grille design. +07004.jpg The silver Land Rover LR2 SUV 2012 is shown from a front-side angle, parked on a wet pavement in front of a dealership with an angled green roof, exhibiting its distinctive squared front grille and five-spoke alloy wheels. +08109.jpg The Land Rover LR2 SUV 2012 in the image is a metallic silver color with a smooth texture, viewed from the side against a mountainous backdrop with a sunset gradient sky, featuring distinct alloy wheels and black trim accents. +07710.jpg The orange Land Rover LR2 SUV 2012 is viewed from the rear-right angle, highlighted by its boxy shape, prominent wheel arches, and sporty alloy wheels, set against a plain white background. +05047.jpg The Land Rover LR2 SUV 2012 appears in a metallic gray color with a smooth texture, viewed from a low front-left angle, set against a cloudy sky and mountainous backdrop, featuring a distinct grille and prominent wheel arches. +05917.jpg The Land Rover LR2 SUV 2012 appears in a metallic gray color with a sleek, smooth texture, viewed from the side with the front driver-side door open against a neutral studio background, featuring distinctive alloy wheels and sporty side vents. +06874.jpg The 2012 Land Rover LR2 SUV appears in a vibrant metallic blue color with a glossy texture, viewed from the front against a stone wall and seaside backdrop, featuring a distinctive silver grille and prominent headlights. +04846.jpg The Land Rover LR2 SUV 2012 is silver with a smooth texture, captured in a three-quarter front view against a rocky beach backdrop, featuring bold headlights and a prominent front grille. +01405.jpg The 2012 Land Rover LR2 SUV appears in a glossy white finish, viewed from a three-quarter front angle, parked on a paved lot with a partially cloudy sky and trees in the background, featuring a distinctive front grille and alloy wheels. +08069.jpg A white Land Rover LR2 SUV 2012 is shown from a front three-quarter angle, displaying its chrome grille and silver alloy wheels, set against a clean, studio-style backdrop. +01896.jpg The Land Rover LR2 SUV 2012 is captured in a front three-quarter view, showcasing its metallic bronze color and smooth texture, set against a snowy mountainous backdrop, with distinct features including its bold grille and prominent wheel arches. +01244.jpg The Land Rover LR2 SUV 2012 appears in a metallic silver color with a smooth texture, viewed from the rear against a backdrop of colorful kayaks, showcasing its symmetrical design and distinct tail lights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Land_Rover_Range_Rover_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Land_Rover_Range_Rover_SUV_2012_descriptions.txt new file mode 100644 index 0000000..1ad040e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Land_Rover_Range_Rover_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +05599.jpg The 2012 Land Rover Range Rover SUV is depicted in a three-quarter front view with a glossy white exterior, set against an urban backdrop of a brick building and greenery, featuring distinct dual headlamps and a signature front grille. +04421.jpg The Land Rover Range Rover SUV 2012 in the image appears with a dark metallic finish featuring a high-gloss texture and is depicted from a front three-quarter angle, set against a suburban backdrop with greenery and stone landscaping, showcasing its signature grille and circular headlights. +07164.jpg The Land Rover Range Rover SUV 2012 in the image has a dark green metallic finish with a front-side view, set against a dealership background with palm trees and mountains, and features its distinct grille and signature headlights. +04961.jpg The dark blue Land Rover Range Rover SUV 2012 is positioned at a three-quarter front view on a gravel path, set against a verdant background with trees, and features distinctive silver alloy wheels and a prominent front grille. +04735.jpg The Land Rover Range Rover SUV 2012, viewed from a front diagonal angle, exhibits a metallic silver color with a glossy texture, set against a wooded background with tall grass and a rocky trail, highlighting its distinctive grille and elongated headlamps. +02425.jpg The Land Rover Range Rover SUV 2012 in the image has a glossy black finish with a front-left angled view, set against a sunny outdoor dealership environment with palm trees and mountains in the background, featuring its distinctive grille and multi-spoke alloy wheels. +00035.jpg The Land Rover Range Rover SUV 2012 in the image is seen from a frontal viewpoint, showcasing a silver exterior with a glossy finish, a distinctive grille with the Land Rover badge, and set in a clear outdoor area with a paved surface and trees in the background, highlighting its iconic round headlights and muscular stance. +04415.jpg The Land Rover Range Rover SUV 2012 is shown from a front-side angle, displaying its glossy black exterior with a distinctive silver grille and prominent wheel design, set against a backdrop of greenery and stone. +01797.jpg The Land Rover Range Rover SUV 2012 is shown in a polished metallic gray, photographed from a three-quarter front angle highlighting its prominent grille, sleek body lines, and silver alloy wheels, set against a neutral studio background. +07991.jpg The 2012 Land Rover Range Rover SUV in the image is a metallic bronze color with a smooth texture, presented in a three-quarter front view, set against a modern, sleek indoor background, featuring distinctive black window trims and a prominent silver grille. +04320.jpg The Land Rover Range Rover SUV 2012 is shown from the front in a low-resolution image, exhibiting a white exterior with a distinctive chrome grille and round headlights, set against a neutral studio background. +05365.jpg The Land Rover Range Rover SUV 2012 is white with a glossy texture, viewed from a front three-quarter angle, parked on an asphalt lot with a wooden building in the background, featuring a distinctive front grille and silver alloy wheels. +00031.jpg In the image, a silver Land Rover Range Rover SUV 2012 is captured in a dynamic front-side view on a winding road, amidst a blurred landscape of trees and hills, highlighting its bold grille and rectangular headlights. +01529.jpg The Land Rover Range Rover SUV 2012 is viewed from a rear three-quarter angle, showcasing its silver color and smooth texture, with a glossy finish under indoor lighting, featuring distinctive tail lights and a dark-tinted rear window, set in a spacious convention center environment. +07580.jpg A black Land Rover Range Rover SUV 2012 is positioned in a frontal view with its prominent grille, rounded headlights, and large alloy wheels visible, set against an open, paved background with a clear sky. +01243.jpg The Land Rover Range Rover SUV 2012 appears in a dark blue shade with a sleek, glossy texture, viewed from a front three-quarter angle against a backdrop of an open field with a clear sky and distant fence, featuring its iconic rectangular grille and large alloy wheels. +06975.jpg The Land Rover Range Rover SUV 2012 is shown from a front three-quarter view, displaying a sleek black color with a glossy finish, round LED headlights, and a distinct grille featuring the RANGE ROVER branding, set against a suburban background with a dealership building and palm trees. +02513.jpg The black Land Rover Range Rover SUV 2012, viewed from the front left with a glossy finish, is parked on a paved surface in front of a Jaguar dealership with distinctive silver alloy wheels and signature front grille. +04515.jpg A metallic silver Land Rover Range Rover SUV 2012 is shown in a three-quarter front view with distinctive square headlights and grille detail, parked on a city street reflecting urban architectural elements. +05687.jpg The Land Rover Range Rover SUV 2012 is shown in a rear three-quarter view, featuring a dark green paint with a glossy texture, circular taillights, and chrome exhaust tips, set against a plain white background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Lincoln_Town_Car_Sedan_2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Lincoln_Town_Car_Sedan_2011_descriptions.txt new file mode 100644 index 0000000..95cd6e5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Lincoln_Town_Car_Sedan_2011_descriptions.txt @@ -0,0 +1,20 @@ +06301.jpg A metallic champagne-colored Lincoln Town Car Sedan 2011 is shown in a three-quarter front view, set against a blurred urban nightscape with distinctive vertical lines, featuring its signature chrome grille and classic alloy wheels. +04834.jpg The 2011 Lincoln Town Car Sedan is shown in a metallic tan color with a smooth texture, viewed from a front-side angle in a car dealership lot, featuring a prominent chrome grille, multi-spoke alloy wheels, and a noticeable "For Sale" sign on the windshield. +07627.jpg A white Lincoln Town Car Sedan 2011 is pictured in a three-quarter front view under a covered area with overcast lighting, featuring chrome accents and distinctive rectangular headlights, with a truck and open parking lot in the background. +07847.jpg The silver Lincoln Town Car Sedan 2011 is viewed from a frontal three-quarter angle, highlighting its elongated body, sleek chrome grille, and polished multi-spoke wheels, set against a background of other vehicles in a dealership parking lot. +06795.jpg The Lincoln Town Car Sedan 2011 is displayed in a crisp white color with a smooth texture, viewed from a three-quarter front perspective, set against a dealership background with trees and a building, featuring distinctive chrome wheels and the iconic grille emblem. +04623.jpg A light beige Lincoln Town Car Sedan 2011 is viewed from a front three-quarter angle on a wet driveway, featuring its characteristic chrome grille and surrounded by a modern suburban background with trees and a stone-clad building. +05793.jpg A white Lincoln Town Car Sedan 2011 is seen from a front-side angle in a car dealership lot, with shiny, multi-spoke wheels, chrome detailing on the grille, a small American flag on the fender, and a backdrop of greenery and pavement. +00304.jpg A silver Lincoln Town Car Sedan 2011 is pictured from a front three-quarter view, showcasing its distinct chrome grille and sleek bodywork, driving on a wet urban road with blurred buildings in the background. +03037.jpg A silver Lincoln Town Car Sedan 2011 is viewed from a front three-quarter angle, showcasing its prominent chrome grille and distinct large headlights, set against a plain white background. +05407.jpg The image shows a rear view of a white Lincoln Town Car Sedan 2011 with a smooth texture, seen in a slightly foggy industrial environment, featuring distinct vertical taillights and a chrome trim along the trunk lid. +01771.jpg The image shows a white Lincoln Town Car Sedan 2011 viewed from the front right three-quarters, featuring a shiny chrome grille and wheels, with a brick-paved area and fenced green background under a partly cloudy sky. +01354.jpg The 2011 Lincoln Town Car Sedan, viewed from the rear three-quarters, features a clean white color with smooth texture, distinct red rear light clusters, and is set against a dealership backdrop with a few trees and parked vehicles. +02191.jpg The 2011 Lincoln Town Car Sedan in low resolution appears in a glossy white finish, viewed from a rear three-quarter angle, showcasing its smooth, elongated body with distinct red tail lights and chrome trimming, set against a background of parked cars and a red building, highlighting its classic luxury design. +05926.jpg The image shows a silver Lincoln Town Car Sedan 2011 viewed from the rear, featuring a smooth, metallic texture and distinct red tail lights, set against a simple white background, highlighting its elegant and classic sedan shape. +07746.jpg The image shows a silver Lincoln Town Car Sedan 2011 with a shiny, smooth texture, viewed from the front left angle, parked in front of a modern dealership building with glass windows and neatly trimmed bushes, showcasing its distinctive long hood and chrome grille. +07567.jpg The 2011 Lincoln Town Car Sedan in the image is a metallic beige color with a glossy finish, viewed from a front diagonal angle in a parking lot with a distant dealership backdrop, featuring its distinctive chrome grille and polished multi-spoke alloy wheels. +07856.jpg The 2011 Lincoln Town Car Sedan appears in a light beige color with a smooth texture, viewed from a side angle, parked in a lot with other vehicles, featuring shiny chrome trim, distinct vertical grille, and elongated bodylines. +07515.jpg The white Lincoln Town Car Sedan 2011 is viewed from a three-quarter front angle, parked in a car lot with visible sale tags on the windshield, featuring distinctive chrome details and a classic grille design amidst other vehicles. +00665.jpg This Lincoln Town Car Sedan 2011 appears in a glossy white color viewed from the front-left angle, parked indoors on a glossy floor with a plain gray wall and promotional banners in the background, featuring distinctive chrome detailing and a prominent front grille. +01495.jpg The image shows a silver Lincoln Town Car Sedan 2011 with a slightly reflective finish, viewed from a front three-quarter angle in a parking lot with trees and another vehicle in the background, featuring a prominent chrome grille and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/MINI_Cooper_Roadster_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/MINI_Cooper_Roadster_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..7410d6c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/MINI_Cooper_Roadster_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +02817.jpg The MINI Cooper Roadster Convertible 2012 is shown from a front-side angle with a silver body and black racing stripes, driving along a coastal road with waves in the background and distinctive dual front headlights. +03369.jpg The image shows a side view of a silver, compact MINI Cooper Roadster Convertible 2012 with a black, soft-top roof driving along a waterfront with a blurred artistic structure overhead and palm trees in the background, highlighting its sporty alloy wheels and iconic round headlights. +05505.jpg The MINI Cooper Roadster Convertible 2012 appears in a sleek silver color with racing stripes on the hood, viewed from a front three-quarter angle on a mountain road, featuring a black grille and open-top conversion against a rocky, winding background. +05652.jpg The MINI Cooper Roadster Convertible 2012 is shown in a side profile view with a metallic silver body, black convertible top down, and distinctive rounded black roll bars, set against a blurred beachside background. +03713.jpg The MINI Cooper Roadster Convertible 2012 is displayed from a front-left angle in a glossy white color with black racing stripes, featuring distinctive round headlights and black wheels, set against an indoor showroom environment with a bright yellow backdrop and several people. +02799.jpg A silver MINI Cooper Roadster Convertible 2012 with black racing stripes, viewed from a front-side angle, features a sporty open-top design on a winding road with blurred foliage and a rocky background. +02902.jpg The MINI Cooper Roadster Convertible 2012 in the image is silver with black racing stripes on the hood, seen from a front-side angle on a curving road with a stone wall in the background, featuring a compact, sporty design and a person driving with the top down. +04867.jpg The MINI Cooper Roadster Convertible 2012 is seen in a side view driving on a road with a light stone wall in the background, featuring a silver body with black racing stripes and a black convertible top down. +00633.jpg The low-resolution image depicts a white MINI Cooper Roadster Convertible 2012 with black racing stripes viewed from an elevated front angle, driving on a rural road with grassy fields and trees in the background. +01749.jpg The MINI Cooper Roadster Convertible 2012 appears in a glossy white color with black racing stripes, seen from a frontal angle on a winding mountain road, featuring a black soft top and distinct curved headlights. +04935.jpg The MINI Cooper Roadster Convertible 2012 is captured from a rear angle, displaying a sleek silver body with black racing stripes, set against a curved, sunlit road with red-painted sidelines and surrounded by a stone wall. +04781.jpg The MINI Cooper Roadster Convertible 2012 is shown in a front-side view with a silver body featuring black racing stripes, contrasted against a rocky coastal landscape with ocean waves, and it has a unique dual-tone side mirror and low-lying stance. +01306.jpg The MINI Cooper Roadster Convertible 2012 appears in a front-facing view with a white body featuring black racing stripes, a sporty design with a low stance, driving on a winding mountain road with a rocky backdrop. +07365.jpg The MINI Cooper Roadster Convertible 2012 is silver with black racing stripes, viewed from a three-quarter front angle on a coastal road, featuring a low roofline with the top down and smooth contours highlighted against ocean waves and rocky landscape. +03016.jpg The MINI Cooper Roadster Convertible 2012 is shown in a glossy silver with black racing stripes, viewed from a front-side angle against an industrial background, featuring a distinctive black soft top, sleek front grille, and vibrant alloy wheels. +04039.jpg The front-view image of the 2012 MINI Cooper Roadster Convertible shows a silver vehicle with black racing stripes on the hood, positioned on a textured stone surface against a backdrop of ocean waves. +06085.jpg The MINI Cooper Roadster Convertible 2012 is shown in a front three-quarter view with a silver body, black racing stripes, and a black convertible top, driving along a harbor road beside a body of water, flanked by palm trees and a marina. +06046.jpg The MINI Cooper Roadster Convertible 2012 is shown from a rear view, featuring a shiny white body with dual racing stripes, a red-accented taillight cluster, and a minimalist indoor setting with a dark background. +06198.jpg A white MINI Cooper Roadster Convertible 2012 with a glossy finish is displayed in a front three-quarter view against a dark background, showcasing its black accents, compact shape, and distinctively curved roofline. +07941.jpg A white MINI Cooper Roadster Convertible 2012 with racing stripes is viewed from the rear, driving on a blurred winding desert road, featuring a twin exhaust system and a black soft-top roof. diff --git a/utils/area/descriptions/Car/generated_descriptions/Maybach_Landaulet_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Maybach_Landaulet_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..cf03f2e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Maybach_Landaulet_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +01973.jpg A white Maybach Landaulet Convertible 2012 with a glossy finish is displayed in a showroom setting, viewed from the front-left corner, highlighting its sleek body lines and distinctive chrome grille under warm ambient lighting. +05409.jpg The low-resolution image shows a sleek white Maybach Landaulet Convertible 2012 from an aerial viewpoint, highlighting its glossy finish and elegant design with a light-colored interior, situated on a textured, gravel-like surface close to a classic black car with a vintage aesthetic. +01271.jpg The vehicle appears to be a sleek white Maybach Landaulet Convertible 2012 with a partially opened roof, viewed from a top-side angle, parked on a cobblestone path surrounded by grass, showcasing its luxurious design. +03262.jpg The image shows a white Maybach Landaulet Convertible 2012 with a sleek finish, viewed from the front three-quarters, set in an indoor showroom environment, featuring its iconic large grille and distinctive multi-spoke wheels. +04412.jpg The image shows a white Maybach Landaulet Convertible 2012 viewed from the rear three-quarter angle, featuring a prominent beige convertible roof contrasted against the sleek body, with distinctive vertical tail lights and chrome accents, set against an indoor showroom backdrop. +04904.jpg The Maybach Landaulet Convertible 2012 appears in a side profile with a sleek, white exterior and a smooth, glossy texture, set against a formal architectural backdrop with symmetrical windows and neatly trimmed trees, highlighting its elongated body and luxurious design. +04130.jpg The image shows a white Maybach Landaulet Convertible 2012 viewed from an elevated angle, highlighting its sleek, luxurious design with a retractable roof section in a sparse, gravel-like background, contrasting with an adjacent classic black vehicle. +01451.jpg The Maybach Landaulet Convertible 2012 in the image appears in a pristine white color with a glossy finish, viewed from the side with the doors open showcasing a luxurious interior, set against a lit showroom environment, highlighting its elongated body and distinctive rims. +01723.jpg The Maybach Landaulet Convertible 2012 appears in a glossy white with a luxurious and sleek texture, viewed from a rear-side angle showing open rear doors and a soft top, set against an upscale indoor showroom environment with distinctive silver trims and elegant design details. +06854.jpg The image shows a top-down view of a sleek, white Maybach Landaulet Convertible 2012 with a contrasting black open roof section, parked on a light stone-textured surface, highlighting its luxurious design and broad, elongated shape. +01505.jpg The Maybach Landaulet Convertible 2012 appears in an overhead view, showcasing its glossy white exterior with a distinctive open-top section and a black soft-top contrast, set against a cobblestone walkway with a hint of green grass on the side. +07374.jpg The low-resolution image shows a white Maybach Landaulet Convertible 2012 with a soft top down, viewed from a rear three-quarter angle in a well-lit indoor showroom, featuring chrome accents, distinctive taillights, and large alloy wheels, set against an unobtrusive background with a fire extinguisher on a white wall. +05316.jpg The Maybach Landaulet Convertible 2012 appears in a sleek white color with a smooth texture, viewed from a rear three-quarter angle against a plain white background, featuring a partially open roof and the distinct long body typical of luxury convertibles. +00317.jpg The Maybach Landaulet Convertible 2012 appears in a sleek white color with a smooth texture, captured from an elevated side angle emphasizing its elongated body, partially open roof, and luxurious detailing, set against a blurred motion backdrop of a green and gray roadway. +02867.jpg The car, viewed from the front left angle, features a sleek white body with a glossy finish, highlighted by the distinctive large grille and elegant black roof, parked inside a spacious, industrial garage with a concrete floor and white corrugated walls. +03049.jpg The Maybach Landaulet Convertible 2012 in the image is a white luxury car viewed from an elevated rear three-quarter angle with a distinctive partially open roof showing the elegant interior, set against a textured grey concrete surface, with its sleek design and rear Maybach emblem visible. +06671.jpg The Maybach Landaulet Convertible 2012 is shown in a low-resolution image featuring a glossy white exterior with a prominent front grille, captured from a slightly elevated three-quarter front view in a well-lit showroom environment, highlighting its luxurious design elements and open rear door. +04033.jpg The Maybach Landaulet Convertible 2012 appears in a pristine white color with a luxurious texture, viewed from a side angle showcasing its elongated profile, against a backdrop featuring an opulent, illuminated building, with distinctive features like a retractable roof and elegant chrome accents visible. +02229.jpg The Maybach Landaulet Convertible 2012 appears in a sleek white color with a glossy texture, viewed from a side profile against a stately yellow and white architectural backdrop, showcasing its elongated body, prominent grille, and elegant, rounded lines with distinctive multi-spoke wheels. +03173.jpg The Maybach Landaulet Convertible 2012 in the image is portrayed in a glossy white finish, viewed from the rear-left angle with its signature half-retracted rear roof and open rear doors in a brightly lit auto show environment, highlighting its elongated body and luxurious detailing. diff --git a/utils/area/descriptions/Car/generated_descriptions/Mazda_Tribute_SUV_2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Mazda_Tribute_SUV_2011_descriptions.txt new file mode 100644 index 0000000..d5c64b9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Mazda_Tribute_SUV_2011_descriptions.txt @@ -0,0 +1,20 @@ +04866.jpg The image shows a blue Mazda Tribute SUV from 2011 with a smooth metallic texture, viewed from the rear side in a residential driveway setting, featuring distinct taillights and a modest rear bumper design, surrounded by stonework and greenery. +01217.jpg The Mazda Tribute SUV 2011 in the image is a light silver color with a smooth texture, photographed from a front three-quarter viewpoint in a car dealership lot with a visible red and black signage, and it features a prominent front grille and dark alloy wheels. +03927.jpg The low-resolution image shows a metallic beige Mazda Tribute SUV 2011 viewed from a front-side angle on a wet road, set against a blurred countryside background, featuring chrome-trimmed grille and standard alloy wheels. +00499.jpg The Mazda Tribute SUV 2011 in the image is silver with a smooth metallic texture, viewed from a front-side angle in a forested area, featuring distinct roof rails and prominent wheel arches. +05999.jpg The Mazda Tribute SUV 2011 is shown in a side front view with a glossy black finish, positioned in a wet parking lot surrounded by other vehicles, with visible features including silver alloy wheels and roof rails. +01088.jpg The Mazda Tribute SUV 2011 appears in a glossy black color with a visible side and front profile, parked in a dealership lot amidst other vehicles, and is distinguished by its rounded headlights and roof rack. +07127.jpg The Mazda Tribute SUV 2011 appears in a side view with a smooth silver body, prominent red tail lights, and is set against a solid black background, emphasizing its boxy shape and dark window tinting. +04968.jpg The Mazda Tribute SUV 2011, seen from a side angle on a wet road, features a vibrant red color with smooth body lines, distinct black roof rails, and is set against a blurred autumnal background with orange foliage. +04808.jpg The 2011 Mazda Tribute SUV is shown from a rear view in a solid gray color with a smooth texture, featuring a distinct silver horizontal trim along the back, with a suburban environment faintly visible in the background. +05790.jpg The 2011 Mazda Tribute SUV is displayed in a low-resolution image with a glossy black finish and smooth texture, viewed from a rear three-quarter angle in a plain, well-lit indoor setting, featuring silver alloy wheels and a visible roof rack. +05079.jpg The Mazda Tribute SUV 2011 is shown in a rear three-quarter view with a clean white body, prominent black roof rails, and distinct red tail lights, parked on a suburban street with trees and a grass lawn in the background. +04254.jpg The image shows a silver Mazda Tribute SUV 2011 with a smooth texture, presented in a left side profile view, parked in an outdoor area adorned with decorative overhead lights and surrounded by trees and other vehicles, featuring characteristic five-spoke alloy wheels. +01374.jpg The Mazda Tribute SUV 2011 in the image is a glossy medium blue, viewed from a rear three-quarter angle, parked on a patterned driveway with a building entrance in the background, featuring a roof rack, prominent rear lights, and silver alloy wheels. +02954.jpg The Mazda Tribute SUV 2011 in the image is silver with a smooth finish, viewed from a three-quarter front angle, parked on a black asphalt surface with trees and other cars in the background, featuring distinct alloy wheels and a slightly raised hood. +05778.jpg The Mazda Tribute SUV 2011 is depicted in a front three-quarter view, showcasing its red exterior with a gray lower trim, moving along a dusty off-road terrain with its roof rack and silver alloy wheels visible. +06276.jpg The Mazda Tribute SUV 2011 in the image is a red vehicle with a smooth texture, viewed from the front-left three-quarter angle, parked on gravel beside other vehicles, and features a roof rack and distinct angular headlights. +07255.jpg The image shows a blue Mazda Tribute SUV 2011 with a smooth texture, viewed from a front-side angle, parked on a cobblestone driveway in front of a house with stone walls and arched windows, featuring a roof rack and silver alloy wheels. +04168.jpg The Mazda Tribute SUV 2011 is shown in a side-rear view, featuring a silver metallic color with a smooth texture, distinct rear and side windows, and a sleek roof rack, set against a plain white background. +05823.jpg The 2011 Mazda Tribute SUV appears to be a silver vehicle viewed from the front-left angle with a distinctive black front grille, smooth body contours, visible roof rack, and set against a simple white background. +01096.jpg The Mazda Tribute SUV 2011 is metallic gray with a smooth texture, viewed from a three-quarter front angle in a parking lot, featuring distinctive alloy wheels and a brick wall backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions/McLaren_MP4-12C_Coupe_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/McLaren_MP4-12C_Coupe_2012_descriptions.txt new file mode 100644 index 0000000..33135eb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/McLaren_MP4-12C_Coupe_2012_descriptions.txt @@ -0,0 +1,20 @@ +03258.jpg The McLaren MP4-12C Coupe 2012 is captured in a vibrant orange hue with a sleek, low-profile body, viewed from a front three-quarter angle on a wet track that highlights its aerodynamic contours and distinctive side intakes, set against a blurred, green background. +00848.jpg The McLaren MP4-12C Coupe 2012 is presented in vibrant orange with a glossy finish, seen from a rear three-quarter view on a race track, showcasing its sleek aerodynamic curves, distinctive dual exhausts, and dark alloy wheels against a blurred green and gray background. +02201.jpg The McLaren MP4-12C Coupe 2012 boasts a bright orange finish with a smooth, glossy texture, viewed from the rear showcasing its distinctive dual exhausts and sleek taillights, set against a minimalistic, reflective showroom environment. +01287.jpg The white McLaren MP4-12C Coupe 2012 is viewed from a rear-side angle, showcasing its aerodynamic contours, black rear grille and diffuser, and orange trim on the rims, set against a spacious, industrial warehouse with white brick walls and a high ceiling. +07024.jpg The McLaren MP4-12C Coupe 2012 in the image is a vivid orange with a sleek, smooth texture, captured from a front-side angle with scissor doors open, set against a glossy car showroom backdrop with cars and banners, highlighting its aerodynamic curves and distinctive McLaren emblem. +05021.jpg The McLaren MP4-12C Coupe 2012 is shown from a rear three-quarter view, in a vibrant orange color with smooth, aerodynamic contours, set against a blurred green grass environment, and featuring distinct black wheels and a noticeable rear spoiler. +03128.jpg The McLaren MP4-12C Coupe 2012 is captured in a frontal view with its dihedral doors open, displaying a sleek metallic silver color and smooth reflective finish, set against an urban backdrop featuring trees and industrial buildings. +02636.jpg The McLaren MP4-12C Coupe 2012 in the image is a sleek, white sports car with glossy texture, captured from a three-quarter front view against a racetrack background amidst rolling hills, featuring distinctive dihedral doors and aerodynamic contours. +04411.jpg The McLaren MP4-12C Coupe 2012 in the image is a vibrant orange with a glossy finish, viewed from a low rear three-quarter angle, set against a minimalist concrete background, and features distinctive rear vents and sleek aerodynamic lines. +02964.jpg The McLaren MP4-12C Coupe 2012 in the image features a striking orange metallic finish with gullwing doors open in a showroom environment, showcasing its sleek aerodynamic design and distinct black alloy wheels. +04016.jpg The McLaren MP4-12C Coupe 2012 appears in a bright orange color with a glossy finish, positioned with its scissor doors open in an indoor industrial setting featuring large, arched windows and a neutral-toned concrete floor, highlighting its sleek aerodynamic design and distinctive front air intakes. +07141.jpg The orange McLaren MP4-12C Coupe 2012, viewed in profile with upward-opening butterfly doors, has a sleek, glossy finish against a simple black background, showcasing its aerodynamic curves and signature alloy wheels. +06038.jpg The McLaren MP4-12C Coupe 2012 in the image appears in a vibrant orange hue with a sleek and smooth texture, viewed from a rear three-quarter angle, set against a dark, indoor showroom background, showcasing its distinct rear diffuser, large black wheels, and dual exhausts. +06380.jpg The McLaren MP4-12C Coupe 2012 is presented in a vibrant orange shade with a glossy texture, depicted from a rear three-quarter viewpoint with the distinctive butterfly door ajar against a plain white background, showcasing its sleek aerodynamic lines and rear air vents. +04287.jpg The McLaren MP4-12C Coupe 2012 is shown in a low-angle front view with doors up, featuring a sleek white exterior with orange brake calipers and set against an urban background with tall buildings and palm trees. +02526.jpg The McLaren MP4-12C Coupe 2012 is shown in a vivid orange color with a sleek, aerodynamic design, viewed from the side against a futuristic glass and concrete architectural background, highlighting its low-profile and prominent air intakes. +05480.jpg The McLaren MP4-12C Coupe 2012 in the image is a gleaming red with glossy texture, viewed from a front-left angle in a sleek showroom environment, highlighting its aerodynamic body, distinctive side air intakes, and white alloy wheels, set against neutral-toned walls and a circular ceiling light. +05797.jpg The McLaren MP4-12C Coupe 2012 is a vibrant orange with a sleek, glossy texture, seen from a front three-quarter angle driving on a curved asphalt road with hay bales and grass lining the bend, displaying its aerodynamic body lines and signature dihedral doors. +02321.jpg The McLaren MP4-12C Coupe 2012 features a vibrant orange color with a sleek, smooth texture, viewed from a rear three-quarter angle, set against a dark, studio-like background, showcasing its aerodynamic curves and distinctive rear light design. +07877.jpg The McLaren MP4-12C Coupe 2012 appears in glossy black with a sleek, aerodynamic form seen from the front-left angle against the backdrop of an empty racetrack, featuring distinctive headlights and a pronounced hood vent. diff --git a/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_300-Class_Convertible_1993_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_300-Class_Convertible_1993_descriptions.txt new file mode 100644 index 0000000..d96efd3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_300-Class_Convertible_1993_descriptions.txt @@ -0,0 +1,20 @@ +04435.jpg The low-resolution image shows a dark-colored Mercedes-Benz 300-Class Convertible from 1993, viewed from the front-left angle with a shimmering, polished texture, set against a paved parking area with light greenery in the background, featuring distinctive rounded headlights and a prominent front grille with the iconic emblem. +04941.jpg The Mercedes-Benz 300-Class Convertible 1993 appears in a side-top view with a white body and a brown convertible roof, surrounded by a dimly lit showroom featuring potted plants and promotional posters, highlighting its distinctive alloy wheels and classic body lines. +02418.jpg The Mercedes-Benz 300-Class Convertible 1993 appears in a rich red color with a smooth texture, viewed from a front-side angle against a plain garage-like background, featuring a distinctive chrome grille and alloy wheels. +06352.jpg The Mercedes-Benz 300-Class Convertible 1993 is a glossy black vehicle viewed from the front-left angle, parked by a stone-walled house with reflective chrome wheels and a soft-top roof, surrounded by trees and adjacent parked vehicles. +06081.jpg The Mercedes-Benz 300-Class Convertible 1993 is viewed from the front left angle, showcasing a sleek black exterior with a metallic finish, parked on a gravel driveway in front of a brick house with a red-tiled roof, featuring a prominent chrome grille and alloy wheels. +02076.jpg The image shows a red Mercedes-Benz 300-Class Convertible from a side view, parked in a sunlit urban setting with a light-colored building in the background, featuring a soft-top roof, distinctive alloy wheels, and characteristic boxy design despite the low resolution. +01976.jpg The Mercedes-Benz 300-Class Convertible 1993 appears in a sleek, dark color with a smooth texture, viewed from the side with a folded beige convertible roof, parked against a background of brick buildings and palm trees, featuring distinctive alloy wheels and classic styling. +06399.jpg A metallic silver Mercedes-Benz 300-Class Convertible from 1993 is viewed from a front-side angle, featuring a soft-top roof down, iconic rectangular lights, and parked on a narrow path with lush green shrubbery in the background. +01182.jpg The Mercedes-Benz 300-Class Convertible 1993 is shown in a low-angle view, highlighting its glossy white exterior and smooth texture, with its roof down, set against an urban backdrop featuring cranes and trees, while the round headlights, chrome grille, and five-spoke alloy wheels serve as distinctive features. +04609.jpg A metallic blue Mercedes-Benz 300-Class Convertible from 1993 is viewed head-on with its black soft top down, cruising on a curved road surrounded by lush green vegetation and yellow flowers, with distinctive round headlights and the iconic front grille prominent despite the low resolution. +00990.jpg The image depicts a side view of a white Mercedes-Benz 300-Class Convertible 1993 with a hardtop and chrome wheels, set against an indoor showroom background featuring a potted plant and automotive signage. +06504.jpg The car is a burgundy Mercedes-Benz 300-Class Convertible 1993 with a tan interior, viewed from a high angle showing a prominent grill and light clusters, driving on a paved road beside lush greenery. +06421.jpg A sleek silver Mercedes-Benz 300-Class Convertible from 1993 is shown in a front-side angle, with its top down against a lush, green landscape, featuring prominent star-shaped alloy wheels and a distinctively classic grille beneath clear blue skies. +00120.jpg A red Mercedes-Benz 300-Class Convertible 1993 is viewed from the front-right angle, displaying a sleek, smooth finish with a black soft top, distinct five-spoke alloy wheels, and situated in a cluttered garage environment. +07914.jpg The Mercedes-Benz 300-Class Convertible 1993 is viewed from the rear-left angle, showcasing its silver body with a sleek texture and contrasting black convertible roof, set against a minimalistic open road and sky background, with distinguishing features like its rounded rear lights and iconic wheel design. +02139.jpg The Mercedes-Benz 300-Class Convertible 1993 in the image has a metallic dark grey color with a sleek texture, viewed from the rear three-quarter angle, featuring a black soft top and situated in a parking area with other vehicles nearby, showcasing its distinctive taillights and polished alloy wheels. +07798.jpg A dark gray Mercedes-Benz 300-Class Convertible from 1993 is viewed from the front-right corner against a stone wall with an old tower, featuring a lowered soft top, silver alloy wheels, and distinct rectangular headlights. +04279.jpg The Mercedes-Benz 300-Class Convertible 1993 is shown from a side angle with a silver body and black soft top, parked on a driveway beside a well-manicured lawn, with distinct, rounded alloy wheels and neighboring vehicles in the background. +00961.jpg A beige Mercedes-Benz 300-Class Convertible from 1993 is viewed from the front-left angle in a parking lot, showcasing its smooth metallic finish, distinctive five-spoke wheels, and a slightly lowered beige soft top against a backdrop of other parked cars and a service building. +03694.jpg The Mercedes-Benz 300-Class Convertible 1993 has a vibrant red body with a sleek black soft top, viewed from the rear three-quarter angle, parked on a gravel surface, featuring distinctive taillights and chrome detailing around its wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_C-Class_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_C-Class_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..e86c871 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_C-Class_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +04836.jpg The Mercedes-Benz C-Class Sedan 2012 is shown in a solid white color with a glossy finish, viewed from the rear three-quarter angle against a minimalistic urban backdrop featuring a plain wall and window, highlighting the vehicle's distinctive tail lights and chrome trim. +01247.jpg The Mercedes-Benz C-Class Sedan 2012 appears in a metallic silver color with a smooth texture, captured from a front three-quarter view inside a showroom with large windows and reflective flooring, featuring iconic multi-spoke wheels and a distinctly pronounced grille emblem. +07140.jpg The image depicts a beige Mercedes-Benz C-Class Sedan 2012 viewed from the rear-right angle, showcasing its smooth metallic finish against a rugged rocky backdrop with noticeable alloy wheels and distinct tail light design. +04423.jpg The Mercedes-Benz C-Class Sedan 2012 is depicted in a sleek silver color with a metallic texture, viewed from a front three-quarter angle, set against an indoor showroom environment with a wooden floor, showcasing its distinct grille, prominent star emblem, and elegant alloy wheels. +06861.jpg The Mercedes-Benz C-Class Sedan 2012 appears in a glossy red finish, viewed from a front three-quarter angle showing its silver alloy wheels and iconic grille, set against a clear sky and open road backdrop. +01845.jpg A black Mercedes-Benz C-Class Sedan 2012 is parked in a lot with a slightly angled front view, featuring a gleaming grille, distinctive front bumper with fog lights, and surrounded by trees and asphalt markings in the background. +02980.jpg A dark metallic gray Mercedes-Benz C-Class Sedan 2012 is parked on a sunlit driveway, viewed from the front-left angle, with a lush green hedge background, featuring its distinctive prominent grille and sleek headlamps. +00519.jpg The low-resolution image shows a black Mercedes-Benz C-Class Sedan 2012 with a polished texture, viewed from the front three-quarter angle, parked in a lot with other vehicles in the background and featuring prominent multi-spoke alloy wheels and red brake calipers. +01543.jpg The dark-colored Mercedes-Benz C-Class Sedan 2012 is viewed from a front three-quarter angle, highlighting its chrome grille and headlights, parked on a street with trees and a building in the background. +05962.jpg The image shows a front view of a red Mercedes-Benz C-Class Sedan 2012 with a smooth, lustrous finish, set against a desert landscape background featuring sparse vegetation and distant, blurry trees, with visible distinct features including the prominent grille and emblem. +03446.jpg The Mercedes-Benz C-Class Sedan 2012 in the image has a sleek black exterior with a polished texture, viewed from a front-side angle, set against an outdoor dealership environment with mountain and tree backdrops, featuring a prominent grille and alloy wheels. +04795.jpg The image shows a black Mercedes-Benz C-Class Sedan 2012 viewed from the front-right corner, featuring a shiny metallic texture, distinctive three-pointed star grille emblem, and parked indoors on a tiled floor with another similar vehicle in the background. +01021.jpg The image shows a dark-colored, possibly metallic, Mercedes-Benz C-Class Sedan 2012 from a front-side angle in an outdoor parking environment, featuring sporty alloy wheels and distinct front grille emblem despite the low resolution. +00447.jpg The Mercedes-Benz C-Class Sedan 2012 is seen in a low-resolution image with a sleek silver color and metallic texture, viewed from a front three-quarter angle, situated in a natural environment with rocky cliffs in the background, featuring distinctive elements like the iconic star emblem on the grille and LED headlamps. +04636.jpg The black Mercedes-Benz C-Class Sedan 2012 is viewed from a front-side angle, showcasing its sleek lines, silver grille with the emblem prominently displayed, and alloy wheels, set against a backdrop of a car dealership under a cloudy sky. +08000.jpg The Mercedes-Benz C-Class Sedan 2012 appears in a metallic dark gray color viewed from a three-quarter front perspective, surrounded by a field of yellow flowers with a blurred green and gray backdrop, featuring a prominent front grille with a large central emblem, sleek headlights, and sporty alloy wheels. +01018.jpg A silver Mercedes-Benz C-Class Sedan 2012 is shown in a dynamic front three-quarter pose against a blurred urban cityscape, highlighting its sleek body lines, prominent grille with the iconic emblem, and stylish multi-spoke alloy wheels. +06543.jpg A metallic dark gray Mercedes-Benz C-Class Sedan 2012 is shown in a three-quarters front view, parked on a dirt terrain under a cloudy sky, featuring distinctive LED headlights and sculpted lines for a sleek, modern appearance. +03107.jpg The low-resolution image depicts a silver Mercedes-Benz C-Class Sedan 2012 with a shiny metallic texture, viewed from the front-left angle against a backdrop of lush greenery, featuring its characteristic iconic grille and sleek headlights. +00559.jpg The Mercedes-Benz C-Class Sedan 2012 is shown in a deep blue color with a shiny, reflective texture, viewed from a front three-quarter angle in a showroom setting, featuring distinctive alloy wheels and a prominent chrome grille with the iconic emblem. diff --git a/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_E-Class_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_E-Class_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..4a2ebf7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_E-Class_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +03092.jpg The silver Mercedes-Benz E-Class Sedan 2012 is viewed from a front three-quarter angle, featuring distinctive dual LED headlights and a sleek grille, set against a softly blurred gradient background. +06661.jpg The 2012 Mercedes-Benz E-Class Sedan is captured from a front-left angle, showcasing its sleek white paint with a glossy finish, distinctively large grille with horizontal chrome bars, and sitting in a parking lot adjacent to a small silver car and industrial buildings, under clear daylight. +07712.jpg The Mercedes-Benz E-Class Sedan 2012 appears in sleek black with a glossy finish, viewed from the front left in a showroom setting, featuring distinctive chrome accents on the grille and headlamps, with reflections of overhead lights enhancing its shiny surface. +05101.jpg A sleek, silver Mercedes-Benz E-Class Sedan 2012 is seen in a front-three-quarter view on a winding road against a desert-like rocky backdrop, featuring its iconic grille and sharp headlights. +07851.jpg The image shows a silver Mercedes-Benz E-Class Sedan 2012 positioned at a slight angle, highlighting its sleek, reflective surface and distinctive front grille, set against a backdrop of classical stone statues and barren trees. +07606.jpg A dark gray Mercedes-Benz E-Class Sedan 2012 is parked on a street with a side-rear viewpoint showing sleek lines and distinctive star-shaped alloy wheels, against a backdrop of glass-paneled buildings and leafy trees. +02138.jpg The Mercedes-Benz E-Class Sedan 2012 in the image is a sleek black vehicle with a glossy finish, captured from a side profile view, parked on asphalt with a dealership background, featuring distinctive five-spoke alloy wheels and the signature Mercedes grille. +04001.jpg The image shows a silver Mercedes-Benz E-Class Sedan 2012 with a smooth metallic finish, viewed from a front three-quarter angle, against a modern, curved architectural backdrop, featuring its signature front grille, prominent headlights, and dual exhausts. +06096.jpg The Mercedes-Benz E-Class Sedan 2012 is viewed from the front-left angle, showcasing a sleek white exterior with a glossy finish, positioned in a scenic countryside with rolling hills and vineyards in the background, highlighting its signature grille and sophisticated LED headlights. +04196.jpg The image shows a silver Mercedes-Benz E-Class Sedan 2012 viewed from the front-left angle on a racetrack background, featuring prominent grille and headlight designs typical of the model's facelifted version. +07675.jpg The silver Mercedes-Benz E-Class Sedan 2012 is captured from a front three-quarter view, showcasing its sleek, metallic texture with signature headlamps and grille, driving past a modern, blurred urban background. +01820.jpg The low-resolution image depicts a silver Mercedes-Benz E-Class Sedan 2012 viewed from the rear-left angle, featuring a sleek metallic texture, prominent AMG badging, quad exhaust pipes, and sport rims, against a neutral, glossy studio backdrop. +08083.jpg The silver Mercedes-Benz E-Class Sedan 2012 is captured from a front three-quarter view, emphasizing its sleek contours and signature grille, with a rocky hillside and winding road in the background. +02246.jpg The Mercedes-Benz E-Class Sedan 2012 appears in a sleek silver color with distinctive angular headlights and a prominent grille, captured from a front-side angle on a smooth road adjacent to a textured stone wall backdrop. +04172.jpg The low-resolution image shows a silver Mercedes-Benz E-Class Sedan 2012 viewed from the rear, featuring prominent tail lights and chrome-tipped dual exhausts, set against a neutral, smooth surfaced background. +03847.jpg The Mercedes-Benz E-Class Sedan 2012 is viewed from the front-left angle, showcasing a glossy gray exterior contrasted against a rugged, rocky landscape, with notable features including its distinct grille, angular headlights, and alloy wheels. +02635.jpg A silver Mercedes-Benz E-Class Sedan 2012 with a sleek, metallic texture is photographed from a front-side angle, parked on grass near a coastal road with a backdrop of houses and trees, featuring its distinctive grille and multi-spoke alloy wheels. +06542.jpg A white Mercedes-Benz E-Class Sedan 2012 with sleek lines and tinted windows is viewed from the rear-right, parked on a street with a backdrop of trees and a modern building, featuring distinctive alloy wheels and dual exhausts. +07220.jpg The Mercedes-Benz E-Class Sedan 2012 is shown in a sleek white color with a smooth texture, captured from a front-side angle in a parking lot environment, featuring its distinctive chrome grille and sharp, aerodynamic headlights. +06838.jpg The 2012 Mercedes-Benz E-Class Sedan is a sleek silver car viewed from the rear three-quarter angle, with distinctive twin rectangular taillights and dual exhaust outlets, driving along a winding, sunlit road beside a rugged, sandy hillside. diff --git a/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_S-Class_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_S-Class_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..a78cbf4 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_S-Class_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +03302.jpg The Mercedes-Benz S-Class Sedan 2012 appears in a sleek silver color with a glossy finish, viewed from a front three-quarter angle, on display in an indoor showroom setting with a distinctive large front grille, elegant headlight design, and chrome accents, surrounded by other vehicles and informational displays. +00764.jpg The Mercedes-Benz S-Class Sedan 2012 appears in a glossy white finish, viewed from a front three-quarter angle, parked indoors against a backdrop with Texas Import Sales signage, showcasing its characteristic large grille, sleek body lines, and polished alloy wheels. +01149.jpg The Mercedes-Benz S-Class Sedan 2012 appears in a glossy white finish, viewed from a front three-quarter angle in an indoor setting, featuring large spoke alloy wheels and distinctive, elongated headlights against a neutral, dimly lit background. +04319.jpg The vehicle is a black Mercedes-Benz S-Class Sedan 2012 with a glossy finish, viewed from a front three-quarter angle, set against a grassy field with bare trees in the background, featuring its distinctive grille and headlamp design. +04920.jpg The low-resolution image shows a silver Mercedes-Benz S-Class Sedan 2012 with a glossy finish, viewed from the front left angle on a winding road surrounded by lush, green trees, featuring a prominent grille and sharp headlights. +03633.jpg A black Mercedes-Benz S-Class Sedan 2012 is viewed from the front-left angle, highlighting its shiny chrome grille and emblem amidst a backdrop of palm trees and a fenced grassy area. +03325.jpg A sleek silver Mercedes-Benz S-Class Sedan 2012, viewed from a dynamic front-left angle, stands on a wet pavement under a cloudy sky, featuring distinct multi-spoke alloy wheels and signature LED headlights. +03190.jpg The Mercedes-Benz S-Class Sedan 2012 is depicted in a sleek, metallic silver with a smooth texture, showcased from a three-quarter front view against a gradient black-to-gray backdrop, featuring prominent headlamps, a signature grille, and five-spoke alloy wheels. +01329.jpg The Mercedes-Benz S-Class Sedan 2012 in the image is a white car with a sleek, glossy finish, viewed from the front-right angle and positioned in a well-lit showroom with other vehicles in the background, featuring distinctive alloy wheels and chrome accents. +05031.jpg The Mercedes-Benz S-Class Sedan 2012 appears in a glossy white color with a sleek texture, viewed from a three-quarter front angle, set against an urban concrete wall backdrop, featuring prominent multi-spoke alloy wheels and characteristic wide grille. +03940.jpg The 2012 Mercedes-Benz S-Class Sedan is depicted in a metallic silver color with a smooth texture, viewed from a front three-quarter angle, against a backdrop of modern architecture and warm lighting, highlighting its prominent grille and sleek, angular headlights. +01177.jpg The 2012 Mercedes-Benz S-Class Sedan, viewed from a low front angle, features a glossy black exterior with a prominent chrome grille, distinct LED headlights, and dark-tinted windows, set against a lush green and slightly out-of-focus natural background. +04913.jpg A low-resolution image of a white Mercedes-Benz S-Class Sedan 2012 viewed from a front-left angle, showcasing its distinct chrome grille and sleek body lines against a plain indoor background. +02852.jpg The black Mercedes-Benz S-Class Sedan 2012 is viewed from a front three-quarter angle, featuring a glossy finish, prominent chrome grille, and sporty silver alloy wheels, with a modern building and reflective windows in the background. +04529.jpg The 2012 Mercedes-Benz S-Class Sedan appears in a sleek metallic gray color with a reflective finish, seen from a three-quarter front angle with a city office building backdrop, featuring distinctive LED daytime running lights and a prominent chrome grille. +00396.jpg A silver Mercedes-Benz S-Class Sedan 2012 is parked on a brick-paved area with its front side facing slightly to the left, surrounded by trees and greenery, featuring a prominent chrome grille and bright alloy wheels. +00734.jpg The Mercedes-Benz S-Class Sedan 2012 in the image is a black car with a glossy texture, viewed from a front side angle, parked on a driveway surrounded by a commercial office background, featuring distinctive front grille and alloy wheels. +01463.jpg A silver Mercedes-Benz S-Class Sedan 2012 with a sleek, reflective texture is viewed from a front-side angle, showcasing its distinctive grille and headlights, parked on a concrete surface amid lush green trees under a clear blue sky. +04755.jpg A white Mercedes-Benz S-Class Sedan 2012 is depicted from a low front-angle perspective, cruising on a wooded road with its distinctive chrome grille and sleek headlight design visible. +01290.jpg The image shows a gray Mercedes-Benz S-Class Sedan 2012 viewed from the front-left angle, parked on a road with a tall green hedge in the background, featuring distinctive LED headlights and a prominent front grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_SL-Class_Coupe_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_SL-Class_Coupe_2009_descriptions.txt new file mode 100644 index 0000000..ab48767 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_SL-Class_Coupe_2009_descriptions.txt @@ -0,0 +1,20 @@ +00873.jpg The Mercedes-Benz SL-Class Coupe 2009 is a sleek, metallic silver vehicle seen from a front three-quarter view driving along a coastal road, with smooth curves, a distinctive Mercedes emblem on the grille, and set against a scenic backdrop of ocean waves and rocky shoreline. +01842.jpg The Mercedes-Benz SL-Class Coupe 2009 is seen from a front-side angle in a light cream color with a glossy texture, featuring a prominent black hood vent and sleek wheels, set against an urban stone-paved courtyard with scaffoldings and an architectural background. +01596.jpg The Mercedes-Benz SL-Class Coupe 2009 appears in metallic silver with a smooth texture, captured from a three-quarter front view in a workshop setting with an open hood and distinctive multi-spoke alloy wheels. +05321.jpg The silver Mercedes-Benz SL-Class Coupe 2009 is viewed from the front-left angle, showcasing its sleek, aerodynamic design beneath a dusk sky with a prominent suspension bridge and cityscape in the background. +01404.jpg A low-resolution image captures a sleek, white Mercedes-Benz SL-Class Coupe 2009 with a smooth texture, viewed from a low front-side angle against a backdrop of sandy dunes and sparse trees under a partially cloudy sky, highlighting its distinctive wide grille, aerodynamic body lines, and large alloy wheels. +06329.jpg A silver Mercedes-Benz SL-Class Coupe 2009 is captured front-on in motion on a winding road through a forested area, featuring a prominent grille and emblem, with a blurred background of trees suggesting speed. +06294.jpg A sleek, silver Mercedes-Benz SL-Class Coupe 2009 is viewed from a rear side angle against a cloudy sky backdrop, featuring prominent rear spoiler and aerodynamic lines accentuated by its glossy finish. +08142.jpg The Mercedes-Benz SL-Class Coupe 2009 appears in metallic silver with a sleek texture, viewed from a three-quarter front angle against a modern architectural backdrop, featuring distinctive swept-back headlights and multi-spoke alloy wheels. +07694.jpg A sleek black Mercedes-Benz SL-Class Coupe 2009 is seen from a front-left angle on a concrete driveway beside a grass lawn, featuring aggressive front bumper styling, prominent hood vents, and large multi-spoke wheels. +01551.jpg A silver Mercedes-Benz SL-Class Coupe 2009 is captured from a rear three-quarter angle, highlighting its sleek, reflective bodywork and prominent taillights, set against a motion-blurred, warmly-lit urban environment that contrasts with the car's streamlined design. +03213.jpg A silver Mercedes-Benz SL-Class Coupe 2009 is captured from a front-angle view on a road with a blurred background of green foliage, featuring prominent headlights, a sleek grille, and sporty alloy wheels. +00828.jpg The low-resolution image shows a silver Mercedes-Benz SL-Class Coupe 2009 from a dynamic front-side angle on an open road with a dramatic, cloudy sky and blurred trees in the background, highlighting its sleek, aerodynamic shape, distinctive grille, and sporty stance. +06232.jpg A sleek, white Mercedes-Benz SL-Class Coupe 2009 is captured from a low front-side angle, showcasing its aerodynamic body and chrome wheels against a background of expansive, colorful stadium seating, with noticeable front bumper detailing. +08116.jpg The image shows a front view of a sleek, metallic silver Mercedes-Benz SL-Class Coupe 2009 with a shiny texture, featuring distinct front grilles and angular headlights, set against a blurred backdrop of a racetrack. +04006.jpg The silver Mercedes-Benz SL-Class Coupe 2009 is viewed from the side, showcasing its aerodynamic body with distinctive vents and a sleek, metallic finish against a backdrop of a red suspension bridge and misty hills. +00802.jpg A white Mercedes-Benz SL-Class Coupe 2009 is seen in a three-quarter right side view, parked on a gray pavement in front of a beige building with blue awnings and palm trees, featuring a prominent front grille, distinctive AMG side vents, and bold alloy wheels. +02839.jpg The Mercedes-Benz SL-Class Coupe 2009 in the image appears in sleek white with a shiny texture, positioned at a three-quarter front angle on a smooth roadway beside sandy dunes and dark, dramatic clouds, showcasing its aerodynamic design and distinctive front grille. +05481.jpg The 2009 Mercedes-Benz SL-Class Coupe is a metallic silver car with sleek body lines, viewed from the front-left angle on a racetrack with tire barriers, featuring distinctive AMG wheels and a driver standing with the door open. +06257.jpg The Mercedes-Benz SL-Class Coupe 2009 is captured in a dynamic, low-angle front view with a silver metallic finish, featuring a distinctive front grille, prominent hood vents, and sleek design lines set against a blurred roadway and a clear blue sky. +00556.jpg The silver Mercedes-Benz SL-Class Coupe 2009 is captured from a front three-quarter view, showcasing its sleek body, prominent AMG grille, sporting decals, and rooftop safety lights, set against a blurred racetrack background with greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_Sprinter_Van_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_Sprinter_Van_2012_descriptions.txt new file mode 100644 index 0000000..8608b42 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Mercedes-Benz_Sprinter_Van_2012_descriptions.txt @@ -0,0 +1,20 @@ +05845.jpg The Mercedes-Benz Sprinter Van 2012, viewed from the front-left at an angle, appears in metallic silver with smooth texture, set against a backdrop of a mountainous landscape and blurred city lights, showcasing its distinctive elongated body and prominent front grille. +07741.jpg The Mercedes-Benz Sprinter Van 2012 appears in a metallic silver color with smooth texture, viewed from the front-left angle on a cobblestone surface, with visible distinctive features such as its pronounced front grille and raised roof against an industrial background. +05399.jpg A white Mercedes-Benz Sprinter Van 2012 with a smooth texture is captured from a low front-left angle against a background of a modern building and clear blue sky, featuring a distinctive black grille and angular headlights. +01442.jpg A white Mercedes-Benz Sprinter Van 2012 is parked at an angle, showcasing its side and front against a modern dealership backdrop, featuring smooth contours, a prominent grille with the Mercedes emblem, and typical van windows. +06740.jpg The white Mercedes-Benz Sprinter Van 2012 is seen from a front-side angle against an industrial backdrop, featuring a streamlined body with black trim and a distinctive Mercedes emblem on the grille. +04219.jpg A black Mercedes-Benz Sprinter Van 2012 with a sleek, glossy texture is seen from a front-side angle, standing on a paved surface with bare trees and an industrial background, featuring distinct white wheels and a characteristic Mercedes emblem on the grille. +00330.jpg The white Mercedes-Benz Sprinter Van 2012 is viewed from the rear, showing a slightly reflective texture against a cloudy sky backdrop, parked on an empty concrete lot in front of corrugated metal warehouse doors, with the tail lights and "Sprinter" and "4MATIC" badges visible. +07884.jpg The 2012 Mercedes-Benz Sprinter Van is viewed from the front-left angle, showcasing a sleek silver body with a smooth texture, prominent black window tints, and a minimalistic urban background. +06472.jpg A silver-colored Mercedes-Benz Sprinter Van 2012 is seen from a front three-quarter angle in a gravel parking area, featuring a high roof, distinct grille with the Mercedes emblem, and surrounded by greenery and other parked vehicles. +03938.jpg The Mercedes-Benz Sprinter Van 2012 appears in a silver color with a matte texture, viewed from the side against a dealership backdrop, with features including a sleek roofline and distinctive side mirrors. +03521.jpg The Mercedes-Benz Sprinter Van 2012 appears in a silver color with a matte texture, shown from a front three-quarter angle against a plain, gradient gray background, featuring a prominent grille with the Mercedes emblem and clear multi-pane windows. +08061.jpg The Mercedes-Benz Sprinter Van 2012 is a white, high-roof cargo van with a slightly elevated side view, showing smooth body lines, visible black trim along the lower sides, and is situated on a flat concrete surface against a light gray background. +03637.jpg The Mercedes-Benz Sprinter Van 2012 is white with a smooth texture, viewed from a front-left angle against a dark textured background, featuring a prominent grille and emblem, large side mirrors, and black trim along the bottom. +03024.jpg A silver Mercedes-Benz Sprinter Van 2012 is seen from a front right angle in a parking lot with a clear sky backdrop, featuring prominent grille and headlight design elements, situated near a building with large windows. +05503.jpg The image shows a white Mercedes-Benz Sprinter Van 2012 with its sliding side door open, viewed from the right side against a dealership lot with a cloudy sky, displaying smooth paneling and minimal branding besides the rear "2500" label. +03574.jpg The Mercedes-Benz Sprinter Van 2012 is viewed from a three-quarters front-left angle in a slightly worn white finish with visible side panels amidst a cluttered car scrapyard background, featuring distinctive black trim and the iconic Mercedes emblem on the grille. +00804.jpg The white Mercedes-Benz Sprinter Van 2012 is viewed from the rear-left angle, highlighting its smooth, streamlined body and distinctive vertical tail lights, with a background of tall, dark green trees lining an asphalt driveway. +03204.jpg A metallic gray Mercedes-Benz Sprinter Van 2012 is shown in a side profile view with a smooth texture, parked beside another van in a lot, featuring distinct rear windows and prominent front grille details. +02153.jpg The 2012 Mercedes-Benz Sprinter Van is displayed in a frontal view, showcasing its white, smooth-textured exterior with a prominent black grille and emblem against a plain white background, highlighting its classic, straightforward design. +03218.jpg The white Mercedes-Benz Sprinter Van 2012 is viewed from the front left, with a clean texture, in an urban brick-walled environment, featuring a prominent Mercedes-Benz emblem on the grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Mitsubishi_Lancer_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Mitsubishi_Lancer_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..4067241 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Mitsubishi_Lancer_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +01109.jpg A vibrant red Mitsubishi Lancer Sedan 2012 with a sleek, aerodynamic design is captured from a front perspective as it navigates a curving road against a backdrop of an expansive sky and desert landscape, highlighting its distinctive angular headlights and black grille. +04135.jpg A metallic gray Mitsubishi Lancer Sedan 2012 is viewed from the front-left angle, parked on a textured concrete lot with industrial buildings in the background, featuring angular headlights and a streamlined body. +07180.jpg A grey Mitsubishi Lancer Sedan 2012 is shown in a front three-quarter view, parked in a lot surrounded by other vehicles, highlighting its sharp headlamps, distinct grille, and a smooth metallic finish. +03931.jpg The Mitsubishi Lancer Sedan 2012 appears in a metallic silver color with smooth texture, viewed from a rear three-quarter angle emphasizing its sporty tail lights and dual exhausts, set against a plain white background. +01106.jpg The Mitsubishi Lancer Sedan 2012 is a vibrant orange vehicle with a glossy finish, viewed from a three-quarter front angle, set against a winding road surrounded by lush greenery, featuring distinctive alloy wheels and a prominent front grille. +00009.jpg In a parking lot with bare trees and sparse buildings in the background, the Mitsubishi Lancer Sedan 2012 appears in a metallic gray color with a sleek, aerodynamic shape, visible from a three-quarter front view that highlights its distinctive grille, angular headlamps, and alloy wheels. +05626.jpg The Mitsubishi Lancer Sedan 2012 appears in a side profile view with a metallic burnt orange color, driving on a road with blurred grassy surroundings, featuring a sporty rear spoiler and distinctive front grille. +07936.jpg The Mitsubishi Lancer Sedan 2012, in a glossy red finish, is displayed in a showroom setting with a front-side angle view, showcasing its sleek aerodynamic design, pronounced wheel arches, and distinctive headlamps. +00251.jpg The Mitsubishi Lancer Sedan 2012 is a glossy black car viewed from the front right in a showroom with a marble-patterned floor and features a distinct trapezoidal grille and sharp headlamps. +01078.jpg The 2012 Mitsubishi Lancer Sedan in the image is a vibrant deep blue with a glossy finish, viewed from a three-quarter front angle, set against an open, slightly cloudy sky in a parking lot with distant grassy fields, and features distinctive angular headlights and a bold front grille design. +01049.jpg The image depicts a silver Mitsubishi Lancer Sedan 2012 viewed from the front-left corner, prominently displaying its angular headlights and distinctive grille, with a winding road and blurred natural scenery in the background. +06482.jpg The Mitsubishi Lancer Sedan 2012 is white with a smooth texture, viewed from the rear left, parked next to a colorful graffiti-covered wall amid tall trees, featuring a prominent rear spoiler and distinctively shaped taillights. +03548.jpg The Mitsubishi Lancer Sedan 2012 is displayed in a high-angle view with a metallic silver color and a matte texture, featuring a sporty, aerodynamic body with hood vents and aftermarket decals, set in a dimly lit indoor garage with other cars partially visible in the background. +07748.jpg The silver Mitsubishi Lancer Sedan 2012 is viewed from the front-left angle, showcasing its sleek body, prominent grille, and angular headlights, parked on a dealership lot with other cars and a building featuring Mitsubishi branding in the background. +01875.jpg The 2012 Mitsubishi Lancer Sedan is depicted in a striking red hue with a glossy finish, viewed from a three-quarter front angle, against a muted urban backdrop featuring a white wall and black grid window, highlighting its aggressive front grille and sleek alloy wheels. +04909.jpg A white Mitsubishi Lancer Sedan 2012 with a smooth texture is viewed from a front-side angle, parked by a frozen lake with trees in the distant background, and features its distinctive front grille and headlights. +02405.jpg The image shows a glossy blue Mitsubishi Lancer Sedan 2012 with a front three-quarter view, prominently displaying its grille and headlights, set against a background of a modern building and landscaped greenery. +03230.jpg The Mitsubishi Lancer Sedan 2012 appears in a metallic silver color with a sleek, smooth texture, captured from a three-quarter front view against a backdrop of greenery and a metal fence, featuring angular headlights, a prominent black grille, and alloy wheels. +00747.jpg The Mitsubishi Lancer Sedan 2012 in the image is silver with a smooth texture, captured at a slight front-side angle in an empty parking lot with evenly spaced trees and a clear sky in the background, highlighting its sleek shape, prominent grille, and alloy wheels. +02373.jpg A metallic blue Mitsubishi Lancer Sedan 2012 is viewed from the front three-quarter angle, showcasing its aggressive grille and sporty body kit, parked in a dimly lit, industrial parking garage with overhead fluorescent lighting. diff --git a/utils/area/descriptions/Car/generated_descriptions/Nissan_240SX_Coupe_1998_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Nissan_240SX_Coupe_1998_descriptions.txt new file mode 100644 index 0000000..1ab9d65 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Nissan_240SX_Coupe_1998_descriptions.txt @@ -0,0 +1,20 @@ +04704.jpg The image shows a bright red Nissan 240SX Coupe 1998 with a glossy finish, viewed from the front-left angle, parked on a street with a vibrant graffiti-covered brick wall in the background, featuring distinctive black alloy wheels and sleek headlights. +07919.jpg A glossy black Nissan 240SX Coupe 1998 is seen from a low, front-right angle, parked on a gray asphalt surface, with visible features including clear headlights, a prominent front bumper, and silver alloy wheels, against a backdrop of trees and other vehicles. +05558.jpg The Nissan 240SX Coupe 1998 is white with a smooth texture, viewed from the side revealing its sleek silhouette, against a backdrop of Victorian-style houses and a manicured garden, with notable features including shiny chrome wheels and a tinted rear window. +04253.jpg The image shows a bright red Nissan 240SX Coupe from 1998, viewed from the front-left angle on a concrete driveway, with smooth body lines, a sleek low profile, and distinct five-spoke alloy wheels against a background of wooden fencing and lush greenery. +04143.jpg The Nissan 240SX Coupe 1998 in the image is a maroon color with a smooth finish, viewed from the side in a parking lot with residential buildings in the background, featuring dark-tinted windows, a rear spoiler, and aftermarket silver rims. +07544.jpg The red Nissan 240SX Coupe 1998 is positioned at a front three-quarter view, featuring a smooth and glossy finish, a distinctive rear spoiler, and is set against a modern architectural backdrop with glass and metallic elements. +06093.jpg The Nissan 240SX Coupe 1998 appears in a glossy dark color with sleek, aerodynamic lines, viewed from a side angle with a desert rock formation background, featuring distinctive five-spoke alloy wheels and a smooth silhouette. +03599.jpg The Nissan 240SX Coupe 1998, captured from a front-side angle, features a bright red glossy finish, smooth aerodynamic contours, and is set against a blurred natural background indicating motion, with its distinctive pop-up headlights retracted, adding to its sleek silhouette. +00131.jpg The Nissan 240SX Coupe 1998, seen from a low front-side angle in a grey color with a glossy texture, is situated on a paved road bordered by wooden railings and autumn trees in the background, and features distinctive pop-up headlights and a sleek, sporty profile. +07970.jpg The Nissan 240SX Coupe 1998 is viewed from a front-side angle, showcasing its dark green, smooth body contrasting against a backdrop of reddish-brown buildings with distinct angular roofs, with its sleek, rounded headlights and curved lines accentuated despite the low resolution. +03296.jpg The Nissan 240SX Coupe 1998 in the image is a dark, glossy color, viewed from a front-side angle with distinctive rounded headlights and a sleek silhouette, set against a mountainous landscape with a gravel foreground. +01713.jpg The Nissan 240SX Coupe 1998 is shown in a low-resolution image with a metallic gray finish and smooth texture, viewed from a front three-quarters angle against a desert landscape with reddish hills, featuring a distinctive front fascia with pop-up headlights and aftermarket decals on the bumper, complemented by black alloy wheels. +03859.jpg The low-resolution image shows the rear view of a red Nissan 240SX Coupe 1998 with a smooth, glossy finish parked in a concrete driveway, featuring distinctive taillights, a visible exhaust on the left, and a slight spoiler with a suburban garage background. +05734.jpg The Nissan 240SX Coupe 1998 is captured from a front-left angle, displaying its deep burgundy color with a glossy finish, set against a suburban street backdrop with other vehicles and greenery, featuring distinctive pop-up headlights integrated into a sleek, low-profile hood design. +05711.jpg The Nissan 240SX Coupe 1998 in the image is a vivid red with a glossy finish, viewed from a front-left angle, set against a grassy park-like environment, with distinguishable chrome wheels and a large rear spoiler. +00939.jpg The low-resolution image shows a white Nissan 240SX Coupe 1998 with a smooth texture, viewed in profile with a "For Sale" sign in the window, parked on a wet driveway in front of a beige garage. +06415.jpg The Nissan 240SX Coupe 1998 in the image is black with a glossy finish, viewed from a rear three-quarter angle in a parking lot with a geometric mural on a building; it features a rear spoiler, distinct taillights, and sporty alloy wheels. +07653.jpg A white Nissan 240SX Coupe 1998 with a smooth, glossy finish is seen in a three-quarter front view in a suburban driveway, featuring distinctive aftermarket rims and a slightly lowered body kit, framed by a backdrop of leafless trees and a residential neighborhood. +01798.jpg The Nissan 240SX Coupe 1998 is shown in a crisp white color with a smooth texture, captured from a front-side angle in a residential driveway with a brick and siding house in the background, featuring its distinct pop-up headlights and five-spoke alloy wheels. +07845.jpg The Nissan 240SX Coupe 1998 is presented in a sleek black color with a shiny texture, shown from a side-front angle in a parking area surrounded by a sparse forest background, featuring distinct alloy wheels and tinted windows. diff --git a/utils/area/descriptions/Car/generated_descriptions/Nissan_Juke_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Nissan_Juke_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..c922a20 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Nissan_Juke_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +06989.jpg The 2012 Nissan Juke Hatchback is a vibrant blue color with a glossy finish, viewed from the driver's side in a suburban driveway setting, displaying its characteristic bulbous shape, prominent wheel arches, and unique teardrop-shaped headlights. +04183.jpg The silver Nissan Juke Hatchback 2012 is viewed from the front-left angle, parked on a car dealership lot with other vehicles in the background, featuring distinctive round headlights, a V-shaped grille, and a noticeable raised ride height. +00024.jpg The image shows a white Nissan Juke Hatchback 2012 with a smooth, glossy texture, viewed from a front-side angle, parked on an asphalt lot against a backdrop of desert sand and palm trees, featuring distinctive rounded headlights and a bold grille. +05849.jpg The 2012 Nissan Juke Hatchback is captured from a front-side angle in a glossy white color with red accents, featuring distinct round headlights and a sleek urban backdrop with blurred lights. +06532.jpg The red Nissan Juke Hatchback 2012 is seen from a side view on a sunny day, parked on a paved road with palm trees and a waterfront in the background, featuring a rounded, compact body and distinct, uniquely shaped headlights. +01375.jpg The 2012 Nissan Juke Hatchback is presented in a sleek matte black finish with a prominent side profile view, featuring distinctive curved headlights, a sporty rear spoiler, and black alloy wheels, set against a showroom environment with a large "Nissan" signage backdrop. +00315.jpg The Nissan Juke Hatchback 2012, viewed from the rear, features a dark metallic blue color with a smooth texture, highlighted by its distinct boomerang-shaped tail lights and rounded rear design, set against a plain white background. +04663.jpg The 2012 Nissan Juke Hatchback is depicted in a dark purple shade with a glossy texture, viewed from a front three-quarter angle against an urban background featuring an industrial building, showcasing its distinctive rounded headlights, curvy silhouette, and alloy wheels. +02841.jpg The image shows a Nissan Juke Hatchback 2012 in a dark, glossy black color, viewed from a side profile with a cutaway revealing the interior; it features distinct curved lines, chrome wheels, and appears against a gradient gray background. +00760.jpg A front view of a white Nissan Juke Hatchback 2012 is shown with a matte texture, red side mirrors, a distinctive black stripe on the hood, and a garage-like background environment with visible railing and industrial design elements. +01587.jpg The Nissan Juke Hatchback 2012 is a red compact SUV with a glossy finish, viewed from the front-left in a three-quarter angle, parked on a paved surface with a wire fence and open fields in the background; it features distinctive round fog lights and uniquely shaped headlamps. +00573.jpg The 2012 Nissan Juke Hatchback is matte black with rounded headlights, viewed from a low front angle on a city street with palm trees and skyscrapers in the background, showcasing its compact and sporty design. +02163.jpg The Nissan Juke Hatchback 2012 appears in a dark blue color with a smooth texture, viewed from the side profile parked on a street, featuring its distinctive curvy body shape and unique headlamp design against an urban backdrop with a brick building and street signs. +08111.jpg The Nissan Juke Hatchback 2012 is silver with a glossy finish, viewed from the front-right in a parking lot setting, displaying its distinctive rounded headlights and prominent front grille with "JUKE" branding visible on the side against a backdrop of greenery and brickwork. +03125.jpg The image shows a white Nissan Juke Hatchback 2012 with a glossy finish, viewed from a low front angle, featuring dark windows, a prominent grille, large circular headlights, and red side mirror caps, set against a dimly lit indoor exhibition space. +05195.jpg The Nissan Juke Hatchback 2012 is shown in a vibrant blue color with a metallic sheen, viewed from the side, against a dealership backdrop with a glass facade and red accents, displaying its distinctive curvy body lines, high wheel arches, and unique boomerang-shaped headlights. +01791.jpg The 2012 Nissan Juke Hatchback in the image appears in a glossy white color with a futuristic design featuring distinct round headlights, viewed from a low angle that accentuates its sporty alloy wheels, against a car show environment with bright lighting. +01141.jpg A red Nissan Juke Hatchback 2012 with distinctive black and red rims is shown from a low rear-side angle against an industrial building backdrop with large windows. +06727.jpg The image shows a black Nissan Juke Hatchback 2012 with a glossy texture, viewed from the front-left angle, positioned in a parking lot with a chain-link fence and other vehicles in the background, featuring distinctive rounded headlights and five-spoke alloy wheels. +00182.jpg The Nissan Juke Hatchback 2012 is shown in a sleek silver color with a smooth, glossy texture, viewed in a side profile against a neutral studio backdrop, highlighting its distinctive curvy body shape and unique angular headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions/Nissan_Leaf_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Nissan_Leaf_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..441a827 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Nissan_Leaf_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +04229.jpg The Nissan Leaf Hatchback 2012 is a metallic silver car seen from the front in a slightly right-angled view, with smooth curves and distinct blue accents on the headlights, parked in an urban setting with other vehicles and a building visible in the background. +02180.jpg A bright blue Nissan Leaf Hatchback 2012, viewed from the side, is parked on a sandy beach with the ocean in the background, showcasing its distinctive compact shape and smooth, streamlined design. +04645.jpg The image shows a white Nissan Leaf Hatchback 2012 from a front angle on a showroom floor, featuring its distinct charging port open with a cable connected against a backdrop of a clean, modern display area with the Nissan logo prominently above. +04869.jpg In the image, the red Nissan Leaf Hatchback 2012 with smooth texture and distinctive "Zero Emission" branding on the side is captured in a dynamic side profile on a city street, with a blurred background suggesting motion. +01910.jpg The Nissan Leaf Hatchback 2012 in the image is a light blue color with a smooth texture, viewed from the side profile against a background of lush green trees, featuring a "zero emission" decal along the side. +00752.jpg The Nissan Leaf Hatchback 2012 is displayed in a showroom environment, viewed from a front-side angle, showcasing its smooth, light blue exterior with distinct aerodynamic curves and characteristic rounded headlights, all under bright indoor lights with a reflective showroom floor. +07113.jpg The low-resolution image displays a black Nissan Leaf Hatchback 2012 from a rear three-quarter angle against a dealership-like setting, highlighting its unique vertical taillights and smooth contoured bodywork. +04710.jpg The Nissan Leaf Hatchback 2012 appears in a light blue color with a smooth texture, viewed from the side, against an urban backdrop featuring a branded trailer, with distinctive features like aerodynamic shape and emblematic "zero emission" logos visible. +07510.jpg The 2012 Nissan Leaf Hatchback appears in a metallic silver color with a smooth texture, viewed from the front-left angle in a car dealership lot, featuring distinctive blue-tinted headlight accents and round aerodynamic shapes. +03200.jpg A white Nissan Leaf Hatchback 2012, viewed from the front-left angle, is parked in a lot with a charging station in an urban environment, featuring smooth contours and distinct headlight shapes, under an overcast sky with trees and a brick building in the background. +05504.jpg A light blue Nissan Leaf Hatchback 2012 is shown from the rear-side view on a racetrack, with its distinct rounded silhouette, clear glass windows, and overcast sky in the background. +00771.jpg The 2012 Nissan Leaf Hatchback appears in a vibrant blue color with a smooth, glossy texture, viewed from a front-side angle against a car dealership background, featuring its distinctive rounded headlights and compact aerodynamic shape. +06092.jpg The Nissan Leaf Hatchback 2012 is viewed from a rear three-quarter angle, showcasing its bright blue color with a smooth finish, and is parked in an open urban environment with palm trees and buildings in the background; the vehicle features a distinctive bulbous back with unique tail lights and a spoiler integrated above the rear window. +07977.jpg The Nissan Leaf Hatchback 2012 is a metallic blue vehicle shown from the front left angle, parked in a modern urban setting with a charging station connected to its front, featuring smooth curves and distinctive teardrop-shaped headlights. +05467.jpg The image shows a blue Nissan Leaf Hatchback 2012 with a smooth finish, viewed from the side, parked on a grassy area against a backdrop of trees and a distant city skyline, with its distinct rounded shape and high roofline clearly visible. +07289.jpg The low-resolution image shows a white Nissan Leaf Hatchback 2012 with a glossy texture, captured from a rear three-quarter angle in a gravel-filled parking lot surrounded by other vehicles, displaying its distinctive blue-trimmed taillights and compact design. +03582.jpg The Nissan Leaf Hatchback 2012 is a bright blue car with a smooth, rounded texture, viewed from a front-side angle on a rustic rural road with clear skies and utility poles in the background, featuring its distinctive aerodynamic shape and large headlights. +07225.jpg The Nissan Leaf Hatchback 2012 appears in a metallic light blue color with a smooth texture, captured from an elevated front-right angle showing its distinct swept-back headlights, curved hood design, rounded front, and subtle "zero emission" marking on the side, set against a plain white studio background. +04382.jpg The image shows a red Nissan Leaf Hatchback 2012 with a smooth texture, viewed from the front passenger side, parked on a gravel path surrounded by leafless trees and grass, featuring distinct clear headlights and white wheel covers. +07421.jpg The Nissan Leaf Hatchback 2012 is a light blue electric car with a smooth texture, captured in a side view profile against a modern residential backdrop, featuring distinct round headlights and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Nissan_NV_Passenger_Van_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Nissan_NV_Passenger_Van_2012_descriptions.txt new file mode 100644 index 0000000..26baea7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Nissan_NV_Passenger_Van_2012_descriptions.txt @@ -0,0 +1,20 @@ +07234.jpg The image depicts a maroon Nissan NV Passenger Van 2012 with a smooth texture viewed from a three-quarter front angle, featuring a prominent chrome grille and set against an industrial backdrop with a closed garage door. +04934.jpg The Nissan NV Passenger Van 2012 is seen from a rear-side angle, showcasing its deep burgundy color and smooth texture, with prominent wide windows and situated in an industrial area with corrugated metal buildings in the background. +02983.jpg The white Nissan NV Passenger Van, viewed from a front-left angle in a dealership lot, features a prominent black grille, large side mirrors, and hints of urban background with overcast skies. +05355.jpg The Nissan NV Passenger Van 2012 is wrapped in a green and white leaf-themed design with prominent lawn care text, viewed from a side angle against a plain, light blue background, showcasing its elongated body and distinctive upright front grille. +06604.jpg The image shows a white Nissan NV Passenger Van 2012 viewed from the side with both side doors open, revealing a spacious grey interior, positioned against a plain white background, highlighting its boxy structure and chrome wheels. +03137.jpg The low-resolution image depicts two silver Nissan NV Passenger Vans from a frontal angle, showcasing their square, boxy design under the high warehouse ceiling, with one van featuring a standard roof and the other an extended high roof. +01517.jpg The Nissan NV Passenger Van 2012 appears in a light gray color with a smooth, boxy texture, viewed from the right side against an urban skyline backdrop, featuring a prominent black front grille and simple steel wheels. +04730.jpg The Nissan NV Passenger Van 2012 appears in crisp white with a gleaming chrome grille, viewed from a low front three-quarter angle, against a brick building background, highlighting its large, prominent front bumper and shiny alloy wheels. +04299.jpg The image shows a front three-quarter view of a gleaming white Nissan NV Passenger Van 2012 with a prominent black grille and chrome detailing, set against a minimalistic white and blue gradient background, emphasizing its robust and utilitarian design. +04734.jpg The Nissan NV Passenger Van 2012 appears in white with a smooth texture, viewed from the rear-left side with a backdrop of an indoor showroom, featuring a boxy shape, prominent taillights, and a chrome accent on the rear door handle. +02150.jpg The white Nissan NV Passenger Van 2012 is viewed from the rear three-quarter angle, set against a plain concrete environment, showcasing its boxy shape, red taillights, and prominent rear doors. +07160.jpg The Nissan NV Passenger Van 2012 is viewed from a front-right angle, showcasing its white exterior with a slightly glossed surface, prominent black front grille, and a plain parking lot setting with few trees and signs in the background. +05785.jpg The Nissan NV Passenger Van 2012 is a white, tall-roof vehicle with a smooth texture, viewed from the front-right angle on a sunny day, parked in an outdoor lot alongside other vans and surrounded by trees and a clear blue sky, featuring a distinct chrome grille and rectangular side mirrors. +07246.jpg A white Nissan NV Passenger Van 2012 is seen from the front-left angle, parked on a snowy and partially icy ground with a brick building and other vehicles in the background, featuring a prominent black grille and visible side mirrors. +01960.jpg The Nissan NV Passenger Van 2012, viewed from the front right side against a tree-lined parking lot, features a shiny maroon finish with chrome details on the grille and hubcaps, reflecting its distinctive boxy yet streamlined design. +05596.jpg The Nissan NV Passenger Van 2012 is silver with a smooth texture, viewed from the front-right angle, parked in a dealership lot with other vehicles in the background, featuring a tall roof and distinctive black front grilles. +05331.jpg A white Nissan NV Passenger Van 2012 is seen from a front three-quarter angle, with its distinctive black grille and large side mirrors, parked in a dealership lot surrounded by other vans under an overcast sky. +04659.jpg The Nissan NV Passenger Van 2012 appears in a right-side view with a white-colored exterior featuring a smooth texture, blue wheel rims, and a graphic on the side, set against a dark, neutral background. +06517.jpg The Nissan NV Passenger Van 2012 is shown in a white color with a smooth texture, viewed from the front-right corner inside an indoor showroom, featuring a distinct high roof, chrome grille, and prominent side mirrors. +00342.jpg The Nissan NV Passenger Van 2012 in the image features a sleek silver color with a slightly reflective texture, viewed from the front three-quarter angle, partially covered with a black cloth, set against an indoor exhibition environment with bright overhead lighting and a prominent Nissan sign in the background, highlighting its bold grille and large side mirrors. diff --git a/utils/area/descriptions/Car/generated_descriptions/Plymouth_Neon_Coupe_1999_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Plymouth_Neon_Coupe_1999_descriptions.txt new file mode 100644 index 0000000..ab40675 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Plymouth_Neon_Coupe_1999_descriptions.txt @@ -0,0 +1,20 @@ +07438.jpg The Plymouth Neon Coupe 1999 in the image is a dark green, glossy car seen from a front-left angle, parked on a suburban street with grass lawns and red-brick houses in the background, featuring a distinct curved body and round headlights. +03986.jpg The car is a white coupe with a smooth texture, viewed from the side with a backdrop of parked cars and a tree, featuring a clean design with lightly visible door handle and wheel details. +05522.jpg The Plymouth Neon Coupe 1999 appears in a weathered dark green with a matte, faded texture viewed from a front three-quarters angle, parked on a dirt surface amidst other vehicles, featuring distinctive round headlights and a compact, rounded body shape. +00799.jpg The Plymouth Neon Coupe 1999 is viewed from a rear three-quarter angle, exhibiting a metallic green color with a smooth texture, parked on a paved lot with trees and utility poles in the background, and features distinct round taillights and a subtle rear spoiler. +07448.jpg A green Plymouth Neon Coupe 1999 with a smooth, rounded body is viewed from a front three-quarter angle in a parking lot surrounded by other cars and trees in the background, featuring distinctive oval headlights and a narrow grille. +06365.jpg The Plymouth Neon Coupe 1999 is a red compact car with a smooth texture, viewed from the front-left angle, parked on a concrete area with a grass border, and it features round headlights and distinctively curved body lines. +02527.jpg The red Plymouth Neon Coupe 1999, seen from a front-left angled view, features smooth curvature and distinct round headlights, parked in a car lot with other vehicles visible in the background. +05206.jpg The Plymouth Neon Coupe 1999 is a dark blue car with a slightly glossy finish, viewed from a front angle in a parking lot filled with other vehicles, featuring rounded headlights and a distinct hood emblem. +00537.jpg The white Plymouth Neon Coupe 1999, viewed from the front left, features a smooth texture with distinctive round headlights, set against a grassy field with a red car and a cloudy sky in the background. +04649.jpg The red Plymouth Neon Coupe 1999 is viewed from the front in a parking lot with bare trees and buildings in the background, featuring distinct circular headlights and a wide grille. +04028.jpg A silver Plymouth Neon Coupe 1999 is seen from a front-side angle, parked on a gray asphalt lot with surrounding foliage, displaying its rounded headlights and distinctive, smooth body lines against a backdrop of other parked cars and brick buildings. +02315.jpg A dark green Plymouth Neon Coupe 1999 is seen from a front-side angle on a gravel surface, featuring distinctive round headlights and a visible for-sale sign in the windshield against a suburban backdrop. +02714.jpg A white Plymouth Neon Coupe 1999 with a smooth texture is viewed from the front-left angle, parked on grass beside a gravel path, with distinct round headlights and a simple suburban background of houses and trees. +02190.jpg A blue Plymouth Neon Coupe 1999 is seen from the front left three-quarter angle parked on a gray, textured asphalt surface, with distinct round headlights, a prominent front lip, and a parking lot with a strip mall and autumn trees in the background. +07821.jpg The image shows a silver Plymouth Neon Coupe 1999 viewed from the front-left angle with significant windshield damage and a slight dent on the hood, parked in a lot with other vehicles visible in the background. +07926.jpg A front-facing view of a white Plymouth Neon Coupe 1999, with a smooth texture, parked on a concrete surface in a lot surrounded by other vehicles, featuring distinctive rounded headlights and a subtle curvature of the hood. +07601.jpg The Plymouth Neon Coupe 1999 in the image appears in a vibrant purple color with a smooth texture, viewed from a front three-quarter angle in a parking lot with other vehicles in the background, and features round headlights and a small grille typical of the model. +07489.jpg A dark green Plymouth Neon Coupe from 1999 is positioned in a three-quarter front view against a car dealership backdrop, featuring rounded headlights and a smooth body shape. +03485.jpg The Plymouth Neon Coupe 1999 is seen from a front-side angle in a metallic seafoam green color with a smooth texture, set in a parking lot environment with trees and other cars in the background, featuring distinctive round headlights and a compact, aerodynamic body shape. +07456.jpg The 1999 Plymouth Neon Coupe appears in a dark green color with a glossy finish, viewed from a front-side angle near a tree-lined street, featuring distinctive circular headlights and aftermarket alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Porsche_Panamera_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Porsche_Panamera_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..8262243 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Porsche_Panamera_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +04628.jpg A vibrant blue Porsche Panamera Sedan 2012 is captured in a three-quarter front view, set against a rugged mountainous backdrop, showcasing its sleek body lines, distinctive front grille, and sporty alloy wheels. +05673.jpg The image shows a metallic silver Porsche Panamera Sedan 2012 viewed from the front-left angle, featuring sleek curves and large headlights, set against an open, sunlit pavement with a clear sky background. +07616.jpg The image shows a sleek, silver Porsche Panamera Sedan 2012 viewed from the front-left angle, featuring its distinctive smooth curves and quad headlights on a winding road with a blurred, mountainous landscape in the background. +04363.jpg A muted green Porsche Panamera Sedan 2012 with polished silver rims is seen from a side view in a sunny park setting, featuring distinct boomerang-shaped headlamps and a streamlined, curvy body. +02204.jpg The Porsche Panamera Sedan 2012 is depicted in a sleek metallic gray with a smooth texture, viewed from a high rear angle, parked on a dark asphalt surface with distinctive twin exhausts and subtle rear spoiler visible. +06300.jpg The Porsche Panamera Sedan 2012, viewed from behind and above, features a sleek metallic grey finish with smooth curves, set against a scenic coastal backdrop with fog and distant mountains. +03462.jpg The 2012 Porsche Panamera Sedan in the image is a sleek black car with a smooth, shiny texture, viewed from a front-side angle, set on a paved road with a leafless tree and wooded area in the background, featuring distinctive alloy wheels and sculpted headlights. +01237.jpg The Porsche Panamera Sedan 2012 is a sleek black car with a glossy finish, viewed from a low side angle showcasing its aerodynamic curves and silver alloy wheels, situated on a cobblestone surface with a historic red brick building and a tower in the background. +06281.jpg A silver Porsche Panamera Sedan 2012 is viewed head-on, showcasing its rounded headlights and distinct grille, parked on a cobblestone surface with a grand building featuring white columns and large windows in the background. +07796.jpg The Porsche Panamera Sedan 2012 is a sleek white vehicle viewed from a front three-quarter angle on an open, paved surface with a clear sky backdrop, featuring distinctive curved headlights and prominent air intakes. +03958.jpg The 2012 Porsche Panamera Sedan is displayed in a sleek blue color with a shiny smooth texture, captured from a three-quarter front view under a large modern canopy in a spacious, sunlit, and tiled open area with distinctive white architectural elements in the background. +01735.jpg A dark gray Porsche Panamera Sedan 2012 is shown in a rear-side view driving on a road with blurred greenery in the background, featuring twin exhausts, sleek taillights, and smooth contours under a cloudy sky. +04490.jpg The Porsche Panamera Sedan 2012 in the image appears in a sleek silver finish with a polished texture, viewed from the rear three-quarter angle, positioned on a patterned stone pavement with a backdrop of modern buildings and greenery, featuring distinctive taillights and prominently visible dual exhausts. +03471.jpg The image shows a cobalt blue Porsche Panamera Sedan 2012 with a sleek, glossy finish, viewed from a front-side angle on a plain white background, featuring silver multi-spoke alloy wheels and distinctive yellow brake calipers. +07583.jpg The Porsche Panamera Sedan 2012 appears in a sleek, dark metallic blue with a side profile view against a minimalistic, gradient background, showcasing its smooth contours, distinctive elongated body, and sporty alloy wheels, accentuated by yellow brake calipers. +02104.jpg A black Porsche Panamera Sedan 2012 is pictured from a side viewpoint, showcasing its sleek body and silver rims against a dealership background with Porsche branding, emphasizing its elongated and sporty silhouette. +07932.jpg A white Porsche Panamera Sedan 2012 with a glossy finish is seen from a front three-quarter viewpoint, parked on a red-tiled surface in a dealership lot, featuring distinctive circular headlights and multi-spoke alloy wheels. +07814.jpg A white Porsche Panamera Sedan 2012 with a glossy finish is captured from a slight rear-side angle, showcasing its sleek silhouette and distinctive taillights, parked on a cobblestone street with a modern building backdrop. +02973.jpg The image depicts a dark gray Porsche Panamera Sedan 2012 from a rear viewpoint, showcasing its sleek, smooth texture and distinctive dual exhausts, set against a scenic mountainous road backdrop. +02924.jpg The image shows a white Porsche Panamera Sedan 2012 with a sleek design and silver rims, viewed in profile against a glossy indoor showroom backdrop featuring various luxury brand logos. diff --git a/utils/area/descriptions/Car/generated_descriptions/Ram_C_V_Cargo_Van_Minivan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Ram_C_V_Cargo_Van_Minivan_2012_descriptions.txt new file mode 100644 index 0000000..dce1293 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Ram_C_V_Cargo_Van_Minivan_2012_descriptions.txt @@ -0,0 +1,18 @@ +00927.jpg The Ram C V Cargo Van Minivan 2012 is white with a glossy finish, viewed from a three-quarter angle showing the right side and front, set against a dealership backdrop with several parked vehicles, featuring black side molding and five-spoke silver wheels. +00763.jpg The Ram C/V Cargo Van Minivan 2012 appears in white with a smooth texture, viewed from the side with the sliding door open, revealing floral cargo inside, set against a backdrop of a dark gray industrial building with large windows. +04306.jpg The Ram C V Cargo Van Minivan 2012 appears in a low-resolution image viewed from the rear three-quarter angle, showcasing its white body, smooth texture, and distinctive lack of rear side windows, set against a simple gray backdrop. +02916.jpg The Ram C V Cargo Van Minivan 2012 is white with a smooth finish, viewed from the side in a showroom environment, featuring a distinctive sliding door and metallic trim with visible hubcaps. +01460.jpg The image shows a red Ram C V Cargo Van Minivan 2012 viewed from a front-side angle in a parking lot, featuring a smooth texture with visible black tinted windows and silver alloy wheels. +02815.jpg The image shows a front-facing silver Ram C V Cargo Van Minivan 2012 with a glossy finish, parked on a snowy residential street, highlighting its distinctive crosshair grille and black lower bumper. +05167.jpg The white Ram C V Cargo Van Minivan 2012, viewed from the front-left angle, features a smooth exterior with a prominent black grille, parked in a sunlit industrial area with white garage doors in the background. +01385.jpg The image shows a white Ram C V Cargo Van Minivan 2012 with a smooth texture, viewed from the front-left angle, parked on a paved lot with snow patches and bare trees in the background, featuring a distinctive black grille and prominent headlights. +00156.jpg The white Ram C V Cargo Van Minivan 2012 is viewed from a rear-side angle on a glossy blue floor in an industrial or showroom-like environment, featuring red taillights, a side sliding door, and minimal decorative elements. +02447.jpg The white Ram C V Cargo Van Minivan 2012 is viewed from the front-right angle against a commercial building backdrop, showcasing its sliding side door open revealing cargo space, black trim, and alloy wheels. +07607.jpg A white Ram C V Cargo Van Minivan 2012 is viewed from the rear three-quarter angle with visible red tail lights, set against a dark backdrop, showcasing its smooth, boxy design with minimal detailing and a rear license plate. +07839.jpg The image shows a front-view of a white Ram C V Cargo Van Minivan 2012 with a smooth texture, prominently displaying its iconic crosshair grille against a two-tone background split between white and dark gray. +01209.jpg A white 2012 Ram C V Cargo Van Minivan is seen from a front-side angle, parked on a gray pavement with a greenhouse-like structure in the background, featuring a prominent black grille and smooth metal body panels. +02193.jpg The image shows a white Ram C/V Cargo Van Minivan parked indoors at an auto show with its side sliding door open, revealing a spacious interior, against a backdrop of people and other vehicles, featuring a smooth, glossy finish and distinctive black trim. +02062.jpg A white Ram C V Cargo Van Minivan 2012 is depicted from a front-angle view, showcasing smooth bodywork with a moderately curved front bumper, black side mirrors, and alloy wheels, set against a neutral, studio-style background. +02102.jpg The low-resolution image shows a white Ram C V Cargo Van Minivan 2012 with a smooth texture, viewed from an angle at the front-left side against a background featuring a large red building and other parked vehicles, with its distinctive bold grille and black lower bumper visible. +03853.jpg The Ram C V Cargo Van Minivan 2012 is a white vehicle with a smooth texture, displayed in a three-quarter front view against a white background, with distinguishable features including its black grille and simplistic, solid side body without windows. +07356.jpg The Ram C V Cargo Van Minivan 2012 is a solid white vehicle with a smooth exterior texture, viewed from a front-side angle, set against an indoor exhibition background with industrial lighting and distinct Ram signage, featuring a prominent black grille and silver wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Rolls-Royce_Ghost_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Rolls-Royce_Ghost_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..af48c0c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Rolls-Royce_Ghost_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +00211.jpg A black Rolls-Royce Ghost Sedan 2012, viewed from the front-left angle, showcases its distinct chrome grille and reflective finish, set in a showroom with tiled floors and large windows in the background. +04665.jpg A sleek, dark-hued Rolls-Royce Ghost Sedan 2012 viewed from a front-side angle is driving on a winding mountain road, surrounded by rocky terrain and greenery. +03754.jpg This image shows a front-view of a sleek, silver Rolls-Royce Ghost Sedan 2012 with its distinctive vertical grille and Spirit of Ecstasy hood ornament, set against a softly lit studio backdrop with subtle reflections enhancing its luxurious texture. +07461.jpg The 2012 Rolls-Royce Ghost Sedan, viewed from a front three-quarter angle, appears in a pearlescent white finish with a polished metallic grille and Spirit of Ecstasy hood ornament, set against an urban environment featuring a prominent building with an ornate rose window and a Bentley dealership sign. +03201.jpg The 2012 Rolls-Royce Ghost Sedan appears in a glossy black finish, viewed from a front three-quarter angle in a dimly lit underground parking garage, with its iconic grille and Spirit of Ecstasy emblem prominently visible, surrounded by various other luxury cars. +01567.jpg The 2012 Rolls-Royce Ghost Sedan appears in a glossy black finish with a polished chrome grille, viewed from a front three-quarter angle, parked in front of a modern glass-walled building, showcasing its distinctive Spirit of Ecstasy hood ornament and signature rectangular headlights. +00412.jpg The Rolls-Royce Ghost Sedan 2012 is depicted in a front three-quarter view with a two-tone metallic silver and dark gray finish, set against a sleek showroom background with distinctive chrome detailing on the grille and Spirit of Ecstasy hood ornament prominently visible. +03080.jpg The Rolls-Royce Ghost Sedan 2012 in the image is a two-tone vehicle with a deep blue upper body and a light gold lower body, viewed from the front-left angle, parked on a smooth concrete surface against a modern glass and stone building backdrop, featuring the iconic Spirit of Ecstasy hood ornament and large chrome grille. +02406.jpg The 2012 Rolls-Royce Ghost Sedan is depicted in a front-side view against a modern architectural backdrop, featuring a sleek silver finish with a glossy texture, signature grille, and iconic Spirit of Ecstasy ornament. +05774.jpg The Rolls-Royce Ghost Sedan 2012, viewed from the front, features a sleek silver exterior with a prominent grille and Spirit of Ecstasy ornament, set against a backdrop of rolling hills and an expansive sky. +07982.jpg The 2012 Rolls-Royce Ghost Sedan is shown in a side profile view with a distinctive brown metallic finish, featuring a sleek silhouette and iconic grille, set against a leafy suburban backdrop with an asphalt path. +07636.jpg A deep navy blue Rolls-Royce Ghost Sedan 2012 is shown from the front-left angle, highlighting its iconic rectangular grille and Spirit of Ecstasy ornament against a plain white background with a slightly reflective floor surface. +04459.jpg The 2012 Rolls-Royce Ghost Sedan is captured from a front-left angle, showcasing its deep blue color with a glossy texture, prominent chrome grille, rectangular headlights, and parked inside what appears to be an indoor showroom environment. +07834.jpg The Rolls-Royce Ghost Sedan 2012 appears in a polished black color with a glossy texture, viewed from the front three-quarter perspective in front of a car dealership, featuring its distinctive silver grille and Spirit of Ecstasy hood ornament. +05855.jpg The 2012 Rolls-Royce Ghost Sedan, viewed from a front-side angle, features a smooth white exterior, prominent grille, and signature Spirit of Ecstasy hood ornament, set against a scenic background of lush greenery and a calm lake on a bridge. +03914.jpg The Rolls-Royce Ghost Sedan 2012 in the image features a two-tone color scheme with a sleek silver hood and rich maroon body set against a minimalist indoor backdrop, viewed from a front three-quarter angle highlighting its iconic grille and Spirit of Ecstasy hood ornament. +00194.jpg The 2012 Rolls-Royce Ghost Sedan appears in a sleek silver color with a glossy finish, viewed from the front-left angle, parked on a cobblestone surface, set against a backdrop of ornate architecture with arched designs, showcasing its iconic grille and Spirit of Ecstasy hood ornament. +07305.jpg The 2012 Rolls-Royce Ghost Sedan in the image appears in metallic silver with a smooth, lustrous texture, photographed from a front three-quarter view in an indoor showroom environment, showcasing its iconic grille, Spirit of Ecstasy ornament, and large chrome wheels. +03050.jpg The low-resolution image depicts a sleek, silver-gray Rolls-Royce Ghost Sedan 2012, viewed from the front, showcasing its prominent grille and Spirit of Ecstasy emblem, set against a blurred modern tunnel environment that enhances its luxurious appearance. +07151.jpg The Rolls-Royce Ghost Sedan 2012 is shown in a glossy silver finish with a front-side view, parked on a light gray pavement outside an auto dealership, showcasing its iconic square grille and sleek, rounded body design. diff --git a/utils/area/descriptions/Car/generated_descriptions/Rolls-Royce_Phantom_Drophead_Coupe_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Rolls-Royce_Phantom_Drophead_Coupe_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..1d8f850 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Rolls-Royce_Phantom_Drophead_Coupe_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +05789.jpg The front view of the Rolls-Royce Phantom Drophead Coupe Convertible 2012 showcases a sleek blue body with chrome accents under studio lighting, emphasizing its distinctive large grille and modern LED headlights against a dark background. +04488.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 in silver with a polished metallic texture is viewed from the front-left, showcasing its sleek lines and iconic grille, set against a simple indoor showroom backdrop. +04174.jpg The low-resolution image shows a blue Rolls-Royce Phantom Drophead Coupe Convertible from a front-side angle, cruising on a road with a blurred greenery background, featuring its iconic chrome grille and sleek body lines. +00093.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 is seen from a front-left angle, showcasing a sleek white body with a contrasting navy blue soft top, set against a minimalistic white studio background, highlighting its distinctive large grille and prominent round headlights. +05494.jpg The image depicts a white Rolls-Royce Phantom Drophead Coupe Convertible 2012 with a rear three-quarter view, featuring a polished, wood-paneled deck and red leather interior, set in an indoor showroom with other cars in the background. +06710.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 is shown in a low-resolution photo from a side view, featuring a striking blue finish with a sleek, glossy texture, set against a backdrop of wooden slats, and displaying signature elements like its luxurious, spacious interior and iconic grille. +06622.jpg The low-resolution image shows a front-facing view of a white Rolls-Royce Phantom Drophead Coupe Convertible 2012 with a metallic silver hood and grille, against a backdrop featuring a maritime-themed mural and palm trees. +02604.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 is viewed from the front, showcasing its sleek black exterior with a polished silver hood, distinctive vertical grille, and iconic Spirit of Ecstasy ornament, set against a sunlit urban street backdrop. +02435.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012, viewed from the front, features a classic white finish with a chrome grille and iconic Spirit of Ecstasy emblem, set against a suburban backdrop with a brick and white-paneled house. +04787.jpg The 2012 Rolls-Royce Phantom Drophead Coupe Convertible appears in a sleek two-tone silver and white finish with a luxurious metallic sheen, viewed from a front-side angle, set against a sunlit coastal backdrop, highlighting its iconic chrome grille and elegant contours. +05613.jpg The white Rolls-Royce Phantom Drophead Coupe Convertible 2012, viewed from a front-side angle, features a distinct silver hood and grille, parked on a city street with stone buildings, showcasing its luxurious design and prominent emblem. +07513.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 is shown in a side profile with a sleek white finish and shiny chrome wheels, set against an indoor showroom backdrop with partial greenery and urban-themed wall decor, highlighting its elegant contours and classic open-top design. +07827.jpg The image shows a rear three-quarter view of a sleek blue Rolls-Royce Phantom Drophead Coupe Convertible 2012 with a subdued shine, cream-colored interior, parked in a serene, open area with distant mountains and a slightly cloudy sky in the background. +05623.jpg The vehicle is a blue Rolls-Royce Phantom Drophead Coupe Convertible 2012 viewed from a front-side angle, driving on a shaded tree-lined road, featuring a prominent chrome grille and white wheels, with motion blur accentuating its movement. +06523.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 appears in a polished white finish with a prominent chrome grille, viewed from the front in an outdoor setting with a glass building backdrop, featuring its classic rectangular headlights and luxurious sleek design. +01658.jpg A sleek silver Rolls-Royce Phantom Drophead Coupe Convertible 2012 with a luxurious tan leather interior is presented at a three-quarter front view against a neutral gray background, highlighting its iconic front grille, round headlights, and polished finish. +02322.jpg The vibrant red Rolls-Royce Phantom Drophead Coupe Convertible 2012, viewed from the front with its iconic chrome grille and sleek hood design, is parked on a concrete surface surrounded by other vehicles, with a lush, green background. +02028.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 appears in a classic white color with a contrasting black soft top, viewed from the rear-left angle, parked on a patterned pavement in an urban setting, showcasing its chrome accents and iconic grille amidst a backdrop of buildings and a hazy sky. +07042.jpg The image shows a side view of a blue Rolls-Royce Phantom Drophead Coupe Convertible 2012 with a dark roof, seated in an indoor showroom with sleek metal wheels, against a minimalist white and red accented wall. +06207.jpg A sleek, silver Rolls-Royce Phantom Drophead Coupe Convertible from 2012 is captured driving on a curving, tree-lined road with its signature vertical grille and rectangular headlights prominently visible from the front-left angle. diff --git a/utils/area/descriptions/Car/generated_descriptions/Rolls-Royce_Phantom_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Rolls-Royce_Phantom_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..8f9ed6e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Rolls-Royce_Phantom_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +06342.jpg The Rolls-Royce Phantom Sedan 2012 is shown in a sleek metallic gray with a smooth, glossy finish, viewed from a rear-side angle driving along a wooden-railed coastal road with a backdrop of the ocean, featuring its iconic boxy silhouette and classic luxury rims. +06841.jpg The low-resolution image depicts a sleek silver-gray Rolls-Royce Phantom Sedan 2012 from a side angle, set against an urban backdrop with blurred buildings, highlighting its long, luxurious body and iconic grille. +00298.jpg The image shows a front-side view of a silver-gray Rolls-Royce Phantom Sedan 2012 with a prominent chrome grille and Spirit of Ecstasy hood ornament, driving on a road surrounded by a rocky desert landscape under a clear sky. +00248.jpg A silver Rolls-Royce Phantom Sedan 2012 is parked on a concrete pad with glossy chrome accents, viewed from a front three-quarter angle, set against a backdrop of a modern car dealership with glass windows and landscaping. +00367.jpg The Rolls-Royce Phantom Sedan 2012 appears in a soft blue color with a polished, metallic finish, viewed from a side angle on a rural road with trees and grass in the background, and features the iconic chromed grille and Spirit of Ecstasy hood ornament. +06572.jpg The 2012 Rolls-Royce Phantom Sedan appears in a glossy white finish with a prominent front grille and chrome details, viewed from a front-left angle, parked on a pavement with a modern building in the background. +02572.jpg The low-resolution image shows a sleek black Rolls-Royce Phantom Sedan 2012 viewed from the front-side angle, with a distinct shiny silver grille, chrome-finished wheels, and the iconic Spirit of Ecstasy hood ornament, set against a luxury showroom environment with another vehicle partially visible in the background. +02263.jpg The silver Rolls-Royce Phantom Sedan 2012 is viewed from the front angle, showcasing its prominent grille and gleaming chrome accents against a clear blue sky and flat pavement, with the iconic Spirit of Ecstasy hood ornament clearly visible. +04181.jpg The car is a sleek white Rolls-Royce Phantom Sedan 2012 with a glossy finish, viewed in three-quarter front perspective, parked on a dark pavement with a backdrop of tall, dark hedges and an industrial-style building. +06706.jpg The 2012 Rolls-Royce Phantom Sedan is shown in a metallic silver hue with a glossy finish, viewed from a rear three-quarter angle, set against a clear sky background, emphasizing its elongated, elegant shape and distinctive rear design with chrome accents. +02045.jpg The Rolls-Royce Phantom Sedan 2012 appears in a deep metallic blue color with a polished silver grille, captured from a three-quarter front view on a winding mountain road, featuring its iconic Spirit of Ecstasy hood ornament. +01809.jpg The low-resolution image depicts a glossy, dark-colored 2012 Rolls-Royce Phantom Sedan in a side view, highlighted by its iconic grille and Spirit of Ecstasy emblem, driving through an urban night scene with blurred city lights in the background. +01940.jpg The silver 2012 Rolls-Royce Phantom Sedan is shown in a front three-quarter view, highlighting its iconic grille, Spirit of Ecstasy hood ornament, and smooth, luxurious body against a plain white background. +00118.jpg A sleek, white 2012 Rolls-Royce Phantom Sedan with a glossy finish is viewed from a low front-side angle against a sunny backdrop of a palm tree and blue sky, highlighting its iconic rectangular grille and Spirit of Ecstasy ornament. +05172.jpg The black Rolls-Royce Phantom Sedan 2012 is captured from a rear three-quarter view in an outdoor setting with palm trees and a cloudy sky, featuring a glossy finish, distinctive chrome accents, and dual exhausts. +02812.jpg A metallic gray Rolls-Royce Phantom Sedan 2012 is viewed from the front-left angle, featuring classic square-shaped headlights and a prominent vertical grille, set against a dark gradient background. +01321.jpg The 2012 Rolls-Royce Phantom Sedan in the image features a sleek, metallic silver finish with a glossy texture, captured from a front three-quarter angle showcasing its iconic grille and Spirit of Ecstasy hood ornament, set against a subdued indoor showroom environment with onlookers and another vehicle in the background. +02521.jpg The low-resolution image shows a sleek, black Rolls-Royce Phantom Sedan 2012 from a low front-three-quarter view on a winding mountain road, highlighted by a shiny, prominent grille with its Spirit of Ecstasy hood ornament, against a backdrop of lush green hills and cloudy blue skies. +03333.jpg This low-resolution image shows a sleek black Rolls-Royce Phantom Sedan 2012 with a shiny, reflective finish, viewed from the front-left angle, parked on a city street with stone buildings and pedestrian pathways in the background, highlighting its large chrome grille and prominent Spirit of Ecstasy hood ornament. +00836.jpg The white Rolls-Royce Phantom Sedan 2012, viewed from a front-side angle, displays a glossy, reflective finish with its iconic grille and Spirit of Ecstasy ornament prominently visible, set against an urban backdrop with trees and buildings. diff --git a/utils/area/descriptions/Car/generated_descriptions/Scion_xD_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Scion_xD_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..c92f971 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Scion_xD_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +05742.jpg The Scion xD Hatchback 2012 is a silver car with a slightly glossy texture, viewed from a front three-quarter angle, set against a cityscape background with illuminated skyscrapers and trees, featuring distinctive circular headlights and a compact grille. +03476.jpg The black Scion xD Hatchback 2012 is viewed from the front-left angle, showcasing its compact, boxy shape with smooth metallic texture, highlighted by round headlights and visible price stickers, set against a dealership lot with bright, clear skies. +00448.jpg The Scion xD Hatchback 2012 appears in a glossy black color with a front three-quarter view, showcasing its distinctive angular headlights and compact shape against a backdrop of a dealership setting with large windows and a concrete floor. +02293.jpg The Scion xD Hatchback 2012 is a shiny red vehicle viewed from the side, with smooth, rounded contours, parked on a paved surface in front of a building with a large sign, displaying its characteristic compact shape and five-spoke hubcaps. +03161.jpg The image shows a close-up rear view of a red Scion xD Hatchback 2012, focusing on its textured tail light with a visible xD logo against a neutral, evenly lit background. +04852.jpg The Scion xD Hatchback 2012 appears in a vibrant metallic orange color with a smooth texture, viewed from a side profile showing its black alloy wheels, set against a suburban backdrop with grassy lawns and trees, highlighting its compact build and distinctive angular front grille. +00137.jpg The Scion xD Hatchback 2012 is a white compact car with a smooth texture, viewed from the front-left angle, parked on an asphalt surface with a building and another car in the background, featuring distinct round wheel covers and a short, boxy design. +05225.jpg The image shows an orange Scion xD Hatchback 2012 from a rear three-quarter view, highlighting its compact form with rounded edges, a slightly elevated rear spoiler, and distinctive white alloy wheels against a plain white background. +03493.jpg The black Scion xD Hatchback 2012, viewed from the front-left, is parked on a waterfront with a city skyline backdrop, featuring distinct silver rims and a partially visible chrome side mirror. +04965.jpg The image depicts a white Scion xD Hatchback 2012 viewed from the side with a sleek, smooth texture, parked on a concrete surface against a background of green trees and a dark fence, featuring five-spoke alloy wheels and a compact body design. +03004.jpg The Scion xD Hatchback 2012 is a red car with a glossy finish, captured from a front three-quarter angle, positioned on a wet pavement in front of a large, modern, industrial-style building with ribbed metal siding, showcasing its compact design, round headlights, and white wheel rims. +06844.jpg The Scion xD Hatchback 2012 is a white, compact car with a glossy finish, viewed from a front three-quarter angle, set against a dark background which accentuates its bronze alloy wheels and distinctive squared-off front bumper. +07149.jpg The Scion xD Hatchback 2012 appears in a matte white color with a sporty, compact build, distinctly visible from the front-left angle against a backdrop of a parking lot bordered by greenery, and features black wheels and a bold front grille. +01302.jpg The Scion xD Hatchback 2012 appears in a bright red color with a glossy texture, viewed from the front-right angle, parked on a dark pavement with a dealership and other cars in the background, featuring its signature compact design and angular headlights. +02937.jpg The Scion xD Hatchback 2012 in the foreground is a glossy white color with a smooth texture, viewed from a front-side angle, set in a well-lit indoor car show with industrial elements and other colorful vehicles in the background, showcasing its compact, boxy design and distinctive dark alloy wheels. +07306.jpg The Scion xD Hatchback 2012 is shown from a rear view with a glossy red exterior contrasted by a black textured finish on the hatch, set against a neutral gray background with distinctively large rear lights and the emblem prominently displayed. +06927.jpg A silver Scion xD Hatchback 2012 is shown from a rear-side angle parked on a rooftop at night, with prominent urban skyscrapers in the background and its distinctive rear hatch and rounded taillights visible. +02186.jpg The Scion xD Hatchback 2012 is a compact, silver vehicle with a smooth metallic texture, viewed from a front three-quarter angle, parked on a gray concrete surface with a backdrop of large glass windows, featuring prominent round headlights and a tapered, modern grille design. +02931.jpg The Scion xD Hatchback 2012 in the image is a glossy black car viewed from the front-left three-quarter angle, parked on a suburban street with green lawns and houses in the background, featuring sleek black wheels and a distinctive low-profile stance. +04635.jpg The Scion xD Hatchback 2012 is a compact, dark gray car with a smooth finish, viewed from the front-left angle against a stone building backdrop, featuring a distinctive boxy shape, rounded headlights, and a chrome-accented grille. diff --git a/utils/area/descriptions/Car/generated_descriptions/Spyker_C8_Convertible_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Spyker_C8_Convertible_2009_descriptions.txt new file mode 100644 index 0000000..80e07b3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Spyker_C8_Convertible_2009_descriptions.txt @@ -0,0 +1,20 @@ +03002.jpg The Spyker C8 Convertible 2009 appears in a glossy black finish from a rear three-quarter viewpoint against a backdrop of large stacked stone blocks, showcasing distinctive round taillights, exposed exhaust pipes, and sleek aerodynamic contours. +00544.jpg The Spyker C8 Convertible 2009 appears in a polished pearl white finish with a sleek, aerodynamic design viewed from a low front side angle against a plain black background, showcasing its distinctive air intakes, silver alloy wheels, and sculpted hood with dual vents. +03357.jpg The Spyker C8 Convertible 2009 is displayed in a showroom with a glossy orange and black color scheme, featuring distinctive side air intakes and a unique aerodynamic design, viewed from a three-quarters front angle that emphasizes its sporty stance. +04963.jpg The Spyker C8 Convertible 2009 is captured in a three-quarter front view with a deep metallic purple finish, featuring distinctive silver-spoked wheels, visible red leather interior, and positioned against a backdrop of industrial architecture with a checkered ceiling and dark carpeted flooring. +05001.jpg The Spyker C8 Convertible 2009 in the image is glossy dark blue with a sleek, aerodynamic design, viewed from a front side angle with prominent circular headlights, set against an aviation-themed background with a jet visible above the car's smooth, reflective bodywork. +07650.jpg The Spyker C8 Convertible 2009 is shown in a metallic orange and black color scheme with a sleek and glossy texture, viewed from the front left with its distinctive upward-opening doors ajar, set in a modern indoor showroom environment, featuring prominent chrome accents and a unique exposed rivet design. +06958.jpg The Spyker C8 Convertible 2009, viewed from the front-left angle, showcases a sleek metallic silver body with distinctive aerodynamic features, positioned in a showroom environment with reflective flooring and glass walls, surrounded by other sports cars. +05247.jpg The Spyker C8 Convertible 2009 in the image is a sleek metallic silver sports car with an open-top design and vibrant red interior, viewed from a side angle in an indoor showroom with other luxury cars, featuring distinctively large wheels and aerodynamic styling elements. +04276.jpg The Spyker C8, captured from a side angle on a race track, features a predominantly dark blue body with racing decals, a wide rear spoiler, and distinctive yellow highlights, set against a blurred, motion-filled background. +02922.jpg A vibrant blue and yellow Spyker C8 Convertible 2009 is displayed side-on in a bustling showroom, featuring prominent racing decals and a distinctive rounded front with a prominent grille slit and sleek side mirrors. +00461.jpg The Spyker C8 Convertible 2009 features a vibrant orange exterior with a sleek, aerodynamic texture, viewed at an angle highlighting its gullwing doors, set against a backdrop of an indoor showroom with reflective metallic elements and adjacent vehicle silhouettes. +07743.jpg The Spyker C8 Convertible 2009 is shown in a glossy metallic silver with an open scissor door revealing an orange interior, positioned in profile view on a showroom floor under bright lights with a blurred backdrop of exhibition signs. +04082.jpg The Spyker C8 Convertible 2009 is shown in a side-front angle, featuring a sleek metallic silver color with a smooth texture, distinctive twin roll hoops, a prominent front grille with integrated headlights, and set against a plain white background that highlights its aerodynamic lines and polished alloy wheels. +01347.jpg A sleek black Spyker C8 Convertible 2009 is showcased with its butterfly doors open, revealing a vibrant red interior, set on a polished display platform amidst an indoor automotive event with blurred spectators and ambient lighting. +01334.jpg The Spyker C8 Convertible 2009 appears in sleek silver with a smooth metallic texture, viewed from a three-quarter front angle emphasizing its aerodynamic lines, with distinctive features like turbine-style rims and side air intakes set against a plain white background. +05089.jpg The Spyker C8 Convertible 2009 is shown in a metallic dark blue with a glossy finish, viewed from a front-side angle on a coastal road, featuring distinct aerodynamic side intakes, silver multi-spoke wheels, and a downed roof, set against a picturesque backdrop with a villa in the distance and lush greenery. +06371.jpg The low-resolution image shows a Spyker C8 Convertible 2009 in a dynamic racing scene with a vibrant orange and silver color scheme, prominent racing decals, a low and wide stance, set against a blurred backdrop of spectators and RVs. +05440.jpg The Spyker C8 Convertible 2009 is visible from the front with its vibrant orange color accented by black racing stripes, upward-opening scissor doors, and a sleek, sporty grille, set against a modern indoor setting. +02802.jpg The Spyker C8 Convertible 2009, viewed from a front three-quarter angle, showcases a sleek black exterior with a glossy finish, prominent round headlights, distinctive silver rims, and is set against an indoor automotive showroom backdrop featuring luxury car banners. +05180.jpg The Spyker C8 Convertible 2009 is displayed in a showroom setting with a glossy blue body, tan leather interior, and distinctive twin air intakes on the front fenders, viewed from a front three-quarter angle. diff --git a/utils/area/descriptions/Car/generated_descriptions/Spyker_C8_Coupe_2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Spyker_C8_Coupe_2009_descriptions.txt new file mode 100644 index 0000000..0bf7465 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Spyker_C8_Coupe_2009_descriptions.txt @@ -0,0 +1,20 @@ +02184.jpg The Spyker C8 Coupe 2009 in the image is shown from a low front-facing angle with a glossy white finish, featuring a pronounced mesh grille, distinctive air intakes, and a clear blue sky as the backdrop. +05954.jpg The Spyker C8 Coupe 2009 is silver with a smooth, metallic texture, seen from the rear with distinctive round taillights, twin exhaust pipes, and a backdrop of other sports cars in a parking lot. +00778.jpg The Spyker C8 Coupe 2009 in the image is a sleek white car with metallic textures, viewed from a three-quarter front angle with distinctive air vents on the hood, large silver wheels, and a unique split window roof design, set in a busy showroom environment with people and display stands. +05485.jpg A sleek, metallic red Spyker C8 Coupe 2009 with a polished finish is prominently displayed in a showroom, viewed from a front three-quarter angle, featuring its signature silver mesh grille, distinctive aerodynamic lines, and large alloy wheels. +07376.jpg The Spyker C8 Coupe 2009 is presented in a striking metallic orange with a smooth texture, viewed from a front three-quarter angle on a rain-slicked pavement, featuring distinctive side vents, a large mesh grille, and set against a backdrop of overcast skies and a tree-lined horizon. +06785.jpg The Spyker C8 Coupe 2009, depicted in a low-frontal view, showcases a glossy orange finish with distinct side air vents and a prominent grille against the blurred backdrop of a racetrack setting. +04333.jpg The Spyker C8 Coupe 2009 is shown in a white hue with a sleek design and visible circular taillights, captured at an angle from the rear on a wet racetrack, highlighting its aerodynamic curves and distinctive side exhausts in a rainy environment. +05211.jpg The Spyker C8 Coupe 2009 is painted in a sleek white, with a smooth texture and distinctive scissor doors open, set against an urban backdrop with graffiti on a brick wall, featuring prominent air vents and intricate wheel designs. +04210.jpg A white Spyker C8 Coupe 2009 is displayed in a front-facing view with its signature dual air vents on the hood, against a dimly lit exhibition backdrop featuring a metallic platform marked with "NO STEP" signs. +04562.jpg A vibrant orange Spyker C8 Coupe 2009 with a sleek, aerodynamic body and upward-hinged doors is displayed in a showroom setting, featuring prominent silver wheels, a distinctive front grille, and a racing-inspired hood design. +04098.jpg The Spyker C8 Coupe 2009 is a vibrant metallic red sports car viewed from a frontal angle, showcasing its distinctive gill-like front air intake against the backdrop of an industrial area, with prominent side mirrors and gleaming silver alloy wheels. +01629.jpg The Spyker C8 Coupe 2009 is presented in a sleek silver color with a polished metallic texture, shown from a front three-quarter view with its distinctive scissor doors raised, set against a simple studio background that highlights its sporty, aerodynamic design and unique grille pattern. +02105.jpg The Spyker C8 Coupe 2009 in the image is a sleek, metallic red sports car viewed from a three-quarter front perspective, with distinctive chrome wheels and a mountainous landscape in the background. +04871.jpg The Spyker C8 Coupe 2009, viewed from a front diagonal angle, features a glossy white exterior with a distinctive mesh grille, upward-opening scissor doors, and is set in a sleek, modern showroom with tiled flooring and spiral staircase. +03808.jpg The Spyker C8 Coupe 2009 is shown in a front three-quarter view with a sleek silver body, smooth aerodynamic curves, distinctive wheel design, and set against an ornate architectural background with lush greenery. +07642.jpg The Spyker C8 Coupe 2009 is captured from a low front angle, showcasing its glossy red finish and distinctive oval grille against a blurred mountainous road background, with striking teardrop headlights and a sleek, aerodynamic design. +02477.jpg The Spyker C8 Coupe 2009 in the image is shown in a metallic grey color with a sleek, reflective surface, viewed from a front-left angle with distinctive gullwing doors open, set against a modern indoor exhibition space, with its chrome wheels and unique front grille standing out prominently. +04712.jpg The Spyker C8 Coupe 2009 is depicted in a three-quarter front view, showing its deep metallic red body with smooth, glossy texture, distinctive V-shaped vents on the hood, and chromed wire-mesh grille, set against a suburban environment with parked vehicles and greenery. +01236.jpg The Spyker C8 Coupe 2009 is displayed from a rear three-quarter viewpoint, showcasing its sleek silver body with a smooth metallic texture, prominent circular tail lights, a distinctive rear diffuser, and scissor doors partially open, set against a refined indoor showroom background. +00404.jpg The Spyker C8 Coupe 2009 is presented in a sleek dark gray color with a smooth, glossy texture, captured from the side view highlighting its aerodynamic shape, distinctive exposed rear wheel arches, and large blade-like silver rims set against a plain white background. diff --git a/utils/area/descriptions/Car/generated_descriptions/Suzuki_Aerio_Sedan_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Suzuki_Aerio_Sedan_2007_descriptions.txt new file mode 100644 index 0000000..9598cf2 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Suzuki_Aerio_Sedan_2007_descriptions.txt @@ -0,0 +1,20 @@ +04632.jpg The low-resolution image depicts a silver Suzuki Aerio Sedan 2007 viewed from the front-left angle, situated on a brick-patterned pavement with a modern building facade in the background, highlighting its compact design, angular headlights, and chrome grille. +04228.jpg The silver Suzuki Aerio Sedan 2007 is viewed from a slight front-left angle, showcasing its compact body with rounded edges, set against a backdrop of palm trees on a clear day. +06175.jpg The low-resolution image depicts a silver Suzuki Aerio Sedan 2007 viewed from the side, showcasing its compact and aerodynamic design with five-spoke alloy wheels, set against an urban background with blurred buildings and a wet, snowy pavement. +01319.jpg The image shows a silver 2007 Suzuki Aerio Sedan viewed from a front three-quarter angle, with smooth body lines, highlighted by its compact size and four-door configuration, set against a plain white background. +00590.jpg The low-resolution image shows the rear view of a silver Suzuki Aerio Sedan 2007 with a prominent spoiler, distinct triangular taillights, and the backdrop of a parking lot featuring a building with arches. +02255.jpg The silver Suzuki Aerio Sedan 2007 is viewed from a rear-side angle parked in a snowy mountain landscape, featuring a distinct compact rear design with triangular taillights and five-spoke alloy wheels. +06113.jpg The Suzuki Aerio Sedan 2007, shown from a rear viewpoint in a low-resolution image, has a light blue color with a smooth texture, set against a plain white background, featuring distinct large, vertical taillights and a rear spoiler. +06374.jpg The 2007 Suzuki Aerio Sedan appears in a metallic silver color with smooth texture, viewed from the front left angle, set against an urban background with illuminated skyscrapers and a bridge, featuring distinctive rounded headlights and a prominent front grille. +04151.jpg The Suzuki Aerio Sedan 2007 appears in a dark blue color with a smooth texture, seen from a side view displaying its compact profile and silver alloy wheels, set against a plain building wall featuring a barred window and door. +00400.jpg The image shows a silver Suzuki Aerio Sedan 2007 with a smooth texture, viewed from a front-side angle, parked in an urban architectural setting featuring modern building elements and geometric pavement designs, with visible features like a distinctive grille and alloy wheels. +04933.jpg The low-resolution image depicts a red Suzuki Aerio Sedan 2007 with a glossy finish, viewed from a rear-side angle against a minimalist backdrop that emphasizes its compact, hatchback-like silhouette and distinctively high rear end. +00331.jpg The silver Suzuki Aerio Sedan 2007 is viewed from the front-left angle, displaying rounded headlights, a compact grille, and set against a parking lot with a white industrial building backdrop. +03170.jpg The Suzuki Aerio Sedan 2007 is viewed from a rear three-quarter angle, showcasing a silver exterior with a smooth metallic texture, set against an urban backdrop featuring stone and glass building elements, with distinctive triangular taillights and a compact body shape. +06672.jpg The Suzuki Aerio Sedan 2007 is shown in a metallic beige color with a smooth texture, viewed from the rear three-quarters angle on a city street, with distinct vertical taillights and parked on a tiled sidewalk next to buildings and trees. +07957.jpg The image shows a silver Suzuki Aerio Sedan 2007 viewed from the front-right angle, featuring smooth metallic paint with a glossy finish, parked in a studio setting with neutral lighting, showcasing its sleek headlights, distinctive grille, and curved fender lines. +01759.jpg The Suzuki Aerio Sedan 2007 appears in a metallic silver color with a distinctive compact shape, viewed from a rear three-quarter angle, featuring dark-tinted windows and its characteristic taillights, set against a background of greenery and a paved parking area. +07037.jpg A silver Suzuki Aerio Sedan 2007 is seen from a rear three-quarter view parked on a paved surface with a large building and cloudy sky in the background, featuring distinctively angular tail lights and a compact, aerodynamic shape. +07582.jpg The 2007 Suzuki Aerio Sedan, viewed from the rear-left in a garage setting, appears in white with distinct red and clear tail lights, a subtle trunk spoiler, and its metallic texture reflects the indoor lighting. +03212.jpg The image shows a silver sedan with smooth, reflective paint, viewed from the right side profile in a parking lot, set against a backdrop of grass and trees, with visible distinctive alloy wheels and gently sloping contours. +03991.jpg The Suzuki Aerio Sedan 2007 in the image is a silver-colored car with a smooth texture, captured from a side profile viewpoint, parked in front of a used car dealership with large glass windows and signage, featuring distinctive alloy wheels and a compact sedan structure. diff --git a/utils/area/descriptions/Car/generated_descriptions/Suzuki_Kizashi_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Suzuki_Kizashi_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..5c22d3b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Suzuki_Kizashi_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +03470.jpg The Suzuki Kizashi Sedan 2012 is white with a smooth, glossy texture, viewed from the front-left angle on a racetrack with visible fencing and road markings, featuring distinctive curved headlights and a bold grille design. +06889.jpg The red Suzuki Kizashi Sedan 2012 is viewed from the front-left angle under a covered dealership exterior, featuring a sleek, shiny finish, distinctive chrome grille, and alloy wheels, with a background of large windows and a brick column. +01038.jpg The Suzuki Kizashi Sedan 2012 appears in a front three-quarter view, displaying a sleek white body with a contrasting black roof, distinctive blue-tinted headlights, and a grille pattern, set against a plain studio background. +01922.jpg The red Suzuki Kizashi Sedan 2012 is photographed in motion from a front-side angle, highlighting its sleek body and distinctive chrome grille against an urban street backdrop with blurred buildings. +04861.jpg The low-resolution image shows a front-left view of a red Suzuki Kizashi Sedan 2012 with a metallic finish, featuring a prominent chrome-accented grille and visible Suzuki emblem, parked in a lot with other cars in the background. +01530.jpg The Suzuki Kizashi Sedan 2012 is a metallic gray vehicle with a smooth, sleek texture, captured from a front three-quarter view with snow-covered landscape and a serene blue lake in the background, featuring a distinctive chrome grille and angular headlamps. +07172.jpg The Suzuki Kizashi Sedan 2012 in the image is a silver vehicle captured from a front-facing angle, highlighting its distinctive grille and prominent headlights, set against the backdrop of an empty concrete road during sunset. +00651.jpg The 2012 Suzuki Kizashi Sedan in the image is a glossy white vehicle viewed from a front three-quarter angle, parked on a wet pavement with a simple wall backdrop and surrounded by other cars, featuring distinct alloy wheels and a prominent black grille. +02481.jpg The Suzuki Kizashi Sedan 2012 in the image is a metallic silver color with a sleek texture, captured from a low front angle with a backdrop of empty bleachers, featuring distinctively large, angular headlights and a bold, black mesh grille. +05164.jpg The 2012 Suzuki Kizashi Sedan is shown in a dark blue color with a metallic texture from a three-quarter front view, parked on a concrete surface in front of a commercial building, featuring sleek alloy wheels and a distinct mesh grille. +06835.jpg The 2012 Suzuki Kizashi Sedan is viewed from a front three-quarter angle, showcasing its metallic silver color and sleek texture, with a distinctive black grille and chrome accents, set against an industrial background with soft lighting highlighting its smooth lines and alloy wheels. +06489.jpg The red Suzuki Kizashi Sedan 2012 is captured from the side in motion with a vineyard and mountainous landscape in the blurred background, featuring chrome accents and distinctively styled wheels. +06235.jpg The Suzuki Kizashi Sedan 2012 is depicted in a silvery-white hue with a glossy finish, viewed from a front three-quarter angle, showcasing its large mesh grille and sporty alloy wheels, set against a mountainous landscape with a serene lake. +01250.jpg The Suzuki Kizashi Sedan 2012 is shown in a three-quarter front view, glossily black with a reflective sheen, parked on a paved road surrounded by lush green foliage, featuring a distinctive chrome grille and alloy wheels. +05856.jpg The Suzuki Kizashi Sedan 2012 appears in a shiny maroon color with a front three-quarter view highlighting its chrome grille, parked outdoors in a dealership lot surrounded by other cars. +04146.jpg The Suzuki Kizashi Sedan 2012 is shown from a dynamic rear three-quarter angle, highlighting its sleek gray body with a glossy finish, set against a winding mountain road backdrop, with distinctive LED tail lights and twin exhaust tips. +05282.jpg The image shows a side view of a silver Suzuki Kizashi Sedan 2012 with a sleek texture, driving swiftly on a paved road with a blurred rural landscape in the background, highlighting its sporty contours and dynamic stance. +07715.jpg The low-resolution image depicts a silver 2012 Suzuki Kizashi Sedan viewed from the rear three-quarter perspective, set against a plain white background, featuring distinctive multi-spoke alloy wheels and a subtle rear spoiler. +02355.jpg The Suzuki Kizashi Sedan 2012 in the image is a white car with a shiny, smooth texture, shown from a front-side angle on a dealership lot surrounded by other vehicles, with a distinct mesh grille and multi-spoke alloy wheels. +06427.jpg The white Suzuki Kizashi Sedan 2012 is viewed from the rear, showcasing its sleek tail lights and dual exhausts against a backdrop of lush green trees and a curved, low roadside barrier. diff --git a/utils/area/descriptions/Car/generated_descriptions/Suzuki_SX4_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Suzuki_SX4_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..821e566 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Suzuki_SX4_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +03841.jpg The Suzuki SX4 Hatchback 2012 is captured in a dynamic side view showcasing its glossy red finish with smooth texture, set against a blurred natural background of dry foliage, featuring distinctive roof rails and silver alloy wheels. +02272.jpg The red Suzuki SX4 Hatchback 2012 is viewed from a low front angle, showcasing its sleek body with a prominent grille and silver racing stripes, set against a blurred racetrack background. +03284.jpg The Suzuki SX4 Hatchback 2012 is dark blue with a glossy texture, viewed from the rear driver-side in an outdoor park setting, featuring a distinctive rear spoiler and alloy wheels against a backdrop of green trees and overcast sky. +06638.jpg The Suzuki SX4 Hatchback 2012 is a metallic orange car viewed from the front-left angle, featuring a prominent silver grille, large round headlights, and roof rails, set against a blurred outdoor backdrop of trees and grass. +05234.jpg A silver Suzuki SX4 Hatchback 2012 with a smooth, metallic texture is photographed from a front-right angle in a dealership parking lot, featuring roof rails and surrounded by other vehicles with visible price tags in the background. +05109.jpg A silver Suzuki SX4 Hatchback 2012 is positioned in a three-quarter front view with a smooth metallic texture, parked on a street against a backdrop of mixed brick and stone walls. +06170.jpg The red 2012 Suzuki SX4 Hatchback is pictured in a dynamic side-front view against a beach backdrop, showcasing its compact design, smooth body lines, and a prominent grille, with sunlight highlighting its glossy finish amidst the coastal scenery. +06123.jpg The image shows a bright red Suzuki SX4 Hatchback 2012 with a smooth texture, viewed from the side against a backdrop of a white tent on an asphalt surface, featuring distinctive silver alloy wheels and a compact design. +03919.jpg The 2012 Suzuki SX4 Hatchback in the image is a metallic blue color, viewed from the front with distinct black grille accents, situated in a sunlight-dappled parking lot with trees and a white brick wall in the background. +03044.jpg In the image, a Suzuki SX4 Hatchback 2012 with a metallic burnt orange color and smooth texture is viewed from the side, parked on a deserted basketball court with bare trees and a chain-link fence in the background, showcasing its compact, rounded body and silver alloy wheels. +04582.jpg The image shows a red Suzuki SX4 Hatchback 2012 with a glossy finish driving on a winding rural road, viewed from a slightly elevated front angle, surrounded by a lush green landscape and distant blue mountains under a clear sky. +06602.jpg The Suzuki SX4 Hatchback 2012 is a metallic red compact car with a glossy finish, captured from a frontal view displaying its distinct hexagonal grille and Suzuki emblem, set against an indoor showroom environment. +04364.jpg A silver Suzuki SX4 Hatchback 2012 is shown in three-quarter front view on a sandy beach with surfboards on the roof, against a backdrop of blue sky and ocean waves. +05951.jpg A silver Suzuki SX4 Hatchback 2012 is pictured from the front-left angle, prominently displaying its sleek, aerodynamic curves and distinct mesh grille against a wooded, leaf-covered background. +02061.jpg The Suzuki SX4 Hatchback 2012 is silver with a smooth texture, seen from a front three-quarter view, parked in front of a hedge with red leaves and a green-roofed building, featuring a distinctive front grille and silver alloy wheels. +04153.jpg The Suzuki SX4 Hatchback 2012 is a bright red compact car with a smooth texture, viewed from a front-side angle with a grassy and stone wall background, featuring silver alloy wheels and roof rails. +07301.jpg The Suzuki SX4 Hatchback 2012 appears in a vibrant red-orange color with a slightly glossy texture, viewed from a front-side angle showcasing the grille and headlights, set against a coastal background with a blurred motion effect on the road. +05700.jpg A red Suzuki SX4 Hatchback 2012 with black racing stripes is viewed from a front three-quarter angle, parked on a gray asphalt surface with a brick wall background, featuring sporty black alloy wheels and a prominent front grille. +00565.jpg The Suzuki SX4 Hatchback 2012 is a metallic red vehicle positioned in a front three-quarter view on a small stage within an outdoor event setting, featuring a distinctive chrome-trimmed grille and multi-spoke alloy wheels, surrounded by a group of people in formal attire. +00475.jpg The silver Suzuki SX4 Hatchback 2012 is shown in a side profile view against a plain white background, highlighting its compact shape, distinct rear spoiler, and black-tinted windows. diff --git a/utils/area/descriptions/Car/generated_descriptions/Suzuki_SX4_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Suzuki_SX4_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..76198f4 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Suzuki_SX4_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +04897.jpg The silver Suzuki SX4 Sedan 2012 is viewed from the front-right side, showcasing its distinctive grille and headlamps with a shiny texture, situated on a red carpet with a modern, arch-lit background. +04637.jpg The Suzuki SX4 Sedan 2012 appears in a bright white color with a smooth, glossy texture, viewed from a front-side angle in an outdoor parking lot, featuring its distinct trapezoidal grille and alloy wheels. +05320.jpg The silver Suzuki SX4 Sedan 2012 is seen from a rear three-quarter view, driving smoothly against a blurred city nightlife background, showcasing its rounded rear and distinct rear lights. +02529.jpg The Suzuki SX4 Sedan 2012 is a silver car with a smooth, sleek texture, viewed from the front-left angle on a curving road, surrounded by lush green trees, featuring distinctive headlights and a prominent grille. +02602.jpg The Suzuki SX4 Sedan 2012 is depicted in a front three-quarter view, showcasing a silver color with a smooth texture, set against a background of modern skyscrapers, featuring a distinctive grille and alloy wheels. +01985.jpg The low-resolution image shows a light blue Suzuki SX4 Sedan 2012 viewed from a front three-quarter angle, parked on a sunlit street with a hedge-lined background and palm trees, featuring silver alloy wheels and a distinctive grille design. +00557.jpg A front view of a white Suzuki SX4 Sedan 2012 is parked on a wet road with a bridge guardrail in the background, featuring a distinctive blue "Automatic" decal on the hood and silver grille. +02092.jpg The image shows a silver Suzuki SX4 Sedan 2012 viewed from the front-left angle, displaying its smooth metallic texture, distinctive grille, and the background of a motion-blurred tunnel suggesting dynamic motion. +00796.jpg The image shows a dark blue Suzuki SX4 Sedan 2012 with a smooth texture, viewed from a front-side angle against a rural backdrop featuring a barren field and a rustic wooden shed, characterized by prominent wheel arches, a distinctive grille, and sleek headlamps. +06114.jpg The silver Suzuki SX4 Sedan 2012 is captured from a front-side angle with motion blur on a sunlit road bordered by trees, featuring a sleek body, distinctively large headlights, and a black grille. +01355.jpg The Suzuki SX4 Sedan 2012 in the image appears silver with a glossy texture, viewed from a front-side angle emphasizing its mesh grille and large white headlamps, set against a plain white background. +04141.jpg The 2012 Suzuki SX4 Sedan appears in a metallic silver color with a smooth texture, viewed from a front-side angle showcasing its sleek contours and angular headlights, positioned against a simple white background. +02952.jpg The 2012 Suzuki SX4 Sedan, viewed from a front three-quarter angle, features a silver exterior with a smooth texture, positioned against a grassy, wooded backdrop, and is distinguished by its prominent black grille and circular fog lights. +00666.jpg The Suzuki SX4 Sedan 2012 appears in a metallic gray color with visible reflections, seen from a side profile against a lush, green wooded background, featuring multi-spoke alloy wheels that stand out distinctly. +02807.jpg The image shows a silver Suzuki SX4 Sedan 2012 with white custom rims, a prominently front-left angle, parked on a street in a residential area with yellow buildings in the background, and featuring a black grille and tinted windows. +04655.jpg The Suzuki SX4 Sedan 2012 appears in a metallic maroon color with a shiny texture, viewed from the front left angle with the front passenger door open, set against a gravel parking area, and features a distinctive black honeycomb grille and rounded headlights. +04156.jpg The low-resolution image depicts a white Suzuki SX4 Sedan 2012, viewed from the front with a rugged coastal background, showcasing its distinctive black mesh grille and sharp, clear headlights. +07637.jpg The image displays a dark gray Suzuki SX4 Sedan 2012 from a front three-quarter view, parked in an open lot with trees and lampposts in the background, featuring its distinct front grille and headlight design. +01320.jpg The image shows a red Suzuki SX4 Sedan 2012 from a front three-quarter view on a paved road, featuring a distinctive black grille and chrome accents, set against a blurred grassy landscape. +01282.jpg A white Suzuki SX4 Sedan 2012 is shown from a front three-quarter angle against a plain gray wall background, featuring distinguishable alloy wheels, a chrome-accented grille, and clear headlamps. diff --git a/utils/area/descriptions/Car/generated_descriptions/Tesla_Model_S_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Tesla_Model_S_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..ce2e220 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Tesla_Model_S_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +06367.jpg The white Tesla Model S Sedan 2012 is positioned in a side view within a dimly lit, indoor exhibition environment, featuring large silver wheels and a sleek, aerodynamic silhouette with the studio lights creating subtle reflections on its smooth surface. +05327.jpg The Tesla Model S Sedan 2012 in the image is a sleek white vehicle viewed from the side, showcasing its aerodynamic shape and large, shiny alloy wheels against a dimly lit indoor event space with people and projector screens in the background. +05420.jpg A white Tesla Model S Sedan 2012 is viewed from the front-right angle on a snowy landscape with orange cones, displaying its sleek body and signature front grille under a dark sky. +01265.jpg The Tesla Model S Sedan 2012 is shown from a low, front-angled viewpoint, featuring a sleek silver exterior with smooth, shiny texture, prominent aerodynamic curves, distinctive Tesla grille, and silver alloy wheels, set against a clear blue sky and mountainous landscape. +06149.jpg The low-resolution image shows a dark blue Tesla Model S Sedan 2012 viewed from a front-left angle with visible sleek, smooth body lines, distinctive headlights, and a polished chrome grille, set against an outdoor environment with blurred trees and fencing in the background. +03873.jpg A low-resolution image shows a red Tesla Model S Sedan 2012 with a sleek, curvy texture viewed from the side, parked against a neutral background. +07728.jpg The Tesla Model S Sedan 2012 is shown in a glossy red finish, viewed from a low front angle, parked outside a large industrial Tesla building with distinct silver rims and a sleek, aerodynamic design. +06409.jpg The Tesla Model S Sedan 2012 is shown in a profile view with a metallic silver color, smooth streamlined body, and large silver alloy wheels, set against an indoor event space with diffuse lighting reflected on its surface. +01104.jpg The image shows a bright red Tesla Model S Sedan 2012 with a glossy finish and a front-three-quarter viewpoint, set in an outdoor industrial environment with visible concrete ground and buildings, featuring its signature sleek and aerodynamic body with silver alloy wheels and a panoramic sunroof. +05795.jpg The Tesla Model S Sedan 2012 is depicted in a glossy red finish with black wheels, angled from the front left for a dynamic view, set against a simple white background, highlighting its sleek body contours and distinctive chrome trim. +00891.jpg The Tesla Model S Sedan 2012 appears in a glossy white color with sleek contours, viewed from a front-right angle, set against an indoor environment bustling with people and cameras, highlighting its distinctive aerodynamic shape, large alloy wheels, and signature Tesla headlights. +05982.jpg A white Tesla Model S Sedan 2012 is seen from a side view with a glossy finish, parked indoors against a backdrop of black and white images, showcasing its sleek, aerodynamic design and distinctive silver alloy wheels. +06867.jpg A red Tesla Model S Sedan 2012 is depicted in a glossy finish from a front-side angle inside a bright manufacturing facility, showcasing its sleek aerodynamic design, large alloy wheels, and distinct Tesla emblem. +00430.jpg The Tesla Model S Sedan 2012 is a sleek, metallic silver car viewed from the front-left angle, with distinct aerodynamic curves and a slightly elevated road background, featuring its iconic low grille and sleek headlamps. +05666.jpg The silver Tesla Model S Sedan 2012 is captured in motion from a side view with blurred, modern industrial buildings and foliage in the background, highlighting its sleek, aerodynamic design and large alloy wheels. +02349.jpg Seen from a side profile, the Tesla Model S Sedan 2012 features a sleek, glossy white exterior with smooth curves and a streamlined silhouette, set against a neutral, light gray background. +02495.jpg The Tesla Model S Sedan 2012 is depicted in a metallic gray shade with a sleek, glossy texture, viewed from a front-side angle within an indoor setting featuring a white industrial backdrop and showcasing distinctive aerodynamic curves and a prominent chrome grille. +06058.jpg A red Tesla Model S Sedan 2012 is seen from a front three-quarter perspective, featuring a glossy finish and aerodynamically sleek design, set against a rural road with fields and an overpass in the background. +01216.jpg The Tesla Model S Sedan 2012 appears in a smooth silver finish with sleek curves, viewed from a rear three-quarter angle, set in a brightly lit indoor event space with a black carpet and surrounded by people and photographers. +04335.jpg The Tesla Model S Sedan 2012 appears in a crisp white color with a glass sunroof, viewed from an elevated angle in a concrete parking area, showcasing its sleek, aerodynamic design and distinctive front fascia. diff --git a/utils/area/descriptions/Car/generated_descriptions/Toyota_4Runner_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Toyota_4Runner_SUV_2012_descriptions.txt new file mode 100644 index 0000000..667aada --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Toyota_4Runner_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +07939.jpg A gray Toyota 4Runner SUV is parked at an angle on a dealership lot, showcasing its prominent grille, five-spoke alloy wheels, and boxy profile against a backdrop of glass showroom windows and signage. +07477.jpg A silver Toyota 4Runner SUV 2012 is seen from a front-side angle on a curved road with a rocky landscape and pine trees in the background, featuring roof racks and a sleek, streamlined body shape. +06673.jpg The Toyota 4Runner SUV 2012 appears in a metallic gray color with a matte finish, viewed from the front-left angle, set against a blurred background of greenery and buildings, featuring a distinctive wide grille and prominent headlights. +00288.jpg A gray Toyota 4Runner SUV 2012 is positioned in a three-quarter front view against a rugged coastal background with looming cliffs and overcast skies, featuring distinct wheel arches, roof racks, and a robust front grille. +05417.jpg A silver Toyota 4Runner SUV 2012 is viewed from a front three-quarter angle with a rugged off-road backdrop, highlighting its distinctive pronounced grille, aggressive headlights, and chunky tires against a sunset-lit landscape. +05894.jpg A silver Toyota 4Runner SUV from 2012 is shown from a front three-quarter angle against a dark studio background, featuring a rugged build with a prominent grille and roof rails. +01699.jpg A black Toyota 4Runner SUV 2012 is seen from a front three-quarter view in an industrial parking lot, featuring a distinctive chrome grille and headlights with a slightly overcast sky reflecting on its glossy surface. +03794.jpg The Toyota 4Runner SUV 2012 is depicted in a glossy dark gray color with a robust build, viewed from a three-quarter front angle, set against a serene desert landscape with distant mountains and a gradient sky, showcasing its prominent grille and roof rack. +07770.jpg The Toyota 4Runner SUV 2012 in the image is silver with a smooth texture, shown in a side profile view on a paved road, against a blurred, earthy and bushy background, featuring distinct angular bodywork and a roof rack. +03692.jpg The Toyota 4Runner SUV 2012 in the image is a white vehicle with a smooth texture, shown in a side-angle view against a blue sky with white clouds backdrop, featuring a roof rack and prominent wheel arches. +05708.jpg A dark metallic gray Toyota 4Runner SUV 2012 with a robust and angular design is captured from a frontal three-quarter view on a dirt road, with distinctive features such as a prominent grille and roof rails, set against a lush green and wooded background. +00451.jpg The Toyota 4Runner SUV 2012 appears from a front three-quarter view with a dark metallic gray color, matte texture, and distinctive angular headlights, set against a mountainous road. +01472.jpg A silver Toyota 4Runner SUV 2012 is captured in side profile facing right, displaying its rugged body and alloy wheels against a blurry, earthy backdrop of a rocky terrain. +04272.jpg The Toyota 4Runner SUV 2012 is a silver vehicle with a rugged texture, viewed from a side angle showing its slightly elevated stance, roof rack, and distinctive front grille against a blurred, forested background. +00892.jpg The image shows a gray Toyota 4Runner SUV 2012 with a metallic finish, viewed from the front-left angle, against a mountainous backdrop, featuring prominent headlights, roof rails, and rugged tires. +03281.jpg The Toyota 4Runner SUV 2012 in the image is glossy black with a bold front grille, illuminated headlights, and silver alloy wheels, viewed from the front-left angle, set in a plain indoor environment with a polished concrete floor. +01449.jpg A blue Toyota 4Runner SUV 2012 with a rugged texture is captured from a front-side angle, featuring prominent fender flares and a chrome grille, set against a forested background with a rocky path. +07815.jpg The image shows a dark gray Toyota 4Runner SUV 2012 with a slightly reflective finish, viewed from the side in a three-quarter perspective against a backdrop of stacked firewood and leafless trees. +03937.jpg A dark-colored Toyota 4Runner SUV 2012, viewed from the front-left angle, sits on a brick-paved area with a dealership backdrop, showcasing its prominent grille, chrome rims, and raised stance against a clear blue sky. +01111.jpg A metallic gray Toyota 4Runner SUV 2012 is viewed from the side against a backdrop of dry rolling hills and scattered trees, featuring prominent wheel arches and a roof rack. diff --git a/utils/area/descriptions/Car/generated_descriptions/Toyota_Camry_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Toyota_Camry_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..4d8ae28 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Toyota_Camry_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +00431.jpg The image shows a sky-blue Toyota Camry Sedan 2012 with a smooth texture, captured from a front-side angle in an industrial setting next to a white-brick wall, featuring a prominent headlight design and metallic alloy wheels. +06496.jpg The silver Toyota Camry Sedan 2012 is viewed from a front-side angle in a dealership lot with flag banners in the background, showcasing its sleek body, prominent front grille, and distinctive headlights. +00259.jpg The image displays a black Toyota Camry Sedan 2012 with a glossy texture, viewed from a rear three-quarter angle, parked inside a showroom with a reflective tiled floor and a partially visible outside area with greenery, featuring sharp tail lights and a smooth, aerodynamic body shape. +03621.jpg The front view of the Toyota Camry Sedan 2012 features a glossy red color with a mesh grille and prominent logo, set against a lush, green forest background. +01566.jpg The Toyota Camry Sedan 2012 appears in a silver color with a smooth texture, viewed from the front-left angle, parked on a gravel lot with sparse trees and other vehicles in the background, featuring distinctive angular headlights and a prominent grille. +07393.jpg The image shows a red 2012 Toyota Camry Sedan photographed from a front three-quarter angle, displaying its streamlined body, alloy wheels, and distinctive sharp headlight design, positioned on a concrete surface in front of a Toyota dealership as evident by the building and sign in the background. +00148.jpg A red Toyota Camry Sedan 2012 is viewed from the front-left angle, parked indoors against a plain white wall, featuring a glossy finish with prominent chrome accents on the grille and fog lights, and resting on silver alloy wheels. +02621.jpg A white 2012 Toyota Camry Sedan is parked in a dealership parking lot, viewed from the front left angle, featuring clean, smooth body lines with noticeable alloy wheels and a shiny silver grille. +06434.jpg The silver 2012 Toyota Camry Sedan is captured in a dynamic front-side view on a city street, showcasing its prominent grille and sleek bodylines against a backdrop of blurred greenery and urban elements. +04555.jpg A red 2012 Toyota Camry Sedan with a glossy finish is seen from a low front three-quarter view, parked on a smooth road against a backdrop of hazy mountains and grass, featuring distinct front fog lights and multispoke alloy wheels. +08104.jpg The Toyota Camry Sedan 2012 is silver with a smooth glossy texture, viewed from the front-right corner in a showroom setting featuring a tiled floor and white wall, displaying distinct headlights and a sleek grille design. +00465.jpg A vibrant red Toyota Camry Sedan 2012 is captured from a front-right angle, embellished with red streamers, set against a lively urban festival backdrop. +05838.jpg The Toyota Camry Sedan 2012 is a glossy red vehicle with a sleek design, viewed from the front three-quarter angle, parked near a serene lakeside surrounded by lush greenery, featuring distinctive angular headlights and alloy wheels. +03823.jpg The red Toyota Camry Sedan 2012 is captured in a dynamic front three-quarter view on a roadside with grass and shrubs in the background, featuring a sleek, aerodynamic design with prominent grille and angular headlights. +01158.jpg The Toyota Camry Sedan 2012 is seen from a frontal viewpoint in a showroom environment, characterized by its metallic gray color, sleek body lines, chrome-accented grille, and distinctive angular headlights. +06730.jpg A light blue Toyota Camry Sedan 2012 with smooth texture is parked at an angle showing the front and side, in a dimly lit multi-story parking garage with gray concrete surroundings, featuring distinctive elongated headlights and alloy wheels. +01225.jpg The image depicts a frontal view of a white Toyota Camry Sedan 2012 with a metallic grille and angular headlights, parked on a checkered floor inside a room with white walls. +01590.jpg The silver Toyota Camry Sedan 2012 is viewed from the side, highlighting its sleek silhouette and metallic sheen, set against a backdrop of a brick wall and overcast sky, with distinct alloy wheels and subtle chrome accents. +01120.jpg A white Toyota Camry Sedan 2012 is positioned at an angle view in a showroom setting with a checkered floor, highlighting its sleek chrome-accented grille and clear headlights. +04880.jpg The red Toyota Camry Sedan 2012, viewed in profile against a tranquil lakeside backdrop with greenery, features sleek body lines, silver alloy wheels, and a distinct front grille despite the image's low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions/Toyota_Corolla_Sedan_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Toyota_Corolla_Sedan_2012_descriptions.txt new file mode 100644 index 0000000..3cb5e01 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Toyota_Corolla_Sedan_2012_descriptions.txt @@ -0,0 +1,20 @@ +01240.jpg The silver Toyota Corolla Sedan 2012 is viewed from the rear with distinct circular taillights and a visible license plate, set against a suburban street with greenery and a sidewalk. +05361.jpg The low-resolution image shows a white Toyota Corolla Sedan 2012 from a rear three-quarter angle, featuring a prominent rear spoiler, visible badge detailing, and set against a brick-paved lot with a dealership building in the background. +06674.jpg The 2012 Toyota Corolla Sedan is a red car with a glossy finish, viewed from the front left in an outdoor dealership setting, featuring distinct front grille and headlights, with a backdrop of a white building marked "Toyota." +06416.jpg The image shows a silver Toyota Corolla Sedan 2012 with a smooth texture, viewed from a front-right angle against a plain white background, featuring distinct headlights and a prominent front grille. +05553.jpg The image shows a front-facing, low-resolution white Toyota Corolla Sedan 2012 with a glossy texture, parked on an asphalt surface in a dealership lot, with distinctive features like its emblem-centered grille and flanked by a red car and dealership signage in the background. +00845.jpg The silver Toyota Corolla Sedan 2012 is viewed from the rear against a concrete wall, featuring distinctively shaped taillights and a glossy finish, with a visible Corolla emblem on the trunk. +02687.jpg The silver Toyota Corolla Sedan 2012 is viewed from the front right angle, featuring a smooth metallic finish and visible five-spoke alloy wheels, set against the backdrop of a car dealership with white and red accents. +00203.jpg The Toyota Corolla Sedan 2012 is in a vivid red color with a smooth texture, viewed from the rear left on a residential street with stucco houses and greenery, featuring alloy wheels and a prominent chrome Toyota emblem. +05322.jpg The bright red Toyota Corolla Sedan 2012 is captured from a front three-quarter view, driving along a curving road with bushes and hillside houses in the background, showing its distinctive wide grille and sleek headlight design. +05127.jpg The low-resolution image depicts a red Toyota Corolla Sedan 2012 viewed from a front-side angle, nestled in a suburban street setting with greenery and parked cars, displaying a smooth, glossy texture and distinctive grille design. +02250.jpg The Toyota Corolla Sedan 2012 in the image is a dark blue color with a glossy texture, captured from a front-side angle, set against an urban street environment with traffic lights and trees, featuring distinctive spoke-style alloy wheels and a sleek front grille design. +02650.jpg The low-resolution image shows a rear view of a red Toyota Corolla Sedan 2012 parked in front of a residential garage, highlighting its sleek taillights and a subtle rear spoiler against a landscaped suburban background. +03628.jpg The low-resolution image shows a front-facing view of a 2012 Toyota Corolla Sedan with a metallic gray color, featuring a compact, aerodynamic design and chrome trim, parked indoors on a patterned tile floor with a white wall on the right. +03113.jpg The image shows a white Toyota Corolla Sedan 2012 viewed from the front-left angle in a car parking lot, featuring silver alloy wheels and a sleek, smooth exterior with distinct headlights under clear, bright lighting. +01618.jpg A red Toyota Corolla Sedan 2012 is seen from the front with a smooth texture, set against a background of glass-covered buildings and greenery, featuring a distinctive grille and headlight design. +00906.jpg The Toyota Corolla Sedan 2012 appears in silver with a smooth texture, viewed from the front, set against a park with lush trees, featuring prominently illuminated headlamps. +01913.jpg The image shows a glossy white Toyota Corolla Sedan 2012 viewed from an angle that captures the front and right side, parked indoors on a tiled floor with a clear, well-lit showroom setting, featuring distinct front grille and rounded wheel covers. +07917.jpg The image shows a dark gray Toyota Corolla Sedan 2012 viewed from the front-left angle, parked in a sunlit asphalt lot with a white building and other vehicles in the background, featuring sporty design cues such as alloy wheels and a prominent front grille with a license plate holder. +05956.jpg The Toyota Corolla Sedan 2012 is displayed in a side profile view with a white exterior and visible reflections, parked in a lot among other vehicles, featuring distinct angular headlights and silver alloy wheels. +07006.jpg The white Toyota Corolla Sedan 2012 is shown from the rear, parked on a paved lot against a backdrop of parked cars and distant mountains, featuring distinctive red tail lights and a chrome trim accent on the trunk. diff --git a/utils/area/descriptions/Car/generated_descriptions/Toyota_Sequoia_SUV_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Toyota_Sequoia_SUV_2012_descriptions.txt new file mode 100644 index 0000000..06774dc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Toyota_Sequoia_SUV_2012_descriptions.txt @@ -0,0 +1,20 @@ +01299.jpg The Toyota Sequoia SUV 2012 appears in a metallic silver color with a smooth texture, viewed from the side in a dealership lot, showcasing its prominent wheel arches and chrome accents, against a background of balloons and a "Used Vehicles" sign under a clear sky. +01824.jpg The white Toyota Sequoia SUV 2012 is viewed from the front three-quarter angle, featuring a distinctive chrome grille amidst a suburban background with trees and buildings. +01843.jpg A metallic gray Toyota Sequoia SUV 2012 is viewed from the front-left angle, showcasing its chrome grille and sleek, glossy surface, parked under a large shelter with other vehicles visible in the background. +07288.jpg The Toyota Sequoia SUV 2012, viewed from a three-quarter front angle, appears in a metallic silver tone with a smooth, glossy finish, and is set against a mountainous backdrop with a warm sunset hue, featuring prominent headlights and a bold front grille. +05974.jpg A black Toyota Sequoia SUV 2012 with a crumpled front hood is parked at a slight front-side angle on a gravel lot, surrounded by greenery and another vehicle, featuring a prominent chrome grille and alloy wheels. +07792.jpg A dark gray Toyota Sequoia SUV 2012 is viewed from the front-right in a parking lot under overcast skies, featuring a prominent chrome grille, side step running boards, and alloy wheels. +03090.jpg A beige Toyota Sequoia SUV 2012 is seen from a front three-quarter view, featuring chrome accents on its grille and mirrors, parked on a concrete driveway with a background of green hedges and a fence. +03366.jpg The white Toyota Sequoia SUV 2012 is viewed from a front three-quarter angle in a bright indoor showroom with glossy floors, featuring a distinctive chrome grille and prominent headlights. +04314.jpg The 2012 Toyota Sequoia SUV appears in a metallic gray color with a textured surface, viewed from a front three-quarter angle, parked against a stone wall background, featuring prominent chrome grille accents and large, reflective windows. +03916.jpg The 2012 Toyota Sequoia SUV appears pearl white with a smooth, glossy texture, viewed from the side with visible reflections on its body, set in a parking lot environment with showroom buildings and other vehicles in the background, featuring distinctive chrome accents and roof rails. +03109.jpg The low-resolution image depicts a gray Toyota Sequoia SUV 2012 viewed from the front-right, parked in a suburban driveway in front of a brick and siding house, featuring a prominent chrome grille and alloy wheels. +03041.jpg The 2012 Toyota Sequoia SUV is shown in a glossy dark gray color, viewed from the front passenger side at an angle, with a blurred outdoor setting and greenery in the background, featuring distinctive chunky wheel arches and a prominent chrome grille. +04573.jpg The Toyota Sequoia SUV 2012 is depicted in a rear three-quarter view, showcasing its metallic silver finish with a smooth texture, set against a blurred background of greenery and a wooden deck, featuring prominent tail lights and a rooftop rail. +02393.jpg The Toyota Sequoia SUV 2012 is shown in a front three-quarter view with a metallic beige color and smooth texture, set against a leafy, forested background, featuring prominent chrome detailing on the grille and distinct alloy wheels. +03271.jpg A metallic silver Toyota Sequoia 2012 SUV is viewed from a rear three-quarter angle, showcasing its rounded taillights, roof rails, and dark-tinted rear windows against a plain white background. +03466.jpg The image shows a side view of a metallic gray Toyota Sequoia SUV 2012 with visible roof rails and chrome accents, set against a background of a clear blue sky and ground. +04325.jpg A silver Toyota Sequoia SUV 2012 is viewed from a front three-quarter angle, featuring a robust, grille-dominant front with five-spoke wheels, against a scenic background of rolling green hills and a distant blue lake. +05024.jpg A metallic beige Toyota Sequoia SUV 2012 is viewed from the side against a painted mountainous backdrop, featuring prominent chrome grille accents and large alloy wheels. +04094.jpg A beige Toyota Sequoia SUV 2012 is shown from a front three-quarter angle, driving on a paved road with green foliage and a stone wall in the background, featuring prominent grille and roof rails. +00012.jpg The image shows a metallic silver Toyota Sequoia SUV 2012 from a three-quarter front view, parked on a paved surface with a modern glass building in the background, featuring pronounced wheel arches, a robust front grille, and side mirrors matching the body color. diff --git a/utils/area/descriptions/Car/generated_descriptions/Volkswagen_Beetle_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Volkswagen_Beetle_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..eb856c8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Volkswagen_Beetle_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +04780.jpg The Volkswagen Beetle Hatchback 2012 is shown in a smooth silver color with metallic texture, viewed at a slight front-side angle, against a minimalistic indoor background, featuring sleek, rounded headlights and distinctive alloy wheels. +06783.jpg A white Volkswagen Beetle Hatchback 2012 is shown in motion from a rear three-quarter view, displaying its smooth, rounded body and distinctive rear spoiler against a sleek urban backdrop with a blurred blue wall. +07147.jpg The image shows a white Volkswagen Beetle Hatchback 2012 with a glossy finish, viewed from the front-right angle, parked on a concrete surface, with distinctive round headlights, smooth curves, and classic chrome hubcaps, set against a background featuring palm trees, a dealership building, and blue sky. +03356.jpg The Volkswagen Beetle Hatchback 2012 is a light blue, glossy-textured car viewed from the left side against a dealership backdrop, with distinct round wheel arches and chrome-accented hubcaps. +02755.jpg The Volkswagen Beetle Hatchback 2012 is viewed from a three-quarter front angle, showcasing its light blue color with a smooth texture, set against a backdrop of a beige brick wall and a blacktop ground, with distinct rounded headlights and chrome-accented retro-style wheels. +07788.jpg The 2012 Volkswagen Beetle Hatchback is depicted in a toffee brown metallic color, featuring a classic rounded design with prominent wheel arches and chrome hubcaps, viewed from a side angle against a backdrop of a modern dealership building with palm trees and overcast skies. +00019.jpg A vibrant red Volkswagen Beetle Hatchback 2012 is captured in motion from the left rear angle against a backdrop of lush greenery and a cloudy sky, featuring smooth curves and iconic rounded fenders. +02997.jpg The white Volkswagen Beetle Hatchback 2012 is viewed from a front three-quarter angle, showcasing its smooth, glossy texture, iconic rounded headlights, and a showroom setting with a sleek white and black interior visible through the windows. +02086.jpg The Volkswagen Beetle Hatchback 2012 is seen in a matte gray color with a smooth texture, viewed from a three-quarter front angle, parked in an outdoor lot with a clear sky and other cars nearby, featuring distinctive round headlights and a compact, curved shape. +04263.jpg The Volkswagen Beetle Hatchback 2012 appears in glossy white with a sleek, rounded body viewed from the side, featuring distinct five-spoke alloy wheels and positioned against a modern dealership backdrop with palm trees under a clear sky. +04128.jpg The Volkswagen Beetle Hatchback 2012 is shown from a rear three-quarter angle, featuring a smooth metallic gray finish with a glossy texture, set against a dealership background, highlighting its distinctive round rear lights, sporty alloy wheels, and a visible dual exhaust. +01080.jpg The 2012 Volkswagen Beetle Hatchback is seen in a glossy black finish with a slight reflection, viewed from a front three-quarter angle in a spacious indoor showroom with a distinctive "Turbo" decal on the side and matching black alloy wheels. +05045.jpg The yellow Volkswagen Beetle Hatchback 2012 is parked at an angled front-left viewpoint in front of a building with large glass windows, displaying its iconic rounded shape, shiny chrome hubcaps, and bright headlights. +06819.jpg The 2012 Volkswagen Beetle Hatchback is shown in a glossy red finish, viewed from the rear three-quarter angle inside an indoor exhibition space, with distinctively rounded curves, large black rims, and the signature sloping roofline accentuated by subtle rear spoiler detailing. +01997.jpg The Volkswagen Beetle Hatchback 2012 is a glossy blue car viewed from a front-side angle, featuring distinctive rounded headlights and a two-door body, parked inside a showroom with a smooth gray floor and gray-and-red walls adorned with a red wall emblem. +07360.jpg The Volkswagen Beetle Hatchback 2012 is a glossy red vehicle with a distinctive rounded shape, shown from a front-side angle on a paved area, with a backdrop of lush, tree-covered hills and a cloudy sky, featuring rounded headlights and shiny, chrome-accented wheels. +04546.jpg The Volkswagen Beetle Hatchback 2012 is silver with a smooth, glossy finish, viewed from a rear three-quarter angle, driving along a road in a rural setting with autumnal trees and an expansive sky, featuring distinct round taillights and a sloping roofline. +02629.jpg A vibrant red Volkswagen Beetle Hatchback 2012, with a glossy finish, is captured from a front-side angle driving on a road, against a blurred backdrop of modern glass buildings and greenery, showcasing its classic round headlights and smooth curves. +01453.jpg The Volkswagen Beetle Hatchback 2012 is shown in a glossy black finish with a front-side view, highlighted against a gradient gray background, featuring distinct rounded headlights, sporty alloy wheels, and a prominent "TURBO" decal on its side. +07551.jpg A vibrant red Volkswagen Beetle Hatchback 2012 with a glossy finish is viewed from the front, set against a blurred natural landscape, showcasing its iconic round headlights and swept-back fenders. diff --git a/utils/area/descriptions/Car/generated_descriptions/Volkswagen_Golf_Hatchback_1991_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Volkswagen_Golf_Hatchback_1991_descriptions.txt new file mode 100644 index 0000000..e7f0a95 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Volkswagen_Golf_Hatchback_1991_descriptions.txt @@ -0,0 +1,20 @@ +00950.jpg The Volkswagen Golf Hatchback 1991 is a white car viewed from a rear-right angle, parked on a concrete driveway with trees and a house in the suburban background, featuring a roof rack and distinct taillights. +04661.jpg The lime green Volkswagen Golf Hatchback 1991 is viewed from the rear left side against a seaside backdrop, showcasing its boxy shape, distinctive taillights, and sleek, shiny metallic finish. +07866.jpg A low-resolution image of a 1991 Volkswagen Golf Hatchback reveals a dark gray body with a smooth texture, viewed from the front-left angle on a grassy field, distinguished by its classic GTI grille with red accents and sleek, sporty alloy wheels. +01860.jpg The red Volkswagen Golf Hatchback 1991 is viewed from the front-left angle, standing on a gravel surface beside a white building with an open garage door, featuring round headlights, a black grille, and visible wear on the paint. +00797.jpg The Volkswagen Golf Hatchback 1991 is seen in a low-resolution image from a front three-quarter angle, displaying a metallic gray color with a slightly matte texture, positioned on a cobblestone street with other vintage cars in the background, featuring dual circular headlights, a black grille with a red trim, and aftermarket multi-spoke rims. +04526.jpg The red Volkswagen Golf Hatchback 1991 features a front-side view showcasing its boxy design and black trim, set against a grassy background with trees and neighboring vehicles, characterized by classic circular headlights and a distinguishable angular rear. +03596.jpg The Volkswagen Golf Hatchback 1991 is a glossy dark blue with a slightly lowered stance, viewed from the front in a suburban driveway, featuring a bold grille with dual headlights and a clean, reflective hood surface that contrasts against the sunlit pavement and residential background. +02461.jpg The low-resolution image shows a Volkswagen Golf Hatchback 1991 from a front-side angle, featuring a red body with a slightly weathered texture, set against an urban backdrop with a fence and trees, highlighting its characteristic round headlights and compact two-door design. +00527.jpg The blue-gray Volkswagen Golf Hatchback 1991 is seen from a rear three-quarter view, featuring a matte finish with distinctive black and white wheels, racing decals on the side, and a blurred background of spectators and red fencing indicative of a racing event. +03579.jpg The Volkswagen Golf Hatchback 1991, viewed from the front-left angle on a light concrete surface, features a dark metallic gray color with a smooth texture, distinct rounded headlights, a slatted front grille with a VW emblem, and is set against a backdrop of corrugated metal walls. +02011.jpg The low-resolution image shows a red Volkswagen Golf Hatchback 1991 with a noticeable boxy design and black trim, viewed from the front-left angle, parked on a grassy patch with other vehicles partially visible in the background. +05528.jpg A dark blue Volkswagen Golf Hatchback 1991 is viewed from the front-left corner on a paved road, displaying its boxy design with distinct round headlights and some visible rust patches on the side, set against a lush, forested backdrop. +03003.jpg A red Volkswagen Golf Hatchback from 1991 is parked on grass, viewed from the driver's side, with black trim, distinctive alloy wheels, and surrounded by a lush, wooded environment. +01865.jpg A teal 1991 Volkswagen Golf Hatchback is viewed from the rear three-quarter angle with its flat, slightly reflective paint texture, parked on a wet road in a leafy area, featuring distinctive round tail lights and a boxy rear design. +04078.jpg The Volkswagen Golf Hatchback 1991 in the image appears silver with a somewhat matte texture, viewed from the front left corner against a coastal backdrop, featuring rounded headlights and distinctive black wheel arches. +01121.jpg The image shows a front-facing, dark-colored Volkswagen Golf Hatchback 1991 with prominent circular headlights and a red trim against a suburban driveway setting, featuring a brick house and an adjacent white van. +03430.jpg The red Volkswagen Golf Hatchback from 1991 sits in profile view on cobblestone pavement, featuring black trim at the bumpers and side skirts, with a classic boxy shape and parked near an urban street with low-rise buildings and other cars in the background. +00931.jpg The blue 1991 Volkswagen Golf Hatchback, viewed from the rear-left side, is parked on a street with Victorian-style brick houses, featuring two doors, simple wheel covers, and a distinct rear badge. +06343.jpg The Volkswagen Golf Hatchback 1991 is a red vehicle with a slightly glossy texture, viewed head-on surrounded by a tree-lined street with autumn leaves, featuring a noticeable front grille and GT badge. +07779.jpg The image shows a dark green Volkswagen Golf Hatchback 1991 viewed from the side in a sunlit brick-paved area, featuring silver alloy wheels and a simple, boxy silhouette, with a background of leafy greenery and a bare-chested person nearby. diff --git a/utils/area/descriptions/Car/generated_descriptions/Volkswagen_Golf_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Volkswagen_Golf_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..c697a09 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Volkswagen_Golf_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +01974.jpg The image shows a silver Volkswagen Golf Hatchback from 2012 with a smooth metallic finish, viewed from the side against a modern building backdrop, featuring distinctively large alloy wheels and a compact three-door configuration. +02959.jpg The Volkswagen Golf Hatchback 2012 displayed is a shiny white vehicle viewed from the front-right three-quarter angle, set against a gradient blue background, showcasing alloy wheels and sleek headlamps. +00442.jpg The Volkswagen Golf Hatchback 2012 is bright red with a smooth finish, viewed from a front-side angle, parked in a lot against a plain concrete wall, showcasing its iconic grille and rounded headlights with white alloy wheels. +06821.jpg A sleek, silver Volkswagen Golf Hatchback 2012 is seen from a front three-quarter view, featuring distinctive curved headlights and a smooth, metallic texture, set against an urban rooftop background with distant cityscape buildings. +01540.jpg A silver Volkswagen Golf Hatchback 2012 is viewed from the front three-quarter angle, highlighting its smooth, metallic texture and distinctive round headlights, with no visible background. +05931.jpg The Volkswagen Golf Hatchback 2012 appears in a metallic silver shade with a smooth texture, viewed from the front-left angle emphasizing its rounded headlights and fog lights, parked on an asphalt surface beside a beige wall with a clear blue sky and distant parked cars in the background. +03922.jpg The Volkswagen Golf Hatchback 2012 appears in a light blue color with a smooth texture, viewed from the front right angle on a coastal road, with its distinctive rounded headlights and grille set against a backdrop of greenery and rocks by the sea. +05766.jpg A white Volkswagen Golf Hatchback 2012 is viewed from the front, featuring a glossy finish, a prominent VW logo on the grille, and set against a neutral two-tone gray and white background. +04004.jpg A metallic gray Volkswagen Golf Hatchback 2012 is seen in a side profile on a raised platform, surrounded by a car dealership or service station environment with a few other vehicles and a canopy roof, featuring distinctive rear taillights and alloy wheels. +05043.jpg The image shows a red Volkswagen Golf Hatchback 2012 viewed from the front driver's side, parked at an outdoor dealership with a Volkswagen sign in the background, featuring smooth body lines and distinct circular headlights. +00250.jpg The Volkswagen Golf Hatchback 2012 appears in a metallic gray color with a smooth texture, viewed from the front-left angle, parked on a cracked asphalt lot with sparse trees in the background, and features distinct circular fog lights and a prominent front grille badge. +01408.jpg The Volkswagen Golf Hatchback 2012 appears in a side profile view with a dark metallic blue finish and distinct five-spoke alloy wheels, set against a backdrop of evenly spaced evergreen trees and an asphalt surface. +06104.jpg A metallic gray Volkswagen Golf Hatchback 2012 is viewed from a front-side angle, highlighting its smooth texture and five-spoke alloy wheels, set against a stark concrete urban environment. +05519.jpg The image shows a white Volkswagen Golf Hatchback 2012 with a smooth texture viewed from multiple angles, including front, rear, and side, set against a plain white background, highlighting its compact size, distinctive rounded headlights, and the signature Volkswagen emblem on the grille. +05679.jpg The Volkswagen Golf Hatchback 2012 is shown in a vivid blue color with a smooth texture, viewed from a rear-side angle on a racetrack, featuring prominent taillights and dual exhausts against a blurred natural background. +05848.jpg The Volkswagen Golf Hatchback 2012 is seen from a three-quarter front-right angle in a glossy white finish, parked on a sunlit asphalt surface beside a modern building with glass doors, surrounded by a few scattered trees and distant cars. +01144.jpg A red Volkswagen Golf Hatchback 2012 is presented in a front three-quarter view, highlighting its smooth, glossy paint and distinct compact shape against a simple white studio backdrop, with noticeable round headlights and a sleek front grille design. +05251.jpg The Volkswagen Golf Hatchback 2012 is a white car with a smooth, clean texture, viewed from the front-left angle, parked in an indoor garage with concrete walls and sparse natural light, featuring prominent headlights and a dark grille. +07989.jpg The Volkswagen Golf Hatchback 2012 appears in a glossy white color viewed from the front-right angle, parked on a paved area with a fence and greenery in the background, featuring prominent headlights and a distinct front grille. +05642.jpg The Volkswagen Golf Hatchback 2012 is a metallic gray vehicle viewed from a front-side angle with a reflective sheen under indoor lighting, set against a white-walled showroom with a wooden floor and featuring distinctive five-spoke alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions/Volvo_240_Sedan_1993_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Volvo_240_Sedan_1993_descriptions.txt new file mode 100644 index 0000000..e563648 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Volvo_240_Sedan_1993_descriptions.txt @@ -0,0 +1,20 @@ +05169.jpg The Volvo 240 Sedan 1993 is displayed in a matte beige hue viewed from a left-side profile on a suburban street, featuring its boxy design with black trim and distinctive silver hubcaps, set against a backdrop of residential brick houses and a clear sky. +07404.jpg The red Volvo 240 Sedan 1993 is captured from a front-side angled view on a rural road, with blurred green foliage and a yellow field in the background, featuring a distinct robust boxy shape and characteristic chrome grille. +02039.jpg The Volvo 240 Sedan 1993 is viewed from the front-left angle, featuring a dark metallic gray color with a smooth texture, surrounded by a lush green park with trees in the background, and showcases distinctive features like rectangular headlights, a boxy body shape, and classic multi-spoke alloy wheels. +03227.jpg This Volvo 240 Sedan 1993, viewed from the front left, features a deep burgundy exterior with a glossy finish, a distinctive boxy shape with chrome detailing around the windows, parked on a city street with other vehicles and a building in the background. +02344.jpg The Volvo 240 Sedan 1993 is captured from a three-quarter front and side view, showcasing a red body with a slightly faded texture, complemented by chrome accents and distinctive silver alloy wheels, set against a grassy garden with a light-colored building in the background. +03424.jpg The Volvo 240 Sedan 1993 in the image is a deep maroon, viewed from the front-left angle, contrasting with a rustic red wooden barn background, featuring distinctive black rims, a low front skirt, and a custom grille. +02067.jpg The Volvo 240 Sedan 1993 is depicted front-facing in a low-resolution image with a light silver exterior, positioned on grassy terrain beside a shed with distinctive rectangular headlights, a prominent grille with diagonal slash, and parked near barrels and a trailer. +02870.jpg The Volvo 240 Sedan 1993, captured from a rear-side angle, features a dark blue color with a slightly reflective texture, distinct boxy shape, and is parked in a sunlit outdoor setting with trees and a body of water in the background, highlighting its signature taillight design and classic chrome trim. +00025.jpg The Volvo 240 Sedan 1993, in a light silver color with a matte finish, is parked on a driveway in front of a garage, viewed from a front-left diagonal angle, with its boxy shape, square headlights, and characteristic black bumper prominently visible against a suburban house backdrop. +07633.jpg A blue Volvo 240 Sedan 1993 is pictured from a front-side angle, parked in a dealership lot with a building displaying signage and glass windows in the background; it features distinctive black trim on the bumper and rectangular headlights. +01431.jpg The 1993 Volvo 240 Sedan, seen from a three-quarter front left view, features a classic boxy shape and distinctively robust red paint with a matte texture, set against a natural lakeside backdrop with sparse trees, highlighting its vintage chrome grille and iconic horizontal headlights. +00285.jpg The image shows a blue Volvo 240 Sedan from 1993, viewed from the front-left side amid a busy parking lot, featuring rectangular headlights, a distinct boxy shape, and multi-spoke wheels. +01844.jpg The Volvo 240 Sedan 1993 is displayed in a low-resolution image captured from a front-side angle, revealing its boxy white exterior with black trim, parked on a paved lot near a lake with palm trees swaying in the background. +00426.jpg The Volvo 240 Sedan 1993 is a white-colored car with a boxy design, viewed from the front-right side on a suburban street, surrounded by lush greenery and classic houses, showcasing square headlights and a prominent front grille. +05120.jpg The Volvo 240 Sedan 1993 appears in a side profile view with a light, silvery-blue color and a slightly glossy texture, parked in a sunlit forest setting with tall trees and dappled sunlight creating a serene backdrop, while its boxy design and distinctive wheel arches stand out. +01814.jpg The 1993 Volvo 240 Sedan is viewed from a front-left angle, showcasing its red exterior with a boxy silhouette, distinctive square headlights, and parked on an urban street beside a faded building, a metal gate, and pale cement pavement. +05292.jpg A dark blue Volvo 240 Sedan from 1993 is depicted from a front three-quarter angle, featuring distinct rectangular headlights and a boxy shape, parked in an indoor setting with plain white walls in the background. +06127.jpg A metallic silver Volvo 240 Sedan from 1993 is parked in a lot with a front-side angle view, showcasing its boxy shape, roof rack, custom wheels, and distinctive yellow and blue-tinted headlights against a backdrop of open, grassy terrain with scattered trees and a road sign. +01908.jpg The low-resolution image shows a white Volvo 240 Sedan 1993 viewed from a front-side angle, featuring chrome trim and a boxy shape with distinctive rectangular headlights, positioned on a cobblestone street with a green hedge in the background. +03785.jpg The Volvo 240 Sedan 1993 appears black and glossy in color, viewed from a direct side profile amidst a leafy suburban setting with a wooden fence and house in the background, distinguished by its boxy shape and iconic circular hubcaps. diff --git a/utils/area/descriptions/Car/generated_descriptions/Volvo_C30_Hatchback_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Volvo_C30_Hatchback_2012_descriptions.txt new file mode 100644 index 0000000..dd76c71 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Volvo_C30_Hatchback_2012_descriptions.txt @@ -0,0 +1,20 @@ +03880.jpg The red Volvo C30 Hatchback 2012, viewed from the rear-left angle, displays a glossy finish with distinctive taillights, a slightly elevated spoiler, and is set against a stark white background. +03114.jpg The white Volvo C30 Hatchback 2012 is viewed from the rear with distinct red tail lights, dual exhaust outlets, and is situated on a road with a leafy background. +03224.jpg The image shows an orange Volvo C30 Hatchback 2012 with a sleek, compact design viewed from the side amidst a modern glass building background, featuring distinctive large rear taillights and silver wheel rims. +04976.jpg The Volvo C30 Hatchback 2012 is presented in a vibrant red-orange color with a sleek and smooth texture, viewed from the front-left angle against a background of a patterned black wall, and showcases distinctive features such as prominent headlamps, a characteristic grille, and alloy wheels. +01464.jpg The Volvo C30 Hatchback 2012 is shown in a three-quarter rear view, featuring a white body with a contrasting dark roof, distinctive vertical taillights, and set against a minimalist dark background. +07808.jpg The Volvo C30 Hatchback 2012 appears in a vibrant red color with a smooth finish, viewed from the side showcasing its sporty two-door design against a backdrop of elegant urban architecture, featuring sleek alloy wheels and distinctive tailgate with a rear spoiler. +00583.jpg The Volvo C30 Hatchback 2012 is seen from a rear three-quarter view, featuring a light silver color with smooth texture, distinctive curves in its hatchback design, and urban surroundings marked by blurred buildings and a road, with notable visible features such as the rear lights and Volvo emblem. +05890.jpg The Volvo C30 Hatchback 2012 is viewed from a rear angle, showcasing its vibrant red color, glossy finish, and distinctive three-door design with visible rear lamps, set against a blurred urban or roadway backdrop. +02262.jpg The white Volvo C30 Hatchback 2012, viewed from a rear three-quarter angle, features distinct red tail lights and a sporty roof spoiler, set against a clear blue sky and concrete rooftop parking area. +06111.jpg The Volvo C30 Hatchback 2012 in the image is a vibrant red with a glossy finish, viewed from the front-right angle beneath a covered driveway with palm trees and beige architecture in the background, featuring a distinctive black grille and sporty alloy wheels. +07441.jpg The Volvo C30 Hatchback 2012 appears in a clean, white finish with smooth texture, viewed from a rear three-quarter angle, set against a clear blue sky and rocky beach landscape, featuring distinctive vertical tail lights and a compact, sporty shape. +02401.jpg A silver Volvo C30 Hatchback 2012 is shown from a high rear angle against a plain white background, highlighting its distinctive rear window design, taillights, and glossy metallic finish. +03759.jpg The Volvo C30 Hatchback 2012 is shown in a vibrant orange color with a glossy finish from a front three-quarter view, depicted against a minimalistic gradient background, and features distinctive silver side mirrors and a sporty grille. +01046.jpg The Volvo C30 Hatchback 2012 appears in a bold red with a glossy finish, viewed from the front in an indoor showroom with a distinctive honeycomb grille and sleek headlights. +07373.jpg The orange Volvo C30 Hatchback 2012 is positioned at a three-quarter front view on a cobblestone street amidst a bustling urban environment, featuring distinctive alloy wheels and a sleek, compact body shape that stands out despite the low resolution. +06286.jpg A red Volvo C30 Hatchback 2012 is captured in motion from a front-side angle on a winding road lined with trees, featuring distinctively smooth curves and a sleek, modern design against a blurred natural landscape. +00326.jpg The Volvo C30 Hatchback 2012 in the image is a vibrant orange vehicle with a smooth, glossy texture, viewed from a rear three-quarter angle, parked on a city street, with distinct features such as a prominent rear spoiler, dual exhaust, and characteristic C-shaped taillights. +08071.jpg The Volvo C30 Hatchback 2012 is a vibrant red vehicle viewed from the rear-right angle, featuring a smooth, glossy finish against a rustic stone wall backdrop, with distinct sporty alloy wheels and a compact two-door design. +02989.jpg The Volvo C30 Hatchback 2012 appears in a crisp white color with smooth texture, shown from a direct rear view, against a plain white background, featuring distinctive vertical taillights and dual exhausts. +06935.jpg The Volvo C30 Hatchback 2012 is viewed from the side with the driver's door open, showcasing an orange color with a smooth texture, set against a minimal two-tone background of white and gray, highlighting its distinctive compact body and sleek, sporty design. diff --git a/utils/area/descriptions/Car/generated_descriptions/Volvo_XC90_SUV_2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/Volvo_XC90_SUV_2007_descriptions.txt new file mode 100644 index 0000000..91465b5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/Volvo_XC90_SUV_2007_descriptions.txt @@ -0,0 +1,20 @@ +00286.jpg The Volvo XC90 SUV 2007 appears in a metallic silver color with a smooth texture, viewed from the rear in a well-lit indoor showroom, showcasing distinctive vertical taillights and dual exhaust pipes. +05256.jpg The Volvo XC90 SUV 2007 appears in a metallic gray color with a glossy texture, viewed directly from the rear against a plain white background, featuring distinctive vertical taillights and a prominent rear bumper. +05012.jpg A silver Volvo XC90 SUV 2007 is parked in a dimly lit indoor garage, viewed from the front-left angle, displaying its signature grille, roof rails, and distinctive round headlights against a concrete background. +00952.jpg The low-resolution image depicts a silver Volvo XC90 SUV from 2007 with a matte finish, viewed from a front three-quarter angle, set against a plain indoor dealership environment with a distinctive black roof rack and five-spoke alloy wheels. +07609.jpg A black Volvo XC90 SUV 2007 is positioned at a three-quarter front view in a sunlit, paved area with a light industrial building in the background, showcasing its distinctive grille and silver alloy wheels. +01513.jpg A silver Volvo XC90 SUV 2007 is parked at an angle on a grassy area, surrounded by dense green foliage, featuring distinct alloy wheels, roof rails, and a prominent front grille. +01285.jpg The Volvo XC90 SUV 2007, viewed from a front three-quarter angle, features a sleek black exterior with chrome accents, set against an urban street background with trees, and displays distinctive five-spoke alloy wheels and a prominent grille with the Volvo emblem. +02332.jpg The 2007 Volvo XC90 SUV appears in a metallic silver color with a smooth texture, positioned in a three-quarters front view, parked outside a dealership with glass windows, featuring distinctive headlights and a prominent front grille. +02183.jpg A sleek black Volvo XC90 SUV 2007 is parked at an angle, showcasing its chrome grille and distinctive headlights against a backdrop of industrial-style metal paneling. +02565.jpg The Volvo XC90 SUV 2007 is captured from a front-facing viewpoint in a glossy, metallic brown color, set indoors on a dark tiled floor with a partially visible garage door in the background, showcasing distinct features such as its large grille and headlamps with a hint of reflective lighting. +01739.jpg The Volvo XC90 SUV 2007 appears in a metallic silver color with smooth texture, viewed from a front three-quarter angle on a road, against a blurred backdrop, featuring prominent headlights and a distinct grille. +02331.jpg The Volvo XC90 SUV 2007 is silver with a smooth texture, shown from a rear three-quarter view, parked on a brick surface outside an automotive showroom, featuring distinct vertical tail lights and chrome wheels. +04007.jpg A dark-colored Volvo XC90 SUV 2007 is seen from a front-side perspective with distinct chrome trim and headlights, parked on a pavement against a backdrop of a brick building and other cars. +07683.jpg The Volvo XC90 SUV 2007 appears in a front three-quarter view, showcasing its glossy black finish with a slightly curved hood, prominent grille, and silver roof rails, set against a car dealership backdrop under a clear sky. +01774.jpg A metallic gray Volvo XC90 SUV from 2007 is parked on gravel, viewed from a front-side angle, surrounded by lush green trees, with visible features like a prominent front grille and large alloy wheels. +00852.jpg The Volvo XC90 SUV 2007 appears in a metallic silver color with a smooth texture, viewed in a three-quarter front pose against a rocky and natural background, featuring distinct dual round headlights and a prominent front grille with visible roof rails and alloy wheels. +04076.jpg The image displays a silver Volvo XC90 SUV from 2007 viewed from the front-left, emphasizing its metallic finish, distinctive roof rails, and the industrial background which enhances its robust presence. +06013.jpg The Volvo XC90 SUV 2007 appears in a metallic bronze color with a smooth texture, viewed from a front-left angle in a park setting with palm trees in the background, featuring its distinctive grille and roof rails despite the low resolution. +05237.jpg The image shows a front-facing, silver Volvo XC90 SUV from 2007, with a sleek metallic finish and distinctive vertical grille bars, set against a neutral gray background. +01867.jpg A silver Volvo XC90 SUV 2007 with a smooth, metallic finish is shown from a frontal three-quarter angle, highlighting its robust grille, distinctively shaped headlights, and roof rails, set against a plain white background. diff --git a/utils/area/descriptions/Car/generated_descriptions/classnames.txt b/utils/area/descriptions/Car/generated_descriptions/classnames.txt new file mode 100644 index 0000000..06f4ca1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/classnames.txt @@ -0,0 +1,196 @@ +AM General Hummer SUV 2000 +Acura RL Sedan 2012 +Acura TL Sedan 2012 +Acura TL Type-S 2008 +Acura TSX Sedan 2012 +Acura Integra Type R 2001 +Acura ZDX Hatchback 2012 +Aston Martin V8 Vantage Convertible 2012 +Aston Martin V8 Vantage Coupe 2012 +Aston Martin Virage Convertible 2012 +Aston Martin Virage Coupe 2012 +Audi RS 4 Convertible 2008 +Audi A5 Coupe 2012 +Audi TTS Coupe 2012 +Audi R8 Coupe 2012 +Audi V8 Sedan 1994 +Audi 100 Sedan 1994 +Audi 100 Wagon 1994 +Audi TT Hatchback 2011 +Audi S6 Sedan 2011 +Audi S5 Convertible 2012 +Audi S5 Coupe 2012 +Audi S4 Sedan 2012 +Audi S4 Sedan 2007 +Audi TT RS Coupe 2012 +BMW ActiveHybrid 5 Sedan 2012 +BMW 1 Series Convertible 2012 +BMW 1 Series Coupe 2012 +BMW 3 Series Sedan 2012 +BMW 3 Series Wagon 2012 +BMW 6 Series Convertible 2007 +BMW X5 SUV 2007 +BMW X6 SUV 2012 +BMW M3 Coupe 2012 +BMW M5 Sedan 2010 +BMW M6 Convertible 2010 +BMW X3 SUV 2012 +BMW Z4 Convertible 2012 +Bentley Continental Supersports Conv. Convertible 2012 +Bentley Arnage Sedan 2009 +Bentley Mulsanne Sedan 2011 +Bentley Continental GT Coupe 2012 +Bentley Continental GT Coupe 2007 +Bentley Continental Flying Spur Sedan 2007 +Bugatti Veyron 16.4 Convertible 2009 +Bugatti Veyron 16.4 Coupe 2009 +Buick Regal GS 2012 +Buick Rainier SUV 2007 +Buick Verano Sedan 2012 +Buick Enclave SUV 2012 +Cadillac CTS-V Sedan 2012 +Cadillac SRX SUV 2012 +Cadillac Escalade EXT Crew Cab 2007 +Chevrolet Silverado 1500 Hybrid Crew Cab 2012 +Chevrolet Corvette Convertible 2012 +Chevrolet Corvette ZR1 2012 +Chevrolet Corvette Ron Fellows Edition Z06 2007 +Chevrolet Traverse SUV 2012 +Chevrolet Camaro Convertible 2012 +Chevrolet HHR SS 2010 +Chevrolet Impala Sedan 2007 +Chevrolet Tahoe Hybrid SUV 2012 +Chevrolet Sonic Sedan 2012 +Chevrolet Express Cargo Van 2007 +Chevrolet Avalanche Crew Cab 2012 +Chevrolet Cobalt SS 2010 +Chevrolet Malibu Hybrid Sedan 2010 +Chevrolet TrailBlazer SS 2009 +Chevrolet Silverado 2500HD Regular Cab 2012 +Chevrolet Silverado 1500 Classic Extended Cab 2007 +Chevrolet Express Van 2007 +Chevrolet Monte Carlo Coupe 2007 +Chevrolet Malibu Sedan 2007 +Chevrolet Silverado 1500 Extended Cab 2012 +Chevrolet Silverado 1500 Regular Cab 2012 +Chrysler Aspen SUV 2009 +Chrysler Sebring Convertible 2010 +Chrysler Town and Country Minivan 2012 +Chrysler 300 SRT-8 2010 +Chrysler Crossfire Convertible 2008 +Chrysler PT Cruiser Convertible 2008 +Daewoo Nubira Wagon 2002 +Dodge Caliber Wagon 2012 +Dodge Caliber Wagon 2007 +Dodge Caravan Minivan 1997 +Dodge Ram Pickup 3500 Crew Cab 2010 +Dodge Ram Pickup 3500 Quad Cab 2009 +Dodge Sprinter Cargo Van 2009 +Dodge Journey SUV 2012 +Dodge Dakota Crew Cab 2010 +Dodge Dakota Club Cab 2007 +Dodge Magnum Wagon 2008 +Dodge Challenger SRT8 2011 +Dodge Durango SUV 2012 +Dodge Durango SUV 2007 +Dodge Charger Sedan 2012 +Dodge Charger SRT-8 2009 +Eagle Talon Hatchback 1998 +FIAT 500 Abarth 2012 +FIAT 500 Convertible 2012 +Ferrari FF Coupe 2012 +Ferrari California Convertible 2012 +Ferrari 458 Italia Convertible 2012 +Ferrari 458 Italia Coupe 2012 +Fisker Karma Sedan 2012 +Ford F-450 Super Duty Crew Cab 2012 +Ford Mustang Convertible 2007 +Ford Freestar Minivan 2007 +Ford Expedition EL SUV 2009 +Ford Edge SUV 2012 +Ford Ranger SuperCab 2011 +Ford GT Coupe 2006 +Ford F-150 Regular Cab 2012 +Ford F-150 Regular Cab 2007 +Ford Focus Sedan 2007 +Ford E-Series Wagon Van 2012 +Ford Fiesta Sedan 2012 +GMC Terrain SUV 2012 +GMC Savana Van 2012 +GMC Yukon Hybrid SUV 2012 +GMC Acadia SUV 2012 +GMC Canyon Extended Cab 2012 +Geo Metro Convertible 1993 +HUMMER H3T Crew Cab 2010 +HUMMER H2 SUT Crew Cab 2009 +Honda Odyssey Minivan 2012 +Honda Odyssey Minivan 2007 +Honda Accord Coupe 2012 +Honda Accord Sedan 2012 +Hyundai Veloster Hatchback 2012 +Hyundai Santa Fe SUV 2012 +Hyundai Tucson SUV 2012 +Hyundai Veracruz SUV 2012 +Hyundai Sonata Hybrid Sedan 2012 +Hyundai Elantra Sedan 2007 +Hyundai Accent Sedan 2012 +Hyundai Genesis Sedan 2012 +Hyundai Sonata Sedan 2012 +Hyundai Elantra Touring Hatchback 2012 +Hyundai Azera Sedan 2012 +Infiniti G Coupe IPL 2012 +Infiniti QX56 SUV 2011 +Isuzu Ascender SUV 2008 +Jaguar XK XKR 2012 +Jeep Patriot SUV 2012 +Jeep Wrangler SUV 2012 +Jeep Liberty SUV 2012 +Jeep Grand Cherokee SUV 2012 +Jeep Compass SUV 2012 +Lamborghini Reventon Coupe 2008 +Lamborghini Aventador Coupe 2012 +Lamborghini Gallardo LP 570-4 Superleggera 2012 +Lamborghini Diablo Coupe 2001 +Land Rover Range Rover SUV 2012 +Land Rover LR2 SUV 2012 +Lincoln Town Car Sedan 2011 +MINI Cooper Roadster Convertible 2012 +Maybach Landaulet Convertible 2012 +Mazda Tribute SUV 2011 +McLaren MP4-12C Coupe 2012 +Mercedes-Benz 300-Class Convertible 1993 +Mercedes-Benz C-Class Sedan 2012 +Mercedes-Benz SL-Class Coupe 2009 +Mercedes-Benz E-Class Sedan 2012 +Mercedes-Benz S-Class Sedan 2012 +Mercedes-Benz Sprinter Van 2012 +Mitsubishi Lancer Sedan 2012 +Nissan Leaf Hatchback 2012 +Nissan NV Passenger Van 2012 +Nissan Juke Hatchback 2012 +Nissan 240SX Coupe 1998 +Plymouth Neon Coupe 1999 +Porsche Panamera Sedan 2012 +Ram C/V Cargo Van Minivan 2012 +Rolls-Royce Phantom Drophead Coupe Convertible 2012 +Rolls-Royce Ghost Sedan 2012 +Rolls-Royce Phantom Sedan 2012 +Scion xD Hatchback 2012 +Spyker C8 Convertible 2009 +Spyker C8 Coupe 2009 +Suzuki Aerio Sedan 2007 +Suzuki Kizashi Sedan 2012 +Suzuki SX4 Hatchback 2012 +Suzuki SX4 Sedan 2012 +Tesla Model S Sedan 2012 +Toyota Sequoia SUV 2012 +Toyota Camry Sedan 2012 +Toyota Corolla Sedan 2012 +Toyota 4Runner SUV 2012 +Volkswagen Golf Hatchback 2012 +Volkswagen Golf Hatchback 1991 +Volkswagen Beetle Hatchback 2012 +Volvo C30 Hatchback 2012 +Volvo 240 Sedan 1993 +Volvo XC90 SUV 2007 +smart fortwo Convertible 2012 \ No newline at end of file diff --git a/utils/area/descriptions/Car/generated_descriptions/smart_fortwo_Convertible_2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions/smart_fortwo_Convertible_2012_descriptions.txt new file mode 100644 index 0000000..ff4135d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions/smart_fortwo_Convertible_2012_descriptions.txt @@ -0,0 +1,20 @@ +03898.jpg The smart fortwo Convertible 2012 is shown in a rear three-quarter view in a metallic blue and silver color with a black retractable soft-top, parked on a gray asphalt surface against a backdrop of a red brick building and greenery, featuring distinct round tail lights and a UK license plate. +06870.jpg The 2012 smart fortwo Convertible is red with silver trim, viewed from the front passenger side at street level in a vibrant city environment, displaying its open-top design and compact build amid bustling surroundings and illuminated signage. +07500.jpg A red smart fortwo Convertible 2012 with a black soft-top is captured from the front-left angle, speeding along a road beside a blurred rocky background, featuring a compact design with silver accents and large headlights. +04970.jpg The Smart Fortwo Convertible 2012 is seen in a side profile with a vibrant red body and contrasting black accents, featuring silver alloy wheels and parked in a suburban driveway with a background of leafless trees and residential houses. +07202.jpg The smart fortwo Convertible 2012 is viewed from the side, featuring a silver body with contrasting black on the A-pillar and bumpers, orange-accented wheels, a partially open black soft-top roof, and a dark, gravelly industrial background. +05394.jpg Two toy-sized, silver and black smart fortwo Convertible 2012 models with red interiors are parked on a rough, textured stone surface, viewed from an elevated angle with grass in the background. +01081.jpg The black smart fortwo Convertible 2012 is viewed from the side, showcasing its compact, glossy body with a prominent roll bar, set against an outdoor backdrop featuring a road and trees. +07026.jpg The smart fortwo Convertible 2012, shown from an elevated rear angle, features a silver body with a black fabric convertible top partially open, situated in a bright, minimal concrete environment, highlighting its compact design and red taillights. +02054.jpg The smart fortwo Convertible 2012 is shown in a white color with a contrasting black and red interior, captured from an elevated rear-side angle, highlighting its compact design, open top, and distinctive urban road surface background. +06465.jpg The image shows a white smart fortwo Convertible 2012 with a black trim and open-roof design, viewed from the rear in a grassy roadside setting, featuring silver alloy wheels and a sleek, compact body style. +03781.jpg The smart fortwo Convertible 2012 is a silver car with a matte texture viewed from an elevated angle, featuring a black soft top retracted into its convertible position, set against a plain, light-colored concrete or pavement background, highlighting its compact, rounded body design. +05245.jpg The image shows a side view of a yellow smart fortwo Convertible 2012 with a black retractable roof, distinct black trim along the side, and silver wheels, set against a plain white background. +03276.jpg The smart fortwo Convertible 2012 is a compact, silver car with a smooth, metallic texture, viewed from the rear three-quarter angle, featuring a distinctive open-top design and visible black roof supports, set against a backdrop of modern, light-gray steps. +03341.jpg The smart fortwo Convertible 2012 is viewed from the rear-left, showcasing its metallic blue body with smooth texture, a retracted black convertible roof, and a distinctive urban backdrop featuring vertical lined patterns. +02737.jpg The smart fortwo Convertible 2012 is shown in a glossy black finish from a side view, parked on a hexagonal stone pavement with lush greenery and a red sign in the background, featuring a compact, rounded silhouette with a visible rear taillight and characteristic Tridion safety cell. +07895.jpg The image depicts a white Smart Fortwo Convertible 2012 with green accents, viewed from the side showcasing its open roof and electric charging cable, set against a plain white background highlighting its compact and eco-friendly design with visible "electric drive" branding on the side. +04876.jpg The smart fortwo Convertible 2012 appears as a black compact car with a silver safety cell, viewed from a rear-side angle, highlighting its open-top design with prominent taillights and placed against a plain, neutral background. +02961.jpg The smart fortwo Convertible 2012 is shown in a side view with a vibrant yellow body, contrasting silver trimmings along the doors and front bumper, a black soft-top roof, parked on a sunny street with a background of brick buildings and parked motorcycles. +04361.jpg The smart fortwo Convertible 2012 is white with a glossy finish, viewed from the side showcasing its compact design, against a marina backdrop with yachts and a person in casual attire nearby, highlighting its contrasting black retractable roof structure. +00222.jpg The image shows a red and black smart fortwo Convertible 2012 with its top down, viewed from the side, in an urban background with blurred pedestrians. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/AM General Hummer SUV 2000_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/AM General Hummer SUV 2000_descriptions.txt new file mode 100644 index 0000000..08dd29a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/AM General Hummer SUV 2000_descriptions.txt @@ -0,0 +1,3 @@ +07290.jpg A sandy beige AM General Hummer SUV 2000 is shown from a front-side angle, parked on grass with a person standing on the hood, featuring a distinctly boxy shape, wide front grille, and visible front guard rails against an industrial backdrop. +06052.jpg The SUV appears in a bright orange hue with a matte texture, viewed from a front-left angle on a grassy field, showcasing its broad grille, prominent black hood vent, and distinctive rounded lights, partially obscured by shadow from surrounding trees. +06174.jpg The SUV appears in a low-resolution image with a modified yellow color and a matte-like texture, viewed from a rear three-quarter angle showing its distinctive boxy shape and large wheels, with an urban background and minimal occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Acura Integra Type R 2001_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Acura Integra Type R 2001_descriptions.txt new file mode 100644 index 0000000..5cd3c79 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Acura Integra Type R 2001_descriptions.txt @@ -0,0 +1,3 @@ +00374.jpg The image shows a white Acura Integra Type R 2001 with a matte texture, viewed in a three-quarter rear pose, parked in front of a graffitied wall with no visible occlusions, showcasing its aerodynamic spoiler, bronze-colored wheels, and distinct tail light design. +07696.jpg The Acura Integra Type R 2001 appears in a vivid orange color with a glossy texture, viewed from a rear three-quarter angle showcasing its prominent rear spoiler and distinct taillights, with a background featuring a partial view of another vehicle. +06660.jpg The Acura Integra Type R 2001 appears in a bright neon green color with a smooth texture, viewed from the rear at an angle highlighting its large rear wing and dual round taillights, set against a suburban street lined with houses. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Acura RL Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Acura RL Sedan 2012_descriptions.txt new file mode 100644 index 0000000..b933958 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Acura RL Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +06839.jpg The vehicle appears in a light gray, almost metallic texture, viewed from a front-side angle with a clear view of the bridge and cityscape in the background, while distinctive features like the grille and headlights are visible without noticeable occlusion. +05930.jpg The Acura RL Sedan 2012 appears in a metallic grayish hue under adjustable showroom lighting from a front-side angle, showcasing its distinctive chrome grille and sleek body lines with minimal visibility of the indoor setting around it. +03011.jpg The Acura RL Sedan 2012 appears in a warm bronze color with a glossy texture, viewed from a front-left three-quarter angle, and is set against a blurred, light-filled background with strips of road and water, while displaying its distinctive sharp headlights and a prominent grille. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Acura TL Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Acura TL Sedan 2012_descriptions.txt new file mode 100644 index 0000000..f18d292 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Acura TL Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05967.jpg The Acura TL Sedan 2012 appears in a bright, augmented silver color with a textured finish, viewed from a front three-quarter angle, parked in an urban setting with obscured rear and reflective windows, highlighting its sharp angular headlights and distinctive front grille. +08005.jpg The Acura TL Sedan 2012 appears in a dark, possibly charcoal hue with a glossy texture, viewed from a front left three-quarter angle, set in a dimly lit indoor environment with a reflective floor and some occlusion from shadows on the lower body. +05434.jpg The Acura TL Sedan 2012 appears with a matte teal color in a rear three-quarter view on a rooftop with urban buildings in the background, featuring visible taillights and alloy wheels, with a clear sky above and minimal occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Acura TL Type-S 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Acura TL Type-S 2008_descriptions.txt new file mode 100644 index 0000000..9c3f2e3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Acura TL Type-S 2008_descriptions.txt @@ -0,0 +1,3 @@ +06302.jpg The Acura TL Type-S 2008 is depicted in a low-resolution, blue hue with a smooth texture, viewed from the rear three-quarter angle on a gray paved surface, highlighting its sleek body lines, sport wheels, and dual exhausts with no apparent occlusion. +07661.jpg The Acura TL Type-S 2008 appears in a muted grey tone with a matte texture, viewed from a front-left angle showcasing its distinct sharp headlamps and multi-spoke alloy wheels, with a cloudy dealership setting in the background and slight rain droplets visible on the surface. +03795.jpg The image shows a dark-colored Acura TL Type-S 2008 from a front-side angle, moving on a road with blurred greenery in the background, highlighting its sleek body and distinctive front grille while the lower resolution adds a subtle grainy texture. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Acura TSX Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Acura TSX Sedan 2012_descriptions.txt new file mode 100644 index 0000000..7a11973 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Acura TSX Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +03127.jpg The Acura TSX Sedan 2012 is shown in a low-resolution image with a metallic purple color due to visual augmentation, viewed from a front-left angle, surrounded by greenery and another car, with visible chrome accents on the grille and rims. +00631.jpg The Acura TSX Sedan 2012 in the image appears in a metallic silver color with reddish hues, captured from a front left three-quarter angle, parked on a dark road with grassy surroundings, featuring visible front grille design and sleek headlights indicative of the model despite the augmentation. +04392.jpg The Acura TSX Sedan 2012 is depicted in a metallic lavender hue with a glossy texture, viewed from a slightly elevated front-left angle showcasing its distinctive sharp headlights and five-spoke alloy wheels, set against a modern showroom environment with no significant occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Acura ZDX Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Acura ZDX Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..84961d8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Acura ZDX Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +00320.jpg The low-resolution image depicts an Acura ZDX Hatchback 2012 in an indoor showroom setting, featuring a glossy, chocolate-brown finish with a front three-quarter view emphasizing its distinct angular grille and sleek body lines, while the reflective tiled floor and surrounding vehicles partially obscure its wheels. +00912.jpg The visually augmented Acura ZDX Hatchback 2012 now appears in a bright, metallic silver color with a glossy texture, viewed from a front-right angle showcasing its distinctive sloping roofline and chrome-accented grille, set against an industrial backdrop with closed corrugated doors and a reflective wet ground that adds to its sleek appearance. +01706.jpg The Acura ZDX Hatchback 2012 appears in a deep, muted purple with a glossy texture, viewed from the front-left angle, set against a winding road background, emphasizing its sleek, aerodynamic shape and distinctive grille, though obscured slightly by surrounding vegetation. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin V8 Vantage Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin V8 Vantage Convertible 2012_descriptions.txt new file mode 100644 index 0000000..ff97c0e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin V8 Vantage Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +03589.jpg The Aston Martin V8 Vantage Convertible 2012 appears in a light silver hue with a smooth texture, photographed from a front-left angle with the top down, revealing intricate wheel spokes, a sleek grille, and set against a paved and landscaped background with no significant occlusions. +00208.jpg The Aston Martin V8 Vantage Convertible 2012 is displayed in a low-resolution image with an altered dark blue hue, viewed from a slight side angle, parked on a textured, concrete-like surface with urban skyscrapers in the blurred background, exhibiting its sleek low-profile body and distinctive alloy wheels while showing a beige interior with minimal occlusion. +04495.jpg The Aston Martin V8 Vantage Convertible 2012, seen from a rear three-quarter view, appears as a sleek black vehicle with a glossy texture, driving on a road bordered by green hedges, with its distinctive rear lights, dual exhausts, and open top evident despite low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin V8 Vantage Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin V8 Vantage Coupe 2012_descriptions.txt new file mode 100644 index 0000000..eec3d17 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin V8 Vantage Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +01680.jpg The Aston Martin V8 Vantage Coupe 2012 appears in a vivid orange color with a glossy texture, viewed from a front three-quarter perspective showing prominent side vents and sleek curves, set against a neutral backdrop with no significant occlusions. +03009.jpg The Aston Martin V8 Vantage Coupe 2012 appears in a glossy black color with a sleek texture, viewed from the front-left angle on a brick driveway, featuring distinct silver alloy wheels and unobstructed by any significant occlusions. +03659.jpg The Aston Martin V8 Vantage Coupe 2012 appears in a vibrant metallic orange hue, viewed from a side angle that highlights its sleek, curvaceous body and distinctive grille, set against a bright, minimalist background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin Virage Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin Virage Convertible 2012_descriptions.txt new file mode 100644 index 0000000..7c83d54 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin Virage Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +02594.jpg A white Aston Martin Virage Convertible 2012 is shown from a front three-quarter view with the top down on a sunlit concrete surface, highlighting its sleek lines and prominent grille, with minimal shadow cast on the ground. +00221.jpg The Aston Martin Virage Convertible 2012 appears in a bright white color with augmented high contrast, viewed from a front three-quarter angle with its red interior contrasting against a glossy texture, and idly parked in an indoor showroom setting with other vehicles visible in the background. +04386.jpg The Aston Martin Virage Convertible 2012 appears in a low-resolution image with a metallic lavender hue, photographed from a front three-quarter angle, showcasing its open-top and sleek lines, with the sunlit environment emphasizing its smooth texture and distinctive grille, while the wheels and rear are partially visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin Virage Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin Virage Coupe 2012_descriptions.txt new file mode 100644 index 0000000..e09b66c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Aston Martin Virage Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +04611.jpg The Aston Martin Virage Coupe 2012 appears in a vibrant, augmented red with a glossy texture, viewed from the driver's side at a side profile angle, set against a desolate desert road with mountains in the background, highlighting its sleek body and distinctive split grille, with no significant occlusions present. +03882.jpg The image shows a side-view of an Aston Martin Virage Coupe 2012 with a smooth, metallic bronze color, featuring sleek aerodynamic lines, distinctive alloy wheels, and a clean, minimalistic background with no occlusion. +04652.jpg The Aston Martin Virage Coupe 2012 appears in a vivid red-orange hue with a glossy texture, viewed from a rear three-quarter angle showing its sleek tail and distinctive rear lights, set against a winding road with rock-lined hills, with no significant occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi 100 Sedan 1994_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi 100 Sedan 1994_descriptions.txt new file mode 100644 index 0000000..b5bf959 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi 100 Sedan 1994_descriptions.txt @@ -0,0 +1,3 @@ +02350.jpg The augmented Audi 100 Sedan 1994 appears in a deep maroon color with a smooth texture, viewed from a rear-side angle, set against a clear sky with no apparent occlusions, highlighting its distinct boxy shape and signature rear lights. +04380.jpg The Audi 100 Sedan 1994 appears in a low-resolution image with a predominantly dark navy color and smooth texture, viewed from the front-left angle, featuring its characteristic rounded headlights and grille, with the left rear partially occluded by another vehicle, set against an industrial backdrop with buildings and parked cars. +04949.jpg The Audi 100 Sedan 1994 appears in an augmented bright orange color with a grainy texture, viewed from a front-left angle in a driveway surrounded by a stone wall and house, featuring distinct angular headlights and an Audi logo on its grille. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi 100 Wagon 1994_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi 100 Wagon 1994_descriptions.txt new file mode 100644 index 0000000..5e135bc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi 100 Wagon 1994_descriptions.txt @@ -0,0 +1,3 @@ +02505.jpg The Audi 100 Wagon 1994 appears in a dark green color with a matte texture, viewed from the side at a slight rear angle, set against a plain gray background with visible roof rails and a partially obscured rear light cluster. +00217.jpg The Audi 100 Wagon 1994 appears in a teal color with a glossy texture, viewed from a front-left angle, set in an industrial background, with its distinctive grille and alloy wheels visible but partially obscured by shadow along the lower body. +06871.jpg The Audi 100 Wagon 1994 appears in a subdued dark burgundy color with a smooth texture, viewed front-left with the right rear partially obscured by a red wooden fence and grassy backdrop, while distinctive silver alloy wheels and the Audi emblem on the grille are clearly visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi A5 Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi A5 Coupe 2012_descriptions.txt new file mode 100644 index 0000000..440a033 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi A5 Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +00041.jpg The low-resolution image shows a black Audi A5 Coupe 2012 with a glossy texture, viewed from the front displaying its distinctive grille and LED headlights, set against a background of parked cars and a brick wall with some minor reflections on its surface. +01372.jpg The Audi A5 Coupe 2012 appears in a sleek, metallic silver with a glossy texture, viewed from the front-left at a slight diagonal angle, with a blurred urban background suggesting motion, displaying its distinctively curved roofline, large grille, and striking LED headlights, though elements in the image have been digitally altered. +03756.jpg The low-resolution image shows a white Audi A5 Coupe 2012 with a matte texture, viewed from the front-right angle, parked in an urban environment with visible dealership buildings, featuring distinctively styled headlights and a prominent grille. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi R8 Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi R8 Coupe 2012_descriptions.txt new file mode 100644 index 0000000..cc6c2c4 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi R8 Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +03283.jpg The Audi R8 Coupe 2012 appears in a glossy, dark shade with a smooth texture, viewed from a rear 3/4 angle showing the taillights and dual exhausts prominently, in a brightly lit indoor setting with minimal occlusion, highlighting its aerodynamic form and distinctive rear grille pattern. +00053.jpg The Audi R8 Coupe 2012 appears in a bright yellow hue with a matte texture, viewed from a rear three-quarter angle in a parking lot, showcasing its distinctive side blades and taillights, partially obscured by a black car parked nearby. +05086.jpg The Audi R8 Coupe 2012 appears in a metallic copper color with a matte texture, viewed from a side profile emphasizing its sleek aerodynamic shape and distinctive side blades, set against a rural backdrop with greenery, while the low resolution maintains smooth yet subtle surface details. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi RS 4 Convertible 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi RS 4 Convertible 2008_descriptions.txt new file mode 100644 index 0000000..22a7183 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi RS 4 Convertible 2008_descriptions.txt @@ -0,0 +1,3 @@ +04379.jpg The car appears in a glossy black color with bold contrast highlighting its sleek lines, viewed from a rear three-quarter angle in a dimly lit environment, with distinctive orange taillights and a convertible top retracted, against an urban backdrop. +00578.jpg The Audi RS 4 Convertible 2008 appears in a motion-blurred rear three-quarter view, with a glossy black and cyan color scheme contrasting against a dynamic racetrack setting, showcasing its dual exhausts and accentuated rear lights. +06088.jpg The Audi RS 4 Convertible 2008 is shown in an orange hue with a smooth texture, viewed from the rear in a slight left turn on a road, with the environment blurred to convey motion, showcasing its distinctive taillights and dual exhaust without occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi S4 Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S4 Sedan 2007_descriptions.txt new file mode 100644 index 0000000..a717bf2 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S4 Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +02715.jpg The visually augmented Audi S4 Sedan 2007 appears in white with a glossy texture, viewed from the front at night under streetlights, showcasing its distinctive Audi grille, with bright headlight reflectors visible in a dimly lit urban environment. +05429.jpg The Audi S4 Sedan 2007 appears in a glossy metallic gray with a low viewpoint from the front passenger side, featuring distinctive alloy wheels and signature grille, situated in an indoor showroom environment with minimal obstructions. +02680.jpg The image shows a low-resolution blue Audi S4 Sedan 2007 in a showroom environment, viewed from a front-left angle with prominent chrome accents on the grille, clear headlights, and the upper portion of the car slightly cropped out. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi S4 Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S4 Sedan 2012_descriptions.txt new file mode 100644 index 0000000..3f89f3b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S4 Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +00934.jpg The Audi S4 Sedan 2012 appears in a reflective, dark metallic color with a glossy texture, viewed prominently from a frontal angle showing its distinctive grille and headlights, with partial sky and foliage reflections visible on its hood, surrounded by other parked vehicles. +05413.jpg The Audi S4 Sedan 2012 is presented at a low angle with a modified deep red color, featuring prominent silver alloy wheels and LED headlights, set against a muted snowy landscape that leaves the vehicle unobstructed and clearly visible. +02044.jpg The Audi S4 Sedan 2012 appears in a vibrant orange hue with a glossy texture, viewed at a front three-quarter angle on a slightly inclined road, showcasing its distinctive grille and prominent alloy wheels against a blurred sky backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi S5 Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S5 Convertible 2012_descriptions.txt new file mode 100644 index 0000000..409cf4b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S5 Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +02041.jpg The Audi S5 Convertible 2012 is depicted in a vibrant purple hue, viewed from a front three-quarter angle with the top down, set against a serene coastal background, highlighting its signature grille and alloy wheels while the sky and sea provide a soft color contrast. +06793.jpg The modified Audi S5 Convertible 2012 appears in a vibrant blue with a metallic sheen, viewed from a slight front-right angle, set against a minimalistic backdrop with silhouetted foliage, showcasing its open-top design and signature front grille. +04601.jpg The Audi S5 Convertible 2012 appears in a vivid blue color with a smooth texture, viewed from the front at a slight right angle with the top down, set against a blurred, motion-affected green and gray background, showcasing its distinctive grille and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi S5 Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S5 Coupe 2012_descriptions.txt new file mode 100644 index 0000000..d8f8687 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S5 Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +03936.jpg The Audi S5 Coupe 2012 appears in a glossy black finish from a front-left angle, with a brightly lit white background, showcasing its distinctive Audi grille and large silver alloy wheels, with minimal occlusion and the presence of some reflected light on the windshield. +06826.jpg The Audi S5 Coupe 2012 appears in a low-resolution image with a blue hue due to color augmentation, viewed from a front-side angle, with a cloudy sky in the background and distinctive angular headlights and alloy wheels standing out against the dark pavement. +04650.jpg The modified Audi S5 Coupe 2012 appears in a muted blue-gray hue with a matte texture, viewed in profile from the passenger side with the door open, showcasing its sleek silhouette and revealing the interior, surrounded by a blank or studio-like environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi S6 Sedan 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S6 Sedan 2011_descriptions.txt new file mode 100644 index 0000000..195b3e6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi S6 Sedan 2011_descriptions.txt @@ -0,0 +1,3 @@ +05122.jpg The Audi S6 Sedan 2011 appears in a front-facing view with a dark, augmented color that gives a glossy texture, featuring prominent dual front lights and an unobstructed grille with the Audi emblem clearly visible, set against a dimly lit urban parking environment with adjacent vehicles partly visible on the side. +00602.jpg The Audi S6 Sedan 2011 appears in a glossy black color with a textured surface, viewed head-on, showcasing its distinctive chrome grille and LED headlights, devoid of any visible occlusion, against a plain white background. +04696.jpg The Audi S6 Sedan 2011 appears in a reflective black finish with a side-front viewpoint, showcasing the iconic Audi grille and alloy wheels, parked beside a brick building with a clear blue sky and a row of windows on the passenger's side. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi TT Hatchback 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi TT Hatchback 2011_descriptions.txt new file mode 100644 index 0000000..c83688e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi TT Hatchback 2011_descriptions.txt @@ -0,0 +1,3 @@ +04359.jpg The Audi TT Hatchback 2011 is presented in a bright white color with a glossy texture, viewed from a front-side angle, situated on a paved street with a wire fence in the background, featuring prominent silver rims and smooth, curved design lines. +02130.jpg Viewed from a front three-quarter angle, the Audi TT Hatchback 2011 appears with a glossy black exterior altered by high contrast, parked on a light-colored road with blurred green scenery, prominently featuring its distinct grille and sleek body lines. +04944.jpg The Audi TT Hatchback 2011 appears in a bright white color with a glossy finish, viewed from a left-front angle traveling on a blurred road setting under trees, clearly showing its distinctive front grille and sleek, aerodynamic shape while partially occluding the rear due to the motion blur. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi TT RS Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi TT RS Coupe 2012_descriptions.txt new file mode 100644 index 0000000..fd54cc5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi TT RS Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +05075.jpg The Audi TT RS Coupe 2012 appears in a vibrant orange color with a glossy texture, viewed from the front-left angle while speeding on a road lined with blurred greenery, displaying distinctive front grille and aggressive headlight design without any notable occlusion. +03830.jpg The "Audi TT RS Coupe 2012" appears in a vibrant pink color with a textured sheen, viewed head-on displaying its distinct hexagonal grille, in a showroom setting with blurred human figures in the background. +04475.jpg The low-resolution image shows a pink Audi TT RS Coupe 2012 from a rear viewpoint on an open road, with a distinctive rear spoiler and black rims, surrounded by a tree-lined highway under a clear blue sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi TTS Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi TTS Coupe 2012_descriptions.txt new file mode 100644 index 0000000..a2d125d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi TTS Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +01085.jpg The Audi TTS Coupe 2012 appears in a glossy black finish with a reflective texture, captured from a low-angle front three-quarter view as it speeds along a blurred city street with no visible occlusions, highlighting its sleek silhouette and iconic grille. +03750.jpg The Audi TTS Coupe 2012 appears in a glossy dark color, viewed from the front-right angle in an urban environment, with distinctive silver alloy wheels and subtle body lines accentuated by reflections, partially obstructed by nearby cars. +04753.jpg The Audi TTS Coupe 2012, viewed from a front-right angle on a brick driveway, appears in a teal hue due to color alteration, with its distinctive grille pattern and headlights visible despite the mirrored orientation and low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Audi V8 Sedan 1994_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Audi V8 Sedan 1994_descriptions.txt new file mode 100644 index 0000000..5672171 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Audi V8 Sedan 1994_descriptions.txt @@ -0,0 +1,3 @@ +00975.jpg The Audi V8 Sedan 1994 appears in a deep blue color with a slightly matte texture, viewed from a front-side angle on a snowy landscape, with distinct oval headlights and a silver grille, partially obscured by a reflection on the windshield. +00239.jpg The image shows a low-resolution Audi V8 Sedan 1994 in a glossy maroon color with a front three-quarter view, featuring a distinctive grille with the Audi logo, on a suburban street with slight occlusion from parked cars in the background. +02656.jpg The low-resolution image depicts a silver-gray Audi V8 Sedan 1994 with a glossy texture, positioned in a slight front-left angle on a gravel driveway, showing clear front grille and headlights, with partially obscured rear due to the surrounding white picket fence and trees. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW 1 Series Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 1 Series Convertible 2012_descriptions.txt new file mode 100644 index 0000000..931c725 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 1 Series Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +03457.jpg The BMW 1 Series Convertible 2012 is visually altered to a metallic blue color with a smooth texture, viewed from a front-side angle showing off its distinct convertible roof and sporty profile, set against a simple outdoor backdrop with plants nearby, but partially occluded by digital artifacts near the edges. +01663.jpg The augmented BMW 1 Series Convertible 2012 appears in a bright blue color with a sleek, glossy texture viewed from a front-side angle, prominently displaying its open top and shiny alloy wheels, set against a background of a striped metal wall and asphalt surface, with no significant occlusion. +06703.jpg The image depicts a low-resolution BMW 1 Series Convertible 2012 in a glossy, muted red-orange color, viewed from a three-quarter front perspective with the top down, showcasing its distinctively shaped headlights and silver alloy wheels against a plain, minimalistic background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW 1 Series Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 1 Series Coupe 2012_descriptions.txt new file mode 100644 index 0000000..9a41ba3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 1 Series Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +07031.jpg The vehicle appears in a reddish hue with a smooth texture, viewed from the side showcasing its sleek coupe profile, situated in a mountainous landscape with no significant occlusion. +03665.jpg The image shows a pink BMW 1 Series Coupe 2012 with a shiny texture viewed from the left side against a mountainous background, highlighting its distinctive, compact shape and smooth contours with no visible occlusions. +06387.jpg The visually augmented BMW 1 Series Coupe 2012 appears in a vibrant orange hue with a glossy texture, seen from a side view at an angle as it drives on a clear road beneath a slightly cloudy sky, with distinct kidney grilles and sleek headlamp design visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW 3 Series Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 3 Series Sedan 2012_descriptions.txt new file mode 100644 index 0000000..a5cd9c4 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 3 Series Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05344.jpg The image shows three BMW 3 Series Sedans from an elevated angle, with each car parked side by side on a gray asphalt surface intersected by bright pink lines; the cars display altered colors of dark green, magenta, and maroon with visible features including their sleek body shapes, signature kidney grilles, and alloy wheels, while the magenta and maroon cars are positioned slightly head-on and the green car is parked at a diagonal with its side and rear visible. +01624.jpg The BMW 3 Series Sedan 2012 is visually augmented in a bright magenta color with a glossy texture, viewed from a front-side angle showcasing its sleek, curved hood and recognizable kidney grille, parked on a brick surface next to a reflective glass building and stairs with some vegetation in the background. +06879.jpg The BMW 3 Series Sedan 2012, viewed from the side, displays a metallic orange hue with smooth, reflective texture, clear visibility of its sporty alloy wheels, distinct kidney grille, and sleek body lines, set against a blurred background, and partially occluded by a dark railing at the bottom. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW 3 Series Wagon 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 3 Series Wagon 2012_descriptions.txt new file mode 100644 index 0000000..2ba721c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 3 Series Wagon 2012_descriptions.txt @@ -0,0 +1,3 @@ +04029.jpg The BMW 3 Series Wagon 2012 appears with a muted gray hue and a smooth texture, shown from a side view at a slight downward angle along an ocean backdrop, featuring distinctive elongated taillights and roof rails with part of its side covered by large text graphics. +03010.jpg The BMW 3 Series Wagon 2012 appears in a matte white color with a side profile view against a plain gray wall, showcasing its characteristic elongated body and roof rails, with minor shadow occlusion beneath. +00153.jpg The BMW 3 Series Wagon 2012 appears in a deep blue shade with a side profile view, showcasing its elongated body and five-spoke alloy wheels, set against an outdoor environment with a clear sky and modern architecture. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW 6 Series Convertible 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 6 Series Convertible 2007_descriptions.txt new file mode 100644 index 0000000..197c7b8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW 6 Series Convertible 2007_descriptions.txt @@ -0,0 +1,3 @@ +02029.jpg The car appears in a bright white color with a glossy texture, viewed from a front-left angle in a parking lot environment, featuring distinctive large alloy wheels, and a black soft top, with parts of another car visible nearby causing slight occlusion. +01719.jpg The BMW 6 Series Convertible 2007 appears in a grayish tone with a smooth texture, viewed from a low front-side angle, parked on a paved surface surrounded by greenery and trees, with its distinctive kidney grille and large alloy wheels unobstructed. +06299.jpg The BMW 6 Series Convertible 2007 appears in a dark gray color with a smooth, glossy texture viewed from the rear left, showing its distinctive curved tail, partially visible convertible roof, and parked against a plain gray wall with no significant occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW ActiveHybrid 5 Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW ActiveHybrid 5 Sedan 2012_descriptions.txt new file mode 100644 index 0000000..00a85d5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW ActiveHybrid 5 Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01841.jpg The BMW ActiveHybrid 5 Sedan 2012, viewed from a side angle, appears in a muted teal color with a smooth texture, featuring five-spoke alloy wheels, minimalistic door handles, and tinted windows, against a backdrop of blurred greenery and rocks hinting at motion, with no significant occlusions. +01512.jpg The BMW ActiveHybrid 5 Sedan 2012 appears in a dark metallic blue with its rear and right side clearly visible, captured at an angle from the back-left against a scenic background, with distinctive features like the dual exhausts and Hybrid 5 badging, while partially obscured features like the front grille are not in view. +01868.jpg A silver-hued BMW ActiveHybrid 5 Sedan 2012 is seen from a front three-quarter view, driving across a bridge with a blurred urban backdrop, featuring distinctive LED headlights, a kidney grille, and polished metallic texture, unobstructed by any occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW M3 Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW M3 Coupe 2012_descriptions.txt new file mode 100644 index 0000000..e543ee7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW M3 Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +01993.jpg The visually augmented BMW M3 Coupe 2012 is presented in a bright orange color with a metallic texture, viewed from a front-side angle with the background showcasing a mountainous landscape and featuring prominent black alloy wheels and a clearly visible front grille. +00546.jpg The BMW M3 Coupe 2012 appears in a glossy white with a black roof, viewed from the front-left angle, parked on a street with a glass building in the background, showcasing its sleek body lines, large front grille, and silver alloy wheels. +01065.jpg The BMW M3 Coupe 2012 appears in a muted purple hue, viewed from a rear three-quarter angle, parked on a stone pavement by a serene lake with mountainous background, featuring visible dual exhausts and distinctive tail lights with a blurred landscape under a twilight sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW M5 Sedan 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW M5 Sedan 2010_descriptions.txt new file mode 100644 index 0000000..7dd2691 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW M5 Sedan 2010_descriptions.txt @@ -0,0 +1,3 @@ +03951.jpg The BMW M5 Sedan 2010 appears in a metallic gray shade from a rear three-quarter view, showcasing prominent taillights and dual exhaust pipes, set against a racing track background with red and white barriers, with no significant occlusions. +00792.jpg The BMW M5 Sedan 2010 is captured from a low frontal angle, showcasing a silver color with a shiny metallic texture, set against a blurred mountain road backdrop, with its distinctive kidney grille and circular headlights clearly visible without any occlusion. +01582.jpg The BMW M5 Sedan 2010 is depicted in a dark teal hue with a smooth, glossy texture, viewed from a front three-quarter angle with slight left orientation, positioned on a gravel surface alongside a stone block wall, showcasing its signature kidney grille and five-spoke alloy wheels unobstructed and clearly visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW M6 Convertible 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW M6 Convertible 2010_descriptions.txt new file mode 100644 index 0000000..71a36d3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW M6 Convertible 2010_descriptions.txt @@ -0,0 +1,3 @@ +06226.jpg The BMW M6 Convertible 2010 appears in a muted gray color with a matte texture, captured in a three-quarter front view with a coastal backdrop, displaying its characteristic wide grille and angular headlights, with its soft top down and partially obscured by a shadow cast from the hilly background. +03066.jpg The BMW M6 Convertible 2010, viewed from a rear-side angle, appears in a silver or light gray hue with a smooth glossy texture, featuring its distinct quad exhausts and BMW emblem, set against an urban environment with buildings in the background and an ambulance nearby, while the back portion of the vehicle is visually clear without significant occlusion. +00022.jpg The image shows a low-resolution BMW M6 Convertible 2010 in a dark blue color with visible textures featuring aerodynamic contours, viewed from a rear three-quarter angle with the top down, highlighting the car's distinctive alloy wheels and rear lights, set against a minimalistic white background with slight shadowing. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW X3 SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW X3 SUV 2012_descriptions.txt new file mode 100644 index 0000000..c0a8f25 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW X3 SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +08082.jpg The BMW X3 SUV 2012 appears in a metallic beige color with darker accents, viewed from a front-side angle, showcasing its distinctive kidney grille and rounded headlights, set against a backdrop of abstract blue and white patterns on large screens. +02336.jpg The BMW X3 SUV 2012 appears in an artificially brightened and desaturated silver color, viewed from a side angle on a wet urban street with blurred background and colorful umbrellas, highlighting its distinctive kidney grille and sporty stance. +04973.jpg The BMW X3 SUV 2012 appears in a vibrant purple color with a high gloss finish and is viewed from the front-left angle on a winding road, set against a blurred natural backdrop, while its distinctive kidney grille and angular headlights are clearly visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW X5 SUV 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW X5 SUV 2007_descriptions.txt new file mode 100644 index 0000000..cbdde22 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW X5 SUV 2007_descriptions.txt @@ -0,0 +1,3 @@ +06252.jpg The BMW X5 SUV 2007 appears in a muted gray tone with a slight matte texture, viewed from a front three-quarter angle with its distinct kidney grille and round headlights clearly visible, set against a suburban backdrop with part of the right side slightly shadowed. +03617.jpg The BMW X5 SUV 2007 appears in a side profile view with a muted gray color and matte texture, parked on a gray pavement with a black and white striped building behind it, featuring distinctively rounded wheel arches and a clear sight of its five-spoke alloy wheels. +07263.jpg The BMW X5 SUV 2007 is depicted in a low-resolution image showing a glossy dark color, possibly augmented, with a frontal viewpoint highlighting its distinctive chrome kidney grille and large headlights, set against a paved environment with a fence background, though partly obscured by shadows and enhanced reflections. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW X6 SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW X6 SUV 2012_descriptions.txt new file mode 100644 index 0000000..9c6ab68 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW X6 SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02999.jpg The BMW X6 SUV 2012 appears in a low-resolution image with a glossy, augmented copper-like color, viewed from a side angle with its distinctive sloping rear roofline and sharp crease along the side, set against a dark background highlighting its sleek silhouette and large alloy wheels. +01990.jpg The BMW X6 SUV 2012 appears in a vibrant reddish-orange hue with a glossy texture, viewed from a front-left angle, with visible silver wheels and kidney grille, set against a backdrop of a retro-style building featuring a teal roof and an outdoor billboard, with no significant occlusion affecting its features. +02975.jpg The image shows a white BMW X6 SUV from a rear-side angle, with a slightly tilted orientation, positioned on a paved road against a blurred natural background, highlighting its distinct taillights, curved roofline, and silver rims. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/BMW Z4 Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/BMW Z4 Convertible 2012_descriptions.txt new file mode 100644 index 0000000..f45bd3b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/BMW Z4 Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +07812.jpg The BMW Z4 Convertible 2012 is viewed from the rear showing a smooth, white exterior with visible taillight contours, set against an asphalt surface in a parking area with other vehicles lightly visible in the background. +00716.jpg The BMW Z4 Convertible 2012 appears in a dark, glossy color, viewed from a front-left angle under a white tent with the top down, featuring distinctive kidney grilles and silver alloy wheels partially occluded by the tent structure. +01994.jpg The image shows a bright red BMW Z4 Convertible 2012 from a front-side view, emphasizing its sleek curved body lines, prominent kidney grille, and shiny silver alloy wheels against a blurred outdoor background with greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Arnage Sedan 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Arnage Sedan 2009_descriptions.txt new file mode 100644 index 0000000..8397baa --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Arnage Sedan 2009_descriptions.txt @@ -0,0 +1,3 @@ +05648.jpg The Bentley Arnage Sedan 2009 appears in a metallic lavender hue with a glossy texture, viewed from a front three-quarter angle in an indoor showroom setting, with its distinctive mesh grille and circular headlights prominently displayed; the environment reflects a tiled floor and glass partition, highlighting the luxurious and sleek body lines. +00168.jpg The Bentley Arnage Sedan 2009 appears in a high-contrast, altered color resembling a rich, glossy blue-black finish, viewed from the rear-left three-quarters with visible dual exhausts beneath the taillights, clear reflections on its polished surface, and a light, urban environment partially occluding the lower body near the rear tire. +01352.jpg The Bentley Arnage Sedan 2009 appears in a dark, glossy color with a smooth texture, viewed from a rear three-quarter angle, emphasizing its elegant silhouette with minimal environmental occlusion and distinctive rear lights and chrome accents. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental Flying Spur Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental Flying Spur Sedan 2007_descriptions.txt new file mode 100644 index 0000000..e3c8072 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental Flying Spur Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +06369.jpg The Bentley Continental Flying Spur Sedan 2007 appears with a modified metallic silver-blue hue and is viewed from a front-side angle, positioned in a stark, minimalist outdoor setting with a light-colored wall, showcasing its distinctive rounded headlights and chrome grille. +01857.jpg The Bentley Continental Flying Spur Sedan 2007 appears in a low-resolution image with a metallic gray finish, viewed from a front three-quarter angle, highlighted against a bright setting with a reflection on its shiny chrome wheels, parked near a glass building with distinctive Bentley front grilles and round headlights visible. +05779.jpg The Bentley Continental Flying Spur Sedan 2007 appears in a cool-toned black with a smooth, glossy texture viewed from the front-passenger side angle, showing prominent dual circular headlights and a distinct chrome mesh grille, set against a sparsely populated, palm tree-lined background with some other cars nearby. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental GT Coupe 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental GT Coupe 2007_descriptions.txt new file mode 100644 index 0000000..38bd7ca --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental GT Coupe 2007_descriptions.txt @@ -0,0 +1,3 @@ +03975.jpg The Bentley Continental GT Coupe 2007 appears in a low-resolution image with a bluish-silver hue, viewed from the side in an outdoor setting with shadows suggesting a sunny day, highlighting its sleek coupe design with prominent wheel arches, smooth curves, and partially obscured by some plants in the background. +01130.jpg The car appears to be a silver Bentley Continental GT Coupe 2007 viewed from the front-left side, displaying large circular headlights, distinctive grille, and sleek curves, set against a sunny outdoor backdrop with palm trees and a building facade. +03655.jpg A low-resolution image shows a Bentley Continental GT Coupe 2007 with a visually augmented dark green color and reflective texture, positioned at a three-quarter front view, with a vibrant blue background and a chain-link fence, highlighting its distinctive grille and circular headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental GT Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental GT Coupe 2012_descriptions.txt new file mode 100644 index 0000000..bc33f11 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental GT Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +06005.jpg The Bentley Continental GT Coupe 2012 appears in a vibrant blue color with a glossy texture, viewed from a front-side angle with visible chrome accents, set against an urban backdrop of glass buildings and partially obscured by shadows on the left wheel. +00117.jpg The Bentley Continental GT Coupe 2012 appears in a vibrant red color with a glossy texture, viewed from the front left angle, featuring distinctive large twin headlights and a prominent grille, set against a dynamic blurred background with no occlusions. +04126.jpg The Bentley Continental GT Coupe 2012 appears in a muted gray color with a satin texture, viewed from a three-quarter front-right angle, situated in an urban environment with partial occlusion from a tree and nearby stone pillars, with its iconic mesh grille and twin circular headlights clearly visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental Supersports Conv. Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental Supersports Conv. Convertible 2012_descriptions.txt new file mode 100644 index 0000000..519e422 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Continental Supersports Conv. Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +06653.jpg The Bentley Continental Supersports Convertible 2012 appears in a vivid red with a smooth texture, viewed from an elevated rear-side angle, highlighting its black wheels and open roof, set against a gravelly foreground with minor dust along the lower body. +01916.jpg The Bentley Continental Supersports Convertible 2012 appears in a pale, possibly augmented color with a smooth texture, viewed in a rear three-quarter pose against a backdrop of an indoor crowd, showcasing its glossy black wheels and distinctive elongated tail lights, with no visible occlusion. +06006.jpg The Bentley Continental Supersports Convertible 2012 is presented in a light yellow hue with a smooth texture, viewed from a front-side angle, set against a backdrop featuring a checkered banner and bystanders under trees, with distinctive black wheels and an open roof enhancing its sporty profile. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Mulsanne Sedan 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Mulsanne Sedan 2011_descriptions.txt new file mode 100644 index 0000000..15c8395 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Bentley Mulsanne Sedan 2011_descriptions.txt @@ -0,0 +1,3 @@ +07433.jpg The Bentley Mulsanne Sedan 2011 appears in a metallic silver color with a glossy texture, captured from a front-angle viewpoint on a slightly inclined road, with its distinctive round headlights and mesh grille prominently visible against a blurred, grassy background, showing no signs of occlusion. +04783.jpg The Bentley Mulsanne Sedan 2011 appears in a muted teal color with a matte finish, viewed from a slightly elevated side angle with its distinctive large chrome grille and round headlights prominent, set against a moody mountainous landscape under an overcast sky. +05763.jpg The Bentley Mulsanne Sedan 2011 appears in a blurred, desaturated gray tone, viewed from a front-side angle in a dynamic, motion-filled outdoor setting with surrounding trees, highlighting its distinctive grille and elongated body lines despite augmentation effects. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Bugatti Veyron 16.4 Convertible 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Bugatti Veyron 16.4 Convertible 2009_descriptions.txt new file mode 100644 index 0000000..902e472 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Bugatti Veyron 16.4 Convertible 2009_descriptions.txt @@ -0,0 +1,3 @@ +07451.jpg The Bugatti Veyron 16.4 Convertible 2009 appears in a glossy white color with a low front-facing viewpoint, prominently displaying its signature horseshoe grille and sleek aerodynamic contours as it speeds down a clear road lined with lush greenery. +01077.jpg The Bugatti Veyron 16.4 Convertible 2009 appears in a sleek metallic silver color with a smooth texture, viewed from a left side profile against a lakeside backdrop, featuring silver-spoked rims, an open roof with tan leather interior, and no visible occlusion. +01126.jpg The Bugatti Veyron 16.4 Convertible 2009 appears in a bright white color with a glossy texture, viewed from a front three-quarter angle with overcast skies in the background, showcasing its distinctive rounded grille and sleek curves, unobstructed by any occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Bugatti Veyron 16.4 Coupe 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Bugatti Veyron 16.4 Coupe 2009_descriptions.txt new file mode 100644 index 0000000..788bdc4 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Bugatti Veyron 16.4 Coupe 2009_descriptions.txt @@ -0,0 +1,3 @@ +02970.jpg The Bugatti Veyron 16.4 Coupe 2009 appears in a vivid, augmented red and black color scheme under bright daylight, seen from a front three-quarter view, with a distinctive glossy finish, large wheel arches, and partially obscured by another vehicle and trees in the background. +06155.jpg The Bugatti Veyron 16.4 Coupe 2009 appears in an electric blue color with a matte texture, viewed from a front three-quarter angle with bright exhibit lighting reflecting on its sleek body and minimal occlusion at the rear. +02784.jpg The Bugatti Veyron 16.4 Coupe 2009 appears in a low-resolution image with a striking metallic red and black color scheme, viewed from a front-side angle emphasizing its aerodynamic design, distinctive horseshoe grille, and exposed rear wheels, set against a plain indoor backdrop with no visible occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Buick Enclave SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Buick Enclave SUV 2012_descriptions.txt new file mode 100644 index 0000000..f430c85 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Buick Enclave SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +05605.jpg The Buick Enclave SUV 2012 is visually depicted in a side profile with a prominent glossy white color, parked on a textured asphalt surface in front of a plain light gray wall, showcasing reflective chrome wheels and tinted windows, with no significant occlusion present. +02606.jpg The image shows a white Buick Enclave SUV 2012 viewed from the front-left side, parked on a wet asphalt surface with a visible showroom in the background, characterized by its smooth, rounded body and prominent chrome-accented grille and wheels. +00177.jpg The SUV appears in a glossy bronze color, viewed from the front-left at a slight angle, showcasing its prominent grille and chrome-trimmed headlights against a modern urban backdrop with warm lighting and large vertical structures. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Buick Rainier SUV 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Buick Rainier SUV 2007_descriptions.txt new file mode 100644 index 0000000..b8f695f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Buick Rainier SUV 2007_descriptions.txt @@ -0,0 +1,3 @@ +01103.jpg The Buick Rainier SUV 2007 appears in a bright white color with a glossy texture, viewed from a front-left angle on grass with surrounding vehicles, showcasing its distinctive chrome grille and prominent wheel arches with minimal occlusion. +04767.jpg The Buick Rainier SUV 2007 appears in a low-resolution photo with a glowing pinkish-brown color and a metallic texture, viewed from the front left three-quarters angle in a parking lot, showing chrome wheels, a prominent grille, and a smooth, rounded body design. +03923.jpg The image depicts a low-resolution view of a Buick Rainier SUV 2007 in a vibrant purple color with a glossy texture, viewed from a front three-quarter angle in an outdoor setting, showing prominent chrome accents on the grille and wheels, with visible darker-tinted windows and a slight occlusion from foreground shadows. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Buick Regal GS 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Buick Regal GS 2012_descriptions.txt new file mode 100644 index 0000000..2afc011 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Buick Regal GS 2012_descriptions.txt @@ -0,0 +1,3 @@ +00319.jpg The Buick Regal GS 2012 appears in a sleek metallic silver color with a glossy texture, viewed from a front left angle showing its prominent grille and headlight design, set against a simple dark background with no visible occlusions. +07236.jpg The car appears in a glossy silver tone with a frontal three-quarter view, highlighting the distinctive grille design and sleek headlights while parked in a residential driveway surrounded by greenery and partially obscured by shadows. +07233.jpg A silver Buick Regal GS 2012 is captured in a dynamic left-side view while cornering on a paved road, with blurred grassy and flowered surroundings, highlighting its distinctive grille and sporty stance. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Buick Verano Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Buick Verano Sedan 2012_descriptions.txt new file mode 100644 index 0000000..4acc350 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Buick Verano Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +03168.jpg The visually modified Buick Verano Sedan 2012 appears in a cool metallic silver color with a matte texture, viewed from a rear three-quarter angle in a dimly lit, industrial environment, with its clean and contoured lines highlighted and no significant occlusions present. +03872.jpg The car appears in a vibrant red color with a smooth texture, viewed from a rear-side angle on a scenic road with vineyards in the background, showcasing its distinct rear lights and emblem with no occlusion. +01234.jpg The Buick Verano Sedan 2012 appears in a desaturated dark gray with an apparent rear view, featuring visible features like the distinctive taillights and logo, set against a plain, enclosed environment with light-colored walls. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Cadillac CTS-V Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Cadillac CTS-V Sedan 2012_descriptions.txt new file mode 100644 index 0000000..4fe475d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Cadillac CTS-V Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04289.jpg The Cadillac CTS-V Sedan 2012 appears in a low-resolution image with a cool-toned, metallic gray color, viewed from a low front three-quarter angle, showcasing its distinctive mesh grille and angular headlights against a blurred road and sky backdrop. +03376.jpg The Cadillac CTS-V Sedan 2012 appears in a dark, glossy color viewed from the front-left angle inside a showroom, with large silver alloy wheels, distinct Cadillac grille, and a reflection on its surface, surrounded by glass walls and modern decor. +07910.jpg A dark-colored Cadillac CTS-V Sedan 2012 is seen from a front three-quarter angle on a coastal road, highlighting its sharp body lines and distinctive front grille, with a blurred background consisting of a bright sky and ocean. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Cadillac Escalade EXT Crew Cab 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Cadillac Escalade EXT Crew Cab 2007_descriptions.txt new file mode 100644 index 0000000..5c8b59b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Cadillac Escalade EXT Crew Cab 2007_descriptions.txt @@ -0,0 +1,3 @@ +06715.jpg The Cadillac Escalade EXT Crew Cab 2007 is presented in a glossy dark blue color with bold chrome wheels, captured from a direct side view against a plain concrete backdrop, showcasing its sleek profile and distinctive rear bed without any significant occlusion. +05835.jpg The Cadillac Escalade EXT Crew Cab 2007 appears in a desaturated grayish-brown color with a front three-quarter view, emphasizing the chrome grille and wheels against a blurred background of pink storage units and grass. +01330.jpg The image shows a glossily textured, dark-colored Cadillac Escalade EXT Crew Cab 2007 viewed from the front left angle, sitting on a paved area with a building in the background, featuring a prominent chrome grille and shiny alloy wheels, with slight shadowing underneath the vehicle. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Cadillac SRX SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Cadillac SRX SUV 2012_descriptions.txt new file mode 100644 index 0000000..d2c1543 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Cadillac SRX SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +05054.jpg The Cadillac SRX SUV 2012 appears in a gray, high-contrast texture from a front three-quarter view, parked on a red-tiled surface near greenery, with distinctive angular headlights, a prominent front grille, and lightly tinted windows. +07968.jpg The Cadillac SRX SUV 2012 appears in a dark, muted color with a glossy texture, viewed from a front three-quarter angle with a background of stone and promotional signage, highlighting its sleek grille and silver wheels against the dull environment. +02768.jpg The visually augmented Cadillac SRX SUV 2012 appears in a grayish tone, viewed from a side profile with an American flag on the roof, parked in a dealership lot with other vehicles in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Avalanche Crew Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Avalanche Crew Cab 2012_descriptions.txt new file mode 100644 index 0000000..fb936c0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Avalanche Crew Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +07257.jpg The Chevrolet Avalanche Crew Cab 2012 is presented in an augmented vivid red color with a slight matte texture, viewed from a low front three-quarter angle showcasing its distinctive boxed front grille and wide stance, set in an urban environment with part of a brick building in the background, and partially occluded by website text overlay. +02515.jpg The Chevrolet Avalanche Crew Cab 2012 appears in a washed-out gray tone with a frontal three-quarter view, displaying its distinctive grille and headlights, parked indoors with reflections on its shiny surface and minimal visible occlusion. +05368.jpg The image shows a Chevrolet Avalanche Crew Cab 2012 in a desaturated gray tone, viewed from a front three-quarter angle with slight motion blur, rolling on a sandy terrain with some driftwood partially obstructing the lower right. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Camaro Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Camaro Convertible 2012_descriptions.txt new file mode 100644 index 0000000..bc2aae9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Camaro Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +00368.jpg The Chevrolet Camaro Convertible 2012 appears in a dark blue hue with a shiny texture, viewed from a three-quarter front perspective, featuring its signature aggressive front grille and alloy wheels, set against a dealership backdrop with other cars partially visible. +02928.jpg The Chevrolet Camaro Convertible 2012 appears in a metallic gray color with a sleek, low-profile stance from the driver's side, prominently displaying its signature front grille and alloy wheels, with a soft-top roof retracted and an industrial background that highlights the car's modern curves, though partially obscured by shadow. +02458.jpg The Chevrolet Camaro Convertible 2012 appears in a glossy teal color with a slight metallic texture, seen from a rear-side angle with the beach and ocean in the background, showcasing its distinctive dual tail lights and curved rear spoiler, with no significant occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Cobalt SS 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Cobalt SS 2010_descriptions.txt new file mode 100644 index 0000000..25b115b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Cobalt SS 2010_descriptions.txt @@ -0,0 +1,3 @@ +00929.jpg The Chevrolet Cobalt SS 2010 appears in a vivid lime green color with a smooth texture, viewed from a three-quarter front angle with no occlusion, parked on gravel against a graffiti-covered brick wall, showcasing its distinctive two-door coupe design and prominent rear spoiler. +05525.jpg The vehicle appears in a maroon color with a smooth texture from a rear three-quarter view, showcasing prominent circular tail lights, a small rear spoiler, and five-spoke alloy wheels, set against a neutral gray background with no visible occlusions. +04452.jpg The modified image shows a shiny red Chevrolet Cobalt SS 2010 with a prominent rear spoiler, viewed from a front-side angle, parked on a gray paved surface and set against a white corrugated background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Corvette Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Corvette Convertible 2012_descriptions.txt new file mode 100644 index 0000000..85a6bef --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Corvette Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +03908.jpg The visually augmented Chevrolet Corvette Convertible 2012 appears in a bright orange hue with a smooth texture, viewed from a rear angle showcasing its quad exhausts and circular taillights against a backdrop of greenery with partial occlusion from the surrounding tall trees. +01108.jpg This visually augmented Chevrolet Corvette Convertible 2012 is displayed in a vibrant blue with a smooth texture, viewed from a perfect side profile against a lush green forest backdrop, showcasing its streamlined body and iconic rear, with the top down and no significant occlusion. +01411.jpg A bright neon green Chevrolet Corvette Convertible 2012 is viewed from a rear-side angle with the top down, featuring a smooth texture, silver multi-spoke wheels, and set against an open sky, with no visible occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Corvette Ron Fellows Edition Z06 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Corvette Ron Fellows Edition Z06 2007_descriptions.txt new file mode 100644 index 0000000..02f4468 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Corvette Ron Fellows Edition Z06 2007_descriptions.txt @@ -0,0 +1,3 @@ +07469.jpg The low-resolution image depicts a white Chevrolet Corvette Z06 viewed from the rear side angle, showing prominent wheel arches, a smooth body texture, and a clear urban background with trees and buildings. +00020.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 appears in a bright, altered color resembling a light shade with shiny chrome wheels, viewed from a slightly elevated side angle with minor occlusions from the bridge and staircase in the background. +00418.jpg The image shows a white Chevrolet Corvette Z06, viewed from a high front angle, with dark-tinted windows and distinctive brown racing stripes over the wheel arches, parked on a street with grass and trees in the background, highlighted by the sun. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Corvette ZR1 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Corvette ZR1 2012_descriptions.txt new file mode 100644 index 0000000..d497650 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Corvette ZR1 2012_descriptions.txt @@ -0,0 +1,3 @@ +01953.jpg The Chevrolet Corvette ZR1 2012 is presented in a matte charcoal color with visible reflections on its sleek body, viewed from the rear left three-quarter angle showcasing its distinct quad tailpipes and sporty wheels, set against a plain dark background with no occlusion. +01707.jpg The Chevrolet Corvette ZR1 2012 appears in a darkened color with a textured finish, viewed from the rear showcasing its distinct quad exhaust pipes and rounded taillights, set against a blurred background with no visible occlusion. +06270.jpg The image shows a red Chevrolet Corvette ZR1 2012 from a rear three-quarter viewpoint, highlighting its shiny chrome wheels and dual exhausts, with reflections visible on its glossy surface, in an outdoor setting near a building with pink flowers and partially visible windows. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Express Cargo Van 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Express Cargo Van 2007_descriptions.txt new file mode 100644 index 0000000..5f1d654 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Express Cargo Van 2007_descriptions.txt @@ -0,0 +1,3 @@ +07152.jpg The van appears in a darkened white color with a matte texture, viewed from the front-left angle, surrounded by other vans and trees in a parking lot, while its smooth, boxy shape and large front grille remain distinctive despite the visual modifications. +02592.jpg The Chevrolet Express Cargo Van 2007 appears in a bright white color, viewed from an elevated front right angle showing the side and front with added roof racks, set against a dealership backdrop. +04111.jpg The Chevrolet Express Cargo Van 2007 appears in a high-angle front-right view with a white body contrasting against black details such as the grille and bumper, set in an outdoor parking environment with visible reflections and a background partially obscured by trees and other objects. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Express Van 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Express Van 2007_descriptions.txt new file mode 100644 index 0000000..fe4dbcc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Express Van 2007_descriptions.txt @@ -0,0 +1,3 @@ +00854.jpg The image shows a Chevrolet Express Van 2007 viewed from a rear three-quarter angle, featuring a uniform gray color with visible panel lines, enhanced taillights, and a clear visibility of its distinctive, boxy shape set against a simple gray environment. +04624.jpg The Chevrolet Express Van 2007 appears in a dark, possibly purple or black color with a smooth texture, viewed from a front-side angle in a parking lot environment, with the grille and headlights prominently visible and partial occlusion from a nearby vehicle on the right. +03482.jpg The Chevrolet Express Van 2007 appears in a matte gray color with a rear three-quarter view, partially obscured by a sale sign and a building in the background, showcasing its rear doors, taillights, and smooth, unadorned sides against a wet pavement. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet HHR SS 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet HHR SS 2010_descriptions.txt new file mode 100644 index 0000000..e894b60 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet HHR SS 2010_descriptions.txt @@ -0,0 +1,3 @@ +01071.jpg The Chevrolet HHR SS 2010 appears in a glossy, vibrant orange color viewed from a rear three-quarter angle with a cityscape reflecting off its surface, showcasing its distinctive square-shaped rear and prominent wheel arches, while parked on a rooftop with no obstructions. +00142.jpg The Chevrolet HHR SS 2010 appears in a vivid red color with a smooth texture, viewed from the side at eye level against a foggy natural setting with trees, highlighting its distinctive boxy silhouette and large alloy wheels. +02746.jpg The Chevrolet HHR SS 2010 appears in a bright orange color with a glossy texture, viewed from a front left-angle showcasing its distinctive rounded edges and prominent grille, set within an indoor showroom lacking significant occlusions but reflected with showroom lights. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Impala Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Impala Sedan 2007_descriptions.txt new file mode 100644 index 0000000..8314d8f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Impala Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +00661.jpg The augmented Chevrolet Impala Sedan 2007 appears in a muted grayish-blue color with visible texture across its surface, seen from a front-left angle displaying its distinctive grille and headlights, parked on a paved surface with part of a building and another vehicle partially visible in the background, without noticeable occlusions. +04589.jpg A white Chevrolet Impala Sedan 2007 with a matte texture is seen from a front-side angle in a dimly lit suburban environment, parked on a paved surface with distinctive dual front headlights and a prominent grille, partly occluded by a parked SUV in the background. +00282.jpg The Chevrolet Impala Sedan 2007 appears in a bright, glossy red with visible reflections on a sunny day, viewed from a front-left angle with a low perspective, showing prominent chrome wheels, partially obscured by the shadow and accompanied by a blurred dealership building in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Malibu Hybrid Sedan 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Malibu Hybrid Sedan 2010_descriptions.txt new file mode 100644 index 0000000..934ae4e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Malibu Hybrid Sedan 2010_descriptions.txt @@ -0,0 +1,3 @@ +05034.jpg The Chevrolet Malibu Hybrid Sedan 2010 appears in a muted, greyish-green color viewed from a rear three-quarter angle, with tinted taillights, chrome rims, and it is parked in a largely empty parking lot with some palm trees and a building in the background. +06165.jpg A low-resolution image of a Chevrolet Malibu Hybrid Sedan 2010 shows the car from a three-quarter front-left viewpoint with an altered bright silver color and glossy texture, parked in an asphalt environment, featuring the distinct sedan body shape with chrome-trimmed windows, two visible alloy wheels, and slightly obscured rear due to another vehicle in the background. +04124.jpg The vehicle appears in a dark bluish hue with a glossy texture, viewed from the front-left angle, showing a distinct grille and shiny alloy wheels, set against a plain indoor background with no significant occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Malibu Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Malibu Sedan 2007_descriptions.txt new file mode 100644 index 0000000..0991c8f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Malibu Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +01042.jpg The Chevrolet Malibu Sedan 2007 appears with a glossy black texture, viewed from a three-quarter front angle, parked on a driveway with a background of a brick building, with distinctive five-spoke alloy wheels and minimal environmental occlusion. +06535.jpg A visually augmented Chevrolet Malibu Sedan 2007 with a reddish-brown hue is seen from a front-side angle in a shadowed street setting, showing distinctive headlights and a prominent grille with a Chevrolet logo, alongside some building facade and fencing in the background. +04259.jpg A maroon Chevrolet Malibu Sedan 2007 is shown from an oblique front angle on a paved surface, featuring a reflective sheen, silver alloy wheels, and a "SALE" sign on the windshield, with an open, grassy environment in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Monte Carlo Coupe 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Monte Carlo Coupe 2007_descriptions.txt new file mode 100644 index 0000000..215de3d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Monte Carlo Coupe 2007_descriptions.txt @@ -0,0 +1,3 @@ +02726.jpg The Chevrolet Monte Carlo Coupe 2007 is displayed in a low-resolution image with a glossy, dark maroon color, viewed from the front-left side in an urban setting, with a noticeable reflection on its hood and minimal visual obstruction. +06612.jpg The vehicle appears in a modified metallic gray shade with a sleek texture, viewed from the rear-right three-quarter angle, featuring large chrome wheels and distinctive elongated tail lights, set in a driveway environment with minimal occlusion. +01274.jpg The Chevrolet Monte Carlo Coupe 2007, appearing in a vivid blue hue with a smooth metallic texture due to color augmentation, is pictured from a front-side angle on a clear driveway against a white paneled building backdrop, exhibiting its sleek body lines and distinct grille with no significant occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Classic Extended Cab 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Classic Extended Cab 2007_descriptions.txt new file mode 100644 index 0000000..8843108 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Classic Extended Cab 2007_descriptions.txt @@ -0,0 +1,3 @@ +07680.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 appears in a desaturated or possibly augmented dark shade from a three-quarter front view with a visible grassy area and a dealership lot backdrop, highlighting its quad headlights, distinctive chrome grille, and black body trim. +04625.jpg The low-resolution image shows a Chevrolet Silverado 1500 Classic Extended Cab 2007 with a muted gray color and a slightly matte texture, viewed from the front-left angle, parked on a smooth pavement with an arid landscape in the background, featuring its characteristic broad grille and rectangular headlights, while the flat terrain and sparse vegetation are visible, enhancing the truck’s robust and angular build. +04104.jpg The Chevrolet Silverado 1500 Classic Extended Cab 2007 appears in a slightly altered darker color, viewed from a front-left angle with clear visibility of the extended cab and chrome grille, parked on a street with trees and other vehicles in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Extended Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Extended Cab 2012_descriptions.txt new file mode 100644 index 0000000..a25d368 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Extended Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +01230.jpg The Chevrolet Silverado 1500 Extended Cab 2012 appears in a metallic gold tone with a smooth texture, viewed from a three-quarter front angle in a dimly lit parking area, highlighting its extended cab, chrome wheels, and signature front grille with minimal occlusion from the background buildings. +04234.jpg The Chevrolet Silverado 1500 Extended Cab 2012 appears in a matte white finish with a noticeable side profile view, showcasing the extended cab doors and a slightly angled rear bed, set against a dealership lot backdrop with flags and other vehicles, while maintaining its characteristic wheel arches and grille despite the visual modifications. +07525.jpg The Chevrolet Silverado 1500 Extended Cab 2012 appears in a metallic lavender hue, viewed from the left side showcasing its elongated body and sleek silhouette with visible details like chrome wheels, set against an indoor parking environment with painted lines and a wall in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Hybrid Crew Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Hybrid Crew Cab 2012_descriptions.txt new file mode 100644 index 0000000..aeb56da --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Hybrid Crew Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +03083.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 appears in a dark metallic color under an overcast sky, viewed from a front three-quarter angle on a rural road with snow and bare trees, highlighting its broad grille and chrome accents while the surroundings cast an altered reddish hue. +02014.jpg The visually augmented Chevrolet Silverado 1500 Hybrid Crew Cab 2012 appears in a distorted, bold orange hue with a matte-like texture, viewed from a side angle against a mountainous backdrop, with the horizon partially obscured by the truck’s body, highlighting its four-door configuration and prominent wheel arches. +06060.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012, appears in a matte off-white color with a front three-quarter view, showcasing its distinctive chrome-trimmed grille and headlights against a textured asphalt background, with no significant occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Regular Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Regular Cab 2012_descriptions.txt new file mode 100644 index 0000000..34b3f17 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 1500 Regular Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +05571.jpg A low-resolution image shows a Chevrolet Silverado 1500 Regular Cab 2012 with a glossy black finish, viewed from the front-left angle, parked in a lot with overcast skies and other vehicles visible, with clear headlights and a chrome grille. +00615.jpg The Chevrolet Silverado 1500 Regular Cab 2012 appears in a glossy dark purple hue with a front-left angled view, showing a clean and reflective surface, chrome front grille, and distinctly highlighted headlights, amidst a dealership lot with partial tree and sky background. +02934.jpg The Chevrolet Silverado 1500 Regular Cab 2012 appears in a vibrant purple color with a glossy finish, viewed from a side angle on a sunlit street, showing clear sunlight reflections, with the wheels and front grille prominently visible, while trees and lamp posts are seen in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 2500HD Regular Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 2500HD Regular Cab 2012_descriptions.txt new file mode 100644 index 0000000..715b420 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Silverado 2500HD Regular Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +05447.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 appears with an altered bluish-white hue and visible matte texture, viewed from a front-left angle in a sparse parking lot, highlighting its robust grille, rectangular headlights, and enhanced chrome accents, with no significant occlusion. +07963.jpg The Chevrolet Silverado 2500HD Regular Cab 2012, viewed from a front-side angle, appears in a dark purple hue with a glossy texture, set against a clear sky and gravel surface, and features distinct silver wheels and a prominent grille, with the environment's leafless trees adding contrast. +07664.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 appears in a mirrored orientation with a dark green color and glossy finish, viewed from a front-side angle in a dealership setting with a building and window reflections, showing prominent wheel arches and chrome wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Sonic Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Sonic Sedan 2012_descriptions.txt new file mode 100644 index 0000000..fa03e21 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Sonic Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04768.jpg The Chevrolet Sonic Sedan 2012 appears in a light pastel hue with a smooth texture, viewed from the rear side showcasing its distinct taillights, amid a flat, open parking lot bordered by trees and with minimal occlusion. +02619.jpg The Chevrolet Sonic Sedan 2012 appears in a side view with a metallic gray color due to lighting modification, showcasing its sleek body design, visible multi-spoke alloy wheels, and a blurred exhibition background, with parts of the rear bumper slightly obscured by other display elements. +00346.jpg The Chevrolet Sonic Sedan 2012 appears in a washed-out, high-contrast black color with a rear three-quarter view, showcasing its distinctively rounded tail light and rear bumper against a bare outdoor setting, while its reflective surface subtly mirrors the surrounding environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Tahoe Hybrid SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Tahoe Hybrid SUV 2012_descriptions.txt new file mode 100644 index 0000000..544819b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Tahoe Hybrid SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +04051.jpg The Chevrolet Tahoe Hybrid SUV 2012 appears in a pale pinkish hue with visible hybrid branding on its sides, viewed from a three-quarter front angle, in a parking lot setting that partially occludes the lower bumper and highlights the distinctive boxy shape and chrome wheels. +03135.jpg The visually augmented Chevrolet Tahoe Hybrid SUV 2012 appears in a dark color with a matte texture, viewed from the front-left angle, showcasing its distinctive grille and headlights in a neutral gray environment with no significant occlusions. +05176.jpg The Chevrolet Tahoe Hybrid SUV 2012 appears in bright white with a slightly frontal view, showcasing its boxy shape; the background features a city street scene with trees, hinting at a park setting, while the vehicle's distinct grille and hybrid badge are visible despite low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet TrailBlazer SS 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet TrailBlazer SS 2009_descriptions.txt new file mode 100644 index 0000000..df1fe54 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet TrailBlazer SS 2009_descriptions.txt @@ -0,0 +1,3 @@ +05942.jpg The modified Chevrolet TrailBlazer SS 2009 appears in a white color with a glossy texture, viewed from a front three-quarter angle, showcasing its distinctive angular headlights, prominent grille with the "SS" badge, and large silver wheels, parked on a pavement with a tree-lined background. +03800.jpg The Chevrolet TrailBlazer SS 2009, seen from a front three-quarter view, appears in a deep blue color with slightly blurred details due to motion, on a road lined with greenery. +00967.jpg The Chevrolet TrailBlazer SS 2009 appears in a glossy black color with a brightened texture, parked at an angle showing the front and driver’s side, in a dealership environment with a building and other cars in the background, featuring distinctive alloy wheels and a noticeable front grille. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Traverse SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Traverse SUV 2012_descriptions.txt new file mode 100644 index 0000000..90be110 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chevrolet Traverse SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +04394.jpg The Chevrolet Traverse SUV 2012 appears in an altered matte off-white color, viewed from a front three-quarter angle, with minimal environmental occlusion from white draped curtains surrounding the vehicle, highlighting its chrome grille and sleek headlight design. +02215.jpg The Chevrolet Traverse SUV 2012 is shown in a front-facing view with a dark grey color and smooth texture, distinct headlights, grille detailing, and a neutral background, with no significant occlusions. +03826.jpg The Chevrolet Traverse SUV 2012 appears in a copper-red color with a glossy texture, positioned in a three-quarter front view in a dealership lot, with visible features including chrome-accented grille and headlights, surrounded by other vehicles, under a partly cloudy sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler 300 SRT-8 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler 300 SRT-8 2010_descriptions.txt new file mode 100644 index 0000000..47a6567 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler 300 SRT-8 2010_descriptions.txt @@ -0,0 +1,3 @@ +05628.jpg The Chrysler 300 SRT-8 2010 appears in a glossy black with a high-contrast sheen, viewed from a rear-three-quarter angle against a smooth, light gray background, highlighting its prominent chrome wheels and red-accented tail lights. +07411.jpg The Chrysler 300 SRT-8 2010, viewed from the side, appears in a dark, glossy color with reflections suggesting a shiny texture, situated in a parking lot with other vehicles, without any occlusion of its distinct muscular stance and bold wheel rims. +00612.jpg The Chrysler 300 SRT-8 2010 appears in a muted grayish-purple hue with a glossy texture, captured from a front-left angle showing its distinct mesh grille and large alloy wheels, partially occluded by a parked car in the background amidst a cloudy, open parking lot setting. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Aspen SUV 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Aspen SUV 2009_descriptions.txt new file mode 100644 index 0000000..06eff28 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Aspen SUV 2009_descriptions.txt @@ -0,0 +1,3 @@ +01651.jpg The 2009 Chrysler Aspen SUV appears in a muted beige tone with a shiny, reflective texture, viewed from a front-right angle highlighting its prominent grille and chrome accents, standing on a paved surface with a grassy backdrop, partially obscured by a person to the right. +05728.jpg The Chrysler Aspen SUV 2009 appears in a low-resolution image with an altered purple hue, viewed from the front-right angle, displaying a prominent chrome grille and shiny rims, set against a wooden and metallic industrial background. +03198.jpg The Chrysler Aspen SUV 2009 in the image appears dark green with a slightly glossy texture and is viewed from the rear-right side in a parking lot, exhibiting a prominent rear window, visible roof rails, and partially visible branding, while the surrounding environment includes other vehicles and a building in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Crossfire Convertible 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Crossfire Convertible 2008_descriptions.txt new file mode 100644 index 0000000..a05d79c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Crossfire Convertible 2008_descriptions.txt @@ -0,0 +1,3 @@ +08038.jpg The image shows a Chrysler Crossfire Convertible 2008 with a sky-blue, slightly metallic hue viewed from the side, featuring a convertible top up, with the background containing a parking lot and dealer signage in the distance. +06218.jpg The Chrysler Crossfire Convertible 2008 appears in a vivid red color with a smooth texture, viewed from a front-side angle, highlighting its distinctive grille and side vents, with the convertible top down and set against a minimalistic white background. +01278.jpg The Chrysler Crossfire Convertible 2008 appears in a modified teal-blue hue with a blurred motion effect, viewed from the driver's side in a slightly angled side profile, set against a dynamic urban backdrop with visible distinct side vents and raised roofline. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler PT Cruiser Convertible 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler PT Cruiser Convertible 2008_descriptions.txt new file mode 100644 index 0000000..d40ed67 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler PT Cruiser Convertible 2008_descriptions.txt @@ -0,0 +1,3 @@ +02559.jpg The Chrysler PT Cruiser Convertible 2008 appears in a desaturated silver hue with a matte texture, viewed from the front-right angle, featuring a distinctive rounded grille and wheel arches, all under a darkened soft top with no visible occlusions, set against an industrial background with chain-link fencing and parked vehicles. +06084.jpg The Chrysler PT Cruiser Convertible 2008 appears in a vibrant metallic teal with a front-left angle view, showcasing its distinct curved grille and round headlights, set against a blurred coastal backdrop with no significant occlusion. +02624.jpg The Chrysler PT Cruiser Convertible 2008 appears in a grayscale tone with a matte texture, viewed from a front three-quarter angle against a plain, overcast backdrop, highlighting its rounded grille, chrome details, and black soft-top roof, with no visible occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Sebring Convertible 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Sebring Convertible 2010_descriptions.txt new file mode 100644 index 0000000..6ab4b1e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Sebring Convertible 2010_descriptions.txt @@ -0,0 +1,3 @@ +03944.jpg The Chrysler Sebring Convertible 2010 appears in a metallic silver tone with a glossy texture, viewed from a front three-quarter angle in an urban lot setting, with prominent chrome wheels and partially obscured by sunlight reflections on the hood and windshield. +02075.jpg The Chrysler Sebring Convertible 2010 appears in a bright red hue with a smooth, glossy texture, viewed from a front three-quarter angle on a coastal road, with no occlusions, featuring a distinct grille and sleek lines that enhance its sporty convertible design. +02785.jpg The vehicle appears in an altered bluish-white tone with a matte texture, viewed from a front-left angle, lacking notable occlusion, parked in a dealership lot with another vehicle partially visible behind. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Town and Country Minivan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Town and Country Minivan 2012_descriptions.txt new file mode 100644 index 0000000..8811e6b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Chrysler Town and Country Minivan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01925.jpg The minivan, appearing in a muted greenish-black tone with a glossy texture, is positioned at a three-quarter front view near a building, revealing chrome detailing on the grille and wheels, with minor reflections on the windows, and an unobscured front-left section highlighting the headlights and bumper. +06534.jpg A silver minivan with a matte texture is viewed from the rear-right angle, parked on a dark asphalt surface surrounded by foliage, with noticeable reflections in the windows and taillights, and partially obscured license plate. +07074.jpg The Chrysler Town and Country Minivan 2012 appears in a matte, high-contrast grayscale finish, viewed from a front three-quarter angle with clear visibility of its front grille and headlights, positioned on a dark asphalt surface adjacent to a corrugated metal wall, without significant occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Daewoo Nubira Wagon 2002_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Daewoo Nubira Wagon 2002_descriptions.txt new file mode 100644 index 0000000..672b5df --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Daewoo Nubira Wagon 2002_descriptions.txt @@ -0,0 +1,3 @@ +06790.jpg The Daewoo Nubira Wagon 2002 appears in a desaturated blue hue with visible side views highlighting a streamlined, elongated form and uniform five-spoke alloy wheels, set on a flat surface with the backdrop of a clear sky, unobstructed by any significant occlusion. +06511.jpg The Daewoo Nubira Wagon 2002 appears in a solid coral hue, viewed from a left side profile, sitting against a stark white background, with distinct features like roof rails and silver wheel covers prominently visible, though lacking environmental occlusion. +01638.jpg A dark blue Daewoo Nubira Wagon 2002 is seen from a rear three-quarter viewpoint, showcasing its smooth texture with reflections, featuring silver alloy wheels, amidst a grassy environment, with partial occlusion by another car on the right and trees in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Caliber Wagon 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Caliber Wagon 2007_descriptions.txt new file mode 100644 index 0000000..a2e19fc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Caliber Wagon 2007_descriptions.txt @@ -0,0 +1,3 @@ +01969.jpg The Dodge Caliber Wagon 2007 is seen from a slightly elevated front-left angle, sporting a vibrant magenta color with a glossy texture, black trim along the windows and roof rails, and silver alloy wheels, set against a plain gray background without any occlusion. +06097.jpg The Dodge Caliber Wagon 2007 appears in a muted rusty orange color with a metallic finish, viewed from a front three-quarter angle with a clear view of its distinctive crosshair grille, parked on a gray pavement with a backdrop of other cars and a tree-lined road. +02545.jpg The Dodge Caliber Wagon 2007 appears in a glossy maroon color with a front three-quarter view foregrounding its distinctive crosshair grille, against a plain background with a tiled pavement, and features shiny silver wheels with clear reflections on the car's surface. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Caliber Wagon 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Caliber Wagon 2012_descriptions.txt new file mode 100644 index 0000000..1d3f3b7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Caliber Wagon 2012_descriptions.txt @@ -0,0 +1,3 @@ +04079.jpg The Dodge Caliber Wagon 2012 appears in a muted silver-gray tone with a smooth texture, viewed from a front three-quarter angle showcasing its distinct crosshair grille and rounded headlights, parked in an asphalt lot with a flag on the roof, and partially obscured by shadows on the lower front bumper. +00115.jpg The Dodge Caliber Wagon 2012 appears in a vibrant orange hue with a glossy texture, viewed in three-quarter perspective from the front right, with no visible occlusion and set against a stark, modern architectural backdrop, featuring distinctive chrome wheels and a prominent crosshair grille. +05961.jpg The Dodge Caliber Wagon 2012 appears in a glossy deep red color with a front three-quarter view, parked on a wet pavement near a building, displaying its prominent crosshair grille and silver alloy wheels, with the environment partly obscured by light reflections and a large reversed sign at the bottom. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Caravan Minivan 1997_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Caravan Minivan 1997_descriptions.txt new file mode 100644 index 0000000..36bbbba --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Caravan Minivan 1997_descriptions.txt @@ -0,0 +1,3 @@ +02409.jpg The 1997 Dodge Caravan Minivan appears in a bright teal color with a glossy finish, viewed from a front-side angle on a grassy field, with sunlight casting reflections on the windows and an unobstructed view showing smooth contours and a distinct black front bumper. +05500.jpg The minivan appears in a brightened white hue with a smooth texture, viewed from a front-side angle, with sunlight glare on the windshield, partial occlusion by an adjacent vehicle on the left, and trees reflecting on the side windows. +03681.jpg The minivan appears in a bright red color with a glossy texture, viewed from a front three-quarter angle on a grassy terrain near a rocky coastal backdrop, with clear visibility of its rounded front and distinctive grille design. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Challenger SRT8 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Challenger SRT8 2011_descriptions.txt new file mode 100644 index 0000000..cc5a850 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Challenger SRT8 2011_descriptions.txt @@ -0,0 +1,3 @@ +07899.jpg The Dodge Challenger SRT8 2011 appears in a matte white finish with distinctive dual blue racing stripes, viewed from a slightly elevated front-left angle on a wet, reflective pavement against an industrial backdrop, highlighting its iconic wide grille, round headlights, and muscle car stance. +01576.jpg The Dodge Challenger SRT8 2011 appears in a vivid purple color with white racing stripes, viewed from a front-side angle on an open road under a cloudy sky, featuring distinctive circular headlights and an aggressive hood scoop without any significant occlusions. +01804.jpg The Dodge Challenger SRT8 2011 appears in a glossy black color with a metallic texture featuring white racing stripes, viewed from the front left at a low angle with urban buildings in the background, and showcases its distinct wide grille, circular headlights, and alloy wheels, with no significant occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Charger SRT-8 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Charger SRT-8 2009_descriptions.txt new file mode 100644 index 0000000..6a7bb2d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Charger SRT-8 2009_descriptions.txt @@ -0,0 +1,3 @@ +03807.jpg The Dodge Charger SRT-8 2009 appears in a vivid red color with a glossy texture, viewed from the rear-left angle, displaying its distinctive spoiler and dual exhausts with large wheels, set against a backdrop of aged metal structures under an overcast sky. +05301.jpg The Dodge Charger SRT-8 2009 is visually augmented with a vibrant blue hue, viewed from a low frontal angle in a covered service reception area, featuring prominent black racing stripes on the hood and circular headlights. +02651.jpg The Dodge Charger SRT-8 2009 appears in a bluish-grey tint with a matte texture, viewed from a front-side angle on a street, with no visible occlusion, showcasing its aggressive front grille and distinctive hood scoop. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Charger Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Charger Sedan 2012_descriptions.txt new file mode 100644 index 0000000..c8dfe06 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Charger Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05815.jpg The Dodge Charger Sedan 2012 appears in a vibrant lime green with a glossy texture, viewed from a rear three-quarter angle showing its distinct taillights and dual exhausts, set on a racetrack with a blue sky and minimal occlusion. +06970.jpg The Dodge Charger Sedan 2012 appears in a matte gray color, viewed from the front-right quarter, with smooth body contours and prominent wheel arches, set against a neutral gray background with no visible occlusion. +01721.jpg The Dodge Charger Sedan 2012 is visually augmented to a bright pink color with a glossy texture, viewed from a front three-quarter angle with a clear view of the headlights and grille, surrounded by a parking lot environment featuring other vehicles, with no major occlusion present. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Dakota Club Cab 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Dakota Club Cab 2007_descriptions.txt new file mode 100644 index 0000000..3a95572 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Dakota Club Cab 2007_descriptions.txt @@ -0,0 +1,3 @@ +06359.jpg The Dodge Dakota Club Cab 2007 appears in a darkened, grayish tone with a matte texture and is viewed from the front-left angle in a wet, overcast environment with reflections on the ground, showcasing its distinct grille and headlight design, partially occluded by shadows. +04025.jpg The Dodge Dakota Club Cab 2007 appears in a glossy black hue with bright highlights, viewed from the front-left angle in an indoor showroom setting with reflective surfaces, prominent chrome grille, and white wheels, against a backdrop of a red and grey wall with automotive displays. +04837.jpg The Dodge Dakota Club Cab 2007 appears in a vivid orange hue with a glossy texture, seen from a frontal three-quarter viewpoint on a curving road, featuring its prominent chrome grille and headlight design, while grassy surroundings contrast its vibrant color. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Dakota Crew Cab 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Dakota Crew Cab 2010_descriptions.txt new file mode 100644 index 0000000..831432f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Dakota Crew Cab 2010_descriptions.txt @@ -0,0 +1,3 @@ +00059.jpg The Dodge Dakota Crew Cab 2010 appears in a bright white color with a slightly distorted texture, viewed from a front three-quarter angle showing the grille and front wheels, parked on an asphalt surface with light shadowing, minimal occlusion from other vehicles, and surrounded by greenery in the background. +04888.jpg The Dodge Dakota Crew Cab 2010 in the image appears in a glossy black color with a slightly forward and left tilt, parked in a lot with visible business signage above and minor occlusion at the rear by a building. +05003.jpg The Dodge Dakota Crew Cab 2010 is seen in a gray shade with a smooth texture from a front left three-quarter view, with slight occlusion from the front bumper, positioned in a dealership setting featuring distinctive squared headlights and a prominent chrome crosshair grille. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Durango SUV 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Durango SUV 2007_descriptions.txt new file mode 100644 index 0000000..c506dab --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Durango SUV 2007_descriptions.txt @@ -0,0 +1,3 @@ +07644.jpg The Dodge Durango SUV 2007 appears in a vivid blue hue with a smooth texture, viewed from a front-right angle in a sunny dealership lot, with distinctive chrome accents on the grille and wheels, standing on a clear asphalt ground with minimal occlusion. +03649.jpg The Dodge Durango SUV 2007 appears in a muted silver color with a grainy texture from the front-side angle, showcasing its distinct wide front grille and headlights, parked among other vehicles which partially obscure its rear on a wet, dark pavement under an overcast sky. +03444.jpg The Dodge Durango SUV 2007 appears in a dark, glossy color with a front three-quarter viewpoint, set against a blurred motion background, showcasing features like its distinct grille and headlamps while appearing slightly angled forward. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Durango SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Durango SUV 2012_descriptions.txt new file mode 100644 index 0000000..3a61b8b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Durango SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +07762.jpg The Dodge Durango SUV 2012 appears in a high-contrast white color with a glossy finish, viewed from the front with a slight downward angle, featuring its prominent crosshair grille and headlights while parked on a paved lot with other vehicles in the blurred background. +05731.jpg The Dodge Durango SUV 2012 appears in a metallic gray hue with a glossy texture, viewed from the front-left angle on an open road with distant mountains, featuring a prominent chrome grille and headlights with no evident occlusion. +03228.jpg The Dodge Durango SUV 2012 is displayed in a low-resolution image from a front three-quarter viewpoint, featuring a deep blue hue with a glossy texture, distinctly revealing its prominent chrome grille and headlights, set within an indoor environment with reflective tiles, partially obscured by another vehicle on its right. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Journey SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Journey SUV 2012_descriptions.txt new file mode 100644 index 0000000..d1fd7e2 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Journey SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02522.jpg The Dodge Journey SUV 2012 appears in a matte white finish with a front-side view orientation, parked in a dealership setting with branding signs visible in the background, showcasing its distinctively rounded bumper and silver alloy wheels. +06803.jpg The Dodge Journey SUV 2012 appears in a vibrant red color with a glossy texture as viewed from the front, featuring its prominent crosshair grille while positioned in an indoor showroom with artificial lighting, amidst a sleek, modern backdrop. +07485.jpg The Dodge Journey SUV 2012 appears in a dark, glossy color viewed from the front-left angle under bright lighting, with a reflection on the hood and roof, parked on a paved area with other vehicles in the background and some trees visible, while the distinct crosshair grille and headlights are prominent features. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Magnum Wagon 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Magnum Wagon 2008_descriptions.txt new file mode 100644 index 0000000..2efd083 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Magnum Wagon 2008_descriptions.txt @@ -0,0 +1,3 @@ +00470.jpg The Dodge Magnum Wagon 2008 appears in a bright orange hue with smooth texture, viewed from a front three-quarter angle with prominent black grille, headlights glowing in dim lighting, and a sleek, elongated roof line; the environment is dimly lit, enhancing the car's vivid color and highlighting its bold, muscular stance. +03803.jpg A dark blue Dodge Magnum Wagon 2008 is viewed from the side in a parking lot with a clear sky and trees, featuring chrome wheels, tinted windows, and a smooth texture, with some reflection obscuring part of the rear side window. +02017.jpg The Dodge Magnum Wagon 2008 appears in a muted silver color with a slightly angled rear-side view showing tinted windows, parked by a suburban street with bare trees and a house in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Ram Pickup 3500 Crew Cab 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Ram Pickup 3500 Crew Cab 2010_descriptions.txt new file mode 100644 index 0000000..bec9de7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Ram Pickup 3500 Crew Cab 2010_descriptions.txt @@ -0,0 +1,3 @@ +02074.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 appears in a dark metallic purple hue, viewed from the front-left angle with a slightly elevated perspective, parked on a concrete surface in a dealership environment, showcasing its chrome grille and dual rear wheels, with minimal visible occlusion. +01636.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is presented in a dark glossy finish with a rear-left three-quarter view, highlighting its large, muscular rear bumper, distinctive tailgate emblem, and dark-tinted windows, set against a sparse, overcast parking area with no visible occlusions. +01345.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 appears in a bright white color, viewed from a side angle highlighting its extended cab and large chrome wheels, set against a rural backdrop with trees and a trailer partially occluding the rear. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Ram Pickup 3500 Quad Cab 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Ram Pickup 3500 Quad Cab 2009_descriptions.txt new file mode 100644 index 0000000..e665049 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Ram Pickup 3500 Quad Cab 2009_descriptions.txt @@ -0,0 +1,3 @@ +08020.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 appears in bright white with a matte texture, viewed from a slightly low front-left angle, against a building backdrop with blue sky and clouds, showcasing its large chrome wheels and distinctive quad cab with minimal occlusion. +03550.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 appears in a side view with a light, desaturated color, elevated stance on large chrome wheels, set against a sparse, sunny environment with no significant occlusions. +03210.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 appears in a vivid red hue with a shiny texture seen from a rear three-quarter view in a sunlit grassy field, with no visible occlusions and notable dual rear wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Sprinter Cargo Van 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Sprinter Cargo Van 2009_descriptions.txt new file mode 100644 index 0000000..578547b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Dodge Sprinter Cargo Van 2009_descriptions.txt @@ -0,0 +1,3 @@ +01541.jpg The Dodge Sprinter Cargo Van 2009 appears in a deep blue color with a smooth texture, viewed from a rear three-quarter angle, parked in an urban setting with a building backdrop; the distinctive elongated profile and high roofline of the van are visible, and the environment includes yellow hazard tape in the background. +04062.jpg The augmented Dodge Sprinter Cargo Van 2009 appears in a pale gray, viewed from a rear three-quarter angle with visible taillights and branding, set against a cloudy outdoor environment. +04225.jpg The Dodge Sprinter Cargo Van 2009 appears in a muted lavender tone with a matte texture, viewed from the left side revealing its elongated body and elevated roofline; it is situated in a parking lot with trees in the background under a cloudy blue sky with no significant occlusion affecting visibility. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Eagle Talon Hatchback 1998_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Eagle Talon Hatchback 1998_descriptions.txt new file mode 100644 index 0000000..043781d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Eagle Talon Hatchback 1998_descriptions.txt @@ -0,0 +1,3 @@ +03671.jpg The Eagle Talon Hatchback 1998 appears in a low-resolution and bright, overexposed image, displaying a matte black exterior from an angled front viewpoint with visible highlights, featuring oversized metallic alloy wheels, a prominent bumper, and slightly occluded by surrounding vehicles in a parking lot environment. +04701.jpg The Eagle Talon Hatchback 1998 appears in a low-resolution image with a dark, muted color, possibly deep green or gray, showing a side-front viewpoint with the front bumper and headlights visible; it sits on grass with the horizon in the background, emphasizing its sleek curves and distinctive prominent rounded nose despite the low resolution and color changes. +03084.jpg The Eagle Talon Hatchback 1998 appears in a front view dominated by a smooth, glossy blue-gray exterior with a distinctive eagle emblem on the hood, set against a slightly urban background with minimal occlusion and visible dual headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/FIAT 500 Abarth 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/FIAT 500 Abarth 2012_descriptions.txt new file mode 100644 index 0000000..d321766 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/FIAT 500 Abarth 2012_descriptions.txt @@ -0,0 +1,3 @@ +00380.jpg The FIAT 500 Abarth 2012 is positioned in a rear three-quarter view with a dark matte finish and vivid pink accents on the wheels and side stripe, set against a background of stacked white shipping containers featuring a large black logo. +07291.jpg The image shows a FIAT 500 Abarth 2012 from a front-side angle, appearing in a glossy black with red accent stripes and mirror caps, positioned on a reflective showroom floor with partial view of another car in the background. +04872.jpg The FIAT 500 Abarth 2012 appears in dark gray with a glossy texture, viewed from a rear three-quarter angle, featuring dual exhausts and a distinctive rear spoiler, set against an indoor exhibition backdrop with bright lighting and minimal occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/FIAT 500 Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/FIAT 500 Convertible 2012_descriptions.txt new file mode 100644 index 0000000..3c1555f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/FIAT 500 Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +01660.jpg The FIAT 500 Convertible 2012 appears in a rear view with a glossy white finish, a brown convertible roof lowered, illuminated taillights, white leather headrests visible, and a blurred road background suggesting motion. +01889.jpg The FIAT 500 Convertible 2012 appears in an off-white color with a contrasting burgundy soft top, viewed from a rear three-quarter angle on a sunlit urban street, with motion blur emphasizing speed and the architecture of nearby buildings partially occluding the background. +03293.jpg The FIAT 500 Convertible 2012 appears in a showroom setting, viewed from a rear three-quarter angle, with a white body, a contrasting pink convertible roof folded back, and distinctive round taillights, partially occluded by a railing and people in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari 458 Italia Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari 458 Italia Convertible 2012_descriptions.txt new file mode 100644 index 0000000..81ff4e5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari 458 Italia Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +01574.jpg The Ferrari 458 Italia Convertible 2012 is viewed from an elevated side angle, showcasing its bright red color and sleek, aerodynamic design, with the convertible roof open, set against a motion-blurred road and faint, greenish landscape background. +06521.jpg The Ferrari 458 Italia Convertible 2012 appears in a vivid orange hue with a smooth matte texture, seen from a side view showcasing its sleek profile and distinctive Ferrari badge, set against a blurred, monochromatic background with a metallic sheen. +03963.jpg The Ferrari 458 Italia Convertible 2012 is displayed in a modified bright pink color with a glossy texture, showcased in a three-quarters front view on a showroom floor, highlighting its aerodynamic curves and distinctive front air intakes, while the background features informational displays and partial views of nearby exhibit attendees. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari 458 Italia Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari 458 Italia Coupe 2012_descriptions.txt new file mode 100644 index 0000000..7c58f98 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari 458 Italia Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +01101.jpg The Ferrari 458 Italia Coupe 2012 appears in a vibrant red color with a glossy texture, viewed from a low front angle emphasizing its sleek headlights and aerodynamic curves, set in a dimly lit urban garage environment with concrete pillars and a slightly shadowed rear. +02568.jpg The Ferrari 458 Italia Coupe 2012 appears in a low-resolution, color-modified white with magenta accents, viewed from a rear-three-quarter angle on a brick pavement, with noticeable reflections on its surface and partially obscured by the building backdrop. +04523.jpg The Ferrari 458 Italia Coupe 2012 appears in a bright, vivid yellow with a smooth, glossy texture, viewed from a front-side angle on a coastal road, showcasing its aerodynamic front and sleek hood lines, with the background featuring a blue ocean and rocky cliffs. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari California Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari California Convertible 2012_descriptions.txt new file mode 100644 index 0000000..3de7614 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari California Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +07849.jpg The Ferrari California Convertible 2012 appears in a smooth metallic blue finish, viewed from a front three-quarter angle with its top retracted, set in a simple white showroom environment showcasing its sleek lines and distinctive front grille. +02776.jpg An orange Ferrari California Convertible 2012 is viewed in profile from the side, featuring a smooth texture, with the top down and lime green interior visible, set against a backdrop of a classical fountain and lush greenery. +05805.jpg A silver Ferrari California Convertible 2012 with a smooth texture is viewed from the front side angle, parked indoors on a light gray floor against a pale mint-green wall, with the BMW branding partially visible in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari FF Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari FF Coupe 2012_descriptions.txt new file mode 100644 index 0000000..7107f62 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ferrari FF Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +02020.jpg The visually augmented Ferrari FF Coupe 2012 appears in a glossy, deep purple with a low angled front-view showcasing its distinctive long hood, four round headlights, and prominent front grille, set against a bright, overexposed background with partial white occlusions at the bottom. +01150.jpg The visually augmented Ferrari FF Coupe 2012 appears in a rust-orange hue, captured from a front three-quarter viewpoint, navigating a snowy mountain road with its distinctive elongated hood and sleek body design prominent against the sharp curves of the environment. +06648.jpg The Ferrari FF Coupe 2012 appears in a vibrant pink color with a glossy texture, viewed from a front-left angle with the environment in low light revealing its signature grille and elongated hood, while the left side is unobstructed and showcases the prominent curves and silver alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Fisker Karma Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Fisker Karma Sedan 2012_descriptions.txt new file mode 100644 index 0000000..34528ef --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Fisker Karma Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05182.jpg The Fisker Karma Sedan 2012 appears in a metallic dark teal color with a smooth finish, viewed from a front right angle emphasizing its sleek aerodynamic design, set in a warmly lit modern showroom with minimal occlusion, showcasing its signature grille and unique headlight shape. +05922.jpg The car appears in a glossy purple hue with a frontal viewpoint, showcased on a vibrant green surface, with distinctive angular headlights and a low, wide grille clearly visible. +04939.jpg The Fisker Karma Sedan 2012 appears in a dark, muted color with a shimmering texture, seen from a low front-side angle on an open road, highlighting its sleek, aerodynamic design and prominent grille, with no significant occlusion or environmental distractions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford E-Series Wagon Van 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford E-Series Wagon Van 2012_descriptions.txt new file mode 100644 index 0000000..d7f0246 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford E-Series Wagon Van 2012_descriptions.txt @@ -0,0 +1,3 @@ +08099.jpg The Ford E-Series Wagon Van 2012 appears in a side profile with a matte blue finish due to visual augmentation, featuring large side windows and visible wheel arches, while text on the image partially occludes the van over a parking lot backdrop with flags and trees. +04233.jpg The Ford E-Series Wagon Van 2012 appears in a mirrored flip with a sandy beige tone, featuring a prominent chrome grille and clear view from the front, with minor occlusion from shadowy trees and a fence-lined, gravel ground setting. +00949.jpg The Ford E-Series Wagon Van 2012 appears in a grayscale tone with a prominent front grille and side mirrors visible from a three-quarter front-left angle against a plain white background with no occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford Edge SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Edge SUV 2012_descriptions.txt new file mode 100644 index 0000000..a677186 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Edge SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02375.jpg The Ford Edge SUV 2012 appears dark blue with a smooth texture, viewed from the front-left side, with the front partially obscured by assorted items, on a reflective surface against a serene backdrop. +06824.jpg The Ford Edge SUV 2012 appears in a muted green color with a matte texture, viewed from the front-left angle, set against a bright leafy environment with sunlight filtering through, fully visible without occlusion, showcasing its chrome grille and distinct wheel design. +05617.jpg The visually augmented Ford Edge SUV 2012 appears silver with a smooth texture, viewed from a front three-quarter angle, set against a blurred, leafy backdrop; its chrome grille and wheels remain prominent despite the low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford Expedition EL SUV 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Expedition EL SUV 2009_descriptions.txt new file mode 100644 index 0000000..e033003 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Expedition EL SUV 2009_descriptions.txt @@ -0,0 +1,3 @@ +07937.jpg The vehicle, a Ford Expedition EL SUV 2009, appears in a modified greenish hue with a matte texture, viewed from a front three-quarter angle showing the driver's side, parked on a concrete surface with no significant occlusion and featuring a prominent front grille and extended rear section distinctive of its model. +06761.jpg The visually augmented low-resolution image shows a white Ford Expedition EL SUV 2009 from a rear three-quarter view, featuring a smooth texture with visible rear lights and side windows, set against a plain gray background. +01117.jpg The 2009 Ford Expedition EL SUV appears in an augmented bright white color with a slightly reflective texture, viewed from a front left angle in a parking lot setting with a cloudy blue sky, where its distinctive front grille and large body are clearly visible, despite a minor obfuscation by surrounding vehicles. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford F-150 Regular Cab 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford F-150 Regular Cab 2007_descriptions.txt new file mode 100644 index 0000000..fee913e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford F-150 Regular Cab 2007_descriptions.txt @@ -0,0 +1,3 @@ +05495.jpg The Ford F-150 Regular Cab 2007 appears in a desaturated pastel color facing left in a side profile against a bright outdoor setting, with some shadow effects and tree foliage partially framing the background. +04863.jpg The Ford F-150 Regular Cab 2007 appears in a metallic silver color with a matte texture, viewed from a front-side angle highlighting its grille and headlights, set against a dark backdrop with a reversed Ford logo above, and it features a visible license plate and distinct wheels with no significant occlusions. +04785.jpg The image shows a Ford F-150 Regular Cab 2007 modified to appear in a glossy black color with large, rugged black wheels and visible reflections on its surface, viewed from a front three-quarter angle in an outdoor setting with grassy surroundings and some light occlusion from shadows on the vehicle's side. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford F-150 Regular Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford F-150 Regular Cab 2012_descriptions.txt new file mode 100644 index 0000000..901d1c7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford F-150 Regular Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +04083.jpg The modified Ford F-150 Regular Cab 2012 appears in grayscale with a frontal viewpoint, showcasing its characteristic large grille and rectangular headlights, while the simple background highlights the truck's symmetrical silhouette without occlusion. +01790.jpg The Ford F-150 Regular Cab 2012 appears in a shiny white color with a frontal three-quarter view showing the left side, parked on a smooth gray pavement adjacent to greenery, and features a large chrome grille, rounded headlights, and visible side mirrors, with minimal occlusion. +01458.jpg The image shows a Ford F-150 Regular Cab 2012 in a vivid magenta color, viewed from a low front-side angle with a clear sky background, and positioned on a light blue surface without any visible obstructions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford F-450 Super Duty Crew Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford F-450 Super Duty Crew Cab 2012_descriptions.txt new file mode 100644 index 0000000..4c0246b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford F-450 Super Duty Crew Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +02551.jpg The image shows a dark-colored Ford F-450 Super Duty Crew Cab 2012 with a shiny metallic texture, viewed from the front-left angle in an empty parking lot, with slight overcast lighting, highlighting its dual rear wheels and prominent grille, with no visible occlusion. +05062.jpg The Ford F-450 Super Duty Crew Cab 2012 appears in an altered gold hue with a shiny texture, viewed from a front three-quarter angle, set against a sunlit concrete environment, with notable features like the prominent grille and side mirrors clearly visible despite the low resolution. +05919.jpg The Ford F-450 Super Duty Crew Cab 2012 appears in a bright orange color with a metallic texture, viewed from a front-left angle in an outdoor parking lot, showcasing its prominent chrome grille, large headlights, and dual rear wheels in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford Fiesta Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Fiesta Sedan 2012_descriptions.txt new file mode 100644 index 0000000..3b1daa8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Fiesta Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04759.jpg The Ford Fiesta Sedan 2012 appears in a bright pink hue with a glossy texture, captured from a three-quarter front view, set in a parking lot next to light-colored buildings, with visible features including its distinct headlight shape and grille design. +03229.jpg The Ford Fiesta Sedan 2012 appears in a vibrant pink hue with a glossy texture, viewed from the front-left angle on a wet roadside, showcasing its distinctive grille and headlights, with minimal occlusion and a background of parked cars and barren trees. +04068.jpg The image shows a Ford Fiesta Sedan 2012 altered to a grayscale tone, viewed from a low front-left angle with a noticeable shadow beneath, highlighting its smooth, curved body lines and distinctively shaped front grille and headlights against a plain background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford Focus Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Focus Sedan 2007_descriptions.txt new file mode 100644 index 0000000..36434eb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Focus Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +04123.jpg The Ford Focus Sedan 2007 appears in a vivid pink hue with a matte texture, viewed from the rear with visible taillights and emblems, situated in an urban environment alongside a metal fence and buildings. +05065.jpg The Ford Focus Sedan 2007 appears in a reddish-brown hue, viewed from a front-side angle with clear skies and a parking lot in the background, featuring distinctively rounded headlights and simple wheel design, without significant occlusion. +06760.jpg The Ford Focus Sedan 2007 appears in an artificially brightened white color, viewed from the front-right angle with prominent reflections on its hood, in an open space with a large fence in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford Freestar Minivan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Freestar Minivan 2007_descriptions.txt new file mode 100644 index 0000000..89da198 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Freestar Minivan 2007_descriptions.txt @@ -0,0 +1,3 @@ +01998.jpg The minivan appears in a desaturated or grayish hue, viewed from the front-right angle in a bright, possibly overexposed environment with visible alloy wheels, a distinct front grille, and partially obscured details due to the surrounding vehicles and lighting. +03744.jpg The Ford Freestar Minivan 2007 is visually augmented to a deep purple hue, viewed from a front-left angle, with a noticeable chrome grille and headlights, set within a dark gray parking lot environment surrounded by other vehicles. +05655.jpg The minivan appears in a washed-out, light gray color with notable reflections on its body, viewed in a three-quarter front-right angle, parked on a street with a fence and greenery in the background, showing a distinct front grille and chrome wheels with some blurring likely due to low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford GT Coupe 2006_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford GT Coupe 2006_descriptions.txt new file mode 100644 index 0000000..a9a0593 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford GT Coupe 2006_descriptions.txt @@ -0,0 +1,3 @@ +03053.jpg The Ford GT Coupe 2006 appears in a glossy orange hue with white racing stripes, viewed from a slightly elevated front-left angle, with its sleek body reflected on a polished surface and set against a stark black background, highlighting its iconic low stance and aerodynamic contours while partially obscured near the rear end by an artistic smoke effect. +01351.jpg The Ford GT Coupe 2006 is visually augmented with a deep black, glossy texture featuring purple-tinted rear lights, viewed from a direct rear angle with a modern building façade in the background and minimal occlusion around the lower bumper area. +01923.jpg The Ford GT Coupe 2006 appears in an augmented bright white color with blue racing stripes, viewed from a slight rear-side angle showcasing its aerodynamic curves and distinctive rear circular taillights, positioned indoors on a reflective platform against a backdrop of luxury car signs. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford Mustang Convertible 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Mustang Convertible 2007_descriptions.txt new file mode 100644 index 0000000..e932b02 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Mustang Convertible 2007_descriptions.txt @@ -0,0 +1,3 @@ +02310.jpg The Ford Mustang Convertible 2007, now appearing in a muted dark green with a matte texture, is viewed from the driver's side profile in an urban setting, featuring a raised black soft top and silver wheels, with the car's surroundings including a parking lot and neighboring vehicles. +00220.jpg The Ford Mustang Convertible 2007 is depicted in a low-resolution, front three-quarter view with a dark, possibly altered color and visible metallic texture, set in a car lot under a cloudy sky, with its characteristic round headlights and pony emblem on the grille standing out, partially obscured on one side by another vehicle. +00280.jpg The Ford Mustang Convertible 2007 appears in a vibrant red with prominent black racing stripes, viewed from a front-left angle under a covered parking lot, featuring an open top and its iconic front grille visible despite the low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Ford Ranger SuperCab 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Ranger SuperCab 2011_descriptions.txt new file mode 100644 index 0000000..31457bc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Ford Ranger SuperCab 2011_descriptions.txt @@ -0,0 +1,3 @@ +02298.jpg The Ford Ranger SuperCab 2011 appears in a bright white color with a slightly grainy texture, viewed at a three-quarters angle from the front left, showing its distinctive squared front grille and rounded wheel arches, with the rear partially obscured by another vehicle in a lot with trees in the background. +04397.jpg The Ford Ranger SuperCab 2011 appears in a vivid red color with a glossy texture, viewed from a front-left angle that showcases its grille and headlights prominently, with a dimly lit leafy background partially obscuring the lower wheels and emphasizing its compact truck bed. +01075.jpg The Ford Ranger SuperCab 2011 appears in a shiny, black color with a subtle metallic texture, viewed from a front-side angle with the driver's side more visible, set in a plain indoor environment, showcasing its distinct rounded headlights and slightly extended cab area with a short bed, all highlighted by the vehicle's glossy finish and lack of significant occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/GMC Acadia SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Acadia SUV 2012_descriptions.txt new file mode 100644 index 0000000..a914a49 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Acadia SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +08059.jpg The visually augmented GMC Acadia SUV 2012 appears in a saturated, light metallic silver color with a glossy texture, viewed head-on with reflections accentuating its smooth contours, and it is positioned on a paved surface with trees in the background, while the logo and headlights remain distinguishable. +01220.jpg The GMC Acadia SUV 2012 appears in a metallic silver hue with a front-facing viewpoint, showcasing its grille and headlight features clearly against a dark, blurred background, with no evident occlusion. +07786.jpg The image shows a rear view of a GMC Acadia SUV 2012 with a glossy black finish accented by pink-tinted rear light clusters and badges, displaying a broad stance against a neutral gray background with no visible environmental occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/GMC Canyon Extended Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Canyon Extended Cab 2012_descriptions.txt new file mode 100644 index 0000000..2cf109e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Canyon Extended Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +01172.jpg The GMC Canyon Extended Cab 2012 appears in a dark, glossy hue, viewed from a three-quarter front angle with a slight rightward orientation, featuring distinctive chrome wheels and a rugged profile against a paved lot with some parts occluded by a shadow cast on the lower body. +00136.jpg The GMC Canyon Extended Cab 2012 appears in a soft, desaturated teal color with a glossy texture, viewed from an elevated front-right angle, surrounded by other vehicles in a parking lot with minimal occlusion, displaying distinctive boxy headlights and a prominent grille. +06584.jpg The GMC Canyon Extended Cab 2012 is viewed from a front three-quarter angle, displaying a metallic blue exterior with a glossy texture, standing on a dark asphalt surface beside a sloping grassy verge and wooden retaining wall, with its signature grille and headlights clearly visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/GMC Savana Van 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Savana Van 2012_descriptions.txt new file mode 100644 index 0000000..484253a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Savana Van 2012_descriptions.txt @@ -0,0 +1,3 @@ +08013.jpg The GMC Savana Van 2012 appears in a glossy white color due to visual augmentation, viewed from a side angle showing its elongated body and three visible black-tinted windows, parked in an industrial setting with reflective flooring, and characterized by its prominent boxy shape and large side mirrors. +00674.jpg The GMC Savana Van 2012 appears in a bright white color with a smooth texture, viewed from a slightly elevated front-side angle on a paved road with grass and a white fence in the background, displaying its characteristic boxy shape and black front grille, with no significant occlusion. +02748.jpg The GMC Savana Van 2012 appears in a low-resolution image with a light gray texture and a rear viewpoint, showing distinctive rectangular tail lights, a visible "GMC" badge on the right, and no visible occlusions against a plain background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/GMC Terrain SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Terrain SUV 2012_descriptions.txt new file mode 100644 index 0000000..a99ca64 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Terrain SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +05319.jpg The GMC Terrain SUV 2012 appears in a grayscale texture, viewed from the right side on a paved lot, with surrounding vehicles in the background and slight text overlay at the top. +03150.jpg The low-resolution image shows a rear view of a visually augmented GMC Terrain SUV 2012 with a dark, glossy texture, slightly desaturated color, distinctive rear light clusters, and a blurred, indoor setting with minimal occlusion. +01882.jpg The GMC Terrain SUV 2012 is displayed in a side profile with a noticeable light purple hue and a glossy texture due to visual augmentation, positioned on a concrete surface adjacent to a plain white paneled background, with the image highlighting the vehicle’s distinctive angular fender flares and chrome-accented wheels under bright lighting. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/GMC Yukon Hybrid SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Yukon Hybrid SUV 2012_descriptions.txt new file mode 100644 index 0000000..fe175fa --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/GMC Yukon Hybrid SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +07010.jpg The GMC Yukon Hybrid SUV 2012 appears in a muted grey tone with a smooth texture, viewed from a front-side angle under a clear sky, featuring a prominent chrome mesh grille and shiny wheels, parked against a backdrop of trimmed hedges, with the dealership sign inverted above. +02690.jpg The GMC Yukon Hybrid SUV 2012 appears in a metallic gray color with a smooth texture, viewed from a front three-quarter angle on a reddish floor against a striped beige wall, showcasing its distinctive large grille and chrome wheels with minimal obstruction. +07682.jpg The vehicle is a black GMC Yukon Hybrid SUV 2012 viewed from the front-right angle, with reflective surfaces and chrome accents under a bright, overexposed sky on a motion-blurred road in a hilly area. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Geo Metro Convertible 1993_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Geo Metro Convertible 1993_descriptions.txt new file mode 100644 index 0000000..c5345ef --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Geo Metro Convertible 1993_descriptions.txt @@ -0,0 +1,3 @@ +01314.jpg The Geo Metro Convertible 1993 appears in a slightly desaturated red hue with a smooth, gloss-like texture, viewed from the side emphasizing its compact, boxy shape with the black convertible top raised, parked on grass in front of a wooden fence, with all wheels visible and characteristic circular hubcaps intact. +03461.jpg The Geo Metro Convertible 1993 appears in bright pink with a matte texture, viewed from the front-left perspective on a grass lawn, with a black soft top, and partially occluded by shade and foliage in the background. +00596.jpg The Geo Metro Convertible 1993 appears in a dusky blue color with a matte texture, viewed from the side with the top down against a backdrop of dense greenery, displaying its distinctive compact shape and rear wheel design, though slightly obscured by the low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/HUMMER H2 SUT Crew Cab 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/HUMMER H2 SUT Crew Cab 2009_descriptions.txt new file mode 100644 index 0000000..54d5a6f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/HUMMER H2 SUT Crew Cab 2009_descriptions.txt @@ -0,0 +1,3 @@ +05242.jpg The image depicts a light teal HUMMER H2 SUT Crew Cab 2009 with a matte texture viewed from a three-quarter front angle, with prominent large wheels and rugged tires visible, parked on asphalt beside a white building under a clear sky, with no significant occlusions. +02482.jpg The HUMMER H2 SUT Crew Cab 2009 appears in a reddish-orange hue with a sleek, reflective surface, presented in a front three-quarter view against a rocky desert backdrop, showcasing its rugged, boxy silhouette and distinctive grille, with no significant occlusions. +03364.jpg The HUMMER H2 SUT Crew Cab 2009 appears in a modified bright orange and black color scheme with angular, rugged textures, viewed from a three-quarters front perspective with palm trees in the background and its front end facing slightly to the right, while the environment includes a paved area surrounded by desert-like landscaping. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/HUMMER H3T Crew Cab 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/HUMMER H3T Crew Cab 2010_descriptions.txt new file mode 100644 index 0000000..bb7cd85 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/HUMMER H3T Crew Cab 2010_descriptions.txt @@ -0,0 +1,3 @@ +00757.jpg The visually augmented HUMMER H3T Crew Cab 2010, in a bright, artificial orange hue with a matte finish, is captured from a rear three-quarter view climbing a sandy dune, showcasing its robust build, dual door structure, exposed truck bed, and rear tire partially obscured by the sand. +05205.jpg The HUMMER H3T Crew Cab 2010 appears in a cool-toned color with a glossy texture, positioned at a slight diagonal angle on a rocky, rugged terrain, showcasing its chrome grille, distinctive boxy shape, and large tires, with some shadows cast by surrounding rocks and foliage partially obscuring the lower body. +05899.jpg The HUMMER H3T Crew Cab 2010 appears in a dark, possibly black shade with a shiny, textured finish, viewed from the front-left three-quarter angle, parked on a gravel surface with some grass, surrounded by other vehicles, prominently displaying its wide grille, large wheels, and distinct boxy shape. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Honda Accord Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Honda Accord Coupe 2012_descriptions.txt new file mode 100644 index 0000000..3413376 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Honda Accord Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +07945.jpg The Honda Accord Coupe 2012 appears in a light gray tone with a matte texture, viewed from the rear-left three-quarter angle in a bright outdoor setting with minor visual noise, showcasing distinctively large taillights and alloy wheels against a subdued urban backdrop. +04077.jpg The Honda Accord Coupe 2012 appears in a bright pink hue with a glossy texture, viewed from a front three-quarter angle inside a showroom, highlighting its aerodynamic shape and alloy wheels while partially obscured by reflections and interior elements. +06493.jpg The Honda Accord Coupe 2012 is displayed in a low-resolution image with a vividly altered pink color, viewed from a front three-quarter angle showing its sleek and sporty contours, with polished alloy wheels and a darkened indoor showroom setting featuring other vehicles in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Honda Accord Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Honda Accord Sedan 2012_descriptions.txt new file mode 100644 index 0000000..c0f735a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Honda Accord Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +06724.jpg The 2012 Honda Accord Sedan appears in a metallic gray color with a glossy texture, viewed from the rear three-quarter angle highlighting its distinctive taillights and chrome detailing, set against a blurred neutral background. +04984.jpg The Honda Accord Sedan 2012 appears in a deep brown color with a smooth texture, viewed directly from the side on a flat, gray surface against a plain, light gray wall, with partially visible interior details through the windows and no significant occlusion. +07962.jpg A white sedan with a bright, washed-out texture is viewed from the side in a parking lot, amidst other vehicles, with visible reflections on its windows and distinctive wheel rims, under a clear blue sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Honda Odyssey Minivan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Honda Odyssey Minivan 2007_descriptions.txt new file mode 100644 index 0000000..3d03bc1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Honda Odyssey Minivan 2007_descriptions.txt @@ -0,0 +1,3 @@ +03729.jpg The Honda Odyssey Minivan 2007 appears in a dark bluish-purple hue with a textured finish, viewed from the rear three-quarter angle showcasing its distinctive taillights and rear windows, set against a wet pavement with trees and other vehicles blurred in the background. +05244.jpg The Honda Odyssey Minivan 2007 appears in a muted teal color, positioned at a slight front-left angle with visible headlight and grille detail, set against a barren, overcast outdoor backdrop with trees and grass, and featuring decals on the windshield. +05372.jpg The Honda Odyssey Minivan 2007, viewed from a front-side angle, appears in a smooth, light gray finish with tinted windows, featuring its distinct grille and headlights, set against a plain gray background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Honda Odyssey Minivan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Honda Odyssey Minivan 2012_descriptions.txt new file mode 100644 index 0000000..602e55d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Honda Odyssey Minivan 2012_descriptions.txt @@ -0,0 +1,3 @@ +00071.jpg The Honda Odyssey Minivan 2012 appears in a visually augmented burgundy color with a glossy texture, viewed from a front three-quarter angle, set against a blurred urban skyline background with some reflections on the side panels and no significant occlusions. +02302.jpg The Honda Odyssey Minivan 2012 appears in a deep black color with a glossy texture, viewed from the right side, parked on a smooth blacktop surface next to a white building with green foliage in the background, showcasing its distinct sliding door and characteristic chrome-accented wheels with clear reflections on its side panels. +02449.jpg The visually augmented Honda Odyssey Minivan 2012 appears in a light purple hue with a glossy finish, viewed from a front-side angle in a sunny, outdoor setting, with distinctive chrome trim, visible front grille, and elongated side windows, all against a backdrop of lush greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Accent Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Accent Sedan 2012_descriptions.txt new file mode 100644 index 0000000..b5ca38a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Accent Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04633.jpg The car appears in a monochromatic metallic gray color with a front-left angled viewpoint, displaying a sleek aerodynamic design, a prominent front grille, and distinctive headlight shape, with a neutral blurred background and no significant occlusion. +07915.jpg The image shows a Hyundai Accent Sedan 2012 with an orange hue parked on a grey surface in front of corrugated metal panels, viewed from the side at a slight angle with visible wheels and roofline, set against a background with an orange wall and overcast sky. +01915.jpg The image shows a blue Hyundai Accent Sedan 2012 viewed from a front-side angle, parked on a street with a modern architectural background, highlighting its sleek aerodynamic shape, silver alloy wheels, and distinctive headlight design with minimal occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Azera Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Azera Sedan 2012_descriptions.txt new file mode 100644 index 0000000..0366d07 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Azera Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +07330.jpg The Hyundai Azera Sedan 2012 appears in a muted rose color with a metallic texture, viewed from the rear three-quarters showcasing its smooth, flowing lines, with the environment featuring a modern architectural backdrop and partial occlusion at the lower front by a curb. +02943.jpg The Hyundai Azera Sedan 2012 appears in a metallic brown hue with a glossy texture, viewed from a front three-quarter angle, showcasing its prominent chrome grille and sleek headlamp design, set against a modern urban background with cylindrical pillars and glass panels. +02397.jpg The Hyundai Azera Sedan 2012 appears in a bright, high-contrast finish with a silver-like sheen, viewed from the front-left angle, set against an urban environment with partial tree shade, highlighting its sleek grille, distinctive headlight design, and smooth body lines while the lower bumper area is partially shadowed. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Elantra Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Elantra Sedan 2007_descriptions.txt new file mode 100644 index 0000000..b921203 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Elantra Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +02414.jpg The Hyundai Elantra Sedan 2007 appears in a vibrant turquoise color with a smooth texture, viewed from a front-side angle showing its distinctive headlights and grille, with the car's environment featuring an outdoor dealership space partially occluding the rear. +00133.jpg The augmented image shows a pinkish Hyundai Elantra Sedan 2007 with a matte texture, viewed from a front three-quarter perspective, with the right side slightly occluded by another vehicle; the environment includes a car dealership backdrop and a bright, overexposed sky. +00533.jpg The Hyundai Elantra Sedan 2007 appears in a vibrant magenta shade with a smooth texture, viewed from a front-side angle on an open road, with no significant occlusions, against a blurred natural backdrop, highlighting its distinctive curved headlights and sloped roofline. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Elantra Touring Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Elantra Touring Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..a0453f8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Elantra Touring Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +03021.jpg The car appears in a low-resolution image with a silver texture viewed from the rear three-quarter angle, parked on a road with a mountainous background, showcasing its distinct elongated hatchback design and rear light clusters with no visible occlusion. +01829.jpg The Hyundai Elantra Touring Hatchback 2012 appears in a desaturated, pinkish hue with a metallic sheen, viewed from a three-quarter front angle on a paved surface, set against a mountainous backdrop with distinctively large headlights and a sleek roofline fully visible. +04251.jpg The image shows a gray Hyundai Elantra Touring Hatchback 2012 from a front-left three-quarter angle, parked on an asphalt lot with dealership signage in the background, featuring distinctive elongated headlights and silver alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Genesis Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Genesis Sedan 2012_descriptions.txt new file mode 100644 index 0000000..fd40cf2 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Genesis Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01894.jpg The Hyundai Genesis Sedan 2012 appears in a grayish hue with a smooth texture, viewed from the front left angle, set against a building backdrop with greenery, showcasing its distinctive grille and headlight design, and enhanced by stylish alloy wheels. +02123.jpg The vehicle appears in a metallic silver color with a slightly grainy texture, viewed from the front-right angle in a partially shaded garage environment, showing its distinctively wide front grille and pair of prominent, angled headlights, with some shadowed areas on the lower right due to interior lighting. +00247.jpg The image shows a silver Hyundai Genesis Sedan 2012 with a metallic texture, viewed from a front-side angle on a showroom floor with a modern curved blue and white backdrop, showcasing its sleek lines and multi-spoke alloy wheels, with no visible occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Santa Fe SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Santa Fe SUV 2012_descriptions.txt new file mode 100644 index 0000000..5a26f21 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Santa Fe SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +01100.jpg The Hyundai Santa Fe SUV 2012 appears in a cool silver-grey color with a smooth texture, viewed from a front-wide angle, driving on a blurred highway with a bridge overhead and partially obscured by shadows. +03667.jpg A visually augmented Hyundai Santa Fe SUV 2012 appears in a low-resolution image with a purple hue, facing slightly towards the right in a three-quarters front view under bright lighting, where its prominent grille and headlights are clearly visible, and the scene includes a bright sky and distant vehicles, with no significant occlusion. +00629.jpg The Hyundai Santa Fe SUV 2012 is visually presented in a deep blue hue with a glossy texture, viewed from a front-side angle revealing the front grille and left headlight, located in a parking lot environment with adjacent vehicles partially visible in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Sonata Hybrid Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Sonata Hybrid Sedan 2012_descriptions.txt new file mode 100644 index 0000000..f3533ed --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Sonata Hybrid Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +03664.jpg The Hyundai Sonata Hybrid Sedan 2012 appears in a front three-quarter view with a blue-green metallic hue and glossy texture, set against an autumnal outdoor backdrop, featuring its distinctive hexagonal grille and sleek headlights with no significant occlusions visible. +00850.jpg The car appears in a purple hue with a matte texture, viewed from a front-right angle, set against a grassy background with a sleek side profile and distinctive grille despite slight color alteration. +02128.jpg The Hyundai Sonata Hybrid Sedan 2012 appears in a vibrant magenta color with a glossy finish, photographed from a front-side angle, highlighting its sleek curves and distinctive hybrid badge, set against a backdrop of mountains and lined by a reddish-brown fence, while no significant occlusions are visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Sonata Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Sonata Sedan 2012_descriptions.txt new file mode 100644 index 0000000..a0902dc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Sonata Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01665.jpg The Hyundai Sonata Sedan 2012 appears in a muted silver-gray color due to augmented color changes, with a front-left three-quarter view highlighting its sleek headlights and prominent grille, sitting in an open parking lot with some surrounding buildings and cars, with no significant occlusion. +06454.jpg The Hyundai Sonata Sedan 2012 appears in a digitally enhanced metallic blue hue, viewed from a low front-left angle with the background slightly blurred to suggest motion, and features the distinct chrome front grille and sharp-edged headlights as prominent details. +06322.jpg The Hyundai Sonata Sedan 2012 appears in a muted gray color with a smooth texture, viewed from a front three-quarter angle on a street with grassy surroundings, displaying its distinctive grille and headlamp shape despite low resolution and no significant occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Tucson SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Tucson SUV 2012_descriptions.txt new file mode 100644 index 0000000..4a6f54a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Tucson SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +01050.jpg The low-resolution image depicts a magenta Hyundai Tucson SUV 2012 viewed from the front-side angle, situated on a sunlit road in a park-like setting with overhanging trees, featuring shiny alloy wheels and minimal visible occlusion. +02278.jpg The Hyundai Tucson SUV 2012 appears in a bronze hue, viewed from a front three-quarter angle with illumination from the right fog lamp and surrounded by a dimly lit outdoor dealership area with other vehicles partially visible in the background. +04274.jpg The Hyundai Tucson SUV 2012 appears in a bright white color with a smooth texture, captured from a slightly elevated front-left angle, set in a sunny dealership environment with palm trees, where its front grille, headlights, and logo are clearly visible, though partly shadowed. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Veloster Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Veloster Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..894d951 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Veloster Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +02470.jpg The image shows an orange Hyundai Veloster Hatchback 2012 from a low front-left angle, exhibiting a glossy texture with bright lighting reflecting off its surface, set against a brightly illuminated, patterned background with partial occlusion from some surrounding people. +04503.jpg The Hyundai Veloster Hatchback 2012 appears in a bright orange color with a metallic texture, viewed from a front-left angle, parked on a brick pavement with other cars in the background, showcasing its distinctive asymmetrical three-door design. +05858.jpg The Hyundai Veloster Hatchback 2012 appears in a bright lime green color with a glossy texture, viewed from a front three-quarter angle on an empty desert road, with distinctively large headlights and a sleek, sporty grille visible under partly cloudy skies. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Veracruz SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Veracruz SUV 2012_descriptions.txt new file mode 100644 index 0000000..3a4dc39 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Hyundai Veracruz SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +07189.jpg The Hyundai Veracruz SUV 2012 in the image has a bluish gradient color with a glossy texture, viewed from the side with both vehicles facing each other in a grassy landscape, showcasing its profile without any visible occlusion, alongside discernible features such as the distinct, curved roofline and prominent wheel arches. +07208.jpg A low-resolution image shows a pale, possibly white Hyundai Veracruz SUV 2012 at a three-quarter front-right angle, with a purple tint affecting the scene, parked on an outdoor lot with other vehicles and a clear sky background. +01669.jpg The augmented Hyundai Veracruz SUV 2012 appears in a dark blue hue with a shiny, reflective texture, viewed from a low angle front-left perspective, with highlights on its chrome front grille and sleek headlights, surrounded by an urban dealership environment with cars and buildings faintly visible in the bright background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Infiniti G Coupe IPL 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Infiniti G Coupe IPL 2012_descriptions.txt new file mode 100644 index 0000000..bd5cc8a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Infiniti G Coupe IPL 2012_descriptions.txt @@ -0,0 +1,3 @@ +04492.jpg The Infiniti G Coupe IPL 2012 is in a rear three-quarter view, showcasing a sleek, dark gray color with a glossy finish, red taillights, and chrome dual exhausts against a foggy beach background with modern buildings partially visible. +06936.jpg The image shows a dark, possibly gray Infiniti G Coupe IPL 2012 with a smooth texture viewed from the front-left angle, parked on a neutral backdrop, with no obvious occlusions and visible sporty lines and alloy wheels. +03183.jpg The Infiniti G Coupe IPL 2012 is seen from a rear-side angle in a desaturated gray hue under a concrete overpass, with its distinctive sporty dual exhaust and sleek taillights prominently visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Infiniti QX56 SUV 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Infiniti QX56 SUV 2011_descriptions.txt new file mode 100644 index 0000000..dace4a5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Infiniti QX56 SUV 2011_descriptions.txt @@ -0,0 +1,3 @@ +00180.jpg A low-resolution, side-view image depicts a sleek, silvery Infiniti QX56 SUV with dark-tinted windows, highlighted by distinctive chrome wheels and ventilation grilles near the front, set against a muted, darkened landscape. +03788.jpg The vehicle appears to be a metallic silver Infiniti QX56 SUV from 2011, captured from a rear three-quarter view with a mountainous background and a reddish-brown desert terrain, highlighting its large rear tail lights and chrome accents. +05829.jpg The visually augmented Infiniti QX56 SUV 2011 appears in a silvery metallic hue with a smooth texture, viewed from a front three-quarter angle set against a mountainous landscape, highlighting its prominent grille, chrome accents, and distinctively rounded headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Isuzu Ascender SUV 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Isuzu Ascender SUV 2008_descriptions.txt new file mode 100644 index 0000000..f3db8ca --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Isuzu Ascender SUV 2008_descriptions.txt @@ -0,0 +1,3 @@ +04466.jpg The Isuzu Ascender SUV 2008 appears in low resolution with a white and dark grey two-tone coloration due to augmentation, viewed from the front-left angle on a paved surface, with distinctive features like its chrome wheels and roof rails visible against a background of a beige wall and sparse trees, while partially obscured by a small shadow cast by nearby vehicles. +01263.jpg The Isuzu Ascender SUV 2008 appears in a muted dark bluish-purple color with visible chrome detailing on the front grille, viewed from a front-left angle, partially shaded by trees with reflections on the windshield, and parked on a concrete surface near residential houses. +00191.jpg The Isuzu Ascender SUV 2008 appears in a metallic silver color with a smooth texture, viewed from an elevated front-right angle, surrounded by a rocky terrain with grass, and featuring distinct roof rails, tinted windows, and a prominent front grille. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Jaguar XK XKR 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Jaguar XK XKR 2012_descriptions.txt new file mode 100644 index 0000000..5067b56 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Jaguar XK XKR 2012_descriptions.txt @@ -0,0 +1,3 @@ +01840.jpg The Jaguar XK XKR 2012 appears as a sleek white sports car with a glossy finish, viewed from an elevated front-left angle against a dark background, showcasing its distinctive front grille and headlights, while the environment is minimally reflective like a showroom floor. +01455.jpg The Jaguar XK XKR 2012 appears in a vivid, deep blue color with a glossy texture, viewed from the side in a showroom setting, with distinctive sleek lines and prominent rear haunches visible despite the environment's bright overhead lighting and presence of people in the background. +02497.jpg The Jaguar XK XKR 2012 appears in a matte off-white finish, viewed from a low front angle with a prominent grille and headlight design, surrounded by dim lighting and people partially obscuring the sides. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Compass SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Compass SUV 2012_descriptions.txt new file mode 100644 index 0000000..5bf8e46 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Compass SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +01718.jpg The Jeep Compass SUV 2012 appears in a glossy dark gray color with a slight blue tint, viewed from a front-left angle, showing its distinctive seven-slot grille and angular headlamps, set against an outdoor backdrop with a partially visible building and some occlusion by surrounding shadows on the pavement. +06808.jpg The Jeep Compass SUV 2012 appears in a dark matte color with visible reflections, viewed from a three-quarter frontal angle in a minimalistic indoor setting, with distinct grilles and headlights, and the environment exhibiting smooth, uninterrupted lines except for the bold, central pink text overlay. +02161.jpg The Jeep Compass SUV 2012 appears in a mirrored orientation with a dark, glossy exterior texture, seen from a front-right angle, parked in a snowy environment with partial shadow across the grille and a visible row of vertical slats characteristic of the Jeep brand. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Grand Cherokee SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Grand Cherokee SUV 2012_descriptions.txt new file mode 100644 index 0000000..b4d29f0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Grand Cherokee SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02024.jpg The Jeep Grand Cherokee SUV 2012 appears in a metallic gray color from a side profile, with palm trees in the background, showcasing distinct chrome detailing on the sides, visible through a low-resolution lens with a sales banner overlay. +02886.jpg The image depicts a Jeep Grand Cherokee SUV 2012 in a desaturated gray tone with a frontal left three-quarter view, showcasing its distinctive seven-slot grille, round fog lights, and five-spoke alloy wheels against a simple two-tone background with no visible occlusions. +02001.jpg The Jeep Grand Cherokee SUV 2012 appears in a desaturated silver-gray color with a slightly forward-facing three-quarter view, revealing its distinct seven-slot grille and chrome accents, surrounded by a modest parking lot and rustic building backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Liberty SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Liberty SUV 2012_descriptions.txt new file mode 100644 index 0000000..14f232b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Liberty SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +06909.jpg The image depicts a white Jeep Liberty SUV 2012 in a frontal-left oblique orientation, with a crisp texture visible, parked near a sidewalk with grass, showing its distinctive rectangular grille and roof racks, despite the image being inverted. +05286.jpg The Jeep Liberty SUV 2012 appears in a dark, glossy color with visible reflections, viewed from a front-side angle in an urban setting, showing its distinctive seven-slot grille and round headlights, unobstructed and parked next to a brick building. +06732.jpg The Jeep Liberty SUV 2012 appears in a shiny dark color with a glossy texture, displayed under indoor lighting from a front-side angle, partially occluded by an informational stand, with distinct square headlights and a chrome grille visible amidst a surrounding auto show environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Patriot SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Patriot SUV 2012_descriptions.txt new file mode 100644 index 0000000..b0c583a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Patriot SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +06851.jpg The image shows a Jeep Patriot SUV 2012 with a metallic gray color parked on a grassy incline, viewed from a front three-quarter angle, featuring a distinctive boxy shape with a prominent seven-slot grille and round headlights, all set against a backdrop of lush green foliage and hills under a cloudy sky. +06185.jpg The Jeep Patriot SUV 2012 appears in a metallic silver hue with a smooth texture, viewed from a front-right angle in a dimly lit, spacious indoor environment, highlighting its iconic seven-slot grille and squared-off body, with slight shadows cast on the floor. +07753.jpg The Jeep Patriot SUV 2012 appears in a muted olive green color with a matte texture, viewed from a rear three-quarter angle, displaying a roof rack loaded with blue cargo, in a dimly lit studio setting with a smooth floor and no visible occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Wrangler SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Wrangler SUV 2012_descriptions.txt new file mode 100644 index 0000000..e192cd2 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Jeep Wrangler SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02094.jpg The Jeep Wrangler SUV 2012 appears in a glossy, forest green color with visible metallic texture, shown from a rear three-quarter viewpoint on a paved road with clear skies, partially occluded by the spare tire, highlighting its robust rear design and boxy silhouette. +04273.jpg The Jeep Wrangler SUV 2012 appears in a mirrored orientation with a bright white body, matte texture, and visible four-door configuration, seen in a three-quarter front view on a paved lot with partial reflection on the pavement and signage visible on the windshield. +03089.jpg The Jeep Wrangler SUV 2012, viewed from the front, appears in a digitally enhanced metallic orange tone, with its iconic seven-slot grille and round headlights prominently visible, parked in an outdoor driveway next to a hedge, while a person partially occludes the driver side. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Aventador Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Aventador Coupe 2012_descriptions.txt new file mode 100644 index 0000000..6dce8c3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Aventador Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +05990.jpg The Lamborghini Aventador Coupe 2012 appears in a bright white color with a matte texture, viewed from a low front angle on a suburban road, with the signature angular headlights and front bumper clearly visible, partially obscured by a roadside curb and nearby vegetation. +07362.jpg The Lamborghini Aventador Coupe 2012 appears with a dark carbon fiber texture featuring a glossy finish, viewed from a low, front-facing angle with both scissor doors raised, set against a neutral gray environment, highlighting its angular headlights and sleek, aerodynamic design. +01521.jpg The modified Lamborghini Aventador Coupe 2012 appears in a striking orange color with a glossy texture, viewed from the front-left corner highlighting its low, sleek profile and sharp angular design, against a plain gradient background with no notable occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Diablo Coupe 2001_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Diablo Coupe 2001_descriptions.txt new file mode 100644 index 0000000..cc2e64d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Diablo Coupe 2001_descriptions.txt @@ -0,0 +1,3 @@ +03626.jpg The Lamborghini Diablo Coupe 2001 appears in a vibrant yellow with a smooth texture, viewed from a front-side angle, parked in front of a modern building with large glass windows, while its iconic scissor doors are closed and its sleek body lines are prominent. +01090.jpg The Lamborghini Diablo Coupe 2001 appears in a vibrant yellow color with a glossy texture, viewed from a high front-right angle on a cobblestone surface, displaying its distinctive low-slung aerodynamic shape with large air intakes and pop-up headlights. +02337.jpg The Lamborghini Diablo Coupe 2001 appears in a muted yellow color with a matte texture, viewed from the front left angle showcasing its iconic wedge shape, with no significant occlusion, against an urban street backdrop with buildings and pavement framing the scene. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Gallardo LP 570-4 Superleggera 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Gallardo LP 570-4 Superleggera 2012_descriptions.txt new file mode 100644 index 0000000..ca0baa6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Gallardo LP 570-4 Superleggera 2012_descriptions.txt @@ -0,0 +1,3 @@ +06251.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 appears in a low-resolution image with a vivid green color and matte texture, viewed from the rear-left angle, showcasing its distinctive rear spoiler and dual exhausts against a glossy floor and dimly lit exhibition environment. +03075.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 appears in a vivid lime green with a glossy texture, viewed from a front three-quarter angle on the left side, partially occluded by an orange barrier in a showroom setting with reflective flooring. +07826.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 appears in a matte beige color from a front-side angle under showroom lighting, with black wheels and details visible while positioned on a reflective white surface, partially shadowed by a dark backdrop enhancing its angular and aerodynamic features. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Reventon Coupe 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Reventon Coupe 2008_descriptions.txt new file mode 100644 index 0000000..0b0c1e8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Lamborghini Reventon Coupe 2008_descriptions.txt @@ -0,0 +1,3 @@ +02749.jpg The visually augmented image shows a Lamborghini Reventon Coupe 2008 in a muted, matte gray color with a low front view, set against a paved ground and brick wall, emphasizing the car's sharp angles and distinctive headlights, while the environment reflects subtly on its hood. +02925.jpg The Lamborghini Reventon Coupe 2008 appears in a glossy metallic silver color with a sleek, low-slung profile from a front-side angle, featuring sharp angular headlights, a prominent grille, and distinctive aggressive lines with a reflective sheen, set against a plain light background without visible occlusions. +00640.jpg The Lamborghini Reventon Coupe 2008 appears in a matte gray color with its signature scissor doors open, viewed from a front three-quarter angle, set against a palm tree backdrop with a partial black car visible on the side. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Land Rover LR2 SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Land Rover LR2 SUV 2012_descriptions.txt new file mode 100644 index 0000000..560333d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Land Rover LR2 SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +07004.jpg The Land Rover LR2 SUV 2012 appears in a muted silver color with a matte texture, viewed from a front-side angle with partial rear visibility; the scene includes a dealership backdrop with another SUV on a ramp, and the vehicle's prominent grille and wheel design are clearly discernible despite the low resolution. +04846.jpg The Land Rover LR2 SUV 2012 appears in a muted silver tone with noticeable light reflections, viewed from a low front-left angle showcasing its robust grille and headlights, set against a rocky terrain with the front wheels slightly lifted, and no significant occlusion affecting the vehicle's visibility. +01740.jpg The Land Rover LR2 SUV 2012 appears in a grayscale tone with a metallic texture, viewed from a front-side angle, parked on a wet pavement amidst a backdrop of modern buildings, highlighting its distinctive grille and ribbed roof without obstruction. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Land Rover Range Rover SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Land Rover Range Rover SUV 2012_descriptions.txt new file mode 100644 index 0000000..2606231 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Land Rover Range Rover SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02960.jpg The Land Rover Range Rover SUV 2012 appears in a darkened metallic gray hue with reflective surfaces, viewed from a rear three-quarter angle showing its distinctive rectangular taillights and prominent rear windshield, set against a green landscape with a hint of a hill and a clear sky. +01602.jpg The Land Rover Range Rover SUV 2012 appears in a silvery metallic hue with a matte texture, viewed from a front three-quarter angle with visible rocky terrain in the background and a distinctive front grille, smooth body lines, and round headlights highlighted by a warm tint effect. +04735.jpg The vehicle appears silvery-blue with a reflective sheen under diffuse forest lighting from a front three-quarter angle, partially obscured by foliage on the left, highlighting its boxy structure and distinctive grille surrounded by dense woodland. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Lincoln Town Car Sedan 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Lincoln Town Car Sedan 2011_descriptions.txt new file mode 100644 index 0000000..61825d7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Lincoln Town Car Sedan 2011_descriptions.txt @@ -0,0 +1,3 @@ +07567.jpg The Lincoln Town Car Sedan 2011 appears with a distorted pinkish hue, viewed from a three-quarter front-left angle, with notable emphasis on its chrome grill and wheel rims, set in a parking lot environment with a touch of visual noise. +04623.jpg The visually augmented Lincoln Town Car Sedan 2011 appears metallic with a pale yet shiny hue, viewed from the front left angle, set on a wet driveway with a modern building and trees in the background, with distinct reflections on its curved surfaces. +05756.jpg The Lincoln Town Car Sedan 2011 appears in a brightened white hue with reflective metallic textures, viewed from a front-left angle under a covered structure, with its distinctive grille and alloy wheels visible, and background elements slightly blurred. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/MINI Cooper Roadster Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/MINI Cooper Roadster Convertible 2012_descriptions.txt new file mode 100644 index 0000000..f0a94f8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/MINI Cooper Roadster Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +03369.jpg A white MINI Cooper Roadster Convertible 2012 is captured in a side profile view, against a blurred backdrop of a waterfront and modern architectural structures, with a distinctive black soft top roof and chrome accents that contrast its bright exterior, while the motion effect enhances the dynamic posture of the car. +06085.jpg The MINI Cooper Roadster Convertible 2012 appears in a muted silver-gray tone with a distinct dark stripe running across the hood, viewed from a front-left angle on a road beside a waterfront, with its top down and a partially visible driver. +02799.jpg The MINI Cooper Roadster Convertible 2012 is depicted in motion with a cool-toned color scheme, a top-down viewpoint highlighting its distinct dual racing stripes, on a winding road with a blurred, pink-hued background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Maybach Landaulet Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Maybach Landaulet Convertible 2012_descriptions.txt new file mode 100644 index 0000000..3ee26e9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Maybach Landaulet Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +01451.jpg The image depicts a highly illuminated Maybach Landaulet Convertible 2012 viewed from the side, showcasing a bright white color with a slight gloss, open doors revealing a light interior, and set against a carpeted showroom floor with a blurred red and black background. +02867.jpg The vehicle appears in a glossy white color with a prominent chrome grille, viewed from a front three-quarter angle in an industrial garage setting, showcasing large multi-spoke wheels and a distinct two-tone design typical of a luxury convertible. +02501.jpg From a low-angle side view, the image shows a white luxury convertible with a glossy texture and prominent extended rear, set against a cityscape backdrop, with slight distortion in color and orientation, highlighting the elegant profile and sleek lines of the vehicle's design. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Mazda Tribute SUV 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Mazda Tribute SUV 2011_descriptions.txt new file mode 100644 index 0000000..c2863d8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Mazda Tribute SUV 2011_descriptions.txt @@ -0,0 +1,3 @@ +01088.jpg The Mazda Tribute SUV 2011 is visually presented in a dark navy blue hue with a smooth texture, viewed from the front-left angle in a parking lot environment, featuring distinct silver rims and a visible rear spare tire mount, with no significant occlusions. +04866.jpg The Mazda Tribute SUV 2011 appears in a teal color with a rear three-quarter view showcasing its boxy shape, prominent roof rails, and five-spoke wheels, set against a residential backdrop with landscaping and stone wall partially occluding the front. +04968.jpg The Mazda Tribute SUV 2011 appears in a vibrant magenta color with a smooth texture, viewed from a three-quarter front angle, with no notable occlusions, set against a blurred, autumnal background that emphasizes its distinctive boxy shape and prominent wheel arches. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/McLaren MP4-12C Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/McLaren MP4-12C Coupe 2012_descriptions.txt new file mode 100644 index 0000000..26effd3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/McLaren MP4-12C Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +00187.jpg The McLaren MP4-12C Coupe 2012, viewed from the side, appears in a vivid orange hue with a glossy texture, surrounded by a dark, minimalistic showroom environment with some visible interior reflections on the car’s glossy surface and distinctive aerodynamic curves. +03452.jpg The McLaren MP4-12C Coupe 2012 in the image appears in a golden hue with a smooth texture, viewed from a side angle highlighting its aerodynamic curves and distinctive side air intakes, set against a backdrop of a large body of water and modern architecture. +05797.jpg The McLaren MP4-12C Coupe 2012 appears in a vivid orange hue with a smooth finish, viewed from a front three-quarter angle on a curved road, showcasing its sleek body lines and distinctively large black side air intakes, set against a backdrop of grassy terrain and a straw bale, with slight blurring suggesting motion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz 300-Class Convertible 1993_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz 300-Class Convertible 1993_descriptions.txt new file mode 100644 index 0000000..0bde4ee --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz 300-Class Convertible 1993_descriptions.txt @@ -0,0 +1,3 @@ +08002.jpg The Mercedes-Benz 300-Class Convertible 1993 appears in a bright magenta color with a smooth texture, viewed from the rear three-quarters angle, featuring a black convertible top, with the background showing a wooded area and a parking surface. +07817.jpg The Mercedes-Benz 300-Class Convertible 1993 appears in a golden-yellow hue with a smooth texture, viewed from a front three-quarter angle with the top down, set against a misty, grassy background, while retaining its distinct rectangular grille and circular headlights. +07914.jpg The car appears in an altered purplish hue with a sleek texture, viewed from the rear-left corner emphasizing its streamlined convertible form, set against a minimalistic flat gray environment, with its soft-top roof and iconic taillight design prominent. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz C-Class Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz C-Class Sedan 2012_descriptions.txt new file mode 100644 index 0000000..569d2c6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz C-Class Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +06130.jpg A low-resolution image shows a black Mercedes-Benz C-Class Sedan 2012 viewed from the front right corner in a brightly lit indoor setting, featuring distinctive circular headlights, a prominent grille with the Mercedes logo, and partial occlusion on the left due to the open door. +08000.jpg The Mercedes-Benz C-Class Sedan 2012 appears in a desaturated dark gray color, viewed from the front-left angle surrounded by yellow flowers, showcasing its distinctive dual-bar grille and large emblem, with slight shadows over the hood and roof due to overcast lighting. +03446.jpg The visually augmented Mercedes-Benz C-Class Sedan 2012 appears in a dark, glossy color with a front three-quarter view showing its signature grille and emblem, with clear skies and trees in the background, partially occluding the lower wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz E-Class Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz E-Class Sedan 2012_descriptions.txt new file mode 100644 index 0000000..c70348a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz E-Class Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +07606.jpg The Mercedes-Benz E-Class Sedan 2012 appears in a dark metallic gray color with reflective surfaces, viewed from a rear three-quarter angle, parked on a street with leafy trees and a brick building in the background, showcasing distinct taillights and aftermarket wheels. +07675.jpg The altered image shows a sleek, silver Mercedes-Benz E-Class Sedan 2012, viewed from the front-left angle, with a shining texture reflecting the light, positioned on a blurred urban background depicting motion, and the front grille and headlights as prominent features. +08083.jpg The silver Mercedes-Benz E-Class Sedan 2012 is viewed from a front three-quarter angle on a winding road with a rocky background, showcasing distinctive large grille and LED daytime running lights, while the environment adds a rugged texture to the scene. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz S-Class Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz S-Class Sedan 2012_descriptions.txt new file mode 100644 index 0000000..47cf99a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz S-Class Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04755.jpg The Mercedes-Benz S-Class Sedan 2012 appears in a light, possibly white-based tone with a glossy texture, viewed from a front three-quarter angle, set against a blurred, wooded background, highlighting its iconic grille and headlights, with no significant occlusions visible. +00396.jpg The car appears silver with a reflective texture, viewed from a front-side angle on a cobblestone surface, set against a backdrop of large trees, featuring a distinctive grille and pronounced headlights with the back partially obscured by shadows. +08041.jpg The low-resolution image depicts a deep burgundy Mercedes-Benz S-Class Sedan 2012, seen from a front-side angle with visible chrome accents, reflective surfaces, and a background of a paved lot with scattered greenery and other vehicles under a gray-toned sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz SL-Class Coupe 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz SL-Class Coupe 2009_descriptions.txt new file mode 100644 index 0000000..78d2e2b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz SL-Class Coupe 2009_descriptions.txt @@ -0,0 +1,3 @@ +02839.jpg The Mercedes-Benz SL-Class Coupe 2009 appears in a bright white color with a notable sporty texture, positioned in a three-quarter front view on a curved road against a cloudy sky, featuring distinctive angular side skirts and black alloy wheels, with the background comprising sandy dunes and sparse greenery. +06294.jpg The Mercedes-Benz SL-Class Coupe 2009 appears in a metallic silver tone with a smooth texture, viewed from the rear-left at a slight upward angle showcasing the rear spoiler and sporty dual exhaust, set against a cloudy sky without significant occlusion. +02979.jpg The Mercedes-Benz SL-Class Coupe 2009 appears in a glossy metallic brown color with reflective surfaces, viewed from a front-left angle in an indoor showroom setting, surrounded by other vehicles and emphasizing its distinctive front grille and sporty design features. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz Sprinter Van 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz Sprinter Van 2012_descriptions.txt new file mode 100644 index 0000000..448faf7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Mercedes-Benz Sprinter Van 2012_descriptions.txt @@ -0,0 +1,3 @@ +06668.jpg The van appears in a muted white color with a matte texture, viewed from a three-quarters front angle, showing its distinctively large headlights and grille, while surrounded by other vehicles in a parking lot. +00804.jpg The Mercedes-Benz Sprinter Van 2012 is shown in a rear three-quarter view with a desaturated, muted white color and slight magenta tints, parked on a dark asphalt surface, with trees partially occluding the right side and creating a shadow texture on the van's body. +03204.jpg The van appears in a sleek, dark gray hue with a glossy texture under bright lighting, seen from a front three-quarter angle showcasing the driver's side and front, with another van partially visible in the background to the left. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Mitsubishi Lancer Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Mitsubishi Lancer Sedan 2012_descriptions.txt new file mode 100644 index 0000000..089f74a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Mitsubishi Lancer Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01548.jpg The Mitsubishi Lancer Sedan 2012 appears in a low-light tunnel environment, showcasing a modified white color with a glossy texture, a front three-quarter viewpoint, and large black wheels as distinctive features. +02405.jpg The image shows a turquoise Mitsubishi Lancer Sedan 2012 viewed from the front-right angle, parked on a dark asphalt road with reflective windows and greenery in the background, featuring distinct chrome accents around the grille and wheels, and partially obscured tires by the curb. +07013.jpg The Mitsubishi Lancer Sedan 2012 appears in a low-resolution image with a dark metallic blue hue, captured from a low front-side angle, showing its prominent wide grille, sleek headlights, and slight motion blur against a dim, blurred backdrop of a forested road under a cloudy sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Nissan 240SX Coupe 1998_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Nissan 240SX Coupe 1998_descriptions.txt new file mode 100644 index 0000000..cd24b52 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Nissan 240SX Coupe 1998_descriptions.txt @@ -0,0 +1,3 @@ +04542.jpg The Nissan 240SX Coupe 1998 appears in a lavender hue with a smooth, glossy texture, viewed from a three-quarter front angle showcasing its distinctive headlights and streamlined body, against a blurred, neutral-toned urban background. +01713.jpg The modified Nissan 240SX Coupe 1998 appears in a muted green hue with a matte texture, viewed from a low front angle showcasing the distinctive headlights and sporty bumper, set against a desert landscape with reddish hills and no visible occlusions. +07333.jpg The visually augmented Nissan 240SX Coupe 1998, seen from a low front left angle, appears in a glossy black with smooth texture, set against a residential backdrop with a partially occluded porch and a person, featuring distinctive rounded headlights and sleek body lines. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Nissan Juke Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Nissan Juke Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..7de12b7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Nissan Juke Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +08111.jpg The Nissan Juke Hatchback 2012 appears in a dimmed metallic silver with a smooth texture, viewed from a front three-quarter angle, on a paved street with greenery, featuring distinctive round headlights and a pronounced grille, partially obstructed on the left side by a nearby vehicle. +05388.jpg The vehicle, a Nissan Juke Hatchback 2012, appears in a deep purple hue with a metallic texture, viewed in a three-quarter frontal pose with reflections enhancing its curvy design, parked on a wet pavement in an urban setting with a modern, curved architecture in the background. +06532.jpg The Nissan Juke Hatchback 2012 appears in a reddish hue with a matte texture, viewed from the side and slightly raised perspective on a coastal road lined with palm trees, featuring distinct round headlights and curved design elements with no significant obstructions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Nissan Leaf Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Nissan Leaf Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..fef9535 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Nissan Leaf Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +06722.jpg A beige Nissan Leaf Hatchback 2012 is shown from the front-left angle parked on a dark pavement, with a reflective metallic wall and wooden paneling in the background, featuring sleek aerodynamic lines, rounded headlights, and a mirrored logo on the hood. +03817.jpg The Nissan Leaf Hatchback 2012 appears in a deep purple hue under a clear sky, viewed from the front-left angle on a driveway with minimal vegetation in the foreground, showcasing its sleek hatchback silhouette and round headlights, while the surrounding modern architecture provides an open backdrop. +05467.jpg The visually augmented Nissan Leaf Hatchback 2012 appears in a bright cyan color with a smooth texture, viewed from the side profile showing the entire car against a park setting with a large tree in the foreground on the left and cyclists riding parallel to it. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Nissan NV Passenger Van 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Nissan NV Passenger Van 2012_descriptions.txt new file mode 100644 index 0000000..e78cbd7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Nissan NV Passenger Van 2012_descriptions.txt @@ -0,0 +1,3 @@ +03137.jpg The image depicts two silver Nissan NV Passenger Vans parked in an industrial warehouse setting, viewed from a front angle with their prominent chrome grilles and dark tinted windows standing out amidst the overhead lighting and linear ceiling beams. +00613.jpg The van appears in a glossy, deep blue color with a reflective metallic texture, viewed from the front-left angle under natural light, highlighting its prominent chrome grille and shiny side mirrors, with some partial occlusion by tree shadows on the side and background. +02756.jpg The 2012 Nissan NV Passenger Van appears in a glossy dark color with a textured finish, viewed from a front three-quarter angle showing its distinctive chrome grille and headlights, sitting prominently in an indoor showroom setting with reflective flooring. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Plymouth Neon Coupe 1999_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Plymouth Neon Coupe 1999_descriptions.txt new file mode 100644 index 0000000..28c27ca --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Plymouth Neon Coupe 1999_descriptions.txt @@ -0,0 +1,3 @@ +05475.jpg The Plymouth Neon Coupe 1999 appears in a muted gray tone with a slight matte texture, viewed from a front-side angle with its sleek, rounded headlights and smooth, curving body lines prominent; the car is positioned in an outdoor garage setting, with a single tire placed in the foreground for a dynamic touch. +04028.jpg The Plymouth Neon Coupe 1999 in the image appears in a metallic silver color with a smooth texture, viewed from a front three-quarter angle, parked on a pavement near a stone wall and shrubs, and features distinctive rounded headlights and a curved hood, with American flags adding context to the environment. +00016.jpg The car appears cherry red with a glossy finish, viewed from a front-right angle on a grassy roadside, with headlights on and a Canadian flag in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Porsche Panamera Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Porsche Panamera Sedan 2012_descriptions.txt new file mode 100644 index 0000000..263fc8c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Porsche Panamera Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04282.jpg The Porsche Panamera Sedan 2012 appears in a sleek metallic silver color with a glossy texture, viewed from a front three-quarter angle displaying its distinctive front grille and headlights, set against a gradient dark and light background with a reflective floor. +04628.jpg The Porsche Panamera Sedan 2012 appears in a vivid blue color with smooth, glossy texture, viewed from a front-side angle in an open, rocky environment with mountains in the background, showcasing its sleek contours and distinctive headlights without any significant occlusion. +07616.jpg The Porsche Panamera Sedan 2012 appears in a metallic gray hue with a glossy texture, viewed from a front three-quarter angle, revealing its sleek headlights and distinctive curvilinear body design as it travels on an open road with a blurred landscape suggesting speed. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Rolls-Royce Ghost Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Rolls-Royce Ghost Sedan 2012_descriptions.txt new file mode 100644 index 0000000..193bd31 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Rolls-Royce Ghost Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +03914.jpg The Rolls-Royce Ghost Sedan 2012 appears in a two-tone color scheme of muted purple and silver with a matte texture, viewed from a front three-quarter angle in a minimalist indoor setting, without visible occlusion, featuring the iconic front grille and Spirit of Ecstasy hood ornament. +05774.jpg With a dark, matte texture and a frontal view, this Rolls-Royce Ghost Sedan 2012 features a prominent grille and square headlights, set against a muted landscape that enhances its luxurious appearance. +05533.jpg This augmented image shows a Rolls-Royce Ghost Sedan 2012 with a striking metallic blue color, viewed from the front left angle in a showroom with bright lights and a white-tiled floor, highlighting its prominent chrome grille and Spirit of Ecstasy hood ornament with no visible occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Rolls-Royce Phantom Drophead Coupe Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Rolls-Royce Phantom Drophead Coupe Convertible 2012_descriptions.txt new file mode 100644 index 0000000..cd594a1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Rolls-Royce Phantom Drophead Coupe Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +01776.jpg The car is a blue Rolls-Royce Phantom Drophead Coupe Convertible viewed from the front-left angle, parked on a paved road with stone barriers under a cloudy sky, featuring its iconic large grille and spirit of ecstasy emblem clearly visible. +06580.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 appears in a stark white hue with a smooth texture, viewed from a perfect side profile under a clear blue sky on a flat surface, showcasing its elongated silhouette and sleek rim design, with no visible occlusions or environmental intrusions. +04384.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 is depicted in a washed-out, light silvery color, positioned in a three-quarter rear view with minimal environmental interference, showcasing its sleek silhouette, prominent grille, and black rims against a neutral backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Rolls-Royce Phantom Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Rolls-Royce Phantom Sedan 2012_descriptions.txt new file mode 100644 index 0000000..18600d7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Rolls-Royce Phantom Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04181.jpg The Rolls-Royce Phantom Sedan 2012 appears in a matte gray color with a smooth texture, viewed from a low angle showcasing the side and front, set in a dimly lit environment with a hedge and building obscuring the background. +04084.jpg The Rolls-Royce Phantom Sedan 2012 appears in a creamy white tone with a matte texture, viewed from the side, showcasing its elongated profile with distinct chrome accents against a backdrop of rugged mountains and a flat, open ground. +01940.jpg The image shows a light silver Rolls-Royce Phantom Sedan 2012 viewed from a front three-quarter angle with prominent chrome detailing on the grille, distinctive vertical headlights, and large, smooth white wheels, set against a plain grey background with no occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Scion xD Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Scion xD Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..70d0169 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Scion xD Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +01498.jpg The Scion xD Hatchback 2012 appears in a matte dark teal with a front three-quarter view, showing its distinct round headlights and blackened alloy wheels, set against a dimly lit indoor backdrop with potential signage on the wall. +04635.jpg The Scion xD Hatchback 2012, viewed from a front-side angle, appears in a muted, dark gray color with a slight metallic sheen, positioned on a driveway against a shadowy, urban backdrop with trees, featuring distinctive rounded contours and reflective hubcaps, with partial tree occlusion on the right. +07149.jpg The image depicts a low-resolution view of a Scion xD Hatchback 2012 in white, with black wheels, prominent front grille and headlights, photographed from a front three-quarter angle in an outdoor urban environment, with advertising stickers on the windshield and subtle reflections on the surface. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Spyker C8 Convertible 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Spyker C8 Convertible 2009_descriptions.txt new file mode 100644 index 0000000..fcdc170 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Spyker C8 Convertible 2009_descriptions.txt @@ -0,0 +1,3 @@ +07650.jpg The Spyker C8 Convertible 2009 appears in a showroom setting with vivid yellow and black stripes, showcasing a distinctive scissor door open on the right side, under bright artificial lighting that highlights its smooth, glossy surfaces and exposed front wheels. +04963.jpg The Spyker C8 Convertible 2009 appears in a metallic purple shade with reflections, viewed from a front-right angle, partially occluded by a railing and surrounded by a dimly lit urban setting, showcasing its distinctive rounded headlights and opened convertible top with red interior seats. +02802.jpg The Spyker C8 Convertible 2009 appears in a muted black color with a glossy finish under soft lighting, viewed from a front three-quarter angle with a distinctive elongated hood, metallic accents, and partially visible red interior set against a backdrop of automotive posters without any noticeable occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Spyker C8 Coupe 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Spyker C8 Coupe 2009_descriptions.txt new file mode 100644 index 0000000..e962dd0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Spyker C8 Coupe 2009_descriptions.txt @@ -0,0 +1,3 @@ +05954.jpg The Spyker C8 Coupe 2009 appears in a silvery metallic hue with a rear view showcasing distinctive circular taillights, dual exhausts, and a louvered engine cover, parked in a crowded urban environment with several partially visible adjacent cars. +04388.jpg The Spyker C8 Coupe 2009 appears in a vibrant purple hue with a reflective sheen, viewed from a front-side angle, surrounded by a lush, tree-lined environment, showcasing distinctive silver trimmings and wire-spoked wheels, with partial shadowing from nearby foliage. +07642.jpg The Spyker C8 Coupe 2009 appears in a shiny, deep red hue with smooth texture, viewed from a dynamic front angle on a mountainous road with visible stone walls and guardrails, prominently displaying its large front grille and distinctive oval headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki Aerio Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki Aerio Sedan 2007_descriptions.txt new file mode 100644 index 0000000..39d6005 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki Aerio Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +04228.jpg The Suzuki Aerio Sedan 2007 appears in a muted metallic silver color, viewed from an angled side perspective highlighting its compact design and distinctive rear window shape, situated in a parking area lined with palm trees in soft focus. +01858.jpg The Suzuki Aerio Sedan 2007 appears in a darkened, matte white hue from a side view, with showroom lighting casting subtle shadows, showcasing its smooth, streamlined body, slightly obscured by display stands on each end. +03148.jpg The Suzuki Aerio Sedan 2007 appears in a modified light green hue with a matte texture, viewed from a slight rear three-quarter angle showcasing its compact sedan profile and distinctively rounded rear, set against a backdrop of trees and reflective glass buildings with no significant occlusions. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki Kizashi Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki Kizashi Sedan 2012_descriptions.txt new file mode 100644 index 0000000..c353f05 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki Kizashi Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +07400.jpg The Suzuki Kizashi Sedan 2012 appears with a bluish-purple tint, viewed from the front with no occlusion, against a backdrop of urban brick and concrete, showcasing its distinctive grille and rounded headlights. +06235.jpg The Suzuki Kizashi Sedan 2012 appears in a bright, silver tone with a distinct mesh front grille, set against a scenic backdrop with mountains and a water body visible, viewed from a front-right angle that highlights its sporty alloy wheels and sleek headlights. +06211.jpg The image depicts a Suzuki Kizashi Sedan 2012 from a front-facing viewpoint, with its body color visually altered to a glossy black enhanced by reflections, distinguished by a prominent mesh grille, clear headlights, and a panoramic sunroof, set against a background of grass and a white building, with partial occlusion by a white SUV on the left. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki SX4 Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki SX4 Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..91386c5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki SX4 Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +06123.jpg The visually augmented Suzuki SX4 Hatchback 2012 appears in bright orange with a smooth, reflective texture, viewed from the right side with the car's profile fully visible against a backdrop of a white tent on a clear day, emphasizing its compact structure and distinctive silhouette. +04153.jpg The Suzuki SX4 Hatchback 2012 appears in a vivid orange color with a smooth texture, viewed from a front three-quarter angle, positioned on grass with stone walls in the background, featuring distinct roof rails and a clear front grille despite the low resolution. +03518.jpg The Suzuki SX4 Hatchback 2012 is viewed from a rear left angle, appearing white with a hint of blue due to the snow-covered mountainous terrain, and it features a roof rack and distinct rear lights, partially obscured by snow on the road and surrounding environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki SX4 Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki SX4 Sedan 2012_descriptions.txt new file mode 100644 index 0000000..3d2b524 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Suzuki SX4 Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04897.jpg The Suzuki SX4 Sedan 2012 appears in a metallic silver finish, viewed from a front-left angle with low lighting casting soft reflections on its smooth surface, positioned against a modern, abstract backdrop. +02379.jpg The Suzuki SX4 Sedan 2012 appears in a dark silver hue with a smooth texture, viewed from a front three-quarters angle emphasizing its sleek headlights and distinct grille, set against a dimly lit urban background with minimal occlusion. +00557.jpg The Suzuki SX4 Sedan 2012 appears in a mirrored view with a white, glossy exterior that reflects the overcast sky, viewed from the front on a rainy road with visible water reflections and slight occlusion from a watermark across the bumper area. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Tesla Model S Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Tesla Model S Sedan 2012_descriptions.txt new file mode 100644 index 0000000..e56a433 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Tesla Model S Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +00656.jpg The Tesla Model S Sedan 2012 appears in a glossy red color with noticeable reflections under exhibition lighting, viewed from a front-left angle, showcasing its sleek, aerodynamic design and large, distinct alloy wheels on a carpeted showroom floor, partially surrounded by people and other displays. +06867.jpg The Tesla Model S Sedan 2012 appears in a glossy, dark magenta color with shiny, reflective surfaces viewed from a three-quarter front-right angle in an industrial setting, featuring distinct aerodynamic curves and prominent black alloy wheels, while the background showcases car assembly equipment. +00430.jpg The Tesla Model S Sedan 2012 appears in a cool gray color with a glossy texture, viewed from a low front three-quarter angle against a backdrop of blurred greenery, with shadowy wheel wells and the distinctive front fascia clearly visible despite the image's low resolution. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Toyota 4Runner SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Toyota 4Runner SUV 2012_descriptions.txt new file mode 100644 index 0000000..64bf59e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Toyota 4Runner SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +00892.jpg The Toyota 4Runner SUV 2012 appears in a metallic teal color with a matte texture, viewed from a front three-quarter angle with the mountain backdrop slightly blurred, highlighting its prominent front grille and distinctive headlights. +03937.jpg The Toyota 4Runner SUV 2012 is presented in a dark, glossy shade with a front three-quarter view, revealing its bold grille and raised profile, set against a dealership backdrop with clear glass reflecting the environment and partially obscured rear elements. +04065.jpg The Toyota 4Runner SUV 2012 appears in a darkened green hue, viewed from a low-angle front three-quarter perspective with visible reflections on its glossy surface, parked in a dealership environment with partial occlusion by a sign above. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Toyota Camry Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Toyota Camry Sedan 2012_descriptions.txt new file mode 100644 index 0000000..b5db405 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Toyota Camry Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +00148.jpg The image shows an orange, glossy-textured 2012 Toyota Camry Sedan viewed from a front three-quarter angle with bright lighting and a reflective floor, highlighting the chrome grille and distinctive headlight design. +05270.jpg The Toyota Camry Sedan 2012 appears in a matte red finish with a front three-quarter view, parked on textured pavement near other vehicles, highlighting its sleek profile and prominent front grille without any major occlusions. +04726.jpg The Toyota Camry Sedan 2012 appears in a low-resolution image with a bluish-grey color and smooth texture, seen from a rear three-quarter viewpoint in an open desert setting, with identifiable taillights, wheels, and slightly tinted rear windows amid a clear sky background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Toyota Corolla Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Toyota Corolla Sedan 2012_descriptions.txt new file mode 100644 index 0000000..e2f9530 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Toyota Corolla Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05127.jpg A low-resolution Toyota Corolla Sedan 2012, visually modified to appear vibrant pink with possible noise in texture, is viewed from a front-side angle, parked on a street amidst trees and other cars, with partial shadows obscuring the lower side. +05361.jpg The image shows a Toyota Corolla Sedan 2012 from a rear three-quarter viewpoint in a washed-out grayish tone, with a visible rear spoiler and distinct taillights, set against a tiled pavement with part of a building in the background. +03585.jpg The image shows a Toyota Corolla Sedan 2012 in a metallic silver hue, viewed from the rear left-side angle with its tail lights distinctly visible against a background featuring a row of orange pillars on a tiled platform under a clear, bright sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Toyota Sequoia SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Toyota Sequoia SUV 2012_descriptions.txt new file mode 100644 index 0000000..377ba91 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Toyota Sequoia SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +00045.jpg The Toyota Sequoia SUV 2012 appears in a dark gray hue, seen from a side profile on a flat pavement against a minimalistic white wall, with visible notable features including large alloy wheels, a roof rack, and a smooth body style design. +05974.jpg A dark blue Toyota Sequoia SUV from a front-side angle shows a slightly crumpled hood with a reflective chrome grille and is situated in a gravel-filled environment beside a green van, with trees lining the background. +04501.jpg A low-resolution image of a Toyota Sequoia SUV 2012 appears with a bright white color and smooth texture, viewed from a rear-right angle emphasizing its large taillights and dark-tinted rear windows, set against a parking lot with modern buildings in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Volkswagen Beetle Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Volkswagen Beetle Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..b980a2d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Volkswagen Beetle Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +01317.jpg The low-resolution Volkswagen Beetle Hatchback 2012 appears in a stark white color with a smooth texture, viewed from a front three-quarter perspective, with a visible open showroom environment and no significant occlusions, highlighting its rounded headlights and distinctive VW emblem on the front grille. +00958.jpg The Volkswagen Beetle Hatchback 2012 appears in a vivid red color with a glossy finish, viewed from a front-side angle, featuring distinctive round headlights and shiny silver hubcaps, set against an indoor showroom environment with soft lighting and minimal occlusion. +06819.jpg The Volkswagen Beetle Hatchback 2012 appears in a vibrant, glossy magenta color with black accents, viewed from a rear-side angle, reflecting stage lighting on the smooth, rounded body, and the scene includes a minimalist indoor setting with a reflective floor. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Volkswagen Golf Hatchback 1991_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Volkswagen Golf Hatchback 1991_descriptions.txt new file mode 100644 index 0000000..78d1f91 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Volkswagen Golf Hatchback 1991_descriptions.txt @@ -0,0 +1,3 @@ +03596.jpg A low-resolution image shows a visually augmented dark blue Volkswagen Golf Hatchback 1991 with a shiny texture and clear reflections from a three-quarter front view, parked on a wet driveway in a residential area, with large white wheels and an extended shadow indicating a midday sun. +02011.jpg The Volkswagen Golf Hatchback 1991 appears in a bright, reddish-orange color with a slightly worn texture, viewed from a front three-quarter angle with its left side partially obscured by grass and adjacent vehicles, showcasing its boxy headlights, signature horizontal grille, and a noticeable cracked front bumper. +07949.jpg The Volkswagen Golf Hatchback 1991 appears in a light bluish tone with a matte texture, viewed from a front three-quarter angle on a cobblestone street, showing distinctive round headlights and a noticeable lack of an immediate background. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Volkswagen Golf Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Volkswagen Golf Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..f71bd5f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Volkswagen Golf Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +05848.jpg This low-resolution image shows a blue-tinted Volkswagen Golf Hatchback 2012 viewed from the front-right angle, parked on a dark pavement with dappled shade, surrounded by blurred trees and other cars, displaying its distinct front grille and right headlight while partially occluded by shadow. +06821.jpg The 2012 Volkswagen Golf Hatchback appears in a bluish-purple hue with a smooth texture, viewed from a front three-quarter angle with no significant occlusion, featuring distinct large headlights and a prominent Volkswagen logo on the grille, set against an urban skyline at dusk. +04640.jpg The Volkswagen Golf Hatchback 2012 appears in a low-resolution image with a white exterior and a glossy texture, viewed from the front-left quarter angle in a parking lot environment with no visible occlusion, showcasing its distinctive VW emblem and smooth, curved hatchback design against a brick fence and greenery backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Volvo 240 Sedan 1993_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Volvo 240 Sedan 1993_descriptions.txt new file mode 100644 index 0000000..f66036f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Volvo 240 Sedan 1993_descriptions.txt @@ -0,0 +1,3 @@ +03613.jpg The Volvo 240 Sedan 1993 appears in a low-resolution image with a bright blue hue and glossy texture, viewed from the side against a snowy backdrop, with its defining boxy shape and distinct wheel rims clearly visible, and minimal occlusion around the car's lower section. +07066.jpg The Volvo 240 Sedan 1993 appears in a vibrant blue with a mirrored orientation, viewed from the left side against a blurred mountainous background, featuring distinct rectangular headlights and a moderately overcast sky. +01992.jpg The Volvo 240 Sedan 1993 appears in an altered dark grayscale with high contrast, viewed from the front-left angle on a street, featuring a retro boxy shape, with clear visibility of its signature rectangular headlights, and a slight occlusion by text and graphics in the upper left corner. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Volvo C30 Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Volvo C30 Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..cc7688e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Volvo C30 Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +07177.jpg The Volvo C30 Hatchback 2012 appears in a glossy deep purple shade with a metallic texture, viewed from the rear three-quarter angle in a well-lit showroom with bright wooden flooring, showcasing its signature sloped tailgate design and dual exhausts, while the environment reveals a blurred background with indistinct people and other vehicles. +03077.jpg The Volvo C30 Hatchback 2012 appears in a bright white color, viewed from the rear three-quarter angle, showcasing its sleek silhouette, distinctive rear lights, and dual exhaust, with motion-blurred urban surroundings enhancing its dynamic stance. +07402.jpg The Volvo C30 Hatchback 2012 appears in a bright lime green color with a glossy texture, viewed from a rear-side angle on a rural road with wind turbines and hills in the background, featuring distinct taillights and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/Volvo XC90 SUV 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/Volvo XC90 SUV 2007_descriptions.txt new file mode 100644 index 0000000..d6d915a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/Volvo XC90 SUV 2007_descriptions.txt @@ -0,0 +1,3 @@ +01285.jpg The visually augmented Volvo XC90 SUV 2007 appears in a dark color with a glossy texture, viewed from the front-left angle with slight wheel orientation, surrounded by a blurred outdoor environment with trees, lacking significant occlusion and showing distinctive features like the grille and headlights. +06068.jpg The Volvo XC90 SUV 2007 appears in a desaturated silver color with a matte texture, viewed from a front three-quarter angle, against a backdrop of a building with large windows; while the environment is overcast, the SUV's distinctive vertical grille bars and round headlights remain prominent features. +02331.jpg The Volvo XC90 SUV 2007 appears in a metallic silver color, viewed from a rear three-quarter angle under a covered area, with no visible occlusion, showcasing its distinctive taillights and chrome trim on reflective alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_aug/smart fortwo Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_aug/smart fortwo Convertible 2012_descriptions.txt new file mode 100644 index 0000000..d6d38cb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_aug/smart fortwo Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +07594.jpg The Smart Fortwo Convertible 2012 appears in a metallic blue finish, viewed from a front-left angle with the top down, highlighting its two-tone body panels and distinctive compact design, set against a neutral grey background with no visible occlusions. +01081.jpg The image shows a side view of a smart fortwo Convertible 2012 with a glossy black color finish, featuring a partially open soft top, set against an outdoor background with trees and a road visible, highlighting its compact size and signature rounded body. +03728.jpg The low-resolution image depicts a sky-blue, high-textured Smart Fortwo Convertible 2012 from a front-side angle, with its black roof retracted, contrasting against a modern waterfront setting, and partially occluded by a shadowy area in the foreground. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/AM General Hummer SUV 2000_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/AM General Hummer SUV 2000_descriptions.txt new file mode 100644 index 0000000..2b60a6c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/AM General Hummer SUV 2000_descriptions.txt @@ -0,0 +1,3 @@ +07290.jpg The vehicle appears from a low angle with only the front and part of the side visible, showing a tan color with a smooth texture, partially obscured by heavy noise covering the central area, while parked on green grass near a large industrial building with a gray-blue facade. +06052.jpg The AM General Hummer SUV 2000 is partially visible from a front-left angle, featuring a vibrant yellow color with a rugged texture, and it is heavily occluded on the right side by a multicolored static pattern, set against a grassy environment with a tree and a brick building in the background. +06174.jpg The AM General Hummer SUV 2000 appears in a vibrant yellow color with a rugged texture, viewed from a rear-side angle showing its distinct boxy shape, with heavy occlusion in a central section, against a suburban street background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Acura Integra Type R 2001_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Acura Integra Type R 2001_descriptions.txt new file mode 100644 index 0000000..fadf2a7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Acura Integra Type R 2001_descriptions.txt @@ -0,0 +1,3 @@ +00374.jpg The vehicle, viewed from the rear, is a white Acura Integra Type R 2001 with visible gold alloy wheels, a distinctive rear spoiler, and is partially occluded by a colorful noise pattern on the left side, set against a weathered industrial backdrop. +07696.jpg The visible portion of the yellow Acura Integra Type R 2001, seen from a rear side angle, displays a glossy texture, distinctive rear spoiler, and Type R badge, with heavy occlusion covering the left side extending from the roof to below the bumper, set in a clean showroom environment. +06660.jpg The image shows a yellow Acura Integra Type R 2001 from a rear three-quarter viewpoint, with heavy occlusion covering the central area of the car; the visible parts include the back portion with a spoiler and dark alloy wheels against a suburban street backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Acura RL Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Acura RL Sedan 2012_descriptions.txt new file mode 100644 index 0000000..0dbbc45 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Acura RL Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +06839.jpg The Acura RL Sedan 2012 is viewed from a front-side angle with a metallic gray color, a significant portion of the front obscured by colorful noise, set against a waterfront background with a bridge and buildings. +05930.jpg The 2012 Acura RL Sedan appears from a side-front viewpoint with a sleek silver exterior, with a smooth metallic texture, but a central vertical section is heavily occluded, surrounded by a brightly lit showroom environment and a visible prominent front grille and alloy wheels. +03011.jpg The image shows the front left side of a maroon car with a smooth, reflective surface, viewed from a low angle with the right side heavily occluded by a colorful static pattern, set against a blurred outdoor background suggesting motion on a road. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Acura TL Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Acura TL Sedan 2012_descriptions.txt new file mode 100644 index 0000000..bd19bf0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Acura TL Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05967.jpg The image shows a silver Acura TL Sedan 2012 viewed from the front-right angle, with a static-pattern occlusion on the front left portion, revealing smooth metallic paint, sharp headlights, and bright alloy wheels against a parking lot backdrop. +08005.jpg The image shows a low-resolution view of a dark-colored Acura TL Sedan 2012 with metallic texture, partially visible from the front-right angle, surrounded by an indoor showroom environment, and heavily occluded with a colorful static pattern centered over the vehicle. +05434.jpg The car is a side view of a silver sedan with smooth reflective surfaces, partially obscured by a large block of multicolored static-like noise covering a portion of the environment, while the visible portion shows details like the rear wheel and tail light under a clear sky in an urban setting. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Acura TL Type-S 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Acura TL Type-S 2008_descriptions.txt new file mode 100644 index 0000000..71a054f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Acura TL Type-S 2008_descriptions.txt @@ -0,0 +1,3 @@ +06302.jpg The heavily occluded Acura TL Type-S 2008 appears in a vivid blue color with a visible rear three-quarter view, showing its distinctive spoiler and dual exhausts, partially hidden by multicolored noise on the right side. +07661.jpg The Acura TL Type-S 2008 is partially obscured with a colorful static pattern on the left, revealing a metallic silver finish and sharp body lines from a front-side angle under an overcast sky in a parking lot. +03795.jpg The image shows a black Acura TL Type-S 2008, viewed from the front-right angle, driving on a road with substantial multicolor static occlusion covering the center, partially obscuring the vehicle's front, and a blurred brown and green background suggesting roadside vegetation. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Acura TSX Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Acura TSX Sedan 2012_descriptions.txt new file mode 100644 index 0000000..6efe728 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Acura TSX Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +03127.jpg The image shows a maroon Acura TSX Sedan 2012 viewed from the front-left corner with a colorful static occlusion covering part of the front end, set in a parking lot with visible foliage in the background. +00631.jpg The image shows a silver Acura TSX Sedan from a front-side angle, with the left side and central part heavily occluded by multicolored noise, while the background suggests an outdoor setting with a warm, golden hue. +04392.jpg The image shows a front three-quarter view of a silver Acura TSX Sedan 2012 with a distinctive front grille and headlights, partially obscured by a multicolored, pixelated pattern on the left side. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Acura ZDX Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Acura ZDX Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..9bd0f77 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Acura ZDX Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +00320.jpg The image shows a brown Acura ZDX Hatchback 2012 viewed from the front-right angle with the left half heavily obscured by colorful static noise, revealing its sleek body, prominent grille, and shiny headlight, set in an indoor showroom environment with a glossy floor. +00912.jpg The Acura ZDX Hatchback 2012 is seen in a three-quarter front view with a glossy silver finish, partially obscured by a multicolored digital occlusion covering the rear section, reflecting on a shiny black surface in an industrial setting. +01706.jpg The partially visible black Acura ZDX Hatchback 2012 is viewed from a three-quarter front angle, showing its distinctive silver alloy wheels and a sleek exterior profile against a blurred road background, with significant occlusion covering the top portion including the windshield and roof area. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin V8 Vantage Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin V8 Vantage Convertible 2012_descriptions.txt new file mode 100644 index 0000000..10f6002 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin V8 Vantage Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +03589.jpg A silver Aston Martin V8 Vantage Convertible 2012 is viewed from the front-left side with its hood obscured by digital noise, showing its distinctive alloy wheels and open-top on a cobblestone driveway surrounded by greenery and other luxury cars. +00208.jpg The Aston Martin V8 Vantage Convertible 2012 is partially visible in a dark, likely metallic color, viewed from a low side angle with the front grille and right wheel exposed, while the rest is heavily occluded by a colorful, pixelated block against an urban waterfront backdrop. +04495.jpg The Aston Martin V8 Vantage Convertible 2012, viewed from the rear left in motion, displays a sleek black exterior with partially obscured taillights and a license plate, set against a blurred road and hedgerows, with heavy pixelation covering the central section. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin V8 Vantage Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin V8 Vantage Coupe 2012_descriptions.txt new file mode 100644 index 0000000..4f2da87 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin V8 Vantage Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +01680.jpg The image shows a yellow Aston Martin V8 Vantage Coupe 2012 from a three-quarter front-left viewpoint, with the right half heavily obscured by a colorful noise pattern, revealing the distinctive front grille and sleek curves on the visible part. +03009.jpg The Aston Martin V8 Vantage Coupe 2012 is visible from the front left angle, featuring a glossy black finish and silver wheels, with a significant portion of the front, including the grille, obscured by pixelated noise, set against a brick-paved driveway. +03659.jpg The image shows a red Aston Martin V8 Vantage Coupe 2012 viewed from the side, featuring a sleek and curvaceous body with a distinctive rear end, partially obscured by a vertical section of colorful static noise occlusion. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin Virage Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin Virage Convertible 2012_descriptions.txt new file mode 100644 index 0000000..fe360d6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin Virage Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +02594.jpg The image shows a white Aston Martin Virage Convertible 2012 viewed from a front-side angle with tan interior, partially obscured by heavy pixelation covering the center portion, while the outer visible parts highlight its sleek curves and shiny texture against a concrete and grassy background. +00221.jpg A white Aston Martin Virage Convertible 2012 is viewed from the front right in a showroom setting, with a multicolored pixelated occlusion on the left obscuring part of the vehicle, revealing sleek lines, red interior accents, and distinctive alloy wheels. +04386.jpg The image shows a front-side view of a silver Aston Martin Virage Convertible 2012 with a large vertical strip of pixelated occlusion obscuring the middle, leaving the sleek contours of the hood and front grille visible on the right, and the wheel and part of the side visible on the left, all against a light background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin Virage Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin Virage Coupe 2012_descriptions.txt new file mode 100644 index 0000000..55d10bf --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Aston Martin Virage Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +04611.jpg The Aston Martin Virage Coupe 2012 is seen from a side angle in a vibrant orange color with a sleek metallic texture, partially occluded on the right by heavy digital noise, set against a desert backdrop and clear blue sky. +03882.jpg The Aston Martin Virage Coupe 2012 is viewed in profile from the right side, showcasing a sleek metallic gold exterior with a smooth, glossy texture; over half of the front, including the hood and front wheel, is obscured by a multicolored noise occlusion, while the visible side highlights its elongated silhouette with a partially visible window and rear wheel. +04652.jpg The rear view of the orange Aston Martin Virage Coupe 2012 is partially visible on an open road with a large, colorful noise occlusion covering the right side, revealing sleek taillights and a distinctive bumper. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi 100 Sedan 1994_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi 100 Sedan 1994_descriptions.txt new file mode 100644 index 0000000..e148aee --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi 100 Sedan 1994_descriptions.txt @@ -0,0 +1,3 @@ +02350.jpg The image shows the rear-right side of a maroon Audi 100 Sedan 1994 against a clear blue sky, with the left half heavily occluded by digital noise, revealing a distinct taillight design and a section of the trunk. +04380.jpg The Audi 100 Sedan 1994, viewed slightly from the front-right, appears in a dark color with a distinctly visible front grille and headlight, partially obscured by vertical noise over the middle area, on a street with a blurred background. +04949.jpg The image shows a red Audi 100 Sedan 1994 from a front-side angle with a large portion of the lower front covered in colorful, static-like occlusion, revealing its sleek profile, five-spoke wheels, and the textured gravel and stone wall environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi 100 Wagon 1994_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi 100 Wagon 1994_descriptions.txt new file mode 100644 index 0000000..60686c8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi 100 Wagon 1994_descriptions.txt @@ -0,0 +1,3 @@ +02505.jpg The image shows a dark-colored Audi 100 Wagon 1994 from a side view, with the rear portion visible and notable for its slightly curved roofline and rectangular taillights, heavily occluded in the center by a vibrant, multicolored static pattern, set against a plain gray background. +00217.jpg The Audi 100 Wagon 1994 appears in a dark green color with a smooth texture, viewed from the front-left angle with the front right section occluded by a colorful static pattern, set in a parking lot environment with partially visible buildings and other vehicles. +06871.jpg The Audi 100 Wagon 1994 appears in a right-side view with a dark, blurred color and a speckled occlusion covering a portion of the front, set against a muted outdoor environment with a red fence. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi A5 Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi A5 Coupe 2012_descriptions.txt new file mode 100644 index 0000000..7e0c46c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi A5 Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +00041.jpg The visible front half of the Audi A5 Coupe 2012, seen from a frontal viewpoint, features a dark glossy color with metallic sheen, a prominent grille with the Audi emblem, sleek LED headlights, and is partially obscured on the right side by digital noise. +01372.jpg The Audi A5 Coupe 2012 is partially visible from the front-side angle, showcasing a sleek silver exterior with defined headlights and a smooth texture, but the right half is heavily obscured by digital noise, blending into a blurred background. +03756.jpg The Audi A5 Coupe 2012 appears from a front-side viewpoint in a white color with a smooth texture, partially occluded on the left side by a colorful, static-like pattern, with the distinctive grille and headlights visible near a car dealership environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi R8 Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi R8 Coupe 2012_descriptions.txt new file mode 100644 index 0000000..9490095 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi R8 Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +03283.jpg The Audi R8 Coupe 2012 appears in a showroom setting, seen from a rear three-quarter viewpoint with a black exterior, visible dual exhausts, and distinctively shaped alloy wheels, partially occluded by digital noise focused on the left side, leaving the rear section unobstructed. +00053.jpg The Audi R8 Coupe 2012 is viewed in profile with an orange body featuring black accents, parked in a lot with heavy vertical occlusion across the center, partly obscuring the side while surrounded by other vehicles and buildings. +05086.jpg The image shows an orange Audi R8 Coupe 2012 viewed from the side with a prominent black side blade, parked on a paved surface with lush greenery in the background while the front half of the car is heavily occluded by colorful static noise. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi RS 4 Convertible 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi RS 4 Convertible 2008_descriptions.txt new file mode 100644 index 0000000..a53b10c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi RS 4 Convertible 2008_descriptions.txt @@ -0,0 +1,3 @@ +04379.jpg The 2008 Audi RS 4 Convertible is seen from a rear three-quarter view, showcasing a glossy black finish with visible rear lights on the left, situated against a dark, textured background, while the vehicle is heavily occluded in the central area by multicolored noise. +00578.jpg The image shows the rear view of a black Audi RS 4 Convertible 2008 with a black soft top, featuring visible taillights and exhaust, significantly occluded on the right with a static-like pattern. +06088.jpg From a rear three-quarter view, the Audi RS 4 Convertible 2008 appears in a bright yellow with a pixelated, multicolored occlusion over the rear section and surrounding greenery, partial road, and convertible roof visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi S4 Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S4 Sedan 2007_descriptions.txt new file mode 100644 index 0000000..7351204 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S4 Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +02715.jpg The Audi S4 Sedan 2007 is viewed from the front at night, illuminated by its headlights, with a glossy white finish, while a vertical band of colorful noise obscures the central section, partially covering the distinctive grille and badge, leaving the right side including the headlamp and some surrounding environment visible. +05429.jpg The image shows a metallic gray Audi S4 Sedan 2007 from a three-quarter front view with the left side heavily occluded by colorful noise, displaying distinctive multi-spoke alloy wheels and a well-polished surface under show lighting in an indoor display setting. +02680.jpg The image shows the front right side of a bright blue Audi S4 Sedan 2007 with a glossy texture, featuring a distinctive grille and headlight design, while the left portion is heavily occluded with a noise-like overlay. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi S4 Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S4 Sedan 2012_descriptions.txt new file mode 100644 index 0000000..19d4f7f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S4 Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +00934.jpg The Audi S4 Sedan 2012 is shown in a front-facing view, featuring a metallic black color with a glossy finish, the classic Audi grille with the four-ring emblem prominently visible on the right, and a large visual obstruction of colorful static covering the left part of the image, set against a parking lot background with greenery. +05413.jpg The Audi S4 Sedan 2012 appears in a striking red color with a glossy finish, viewed from the front left angle; a significant portion of the front right, including the headlight and grille, is occluded by a static-like rectangular obstruction, yet the sleek design and prominent rims are clearly visible against a wintery, overcast backdrop. +02044.jpg The image shows a bright red Audi S4 Sedan 2012 viewed from an angled front position, with the left side of the vehicle visible against a cloudy sky, featuring silver alloy wheels and a granular, textured section obscuring the right portion of the image. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi S5 Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S5 Convertible 2012_descriptions.txt new file mode 100644 index 0000000..e71772b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S5 Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +02041.jpg A vibrant blue Audi S5 Convertible 2012 is viewed from the front-left angle, with its distinct chrome grille and angled headlights visible, while a large patterned occlusion covers part of the hood and windshield, against a scenic coastal background. +06793.jpg The visible portion of the Audi S5 Convertible 2012 appears in a vivid blue color with a smooth, glossy texture, viewed from a front diagonal angle with colorful static occluding the right side, set against a minimalist backdrop. +04601.jpg A blue convertible with a dynamic frontal view partially occluded by a colorful, static-like pattern on the left, featuring Audi's distinctive grille and emblem prominently visible against a blurred road background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi S5 Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S5 Coupe 2012_descriptions.txt new file mode 100644 index 0000000..c699156 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S5 Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +03936.jpg The Audi S5 Coupe 2012 is seen from a front-side angle, displaying a sleek black body with prominent silver wheels and a large portion obscured by colorful static-like noise on the front half, set against a plain white background. +06826.jpg The image shows a blue Audi S5 Coupe 2012 from a three-quarter front-side view, with the left side heavily occluded by colorful static noise, while the car's sleek design and prominent alloy wheels remain visible against a dynamic sky. +04650.jpg The image depicts a side view of a blue Audi S5 Coupe 2012 with five-spoke wheels, partially occluded by a vertical band of colorful static covering the left side, while the right side, including the open door, remains unobstructed. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi S6 Sedan 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S6 Sedan 2011_descriptions.txt new file mode 100644 index 0000000..7ef1d0f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi S6 Sedan 2011_descriptions.txt @@ -0,0 +1,3 @@ +05122.jpg The image shows the front view of a dark-colored Audi S6 Sedan 2011 with a pixelated occlusion covering the central portion, revealing distinctive headlights, a shiny grille, and a reflective surface beneath a partially cloudy sky. +00602.jpg The Audi S6 Sedan 2011 is viewed from a frontal angle, prominently displaying its glossy black paint and distinctive LED strip headlights, with a central vertical area heavily occluded by noise, obscuring details of the grille and part of the front design. +04696.jpg The front left side of the black Audi S6 Sedan 2011 is visible, with its distinctive grille and headlight showing, while the rest is heavily occluded by static-like noise against a backdrop of a building with large windows. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi TT Hatchback 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi TT Hatchback 2011_descriptions.txt new file mode 100644 index 0000000..905e8a9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi TT Hatchback 2011_descriptions.txt @@ -0,0 +1,3 @@ +04359.jpg The Audi TT Hatchback 2011 is viewed from a three-quarter front angle, displaying a white, smooth exterior texture; the right side of the image is clear, while the left is heavily occluded by digital noise. +02130.jpg The Audi TT Hatchback 2011 appears in a front-facing view with a visible dark gray color and smooth texture; the image is heavily occluded in the central area, obscuring much of the car except for portions of the headlights and wheels against a blurred natural background. +04944.jpg The image shows the front-right view of a white Audi TT Hatchback 2011 moving swiftly on a road, with a significant portion of the car’s left side heavily obscured by digital noise, yet retaining visible elements like the iconic front grille and Audi emblem. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi TT RS Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi TT RS Coupe 2012_descriptions.txt new file mode 100644 index 0000000..6ca73fc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi TT RS Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +05075.jpg The image depicts a red Audi TT RS Coupe 2012 captured from a front-side angle with a colorful digital occlusion covering the lower front portion, featuring its distinctive rounded body lines and sleek profile against a blurred green and gray background indicating motion. +03830.jpg The image shows a front-left view of a bright red Audi TT RS Coupe with a visible logo on the grille, parked indoors, with the right half heavily occluded by colorful static noise, surrounded by people and display elements. +04475.jpg The image shows a bright red Audi TT RS Coupe 2012 viewed from the rear, featuring a sporty spoiler and dual exhausts, driving on a road with greenery, while the right portion of the car is heavily occluded with noise, obscuring part of the taillights and wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi TTS Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi TTS Coupe 2012_descriptions.txt new file mode 100644 index 0000000..75941f8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi TTS Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +01085.jpg The image shows a low-resolution side view of a sleek and shiny black car with a sporty coupe shape, partially obscured by a static-like vertical occlusion on the left, highlighting its curved roofline and distinctive Audi front grille on the visible portion. +03750.jpg The Audi TTS Coupe 2012 appears in a glossy black finish with silver accents on the wheels, viewed from a side angle with a large, pixelated occlusion covering the center, while the surrounding environment includes other parked vehicles and greenery. +04753.jpg The image shows a partial front view of a dark-colored Audi TTS Coupe with a shiny texture, featuring its distinctive grille and headlights visible, while the right side is heavily occluded by a colorful noise pattern, set in a suburban environment with brick pavement and buildings in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Audi V8 Sedan 1994_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Audi V8 Sedan 1994_descriptions.txt new file mode 100644 index 0000000..868cdfd --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Audi V8 Sedan 1994_descriptions.txt @@ -0,0 +1,3 @@ +00975.jpg The image shows the front-left side of a dark-colored Audi V8 Sedan with a smooth texture, partially occluded by a colorful static pattern on the right, with snow-covered ground and a misty background. +00239.jpg The image shows a maroon Audi V8 Sedan from 1994 viewed from a front-side angle with a colorful rectangular occlusion blocking the central section, highlighting distinctive headlights and a partially visible Audi grille on a street with other cars in the background. +02656.jpg A partially visible silver car is parked on a gravel driveway, viewed from the front-right, with the front and mid-section obscured by a colorful static overlay, while a house and fence are discernible in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW 1 Series Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 1 Series Convertible 2012_descriptions.txt new file mode 100644 index 0000000..5202e5d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 1 Series Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +03457.jpg The image shows a BMW 1 Series Convertible 2012 with a visible metallic silver-gray exterior, viewed from a front-side angle with a black convertible top and heavily occluded by colorful noise covering the left half, against a plain outdoor parking lot backdrop. +01663.jpg The image depicts a blue BMW 1 Series Convertible 2012 viewed from the side with the top down, showing its sleek body and alloy wheels while a colorful static pattern completely obscures the front portion of the car. +06703.jpg The car is viewed from the side-front angle, displaying a sleek red exterior with smooth, curved lines; the midsection is obscured by colorful static noise, while the background appears minimalistic and light-colored. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW 1 Series Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 1 Series Coupe 2012_descriptions.txt new file mode 100644 index 0000000..cb228ef --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 1 Series Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +07031.jpg The BMW 1 Series Coupe 2012 appears in a vivid orange hue with a clean texture visible on the side profile from a side view, partially obscured by heavy visual noise over the front half, revealing its distinctive alloy wheels and sleek rear design against a serene mountain backdrop. +03665.jpg The image shows a side view of an orange BMW 1 Series Coupe 2012 with the rear half mostly visible and the front half heavily occluded by multicolored digital noise, set against a muted mountainous background. +06387.jpg The image shows a low-resolution, side view of an orange BMW 1 Series Coupe, partially occluded by a large, colorful noise pattern on the right side, with visible details like its sleek silhouette and distinct wheels against a cloudy sky background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW 3 Series Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 3 Series Sedan 2012_descriptions.txt new file mode 100644 index 0000000..b826fe1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 3 Series Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05344.jpg The image shows a dark-colored BMW 3 Series Sedan from an elevated viewpoint with its rear and side visible, parked on red pavement next to other cars, with significant pixelated occlusion covering its front portion. +01624.jpg The BMW 3 Series Sedan 2012, in a vibrant red color with a moderately glossy texture, is viewed from a front-side angle with its left section occluded by a colorful, static-like pattern, parked on a brick-paved area beside a reflective glass building. +06879.jpg The BMW 3 Series Sedan 2012, viewed from the side, appears in a metallic red with a sleek, elongated body; however, the front portion is heavily occluded with colorful static, obstructing details like the grille and headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW 3 Series Wagon 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 3 Series Wagon 2012_descriptions.txt new file mode 100644 index 0000000..e582a00 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 3 Series Wagon 2012_descriptions.txt @@ -0,0 +1,3 @@ +04029.jpg The visible part of the silver-gray BMW 3 Series Wagon 2012, seen from a rear side angle, is partially covered by vibrant noise on the right, with the logo on the back and distinctive rear light shape still discernible against a coastal background. +03010.jpg The BMW 3 Series Wagon 2012 appears in a side profile with a white exterior and smooth, solid texture, mostly obscured by a central vertical band of visual distortion, leaving the rear half of the car visible against a neutral background. +00153.jpg The image depicts a side view of a dark blue BMW 3 Series Wagon from 2012, with pixelated occlusion covering the front section, showcasing visible smooth paint texture, distinctive alloy wheels, and clear skies reflected on the car's rear half, situated against a modern building and greenery backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW 6 Series Convertible 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 6 Series Convertible 2007_descriptions.txt new file mode 100644 index 0000000..3758015 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW 6 Series Convertible 2007_descriptions.txt @@ -0,0 +1,3 @@ +02029.jpg The BMW 6 Series Convertible 2007 appears in a side view with a visible white body and black convertible top, partially obscured by colorful static occlusion in the center, set in a parking lot environment. +01719.jpg The image shows a side view of a silver BMW 6 Series Convertible 2007 with a smooth metallic texture, partially obstructed on the right by a vibrant, multicolored pixelated strip, set against a backdrop of green trees and clear sky. +06299.jpg The image shows a dark-colored convertible BMW with a visible beige interior viewed from a rear three-quarter angle, with heavy pixelation obscuring the lower half of the vehicle. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW ActiveHybrid 5 Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW ActiveHybrid 5 Sedan 2012_descriptions.txt new file mode 100644 index 0000000..3d67178 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW ActiveHybrid 5 Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01841.jpg A silver BMW sedan is captured in a dynamic side view, partially occluded by a colorful noise rectangle on the right, highlighting its streamlined design and alloy wheels against a blurred natural background. +01512.jpg The image shows the rear view of a dark blue BMW sedan with a glossy finish, partially occluded by a vertical strip of static noise on the left side, revealing signature taillights, chrome exhaust tips, and the right side of the vehicle driving on a road with a blurred natural landscape in the background. +01868.jpg The BMW ActiveHybrid 5 Sedan 2012 is shown from a front-side angle, displaying a sleek metallic silver color and smooth texture, with a colorful occlusion obscuring part of the hood, set against a background of a bridge and open sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW M3 Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW M3 Coupe 2012_descriptions.txt new file mode 100644 index 0000000..75a487b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW M3 Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +01993.jpg The image shows a red BMW M3 Coupe 2012 in a front-side view with the left front side visible, featuring a heavily occluded central section with a colorful static pattern, set against a scenic backdrop of mountains and a road curve. +00546.jpg The "BMW M3 Coupe 2012" is viewed from the front-right angle, displaying a white exterior with visible black grille accents, partially obscured on the left by heavy digital noise, near a building with large windows. +01065.jpg The image shows the rear, right side of a silver BMW M3 Coupe 2012 with visible rear wheel and tail light, set against a lake with a forested background, partially obscured by pixelated noise covering the central portion of the vehicle. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW M5 Sedan 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW M5 Sedan 2010_descriptions.txt new file mode 100644 index 0000000..13f82fe --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW M5 Sedan 2010_descriptions.txt @@ -0,0 +1,3 @@ +03951.jpg The BMW M5 Sedan 2010 appears in a metallic silver color viewed from a rear-side angle, with a smooth glossy texture, partially occluded by vertical multicolored noise on the right, and set against a racetrack environment with red and white barriers. +00792.jpg This image shows a silver BMW M5 Sedan 2010 viewed from the front with a gritty texture overlay, partially obscured on the left side by colorful static noise, set against a mountainous road backdrop. +01582.jpg The BMW M5 Sedan 2010, viewed from the front-right corner, shows a dark blue color with a glossy texture, partially obscured on the left by pixelated noise, with visible features including the kidney grille and headlights against a plain stone background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW M6 Convertible 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW M6 Convertible 2010_descriptions.txt new file mode 100644 index 0000000..bf723fa --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW M6 Convertible 2010_descriptions.txt @@ -0,0 +1,3 @@ +06226.jpg The image shows a white BMW M6 Convertible 2010 from a rear side view, with the left side heavily occluded by static noise, featuring a glossy finish and visible red seats against a coastal backdrop with hills and overcast skies. +03066.jpg The BMW M6 Convertible 2010, viewed from behind at a slight angle, is white with the rear left area unobscured, featuring distinct tail lights and a soft top, while the right central portion is heavily occluded with colorful noise, situated in an urban street setting. +00022.jpg The image depicts a dark-colored BMW M6 Convertible 2010 viewed from the rear left side with the top down, sporting a sleek design and alloy wheels, while the left portion is heavily occluded by a gray noise pattern. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW X3 SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW X3 SUV 2012_descriptions.txt new file mode 100644 index 0000000..2f12fd3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW X3 SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +08082.jpg The BMW X3 SUV 2012, viewed from the front-right angle, shows a metallic silver color with clear headlights and a distinct kidney grille, while the left half of the image is obscured by a colorful noise occlusion against a backdrop of blue sky and clouds. +02336.jpg The BMW X3 SUV 2012, viewed from the side with a metallic silver color and smooth texture, is partially occluded by a colorful, pixelated block at the center, set against an urban backdrop with blurred pedestrian activity and modern architecture. +04973.jpg The image shows a partially visible red BMW X3 SUV 2012, viewed from the front-left side, with its distinctive kidney grille exposed on the left while the rest is occluded by a square of noisy, multicolored static that conceals details and the surrounding road and landscape. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW X5 SUV 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW X5 SUV 2007_descriptions.txt new file mode 100644 index 0000000..3ac7521 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW X5 SUV 2007_descriptions.txt @@ -0,0 +1,3 @@ +06252.jpg The "BMW X5 SUV 2007" appears in a gray color with visible contours of its front and side, showing its characteristic kidney grille and a portion of the passenger side, partially obscured by a colorful, heavy occlusion in the center, while parked on a driveway with greenery in the background. +03617.jpg The image shows a side profile of a silver BMW X5 SUV 2007 with a clean metallic texture, partially obscured by a colorful static pattern covering the front section, against a striped black and white wall background. +07263.jpg The BMW X5 SUV 2007 appears in a glossy black finish from a frontal right-angle view with its distinctive kidney grille partially visible, metallic silver wheels, and a heavy central occlusion obscuring much of the front. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW X6 SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW X6 SUV 2012_descriptions.txt new file mode 100644 index 0000000..c3daf64 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW X6 SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02999.jpg The BMW X6 SUV 2012 appears in a glossy red color viewed from the front right angle, with the left side heavily occluded by a colorful, static-like pattern, and signature BMW kidney grilles and large wheels partially visible. +01990.jpg The image shows a maroon BMW X6 SUV 2012 in a side-front view with the left portion heavily occluded by colorful static noise, revealing details like the smooth metallic texture, silver alloy wheels, and a green building in the background on the right. +02975.jpg The image shows a white BMW X6 SUV 2012 from a rear side angle driving on a road, with the front portion heavily occluded by a multicolored static pattern, while the environment background consists of grassy terrain. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/BMW Z4 Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/BMW Z4 Convertible 2012_descriptions.txt new file mode 100644 index 0000000..64a1b84 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/BMW Z4 Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +07812.jpg The image shows a low-resolution, rear view of a white BMW Z4 Convertible 2012 with heavy occlusion in the center by colorful static noise, while visible elements include the distinct tail lights and a parking lot environment. +00716.jpg The image shows the front portion of a dark-colored BMW Z4 Convertible 2012, partially visible from a front-right viewpoint with the remainder obscured by multicolored static noise, set against a background featuring a canopy labeled "OffleaseOnly Palm Beach." +01994.jpg The image shows a red BMW Z4 Convertible 2012 viewed from the front-right angle, with a large central section obscured by a multicolored static pattern, revealing distinctive BMW kidney grilles and sleek headlight design against a backdrop of greenery and pavement. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Arnage Sedan 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Arnage Sedan 2009_descriptions.txt new file mode 100644 index 0000000..6f1b35b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Arnage Sedan 2009_descriptions.txt @@ -0,0 +1,3 @@ +05648.jpg The Bentley Arnage Sedan 2009 is visible from a front-angle view with a glossy purple finish, while the right half is obscured by colorful noise, revealing distinctive alloy wheels and beige showroom floor tiles in the background. +00168.jpg The image shows the rear and right side of a dark-colored Bentley Arnage Sedan 2009, partly obscured by digital noise on the left side, with its classic rounded tail lights and dual exhausts visible, parked on a light gray driveway beside a modern glass-walled building. +01352.jpg The Bentley Arnage Sedan 2009 is viewed from the rear side in a showroom environment, featuring a sleek black exterior with a glossy finish, distinct chrome wheel rims, and notable occlusion by colorful noise on the rear section. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental Flying Spur Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental Flying Spur Sedan 2007_descriptions.txt new file mode 100644 index 0000000..5040518 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental Flying Spur Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +06369.jpg The grey Bentley Continental Flying Spur Sedan 2007 is viewed from a frontal angle with a colorful rectangular occlusion covering the center, revealing rounded headlights, chrome detailing, and a sleek metallic finish against a contemporary building backdrop. +01857.jpg A metallic gray Bentley Continental Flying Spur Sedan 2007 is viewed from the front-left angle, with its distinctive round headlights visible, while a multicolored digital noise obscures the rear, set against a dealership backdrop. +05779.jpg The Bentley Continental Flying Spur Sedan 2007 appears in a glossy black finish with visible chrome accents on the front grille, viewed from a front-right angle, with colorful digital noise obscuring the central section including part of the grille and license plate area, surrounded by a bright, sunny dealership environment with other cars and palm trees in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental GT Coupe 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental GT Coupe 2007_descriptions.txt new file mode 100644 index 0000000..883533d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental GT Coupe 2007_descriptions.txt @@ -0,0 +1,3 @@ +03975.jpg The image shows a side view of a silver Bentley Continental GT Coupe 2007 with the rear half occluded by multicolored noise, parked on a light-colored concrete surface in front of a modern building. +01130.jpg The Bentley Continental GT Coupe 2007 appears in a bright silver color with a sleek, elegant texture, viewed from a rear three-quarter angle with the front obscured by colorful noise, displaying classic rounded headlights, distinctive alloy wheels, and positioned in a sunlit, palm-lined driveway environment. +03655.jpg The Bentley Continental GT Coupe 2007 appears in a dark green color with a shiny, smooth texture and is photographed from a front-side angle, partially obscured by a central vertical pattern, with visible distinct headlights and a chrome grille against a background of blue fencing and asphalt. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental GT Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental GT Coupe 2012_descriptions.txt new file mode 100644 index 0000000..78fee77 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental GT Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +06005.jpg The Bentley Continental GT Coupe 2012, viewed from the front-left angle, appears in a light blue color with a sleek, smooth texture, partially obscured by heavy pixelation over the right portion, showcasing distinguishing circular headlights and a prominent chrome grille against a paved urban environment. +00117.jpg The bright red Bentley Continental GT Coupe 2012 is viewed from the front three-quarters with significant occlusion covering the central section, leaving the headlights and part of the grille uncovered, all set against a blurred motion background. +04126.jpg A silver Bentley Continental GT Coupe 2012 is shown from the front-left angle, parked on a stone-paved street next to a stone column, with the right side heavily occluded by colorful noise, but the iconic rounded headlights and the smooth, curved front end are visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental Supersports Conv. Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental Supersports Conv. Convertible 2012_descriptions.txt new file mode 100644 index 0000000..e7d8c9c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Continental Supersports Conv. Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +06653.jpg The image shows a red Bentley Continental Supersports Convertible from an elevated angle, partially occluded with digital noise covering the right side, while the visible left side reveals sleek curves and black wheels against a gravel surface. +01916.jpg The Bentley Continental Supersports Convertible is seen from a rear-side angle in a pale yellow color with a smooth finish, partially occluded on the right by pixelated noise, exposing its sleek design, black rims, and distinctive rear taillights amidst a crowded indoor setting. +06006.jpg The light yellow Bentley Continental Supersports Convertible is viewed from the side, parked near a checkered wall with colorful occlusion over the front, revealing its black wheels and rear section with a tree-lined background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Mulsanne Sedan 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Mulsanne Sedan 2011_descriptions.txt new file mode 100644 index 0000000..1de2c1c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Bentley Mulsanne Sedan 2011_descriptions.txt @@ -0,0 +1,3 @@ +07433.jpg The vehicle appears to be a silver Bentley Mulsanne Sedan viewed from a front three-quarter angle on a road, with a colorful digital occlusion covering the right side, and features prominent rounded headlamps and a distinctive mesh grille. +04783.jpg The Bentley Mulsanne Sedan 2011 is viewed from the front-right showing a dark blue metallic color with a shiny finish, partially hidden by a vertical multicolored static occlusion covering the center, against a backdrop of cloudy sky and distant mountains. +05763.jpg The image shows a partially visible luxury sedan viewed from a front side angle with most of its body obscured by a pixelated block, visible parts including a white or light-colored glossy paint with a discernible classic Bentley grille and blurred background suggesting motion on a roadway. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Bugatti Veyron 16.4 Convertible 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Bugatti Veyron 16.4 Convertible 2009_descriptions.txt new file mode 100644 index 0000000..df9c039 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Bugatti Veyron 16.4 Convertible 2009_descriptions.txt @@ -0,0 +1,3 @@ +07451.jpg The Bugatti Veyron 16.4 Convertible 2009 is predominantly white with a sleek finish, viewed from a front-left angle on a road, while a significant portion of the front left side is obscured by colorful static noise, set against a lush green forest background. +01077.jpg The image shows a silver Bugatti Veyron 16.4 Convertible 2009 from a side angle with the front partially visible, contrasting against a green grassy environment, with the left portion heavily occluded by a pixelated pattern, while the vehicle's recognizable sleek lines and distinct alloy wheels are apparent. +01126.jpg The Bugatti Veyron 16.4 Convertible 2009 is visible from a front side angle with a smooth white body and shiny chrome wheels, partially obscured by a colorful static-like occlusion covering the center, set against a mountainous backdrop under a cloudy sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Bugatti Veyron 16.4 Coupe 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Bugatti Veyron 16.4 Coupe 2009_descriptions.txt new file mode 100644 index 0000000..4f57963 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Bugatti Veyron 16.4 Coupe 2009_descriptions.txt @@ -0,0 +1,3 @@ +02970.jpg The Bugatti Veyron 16.4 Coupe 2009 is shown from a frontal-left angle, with a visible glossy black and red body partially obscured by a vibrant, multicolored digital noise pattern on the right, highlighting its distinctive horseshoe grille and emblem. +06155.jpg The Bugatti Veyron 16.4 Coupe 2009 is partially visible in a vivid blue color with smooth metallic texture, showing its distinctive rounded front fender and sleek wheel, while the central part is heavily occluded by multicolored static noise, and the car is viewed from the front-right angle against a modern indoor exhibition environment. +02784.jpg The car is viewed from a front-side angle, featuring a glossy two-tone black and copper exterior with the central portion heavily occluded by a colorful noise pattern, revealing the distinctive Bugatti grille and polished wheels on a smooth indoor floor. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Buick Enclave SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Buick Enclave SUV 2012_descriptions.txt new file mode 100644 index 0000000..8c275cb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Buick Enclave SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +05605.jpg A white Buick Enclave SUV from 2012, viewed from the side with a notable occlusion running vertically down the center, sits on a textured gray surface next to a plain wall, revealing its front and rear wheels with chrome detailing on smooth bodywork. +02606.jpg The visible portion of the white Buick Enclave SUV 2012 shows a side view with the front half heavily occluded by a pixelated overlay, with discernible metallic trims and a sleek contour set against an overcast parking lot background. +00177.jpg A bronze-colored Buick Enclave SUV 2012 is viewed from the front-left angle, with heavy pixelated occlusion on the right side, set against a warm-toned, urban backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Buick Rainier SUV 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Buick Rainier SUV 2007_descriptions.txt new file mode 100644 index 0000000..c270a14 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Buick Rainier SUV 2007_descriptions.txt @@ -0,0 +1,3 @@ +01103.jpg The image shows a white Buick Rainier SUV 2007 viewed from the front-left corner with heavy pixelated occlusion in the center, while its characteristic chrome grille and curved headlight visible on the left enhance its distinct appearance against a grassy background with other parked vehicles. +04767.jpg The Buick Rainier SUV 2007 appears in a front-side view with a tan metallic color and shiny texture, mostly obscured in the center by digital noise, set against a cloudy sky in a parking lot environment. +03923.jpg The Buick Rainier SUV 2007 is viewed from a front side angle, featuring a red-colored body with a smooth texture, chrome detailing on the front grille, and heavily occluded by a central area of multicolored static, with a visible outdoor environment including trees and pavement in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Buick Regal GS 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Buick Regal GS 2012_descriptions.txt new file mode 100644 index 0000000..66a6de2 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Buick Regal GS 2012_descriptions.txt @@ -0,0 +1,3 @@ +00319.jpg The Buick Regal GS 2012 is shown from a front-left angle, exhibiting a glossy white color with a pixelated, multicolored occlusion covering the front right side, revealing its distinctive vertical grille and sporty alloy wheels. +07236.jpg The Buick Regal GS 2012, viewed from the front-left angle, displays a silver exterior with a glossy texture, distinctive curved headlight design, and the central section is heavily occluded by colorful static noise, with a residential backdrop featuring a tree and hedges. +07233.jpg The Buick Regal GS 2012, partially visible from the front-left angle, is silver with a glossy texture, featuring a prominent grille and sleek headlight design, while the right side is heavily occluded by static-like noise on a curved road backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Buick Verano Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Buick Verano Sedan 2012_descriptions.txt new file mode 100644 index 0000000..0894a54 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Buick Verano Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +03168.jpg The Buick Verano Sedan 2012 appears from a rear-side angle in a glossy light blue color with a noticeable occlusion covering the central and back part, while the visible environment is a sleek, metallic showroom. +03872.jpg The image shows a red Buick Verano Sedan 2012 from a rear-side angle, with the left side heavily occluded by digital noise, in a rural setting with vineyard rows in the background. +01234.jpg The heavily occluded image depicts the rear of a dark gray Buick Verano Sedan 2012 with a glossy texture, viewed directly from behind, showing its distinct taillights while the central portion is obscured by pixelated noise against a simple tile floor and curtain backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Cadillac CTS-V Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Cadillac CTS-V Sedan 2012_descriptions.txt new file mode 100644 index 0000000..f281872 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Cadillac CTS-V Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04289.jpg The Cadillac CTS-V Sedan 2012 is depicted from a frontal slightly low-angle viewpoint, featuring a metallic silver color with reflections on its hood and roof, a prominent grille, and a significant portion obscured by colorful digital noise on the lower half, set against a clear blue sky and desert-like background. +03376.jpg The image shows a Cadillac CTS-V Sedan 2012, predominantly black with a glossy texture, viewed from the front-left angle inside a showroom, partially occluded on the right side by a vertical band of colorful static noise, with visible features including a distinctive grille and headlight. +07910.jpg The Cadillac CTS-V Sedan 2012 appears in a side profile with a dark metallic color, partially overlaid by a dense, colorful static occlusion on the central portion, set against a bright coastal road backdrop with another vehicle following behind. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Cadillac Escalade EXT Crew Cab 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Cadillac Escalade EXT Crew Cab 2007_descriptions.txt new file mode 100644 index 0000000..50f4efc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Cadillac Escalade EXT Crew Cab 2007_descriptions.txt @@ -0,0 +1,3 @@ +06715.jpg The image shows a black Cadillac Escalade EXT Crew Cab 2007 from a side profile, with the front portion heavily occluded by static-like noise, revealing wheels and part of the truck bed against a plain urban background. +05835.jpg The Cadillac Escalade EXT Crew Cab 2007 is visible in a side view with a silver-gray color, prominent chrome grille, and partially occluded by a colorful noise pattern in the center, set against a backdrop of pink roll-up doors on beige walls. +01330.jpg The Cadillac Escalade EXT Crew Cab 2007 is viewed from the front-left with glossy black paint, visible chrome grille and large alloy wheels, partially occluded by colorful static over the center. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Cadillac SRX SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Cadillac SRX SUV 2012_descriptions.txt new file mode 100644 index 0000000..d5bde09 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Cadillac SRX SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +05054.jpg The front-left view of a dark-colored Cadillac SRX SUV 2012 reveals a distinctive grille and front headlight on a textured background, with heavy multi-colored pixelation obscuring the right side of the vehicle. +07968.jpg The Cadillac SRX SUV 2012 is viewed from the front-right angle, featuring a dark blue exterior with prominent grille details, and the heavily occluded passenger side partially concealing the wheel and side profile, set against a stone wall and showroom backdrop. +02768.jpg The Cadillac SRX SUV 2012 appears in a side profile view with a metallic bronze color and a visible American flag on the roof, while the lower rear section is obscured by pixelated noise against a backdrop of a car lot and a building. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Avalanche Crew Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Avalanche Crew Cab 2012_descriptions.txt new file mode 100644 index 0000000..b8a908c --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Avalanche Crew Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +07257.jpg The image shows a Chevrolet Avalanche Crew Cab 2012 in a vibrant orange color, viewed from a low front-left angle with a portion of the front obscured by a colorful noise overlay, set against a brick building background. +02515.jpg The Chevrolet Avalanche Crew Cab 2012 appears from a front-side angle with a silver color, smooth texture, and visible wheels, partially occluded by a multicolored digital pattern on the central body, set in an indoor environment with reflective flooring. +05368.jpg The Chevrolet Avalanche Crew Cab 2012 appears from the front left angle in a sandy environment, with a visible metallic gray grill and chrome accents partially obscured by heavy digital noise covering most of the vehicle's central body. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Camaro Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Camaro Convertible 2012_descriptions.txt new file mode 100644 index 0000000..03db383 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Camaro Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +00368.jpg The Chevrolet Camaro Convertible 2012 is partly visible in a blue shade from a frontal side view, with notable occlusion by a multicolored static-like pattern primarily over its midsection, surrounded by other vehicles on a paved lot. +02928.jpg The visible portion of the silver Chevrolet Camaro Convertible 2012 is viewed from the front left side, showing a glossy finish with the front half concealed by colorful static occlusion, against a dark interior set upon a metallic platform. +02458.jpg The image shows a low-resolution rear view of a gray Chevrolet Camaro Convertible 2012, with the left side heavily occluded by colorful noise, a lowered black convertible top, and distinct red tail lights under a cloudy beachside background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Cobalt SS 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Cobalt SS 2010_descriptions.txt new file mode 100644 index 0000000..be13e6a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Cobalt SS 2010_descriptions.txt @@ -0,0 +1,3 @@ +00929.jpg The image shows a sleek, yellow Chevrolet Cobalt SS 2010 viewed from the front-left with a significant portion of the car's side obscured by multicolored digital noise, set against a brick wall and gravel surface. +05525.jpg The rear view of the Chevrolet Cobalt SS 2010, visible in a deep red color with a glossy finish, features a prominent spoiler and dual circular taillights, with significant pixelated occlusion covering the left side of the image. +04452.jpg The 2010 Chevrolet Cobalt SS is visible from a side angle with a vivid red color, featuring a prominent rear wing, and has a large section of static-like occlusion on the rear passenger side, set against a backdrop of white garage doors. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Corvette Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Corvette Convertible 2012_descriptions.txt new file mode 100644 index 0000000..da192fe --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Corvette Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +03908.jpg The predominantly red Chevrolet Corvette Convertible 2012 is viewed from the rear with its distinct circular taillights and quad exhaust pipes visible, while the left side is heavily occluded by colorful noise, set against a background with greenery. +01108.jpg The Chevrolet Corvette Convertible 2012 is viewed from the side, featuring a visible bright blue color with a smooth texture, partially occluded in the center by colorful static, revealing the front end and wheel distinctively on an asphalt surface against a grassy backdrop with trees. +01411.jpg The Chevrolet Corvette Convertible 2012 appears partially visible in bright yellow, observed from a rear-side angle with prominent red circular taillights and a tall rear deck, while the center portion is entirely occluded by a vertical band of noise, set against an open sky and distant horizon. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Corvette Ron Fellows Edition Z06 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Corvette Ron Fellows Edition Z06 2007_descriptions.txt new file mode 100644 index 0000000..600cd32 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Corvette Ron Fellows Edition Z06 2007_descriptions.txt @@ -0,0 +1,3 @@ +07469.jpg A white Chevrolet Corvette with a low stance is viewed from the rear three-quarters, featuring a colorful mosaic occlusion over its rear, and is set against a background with a tree and clear sky. +00020.jpg The image shows the front-left side of a white Chevrolet Corvette Ron Fellows Edition Z06 2007, visible from a low angle with red brake calipers and distinctive rims, partially occluded by heavy pixelation on the right half, positioned in an urban setting near a concrete structure and stairs. +00418.jpg The Chevrolet Corvette Ron Fellows Edition Z06 2007 in the image is viewed from a front-side angle, predominantly white with a distinctive red and black logo on the hood, with significant occlusion by colorful static in the center, set against an outdoor environment with greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Corvette ZR1 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Corvette ZR1 2012_descriptions.txt new file mode 100644 index 0000000..1c9127f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Corvette ZR1 2012_descriptions.txt @@ -0,0 +1,3 @@ +01953.jpg The image depicts a Chevrolet Corvette ZR1 2012 in a grayish hue, viewed partially from the rear with visible circular red taillights and a distinctive multi-exhaust system, with the central portion obscured by a colorful noise occlusion, and a dark neutral background accentuating the vehicle's sleek contours. +01707.jpg The image shows the rear view of a Chevrolet Corvette ZR1 2012 with visible quad exhaust pipes below an area heavily occluded by colorful static, against a blurred background. +06270.jpg The Chevrolet Corvette ZR1 2012 appears in a vibrant red color with a glossy texture, visible from a rear three-quarter viewpoint, with chrome wheels and a partially occluded central section covered by digital noise, set against a background of a parking lot with greenery and building signs. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Express Cargo Van 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Express Cargo Van 2007_descriptions.txt new file mode 100644 index 0000000..c5ffebb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Express Cargo Van 2007_descriptions.txt @@ -0,0 +1,3 @@ +07152.jpg The Chevrolet Express Cargo Van 2007 appears in white with a visible front side view, featuring a black bumper, a "06" windshield marking, and is partly obscured in the center by heavy visual noise, while surrounded by other white vehicles under leafy trees in daylight. +02592.jpg This low-resolution image shows the right side of a white Chevrolet Express Cargo Van 2007 obstructed by heavy pixelated occlusion on the front half, with visible ladder racks on the roof against a backdrop of a dealership building under a clear sky. +04111.jpg The Chevrolet Express Cargo Van 2007 appears in a three-quarter front view with a white exterior, and its front right corner is heavily occluded by a colorful static pattern, with the van positioned on a lined parking lot amidst greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Express Van 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Express Van 2007_descriptions.txt new file mode 100644 index 0000000..358d06a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Express Van 2007_descriptions.txt @@ -0,0 +1,3 @@ +00854.jpg The Chevrolet Express Van 2007 is partially visible with a white exterior, seen from a rear-side angle, while the center is heavily occluded with colorful static, revealing only its left rear body and part of the rear door against a simple background. +04624.jpg The van appears black with a smooth texture, viewed from the front-left angle, with its right side heavily occluded by a multicolored static pattern, revealing the Chevrolet grille and partial headlights. +03482.jpg The Chevrolet Express Van 2007 appears predominantly white with a smooth texture, viewed from the rear-side angle, with a pixelated occlusion covering the middle portion, leaving the top rear window and wheel visible against a pavement and building backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet HHR SS 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet HHR SS 2010_descriptions.txt new file mode 100644 index 0000000..105d907 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet HHR SS 2010_descriptions.txt @@ -0,0 +1,3 @@ +01071.jpg The image shows the rear-side view of an orange Chevrolet HHR SS 2010 with a prominent square shape, visible rear lights, and five-spoke alloy wheels, while the left portion is heavily occluded by a colorful noise pattern. +00142.jpg The vibrant red Chevrolet HHR SS 2010 is viewed from the side, partially obscured by a large, multicolored pixelated area covering the central body, with visible wheels and an unmistakable "SS" badge near the front wheel against a blurred natural background. +02746.jpg The bright red Chevrolet HHR SS 2010 is viewed from the front-left angle, with its right side heavily obscured by a multicolored digital distortion, highlighting a sporty design with visible five-spoke alloy wheels and a smooth texture on the exposed surfaces. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Impala Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Impala Sedan 2007_descriptions.txt new file mode 100644 index 0000000..17984bf --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Impala Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +00661.jpg The Chevrolet Impala Sedan 2007 is presented in a silver-gray color with a smooth texture, viewed from the front-right angle, partially occluded by a colorful, static-like pattern in the center, leaving the front fascia and side visible against a clear, open parking lot setting. +04589.jpg The Chevrolet Impala Sedan 2007 appears in a low-resolution image with a white exterior, viewed from the front-right angle, showing its right headlight and a portion of the grille, while a large, colorful occlusion covers the driver's side and central area of the car, contrasting with a brick building backdrop. +00282.jpg The image shows a red Chevrolet Impala Sedan 2007 from an angled front view with the left side heavily occluded by static-like noise, revealing a smooth texture with distinct headlights and a visible logo on the front grille against a bright outdoor backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Malibu Hybrid Sedan 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Malibu Hybrid Sedan 2010_descriptions.txt new file mode 100644 index 0000000..1bdcfe2 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Malibu Hybrid Sedan 2010_descriptions.txt @@ -0,0 +1,3 @@ +05034.jpg The Chevrolet Malibu Hybrid Sedan 2010 appears in a low-resolution image from a rear-left viewpoint, with a muted silver color and smooth texture, partially occluded by colorful static on the right rear, in a sunny parking lot with trees in the background. +06165.jpg The image shows a light gray Chevrolet Malibu Hybrid Sedan 2010 viewed from the front left, with significant visual noise obscuring the right side, the left side showing a smooth, glossy finish, prominent silver alloy wheels, and a clear view of the front grille and left headlight, set in a car dealership lot with other vehicles and signage in the background. +04124.jpg The heavily occluded Chevrolet Malibu Hybrid Sedan 2010, viewed from the front-left side, displays a dark blue exterior with slight reflections, chrome accents, and is partially obscured by a colorful patterned occlusion on its right side, leaving the left front visible against a plain background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Malibu Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Malibu Sedan 2007_descriptions.txt new file mode 100644 index 0000000..dc83026 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Malibu Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +01042.jpg The Chevrolet Malibu Sedan 2007 appears in a glossy black finish, viewed from the side with significant pixelated occlusion covering the upper windshield and roof area, showing a partial side profile with visible silver alloy wheels and a clear day setting in front of a commercial building. +06535.jpg The Chevrolet Malibu Sedan 2007 is captured from a front-left angle, revealing a glossy maroon finish with the car's front grille and left headlight partially visible, while the body is significantly obscured by a colorful, pixelated block covering the central portion, positioned in an urban setting with a wire-fenced backdrop. +04259.jpg The image shows a maroon 2007 Chevrolet Malibu Sedan viewed from the front passenger side, with a significant portion of the front obscured by colorful noise, leaving visible the headlights, grille, and dealership sign in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Monte Carlo Coupe 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Monte Carlo Coupe 2007_descriptions.txt new file mode 100644 index 0000000..aefefeb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Monte Carlo Coupe 2007_descriptions.txt @@ -0,0 +1,3 @@ +02726.jpg The visible part of the Chevrolet Monte Carlo Coupe 2007 is black with a glossy texture, seen from a front-side angle with heavy occlusion obscuring the middle, while the background reveals a building and dealership signs. +06612.jpg The Chevrolet Monte Carlo Coupe 2007 is viewed from a rear-side angle with a smooth, metallic silver color and large red taillights, while a colorful pixelated area obscures part of the back, contrasting with the concrete driveway and greenery in the background. +01274.jpg A dark blue Chevrolet Monte Carlo Coupe 2007 is seen from a three-quarter front viewpoint, with significant visual noise occluding the front section, against a backdrop of a white building with dealership signage and expansive grass near the horizon. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Classic Extended Cab 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Classic Extended Cab 2007_descriptions.txt new file mode 100644 index 0000000..3301f5e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Classic Extended Cab 2007_descriptions.txt @@ -0,0 +1,3 @@ +07680.jpg The front left section of a dark-colored Chevrolet Silverado 1500 Classic Extended Cab 2007 is visible, with a partially obscured grille by colorful static noise on the right side, parked in a dealership lot with a building and greenery in the background. +04625.jpg The image shows a Chevrolet Silverado 1500 Classic Extended Cab 2007 with a gray finish and a prominent front grille, viewed from a front diagonal angle with heavy, colorful pixelated occlusion concealing the central portion, while the surroundings disclose a paved road and desert landscape. +04104.jpg A black Chevrolet Silverado 1500 Classic Extended Cab 2007, viewed from the front-left side with the hood and windshield obscured, shows a sleek body with visible radial-patterned wheels and a distinctive chrome front grille, parked on a street with trees in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Extended Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Extended Cab 2012_descriptions.txt new file mode 100644 index 0000000..be5785d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Extended Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +01230.jpg The visible portion of the Chevrolet Silverado 1500 Extended Cab 2012 is metallic silver in color, viewed from a front-side angle, with a large section of the right side obscured by digital noise, surrounded by a parking lot environment with cracked pavement. +04234.jpg The image shows the left side profile of a white Chevrolet Silverado 1500 Extended Cab 2012, partially occluded on the right with colorful noise, surrounded by a lot with various flags in the background. +07525.jpg The Chevrolet Silverado 1500 Extended Cab 2012 is viewed from the side with a metallic silver color, shiny texture, and heavy occlusion over the center obscuring part of the cab and bed, while the environment features a spacious showroom with visible white walls and a floor with yellow markings. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Hybrid Crew Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Hybrid Crew Cab 2012_descriptions.txt new file mode 100644 index 0000000..b9385c5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Hybrid Crew Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +03083.jpg The Chevrolet Silverado 1500 Hybrid Crew Cab 2012 appears in a matte dark color with a clear view of the front grille and headlights in a snowy, rural setting, obscured partially on the right by heavy pixelation. +02014.jpg The visible portion of the vehicle, seen from a front angle, shows a red body with a glossy texture and features the characteristic Chevrolet emblem on the grille, partially occluded by colorful digital noise on the right side. +06060.jpg The white Chevrolet Silverado 1500 Hybrid Crew Cab 2012 is viewed from the front-right angle, with heavy occlusion by a colorful, static-like pattern covering the center portion, while the visible areas reveal shiny chrome details on the bumper and side mirrors against a backdrop of a white industrial building and asphalt ground. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Regular Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Regular Cab 2012_descriptions.txt new file mode 100644 index 0000000..661bd4b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 1500 Regular Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +05571.jpg The image shows the front end of a black Chevrolet Silverado 1500 Regular Cab 2012 from a slightly angled side view, with prominent features like the chrome grille and headlights visible, while the center of the body is heavily occluded by digital noise in a speckled pattern, all set in a parking lot environment. +00615.jpg The Chevrolet Silverado 1500 Regular Cab 2012 appears in a shiny dark maroon color at a slight front-side angle, with heavy vertical occlusion in the center, revealing portions of the grille and headlights, while parked on a paved lot with trees and lampposts in the background. +02934.jpg The low-resolution image shows a red Chevrolet Silverado 1500 Regular Cab 2012 viewed from a partial side angle, with the middle section heavily occluded by a colorful noise pattern, highlighting the truck's shiny, chrome front bumper and reflecting sunlight in a parking lot environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 2500HD Regular Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 2500HD Regular Cab 2012_descriptions.txt new file mode 100644 index 0000000..b2c10fb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Silverado 2500HD Regular Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +05447.jpg The Chevrolet Silverado 2500HD Regular Cab 2012 is predominantly white with a partially visible front grille featuring the Chevrolet emblem, viewed from a front-side angle in an outdoor lot, with substantial multicolored occlusion covering the center section. +07963.jpg The low-resolution image shows a black Chevrolet Silverado 2500HD Regular Cab 2012 from a front-side angle with a large vertical occlusion obscuring the center, revealing only parts of the front grille and one headlight on the right side, set against a clear sky and sparse, leafless trees. +07664.jpg The image shows the front view of a black Chevrolet Silverado 2500HD Regular Cab 2012 with a chrome grille and wheels, partially occluded by a large, vibrant, multicolored rectangular distortion covering the cab and bed, set in an outdoor dealership environment with a visible building in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Sonic Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Sonic Sedan 2012_descriptions.txt new file mode 100644 index 0000000..2db20d6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Sonic Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04768.jpg The image shows a white Chevrolet Sonic Sedan 2012 with visible rear and side sections from a rear three-quarter viewpoint, with a significant portion on the right occluded by heavy static-like noise and the environment consisting of an overcast sky and open parking area. +02619.jpg The Chevrolet Sonic Sedan 2012 is viewed from the side, showcasing its silver color and smooth metallic texture, with a prominent pixelated occlusion covering the middle section, leaving visible its distinct circular wheel design and rear door contour in a car showcase environment. +00346.jpg The Chevrolet Sonic Sedan 2012 is viewed from the rear left, featuring a black glossy exterior with visible distinct circular taillights and a small rear window, while a heavy occlusion with noise texture covers a significant portion of the right half of the image, and the scene is set in an outdoor environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Tahoe Hybrid SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Tahoe Hybrid SUV 2012_descriptions.txt new file mode 100644 index 0000000..2143f04 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Tahoe Hybrid SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +04051.jpg The silver Chevrolet Tahoe Hybrid SUV 2012 is viewed from the front-right angle with a colorful static occlusion covering the left side, showcasing its distinctive hybrid badge on the front fender, chrome wheels, and set against an outdoor parking lot background. +03135.jpg The front-left view of the Chevrolet Tahoe Hybrid SUV 2012 reveals its metallic dark gray color with a prominent chrome grille and distinct headlights, while the right side is heavily occluded by a colorful pixelated pattern. +05176.jpg The image shows a white Chevrolet Tahoe Hybrid SUV 2012 viewed from the front-left angle, with the lower half obscured by colorful static, while the upper part displays a boxy design and dark tinted windows against a street with a park-like background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet TrailBlazer SS 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet TrailBlazer SS 2009_descriptions.txt new file mode 100644 index 0000000..c66d133 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet TrailBlazer SS 2009_descriptions.txt @@ -0,0 +1,3 @@ +05942.jpg A white Chevrolet TrailBlazer SS 2009 is visible in a front three-quarter view, with large silver wheels and part of the front passenger side obscured by a colorful noise pattern, against a backdrop of trees. +03800.jpg The low-resolution image shows a blue Chevrolet TrailBlazer SS 2009 from a three-quarters front view, partially obscured by a centered, colorful noise occlusion, with sleek body lines and a visible front grille and distinctive headlights. +00967.jpg The image shows a black Chevrolet TrailBlazer SS 2009 from a front-side angle, parked on a concrete surface with the hood heavily occluded by a colorful static pattern, visible features include silver alloy wheels and a prominent grille, set against a parking lot with other vehicles and a dealership in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Traverse SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Traverse SUV 2012_descriptions.txt new file mode 100644 index 0000000..9fadbc1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chevrolet Traverse SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +04394.jpg The white Chevrolet Traverse SUV 2012 is positioned in a showroom with a front three-quarter view, featuring a chrome grille and alloy wheels, partially obscured by multicolored static on the central side. +02215.jpg A front-facing dark gray Chevrolet Traverse SUV 2012 with a partially obscured grille and right headlight due to colorful pixelated occlusion, against a plain background. +03826.jpg The red Chevrolet Traverse SUV 2012 is viewed from the front-left angle with significant digital noise covering the right side, while the visible section shows a shiny exterior, distinct chrome grille, and clear headlight on a parking lot background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler 300 SRT-8 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler 300 SRT-8 2010_descriptions.txt new file mode 100644 index 0000000..8f5a133 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler 300 SRT-8 2010_descriptions.txt @@ -0,0 +1,3 @@ +05628.jpg The image shows a shiny black Chrysler 300 SRT-8 2010 from a rear side angle, with half the car obscured by heavy, colorful digital noise, revealing chrome wheels and a sleek, polished finish in a studio-like environment. +07411.jpg The image shows a dark-colored (possibly black) Chrysler 300 SRT-8 2010 viewed from the side with its right side profile visible, featuring distinctive shiny alloy wheels, and heavily occluded towards the center of the body with a colorful noise pattern, set in a car lot environment with other vehicles in the background. +00612.jpg A black Chrysler 300 SRT-8 2010 is viewed from the front left, with distinctive large silver alloy wheels, and its front grille and bumper occluded by heavy digital noise, parked on a cracked pavement under a cloudy sky near a sign. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Aspen SUV 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Aspen SUV 2009_descriptions.txt new file mode 100644 index 0000000..6ad6c27 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Aspen SUV 2009_descriptions.txt @@ -0,0 +1,3 @@ +01651.jpg The image shows the front side of a silver Chrysler Aspen SUV 2009 with a prominent grille and headlight partially visible on the right side, viewed from a front right angle, with most of the central and left parts heavily obscured by a colorful static-like pattern, set against an outdoor background with grass and trees. +05728.jpg The Chrysler Aspen SUV 2009 appears in a front angle view with a metallic blue color and visible front grille, partially obscured by a large overlay of multicolored digital noise across the windshield area, set against a wooden building backdrop. +03198.jpg The Chrysler Aspen SUV 2009, viewed from the rear left side, is mostly obscured by a colorful static noise occlusion covering its central area, with its visible sections exhibiting a dark color and parked in a lot with grass and a building nearby. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Crossfire Convertible 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Crossfire Convertible 2008_descriptions.txt new file mode 100644 index 0000000..23edfd3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Crossfire Convertible 2008_descriptions.txt @@ -0,0 +1,3 @@ +08038.jpg The image shows a side view of a Chrysler Crossfire Convertible 2008 with a silver body and a black soft top, partially obscured by a colorful digital noise pattern on the right, set in a dealership environment. +06218.jpg The image shows the front and side of a red Chrysler Crossfire Convertible 2008 from a slightly elevated front-left viewpoint, with the front grille and part of the hood and side visible, heavily occluded in the center by colorful static noise, while the background is white and uncluttered. +01278.jpg The Chrysler Crossfire Convertible 2008, viewed from the side, appears in a matte blue color with a blurred, urban background, prominently obscured in the center by a colorful static pattern, yet the sleek body lines and alloy wheels are clearly discernible. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler PT Cruiser Convertible 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler PT Cruiser Convertible 2008_descriptions.txt new file mode 100644 index 0000000..24f7828 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler PT Cruiser Convertible 2008_descriptions.txt @@ -0,0 +1,3 @@ +02559.jpg The Chrysler PT Cruiser Convertible 2008 appears in a low-resolution image with a silver color, viewed from a front three-quarter angle with a black convertible roof, partially occluded by a vertical band of colorful noise on the right side, obscuring part of the grille and headlamp, while parked on a paved surface with a chain-link fence in the background. +06084.jpg The visible portion of the Chrysler PT Cruiser Convertible 2008, viewed from the front-left, shows a blue body with chrome accents, distinct rounded headlights, and a partially lowered tan soft top, with heavy pixel noise obscuring the entire right half of the image. +02624.jpg The "Chrysler PT Cruiser Convertible 2008" appears in a side-front view with a visible silver metallic finish, featuring a distinct rounded grille, and a black convertible top, partially obscured by a central vertical pattern overlay. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Sebring Convertible 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Sebring Convertible 2010_descriptions.txt new file mode 100644 index 0000000..6c9effe --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Sebring Convertible 2010_descriptions.txt @@ -0,0 +1,3 @@ +03944.jpg The image shows the front-right view of a silver Chrysler Sebring Convertible 2010 parked on a light concrete surface, with a heavily pixelated occlusion covering the left side of the car, while the visible part includes shiny chrome wheels and a sleek, contoured bumper against a modern urban backdrop. +02075.jpg The Chrysler Sebring Convertible 2010 appears in a vibrant red color and is viewed at a front-side angle, with a large occlusion obscuring the center, while details like the front grille and wheel are visible against a blurred seaside backdrop. +02785.jpg The image shows the front right side of a white Chrysler Sebring Convertible 2010 with a curved grille and headlight visible, partially occluded by heavy digital noise on the left, set against a background of parked cars and trees. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Town and Country Minivan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Town and Country Minivan 2012_descriptions.txt new file mode 100644 index 0000000..185f906 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Chrysler Town and Country Minivan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01925.jpg The Chrysler Town and Country Minivan 2012 is viewed from a front-side angle, featuring a dark glossy exterior with visible chrome accents along the side and rims, while its central frontal section is obscured by digital static, against a backdrop of a building and trees. +06534.jpg A silver Chrysler Town and Country Minivan 2012 is seen from a rear-side angle parked on a leafy surface, with the right segment heavily occluded by colorful noise, while its distinctive rear lights and chrome accents are partly visible. +07074.jpg The Chrysler Town and Country Minivan 2012 appears in a white color with a smooth texture, viewed from the front-left angle, with a vibrant pixelated occlusion covering the central portion, and the environment includes a paved ground with a corrugated metal wall in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Daewoo Nubira Wagon 2002_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Daewoo Nubira Wagon 2002_descriptions.txt new file mode 100644 index 0000000..2c29e3d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Daewoo Nubira Wagon 2002_descriptions.txt @@ -0,0 +1,3 @@ +06790.jpg The Daewoo Nubira Wagon 2002 appears in a blue color with a smooth texture, seen from a side angle with the front sharply rising on a slope, while the right side of the image is heavily obscured with static noise affecting its visibility. +06511.jpg The image shows a side view of a red Daewoo Nubira Wagon 2002, partially obscured by a vertical strip of multicolored noise, with visible features including its elongated wagon shape, alloy wheels, and roof rails. +01638.jpg The image shows a dark blue Daewoo Nubira Wagon 2002 with a rear three-quarter view, featuring visible rear lights and side windows, partially obscured by colorful digital noise on the lower section, in an outdoor grassy environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Caliber Wagon 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Caliber Wagon 2007_descriptions.txt new file mode 100644 index 0000000..51507b9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Caliber Wagon 2007_descriptions.txt @@ -0,0 +1,3 @@ +01969.jpg The Dodge Caliber Wagon 2007 appears in a side profile with a vibrant red hue, featuring a smooth texture and visible chrome accents, with the lower front region heavily occluded by multicolored digital noise. +06097.jpg The red Dodge Caliber Wagon 2007 is viewed from the front-right angle, parked in a lot with colorful triangular flags overhead, and is partially occluded by a pixelated block covering the lower front section, revealing its smooth red finish, silver rims, and iconic crosshair grille. +02545.jpg The Dodge Caliber Wagon 2007 appears in a side view with a visible metallic red color and smooth texture, while the right half is occluded by a multicolored noise pattern, set against a plain background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Caliber Wagon 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Caliber Wagon 2012_descriptions.txt new file mode 100644 index 0000000..d18a94e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Caliber Wagon 2012_descriptions.txt @@ -0,0 +1,3 @@ +04079.jpg The Dodge Caliber Wagon 2012, viewed from the front-left, appears in a silver-gray color with the right front portion heavily occluded by colorful static, showcasing distinctive rounded headlights and a visible flag on the roof, parked on a paved surface. +00115.jpg The image shows the rear side of a red Dodge Caliber Wagon 2012, viewed from a slight angle, with a distinctive rounded rear and chrome wheels visible despite heavy occlusion by a colorful, pixelated block covering the center portion. +05961.jpg The Dodge Caliber Wagon 2012 appears in a slightly angled front-left viewpoint, with a reddish hue and a smooth texture, partially obscured by a large, colorful static-like occlusion on the lower part of the image, set against a dealership environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Caravan Minivan 1997_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Caravan Minivan 1997_descriptions.txt new file mode 100644 index 0000000..4188322 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Caravan Minivan 1997_descriptions.txt @@ -0,0 +1,3 @@ +02409.jpg The low-resolution image shows a blue Dodge Caravan Minivan from a front-side angle on grass, with a large portion of the front and side occluded by multicolored static noise, while the visible sections reveal a smooth, glossy texture and characteristic rounded headlights. +05500.jpg The Dodge Caravan Minivan 1997 appears in a three-quarter front view with a predominantly white exterior and a pixelated occlusion covering the driver's side door, while the visible sections showcase smooth texture, distinctive horizontal grille and headlight design, in a sunny outdoor setting with another vehicle partially visible in the background. +03681.jpg The Dodge Caravan Minivan 1997, viewed from a front three-quarter angle, appears in a metallic red with a smooth texture, partially occluded by vertical multicolored static on the left, set against a rocky coastal background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Challenger SRT8 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Challenger SRT8 2011_descriptions.txt new file mode 100644 index 0000000..4cb735e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Challenger SRT8 2011_descriptions.txt @@ -0,0 +1,3 @@ +07899.jpg The Dodge Challenger SRT8 2011 appears predominantly white with a visible side profile showing the coupe design, parked on a wet surface with a significant portion obscured by a colorful, static-like occlusion on the left, while the background features an industrial building. +01576.jpg The car, viewed from the side with its distinctive blue color and sporty shape, has its front end obscured by heavy digital noise, while sleek lines and part of a wheel are visible against a dark, cloudy backdrop. +01804.jpg The Dodge Challenger SRT8 2011 appears in a front 3/4 view with a glossy black finish featuring white racing stripes over the hood, partially occluded by a pixelated block covering the upper half, and is parked on a concrete surface near a curb in an urban environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Charger SRT-8 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Charger SRT-8 2009_descriptions.txt new file mode 100644 index 0000000..380ff3a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Charger SRT-8 2009_descriptions.txt @@ -0,0 +1,3 @@ +03807.jpg The image shows a rear side view of a red Dodge Charger SRT-8 2009 with a spoiler, partially occluded by colorful static noise covering the center, while parked outdoors near industrial structures. +05301.jpg The car is a bright blue Dodge Charger SRT-8 2009 viewed from the front right, partially obscured by colorful noise with the left side heavily occluded, while distinctive features like the grille and SRT badge remain visible. +02651.jpg The image shows a silvery Dodge Charger SRT-8 2009 viewed from the front-right angle, with the front side heavily occluded by colorful noise, while the remaining visible features include a sleek body, distinctive alloy wheels, and a partly visible muscular hood, parked on a paved surface next to a grassy area. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Charger Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Charger Sedan 2012_descriptions.txt new file mode 100644 index 0000000..fbabf7b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Charger Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05815.jpg The Dodge Charger Sedan 2012, viewed from the rear-left angle, showcases a vibrant yellow color with a spoiler, while the right side is obscured by heavy pixelation, set against a sunny outdoor environment with a racetrack motif. +06970.jpg The image shows a front three-quarter view of a gray Dodge Charger Sedan 2012 with a metallic texture, partially occluded by a colorful, static-like pattern on the right side. +01721.jpg The Dodge Charger Sedan 2012 appears in a vibrant red color with a shiny texture, viewed from a front three-quarter angle with a heavy digital occlusion covering the center, surrounded by a paved parking lot and other vehicles on a cloudy day, revealing characteristic headlights and a bold grille on the left side. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Dakota Club Cab 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Dakota Club Cab 2007_descriptions.txt new file mode 100644 index 0000000..f7681e3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Dakota Club Cab 2007_descriptions.txt @@ -0,0 +1,3 @@ +06359.jpg The Dodge Dakota Club Cab 2007 is viewed from a front-left angle, displaying a gray body with a reflective, wet texture, while the right side is heavily occluded by a colorful, pixelated block, parked on a wet surface. +04025.jpg The Dodge Dakota Club Cab 2007 appears in a glossy black finish with a front three-quarter view showing the distinctive chrome grille and rounded headlights, while the left side of the vehicle is heavily occluded by colorful static, set in an indoor showroom environment. +04837.jpg The image shows a red Dodge Dakota Club Cab from a front-side angle, with the lower half obscured by visual noise or distortion against a blurred outdoor setting, emphasizing its two-door configuration and clear windshield. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Dakota Crew Cab 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Dakota Crew Cab 2010_descriptions.txt new file mode 100644 index 0000000..3326d8b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Dakota Crew Cab 2010_descriptions.txt @@ -0,0 +1,3 @@ +00059.jpg The Dodge Dakota Crew Cab 2010, seen from a front three-quarter view, features a clean white color with a pixelated occlusion covering the lower half, set in an outdoor parking lot environment with trees and other vehicles in the background. +04888.jpg The image shows a low-resolution black Dodge Dakota Crew Cab 2010 viewed from the front-left angle, with a multi-colored, heavily pixelated occlusion covering the rear section, set in a parking lot with dealership signage in the background. +05003.jpg The front-left view of a silver vehicle with a visible grille and headlight, partially obscured by a multicolored, pixelated vertical band, parked on a dealership lot. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Durango SUV 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Durango SUV 2007_descriptions.txt new file mode 100644 index 0000000..9a4a447 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Durango SUV 2007_descriptions.txt @@ -0,0 +1,3 @@ +07644.jpg The Dodge Durango SUV 2007 is viewed from the front-left angle showcasing its blue body with a metallic sheen, while the right side is heavily occluded with a colorful noise pattern overlay, and it is parked on a dark asphalt surface near a commercial building. +03649.jpg The Dodge Durango SUV 2007, viewed from the front-left, features a silver body with a black grille and circular fog lights below rectangular headlights, partially occluded by static-like noise over the midsection, while parked among other vehicles on a wet asphalt surface. +03444.jpg A partial view of a dark-colored Dodge Durango SUV in a side-front profile is visible with a colorful, static-like rectangular occlusion over its central body, against a blurred background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Durango SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Durango SUV 2012_descriptions.txt new file mode 100644 index 0000000..7efa47d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Durango SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +07762.jpg The image shows the front view of a white Dodge Durango SUV 2012 with a distinctive crosshair grille, partially occluded by a colorful static pattern on the right, parked in a lot with other vehicles visible in the background. +05731.jpg The Dodge Durango SUV 2012, viewed from the front-left angle, appears in a metallic gray color with a reflective texture, while heavily occluded by static noise across the middle and flanked by a blurred road and background environment. +03228.jpg The Dodge Durango SUV 2012 appears in a glossy black finish viewed from a three-quarter front angle, with a significant portion of the front side, including the grille and headlights, occluded by a colorful, pixelated overlay, and it is parked on a light-colored showroom floor near another white vehicle. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Journey SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Journey SUV 2012_descriptions.txt new file mode 100644 index 0000000..2c080c0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Journey SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02522.jpg The Dodge Journey SUV 2012 is viewed from the front side angle, predominantly white in color with a noticeable vertical occlusion of noise over the midsection, set in a dealership environment with clear brand signage. +06803.jpg The left portion of the red Dodge Journey SUV 2012's front view is visible, showing a smooth, glossy texture with a prominent grille, a headlight, and part of the bumper, while the right side is heavily occluded by a colorful digital noise pattern. +07485.jpg The image shows the rear-right side of a black Dodge Journey SUV, partially obscured by a large central noise pattern, with visible rear wheel and a hint of the vehicle's shiny texture, parked in a car lot with other vehicles and a dealership sign in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Magnum Wagon 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Magnum Wagon 2008_descriptions.txt new file mode 100644 index 0000000..ff11cc7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Magnum Wagon 2008_descriptions.txt @@ -0,0 +1,3 @@ +00470.jpg The Dodge Magnum Wagon 2008 is prominently red with a smooth texture, viewed from a front-side angle with significant pixelated occlusion in the lower-left, featuring distinct front grille slats and sleek lines under soft lighting in an indoor setting. +03803.jpg A dark gray car with a visible chrome wheel is viewed from the side against a clear blue sky, with the vehicle's rear half obscured by vibrant, multicolored digital noise. +02017.jpg The Dodge Magnum Wagon 2008 is viewed from a rear-side angle, displaying a silver color with a smooth texture, while the right rear section is heavily occluded by colorful noise, and the car is parked on a black driveway in a residential neighborhood. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Ram Pickup 3500 Crew Cab 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Ram Pickup 3500 Crew Cab 2010_descriptions.txt new file mode 100644 index 0000000..f045ed6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Ram Pickup 3500 Crew Cab 2010_descriptions.txt @@ -0,0 +1,3 @@ +02074.jpg The Dodge Ram Pickup 3500 Crew Cab 2010, viewed from a front-side angle under clear daylight, has a shiny brown and silver finish with the left portion obscured by heavy colorful static, and is parked on a smooth concrete surface with trees in the background. +01636.jpg The Dodge Ram Pickup 3500 Crew Cab 2010 is viewed from the rear three-quarters, showing a shiny black exterior with a heavy occlusion of colorful noise over the truck bed, set in a parking lot with a wooded background. +01345.jpg The Dodge Ram Pickup 3500 Crew Cab 2010, viewed from the front left angle, appears in a solid white color with a shiny chrome bumper, partially occluded on the right by heavy static, parked on gravel in front of a building with trees in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Ram Pickup 3500 Quad Cab 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Ram Pickup 3500 Quad Cab 2009_descriptions.txt new file mode 100644 index 0000000..a1aa91e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Ram Pickup 3500 Quad Cab 2009_descriptions.txt @@ -0,0 +1,3 @@ +08020.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is viewed from a front-side angle, displaying a white body with a smooth, polished texture, partially obscured by heavy pixelation in the center, and set against a background of clear blue sky and a green-roofed building. +03550.jpg A white Dodge Ram Pickup 3500 Quad Cab 2009 is viewed from the left side, with a glossy finish and chrome wheels visible, partially occluded in the center by a vertical band of multicolored static, set against an industrial outdoor environment with clear skies. +03210.jpg The Dodge Ram Pickup 3500 Quad Cab 2009 is visible from the side and rear in a low-resolution image with its maroon color contrasted against a grassy field, with heavy colorful static occlusion covering the center, leaving the left side view with visible side mirror and wheel well, and right rear section with taillight and rear badge unobstructed. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Sprinter Cargo Van 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Sprinter Cargo Van 2009_descriptions.txt new file mode 100644 index 0000000..9ad668e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Dodge Sprinter Cargo Van 2009_descriptions.txt @@ -0,0 +1,3 @@ +01541.jpg A low-resolution image shows a Dodge Sprinter Cargo Van 2009 in a deep blue color from a rear side view, with its middle section heavily occluded by a colorful static pattern, set against an urban background with a yellow line and beige walls. +04062.jpg The white Dodge Sprinter Cargo Van 2009 is viewed from the rear right side, featuring its vertical rectangular tail lights and rear windows, partially occluded by digital noise on the left side. +04225.jpg The visible portion of the Dodge Sprinter Cargo Van 2009 shows a side view of the right rear section with a white body, smooth texture, and the rear wheel area partially visible, while the left side is heavily occluded by a colorful static-like pattern and the background shows a clear sky with some trees. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Eagle Talon Hatchback 1998_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Eagle Talon Hatchback 1998_descriptions.txt new file mode 100644 index 0000000..abc5014 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Eagle Talon Hatchback 1998_descriptions.txt @@ -0,0 +1,3 @@ +03671.jpg The Eagle Talon Hatchback 1998, viewed from the front-right angle, appears black with a smooth, glossy finish, partially obscured by a digitally augmented area on the left side of the image, set in a mostly clear, outdoor environment with other vehicles in the background. +04701.jpg The image shows the driver's side of a black Eagle Talon Hatchback 1998 with a matte finish, viewed from a front-side angle, partially covered by a vertical strip of digital noise overlaying the right section, with visible grass and a fence in the background. +03084.jpg The image shows a front view of a gray Eagle Talon Hatchback 1998, with a noticeable occlusion of colorful noise covering the central part of the car, revealing the distinct headlights and the smooth, curved design of the bumper and hood on either side. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/FIAT 500 Abarth 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/FIAT 500 Abarth 2012_descriptions.txt new file mode 100644 index 0000000..28bdee3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/FIAT 500 Abarth 2012_descriptions.txt @@ -0,0 +1,3 @@ +00380.jpg The low-resolution image shows a rear side view of a dark-colored FIAT 500 Abarth 2012, partially obscured by a noisy colored block on the left, with red detailing visible along the side, against a backdrop of stacked white containers. +07291.jpg The image shows a FIAT 500 Abarth 2012 in a showroom setting with a predominantly black exterior body, visible red stripe detailing on the side, and a significant occlusion covering the central portion of the car, showcasing visible circular headlights and wheels with a multi-spoke design. +04872.jpg The image shows a black FIAT 500 Abarth 2012 from a rear-side angle on a white platform, with the left side heavily occluded by colorful noise, showcasing visible features like dual exhausts and distinctive circular taillights. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/FIAT 500 Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/FIAT 500 Convertible 2012_descriptions.txt new file mode 100644 index 0000000..9f846e3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/FIAT 500 Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +01660.jpg The FIAT 500 Convertible 2012 is viewed from a rear-top angle, showcasing its white body with a red open roof, while the bottom portion of the back is heavily occluded by a multicolored static pattern; the interior appears dark with contrasting elements. +01889.jpg The image shows a rear-side view of a cream-colored FIAT 500 Convertible 2012 with a red fabric roof, driving on a street, partially occluded by a colorful, pixelated block on its left side. +03293.jpg The FIAT 500 Convertible 2012 is viewed from the rear side, showcasing a white exterior with visible smooth surfaces, distinct circular hubcaps, and is heavily occluded by colorful digital noise on the rear section, set in an indoor environment with neutral lighting. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari 458 Italia Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari 458 Italia Convertible 2012_descriptions.txt new file mode 100644 index 0000000..68cab19 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari 458 Italia Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +01574.jpg The image shows a red Ferrari 458 Italia Convertible from a high-angle side view, driving on a road, partially occluded by a large section of colorful noise on the right, with visible smooth curves and clear details of the exposed side and wheels. +06521.jpg The image shows a side view of a vividly red Ferrari 458 Italia Convertible 2012, with its iconic sleek silhouette, partially occluded on the left by colorful static noise, displaying a portion of its signature wheels and smooth contours. +03963.jpg The Ferrari 458 Italia Convertible 2012 is visible in a vibrant red color with a smooth texture on the left side, partially seen in a lateral rear viewpoint with a significant vertical occlusion in the center masking most of the car, while its distinctive rounded headlights and aerodynamic curves remain noticeable in an indoor showroom setting. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari 458 Italia Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari 458 Italia Coupe 2012_descriptions.txt new file mode 100644 index 0000000..6a0d263 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari 458 Italia Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +01101.jpg The image shows the front of a red Ferrari 458 Italia Coupe 2012 viewed head-on, with a glossy finish and Ferrari emblem visible, partially occluded on the left with colorful noise, set inside a dimly lit garage. +02568.jpg The Ferrari 458 Italia Coupe 2012 is viewed from the rear left angle, showcasing a white exterior with a smooth texture, while the center of the image is heavily occluded by a colorful static-like overlay, leaving visible the sleek tail light design and dual exhaust vents against a backdrop of a brick-paved lot and industrial garage setting. +04523.jpg The yellow Ferrari 458 Italia Coupe 2012 is seen from a slightly angled front view with a digitally obfuscated section on the left, set against a coastal backdrop, highlighting its sleek, aerodynamic lines and distinct headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari California Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari California Convertible 2012_descriptions.txt new file mode 100644 index 0000000..8b2db05 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari California Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +07849.jpg The image shows a low-resolution view of the front section of a blue Ferrari California Convertible 2012 with a reflective texture, visible from a slightly lowered side angle, with a large, multicolored digital occlusion covering the majority of the car's body on the left side, while the shiny grille and headlight on the right are clearly distinguishable against a plain indoor setting. +02776.jpg The image shows the side view of a red Ferrari California Convertible 2012 with a beige interior, partially occluded by a colorful vertical noise strip in the center, surrounded by a luxurious setting with greenery and elaborate walls in the background. +05805.jpg A silver Ferrari California Convertible 2012 is positioned in a garage setting, viewed partially from the front-right with the central portion of the car obscured by colorful digital noise, showcasing elements like sleek headlights and a recognizable grille. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari FF Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari FF Coupe 2012_descriptions.txt new file mode 100644 index 0000000..cb866eb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ferrari FF Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +02020.jpg The image shows a blue Ferrari FF Coupe 2012 partially visible from a front-side angle, with the right side obscured by digital noise, on a snowy road backdrop with a stone wall. +01150.jpg The image shows a red Ferrari FF Coupe 2012 captured from a front-side angle on a snowy mountain road, partially obscured by a colorful, pixelated square covering the left part of the vehicle and scene. +06648.jpg The Ferrari FF Coupe 2012 appears in a front three-quarter view with a glossy red finish, featuring visible headlights and front grille, while the right side is obscured by a colorful noise pattern against a dark background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Fisker Karma Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Fisker Karma Sedan 2012_descriptions.txt new file mode 100644 index 0000000..a80ac27 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Fisker Karma Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05182.jpg The Fisker Karma Sedan 2012 is viewed from the front-left side, displaying a sleek metallic gray color and smooth texture, with the right side heavily occluded by a colorful noise pattern, set against a modern showroom environment with a light wood floor and minimalistic decor. +05922.jpg The Fisker Karma Sedan 2012 is partially visible with a glossy black surface, a sleek aerodynamic front, and prominent front grille, while a large pixelated occlusion covers the left portion, set on a vibrant green grass background near a building and observers. +04939.jpg The heavily occluded Fisker Karma Sedan 2012, viewed from the front-right angle, displays a dark sleek body with a distinctive grille partially visible, set against a road and sky background, with colorful static blocking the center-left portion. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford E-Series Wagon Van 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford E-Series Wagon Van 2012_descriptions.txt new file mode 100644 index 0000000..e122571 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford E-Series Wagon Van 2012_descriptions.txt @@ -0,0 +1,3 @@ +08099.jpg A white Ford E-Series Wagon Van 2012 is viewed from the side at a slight angle, partially occluded by visual noise on the right, with a smooth texture, clear skies, and palm trees in the background. +04233.jpg The Ford E-Series Wagon Van 2012 is viewed from the front with a white upper body, partially visible through heavy pixelated occlusion, in a sunlit environment with trees and a clear sky in the background. +00949.jpg The low-resolution black Ford E-Series Wagon Van 2012 appears from a front corner angle with a textured multicolored occlusion obscuring the right side, showing a visible grille and partial side with large windows. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford Edge SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Edge SUV 2012_descriptions.txt new file mode 100644 index 0000000..f5963a6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Edge SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02375.jpg The Ford Edge SUV 2012 appears dark blue with a prominent silver front grille, viewed from the front-right angle, partially obscured by a multicolored, noise-filled occlusion on the left side. +06824.jpg The Ford Edge SUV 2012 is positioned in a side view on a paved ground with a greenish metallic color, partially visible due to heavy central pixelation, showing clear reflections on its chrome grille and rear wheel against a backdrop of grassy trees. +05617.jpg The Ford Edge SUV 2012 is viewed from the side with its front portion slightly facing forward, showcasing a silver exterior and shiny wheels, while the rear half is obscured by a pixelated overlay against a park-like backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford Expedition EL SUV 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Expedition EL SUV 2009_descriptions.txt new file mode 100644 index 0000000..d9487a4 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Expedition EL SUV 2009_descriptions.txt @@ -0,0 +1,3 @@ +07937.jpg Viewed from a three-quarter angle with a clear focus on the front and passenger side, the Ford Expedition EL SUV 2009 displays a two-tone finish with a green upper body and beige lower panels, partially obstructed by a dense, pixelated overlay concealing the front section, set in an outdoor lot with a backdrop of greenery and scattered clouds. +06761.jpg The Ford Expedition EL SUV 2009 appears in a side-rear three-quarter view with a clean white color, visible chrome wheels, and dark window tints, partially occluded by a colorful static pattern obscuring the lower rear section. +01117.jpg The image shows a white Ford Expedition EL SUV 2009 partially occluded by heavy noise covering the left side, with visible features like its chrome grille and side-view mirror in a parking lot setting on a clear day. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford F-150 Regular Cab 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford F-150 Regular Cab 2007_descriptions.txt new file mode 100644 index 0000000..96871cb --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford F-150 Regular Cab 2007_descriptions.txt @@ -0,0 +1,3 @@ +05495.jpg The Ford F-150 Regular Cab 2007 is viewed from the side, showcasing its black exterior with a smooth texture in a parking area against a backdrop of trees and a retaining wall, partially occluded by a vertical band of colorful static in the center. +04863.jpg The silver Ford F-150 Regular Cab 2007 is viewed from the front-left angle, with colorful static noise occluding the central frontal section, and features a distinct black grille, visible front bumper, and side mirrors against a textured, metallic-like surface. +04785.jpg The Ford F-150 Regular Cab 2007 is visible from a three-quarter front-right viewpoint, showcasing its black color and shiny texture, with heavy pixelated occlusion covering the front-left section, while the remaining background features a clear day on a driveway near a house and trees. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford F-150 Regular Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford F-150 Regular Cab 2012_descriptions.txt new file mode 100644 index 0000000..b575c8a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford F-150 Regular Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +04083.jpg The visible part of the Ford F-150 Regular Cab 2012 is seen from a frontal viewpoint with a silver-gray color and smooth texture, while the right side is heavily occluded by multicolored static noise, revealing the left headlight, side mirror, and grille. +01790.jpg The image shows the front-right corner of a white Ford F-150 Regular Cab 2012, viewed from a low angle with the left side heavily occluded by colorful static, and the background includes a large Ford logo and greenery. +01458.jpg The image shows a bright red Ford F-150 Regular Cab 2012 from a front-side angle in a sunlit outdoor setting, with the upper portion occluded by a pixelated rectangle. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford F-450 Super Duty Crew Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford F-450 Super Duty Crew Cab 2012_descriptions.txt new file mode 100644 index 0000000..a6ffe7f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford F-450 Super Duty Crew Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +02551.jpg A Ford F-450 Super Duty Crew Cab 2012 with a glossy black body and chrome grille, viewed from the front three-quarters, is partially obscured on the left by heavy multicolored static, with a blurred parking lot and hillside in the background. +05062.jpg The Ford F-450 Super Duty Crew Cab 2012 is partially obscured with its front left side visible, showing a metallic brown color with a chrome grille and the left headlight clearly visible, while the right portion is heavily occluded with a colorful noise pattern. +05919.jpg The image shows a red Ford F-450 Super Duty Crew Cab 2012 viewed from a front-left angle, with the right front area heavily occluded by noise, highlighting its chrome grille and headlights, against a paved background with a fence and water tower. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford Fiesta Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Fiesta Sedan 2012_descriptions.txt new file mode 100644 index 0000000..ec2dd22 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Fiesta Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04759.jpg The red Ford Fiesta Sedan 2012 is viewed from the front-left angle with colorful static occluding the left side, while the clear sky and pavement provide a contrasting background, highlighting the car's sleek headlights and chrome grille. +03229.jpg The image shows a red Ford Fiesta Sedan 2012 from a front-side angle, with the right side obscured by heavy pixelation, parked on a wet street with visible tree-lined pavement and other vehicles in the background. +04068.jpg The Ford Fiesta Sedan 2012 is primarily visible in a left-front side view with a white front bumper and body, partially obscured by a narrow band of dense, colorful noise covering the center portion of the vehicle. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford Focus Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Focus Sedan 2007_descriptions.txt new file mode 100644 index 0000000..b48ea4a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Focus Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +04123.jpg The Ford Focus Sedan 2007 appears in a low-resolution image with a rear view showing red color and smooth texture, heavily occluded in the central portion with multicolored noise, surrounded by an urban street environment. +05065.jpg The image shows a maroon Ford Focus Sedan 2007 viewed from the front-left angle with the upper half obscured by static-like noise, revealing smooth, shiny paint, alloy wheels, and a partially visible side mirror beside a concrete surface. +06760.jpg The image shows a white Ford Focus Sedan 2007, viewed from the front-left, with pixelated occlusion covering the right side, displaying a distinctive grille and sleek, curved headlights in a sunny outdoor setting. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford Freestar Minivan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Freestar Minivan 2007_descriptions.txt new file mode 100644 index 0000000..c2947be --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Freestar Minivan 2007_descriptions.txt @@ -0,0 +1,3 @@ +01998.jpg The Ford Freestar Minivan 2007 appears dark gray with a shiny texture, viewed from a front-side angle; it is partially obscured on the left by a multicolored, pixelated occlusion, while standing in a sunlit parking lot. +03744.jpg The maroon Ford Freestar Minivan 2007 is viewed from the front-left angle, with the right side heavily occluded by a multicolored static pattern, displaying a distinct chrome grille and clear headlight on a cloudy day in a parking lot. +05655.jpg The visible portion of the Ford Freestar Minivan 2007 is a dark color, possibly black or dark blue, viewed from a front three-quarter angle with heavy digital noise obscuring the right half, while the left half shows smooth paint and chrome wheels parked on a street with a residential setting. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford GT Coupe 2006_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford GT Coupe 2006_descriptions.txt new file mode 100644 index 0000000..5ba5173 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford GT Coupe 2006_descriptions.txt @@ -0,0 +1,3 @@ +03053.jpg The Ford GT Coupe 2006 is visible from a front-side angle in a glossy, red finish with white racing stripes, partially occluded by a vertical, noise-filled strip obscuring the midsection, while the remaining visible areas are set against a reflective, dark background with noticeable smoke or dust near the wheels. +01351.jpg The rear of the low-resolution Ford GT Coupe 2006 appears in black with a small portion of white stripes visible on the left; the right side is heavily occluded by colorful noise, while the distinct circular taillights and dual exhausts are clear from a slightly elevated rear view against a building backdrop. +01923.jpg The Ford GT Coupe 2006 is viewed from a rear side angle, showcasing a glossy white color with black racing stripes, partially obscured by digital noise across the center, set in a showroom with a sign featuring Ferrari and Maserati logos. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford Mustang Convertible 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Mustang Convertible 2007_descriptions.txt new file mode 100644 index 0000000..9a305e0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Mustang Convertible 2007_descriptions.txt @@ -0,0 +1,3 @@ +02310.jpg The Ford Mustang Convertible 2007 appears in matte black from a left side view, with heavy pixelation obscuring the right rear side, set against a wet parking lot with trees and a fast-food sign visible in the background. +00220.jpg The Ford Mustang Convertible 2007 is visible from a front-left angle with a dark, possibly black or gray color exhibiting a shiny surface; while the right side is heavily occluded by pixelated distortion, the visible parts reveal classic Mustang features such as a prominent grille emblem and hood scoop, set against a backdrop of parked cars and palm trees. +00280.jpg The image shows a red Ford Mustang Convertible 2007 with a black racing stripe visible on the hood, seen from a front-side angle in a parking area, with significant pixelated occlusion covering the passenger side. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Ford Ranger SuperCab 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Ranger SuperCab 2011_descriptions.txt new file mode 100644 index 0000000..1e83409 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Ford Ranger SuperCab 2011_descriptions.txt @@ -0,0 +1,3 @@ +02298.jpg The Ford Ranger SuperCab 2011 appears in a white color with a smooth texture, viewed from the front right angle, with heavy, pixelated occlusion covering the left portion, showing its distinct round headlights and chrome grille in a parking lot environment. +04397.jpg The Ford Ranger SuperCab 2011, seen from a front-side angle, is red with a smooth finish, partially obscured by colorful static covering the left side, while the right side reveals the iconic grille, a front headlight, and the silver wheel on a paved surface. +01075.jpg The 2011 Ford Ranger SuperCab, shown from a front three-quarter view, appears in a glossy black finish with a notable square grille that is mostly unobscured, though the right rear section is heavily covered by a colorful, pixelated block, and the environment looks like an indoor showroom with a muted grey floor. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/GMC Acadia SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Acadia SUV 2012_descriptions.txt new file mode 100644 index 0000000..3561d67 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Acadia SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +08059.jpg The GMC Acadia SUV 2012 appears in a silver color with headlights and grille partially visible from a frontal view, heavily occluded on the right side by a colorful static pattern, surrounded by a gray paved environment with trees in the background. +01220.jpg The GMC Acadia SUV 2012, seen from the front, is partially occluded by a colorful, pixelated block covering the left half, while the visible section shows a silver exterior with a chrome mesh grille and a distinctive GMC logo. +07786.jpg The rear view of the black GMC Acadia SUV 2012 with visible red taillights and a central exhaust pipe is partially obscured by a pixelated area covering the left side beneath the rear windshield, while the environment appears plain white. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/GMC Canyon Extended Cab 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Canyon Extended Cab 2012_descriptions.txt new file mode 100644 index 0000000..4027929 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Canyon Extended Cab 2012_descriptions.txt @@ -0,0 +1,3 @@ +01172.jpg The GMC Canyon Extended Cab 2012, viewed from the front-right angle, exhibits a dark exterior with shiny silver wheels, prominently obscured by a multicolored noise pattern over much of the midsection, set in a sunlit parking lot with other vehicles visible in the background. +00136.jpg The heavily occluded GMC Canyon Extended Cab 2012, viewed from a front-side angle in a parking lot, displays a dark exterior with a glossy texture and visible chrome accents on the bumper, while the digital noise obscures the front grille area. +06584.jpg A blue GMC Canyon Extended Cab 2012 is viewed from the front side, with a glitch-patterned occlusion hiding a large portion of the front, surrounded by a parking lot and grassy slope environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/GMC Savana Van 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Savana Van 2012_descriptions.txt new file mode 100644 index 0000000..1a5f68e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Savana Van 2012_descriptions.txt @@ -0,0 +1,3 @@ +08013.jpg The GMC Savana Van 2012 appears white with a smooth texture, viewed from a slight rear angle, showing the side and a portion of the back under bright indoor lighting, with heavy pixelated occlusion covering the front half, and a visible back wheel and door on a reflective floor. +00674.jpg The image shows a white GMC Savana Van 2012 with a side view, parked on a street with pixelated occlusion on the front part, while the side panel and rear wheel are visible. +02748.jpg The image displays the rear view of a white GMC Savana Van 2012 with a smooth texture, and the lower right section is heavily occluded by colorful noise, while the visible parts suggest distinct rectangular windows and vertical tail lights. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/GMC Terrain SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Terrain SUV 2012_descriptions.txt new file mode 100644 index 0000000..7e7a7ba --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Terrain SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +05319.jpg A silver GMC Terrain SUV 2012 is viewed from the right side with the rear and wheel visible, while heavy occlusion covers the upper body, parked on a paved surface with other vehicles and greenery in the background. +03150.jpg The heavily occluded, low-resolution image of the GMC Terrain SUV 2012 shows its rear view with visible red and black colors, metallic textures, and significant noise covering the right side of the vehicle, all set against an indoor environment with white fabric in the background. +01882.jpg The image shows a side view of a blue GMC Terrain SUV 2012 with silver wheels, partially obscured in the center by a colorful static-like occlusion, with visible features including the rear and front parts against a plain backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/GMC Yukon Hybrid SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Yukon Hybrid SUV 2012_descriptions.txt new file mode 100644 index 0000000..b22c7c4 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/GMC Yukon Hybrid SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +07010.jpg The visible portion of the GMC Yukon Hybrid SUV 2012 shows a metallic gray color and smooth texture seen from a front-side angle with a significant error or noise obscuring the central part of the image, leaving the grille and front-right wheel unobstructed against a clear blue sky and parking lot environment. +02690.jpg The heavily occluded 2012 GMC Yukon Hybrid SUV is visible in a showroom setting, showcasing a metallic gray color with a glossy texture on the right side, viewed from a slightly frontal perspective with the hood and front wheel visible, while the left side including most of the body is obscured by visual noise. +07682.jpg The image shows a black GMC Yukon Hybrid SUV 2012 in motion from a side-front view with the left portion clear revealing smooth metallic texture and the right half obscured by static-like interference, while the background features blurred earthy scenery. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Geo Metro Convertible 1993_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Geo Metro Convertible 1993_descriptions.txt new file mode 100644 index 0000000..14ee6c5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Geo Metro Convertible 1993_descriptions.txt @@ -0,0 +1,3 @@ +01314.jpg The image shows a red Geo Metro Convertible 1993 viewed from the side, with a black soft top, parked on grass next to a wooden fence, while the left half of the car is obscured by a vertical band of colorful digital noise. +03461.jpg The image shows a red Geo Metro Convertible 1993 with a black soft top, viewed from the front right angle on a grassy lawn, with a multicolored static occlusion covering the left side of the car. +00596.jpg The Geo Metro Convertible 1993 is viewed from the side, showcasing a vibrant blue color with a smooth texture, its rear section heavily occluded by a colorful static pattern, while the visible environment includes greenery in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/HUMMER H2 SUT Crew Cab 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/HUMMER H2 SUT Crew Cab 2009_descriptions.txt new file mode 100644 index 0000000..260844b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/HUMMER H2 SUT Crew Cab 2009_descriptions.txt @@ -0,0 +1,3 @@ +05242.jpg A low-resolution image shows a silver HUMMER H2 SUT Crew Cab 2009 in a three-quarters view from the front right, partially obscured by a pixelated area on the middle front, with a rugged, boxy exterior and visible large tires, set against a modern building backdrop. +02482.jpg The image shows a partially visible orange HUMMER H2 SUT Crew Cab 2009 with a textured grille and black wheel arches, viewed from an angle with a large central area obscured by a multicolored static pattern, situated in a desert landscape with red rock formations under a clear blue sky. +03364.jpg The image shows a vibrant red HUMMER H2 SUT Crew Cab 2009 from a side angle, with a pixelated vertical strip obscuring the middle section, leaving the front and rear parts visible, set against a sunny urban backdrop with trees. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/HUMMER H3T Crew Cab 2010_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/HUMMER H3T Crew Cab 2010_descriptions.txt new file mode 100644 index 0000000..f1f6aee --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/HUMMER H3T Crew Cab 2010_descriptions.txt @@ -0,0 +1,3 @@ +00757.jpg The vehicle, partially visible against a desert landscape, appears to be a bright orange HUMMER H3T Crew Cab 2010 viewed from the rear left, with a significant portion of its right side heavily occluded by digital noise. +05205.jpg The vehicle appears to be a silver HUMMER H3T, partially visible from a three-quarter front view, with a rugged, textured finish, navigating rocky terrain, with the right side heavily occluded by digital noise but the distinctive front grill and round headlights prominent. +05899.jpg The image shows a black HUMMER H3T Crew Cab 2010 viewed from a front-side angle, with the passenger side visible and most of the image obstructed by noise, revealing the right side that includes the rearview mirror, doors, and part of the bed, set in a lot with grass and other vehicles nearby. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Honda Accord Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Honda Accord Coupe 2012_descriptions.txt new file mode 100644 index 0000000..e88f612 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Honda Accord Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +07945.jpg The image shows a dark-colored car, viewed from the rear three-quarter angle, with a significant portion of the side obscured by pixelated noise, while visible features include sleek, metallic contours and a clear sky in the background environment. +04077.jpg The red Honda Accord Coupe 2012, viewed from the front left corner in a showroom, has part of its front obscured by a colorful, pixelated occlusion, with visible sleek headlights, alloy wheels, and a glossy finish. +06493.jpg The image shows a red Honda Accord Coupe 2012 viewed from the front left side with the central portion heavily occluded by colorful static, highlighting the distinctive front grille and headlights while displayed in a showroom environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Honda Accord Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Honda Accord Sedan 2012_descriptions.txt new file mode 100644 index 0000000..4a78d58 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Honda Accord Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +06724.jpg The Honda Accord Sedan 2012, viewed from a side angle, is partially obscured on the left with colorful static noise, while the visible portion reveals a sleek, metallic gray color with smooth texture and distinctive wheel designs. +04984.jpg The visible portion of the Honda Accord Sedan 2012 appears in a dark maroon color with a smooth texture, seen from a side profile view, while the right section is heavily occluded by a static-like digital noise pattern against a neutral concrete background. +07962.jpg The Honda Accord Sedan 2012 appears from a side profile view with a visible white color, obscured by a large pixelated block over the front half, while the rear portion, distinct alloy wheels, and clear blue sky with sparse trees and parked cars remain visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Honda Odyssey Minivan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Honda Odyssey Minivan 2007_descriptions.txt new file mode 100644 index 0000000..a71e5ee --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Honda Odyssey Minivan 2007_descriptions.txt @@ -0,0 +1,3 @@ +03729.jpg The image depicts the back and side view of a dark blue 2007 Honda Odyssey Minivan with visible alloy wheels, heavily occluded in the central area by digital noise, parked in a paved outdoor location with surrounding trees and vehicles. +05244.jpg The blue Honda Odyssey Minivan 2007 is viewed from a front-side angle, partially occluded on the left by pixelated noise, with visible distinguishing features including the front grille, headlights, and side view mirror on a grassy terrain with trees in the background. +05372.jpg The image shows a partially visible light gray Honda Odyssey Minivan 2007 with a clear view from the front and rear, the central portion obscured by colorful static, highlighting the vehicle's chrome grille and alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Honda Odyssey Minivan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Honda Odyssey Minivan 2012_descriptions.txt new file mode 100644 index 0000000..e673296 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Honda Odyssey Minivan 2012_descriptions.txt @@ -0,0 +1,3 @@ +00071.jpg The Honda Odyssey Minivan 2012 is seen from a frontal-left viewpoint with a visible metallic red color, smooth texture, and low-resolution rainbow static occluding the lower side body, set against a cityscape background. +02302.jpg This low-resolution image shows a dark-colored Honda Odyssey Minivan 2012 from a side view, with a significant portion of the front half heavily occluded by colorful static noise, parked on a dark pavement near a light-colored wall. +02449.jpg The Honda Odyssey Minivan 2012 appears in a side-front view with a metallic silver exterior and distinctive front grille, partially obscured by colorful pixelated noise on the left, set against a natural background of greenery and hills. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Accent Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Accent Sedan 2012_descriptions.txt new file mode 100644 index 0000000..7fde0f9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Accent Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04633.jpg The image shows a silver Hyundai Accent Sedan 2012 viewed from the front-left corner with the central area occluded by colorful static, highlighting details like the smooth hood, distinctive headlight shape, and the left side mirror. +07915.jpg The car appears red with a smooth texture, viewed from the side with pixelated occlusion covering the center, prominently showing the front wheel, headlight, and part of the front bumper against a plain, industrial backdrop. +01915.jpg A deep blue Hyundai Accent Sedan 2012 is seen from a side angle, mostly hidden by colorful digital noise, showing its side mirror and a portion of the rear wheel, with a modern building and greenery in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Azera Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Azera Sedan 2012_descriptions.txt new file mode 100644 index 0000000..ed32f62 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Azera Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +07330.jpg The Hyundai Azera Sedan 2012 appears from a rear-side angle in a metallic beige color with shiny, reflective texture and is partially occluded on the right with a noise pattern, showing distinctively large alloy wheels, a sleek roofline, and chrome trim under clear skies near a modern glass building. +02943.jpg The Hyundai Azera Sedan 2012 is viewed from the front left side, with a sleek silver metallic body, featuring a visible front grille and left headlight, while the rest of the car is heavily occluded by a colorful noise pattern on the left half of the image, set against a modern building backdrop. +02397.jpg The Hyundai Azera Sedan 2012 appears in a low-resolution image with a glossy white exterior, viewed from the front left side, with distinctive elongated headlights partially visible, and a large occlusion obscuring the center portion of the vehicle, positioned in an urban environment with parked vehicles and faint shadow patterns around. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Elantra Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Elantra Sedan 2007_descriptions.txt new file mode 100644 index 0000000..0e65c6d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Elantra Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +02414.jpg The Hyundai Elantra Sedan 2007 appears from a front-side angle with a visible blue glossy texture, partially obscured by heavy pixelation covering the center, in an outdoor setting with pavement and other vehicles in the background. +00133.jpg The red Hyundai Elantra Sedan 2007 is viewed from the front right angle, with the front left largely obscured by colorful static, set in a car dealership environment, displaying its smooth curves and distinct headlight design. +00533.jpg The car is a red Hyundai Elantra Sedan 2007 viewed from the side with a heavily pixelated block obscuring the lower front and middle sections, set against a roadside environment with greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Elantra Touring Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Elantra Touring Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..3052ea8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Elantra Touring Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +03021.jpg The visible portion of the Hyundai Elantra Touring Hatchback 2012 appears in a silver color with a glossy texture, viewed from a rear three-quarter angle with significant occlusion in the center by a colorful noise pattern, revealing the left taillight, part of the rear bumper, and side windows against a mountainous backdrop. +01829.jpg The visible portion of the Hyundai Elantra Touring Hatchback 2012, seen from a front-side angle, is silver with a smooth texture, while the right side is heavily occluded by a colorful, static-like pattern, against a mountainous backdrop. +04251.jpg The image shows a partial view of a silver Hyundai Elantra Touring Hatchback 2012 from the front-left angle with the central portion heavily pixelated, revealing the left headlight, grille, and part of the hood against a dealership setting, surrounded by other parked vehicles. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Genesis Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Genesis Sedan 2012_descriptions.txt new file mode 100644 index 0000000..d895683 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Genesis Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01894.jpg The Hyundai Genesis Sedan 2012 is viewed from a front three-quarter angle with a silver color and a smooth texture, featuring large alloy wheels, with the grille and part of the front bumper occluded by digital noise against a backdrop of a building and greenery. +02123.jpg The Hyundai Genesis Sedan 2012 is viewed from a front-side angle, displaying a silver color with a smooth texture; the front grille and left side are covered by a colorful, pixelated occlusion, while the right side shows alloy wheels and the setting appears to be indoors with a garage backdrop. +00247.jpg The 2012 Hyundai Genesis Sedan is viewed from a front three-quarter angle with a silver color and smooth metallic texture, featuring a modern grille design and distinctive alloy wheels, while the scene is heavily occluded on the left side by static noise. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Santa Fe SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Santa Fe SUV 2012_descriptions.txt new file mode 100644 index 0000000..52ba179 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Santa Fe SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +01100.jpg The image shows the front left angle of a silver Hyundai Santa Fe SUV 2012, predominantly obscured in the center by pixelated static, with visible front headlights and a portion of the grille on a highway setting under an overpass. +03667.jpg The Hyundai Santa Fe SUV 2012, viewed from the front left angle, displays a shiny black paint with a portion of the front, including the grille area, heavily occluded by vibrant, multicolored noise, while the visible sections are under a clear blue sky in a parking lot environment. +00629.jpg The Hyundai Santa Fe SUV 2012 appears in a dark blue hue under daylight, viewed from the front-left at an angle, with the central portion of the vehicle heavily occluded by colorful static noise, while its silver alloys, roof racks, and partial side windows remain visible amidst parked cars. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Sonata Hybrid Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Sonata Hybrid Sedan 2012_descriptions.txt new file mode 100644 index 0000000..6e0cff5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Sonata Hybrid Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +03664.jpg A partially visible blue car, likely a Hyundai Sonata Hybrid Sedan 2012, is viewed from the front-right corner with a sleek hood and prominent headlight, set against a tree-lined environment, with the left portion heavily occluded by a noise-like pattern. +00850.jpg A front-right view of a red Hyundai Sonata Hybrid Sedan 2012 is visible, with the left half obscured by colorful static noise, showing a smooth, shiny texture on the body and the distinctive grille and headlights. +02128.jpg The image shows a red Hyundai Sonata Hybrid Sedan 2012 from a three-quarter front-left viewpoint with a significant portion of the central area obscured by digital noise, revealing smooth body contours, a distinct front grille, and partial visibility of the sleek headlamp design against a mountainous outdoor backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Sonata Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Sonata Sedan 2012_descriptions.txt new file mode 100644 index 0000000..f889121 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Sonata Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01665.jpg The image shows a Hyundai Sonata Sedan 2012 in a silvery color viewed from the front-right angle, with heavy pixelated occlusion on the left side covering a portion of the car and background, while the car is parked on a paved surface under a clear sky with visible alloy wheels. +06454.jpg The Hyundai Sonata Sedan 2012 is viewed from the front-left angle, with a dark exterior, distinctive chrome grille, and headlights visible, while a large, colorful noise block occludes the right side of the vehicle, blending with a blurred motion background. +06322.jpg The Hyundai Sonata Sedan 2012 is seen from a front-left angle with a white color, smooth texture, and is partially obscured by a colorful vertical pattern on the right, set against a grassy roadside backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Tucson SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Tucson SUV 2012_descriptions.txt new file mode 100644 index 0000000..73cf45d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Tucson SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +01050.jpg The partially visible red Hyundai Tucson SUV 2012, seen from a side angle amidst a leafy driveway, has a speckled occlusion masking its center, leaving the rear roofline and front grille exposed. +02278.jpg The heavily occluded Hyundai Tucson SUV 2012 appears in a three-quarter front view with a metallic brown color and visible headlight on a wet pavement, while the left side is obscured by colorful digital noise. +04274.jpg The front left side of a white Hyundai Tucson SUV 2012 is partially visible from a front-left viewpoint, with significant pixelation occluding the right side, revealing a smooth surface and the distinctive hexagonal grille and headlights with palm trees and dealership in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Veloster Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Veloster Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..c360ae6 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Veloster Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +02470.jpg The car, viewed partially from the front-left angle, is a vibrant orange with a gloss texture, but the central portion is heavily occluded by a large square of multicolored static, leaving only the sleek front corner and part of the side exposed against a vivid red-orange backdrop. +04503.jpg The car appears in an orange color with a matte texture, viewed from the front-left angle, with the right side obscured by a pixelated overlay, and features distinctive headlights and a curvy roofline that remain visible. +05858.jpg The visible part of the vehicle, a Hyundai Veloster Hatchback 2012, is a bright green with a smooth, glossy texture, viewed from the front-left angle; a substantial central portion is obscured by colorful static noise, while the background shows a clear blue sky and desert landscape. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Veracruz SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Veracruz SUV 2012_descriptions.txt new file mode 100644 index 0000000..9af4771 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Hyundai Veracruz SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +07189.jpg The image features a side view of the Hyundai Veracruz SUV 2012 in a deep blue color with silver accents, parked on a dirt path amidst green shrubbery, heavily occluded in the center with a multicolored static-like texture covering most of the body. +07208.jpg The Hyundai Veracruz SUV 2012 is visible in a light beige color with a smooth texture, viewed from a front-side angle, and partially occluded on the lower right, with clear skies and a car dealership environment in the background. +01669.jpg A dark-colored Hyundai Veracruz SUV 2012 is viewed from a front-side angle on a car lot, with the right side heavily occluded by a colorful static-like pattern, while the rest of the vehicle displays a glossy texture highlighted by sunlight. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Infiniti G Coupe IPL 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Infiniti G Coupe IPL 2012_descriptions.txt new file mode 100644 index 0000000..fff1611 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Infiniti G Coupe IPL 2012_descriptions.txt @@ -0,0 +1,3 @@ +04492.jpg The heavily occluded rear view of the Infiniti G Coupe IPL 2012 reveals its metallic gray color and sleek taillights, with beachside buildings in the background, while the left side is obscured by digital noise. +06936.jpg The image shows a low-resolution side view of an Infiniti G Coupe IPL 2012 with a black color and smooth texture, partially occluded in the center by a vertical strip of multicolored noise, revealing only the front and rear ends. +03183.jpg The Infiniti G Coupe IPL 2012 is visible from a rear-side angle, showcasing its metallic gray color, sleek curved lines, and distinct dual exhausts, while the center of the image is significantly occluded by static-like noise under a concrete structure. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Infiniti QX56 SUV 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Infiniti QX56 SUV 2011_descriptions.txt new file mode 100644 index 0000000..f7d8d9d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Infiniti QX56 SUV 2011_descriptions.txt @@ -0,0 +1,3 @@ +00180.jpg The visible portion of the Infiniti QX56 SUV 2011 is seen from a side profile in a desert setting, displaying a metallic silver color with distinctive wheel rims, while the central section is heavily occluded by noise. +03788.jpg The image shows a silver Infiniti QX56 SUV from the rear three-quarter view with a pixelated occlusion covering the right half, highlighting its smooth metallic texture, large alloy wheels, and distinctive rear design features, amidst a rugged, mountainous outdoor landscape. +05829.jpg The Infiniti QX56 SUV 2011 appears in a silver color with a textured metallic sheen, viewed from a front three-quarter angle with substantial occlusion over the lower front section by a colorful, pixelated block, while its prominent grille and distinct headlights are visible against a mountainous background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Isuzu Ascender SUV 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Isuzu Ascender SUV 2008_descriptions.txt new file mode 100644 index 0000000..57c8257 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Isuzu Ascender SUV 2008_descriptions.txt @@ -0,0 +1,3 @@ +04466.jpg The Isuzu Ascender SUV 2008, viewed from the side, is white with a black roof rack, and is partly obscured by colorful noise over its front section, with distinguishable large windows and a visible rear wheel under sunlight. +01263.jpg The Isuzu Ascender SUV 2008 is visible from a front-side angle, displaying metallic gray paint with a glossy finish, featuring a chrome grille and silver wheel rims, while heavily occluded by colorful static across the central body. +00191.jpg The image shows the front-right side of a silver Isuzu Ascender SUV 2008, partially obscured by a colorful digital overlay on the front section, with visible features like the grille and front passenger side, parked on a gravel surface near scattered rocks and greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Jaguar XK XKR 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Jaguar XK XKR 2012_descriptions.txt new file mode 100644 index 0000000..ecdde9d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Jaguar XK XKR 2012_descriptions.txt @@ -0,0 +1,3 @@ +01840.jpg The image shows a white Jaguar XK XKR 2012 viewed from a front-left angle, with the front portion heavily occluded by a multicolored static pattern, revealing sleek aerodynamic lines, a visible left headlight, and part of the chrome grille against a dark background. +01455.jpg The car is a vibrant blue with a glossy finish, viewed from the side at a low angle, showing elegant curves and a sporty rear spoiler, with a large section of rainbow static occlusion covering the front half, set in a showroom environment with distant onlookers. +02497.jpg The Jaguar XK XKR 2012 is visible in a frontal view with a sleek, smooth white exterior finish, with the right portion heavily occluded by colorful static noise, showcasing the distinctive rounded headlights and a prominent front grille in a brightly lit indoor environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Compass SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Compass SUV 2012_descriptions.txt new file mode 100644 index 0000000..3912ecc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Compass SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +01718.jpg A metallic gray Jeep Compass SUV is viewed from the left front corner, with the right half heavily occluded by static-like interference, displaying a glossy finish with visible front headlight and silver alloy wheels. +06808.jpg The Jeep Compass SUV 2012 appears in a dark color with a glossy texture, viewed from the front-left angle in an indoor setting with a significant portion of the front left covered by digital noise or pixelation, while the visible grille and alloy wheels provide distinguishing features alongside the red text on the floor. +02161.jpg The Jeep Compass SUV 2012, viewed from the front-right side, appears in a dark color with a glossy texture, parked on snowy ground, and it is heavily occluded by a multicolored static-like pattern covering most of the vehicle. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Grand Cherokee SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Grand Cherokee SUV 2012_descriptions.txt new file mode 100644 index 0000000..17715e1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Grand Cherokee SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02024.jpg The image depicts the side view of a gray Jeep Grand Cherokee SUV 2012 with a heavily occluded center, visible chrome accents on the grille and a slight sheen on the body, parked on a brick surface with surrounding palm trees. +02886.jpg The Jeep Grand Cherokee SUV 2012 is partly visible from the front-left angle, showcasing its silver front grille and part of the left headlight, with the right side heavily occluded by a digital static effect. +02001.jpg The visible portion of the Jeep Grand Cherokee SUV 2012 shows a gray color with a metallic texture, seen from a front-side angle with major occlusion over the hood area, while the environment includes a parking lot with another car and a building in the background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Liberty SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Liberty SUV 2012_descriptions.txt new file mode 100644 index 0000000..d1ebacf --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Liberty SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +06909.jpg The Jeep Liberty SUV 2012 appears white with a smooth texture, seen from a side-front angle, partially occluded on the right side by a pixelated area, while maintaining visible elements like its distinct boxy shape and rounded wheel arches on a sidewalk backdrop. +05286.jpg The Jeep Liberty SUV 2012, partially occluded by noise on the right side, is viewed from the front-left with a glossy black finish, visible chrome accents, and typical SUV stance, set in an urban parking environment. +06732.jpg The visible part of the Jeep Liberty SUV 2012 is seen from a front-right angle with a glossy black finish, metallic grille, chrome accents, and black wheels, while the right side is heavily occluded by colorful static noise, and it's positioned on a reflective showroom floor surrounded by other cars and structures. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Patriot SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Patriot SUV 2012_descriptions.txt new file mode 100644 index 0000000..04d2f7d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Patriot SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +06851.jpg The partially visible Jeep Patriot SUV 2012 appears in a silver color with a front-right viewpoint, set in a green, wooded environment, featuring a distinctive boxy grille and rounded headlights, with heavy occlusion covering the central portion of the vehicle. +06185.jpg The visible portion of the Jeep Patriot SUV 2012, viewed from the front-left angle, shows a silver exterior with a clear view of the grille and right headlight, while the central body is heavily occluded by a large, colorful static pattern, and it is set in a minimalistic, muted environment. +07753.jpg The Jeep Patriot SUV 2012 is viewed from the rear left, showcasing a subdued olive color with a smooth texture, a visible roof rack stacked with blue containers, while the entire right side is occluded by a colorful static-like pattern against a dark gradient background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Wrangler SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Wrangler SUV 2012_descriptions.txt new file mode 100644 index 0000000..dd49522 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Jeep Wrangler SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02094.jpg The Jeep Wrangler SUV 2012 is shown from the rear-left angle, with a dark green body visible on the left side, partially obscured by noise, while against a backdrop of trees and clear blue sky. +04273.jpg The image shows a white Jeep Wrangler SUV 2012 from a front-side angle with pixelated occlusion covering the right portion, displaying a clear view of the left front quarter panel and doors under an overcast sky in a parking lot. +03089.jpg The partially visible red Jeep Wrangler SUV 2012 is viewed from the front left angle with a smooth, glossy finish, while heavily occluded by a vertical strip of dense noise, situated in a modern outdoor setting with greenery on the left and parked near glass windows on the right. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Aventador Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Aventador Coupe 2012_descriptions.txt new file mode 100644 index 0000000..61bee99 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Aventador Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +05990.jpg The Lamborghini Aventador Coupe 2012 appears in a front three-quarter view with a smooth white exterior, angular front headlights, and the lower front section occluded by colorful static, set against a leafy residential street. +07362.jpg The image shows a front-facing Lamborghini Aventador Coupe 2012 with a glossy, carbon fiber texture, primarily visible on the exposed parts; the doors are up in a signature scissor style while a heavy central occlusion covers the middle, surrounded by a stark white background. +01521.jpg The image depicts a Lamborghini Aventador Coupe 2012 in a vibrant orange color viewed from the front right angle, with the left portion heavily occluded by colorful static, showcasing its angular front design and sleek headlights set against a neutral gray backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Diablo Coupe 2001_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Diablo Coupe 2001_descriptions.txt new file mode 100644 index 0000000..6014ec3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Diablo Coupe 2001_descriptions.txt @@ -0,0 +1,3 @@ +03626.jpg The Lamborghini Diablo Coupe 2001, viewed from a low front-side angle, is yellow with a smooth, glossy texture; it features distinctive angular headlights and large air intakes, while the left portion of the image is heavily occluded by a colorful, pixelated pattern against a modern architectural backdrop. +01090.jpg The yellow Lamborghini Diablo Coupe 2001 is viewed from the front-left, partially occluded with a noise pattern on the middle to rear side, sitting on a cobblestone surface, showcasing its sleek, low profile and distinctive angular headlights. +02337.jpg The image shows a yellow Lamborghini Diablo Coupe 2001 with a low front, sleek design, and visible headlights from a front-side angle, partly obscured by digital noise on the passenger side, situated in an urban environment with nearby buildings. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Gallardo LP 570-4 Superleggera 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Gallardo LP 570-4 Superleggera 2012_descriptions.txt new file mode 100644 index 0000000..abccb1f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Gallardo LP 570-4 Superleggera 2012_descriptions.txt @@ -0,0 +1,3 @@ +06251.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012 appears in a vibrant green color with visible rear dual exhausts and a prominent rear wing, viewed from a low rear angle, while the left side is mostly obscured by a colorful noise pattern, and it's set against an indoor showroom environment. +03075.jpg The image shows a lime green Lamborghini Gallardo LP 570-4 Superleggera 2012 from a front three-quarter view, partially occluded on the left by heavy digital noise, with visible sleek aerodynamic lines, black alloy wheels, and surrounded by a showroom environment indicated by tiled flooring and a yellow barrier. +07826.jpg The Lamborghini Gallardo LP 570-4 Superleggera 2012, viewed from the front right angle, features a vibrant lime green color with a sleek, aerodynamic shape partially occluded by a multicolored, noisy patch obscuring the front half of the vehicle, while the rest remains visible with its distinctive low stance and black alloy wheels. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Reventon Coupe 2008_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Reventon Coupe 2008_descriptions.txt new file mode 100644 index 0000000..58aa8c9 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Lamborghini Reventon Coupe 2008_descriptions.txt @@ -0,0 +1,3 @@ +02749.jpg The image shows a sleek, matte gray Lamborghini Reventon Coupe 2008 viewed from the front, with its angular design and sharp headlights visible on the left, while the right side is obscured by static-like pixelation, set against a grid-patterned pavement and brick wall background. +02925.jpg The Lamborghini Reventon Coupe 2008 appears in a metallic silver color with a sleek and angular design, partially obscured on the front left by a colorful static overlay, with visible sharp headlights and a side profile revealing its aerodynamic lines. +00640.jpg The car, viewed from a front-side angle, has a matte gray finish with visible angular lines typical of the Reventon, and part of the vehicle's cabin is heavily occluded by a colorful static overlay while the doors are open, displaying its scissor-door design against a blurred outdoor background with palm trees. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Land Rover LR2 SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Land Rover LR2 SUV 2012_descriptions.txt new file mode 100644 index 0000000..213031b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Land Rover LR2 SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +07004.jpg The Land Rover LR2 SUV 2012, viewed from a front side angle, appears in a silver color with a rugged texture, mostly occluded by heavy noise in the central portion of the image, partially revealing a building and vegetation in the background. +04846.jpg The image shows a Land Rover LR2 SUV 2012 from a front-side angle with a silver metallic color, partially occluded by a colorful static-like pattern on the left side, set against a clear sky and rocky landscape. +01740.jpg The Land Rover LR2 SUV 2012 appears in a light metallic color with a smooth finish, seen from a side angle showing the front left profile, while a significant portion of the car, including the grille and part of the front wheel, is obscured by heavy multicolored digital noise, set against an urban background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Land Rover Range Rover SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Land Rover Range Rover SUV 2012_descriptions.txt new file mode 100644 index 0000000..4d821a5 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Land Rover Range Rover SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +02960.jpg The Land Rover Range Rover SUV 2012 appears in a metallic gray color with a smooth texture, viewed from the rear left in a field setting, with significant right-side occlusion by a colorful noise pattern, leaving the left rear side, taillights, and part of the license plate exposed. +01602.jpg The right side of the silver Range Rover SUV is visible from a side-front angle, with rocky terrain in the background, while the left side is completely obscured by a vertical multicolor static occlusion. +04735.jpg A silver Land Rover Range Rover SUV 2012 is partially visible from the front-left angle, surrounded by dense greenery, with significant right-side detail occluded by colorful digital noise. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Lincoln Town Car Sedan 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Lincoln Town Car Sedan 2011_descriptions.txt new file mode 100644 index 0000000..429768b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Lincoln Town Car Sedan 2011_descriptions.txt @@ -0,0 +1,3 @@ +07567.jpg The image shows the front right side of a tan Lincoln Town Car Sedan 2011 with a heavily pixelated occlusion covering the left portion, revealing a distinctive chrome grille and headlights in a parking lot environment. +04623.jpg The vehicle, seen from a front-right angle against a warm-toned building and natural surroundings, appears beige with a glossy texture, while the front section is heavily occluded by a colorful noise pattern. +05756.jpg The visible Lincoln Town Car Sedan 2011 has a white color with a smooth texture, positioned at a slight angle showcasing its front and side under a covered area, with heavy occlusion concealing a portion across the windshield and hood area adding a multicolored static effect, while chrome wheels and the distinct front grille are clearly visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/MINI Cooper Roadster Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/MINI Cooper Roadster Convertible 2012_descriptions.txt new file mode 100644 index 0000000..39516e3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/MINI Cooper Roadster Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +03369.jpg The image shows a side view of a silver MINI Cooper Roadster Convertible 2012, with a black soft top, driving on a road beside a waterfront, with a large, colorful, static-like occlusion covering the front half of the vehicle and blurred architectural features in the background. +06085.jpg The visible portion of the silver MINI Cooper Roadster Convertible 2012, seen from a front three-quarter view, features contrasting black stripes on the hood with an occluded pixelated section on the left, while the convertible top is down, revealing a multi-lane roadway and waterfront environment. +02799.jpg The MINI Cooper Roadster Convertible 2012 is shown in a dynamic right-side view driving on a road, featuring a silver body with black racing stripes, a black soft top, and a central, colorful occlusion on the hood that obscures the grille and headlights. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Maybach Landaulet Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Maybach Landaulet Convertible 2012_descriptions.txt new file mode 100644 index 0000000..62cfd7a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Maybach Landaulet Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +01451.jpg The Maybach Landaulet Convertible 2012, viewed from the side with its doors open, appears in a light color with a clean texture, featuring a visible luxurious interior, while an occlusion of dense noise obscures a significant portion of its right side. +02867.jpg The image shows the front left side of a white Maybach Landaulet Convertible 2012 in a garage setting, with distinctive chrome grille and wheels visible on a smooth surface, while the right side is heavily occluded by colorful noise. +02501.jpg The Maybach Landaulet Convertible 2012 has a glossy white exterior with a partially visible side profile, featuring elegant contours, distinct wheel rims, and is heavily occluded on the left side with a colorful static-like pattern against a backdrop showcasing a lit building. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Mazda Tribute SUV 2011_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Mazda Tribute SUV 2011_descriptions.txt new file mode 100644 index 0000000..e3cee44 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Mazda Tribute SUV 2011_descriptions.txt @@ -0,0 +1,3 @@ +01088.jpg The Mazda Tribute SUV 2011 appears to be black with a visible left side view, partially occluded by colorful static covering the right portion, while parked in a lot among other vehicles, with clear windows and silver wheels distinguishing it. +04866.jpg The Mazda Tribute SUV 2011, visible from a side angle, appears in a blue color with a matte texture, partially occluded on its right side by a static-filled, multicolored vertical stripe, and is parked on a driveway with a stone wall and garage backdrop. +04968.jpg The image shows a red Mazda Tribute SUV 2011 viewed from the side, with the front half obscured by colorful noise, clearly displaying its black side mirrors and roof rails, against a blurred autumnal background hinting at motion. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/McLaren MP4-12C Coupe 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/McLaren MP4-12C Coupe 2012_descriptions.txt new file mode 100644 index 0000000..af4d55a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/McLaren MP4-12C Coupe 2012_descriptions.txt @@ -0,0 +1,3 @@ +00187.jpg The image shows an orange McLaren MP4-12C Coupe 2012 viewed from the side, with a significant portion on the left heavily occluded by static noise, revealing its aerodynamic shape, smooth texture, and distinctive air intake behind the door against a brightly lit showroom environment. +03452.jpg The McLaren MP4-12C Coupe 2012 in the image is a metallic orange car, viewed partially from the side with its front obscured by digital noise, on a paved area by a reflective body of water with modern buildings in the background, showing a distinct rear wheel and aerodynamic contour. +05797.jpg The car, predominantly in a bright orange color, is partially visible from the front left side with the rear partially obscured by pixelated noise, set against a paved road and hay bales on a grassy background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz 300-Class Convertible 1993_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz 300-Class Convertible 1993_descriptions.txt new file mode 100644 index 0000000..3f19b98 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz 300-Class Convertible 1993_descriptions.txt @@ -0,0 +1,3 @@ +08002.jpg The image shows a Mercedes-Benz 300-Class Convertible 1993 with a red body, black convertible top, and silver wheels, viewed from a rear-side angle, while heavy pixelation occludes most of the central and rear section amidst a forested background. +07817.jpg A red convertible Mercedes-Benz 300-Class from 1993 is viewed from the front-right angle, prominently displaying its grille and headlights, with a large blurred rectangular region occluding the driver's side of the car and a misty, earthy background. +07914.jpg The Mercedes-Benz 300-Class Convertible 1993 appears in a side-rear viewpoint with a visible light silver color and smooth texture, featuring a noticeably occluded central section on the body with a multicolored texture, while its distinct silver alloy wheels and the iconic emblem on the trunk remain visible against a clear sky background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz C-Class Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz C-Class Sedan 2012_descriptions.txt new file mode 100644 index 0000000..578c942 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz C-Class Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +06130.jpg The image shows a dark-colored Mercedes-Benz C-Class Sedan from a front-side angle, with a block of colorful, pixelated occlusion covering part of the front, leaving visible its sleek contours and the shiny floor of a showroom environment. +08000.jpg The dark-colored Mercedes-Benz C-Class Sedan 2012, partially occluded by a noisy square in the central region, is positioned in a frontal view amidst a grassy area with yellow flowers, with visible features including its iconic front grille and emblem. +03446.jpg The image shows a black Mercedes-Benz C-Class Sedan 2012 with visible alloy wheels from a front-side angle, with heavy multicolored noise obscuring the left side, set against a parking lot background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz E-Class Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz E-Class Sedan 2012_descriptions.txt new file mode 100644 index 0000000..74ecd55 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz E-Class Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +07606.jpg The Mercedes-Benz E-Class Sedan 2012, viewed from the rear-right corner, has a sleek dark gray color with alloy wheels and is parked on a street beside a building, with heavy pixelated occlusion over the top part of the image. +07675.jpg The silver Mercedes-Benz E-Class Sedan 2012, viewed from the front-right angle, has a central vertical area occluded with noise, leaving visible the signature grille, sleek headlamps, and a smooth road with modern architectural surroundings. +08083.jpg The image shows a silver Mercedes-Benz sedan viewed from both the rear-left and front-right angles, obscured in the center by heavy static, with visible smooth metallic texture, iconic grille and headlights at the front, and partial wheel and tail light at the back on a winding road near rocky terrain. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz S-Class Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz S-Class Sedan 2012_descriptions.txt new file mode 100644 index 0000000..b6338f7 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz S-Class Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04755.jpg The image shows a white Mercedes-Benz S-Class Sedan 2012 with a front-left angled view, heavily occluded on the right side by multicolored noise, with visible features including a sleek, glossy surface, prominent grille, and distinctive headlights, set against a blurred, natural roadside environment. +00396.jpg The image shows a silver Mercedes-Benz S-Class Sedan 2012 from a frontal left viewpoint, parked on a brick surface, with significant digital noise obscuring the right half. +08041.jpg The Mercedes-Benz S-Class Sedan 2012 is seen from a front-left angled viewpoint, with a burgundy exterior and shiny chrome accents on the grille and rims, partially occluded by a colorful, pixelated pattern covering the left side of the image and set against a blurred outdoor backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz SL-Class Coupe 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz SL-Class Coupe 2009_descriptions.txt new file mode 100644 index 0000000..b7c8c4b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz SL-Class Coupe 2009_descriptions.txt @@ -0,0 +1,3 @@ +02839.jpg The Mercedes-Benz SL-Class Coupe 2009 appears in a side view with a bright white color and smooth texture, featuring sporty front bumper design and blending into a sandy, overcast environment, while a large portion of the car is heavily occluded by a pixelated block on the left. +06294.jpg The image shows a silver Mercedes-Benz SL-Class Coupe 2009 viewed from the side, with a clear view of the rear wheel arch and spoiler, partially occluded by digital noise, set against a cloudy blue sky background. +02979.jpg A reddish-brown Mercedes-Benz SL-Class Coupe 2009 is shown at an angle from the front-right, parked indoors with heavy digital noise obscuring the lower section, while the glossy paint reflects light and the detailed grille and headlights remain distinct. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz Sprinter Van 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz Sprinter Van 2012_descriptions.txt new file mode 100644 index 0000000..b9cad92 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Mercedes-Benz Sprinter Van 2012_descriptions.txt @@ -0,0 +1,3 @@ +06668.jpg The Mercedes-Benz Sprinter Van 2012 is viewed from the front-right angle and appears in a matte white color with a pixelated occlusion covering part of the right side, showing its signature grille, emblem, and a black bumper clearly visible against an overcast outdoor background with other vans. +00804.jpg The image shows the rear right side of a white Mercedes-Benz Sprinter Van 2012 with a pixelated occlusion covering the middle, set against a tree-lined background. +03204.jpg The partially visible Mercedes-Benz Sprinter Van 2012 appears in a side view with a silver-gray color and a smooth metallic texture, with the front half obscured by heavy pixelated noise, while the back half is parked on a street under clear daylight. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Mitsubishi Lancer Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Mitsubishi Lancer Sedan 2012_descriptions.txt new file mode 100644 index 0000000..b26a717 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Mitsubishi Lancer Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +01548.jpg The low-resolution image shows a white Mitsubishi Lancer Sedan 2012 from a three-quarter front-left viewpoint in a tunnel, with a colorful noise occlusion covering the right side, revealing notable features like the aggressive front bumper, sporty grille, and angular headlights against the muted, reflective concrete environment. +02405.jpg The Mitsubishi Lancer Sedan 2012 appears in a vivid blue color with a partially visible sporty front design and distinctive grille, viewed from the front with significant occlusion covering the bonnet area, while the surroundings include a building and pavement. +07013.jpg The Mitsubishi Lancer Sedan 2012 in the image appears dark gray with a sleek silhouette, viewed from the side in a low-light environment, with significant occlusion by a pixelated area on the right, revealing its signature front grille and partial wheel. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Nissan 240SX Coupe 1998_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Nissan 240SX Coupe 1998_descriptions.txt new file mode 100644 index 0000000..85c41de --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Nissan 240SX Coupe 1998_descriptions.txt @@ -0,0 +1,3 @@ +04542.jpg The Nissan 240SX Coupe 1998 appears in a glossy white finish with a sporty stance, seen from a front three-quarter viewpoint, with a large, digitally obfuscated area covering most of the front end, while distinctive features like the smooth, aerodynamic silhouette, sleek side mirrors, and multi-spoke alloy wheels remain visible against a neutral, urban backdrop. +01713.jpg The Nissan 240SX Coupe 1998 is partially visible in a frontal view with a muted silver color and black wheels, while a dense vertical pixelated occlusion covers the center, set against a red-orange desert landscape. +07333.jpg The Nissan 240SX Coupe 1998 appears from a slightly elevated side angle, with a glossy black finish, partially obscured by digital noise over the driver’s side, showing distinct white wheels and a reflective sheen under daylight near a residential backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Nissan Juke Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Nissan Juke Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..0170f4f --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Nissan Juke Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +08111.jpg The Nissan Juke Hatchback 2012 is visible from a front-left viewpoint, displaying a silver color with a prominently textured finish, with part of the front and side occluded by a digital noise patch; its round headlights and distinct angled grille remain partially visible. +05388.jpg The Nissan Juke Hatchback 2012, viewed from the front left side, appears in a dark purple hue with a glossy texture, partially obscured by a large rectangle of digital noise covering the center, revealing only the left headlight and wheel against a backdrop of modern architectural elements. +06532.jpg The visible part of the low-resolution, heavily occluded Nissan Juke Hatchback 2012 is red with a smooth texture, viewed from the side with palm trees in the background, and a large block of noise covering the central portion of the car. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Nissan Leaf Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Nissan Leaf Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..62df18b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Nissan Leaf Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +06722.jpg The Nissan Leaf Hatchback 2012 is shown from a front-side angle in a metallic silver color with notable pixelated occlusion covering the front section, while the rear features smooth, aerodynamic lines and is parked against an urban backdrop of red and black structures. +03817.jpg The image shows a silver Nissan Leaf Hatchback 2012 from a front-side angle, with colorful pixelated noise obscuring the right side of the car, while clear windows, smooth curves, and visible front wheels are distinguishable against a driveway and residential background. +05467.jpg The visible portion of the blue Nissan Leaf Hatchback 2012 is shown from a side profile with a smooth texture, set against a cityscape backdrop on the left, while the right side is heavily occluded with static-like interference obscuring part of the background and environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Nissan NV Passenger Van 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Nissan NV Passenger Van 2012_descriptions.txt new file mode 100644 index 0000000..9608cfe --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Nissan NV Passenger Van 2012_descriptions.txt @@ -0,0 +1,3 @@ +03137.jpg The heavily occluded image shows two silver Nissan NV Passenger Vans from a front angled view inside a large industrial garage, with one van obscured by a vertical column of colorful static noise and the surroundings featuring visible beams and wooden planks. +00613.jpg A dark blue Nissan NV Passenger Van 2012 is parked in a sunlit outdoor scene, viewed from the front-right angle with substantial vertical pixelated occlusion covering part of the left front, revealing its shiny chrome grille and sleek side surfaces against a backdrop of lush green trees. +02756.jpg The Nissan NV Passenger Van 2012, viewed from the front-left angle, has a glossy black exterior with visible chrome grille and bumper detailing, partially occluded by colorful digital noise, and is situated on a carpeted showroom floor. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Plymouth Neon Coupe 1999_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Plymouth Neon Coupe 1999_descriptions.txt new file mode 100644 index 0000000..85b1c94 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Plymouth Neon Coupe 1999_descriptions.txt @@ -0,0 +1,3 @@ +05475.jpg The Plymouth Neon Coupe 1999 appears in a metallic silver color, viewed from the front left side with the front half heavily occluded by a colorful digital pattern, sitting on a concrete surface next to a white building with the rear side unobstructed. +04028.jpg The image shows the front left side of a silver Plymouth Neon Coupe 1999, partially obscured by a vertical band of colorful noise, with visible round headlights and a smooth, shiny texture, positioned in a car lot next to other vehicles and a building in the background. +00016.jpg The image shows a red Plymouth Neon Coupe 1999 viewed from the front-right with its passenger side heavily occluded by pixelated noise, displaying a rounded and compact design with visible round headlights and a smooth, slightly worn texture on the hood and grille area, set against a grassy roadside background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Porsche Panamera Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Porsche Panamera Sedan 2012_descriptions.txt new file mode 100644 index 0000000..6e26518 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Porsche Panamera Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04282.jpg The visible part of the silver Porsche Panamera Sedan 2012 shows its front and side from a leftward angle, with its right side heavily occluded by a colorful noise pattern, glossy finish reflecting on a dark surface, and featuring characteristic elongated headlights and sleek body lines. +04628.jpg The Porsche Panamera Sedan 2012 is visible in a striking blue color with a sleek, sporty profile from a front-side angle, with the central portion heavily occluded by digital noise, set against a rocky outdoor landscape. +07616.jpg The Porsche Panamera Sedan 2012 is visible from a front-side angle with a gray, shiny exterior, with heavy digital noise covering the rear portion, set against a blurred road and landscape background under a clear sky. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Rolls-Royce Ghost Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Rolls-Royce Ghost Sedan 2012_descriptions.txt new file mode 100644 index 0000000..c5f9c61 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Rolls-Royce Ghost Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +03914.jpg The visible portion of the Rolls-Royce Ghost Sedan 2012 shows a front three-quarter view with a two-tone exterior of dark purple and silver-gray, with the iconic grille and Spirit of Ecstasy hood ornament visible, the right side heavily occluded by colorful static-like noise in a minimalistic indoor setting. +05774.jpg The 2012 Rolls-Royce Ghost Sedan, viewed directly from the front, is predominantly silver with a sleek, polished texture and features an unobstructed, iconic grille and recognizable headlights, while the lower front portion is heavily pixellated, set against a clear, mountainous backdrop. +05533.jpg The image shows a dark blue car partially visible from the front, with the grille and headlights obscured by a pixelated occlusion while the front right wheel and a well-lit showroom environment are visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Rolls-Royce Phantom Drophead Coupe Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Rolls-Royce Phantom Drophead Coupe Convertible 2012_descriptions.txt new file mode 100644 index 0000000..9a29b98 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Rolls-Royce Phantom Drophead Coupe Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +01776.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 appears in a vibrant blue color with a silver hood, viewed from a three-quarter front angle on an open road, with heavy pixelated occlusion obscuring the rear and part of the landscape. +06580.jpg The Rolls-Royce Phantom Drophead Coupe Convertible 2012 appears in a smooth white color with a side profile view, partially obscured by static-like noise covering the front half, showcasing the rear wheel and open convertible top against a clear blue sky. +04384.jpg The image shows a white Rolls-Royce Phantom Drophead Coupe Convertible from a rear angle, parked on a glossy floor with its right section obscured by digital noise, highlighting the vehicle's distinctive taillights and luxurious convertible interior. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Rolls-Royce Phantom Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Rolls-Royce Phantom Sedan 2012_descriptions.txt new file mode 100644 index 0000000..145e1dd --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Rolls-Royce Phantom Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04181.jpg The image shows a side view of a white Rolls-Royce Phantom Sedan 2012, with a large central area obscured by visual noise, set against a dark brick wall and hedges. +04084.jpg The image shows the side profile of a white Rolls-Royce Phantom Sedan 2012, partially obscured by colorful static on the left, against a mountainous and cloudy background. +01940.jpg A silver car with a prominent front grille and sleek design is partially visible from the front-left corner, with significant multi-colored noise obscuring the right side. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Scion xD Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Scion xD Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..3735e6e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Scion xD Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +01498.jpg The Scion xD Hatchback 2012 appears from a front-side angle in a muted light grey color, partially obscured by colorful static covering the central portion, revealing a smooth texture with visible rounded edges and a glossy finish in the visible, unobstructed areas. +04635.jpg The image shows a dark-colored Scion xD Hatchback 2012 from a front-side view on a driveway, with the front-right section heavily obscured by colorful static noise, revealing the car's rounded edges, prominent wheel, and a glimpse of the grassy environment. +07149.jpg The Scion xD Hatchback 2012 appears in a white color with a slightly glossy texture, viewed from a front-side angle, partly obscured by colorful digital noise on the lower front side, with notable features being black wheels and visible window stickers in a parking lot setting. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Spyker C8 Convertible 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Spyker C8 Convertible 2009_descriptions.txt new file mode 100644 index 0000000..a110464 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Spyker C8 Convertible 2009_descriptions.txt @@ -0,0 +1,3 @@ +07650.jpg The car, viewed from a front-side angle, features a visible vibrant orange color with a matte texture and blurred details, partially obscured by a colorful noise pattern covering the right side, yet showcasing distinctive circular headlights and an open scissor door on the left. +04963.jpg The Spyker C8 Convertible 2009 appears in a glossy dark color with a heavily occluded central section, visible from a front-side angle showcasing sleek curves, prominent headlights, and a patterned metal grille, set against a dark, industrial environment with part of the interior's red seats visible. +02802.jpg The visible portion of the Spyker C8 Convertible 2009 shows a glossy black finish with distinct round headlights and a mesh grille, viewed from the front-right corner with the left side heavily occluded by colorful digital noise. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Spyker C8 Coupe 2009_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Spyker C8 Coupe 2009_descriptions.txt new file mode 100644 index 0000000..8b39011 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Spyker C8 Coupe 2009_descriptions.txt @@ -0,0 +1,3 @@ +05954.jpg The heavily occluded Spyker C8 Coupe 2009 appears in a rear view with a metallic silver color, prominent circular tail lights, and a distinctive rear exhaust design, while the left side is obscured by a colorful noise pattern, situated in a parking lot setting. +04388.jpg The Spyker C8 Coupe 2009 is visible from a front-side angle in a rich burgundy color with a textured metallic sheen, partially occluded by a large pixelated area on the right, set against a scenic backdrop of greenery and architecture. +07642.jpg The Spyker C8 Coupe 2009 appears in a side-front view showing a shiny red color with smooth texture, and it is heavily occluded in the center by noise, revealing distinctive headlamps and sleek aerodynamic lines against a blurred roadway and hilly landscape. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki Aerio Sedan 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki Aerio Sedan 2007_descriptions.txt new file mode 100644 index 0000000..6a6e0fc --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki Aerio Sedan 2007_descriptions.txt @@ -0,0 +1,3 @@ +04228.jpg The visible part of the silver car shows the rear and side view, with a colorful occlusion covering the front half, amidst a sunny outdoor setting with palm trees in the background. +01858.jpg The Suzuki Aerio Sedan 2007 appears to be white, viewed from the side with the central section heavily occluded by digital noise, partially showing the rear and front fenders against an indoor showroom backdrop with gray flooring and several other vehicles visible around. +03148.jpg The Suzuki Aerio Sedan 2007 appears in a low-resolution image with a silver color and smooth texture, viewed from a side angle showing the passenger side, while a heavily pixelated occlusion covers the front section, set against a backdrop of greenery and a glass building. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki Kizashi Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki Kizashi Sedan 2012_descriptions.txt new file mode 100644 index 0000000..46be6c8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki Kizashi Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +07400.jpg The visible portion of the car shows a front view of a metallic gray Suzuki Kizashi Sedan 2012 with a distinct black mesh grille and Suzuki emblem, while heavily occluded on the right side by a vertical noise pattern overlaying a clear urban background. +06235.jpg The Suzuki Kizashi Sedan 2012 appears in a silver color with a glossy texture, viewed from a low front-side angle, with the central portion occluded by dense visual noise, while its sleek headlights and curved side mirrors remain visible, against a scenic mountain backdrop near a body of water. +06211.jpg The Suzuki Kizashi Sedan 2012 appears in a front-facing view with a glossy black finish and a distinctive silver mesh grille, partially obscured on the right by colorful digital noise, and is parked in front of a glass-fronted building beside a white vehicle. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki SX4 Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki SX4 Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..bfdc3cd --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki SX4 Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +06123.jpg The image shows a red Suzuki SX4 Hatchback 2012, viewed from the side with a significant vertical occlusion over the center, revealing the front and rear ends with distinct silver wheels and a sunlit outdoor environment featuring a white tent and trees in the background. +04153.jpg The image shows a red Suzuki SX4 Hatchback 2012 viewed from the front passenger side, with heavy pixelated occlusion covering the front left portion, showcasing a prominent grille and clear headlights against a background of grass and a stone wall. +03518.jpg The Suzuki SX4 Hatchback 2012 appears to be silver with a visible rear view, set against a snowy environment, and is heavily occluded on the left side by a colorful static pattern. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki SX4 Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki SX4 Sedan 2012_descriptions.txt new file mode 100644 index 0000000..18315c0 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Suzuki SX4 Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +04897.jpg The slightly metallic silver Suzuki SX4 Sedan 2012 is viewed from a front-left angle with its lower half obscured by static-like noise, revealing a clear view of the hood, right headlight, and distinctively curved grille set against an indoor backdrop with red flooring and dramatic lighting. +02379.jpg The silver Suzuki SX4 Sedan 2012 is viewed from the front-left angle, with blue-tinted lighting and significant occlusion on the left side, revealing its sleek body, notable headlight shape, and road environment in an urban setting. +00557.jpg The visible portion of the Suzuki SX4 Sedan 2012 appears to be a white car with smooth texture, viewed from the front, featuring a distinct grille with the Suzuki emblem; the right side of the image is occluded by static-like noise, revealing only the left headlight and part of a highway barrier in the surroundings. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Tesla Model S Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Tesla Model S Sedan 2012_descriptions.txt new file mode 100644 index 0000000..7d1a6d8 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Tesla Model S Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +00656.jpg The Tesla Model S Sedan 2012 is viewed from the side, showcasing its sleek red exterior with a glossy texture, partially occluded by a vertical band of colorful static, with distinctive features like its aerodynamic shape, large wheel rims, and LED headlights posed on a showroom floor. +06867.jpg The Tesla Model S Sedan 2012 appears from a front-side viewpoint with a glossy red color, partially occluded on the left by digital noise, featuring visible sleek, curved body lines, a distinct front bumper, and dark alloy wheels set in a bright industrial environment. +00430.jpg The image shows a Tesla Model S Sedan 2012 with a visible front section in glossy gray, captured from a low angle on a slight incline, with significant pixelated occlusion obscuring its left side and a natural hillside environment in the blurred background. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Toyota 4Runner SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Toyota 4Runner SUV 2012_descriptions.txt new file mode 100644 index 0000000..9bf40d3 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Toyota 4Runner SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +00892.jpg The visible part of the Toyota 4Runner SUV 2012 is a dark gray color with a smooth, reflective texture, viewed from the passenger side three-quarter angle, with heavy static-like occlusion covering the entire left side of the image, and the remaining visible features include a side mirror, door handles, and wheels against a mountainous background. +03937.jpg The image shows a black Toyota 4Runner SUV from a side-front diagonal view, partially occluded by a rectangular area with colorful noise, parked in front of a dealership with its front grille and right side visible. +04065.jpg The image shows a black Toyota 4Runner SUV 2012 viewed from the front-left at a slight upward angle, with significant visual occlusion covering the left side, set against the backdrop of a dealership with red accents and reflective surfaces. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Toyota Camry Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Toyota Camry Sedan 2012_descriptions.txt new file mode 100644 index 0000000..250293e --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Toyota Camry Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +00148.jpg The red 2012 Toyota Camry Sedan is viewed from the front-right angle, with heavy-colored static obscuring its center, clearly showcasing the passenger-side headlight, grille, and portion of the side mirror, against a simple indoor backdrop. +05270.jpg The image depicts a front-left diagonal view of a red Toyota Camry Sedan 2012 with a substantial occlusion covering the center, leaving the smooth front bumper, left headlight, and alloy wheel rim visible against a textured urban parking lot setting. +04726.jpg The image shows a gray Toyota Camry Sedan 2012 viewed from the rear three-quarters with a heavily occluded central section by noise, revealing parts of the rear and left taillight against a desert backdrop. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Toyota Corolla Sedan 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Toyota Corolla Sedan 2012_descriptions.txt new file mode 100644 index 0000000..6ee347a --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Toyota Corolla Sedan 2012_descriptions.txt @@ -0,0 +1,3 @@ +05127.jpg The image shows a red Toyota Corolla Sedan 2012 viewed from the front on a street, with heavy multi-colored static occluding the left side, revealing the right headlight, grille, and part of the bumper surrounded by other parked cars and grass. +05361.jpg The Toyota Corolla Sedan 2012 is viewed from a rear three-quarter angle, exhibiting a clean white color with visible taillights and a rear spoiler, while the lower part of the image is heavily obscured by pixelated noise against a paved background. +03585.jpg The image shows a rear-side view of a silver Toyota Corolla Sedan 2012 with a large rectangular occlusion over the middle, visible against a backdrop of yellow columns and pavement, highlighting the left taillight, rear bumper, and alloy wheels with distinctive five-spoke design. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Toyota Sequoia SUV 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Toyota Sequoia SUV 2012_descriptions.txt new file mode 100644 index 0000000..6315b76 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Toyota Sequoia SUV 2012_descriptions.txt @@ -0,0 +1,3 @@ +00045.jpg The visible portion of the Toyota Sequoia SUV 2012 is shown from a side view with a gray exterior, featuring clear silver wheels, with the central section heavily occluded by a pixelated pattern, revealing only the front and rear ends against a plain wall background. +05974.jpg The heavily occluded Toyota Sequoia SUV 2012, seen from a front-side angle, has a glossy black exterior with a noticeable dent on the hood and grille area, part of which is obscured by colorful static noise; the vehicle is parked on gravel with greenery in the background. +04501.jpg The image shows a white Toyota Sequoia SUV from a rear three-quarter angle, with visible pixelation over the central rear section for occlusion, on a clear day in a parking lot, highlighting its distinctive large rear windows and taillight shape. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Volkswagen Beetle Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Volkswagen Beetle Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..0e3e6c1 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Volkswagen Beetle Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +01317.jpg The image shows a white Volkswagen Beetle Hatchback 2012 with a visible front-left view, partially obscured by colorful static distortion covering the center to the right, highlighting distinctive round headlights and a curved fender on a light, simple indoor background. +00958.jpg The image shows a red Volkswagen Beetle Hatchback 2012 viewed from the side with a low-resolution occlusion covering the central area, leaving only the front section and a portion of the wheel visible against a brightly lit indoor setting. +06819.jpg The image shows a red Volkswagen Beetle Hatchback 2012 viewed from the rear, with visible elements like the distinctive rounded taillights and badge, but a major portion is heavily occluded by a colorful static interference, obscuring much of the car's body. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Volkswagen Golf Hatchback 1991_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Volkswagen Golf Hatchback 1991_descriptions.txt new file mode 100644 index 0000000..0f89e5b --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Volkswagen Golf Hatchback 1991_descriptions.txt @@ -0,0 +1,3 @@ +03596.jpg The 1991 Volkswagen Golf Hatchback, viewed from the front-right corner on a residential street, appears glossy blue with wide tires, notable for its front-right corner visible, while the left side is obscured by a square pixelated occlusion. +02011.jpg This heavily occluded image shows a front-left viewpoint of a dull red Volkswagen Golf Hatchback from 1991, partially covered with a vertical rectangular occlusion on the front, with noticeable features including the car's slightly visible right-side headlight and the corner of its grill, parked on a grassy area alongside other vehicles. +07949.jpg The Volkswagen Golf Hatchback 1991 appears in a side view on a street with a visible dull green color, smooth surface texture, and is heavily occluded in the center by a large pixelated area, leaving only parts of the front and rear sections visible. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Volkswagen Golf Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Volkswagen Golf Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..d002c08 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Volkswagen Golf Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +05848.jpg The Volkswagen Golf Hatchback 2012 in the image appears in a white color with a smooth texture, viewed from the front-right angle in a parking lot under daylight, with the left side heavily occluded by colorful noise. +06821.jpg The front-right angle of the Volkswagen Golf Hatchback 2012 is visible in a smooth, light gray color with the front grille and headlight in view, partially obscured by a colorful static block covering the central and lower driver-side area. +04640.jpg The Volkswagen Golf Hatchback 2012 appears in a front three-quarter view with a white color and smooth texture, while the right side is obscured by heavy multicolored pixelation against a background of pavement and greenery. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Volvo 240 Sedan 1993_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Volvo 240 Sedan 1993_descriptions.txt new file mode 100644 index 0000000..e026b5d --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Volvo 240 Sedan 1993_descriptions.txt @@ -0,0 +1,3 @@ +03613.jpg The image shows a side view of a silver Volvo 240 Sedan 1993 on a snowy background, with a large central occlusion covering the middle, leaving visible the boxy rear end, wheel arch, and part of the sloping roof. +07066.jpg The Volvo 240 Sedan 1993 appears in a side profile with a bright blue color, set against a blurred mountainous backdrop, and is heavily occluded in the center with digital noise, leaving the rear and part of the front visible. +01992.jpg The Volvo 240 Sedan 1993 appears in a side view with a white exterior, partially obscured by colorful static on the right side, showcasing a boxy design with visible features like the black side trim and clear windshield, situated on a street environment. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Volvo C30 Hatchback 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Volvo C30 Hatchback 2012_descriptions.txt new file mode 100644 index 0000000..4380ada --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Volvo C30 Hatchback 2012_descriptions.txt @@ -0,0 +1,3 @@ +07177.jpg This Volvo C30 Hatchback 2012 is viewed from the rear-left, displaying a dark glossy color with a metallic sheen, visible dual exhaust tips, and distinctive large alloy wheels, while the entire right side of the image is heavily occluded by colorful noise, obscuring part of the car and background. +03077.jpg The Volvo C30 Hatchback 2012 is viewed from a rear side angle with a visible glossy white body, sleek rear light design, sporty alloy wheels, and a significant area of the rear section obscured by a multicolored static occlusion in an urban setting. +07402.jpg The image shows the rear right side of a yellow Volvo C30 Hatchback 2012 with a textured, noise-obscured left half, set against a rural backdrop with wind turbines and clear skies. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/Volvo XC90 SUV 2007_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/Volvo XC90 SUV 2007_descriptions.txt new file mode 100644 index 0000000..4960c15 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/Volvo XC90 SUV 2007_descriptions.txt @@ -0,0 +1,3 @@ +01285.jpg The Volvo XC90 SUV 2007 appears predominantly dark in color with a glossy texture from a front-side view, partially occluded by a vertical band of colorful noise on the right, with distinctive features like its grille and headlights visible despite the modifications. +06068.jpg A silver Volvo XC90 SUV 2007 is partially visible from the front right angle with the central section occluded by colorful noise, showing a clear right headlight, distinctive alloy wheel, and part of the grille against a dealership backdrop. +02331.jpg The heavily occluded image shows the rear view of a silver Volvo XC90 SUV 2007 with visible chrome accents, distinctive taillight design, and the left side obscured by colorful static noise, situated in what appears to be a dealership environment with tiled flooring. diff --git a/utils/area/descriptions/Car/generated_descriptions_occ/smart fortwo Convertible 2012_descriptions.txt b/utils/area/descriptions/Car/generated_descriptions_occ/smart fortwo Convertible 2012_descriptions.txt new file mode 100644 index 0000000..4206f03 --- /dev/null +++ b/utils/area/descriptions/Car/generated_descriptions_occ/smart fortwo Convertible 2012_descriptions.txt @@ -0,0 +1,3 @@ +07594.jpg The image shows a blue smart fortwo Convertible 2012 from a three-quarter front view with a black soft top retracted, featuring red and black seating, partially covered by a colorful noise occlusion over the lower front section. +01081.jpg The low-resolution image shows a side view of a black "smart fortwo Convertible 2012" with a visible open-roof design, white alloy wheels, and the front part and rear end are heavily occluded by colorful noise, set against a slightly blurred outdoor background with a road and trees. +03728.jpg The image shows a partially obscured silver Smart Fortwo Convertible 2012, viewed from the side with the front end occluded by noise, highlighting its compact size, black spoked wheels, and proximity to a waterside urban environment. diff --git a/utils/area/descriptions/Food/classnames.txt b/utils/area/descriptions/Food/classnames.txt new file mode 100644 index 0000000..68eb7bf --- /dev/null +++ b/utils/area/descriptions/Food/classnames.txt @@ -0,0 +1 @@ +['apple_pie', 'baby_back_ribs', 'baklava', 'beef_carpaccio', 'beef_tartare', 'beet_salad', 'beignets', 'bibimbap', 'bread_pudding', 'breakfast_burrito', 'bruschetta', 'caesar_salad', 'cannoli', 'caprese_salad', 'carrot_cake', 'ceviche', 'cheesecake', 'cheese_plate', 'chicken_curry', 'chicken_quesadilla', 'chicken_wings', 'chocolate_cake', 'chocolate_mousse', 'churros', 'clam_chowder', 'club_sandwich', 'crab_cakes', 'creme_brulee', 'croque_madame', 'cup_cakes', 'deviled_eggs', 'donuts', 'dumplings', 'edamame', 'eggs_benedict', 'escargots', 'falafel', 'filet_mignon', 'fish_and_chips', 'foie_gras', 'french_fries', 'french_onion_soup', 'french_toast', 'fried_calamari', 'fried_rice', 'frozen_yogurt', 'garlic_bread', 'gnocchi', 'greek_salad', 'grilled_cheese_sandwich', 'grilled_salmon', 'guacamole', 'gyoza', 'hamburger', 'hot_and_sour_soup', 'hot_dog', 'huevos_rancheros', 'hummus', 'ice_cream', 'lasagna', 'lobster_bisque', 'lobster_roll_sandwich', 'macaroni_and_cheese', 'macarons', 'miso_soup', 'mussels', 'nachos', 'omelette', 'onion_rings', 'oysters', 'pad_thai', 'paella', 'pancakes', 'panna_cotta', 'peking_duck', 'pho', 'pizza', 'pork_chop', 'poutine', 'prime_rib', 'pulled_pork_sandwich', 'ramen', 'ravioli', 'red_velvet_cake', 'risotto', 'samosa', 'sashimi', 'scallops', 'seaweed_salad', 'shrimp_and_grits', 'spaghetti_bolognese', 'spaghetti_carbonara', 'spring_rolls', 'steak', 'strawberry_shortcake', 'sushi', 'tacos', 'takoyaki', 'tiramisu', 'tuna_tartare', 'waffles', ] \ No newline at end of file diff --git a/utils/area/descriptions/Food/generated_descriptions/apple_pie_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/apple_pie_descriptions.txt new file mode 100644 index 0000000..369ab63 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/apple_pie_descriptions.txt @@ -0,0 +1,10 @@ +3814952.jpg A slice of golden-brown, glossy apple pie with a flaky top crust is placed on a white plate with a silver fork and a dollop of whipped cream, viewed from above on a dark, blurred surface. +1305678.jpg A slice of golden-brown, flaky-crusted apple pie stacked with glossy, light caramel-colored apple chunks is placed on a white plate, accompanied by creamy, swirled whipped topping, with a dimly lit, blurred wooden table background. +235537.jpg The apple pie features a golden-brown crust with a glossy, caramelized apple topping, viewed from a slightly elevated angle on a textured dark blue plate, set against a blurred, neutral background. +2320000.jpg A slice of golden-brown apple pie with a flaky, slightly cracked crust and visible filling, presented on a simple, white plate against a blurred, neutral background. +1596650.jpg A slice of apple pie with a golden-brown, slightly flaky crust and tender, visible apple slices is presented on a white plate, accompanied by a glass of amber-colored liquid on a wooden table surface. +266007.jpg A slice of apple pie with a glossy golden-brown topping and thin apple slices is served on a white plate alongside a swirl of whipped cream, viewed from above with a wooden table in the background. +3410227.jpg The apple pie slice has a golden-brown flaky crust with visible chunks of apple filling, viewed from a side angle on a dark plate, set against a blurred indoor background with office supplies. +3501006.jpg A rustic, golden-brown apple pie with a slightly uneven crust and a glazed, caramelized topping is presented on a white plate, set against a blurred indoor background. +1977565.jpg The apple pie slice features layers of golden-brown, slightly flaky crust topped with a dollop of whipped cream, viewed from a side angle on a white plate against a backdrop of modern cafeteria chairs and tables. +1822764.jpg A slice of apple pie with a golden-brown lattice crust, topped with a melting scoop of vanilla ice cream, sits on a red plate with a fork, surrounded by caramelized apple filling. diff --git a/utils/area/descriptions/Food/generated_descriptions/baby_back_ribs_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/baby_back_ribs_descriptions.txt new file mode 100644 index 0000000..cd22be8 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/baby_back_ribs_descriptions.txt @@ -0,0 +1,10 @@ +3691980.jpg Baby back ribs, glazed with a glossy reddish-brown sauce, display a caramelized texture from an overhead angle, garnished with fresh green herbs and sliced vegetables on a white plate amidst a restaurant setting. +3849802.jpg The baby back ribs have a glossy, dark reddish-brown glaze with a slightly charred texture, viewed from above on a grill with a circular metal grid background and hints of white fat beneath the sauce. +204183.jpg These baby back ribs, captured in a dimly lit setting, exhibit a glossy, caramelized brown surface with a rich, sticky texture and are stacked vertically on a dark patterned plate with an indistinct backdrop and a garnish of herbs. +674044.jpg A serving of baby back ribs with a rich, glazed mahogany hue and visible char marks is arranged horizontally, accompanied by sides such as corn, beans in a small bowl, and green beans on a checkered paper atop a wooden counter, with a casual dining ambiance in the background. +1726178.jpg The baby back ribs have a glossy, deep reddish-brown hue with a slightly charred texture, positioned horizontally in the foreground on a white plate, accompanied by a bright yellow corn on the cob and a baked potato topped with melted cheese and chives in the background. +1582932.jpg The baby back ribs appear to have a glossy, dark brown glaze with visible char marks, placed on a white plate alongside a mound of white rice and garnished with yellow pickled vegetables, set against a wooden table background. +603308.jpg The baby back ribs display a dark, glossy, reddish-brown texture with prominent caramelization, viewed from above on a white paper-lined tray, accompanied by baked beans, crispy chips, and sliced meat in a casual dining setting. +2689633.jpg The baby back ribs appear richly glazed with a shiny, dark reddish-brown sauce, visible from a top-down angle on a plain white plate, with the glistening surface indicating a caramelized texture and slight char on the edges. +633918.jpg The image shows glossy, dark brown glazed baby back ribs with a slightly charred texture, positioned at an angle on a white plate, accompanied by crisp golden onion rings and fresh green lettuce on the side, set against a dark ambient background. +2536041.jpg A shiny, dark mahogany slab of glazed baby back ribs with caramelized char marks is presented from a close-up angle on a white plate, accompanied by a blurred, creamy side dish in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions/baklava_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/baklava_descriptions.txt new file mode 100644 index 0000000..2a72d3a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/baklava_descriptions.txt @@ -0,0 +1,10 @@ +1734429.jpg The baklava is a golden-brown, flaky log cut in half to reveal a textured, nut-filled interior, viewed from a close-up angle against a smooth white plate with a creamy white scoop on the side. +3850924.jpg A triangular slice of baklava with a glistening golden-brown, flaky and crispy top layer, drizzled with syrup and sprinkled with chopped green pistachios, is placed on a white plate against a blurred background of a marble-like surface and another plate edge. +3832160.jpg The baklava appears golden-brown with a flaky and layered texture, viewed from a low angle on a purple-toned surface, scattered with fine crumbs. +1679305.jpg A triangular slice of baklava is displayed on a white plate, with a golden-brown flaky pastry texture, topped with a dusting of green pistachio crumbs and surrounded by a drizzle of syrup, highlighted from an overhead viewpoint. +3691584.jpg This baklava features a golden-brown, flaky outer texture with visible layers, positioned from a side angle, surrounded by crinkled white paper cups within a close-up, intimate setting. +892531.jpg A cylindrical piece of baklava with a light golden-brown flaky texture rests on a white plate, viewed from a slightly elevated angle against a soft-focus background. +1245651.jpg The image displays a variety of baklava pieces with golden-brown flaky layers, glistening syrupy surfaces, and visible green pistachio filling, placed on white paper in an overhead viewpoint, showcasing contrasting textures and shapes. +3256382.jpg A triangular piece of golden-brown baklava sits on a white square plate with chocolate drizzle and a dollop of whipped cream, viewed from above in a casual dining setting, surrounded by forks and partial views of hands. +473405.jpg The image shows a tray of neatly arranged, golden-brown, ribbed-textured baklava pieces in a metallic baking pan, with a glossy surface suggesting syrup, set against a kitchen-like background. +3709137.jpg Two golden-brown square pieces and two green cylindrical pieces of baklava, sprinkled with finely ground pistachios, are arranged on a white plate with a thin blue border, placed on a light stone-textured table. diff --git a/utils/area/descriptions/Food/generated_descriptions/beef_carpaccio_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/beef_carpaccio_descriptions.txt new file mode 100644 index 0000000..11a4edd --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/beef_carpaccio_descriptions.txt @@ -0,0 +1,10 @@ +130872.jpg Thin, raw slices of vibrant red beef are arranged flat on a white plate, topped with arugula, mushroom slices, and shavings of Parmesan, all lightly drizzled with a creamy dressing, set against a simple, unadorned background. +3642001.jpg Thinly sliced, vibrant red beef carpaccio is lightly marbled with white and arranged on a rectangular white plate, garnished with fresh greens and translucent onion slices, set against a contrasting dark tabletop with blurred tableware in the background. +2738534.jpg Thinly sliced, marbled red beef is artfully arranged flat on a rectangular white plate, adorned with scattered microgreens, capers, and thin cheese shavings, against a dark tabletop backdrop. +1021977.jpg Thinly sliced beef carpaccio with a rich red hue and a delicate marbling is elegantly presented on a white plate, topped with fresh arugula and shaved Parmesan, against a dark, minimalist background with a softly blurred glass on the side. +2546469.jpg Thin slices of vibrant pink beef are arranged flat on a rectangular plate, topped with a scattering of arugula and shaved cheese, with zigzagged drizzles of creamy dressing, creating a delicate yet colorful presentation against a neutral tabletop background. +1707308.jpg Thinly sliced, vibrant red beef carpaccio with a smooth, marbled texture is garnished centrally with microgreens and Parmesan shavings, bordered by round slices possibly of a herb-flecked bread or side, against a softly lit, neutral background. +3725043.jpg Translucent, thin slices of pinkish-red beef are arranged on a white plate, garnished with roughly chopped fresh green herbs, thin rings of red onion, and a scattering of finely chopped nuts, creating a vibrant and textured presentation. +453819.jpg The image shows a low-resolution dish with stacked circular layers of reddish-brown meat on a white plate, accented by a drizzle of sauce and garnished with small cubes and a single green herb stem, positioned on a minimalist background. +3692870.jpg Thinly sliced, vibrant red beef carpaccio is elegantly arranged on a white plate with a slight overhead view, garnished with fresh arugula leaves, a lemon wedge, grated cheese, and drizzled with olive oil, set against a subtle dark wooden table background. +2674712.jpg Thinly sliced, reddish beef carpaccio with a glossy texture is arranged flat on a white plate, surrounded by small drizzles of sauce, microgreens, and toasted bread slices, on a softly lit, metallic surface. diff --git a/utils/area/descriptions/Food/generated_descriptions/beef_tartare_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/beef_tartare_descriptions.txt new file mode 100644 index 0000000..c494cc0 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/beef_tartare_descriptions.txt @@ -0,0 +1,10 @@ +3692683.jpg The beef tartare appears as roughly textured mounds of finely chopped meat in a vivid red shade interspersed with small white flecks, viewed from above on a smooth white surface with blurred light pastry items in the background. +2857708.jpg A small, round portion of beef tartare topped with an egg yolk displays a marbled texture of red and white flecks, placed on a white plate with crispy toast slices and fresh green lettuce, set against a dimly lit restaurant background featuring a wine glass and a white tablecloth. +3434596.jpg A round, finely minced beef tartare is richly red with small green leaf garnishes on top, a creamy white dollop on one side, all set on a smooth gray plate accented by a streak of mustard with visible seeds. +1924517.jpg A neatly formed mound of finely chopped red beef topped with a bright yellow egg yolk sits on a white rectangular plate, accompanied by fresh green lettuce leaves to the left and toasted brown bread slices to the right, under soft ambient lighting. +860481.jpg The beef tartare appears as a small, cylindrical mound with a finely chopped texture, predominantly reddish-brown in color, topped with tiny green herbs, and is situated on a white plate with strategically placed green and pink garnishes, under natural lighting in an elegant dining setting. +2540316.jpg A dark reddish-brown, finely diced beef tartare with a crosshatch texture is centrally placed on a white plate, accompanied by thinly sliced red onions and ridged butter rounds, with a sprig of greenery on a light wooden tabletop. +2597806.jpg The low-resolution image depicts beef tartare with a deep red and slightly marbled texture, served in a small glass dish garnished with green herbs and a quail egg yolk, set against a background of golden-brown potato chips on a white plate. +1571318.jpg A mound of finely diced, raw beef with a reddish-pink hue and a slightly glossy, moist texture is centrally presented on a white plate, surrounded by a softly blurred, dimly lit background. +1282738.jpg This rectangular beef tartare appears pinkish-red with specks of green herbs and a glossy yellow egg yolk on top, surrounded by golden-brown toasted bread slices on a white plate, garnished with chopped herbs and seasoning. +3834990.jpg The image shows a beef tartare with a coarse texture and a mixture of reddish-pink hues, topped with green herbs, all displayed on a white plate with a slightly blurred background. diff --git a/utils/area/descriptions/Food/generated_descriptions/beet_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/beet_salad_descriptions.txt new file mode 100644 index 0000000..4dd0ce6 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/beet_salad_descriptions.txt @@ -0,0 +1,10 @@ +464918.jpg A vibrant beet salad featuring deep red beets and orange segments is tossed with glossy green arugula leaves, scattered with chunks of white cheese, and set against a plain white plate background, with a hint of a hardwood surface beneath. +3081247.jpg In a dimly lit setting, the beet salad is a close-up view showcasing vibrant orange slices and deep red beets topped with creamy white crumbles and golden-brown nuts, contrasted against fresh green leaves. +2198453.jpg Thinly sliced red and white striped beet rounds are arranged in a circular pattern on a white plate, garnished with green pistachios and small fresh herbs, all lightly drizzled with a golden dressing against a dark, out-of-focus background. +3031406.jpg A vibrant beet salad featuring rich, dark red cubed beets, orange citrus slices, and pecans sits on a bed of fresh green leaves with scattered white cheese crumbles, all presented on a white plate with the image captured from a slightly elevated angle. +374528.jpg A beet salad featuring deep red, glossy beet slices, crumbled white cheese, and textured green leaves, presented from an overhead angle atop a light-colored plate with a silver spoon. +1036774.jpg A vibrant beet salad with glossy red, orange, and purple beets is artistically arranged on a white plate, accompanied by dollops of white cream and scattered green leaves, set against a blurred background of a gray surface. +406905.jpg A beet salad displayed in a top-down view features vibrant colors with chunks of bright orange and red alongside pale slivers atop a white plate with a decorative ring of black dots, set against a softly lit dining table backdrop. +781947.jpg The beet salad, viewed from above, features a vibrant array of textures with rich burgundy beet slices, bright orange segments, crumbled white cheese, and leafy greens, set against a patterned plate and accompanied by a slice of bread. +2468507.jpg The beet salad features warm-toned, cubed beets with a glossy texture, mingled with chopped nuts and dollops of creamy white cheese, viewed from an angled top-down perspective against a simple white plate background. +3429839.jpg A vibrant beet salad featuring glossy, deep red beet chunks is complemented by wilted greens and drizzles of dressing, accented with small white cheese crumbles, all presented on a white plate with a blurred wooden background. diff --git a/utils/area/descriptions/Food/generated_descriptions/beignets_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/beignets_descriptions.txt new file mode 100644 index 0000000..1515485 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/beignets_descriptions.txt @@ -0,0 +1,10 @@ +607297.jpg The image shows three golden-brown beignets heavily dusted with white powdered sugar, resting at an angle in a paper tray with a dark, blurred background and distinctively creased texture on their surfaces. +1294951.jpg The image depicts a golden-brown beignet dusted with a generous coating of powdered sugar, showing a flaky texture from a close-up side view against a blurred background of a dining setting with plates and ketchup bottles. +2209563.jpg Golden brown, irregularly shaped beignets are generously dusted with white powdered sugar, viewed from above on a marble table, with a paper cup of Café Du Monde in the background. +2825793.jpg Three cylindrical beignets, heavily dusted with powdered sugar, are arranged parallel to each other on white parchment paper, casting slight shadows on a wooden surface in bright, direct sunlight. +1550067.jpg Golden-brown, irregularly shaped beignets are generously dusted with white powdered sugar, sitting atop a speckled gray tabletop, with a hint of a blurred figure in the background. +621098.jpg The beignets are round, golden-brown, and lightly coated with powdered sugar, surrounding a trio of creamy, dotted ice cream scoops on a green plate. +1469000.jpg Two golden-brown beignets dusted with a generous layer of powdered sugar are presented on a small, white plate against a softly lit, neutral-toned background. +2331886.jpg Golden-brown beignets dusted with white powdered sugar are stacked on a white plate, viewed from an angled top-down perspective, with a light-colored round table and a cup of frothy coffee in the foreground, set against a warmly lit indoor café environment. +751414.jpg The beignets appear golden-brown with a generous dusting of white powdered sugar, sitting at a slightly overhead angle on a round, light-colored plate against a wooden table background. +1715583.jpg Golden-brown beignets covered in a generous dusting of white powdered sugar are piled on a white plate, with a dark, unfocused background enhancing their warm, inviting texture. diff --git a/utils/area/descriptions/Food/generated_descriptions/bibimbap_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/bibimbap_descriptions.txt new file mode 100644 index 0000000..3fbaeb1 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/bibimbap_descriptions.txt @@ -0,0 +1,10 @@ +1663419.jpg A vibrant bowl of bibimbap is seen from an overhead angle, featuring a colorful array of ingredients including bright greens, orange carrots, earthy mushrooms, and shredded seaweed atop rice in a dark stone bowl, set against a striped table background with chopsticks nearby. +2760814.jpg A low-resolution image of bibimbap showcases a colorful assortment of vibrant greens, earthy browns, and pale yellows artfully arranged in a white bowl, with visible crisp textures from lettuce and seaweed, against a neutral table setting with a side dish of bright kimchi. +2251922.jpg A vibrant bibimbap viewed from above features a sunny-side egg yolk with scattered sesame seeds at the center, surrounded by an organized array of multicolored toppings like orange carrots, green spinach, white bean sprouts, brown mushrooms, and crisp cucumber on a bed of white rice, all contained within a dark bowl. +405587.jpg This bibimbap is presented in a red bowl from an overhead view, featuring a central sunny-side-up egg with scattered black sesame seeds surrounded by vibrant sections of shredded green and purple cabbage, orange carrots, red peppers, and leafy greens, accompanied by a small cup of red sauce, against a wooden surface background. +847481.jpg A close-up view of a mixed bibimbap features vibrant reds, greens, and yellows with distinct textures of vegetables and rice against a blue bowl, surrounded by multiple small white dishes of side ingredients and garnishes partially visible in the background. +2314701.jpg A bowl of bibimbap is presented from an overhead angle, featuring a sunny-side-up egg with a bright yellow yolk atop a mix of rice and colorful vegetables, including orange carrots and green garnish, all set against a wooden tabletop with cutlery and a glass nearby. +1802811.jpg A top-down view of a vibrant bibimbap in a metallic bowl shows a variety of colors and textures, including the bright orange of julienned carrots, green spinach, white sprouts, and a sunny-side-up egg topped with seaweed strips, with chopsticks resting on the rim. +3172176.jpg A colorful bowl of bibimbap features a sunny-side-up egg with a crispy edge centered on a variety of toppings including vibrant greens, thin carrots, dark marinated strips, and sliced cucumbers, viewed from above with a spoon resting on the side, set against a plain white background. +2373559.jpg A sunlit bowl of bibimbap is viewed from a slightly elevated angle, showcasing a colorful mix of green sprouts, orange carrots, and brown meat atop white rice, all placed in a dark bowl against a softly blurred background with a hint of outdoor light. +1315787.jpg A low-resolution image shows a close-up of a white bowl filled with colorful bibimbap, featuring centrally placed sunny-side-up egg with sesame seeds, surrounded by neatly arranged vibrant vegetables and tofu drizzled with a dark sauce, under warm indoor lighting. diff --git a/utils/area/descriptions/Food/generated_descriptions/bread_pudding_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/bread_pudding_descriptions.txt new file mode 100644 index 0000000..8170ec4 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/bread_pudding_descriptions.txt @@ -0,0 +1,10 @@ +922225.jpg A portion of bread pudding with a golden-brown, crispy top and a soft, moist interior is presented on a clear plate, accompanied by a side of fluffy whipped cream in the background. +519140.jpg The low-resolution image shows a slice of bread pudding with a glossy, caramel-brown surface and a dense texture, partially covered in syrup and complemented by fresh strawberries, blackberries, and whipped cream on a white plate beside a metal fork. +2508874.jpg A cube-shaped bread pudding sits on a white plate, featuring a golden-yellow color with a smooth, custard-like texture, topped with a glossy dark sauce, set against a simple, blurred background with a spoon nearby. +2723948.jpg The image depicts a small glass bowl of bread pudding topped with a creamy, light-colored sauce, showcasing a soft, slightly coarse texture, set against a dimly lit background with a spoon and utensil partially visible nearby. +1392341.jpg A golden-brown bread pudding with a crispy top sits in a black skillet on a white plate, surrounded by creamy custard, blueberries, and sliced strawberries, viewed from a slightly angled perspective with a brown woven background. +543330.jpg A golden-brown, slightly glistening bread pudding with a textured, caramelized surface sits in a white dish on a softly lit table, accompanied by a subtle sauce pooling around the edges. +2724843.jpg A cylindrical brown bread pudding with a coarse texture sits in a white bowl, topped with a dollop of cream, and is garnished with a light sauce and chopped nuts spread around the base. +595191.jpg The bread pudding appears to have a golden-brown, slightly puffed and textured top, with a creamy glaze drizzled over it, set inside a white ramekin on a white plate with a doily, accompanied by a spoon on a white tablecloth background. +849064.jpg A slice of deep chocolate-brown pudding with a crumbly texture is positioned triangularly on a white plate, accompanied by fresh banana and strawberry slices, with a light dusting of powdered sugar and a blurred metallic cup in the background. +3437873.jpg A thick, triangular slice of brownish bread pudding with a dusting of powdered sugar sits on a white plate, accompanied by whipped cream, a scoop of vanilla ice cream, fresh strawberries, and a mint sprig, against a slightly dim, restaurant-like background. diff --git a/utils/area/descriptions/Food/generated_descriptions/breakfast_burrito_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/breakfast_burrito_descriptions.txt new file mode 100644 index 0000000..9d3847e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/breakfast_burrito_descriptions.txt @@ -0,0 +1,10 @@ +1217344.jpg The breakfast burrito, with a lightly browned and soft tortilla partially opened to reveal a colorful mix of eggs, cheese, and green onions, rests on a plate beside crispy seasoned potatoes and a metallic cup of white sour cream, set against a rustic wooden table. +573236.jpg The breakfast burrito has a toasted, golden-brown surface with a slightly crisp texture, positioned at a slight angle on a white plate, accompanied by a small cup of vibrant diced salsa and a red checkered cloth in the background. +2061233.jpg A green-tinted breakfast burrito with visible grill marks is sliced open, revealing chunks of white tofu, red tomato, and green vegetables, surrounded by a plate with potato chips set in a warm, indoor setting. +3698978.jpg A breakfast burrito with a toasted tortilla, partially unrolled revealing layers of white cheese and black olives, is topped with red salsa and sliced chili peppers, served on a white plate with a side of seasoned diced potatoes and garnished with a sprig of cilantro, set against a textured metal table background. +309177.jpg A hand-held breakfast burrito with a light brown, grilled tortilla and filling of scrambled eggs, cheese, and salsa is partially wrapped in foil, set against a backdrop of a colorful magazine on a wooden surface. +3727339.jpg A breakfast burrito with a lightly toasted, golden-brown tortilla is placed on the right side of a white plate, accompanied by red salsa and dark beans, set on a dark tabletop with a fork and a partially eaten loaf alongside. +314122.jpg The breakfast burrito is grilled with prominent dark stripes on a greenish tortilla, revealing a slice with visible layers of eggs, tomatoes, and other fillings on a white plate alongside a small cup of dip and a bottle of hot sauce in a casual dining setting. +3709091.jpg The breakfast burrito, viewed from a slight angle, features a golden-brown, grilled surface with visible grill marks, alongside a filling spilling out that includes scrambled eggs and melted cheese, set on a white plate next to a cup of mixed berries and a bowl of red salsa on a wooden table. +20721.jpg A breakfast burrito with a soft, lightly toasted tan tortilla is cut open to reveal a vibrant yellow egg filling mixed with red peppers, garnished with cilantro and positioned at an angle on a bright blue plate, accompanied by seasoned potato chunks and a small cup of chunky salsa on a table adorned with restaurant designs. +1048412.jpg A sliced breakfast burrito with a beige tortilla reveals a filling of scrambled eggs, pieces of green and purple vegetables, and a background of diced, browned potatoes on a white plate with a blurred, light-colored table setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/bruschetta_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/bruschetta_descriptions.txt new file mode 100644 index 0000000..7d5e728 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/bruschetta_descriptions.txt @@ -0,0 +1,10 @@ +1905725.jpg Slices of bruschetta topped with creamy white mozzarella, diced red tomatoes, and a drizzle of dark balsamic glaze are placed on a white plate, with a dimly lit wooden surface visible in the background. +75527.jpg Slices of grilled bread with a golden-brown, charred texture and sprinkled with green herbs are piled on a wooden board against a dark-colored background. +1613124.jpg A glass dish holds several toasted bread slices arranged like petals, surrounding a central mound of finely chopped tomatoes sprinkled with shredded cheese, set against a blurred outdoor cafe background with visible tables and chairs. +891236.jpg A toasted slice of bread topped with a small portion of red tomato and possibly herbs, resting on a plain white saucer, is situated on a red and white checkered tablecloth, with a blurry background featuring a circular chair back and a bottle of Pellegrino and a glass of water nearby. +1629416.jpg The bruschetta features golden-brown toasted bread topped with vibrant red tomato chunks, melted white cheese, and scattered green herbs, presented on a white plate against a blurred indoor setting. +2311458.jpg A wooden board holds slices of toasted bread topped with bright red diced tomatoes and herbs, viewed from a slightly elevated angle, set against a dimly lit bar with wine glasses and utensils. +1270864.jpg A low-angle view of bruschetta topped with vibrant red tomatoes, white crumbles, and green basil strips drizzled with balsamic glaze on a white plate surface. +1866967.jpg A plate of bruschetta is topped with diced vegetables and crumbled cheese, featuring toasted bread slices with a golden-brown edge, set on a dark red surface accompanied by fresh arugula on the left, against a dimly lit background that includes a menu and a clear glass. +3346192.jpg A low-resolution image of a bruschetta featuring a colorful topping of halved yellow and red cherry tomatoes with green herbs, placed atop slices of toasted bread, garnished with white mozzarella slices, all set against a dimly lit table backdrop. +3771375.jpg The bruschetta features a toasted bread base with a vibrant topping of finely chopped red and orange vegetables, viewed from above on a white plate with greens underneath, set against a dimly lit restaurant table that includes cutlery and a portion of bread in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions/caesar_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/caesar_salad_descriptions.txt new file mode 100644 index 0000000..f119207 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/caesar_salad_descriptions.txt @@ -0,0 +1,10 @@ +2379798.jpg A caesar salad presented on a white plate features creamy dressing atop romaine lettuce with slivers of parmesan cheese, small croutons, olives, cucumber, and arugula scattered, characterized by a vibrant, mixed color palette and a soft, appetizing texture. +1175434.jpg A bowl of Caesar salad featuring crunchy green and light yellow romaine lettuce leaves with a creamy texture, topped with browned croutons and crispy, thin flakes, positioned centrally against a dark, contrasting background. +3591385.jpg A close-up view of a Caesar salad featuring vibrant green romaine lettuce leaves, speckled with grated parmesan cheese and cracked black pepper, is set against a plain white plate, highlighted by a visible crouton on the edge. +3837950.jpg The caesar salad, presented in an edible tortilla bowl, features a colorful mix of dark green leafy lettuce, topped with creamy dressing, golden croutons, grilled chicken, and sliced cucumbers, all set against a dark wooden table with a background of magazines and a glass. +3709161.jpg The caesar salad features vibrant green, crisp romaine lettuce leaves topped with pale, shredded parmesan cheese and scattered red-brown crouton bits, viewed from above on a white plate, creating a contrast with the greens and yellows. +3814311.jpg A close-up view shows a Caesar salad with light and dark green romaine leaves, creamy white dressing, scattered shredded cheese, and a few golden brown croutons, all on a white bowl against a plain dark background. +267047.jpg This caesar salad features vibrant green romaine leaves with a glossy texture, generously topped with large, irregular strips of pale yellow cheese and golden-brown croutons, viewed from an overhead angle, set against a dimly lit background. +1781618.jpg Shredded romaine lettuce coated in creamy dressing is topped with croutons, halved cherry tomatoes, and grated Parmesan cheese on a white plate against a blurred wooden table backdrop. +3576259.jpg The caesar salad appears from an overhead angle with a mixture of light and dark green lettuce covered in creamy dressing, topped with golden-brown croutons and translucent slices of parmesan, set against a simple white dish background. +3673948.jpg The image shows a top-down view of a caesar salad with vibrant green lettuce, creamy dressing, sprinkled shredded cheese, and golden-brown croutons, set against a simple, white background. diff --git a/utils/area/descriptions/Food/generated_descriptions/cannoli_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/cannoli_descriptions.txt new file mode 100644 index 0000000..48b788f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/cannoli_descriptions.txt @@ -0,0 +1,10 @@ +1168154.jpg A pair of cannoli on a textured white napkin: the left one featuring a chocolate-covered shell with sprinkled bits and partially visible creamy filling, while the right one has a plain, golden-brown shell dusted with powdered sugar, set against a deep red background. +1442025.jpg A lightly dusted cannoli with a golden-brown, textured shell is viewed from above on a cream-colored plate, featuring creamy fillings with visible cherry pieces, complemented by a swirl of whipped cream and sprinkled powdered sugar. +3355791.jpg The cannoli are arranged in rows on a colorful tray, featuring a light brown, textured shell with dark brown highlights and are dusted generously with powdered sugar, with a visible filling of creamy white ricotta at the ends. +1154845.jpg A trio of golden-brown cannoli with a crispy texture are filled with creamy white filling, garnished with powdered sugar, and drizzled with chocolate sauce, all set on a white oval plate over a red and white checkered tablecloth. +2223927.jpg A golden-brown cannoli with a crispy, textured shell, filled with creamy white ricotta that has small chocolate chips, is placed at an angle on a white plate dusted with powdered sugar, set against a neutral dark background. +1773547.jpg A golden-brown, crispy cannoli shell filled with creamy white ricotta, garnished with chocolate shavings and powdered sugar, is presented sideways on a white plate with a bright orange slice in the metallic, softly blurred background. +3659976.jpg The cannoli are golden brown with a flaky texture, dusted with powdered sugar and filled with creamy filling, viewed from an overhead angle against a white plate with decorative piped edges, accompanied by a sliced strawberry. +2904485.jpg A stack of golden-brown cannoli with textured, bubbly shells and creamy filling peeks from each end, resting on a red plate atop a lace-covered table. +2597194.jpg A low-resolution image shows a cannoli with golden-brown, crispy shell ends protruding from creamy, textured filling laced with chocolate chips, resting atop a white plate featuring a decorative drizzle of dark syrup forming an elegant curve. +2597510.jpg The image shows two golden-brown, crispy cannoli with creamy, slightly speckled filling, resting on a floral-patterned plate dusted with powdered sugar against a dark wooden surface. diff --git a/utils/area/descriptions/Food/generated_descriptions/caprese_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/caprese_salad_descriptions.txt new file mode 100644 index 0000000..57b1e30 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/caprese_salad_descriptions.txt @@ -0,0 +1,10 @@ +2962185.jpg A vibrant caprese salad with slices of glossy red tomato and creamy white mozzarella layered on strands of pasta, drizzled with a dark balsamic glaze, garnished with fresh green basil leaves, resting on a striking red rectangular plate against a colorful, patterned background. +2856175.jpg Slices of fresh mozzarella and tomato are arranged alternately with green basil leaves on a white plate, topped with drizzled balsamic glaze and surrounded by pieces of crusty, golden-brown bread, casting subtle shadows on the white surface beneath in an overhead view. +2937692.jpg The caprese salad features slices of soft white mozzarella tightly packed atop fresh green basil leaves and red tomato slices, set on a shiny black plate against a speckled stone countertop, with each mozzarella slice distinctively striped with shallow cuts. +3769290.jpg Layers of creamy white mozzarella and juicy red tomato slices are topped with vibrant green basil leaves, drizzled with glossy dark balsamic glaze, seen from a close-up angle on a blurred, warm-hued background. +3288824.jpg The caprese salad, viewed at an angle on a rectangular white plate, displays layers of vibrant red and yellow tomatoes with smooth white mozzarella, accented by fresh basil leaves, set against a soft-focus dining table with elegantly folded napkins and cutlery. +3712852.jpg Slices of red tomatoes and creamy white mozzarella are arranged in layers with bright green basil leaves scattered atop, all seasoned with specks of herbs on a blue patterned plate, viewed from an angled perspective with a blurred indoor setting in the background. +187458.jpg Slices of ripe red tomatoes and creamy white mozzarella are arranged in a circular pattern on a white plate, garnished with fresh green basil leaves and a sprinkle of black pepper, set on a wooden table in a casual dining setting. +1155205.jpg Three stacks of sliced tomatoes and mozzarella topped with vibrant green pesto rest on a bed of arugula, presented on a white rectangular plate against a dimly lit background with visible glassware. +2278459.jpg A low-resolution caprese salad features vibrant red tomato slices topped with smooth, white mozzarella drizzled with dark balsamic glaze and garnished with fresh green basil, all arranged centrally on a white plate. +1613471.jpg Slices of yellow and red tomatoes layered alternately with fresh mozzarella and basil leaves, drizzled with balsamic glaze, are arranged on a white plate with a dark, blurred background, suggesting a dimly lit dining setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/carrot_cake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/carrot_cake_descriptions.txt new file mode 100644 index 0000000..fc42391 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/carrot_cake_descriptions.txt @@ -0,0 +1,10 @@ +3308715.jpg A low-resolution slice of carrot cake is viewed from above on a white plate, featuring smooth, creamy white frosting scattered with small orange carrot shavings and a dark, moist base, with a fork pressing into its center. +2682354.jpg The carrot cake features a rich brown crumbly texture layered with creamy frosting, viewed from a slight angle on a white plate, set against a blurred dining background. +527666.jpg The carrot cake, viewed from a side angle, features three textured layers of brown with visible flecks of carrot and nuts, separated by creamy white frosting, set on a metallic cake stand amidst a cluttered, colorful background. +629724.jpg A layered carrot cake with cream cheese frosting and crumb topping, drizzled with caramel sauce, is presented in a dimly lit dining setting, with visible plates and utensils in the blurred background. +3681505.jpg A two-layer carrot cake with a light orange-brown crumb and cream cheese frosting on top and between layers, viewed from the side on a white plate in a warm, rustic interior setting. +1438044.jpg A wedge-shaped slice of carrot cake with a reddish-brown, coarse texture topped with a walnut sits on a white plate next to two glasses of bright orange juice, with a white napkin on the tabletop background. +2715271.jpg The slice of carrot cake appears with a rich brown texture speckled with dark inclusions, topped with creamy white frosting and decorative orange carrot shavings, viewed from a side angle against a warm, subdued background. +3078089.jpg The carrot cake features a creamy white frosting topped with vivid orange and green icing carrots arranged in a circular pattern, viewed from above in a black plastic container, with a textured, nut-crusted edge visible. +1596400.jpg The carrot cake slice appears with layers of moist, brown speckled cake interspersed with white cream cheese icing, viewed from the side to show the dense, textured interior and topped with a small green and orange carrot decoration, set against a light, plain background on a white plate. +2069059.jpg The carrot cake appears as a neat square slice with layers alternating between moist, dark cake and creamy white frosting, topped with a nut garnish and set on a white plate accented by artfully drizzled caramel sauce. diff --git a/utils/area/descriptions/Food/generated_descriptions/ceviche_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/ceviche_descriptions.txt new file mode 100644 index 0000000..3b9a586 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/ceviche_descriptions.txt @@ -0,0 +1,10 @@ +3245088.jpg The ceviche appears fresh with a mix of translucent white fish pieces, light green cucumber cubes, and finely diced herbs, topped with green chive strands, alongside crispy golden chips on a neutral-toned plate, creating a vibrant and appetizing presentation from an overhead view. +1933310.jpg Ceviche is presented in a white takeout container, featuring a mixture of diced white, green, and orange ingredients with a garnish of yellow tortilla chips, set against a blurred background of a table and a person in a striped shirt. +2251880.jpg This ceviche appears to have a creamy, light yellow and orange hue with visible chunks of shrimp and vegetables, topped with fresh sprigs against a softly blurred background, emphasizing the mixture's creamy texture and vibrant garnishes. +1121245.jpg The ceviche appears in a rectangular glass dish with a vibrant mix of orange and yellow hues, featuring small shrimp and garnished with finely chopped herbs, set against a wooden table background alongside other dishes like sushi rolls and chips. +2767045.jpg This ceviche features a vibrant mix of orange, pink, and white seafood pieces with a sprinkle of bright green cilantro leaves, viewed from above in a blue dish, creating a colorful contrast against the slightly blurred indoor background. +325013.jpg In this image, the ceviche appears in a triangular white bowl, showcasing pastel pink fish slices topped with thinly sliced red onions and cilantro, all immersed in a pale yellow marinade, with orange sweet potato and white corn kernels on the side, set on a dark wooden table with reflective glasses and a soft candlelit ambiance. +1404175.jpg A low-resolution image shows a ceviche featuring diced white fish with hints of red and green from chopped peppers and herbs, served in a clear glass dish with a garnish of vibrant green parsley and accompanied by golden-brown sliced plantains on a white plate. +3784184.jpg The ceviche features a medley of vibrant colors with red onions, chopped tomatoes, herbs, and seafood garnished with sprouts, displayed from a top-angle view on a white plate with a blurred, neutral-toned background and a pool of golden liquid. +281425.jpg A ceviche dish featuring vibrant yellow corn and chunks of reddish-brown tuber alongside pale, mixed seafood with reddish-purple onions is presented in a shallow white bowl, set against a sleek, dark countertop with multiple similar dishes in the background. +2251280.jpg The ceviche is served in a square, white bowl and features chunks of light pink fish, vibrant red cherry tomatoes, thin slices of radish, all garnished with small green herbs, against a wooden table background with a partial view of other dishes. diff --git a/utils/area/descriptions/Food/generated_descriptions/cheese_plate_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/cheese_plate_descriptions.txt new file mode 100644 index 0000000..972d28a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/cheese_plate_descriptions.txt @@ -0,0 +1,10 @@ +1389479.jpg A rustic wooden platter holds coarse brown-crusted bread alongside pale, soft cheeses with varied mold patterns, while a sleek black knife lies between them, accompanied by vibrant orange chutney and dark raisins against an indistinct dark background. +3896775.jpg The cheese plate features an assortment of cheeses including creamy white, yellowish, and dark rind varieties, viewed from above, on an ornate plate with a decorative, blurred background. +1848213.jpg The cheese plate features various pieces of cheese ranging in color from white to yellow and light brown, set on a dark rectangular slate with visible textures next to a circular candle glow and glasses in a dimly lit dining setting. +3745692.jpg A rectangular cheese plate is viewed from above, featuring four varied cheeses in hues from off-white to creamy yellow with distinct soft and crumbly textures, paired with circular, brown crackers, set against a dark, glossy table backdrop. +2768205.jpg A wooden cheese plate is topped with a cylindrical white cheese with a rough texture, sliced semi-soft cheeses in hues of cream and ivory, apples in bright red and yellow wedges, and a vein-marbled cheese wedge, all presented alongside scattered dried cranberries and a small gold-tone knife, against a backdrop of a dark surface. +1873685.jpg A cheese plate featuring a light-colored wedge of cheese with a smooth texture and a thick rind, accompanied by a piece of rustic bread with a porous crust, and a small bowl of almonds, all placed on a plain white plate against a softly lit indoor background with a visible hand near the edge. +1249635.jpg A square white plate hosts a variety of cheeses including a triangular whitish cheese with a smooth texture, a baked round cheese atop a purple sauce, and a creamy piece with herbs, surrounded by long, toasted baguette slices, set against a dark background. +3029952.jpg A cheese plate viewed from above features a variety of cheeses with smooth to slightly crumbly textures in pale yellow and off-white hues, accompanied by a stack of neatly arranged golden-brown crackers, a cluster of red grapes, walnuts, and a small bowl containing dark olives, all set against a dark wooden table surface. +3401246.jpg A rectangular white plate on a wooden surface holds a diverse selection of foods, including creamy, tan cheese slices, glossy mixed olives, vibrant leafy greens, walnut clusters with a glossy, glazed texture, and vivid red strawberries, all arranged in a visually appealing manner. +2929552.jpg The cheese plate features a light cream and pale yellow cheese with a smooth texture, accompanied by crisp, thinly sliced bread on a dark slate with honeycomb and green garnish, set against a neutral tablecloth background with a slightly elevated angle. diff --git a/utils/area/descriptions/Food/generated_descriptions/cheesecake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/cheesecake_descriptions.txt new file mode 100644 index 0000000..e19f19e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/cheesecake_descriptions.txt @@ -0,0 +1,10 @@ +2751537.jpg A small, round cheesecake with a smooth, white base and dark purple topping is topped with a vertical white chocolate stick, placed on a light surface, surrounded by blurred pastel-colored macarons in the background. +3778639.jpg The cheesecake appears partially eaten, with a creamy yellow texture and purple berry fillings visible, set on a clear plastic container against a wooden surface, viewed from an overhead angle. +1132368.jpg The image shows a bowl filled with a smooth, creamy, off-white mixture resembling yogurt, surrounded by crushed ice within a larger dark bowl, set against a colorful table with abstract floral patterns. +1752259.jpg A low-resolution image shows a slice of cheesecake with a creamy, pale yellow texture topped with glossy berry compote, garnished on a white plate with a dusting of powdered sugar, and set against a muted table setting background. +3288238.jpg A slice of cheesecake with a golden-brown crust, topped with dark berry compote and a swirl of whipped cream, is seen on a patterned table in front of a white coffee cup and a wrapped cookie, with the focus on its creamy, smooth texture. +2837696.jpg A glossy, red strawberry-topped cheesecake with a granular, golden-brown crumb crust is displayed at a three-quarter angle in a glass case with a reflective metal shelf. +2803707.jpg A creamy yellow cheesecake slice with a smooth texture topped with a strawberry and cream dollop, viewed from a slightly elevated angle on a white plate against a blurred, neutral background. +407073.jpg The cheesecake, viewed from above, has a glossy red topping with a smooth texture, adorned with a purple flower and chocolate spirals, set against a glass display background with hints of other desserts. +91937.jpg A cylindrical cheesecake with a pale, creamy texture and a glossy red sauce topping, garnished with a mint leaf, sits on a square plate adorned with a chocolate drizzle lattice against a dimly lit, patterned background. +2071784.jpg The cheesecake slice is viewed from the side, showcasing a creamy beige layer beneath a glossy red fruit topping with visible seeds, resting on a pale brown crust, all against a neutral, smooth background. diff --git a/utils/area/descriptions/Food/generated_descriptions/chicken_curry_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/chicken_curry_descriptions.txt new file mode 100644 index 0000000..4023b01 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/chicken_curry_descriptions.txt @@ -0,0 +1,10 @@ +2589984.jpg The chicken curry, observed from a top-down viewpoint on a white plate, features pieces of chicken mixed with yellow-tinged rice, accented by small chunks of carrots and green herbs, accompanied by a side of fresh salad, with a visible metal spoon to the side. +3287111.jpg A warmly lit, creamy brown chicken curry with a smooth texture is topped with slices of hard-boiled egg and garnished with thin onion slices, set in a divided dish with additional condiments and placed on a formal dining table adorned with glasses. +3286533.jpg A dish of chicken curry with a warm, orange-brown hue and a slightly creamy texture is topped with fresh cilantro, positioned beside a mound of fluffy white rice, likely presented from an overhead viewpoint in a simple dining setting. +202169.jpg The chicken curry in the image is a rich orange color with a creamy texture, viewed from an overhead angle, served in a white foam tray alongside plain white rice and a darker greenish-brown vegetable side, and is accompanied by disposable cutlery on a tray. +532359.jpg The chicken curry in the image has a rich, orange-brown hue with a creamy texture, seen from a top-down view in a black circular container alongside white rice, with green cilantro garnishing the rice, set against a red tablecloth background. +374064.jpg A bowl of chicken curry features a rich, reddish-brown sauce with a creamy texture, garnished with fresh green herbs on top, viewed from a slightly elevated angle against a blurred wooden table background. +1944183.jpg A bowl of chicken curry with a rich, dark brown sauce and visible chunks of meat, garnished with fresh green cilantro, is seen from a slightly elevated angle atop a metallic tablecloth, with a basket of naan bread faintly visible in the blurred background. +66223.jpg A bowl of chicken curry with a rich, golden-yellow hue and a slightly oily texture, garnished with fresh green herbs, viewed from a top angle, set against a subtle patterned blue and white dish background. +2124335.jpg The chicken curry appears in a rich, orange-brown sauce with a slightly creamy texture, displayed from an overhead viewpoint in a rustic ceramic bowl, accompanied by various side dishes like flatbread, rice, and dipping sauces on a dark wooden surface. +2679600.jpg A vibrant red curry with a smooth, slightly creamy texture is viewed from above, garnished with a contrasting green cilantro leaf, a piece of sliced ginger, and a cherry tomato, set in a metallic bowl against a dark, blurred background. diff --git a/utils/area/descriptions/Food/generated_descriptions/chicken_quesadilla_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/chicken_quesadilla_descriptions.txt new file mode 100644 index 0000000..5e51f50 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/chicken_quesadilla_descriptions.txt @@ -0,0 +1,10 @@ +2062824.jpg A warm, golden-brown quesadilla filled with shredded chicken is positioned in the foreground, with a blurred background featuring diced tomatoes and green garnish visible. +2053353.jpg A chicken quesadilla with lightly browned, folded tortilla triangles, revealing a filling of golden-brown chicken, melted cheese, and green peppers, is presented on a wooden surface within a warmly lit dining setting. +1483783.jpg The low-resolution chicken quesadilla, viewed from above, displays a golden-brown, lightly toasted texture with a side of crispy french fries, accompanied by small bowls of red salsa, white sour cream, and green guacamole, all served on a white rectangular plate surrounded by a colorful salad garnish. +3340265.jpg The chicken quesadilla slices on the white plate have a golden-brown, lightly crisp texture, with some slices cut open to reveal a filling, accompanied by side scoops of green guacamole and red pico de gallo, photographed from a slightly elevated angle. +2771231.jpg A folded, lightly toasted quesadilla with golden-brown patches and visible chicken pieces is placed on a white plate with green stripes, under dim, bluish lighting, accompanied by a small cup of sauce. +2520522.jpg A partially open, triangular chicken quesadilla with a lightly toasted, speckled tortilla revealing white and yellow melted cheese is placed on an orange plate alongside shredded green lettuce, diced red tomatoes, a small cup of reddish-brown salsa, and greenish-white sauce, all set against a checkered tablecloth background. +121599.jpg The chicken quesadilla, placed in a yellow basket lined with parchment, appears as two light brown, toasted tortillas folded over the filling, with visible hints of melted cheese and a scattered mix of diced tomatoes and grilled chicken, set against a wooden table background with a small dipping sauce in view. +999369.jpg A golden-brown, crispy quesadilla cut into three segments is placed on a white plate, revealing a filling of diced chicken, red and green peppers; accompanied by small containers of white sour cream and chunky salsa, set against a teal-colored tabletop background. +1103603.jpg A triangular slice of chicken quesadilla, viewed from above, sits on an orange plate with light browning and melted cheese visible on top, surrounded by leafy greens and small diced vegetables, set against a colorful, striped tablecloth. +1860088.jpg The chicken quesadilla in the image features a golden-brown, slightly crispy exterior with visible grill marks, viewed from an angled side perspective on a crumpled white paper background, highlighting its layers of melted cheese and shredded chicken. diff --git a/utils/area/descriptions/Food/generated_descriptions/chicken_wings_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/chicken_wings_descriptions.txt new file mode 100644 index 0000000..bb707e7 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/chicken_wings_descriptions.txt @@ -0,0 +1,10 @@ +1475153.jpg A plate of glossy, reddish-brown chicken wings arranged in a pile is positioned next to a small cup of creamy white dipping sauce and garnished with a sprig of parsley and celery sticks, set against a wooden table with glasses of beverages and thick-cut fries visible in the background. +2892854.jpg The chicken wings are glazed with a shiny, deep reddish-brown sauce showing a slightly sticky texture, positioned in a heap with a few celery and carrot sticks on a white plate in a dimly lit dining setting. +2431919.jpg The chicken wing features a crispy golden-brown texture with darker charred spots, positioned at a sideways angle on a white plate against a softly blurred warm-toned background. +1411266.jpg Golden-brown chicken wings with a glossy, crispy texture are piled together in a close-up view, set against a blurred background that suggests a dining table environment. +3877566.jpg Golden-brown chicken wings with a crispy texture are arranged on a black-and-white checkered paper, accompanied by glossy, deep-colored dipping sauces in round black cups. +2614109.jpg The chicken wings are golden-brown with a glossy red-orange sauce, positioned slightly overlapping on a checkered black and white paper tray. +1274942.jpg The chicken wings appear coated in a glossy, deep reddish-brown sauce with a slightly bumpy texture, laid out on yellow printed paper alongside golden fries and vibrant green celery sticks, with a small container of white dipping sauce nearby. +3809149.jpg The chicken wings, viewed from above, have a glossy, deep amber-brown hue with a crispy texture, surrounded by a basket lined with green-leaf patterned paper and accompanied by carrot and celery sticks in small cups of dip. +1472638.jpg The chicken wings appear deep brown with a crispy texture and sesame seed garnish, positioned in a side view atop a stainless steel surface, accompanied by fresh lettuce, cucumber slices, and carrot strips. +1347449.jpg Golden-brown chicken wings with a crispy, textured surface are piled in a basket on a transparent sheet, with a wooden table in the slightly blurred background. diff --git a/utils/area/descriptions/Food/generated_descriptions/chocolate_cake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/chocolate_cake_descriptions.txt new file mode 100644 index 0000000..8a101ad --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/chocolate_cake_descriptions.txt @@ -0,0 +1,10 @@ +1089784.jpg A tall, dark brown, glossy chocolate cake with a rich, textured surface stands vertically on a white plate, dusted with powdered sugar and chocolate drizzle, set against a simple wooden table with minimal background distractions. +3403159.jpg This chocolate cake slice, viewed from the front side, features alternating dark chocolate and lighter cream layers with a glossy, rough-textured chocolate frosting topping, set on a white plate with chocolate drizzle and surrounded by cutlery on a wooden table. +674818.jpg A slice of rich, dark brown chocolate cake with a smooth and creamy texture is topped with chocolate shavings and drizzled with chocolate sauce, viewed from above on a clear, patterned plate accompanied by scoops of vanilla ice cream, set against a green tablecloth background. +51717.jpg The cake is a four-tiered cylindrical chocolate cake with alternating dark brown and white sections adorned with intricate floral patterns, viewed from a slightly angled side perspective, and placed on a reflective silver stand against a simple kitchen backdrop. +1672668.jpg The image shows a partially eaten chocolate cake with a glossy, dark brown glaze on top and creamy layers within, set on a white plate against a dark green tabletop, accompanied by a contrasting white-frosted red cake slice adorned with red sprinkles. +2276154.jpg The image shows a dark, glossy chocolate cake slice with rich frosting texture, viewed from above, accompanied by white whipped cream and a slice of orange on a reflective white plate against a beige background. +2225903.jpg A slice of dark chocolate cake, featuring a light tan filling, is presented on a crinkled paper plate with a shiny, smooth frosting on the outer edge, placed against a plain, light background with a fork visible on the right side. +1614010.jpg A chocolate cake with a rich, dark brown color adorned by ruffled, petal-like chocolate decorations on top, set against a floral-patterned black and white tablecloth. +3842121.jpg The image shows a dark chocolate cake textured with a rich, moist crumb and topped with a glossy, unevenly distributed chocolate ganache and white coconut flakes, viewed at an angle that highlights its rectangular shape on a white plate against a wooden table background. +1009391.jpg The close-up image shows a rich, dark brown chocolate cake with a glossy, smooth chocolate icing on top, featuring white icing letters; a slice has been removed revealing a moist and dense crumb, set against a bright blue background. diff --git a/utils/area/descriptions/Food/generated_descriptions/chocolate_mousse_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/chocolate_mousse_descriptions.txt new file mode 100644 index 0000000..b673e26 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/chocolate_mousse_descriptions.txt @@ -0,0 +1,10 @@ +2355043.jpg A smooth, glossy chocolate mousse with a rich, dark brown color is presented in a rectangular block shape, accompanied by crunchy, textured granola-like toppings and a light-colored creamy dollop on a white plate, all highlighted against a dimly lit backdrop. +2030555.jpg The chocolate mousse appears as a rich, glossy brown dessert with a creamy, swirled texture viewed from a slightly elevated angle, served in a clear plastic cup against a dark tabletop background. +1488257.jpg The chocolate mousse appears dark brown and glossy with a smooth texture, topped with a dollop of whipped cream, served in a glass bowl placed on a white saucer, set against a restaurant table with a paper placemat and glassware in the background. +3728815.jpg A glass of chocolate mousse features a rich, dark brown layer topped with fluffy white cream, adorned with two bright red raspberries and a fresh green mint leaf, set against a softly blurred, warm-toned background with a subtle metallic element. +87225.jpg A hexagon-shaped chocolate mousse is presented on a white plate, featuring a smooth, rich brown surface topped with round chocolate drops and detailed with vertical dark and white striped sides, set against a blurred kitchen background. +2149009.jpg A layered dessert in a clear glass showing alternating bands of pale cream and rich chocolate brown, topped with a glistening red layer and a dark chocolate heart garnish, set against a softly lit, neutral background with subtle shadows. +2324758.jpg A light brown, smooth-textured chocolate mousse topped with a glossy strawberry slice, kiwi slice, and blueberry, viewed from above, with two beige plastic spoons on a white plate against a dark wooden surface. +804544.jpg A cylindrical chocolate mousse with a rich, dark brown smooth texture is centrally posed on a plate, topped with two thin chocolate shards, and set against a background of a light marble-style surface and a small iced coffee in the top-left corner. +917854.jpg The chocolate mousse appears as three dark brown scoops with a creamy texture, topped with powdered sugar and garnished with a mint leaf, surrounded by kiwi, orange slices, and a raspberry on a dusted platter with a spoon. +964550.jpg A creamy, light brown chocolate mousse swirled elegantly in a cup is topped with curly white chocolate shavings and a decorative square piece of marbled chocolate, set against a soft white background. diff --git a/utils/area/descriptions/Food/generated_descriptions/churros_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/churros_descriptions.txt new file mode 100644 index 0000000..cb1cd85 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/churros_descriptions.txt @@ -0,0 +1,10 @@ +3052347.jpg Golden-brown churros with a ridged texture are partially dipped in a small ceramic cup filled with glossy chocolate sauce, set on a white plate against a wooden table background. +280963.jpg Golden-brown churros dusted with powdered sugar are piled on a white rectangular plate, surrounded by small bowls of chocolate and caramel, against a wooden table backdrop with a napkin and cup nearby. +1206968.jpg A golden-brown churro with a ridged, crispy texture is partially submerged in a cup of thick, rich chocolate sauce on a white cup against a beige tabletop background. +3225309.jpg Three elongated churros with a golden-brown, slightly crispy texture are presented on a metal tray viewed from an above angle, next to a cup filled with liquid, partially resting on a saucer. +3169804.jpg The churros are golden-yellow, heart-shaped, and exhibit a slightly ridged texture with a glossy chocolate dipping sauce below, all set against a plain white background. +3192296.jpg The churros are lightly golden-brown with a coarse sugar coating, diagonally placed on a white plate beside a small cup of chocolate sauce and garnished with a green leaf and an orange fruit in a dimly lit environment. +3586197.jpg Golden-brown churros with ridged texture are arranged on a white plate, drizzled generously with dark chocolate syrup, set against a contrasting dark and wooden background. +1467895.jpg Golden-brown churros drizzled with dark chocolate sauce lie scattered and overlapping in a white rectangular tray. +2508213.jpg Two churros with a golden-brown, sugary texture are vertically placed in a paper cup on a weathered wooden table, beside a vibrant, artistic postcard. +1230967.jpg Golden-brown churros with a crispy ridged surface are sprinkled with powdered sugar, held upright in a white paper cone against a dark tiled background. diff --git a/utils/area/descriptions/Food/generated_descriptions/clam_chowder_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/clam_chowder_descriptions.txt new file mode 100644 index 0000000..9f45a4d --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/clam_chowder_descriptions.txt @@ -0,0 +1,10 @@ +522281.jpg A creamy, pale-colored clam chowder with visible chunks of clams and potatoes, garnished with herbs, viewed from above in a white bowl on a dark tabletop with a spoon partially submerged. +3203674.jpg The clam chowder appears creamy and off-white with a slightly speckled texture, viewed from an overhead angle, displaying a garnish of chopped green herbs, set in an irregularly shaped white bowl against a wooden and dark background with a hint of cutlery beside it. +388666.jpg The clam chowder appears creamy and off-white with a smooth, slightly chunky texture featuring visible bread pieces, presented from an overhead angle in a white takeout cup against a red checkered tablecloth background. +231372.jpg The clam chowder appears a creamy off-white with a smooth surface texture, viewed from a slightly elevated angle in a black cup, garnished with a drizzle of yellow oil and chopped green herbs, set against a blurred background with a hint of blue and brown. +253049.jpg A creamy, beige clam chowder with visible specks of ingredients is served in a golden-brown bread bowl, with a thick, velvety texture spilling over the edges, placed on a white oval plate atop a blue and white checkered tray in an indoor setting. +676634.jpg The clam chowder appears creamy and beige with a thick texture, seen from a top-down view, garnished with a sprinkle of black pepper and chopped green herbs in a white bowl on a reflective surface. +647468.jpg The clam chowder appears creamy and white, speckled with herbs and pepper, with visible clams in their textured, open shells, and garnished with parsley in a shallow, dish-like bowl. +1750253.jpg A creamy, pale clam chowder with visible white chunks, likely potatoes, is served inside a golden-brown bread bowl with a reflective silver spoon protruding from the center, set against a white plate and a contrasting dark background. +1834659.jpg The clam chowder appears creamy and off-white with a smooth texture, viewed from above, set on a wooden table with a packet of oyster crackers and a lobster roll in the background. +1675413.jpg The clam chowder is a creamy off-white with a smooth, slightly glistening surface, containing small chunks and two noticeable round elements, viewed from above against a dark background. diff --git a/utils/area/descriptions/Food/generated_descriptions/classnames.txt b/utils/area/descriptions/Food/generated_descriptions/classnames.txt new file mode 100644 index 0000000..7f6094d --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/classnames.txt @@ -0,0 +1,101 @@ +apple_pie +baby_back_ribs +baklava +beef_carpaccio +beef_tartare +beet_salad +beignets +bibimbap +bread_pudding +breakfast_burrito +bruschetta +caesar_salad +cannoli +caprese_salad +carrot_cake +ceviche +cheesecake +cheese_plate +chicken_curry +chicken_quesadilla +chicken_wings +chocolate_cake +chocolate_mousse +churros +clam_chowder +club_sandwich +crab_cakes +creme_brulee +croque_madame +cup_cakes +deviled_eggs +donuts +dumplings +edamame +eggs_benedict +escargots +falafel +filet_mignon +fish_and_chips +foie_gras +french_fries +french_onion_soup +french_toast +fried_calamari +fried_rice +frozen_yogurt +garlic_bread +gnocchi +greek_salad +grilled_cheese_sandwich +grilled_salmon +guacamole +gyoza +hamburger +hot_and_sour_soup +hot_dog +huevos_rancheros +hummus +ice_cream +lasagna +lobster_bisque +lobster_roll_sandwich +macaroni_and_cheese +macarons +miso_soup +mussels +nachos +omelette +onion_rings +oysters +pad_thai +paella +pancakes +panna_cotta +peking_duck +pho +pizza +pork_chop +poutine +prime_rib +pulled_pork_sandwich +ramen +ravioli +red_velvet_cake +risotto +samosa +sashimi +scallops +seaweed_salad +shrimp_and_grits +spaghetti_bolognese +spaghetti_carbonara +spring_rolls +steak +strawberry_shortcake +sushi +tacos +takoyaki +tiramisu +tuna_tartare +waffles \ No newline at end of file diff --git a/utils/area/descriptions/Food/generated_descriptions/club_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/club_sandwich_descriptions.txt new file mode 100644 index 0000000..aa77479 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/club_sandwich_descriptions.txt @@ -0,0 +1,10 @@ +3089892.jpg The club sandwich appears to have a cross-sectional view, showcasing layers of light golden-brown toasted bread, crisp green lettuce, a slice of yellow cheese melted over a folded egg, and thin slices of red tomato, set against a warm yellowish background on a white plate. +887877.jpg The club sandwich, viewed from above on a white plate, features layers of lightly toasted brown bread showcasing vibrant fillings including green lettuce, red tomato slices, and white meats or cheese, surrounded by a glossy table surface with visible condiment bottles in the background. +1615904.jpg The club sandwich, viewed from above, features toasted golden-brown bread layers filled with visible lettuce, tomato, and meats, surrounded by a side of crispy golden fries and small dipping sauces on a white, red-rimmed plate against a dark background. +3794315.jpg A club sandwich with golden-brown toasted bread, filled with layers of crisp green lettuce, fresh red tomato slices, and light-colored turkey, is presented on a white plate with a background of a person wearing a blue shirt and a bowl of yellow potato wedges beside it. +600962.jpg A club sandwich with layers of pink ham, red tomatoes, green lettuce, and white cheese is stacked between slices of lightly toasted, seeded bread on a white plate, accompanied by a side of golden fries, presented in a warm wooden table setting. +3868689.jpg A club sandwich with layers of delicately stacked turkey, crispy bacon, lettuce, and tomato is nestled between lightly toasted brown bread slices, garnished with a generous amount of golden, crunchy potato chips, and resting on a dark plate against a blurred background with blue and black horizontal stripes. +723071.jpg The club sandwich, viewed from a side angle, features neatly layered toasted bread with visible sections of turkey, bright red tomato slices, and pale green lettuce, set against a softly blurred background with a bowl of mixed greens and a glass. +1206547.jpg The club sandwich, viewed from above, shows layers of dark rye bread, crisp green lettuce, pale turkey slices, and pink tomato against a backdrop of golden-brown fries on a white plate. +3243003.jpg The club sandwich is presented in a diagonally stacked pose, showcasing dark brown, lightly toasted bread with visible layers of green lettuce, red tomato, and pale meats, set against a backdrop of menus on a white plate next to golden French fries and a small white dish of red ketchup. +2182943.jpg The low-resolution image shows a club sandwich with crisp, toasted golden-brown bread layered with vibrant green lettuce, juicy red tomato slices, and off-white turkey or chicken pieces, skewered together and accompanied by golden fries, set against a warmly lit wooden table surface. diff --git a/utils/area/descriptions/Food/generated_descriptions/crab_cakes_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/crab_cakes_descriptions.txt new file mode 100644 index 0000000..2c0d2eb --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/crab_cakes_descriptions.txt @@ -0,0 +1,10 @@ +3236673.jpg The crab cakes are small, round, and golden-brown with a slightly crispy texture, with a top-down view showing asparagus and a drizzle of creamy sauce on a white plate over a wooden table. +1460338.jpg Golden-brown crab cakes are topped with fresh arugula, thinly sliced radishes, and bright red pomegranate seeds, all presented on a round white plate with a subtle decorative rim, creating a vibrant contrast with the warm-toned lighting. +1047792.jpg Two golden-brown crab cakes with a crispy breadcrumb texture are positioned on a white plate, garnished with chopped herbs, accompanied by a small square dish of creamy sauce, a wedge of lemon, and a leafy green salad in the background. +20566.jpg A golden-brown crab cake, topped with vibrant green broccolini, rests on a white plate garnished with lemon wedges and scattered parsley leaves. +1827967.jpg Golden-brown crab cakes with a grill-marked surface are served on a white rectangular plate atop a colorful bed of diced tomatoes and corn, garnished with microgreens, and surrounded by a wooden table setting with a candle and condiment shakers. +3601511.jpg The crab cake, viewed at a slight angle, displays a golden-brown crust with visible red and green vegetables, set against a blurred restaurant-style background with cutlery and a wine glass. +1070184.jpg The crab cake appears golden-brown with a slightly crispy texture, viewed from a close-up side angle on a white plate, accompanied by a lemon wedge in a softly blurred setting. +1764837.jpg A plate of crab cakes garnished with fresh greens is presented from a top-down angle, featuring a golden-brown, crispy texture topped with a drizzle of creamy sauce and surrounded by a green herb-infused oil on a white plate. +1026455.jpg Three golden-brown crab cakes with a slightly crumbly texture are placed on a white plate, viewed from above, against a neutral table setting with a hint of lemon. +3366799.jpg The crab cakes have a golden-brown, crispy texture with a dollop of creamy, herb-flecked topping, viewed from a slightly elevated angle, set against a simple white plate adorned with artistic swirls of sauce and a decorative green leaf. diff --git a/utils/area/descriptions/Food/generated_descriptions/creme_brulee_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/creme_brulee_descriptions.txt new file mode 100644 index 0000000..29be68e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/creme_brulee_descriptions.txt @@ -0,0 +1,10 @@ +1436655.jpg A caramelized, golden-brown surface with a glossy texture sits atop the creme brulee, garnished with strawberries, blueberries, and a mint leaf, viewed from an angled top-down perspective on a white plate with a dark spoon resting nearby on a white tablecloth background. +840968.jpg A creme brulee with a golden-brown caramelized top, garnished with a strawberry, raspberries, blueberries, and a round cookie, served in a fluted white ramekin on a white plate with a dimly lit dining setting in the background. +2800705.jpg The creme brulee, viewed from a slightly tilted top perspective, features a caramelized sugar crust with a glossy, amber hue that contrasts with the creamy, pale yellow custard beneath, set against a blurred, neutral-toned background. +2448253.jpg The creme brulee features a golden-brown, caramelized sugar crust with a slightly uneven texture, viewed from above, placed on a white plate with simple red swirl designs, against a white background with partial text visible. +3900789.jpg A shallow, round terracotta dish holds a caramelized creme brulee with a dark, glossy crust, set on a smooth white plate beside a shiny metal spoon, against a pink-hued tablecloth. +2403921.jpg The creme brulee, seen from a top-down angle, features a glossy, caramelized golden-brown surface with darkened edges, presented in a scalloped glass dish on a white saucer, against a red tablecloth background with a napkin and spoon nearby. +559341.jpg The creme brulee appears in a white ramekin, featuring a caramelized, dark golden-brown sugar crust with a glossy finish, partially cracked to reveal the creamy, pale yellow custard underneath, set on a white surface with a light brown object on the left side of the frame. +2258580.jpg The creme brulee features a caramelized, golden-brown crust with a slightly darker center, presented in an overhead view in a white dish on a plate against a dark background, with visible coarse sugar texture despite the low resolution. +1824925.jpg A crème brûlée with a smooth, caramelized golden-brown top is presented in a white, fluted ramekin on a white saucer, set against a rustic table adorned with printed paper depicting architectural designs. +769924.jpg A small porcelain cup viewed from a high angle contains a golden-brown creme brulee with a glazed, caramelized sugar top, adorned with glossy mixed berries, set against a softly lit wooden table background. diff --git a/utils/area/descriptions/Food/generated_descriptions/croque_madame_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/croque_madame_descriptions.txt new file mode 100644 index 0000000..c9964ed --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/croque_madame_descriptions.txt @@ -0,0 +1,10 @@ +2671718.jpg A golden brown croque madame with a crisp texture is topped with a sunny-side-up egg, surrounded by roasted potatoes and a fresh, leafy green salad on a wooden table setting. +743765.jpg The croque madame is viewed from above, showcasing a toasted sandwich partly obscured by a generous layer of fresh green herbs, with hints of melted cheese peeking through, situated in a brown cardboard box accompanied by a white plastic fork. +3399546.jpg A golden-brown croque madame is topped with a perfectly cooked sunny-side-up egg, featuring creamy melted cheese and crispy edged toast, presented on a wooden table with scattered crispy potato pieces beside it. +2748543.jpg A golden-brown croque madame topped with a sunny-side-up egg, glistening with melted cheese and pepper specks, is positioned centrally on a white plate with creamy sauce to the side, set against a dark, reflective table surface. +229421.jpg A croque madame with a golden-brown crust topped with a sunny-side-up egg and green avocado slices, presented on a white plate on a wooden table. +2813410.jpg The croque madame features golden-brown, crispy toast layered with melted cheese, topped with a sunny-side-up egg that has a vivid orange yolk and a set but slightly glossy white, viewed from a close-up angle with a blurred, neutral background on a white plate. +3623419.jpg A golden-brown croque madame topped with a glossy, sunny-side-up egg sits on a dark plate, with its richly melted cheese and toasted bread slightly catching dim ambient light, creating a warm and inviting appearance. +1016269.jpg A croque madame with a golden-brown toasted sandwich topped with a bubbly layer of melted cheese, a sunny-side-up egg with a bright yellow yolk, garnished with green chives, served on a white plate. +3775057.jpg A croque madame topped with a sunny-side-up egg, with a rich golden yolk and crispy edges, sits on a white plate alongside golden brown fries, with the sandwich visible in a top-down view showcasing lightly toasted bread covered in melted cheese and garnished with a touch of cracked pepper. +1648749.jpg A golden-brown toast topped with melted cheese and a sunny-side-up egg with a runny yolk, surrounded by a drizzle of sauce, is presented on a white square plate against a background of blurred hands and a dotted pattern. diff --git a/utils/area/descriptions/Food/generated_descriptions/cup_cakes_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/cup_cakes_descriptions.txt new file mode 100644 index 0000000..e82969a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/cup_cakes_descriptions.txt @@ -0,0 +1,10 @@ +400613.jpg A small cupcake viewed from above with creamy, light brown frosting topped with a square chocolate piece, sitting on a light wooden surface with a green card featuring a logo in the background. +2892277.jpg The low-resolution image shows a group of cupcakes with varied designs on a white cardboard tray, featuring one with a simple black and white snowflake, another topped with colorful sprinkles, and a distinct cupcake with white frosting adorned with a black star pattern and an orange flower in the center, all against a neutral background. +134301.jpg A low-resolution image shows two cupcakes: one with smooth, dark brown frosting crowned with a small green garnish, and the other topped with bright red frosting adorned with a white piped decoration, both housed in a clear plastic container against a reflective metal surface. +2671408.jpg The cupcake has a light yellow frosting with a smooth texture, viewed in profile as held by a child, set in a wooden-floored dining environment with chairs and tables in the background. +1009501.jpg Four cupcakes are visible from an overhead angle, featuring swirled frosting in shades of chocolate brown and cream, with textures ranging from smooth to frosted with sprinkled toppings, set against a plain blue-gray background. +1194822.jpg Three cupcakes are displayed on a glass stand with brown and yellow bases, featuring various toppings including chocolate chunks, marshmallows, and hazelnuts, against a metallic, perforated background and pink and brown labeled tags. +3530532.jpg Rich chocolate cupcakes with smooth, glossy ganache swirls topped with chocolate chips, viewed from above in a fitting tray, with a vibrant assorted background of cupcake liners. +154146.jpg A single cupcake with a brown base and creamy white frosting, sprinkled with cocoa powder, sits inside a white, open cardboard container displaying a soft, inviting texture. +661219.jpg A tiered display of various cupcakes with colorful frosting including red, green, and yellow hues is surrounded by a dimly lit environment, showcasing toppings like sprinkles and small fruit pieces. +2059381.jpg Pink frosted cupcakes with rectangular toppers are displayed alongside cupcakes topped with Oreo cookies, set in a glass case against a lightly blurred outdoor background with wooden mulch ground and a checkered cloth. diff --git a/utils/area/descriptions/Food/generated_descriptions/deviled_eggs_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/deviled_eggs_descriptions.txt new file mode 100644 index 0000000..2c1da2f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/deviled_eggs_descriptions.txt @@ -0,0 +1,10 @@ +4891.jpg The deviled eggs displayed on a cream-colored plate have a pale yellow filling with a slightly coarse texture, sprinkled with green herbs, and are viewed from a slightly elevated angle against a dark, indistinct background. +3323140.jpg Two halves of deviled eggs with a creamy, bright yellow filling topped with a sprinkle of reddish-brown seasoning are viewed from a top angle on a clear plate, contrasting against a blurred, pale background. +926305.jpg The deviled eggs appear from a close-up angle on a white rectangular dish, showcasing a creamy, pale yellow filling with a swirled texture, dusted with reddish-brown paprika, set against a dark wooden table. +2550949.jpg The deviled eggs are halved with creamy, pale yellow filling sprinkled with red paprika and green chives, set atop a bed of finely shredded purple cabbage on a white rectangular plate with a dark wooden table beneath. +427529.jpg Four deviled egg halves, featuring a creamy yellow filling topped with slices of green jalapeño, rest on a wooden board with a dark background, showcasing a slightly coarse texture with small red and green specks. +3296716.jpg A halved deviled egg viewed from above shows creamy filling with visible herbs, paprika specks, and a dark olive topping, set against a wooden table background. +1975823.jpg Three deviled eggs with a smooth, creamy yellow filling are topped with thin, light brown slices, presented on a bed of fresh, leafy greens on a rectangular white plate, viewed from above in an indoor setting. +2559972.jpg Two deviled egg halves with a smooth, pale yellow filling and sprinkled black pepper sit on a white plate, against a blurred dark background, garnished with a few sprigs of fresh herbs. +881135.jpg Creamy yellow filling topped with red paprika rests within halved white egg whites, viewed from above on a dark gray plate with a napkin nearby, showcasing a velvety texture. +982237.jpg Creamy yellow deviled eggs garnished with a sprinkle of paprika and prosciutto sit on a white plate, accented by a pink sauce and chopped greens, with a blurred dining setting in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions/donuts_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/donuts_descriptions.txt new file mode 100644 index 0000000..f7e6154 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/donuts_descriptions.txt @@ -0,0 +1,10 @@ +2796001.jpg The photo shows two elongated, golden-brown pastries with a slightly glossy texture, viewed from above in a crumpled white paper bag, suggesting they are folded and nestled closely against one another with a blurred background. +2208114.jpg A low-resolution image shows four doughnuts on a white surface, with two having plain glaze and a smooth, shiny texture, one topped with white icing and colorful sprinkles, and another with a simple white icing, highlighting contrasting colors and textures. +53695.jpg The donuts have a golden-brown color with a slightly rough texture, viewed from the top, resting on a plain, light-colored surface, with prominent uneven edges and a jagged central hole. +2006380.jpg A pair of donuts on a white plate, one chocolate-glazed with white stripes and another similarly striped but lighter, accompanied by a small yellow cake topped with a cherry, viewed from above on a wooden table. +1290278.jpg A warm-toned donut nestled in a bamboo steamer is lightly dusted with powdered sugar, surrounded by a white table setting and accompanied by a sauce dish with a caramel-like dip. +1167771.jpg The image shows a white rectangular box with red and pink printed text and graphics, positioned at an angle atop a wooden surface, with a business card featuring stacked donuts attached to its side. +2949511.jpg A donut with a matte pink glaze and another topped with crumbly golden-brown streusel sit on a speckled countertop with a branded napkin, next to a white cup with a green pattern. +3288327.jpg A low-resolution image shows two donuts positioned closely: one upper donut with a glossy dark chocolate glaze drizzled with white icing and the lower one with a crispy, golden-brown fried texture, set against a plain, light background surface. +2494217.jpg A box of assorted donuts features a mix of shiny chocolate-glazed, plain golden-brown rings, sugar-dusted, and creamy beige frosting varieties, viewed from slightly above in a close-packed arrangement against a simple box background. +122287.jpg The image shows a box of donuts viewed from above, featuring a variety of textures and designs: a crispy brown fritter, a rectangular donut with white icing and multicolored sprinkles, a gingerbread-shaped donut coated in pale yellow icing, a powdered donut, a pink donut with sprinkles and a central dollop of cream, and another round donut with multicolored sprinkles, all set against a wooden table backdrop. diff --git a/utils/area/descriptions/Food/generated_descriptions/dumplings_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/dumplings_descriptions.txt new file mode 100644 index 0000000..9e3856e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/dumplings_descriptions.txt @@ -0,0 +1,10 @@ +2890183.jpg These steamed dumplings, viewed from above, are pale beige with a glossy, glistening texture, resting on a bamboo steamer lined with wilted lettuce, and feature pleated tops that converge to a small twisted point. +611830.jpg The dumplings appear semi-translucent with a pale, lightly glossy surface and a soft, wrinkled texture, placed in a neat row on a smooth white plate next to a dark soy dipping sauce, against a neutral brown background. +1927353.jpg Seven light beige, pleated dumplings with a slightly shiny, smooth texture sit on a parchment-lined bamboo steamer, viewed from above. +2863135.jpg The dumplings are a soft, pale beige color with a smooth, shiny surface, each featuring neatly folded pleats on top, viewed from a top-down perspective inside a round bamboo steamer, with a parchment lining and subtle hints of moisture reflecting light. +1122876.jpg A smooth, steamed dumpling with a beige color and pleated top rests on a small, white dish partially submerged in a dark, glossy sauce with shredded vegetable on the side, seen from an overhead angle against a wooden surface backdrop. +761512.jpg The dumplings are light beige with a slightly crinkled texture, viewed from above, arranged neatly on a wire rack inside a wooden display case, with a distinct steamy ambiance suggesting warmth. +2571523.jpg Steamed dumplings with a glossy, pale beige skin and intricate pleating are arranged in a circular bamboo basket lined with parchment, displaying a smooth, slightly puffy texture. +2974247.jpg The dumplings are pale with a smooth, slightly glossy texture, viewed from above in a wooden steamer, with pleated tops and gathered folds, set against the warm tone of the steamer's bamboo background. +1909073.jpg The dumplings are off-white with a smooth, slightly glossy texture, viewed from above, nestled in a wooden steamer with a distinct, pleated top and small ventilation holes in the base. +650770.jpg The dumplings are pale and smooth with gentle pleats at the top, sitting on a bed of bright green, textured lettuce inside a round bamboo steamer. diff --git a/utils/area/descriptions/Food/generated_descriptions/edamame_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/edamame_descriptions.txt new file mode 100644 index 0000000..fc7ac91 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/edamame_descriptions.txt @@ -0,0 +1,10 @@ +2725362.jpg A pile of vibrant green edamame pods with a slightly fuzzy texture is resting in a dark, shallow bowl on a light wooden table, viewed from an elevated angle. +1670384.jpg The image shows a pile of bright green edamame pods with a slightly fuzzy texture, sprinkled with coarse salt, arranged against the smooth surface of a white plate. +2719146.jpg A cluster of vibrant green edamame with a slightly fuzzy texture fills a white square dish, set against a rustic wooden surface background. +2062250.jpg The edamame pods are smooth and glossy with a vibrant green color, arranged closely together on a bright red dish, with the wooden texture of the table subtly visible underneath. +1681972.jpg This image depicts a pile of green edamame pods with a slightly fuzzy texture on a white plate, viewed from a slightly elevated angle, set against a dimly lit background with a blurred drink and papers. +3419923.jpg Bright green, slightly fuzzy edamame pods are clustered together in a black bowl, viewed from a top-side angle, with more bowls of edamame in the softly blurred background. +864875.jpg A pile of slightly wrinkled, matte green edamame pods with speckles of seasoning are stacked on a white plate, captured from an overhead angle with a softly lit, blurred background. +99647.jpg A bowl of vibrant green edamame with a slightly fuzzy texture is seen from above on a white dish against a dark tabletop, with the surrounding objects slightly blurred in the background. +2670224.jpg A bowl of bright green edamame with a slight sheen and visible texture from the beans, viewed from above on a textured wooden table with a ceramic bowl in the background. +2160017.jpg Bright green, fuzzy shelled edamame are piled in a brown bowl, topped with visible coarse salt, and accompanied by a lime wedge, set against a softly blurred orange background. diff --git a/utils/area/descriptions/Food/generated_descriptions/eggs_benedict_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/eggs_benedict_descriptions.txt new file mode 100644 index 0000000..dbd110f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/eggs_benedict_descriptions.txt @@ -0,0 +1,10 @@ +816413.jpg A low-resolution image shows an eggs benedict with creamy yellow hollandaise sauce over poached eggs and ham, garnished with mixed greens, set on a white plate beside a pile of seasoned, crispy golden-brown fries, against a dark table background. +3419276.jpg A plate holds two eggs benedict featuring pale yellow hollandaise sauce over poached eggs and ham on toasted bread, situated in a dining setting with a glass and a beer bottle in the background. +1792773.jpg The eggs benedict features two halves topped with creamy, pale yellow hollandaise sauce over poached eggs and ham, garnished with fresh chives, positioned on a round plate with golden brown roasted potatoes in the background. +348010.jpg A perfectly poached egg with a glossy, rich yellow hollandaise sauce sits atop thin slices of pink ham on a toasted English muffin, garnished with green herbs, with a leafy salad visible in the blurry background. +349502.jpg The eggs benedict sits lushly on a toasted base, smothered in creamy, golden hollandaise sauce, topped with green onion and fresh herbs, accompanied by crispy brown shredded hash browns and a fresh red strawberry, against a blurred diner backdrop. +1065571.jpg The eggs benedict features poached eggs with creamy hollandaise sauce on a bed of sliced tomato and greens, accompanied by golden-brown diced potatoes, all presented on a rectangular white plate with a casual outdoor setting visible in the background. +652656.jpg The eggs benedict features two poached eggs topped with creamy, yellow hollandaise sauce dusted with red paprika, viewed slightly from above on a white plate, accompanied by roasted potato cubes and orange slices, set against a plain white tablecloth. +158871.jpg The photo depicts eggs benedict from a slightly elevated angle, featuring a vibrant yellow, smooth hollandaise sauce atop a poached egg, garnished with bright green chopped scallions, served alongside sliced, lightly browned potatoes and accompanied by an orange slice on a white plate. +3487352.jpg Two poached eggs on Canadian bacon are covered in smooth, yellow Hollandaise sauce sprinkled with chives, resting on English muffins next to bright green asparagus spears on a rectangular white plate, with a blurred background featuring a small hot sauce bottle and coffee cup on a wooden table. +1415636.jpg A low-resolution photo shows an eggs benedict featuring a slice of toasted bread topped with wilted spinach, a poached egg, and a rich, yellow hollandaise sauce garnished with chopped herbs, set against a subtle background with a slice of pinkish ham to the side. diff --git a/utils/area/descriptions/Food/generated_descriptions/escargots_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/escargots_descriptions.txt new file mode 100644 index 0000000..124dbb7 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/escargots_descriptions.txt @@ -0,0 +1,10 @@ +2394471.jpg The escargots are presented on a round, brown-handled ceramic dish with individual compartments, filled with a green herb and garlic butter sauce and topped with cooked dark escargots, set against a plain white background. +709180.jpg Golden-brown, puff pastry-topped escargots in white ramekins are arranged in a group on a white plate, with a speckled marble table and a piece of torn bread in the blurred background. +3468444.jpg The escargots display a glossy, spiraled brown and cream shell pattern with a textured surface, arranged atop a dark, round dish surrounded by fresh green arugula leaves, viewed from a slightly elevated angle. +1912414.jpg The escargots are presented in a white dish, bathed in a light yellow garlic butter sauce with a slightly browned, crispy surface, alongside golden toasted bread and a dimly lit table setting. +1216410.jpg The escargots are presented in a white ceramic dish with circular molds filled with greenish-brown sauce, topped with baked golden breadcrumbs, garnished with two triangular pieces of toast and a lemon wedge on top, and placed on a white plate. +3804868.jpg The escargots are showcased inside a clear plastic cup held by hand, appearing from an overhead angle, with a noticeable green herb and butter mixture filling the shells, which have a spiral pattern and a smooth, slightly glossy texture, set against a cobblestone background bathed in sunlight. +243638.jpg The escargots are presented in a circular white dish with multiple wells filled with bubbling green garlic butter, viewed from above, and surrounded by bread pieces, set against a dark tabletop. +2358855.jpg A dish of escargots in shells appears dark and glossy, garnished with herbs and breadcrumbs, set on round toasted bread slices in a shallow bowl with a rich, buttery sauce. +527098.jpg The escargots in the image are positioned in a beige snail tray, topped with a vibrant green herb butter sauce, with some dark snail shells partially visible, set against a backdrop of dining tableware and a glass of red wine. +2132184.jpg The escargots appear in a creamy, frothy white sauce speckled with herbs in a small white dish, set on a lace-patterned paper doily, with the dish showing slight bubbling and browning on top. diff --git a/utils/area/descriptions/Food/generated_descriptions/falafel_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/falafel_descriptions.txt new file mode 100644 index 0000000..f289202 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/falafel_descriptions.txt @@ -0,0 +1,10 @@ +703862.jpg The image shows a close-up of a white container holding dark brown, crispy falafel balls topped with a light brown sauce, revealing a green interior, against a background of pavement with a partial view of a person's hand and foot. +978302.jpg The falafel appears dark brown and crispy with a coarse, crumbly texture, placed in a pile on a white and blue striped plate alongside fresh lettuce and a small red tomato, with a blurred bowl in the background. +1828408.jpg A halved falafel with a golden-brown crispy exterior and a green interior speckled with yellow chickpea bits is shown in close-up on a white paper plate next to a reddish-brown dipping sauce. +341720.jpg The image shows two spherical falafel balls with a golden-brown, crispy texture, garnished with a small dollop of green sauce on top, set on a clean white plate with a smooth, light green sauce spread beneath and surrounded by small leafy greens and roasted cauliflower in a sophisticated presentation. +400892.jpg The falafel, nestled inside a folded pita, is dark brown and crispy with a rough texture, coated in a creamy sauce, and is highlighted against a minimal paper-lined backdrop with a side of fresh, green lettuce. +2068282.jpg The falafel appears golden-brown and crispy on the outside with a crumbly greenish interior, viewed in close-up on a white paper plate alongside a white plastic fork, with some sauce drizzled on top and a blurred background featuring a cup of brown liquid. +565184.jpg The falafel, nestled in a folded pita, appears dark brown and crispy, surrounded by a light-colored creamy sauce and accompanied by lettuce, all set against a foil and paper-lined surface. +1164956.jpg The falafel on the plate in the foreground appears as small, round, dark brown patties with a crispy texture, positioned alongside vibrant green salad and colorful pickled vegetables, set on a blue plate against a casual dining background. +1558370.jpg Seven round, crispy falafels with a deep golden-brown crust are arranged in a circle around a central cup of creamy white sauce on a white plate with a brown rim, set against a neutral-toned table surface. +3438948.jpg A trio of dark golden-brown falafel balls is nestled in a folded pita alongside a colorful salad with vibrant greens, shredded carrot, tomato slices, and a small metal dish of sauce, all set on a white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions/filet_mignon_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/filet_mignon_descriptions.txt new file mode 100644 index 0000000..9bc4839 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/filet_mignon_descriptions.txt @@ -0,0 +1,10 @@ +3351234.jpg A perfectly seared, medium-rare filet mignon with a rich brown crust and tender pink interior is centered on a white plate, garnished with a drizzle of dark sauce and a small mound of creamy potato salad against a minimalistic background. +438056.jpg A seared, medium-brown filet mignon sits on a round white plate covered in a rich brown sauce, garnished with crispy golden curls, accompanied by a round, golden-brown base and surrounded by a few vivid pink sauce accents, viewed from a slightly elevated angle. +3915076.jpg The filet mignon slices are a medium-rare pink with a seared, brown crust, presented on a white oval dish with a side of green sauce in a small round bowl, set against a blurred background of a person in a striped shirt. +362683.jpg The image depicts a dark, seared filet mignon topped with a pale round garnish, likely cheese, accompanied by diced vegetables on a white plate under low lighting, with a sauce surrounding it and a wooden-handled knife positioned alongside. +569441.jpg A juicy, medium-rare filet mignon with a rich brown sear and a reddish-pink interior is pictured on a white plate, garnished with fresh green parsley and accompanied by a small bowl of creamy yellow sauce, with a fork and knife resting nearby. +1090035.jpg A perfectly cut medium-rare filet mignon with a pinkish interior and a slightly charred exterior is displayed on a white plate, accompanied by a drip of sauce and some greens, set against a blurred background. +1030530.jpg Three small cuts of filet mignon are presented on a narrow white plate, each covered with different sauces and garnishes, set against a dimly lit dining table with scattered parsley leaves for decoration. +978852.jpg The filet mignon is presented from a top-down view, wrapped in bacon and topped with a purple orchid, resting on a bed of creamy, pale-yellow sauce with visible chunks, set in a white plate against a dimly lit background with a bottle nearby. +469337.jpg The filet mignon appears dark brown with a seared exterior and a juicy, pinkish interior, viewed at a slight angle, surrounded by a cooked mushroom and glossy sauce on a warm-toned plate. +2516046.jpg The filet mignon appears dark brown and slightly charred on the top with visible grill marks, positioned on a white plate beside a baked potato topped with sour cream, and the setup is on a wooden table in a dimly lit restaurant environment. diff --git a/utils/area/descriptions/Food/generated_descriptions/fish_and_chips_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/fish_and_chips_descriptions.txt new file mode 100644 index 0000000..fc765e1 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/fish_and_chips_descriptions.txt @@ -0,0 +1,10 @@ +794255.jpg A lightly golden-brown, crispy-battered fillet of fish is centered on a white plate at an overhead angle, accompanied by thick-cut fries, a ramekin of creamy sauce, and a small side of fresh green lettuce on a smooth table. +2463876.jpg Golden-brown battered fish is neatly arranged beside chunky, yellow fries served in a metallic cup, accompanied by bright green mushy peas, white tartar sauce flecked with herbs, and a slice of lemon on a rectangular white plate placed against a dark, textured background. +1424554.jpg Golden-brown, crispy battered fish sits atop a pile of light brown, evenly sliced fries, with a lemon wedge and rolled newspaper placed beside, all on a square white plate on a beige surface. +848302.jpg Crispy golden-brown fish fillets and waffle fries drizzled with ketchup sit on newspaper-lined paper, accompanied by lemon wedges, against a bright green background with a glimpse of a graphic-printed shirt. +1347837.jpg A plate of fish and chips is viewed from above, featuring a golden-brown, crispy-textured fish fillet paired with light golden fries, served alongside creamy tartar sauce, a lemon wedge, and a cucumber slice, on a light-colored plate with a soft-focus background. +3013747.jpg A golden-brown, crispy breaded fish fillet with a lemon wedge is positioned to the left alongside curly, crispy fries on a white plate, with a small silver cup containing a sauce on a wooden table background. +280366.jpg Golden-brown battered fish and wedge-shaped chips are presented on a white plate with a side dish of creamy tartar sauce, set against a light-colored restaurant table with a glass and plate blurred in the background. +3669644.jpg Golden-brown battered fish fillets rest on a bed of yellow fries, accompanied by coleslaw on leafy greens and dipping sauce, presented on a parchment-lined metal basket against a beige table backdrop. +2008704.jpg Golden-brown, crispy battered fish pieces sit beside a pile of lightly seasoned fries, viewed from a slightly elevated angle against a simple white plate background. +3534777.jpg A golden-brown, crispy piece of fried fish rests on a white plate surrounded by a generous pile of uniformly cut, lightly seasoned fries, with a small portion of tartar sauce in a clear container, all set on a dark wooden table illuminated by warm ambient lighting. diff --git a/utils/area/descriptions/Food/generated_descriptions/foie_gras_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/foie_gras_descriptions.txt new file mode 100644 index 0000000..c026fe5 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/foie_gras_descriptions.txt @@ -0,0 +1,10 @@ +1762912.jpg The foie gras appears as a glossy, brown-seared piece with a smooth texture, situated on a swirled white plate with a light brown sauce pool and accompanied by colorful vegetables, viewed from a slightly elevated angle with soft natural lighting. +1246452.jpg A pale, beige block of foie gras with a smooth and creamy texture is presented on a white plate, surrounded by slices of baguette and green salad, viewed from above in a dimly lit setting. +1900669.jpg A creamy beige block of foie gras sits on a white plate with a smooth texture, garnished with sauce, alongside thin bread slices and small condiment containers, set against a rustic wooden table background. +1614073.jpg Two rectangular slices of beige foie gras with slightly pink marbling rest on a white square plate, accompanied by a glazed bun and a small glass of caramel-colored sauce, all against a dark table and accented by a red placemat. +1850969.jpg The foie gras is presented atop a piece of toasted bread with a fluffy, white cotton candy-like substance on top, set against a blurred interior background with red and brown hues, and the texture appears smooth with small crumbs scattered on the dark plate. +2686450.jpg A slice of foie gras is perched atop a piece of grilled bread, exhibiting a smooth, pale beige texture with hints of pink, surrounded by a reddish-purple leaf on a white plate in a softly lit dining setting. +1406367.jpg The foie gras is a light brown, glossy piece with a smooth texture, presented at a slight angle on a white plate with garnishes of green herbs, a slice of beetroot, and dark crumbled bits subtly arranged around it. +1526444.jpg The image shows a slice of toasted bread topped with a roughly textured mixture of brown and beige foie gras, garnished with green leaves and small nuts, set on a white plate in a dimly lit environment. +2815536.jpg The foie gras is presented in a sushi-style format on a dark slate surface, showcasing a golden-brown, slightly caramelized texture wrapped with a strip of dark seaweed, accompanied by a glossy drizzle of dark sauce enhancing its rich and savory appearance. +288864.jpg A golden-brown, seared slab of foie gras rests atop a bed of greens and vibrant garnishes, encircled by pink cubes and drizzled sauce on a white plate, set against a dimly lit restaurant table with bread and a water glass nearby. diff --git a/utils/area/descriptions/Food/generated_descriptions/french_fries_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/french_fries_descriptions.txt new file mode 100644 index 0000000..ba67a39 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/french_fries_descriptions.txt @@ -0,0 +1,10 @@ +798454.jpg The golden-yellow, lightly salted french fries appear slightly crisp and slender, emerging vertically from a red and yellow-striped open-top container with a recognizable brand logo, all set against a dimly lit car interior. +547396.jpg The golden yellow french fries, with a slightly rough and crispy texture, are sprawled randomly over a red container featuring a familiar yellow logo, set against a dark backdrop that includes a printed menu image. +3674858.jpg Golden-brown french fries with a slightly crispy texture are piled on a light brown paper against a warm wooden table backdrop, lightly sprinkled with visible black pepper. +3049746.jpg The french fries, golden-brown with a slightly crispy texture, are seen from a slightly elevated side view inside a branded paper container, set against the backdrop of a blurred car dashboard and a road through a windshield. +51678.jpg The french fries are golden-brown with a slightly uneven sheen and visible crisp exterior, piled together on a white plate with a blurred, indistinct background. +2705623.jpg Golden-yellow, slightly crispy french fries are piled on a white napkin with a few drizzles of red ketchup on top, set against a softly blurred background of muted colors. +2641001.jpg Golden-brown and slightly crisp, the thin, elongated french fries rest scattered on a paper towel-lined surface, with a faint oily sheen and a metallic tray visible in the blurry background. +854381.jpg The french fries appear golden-brown with a crisp, uneven texture, piled haphazardly on a red plate, set against a blurred indoor background with hints of tableware and a dark surface. +1577236.jpg Golden-brown, crispy-textured French fries are stacked at a close-up angle on brown paper, with some skin visible, beside a white cup containing red ketchup on a wooden surface. +340656.jpg A golden-brown, elongated, slightly curved object with a smooth and glossy texture is held against a softly lit background featuring napkins, a spoon, and a small dish of orange sauce. diff --git a/utils/area/descriptions/Food/generated_descriptions/french_onion_soup_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/french_onion_soup_descriptions.txt new file mode 100644 index 0000000..338d515 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/french_onion_soup_descriptions.txt @@ -0,0 +1,10 @@ +1610382.jpg A bowl of French onion soup is seen from a slightly elevated angle, featuring a golden-brown, bubbly layer of melted cheese with visible toasted edges, set against a reflective tabletop background with a spoon and bread slices nearby. +153160.jpg A white soup bowl holds a rich brown French onion soup topped with broiled, slightly melted cheese and crispy croutons, viewed from an overhead angle against a warm wooden background with a few paper items nearby. +247963.jpg The french onion soup is presented in a white ceramic bowl filled to the brim with a golden-brown, crispy cheese layer, set against a softly blurred background featuring a white tablecloth and silver utensils. +1072635.jpg A small white bowl of golden-brown, bubbly, and slightly charred cheese-topped French onion soup sits atop a white plate on a table with a spoon on the side, with a dark, softly lit background. +3710622.jpg The french onion soup appears to have a rich brown broth topped with golden, melted cheese and toasted bread pieces, viewed directly from above, set on a white saucer with a hint of a spoon on a textured tabletop background. +3562244.jpg The low-resolution image depicts a bowl of French onion soup with a golden-brown, bubbly cheese crust covering the top, served in a round, brown dish on a square white plate, accompanied by a spoon on the side, set against a neutral tabletop background. +1247422.jpg A bubbling golden-brown layer of melted cheese covers the surface of the deep brown soup, with a spoon resting in it, viewed from above against a softly lit table setting. +472934.jpg A creamy, golden-brown crust of melted cheese tops this French onion soup, visible from a top-down viewpoint, with a sprinkle of herbs in a brown ceramic bowl placed on a white plate against a restaurant-themed placemat background. +2209015.jpg The low-resolution image shows a crock of French onion soup topped with a layer of melted, lightly browned cheese sprinkled with chopped green herbs, set against a restaurant table background with a partially visible water glass and plate. +2275476.jpg A brown bowl of French onion soup with a golden-brown melted cheese crust sits on a white-patterned plate on a red-and-white checkered tablecloth, surrounded by candlelit ambience with glasses of water and wine nearby. diff --git a/utils/area/descriptions/Food/generated_descriptions/french_toast_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/french_toast_descriptions.txt new file mode 100644 index 0000000..e6e7c22 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/french_toast_descriptions.txt @@ -0,0 +1,10 @@ +3324951.jpg Golden-brown slices of French toast covered in melted butter and a dusting of powdered sugar are arranged on a plate with a fork, surrounded by a blurred, dark background and hint of green fabric at the edge. +99857.jpg The french toast is golden-brown with a slightly crispy texture, topped with powdered sugar and a variety of fresh berries, placed on a white plate against a dark wooden table background. +3910857.jpg Golden-brown and crispy French toast slices are topped with caramelized apple slices and a dusting of powdered sugar, surrounded by small bowls of syrup, cream, and jam on a white plate with slices of orange and strawberry, set on a wooden table. +272830.jpg Three slices of golden-brown French toast are stacked slightly overlapping on a white oval plate, glistening with syrup and a dollop of whipped cream on the side, against a red and white patterned table cover in a soft-focus background. +181119.jpg A stack of golden-brown, crispy-textured French toast slices is presented on a white plate, adorned with a pair of metal tongs, set amidst a dining table with white tableware and cups, along with a small bowl of red sauce nearby. +3189030.jpg The french toast appears golden-brown with a slightly crispy texture, viewed from an elevated angle on a white plate, garnished with diced fruit and syrup, accompanied by a dollop of cream and a fork resting on top, all against a light wooden table background. +2533127.jpg The French toast is golden-brown with a slightly crisp texture, topped with dollops of cream, blackberries, pear slices, and a dusting of powdered sugar, positioned on a dark green plate against a dark, smooth background. +750274.jpg Golden-brown slices of French toast are topped with vibrant red strawberry pieces and a dusting of powdered sugar, laid flat on a colorful, patterned plate with swirling blue, green, and brown designs. +3733365.jpg A slice of golden-brown french toast dusted with powdered sugar and topped with a scoop of cream sits at an angle on a round plate with a beige and brown striped border, set against a blurred wooden surface. +1537303.jpg The golden-brown French toast slices are sprinkled with powdered sugar, viewed from an angled side perspective, and set against a plain white plate with a softly blurred indoor setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/fried_calamari_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/fried_calamari_descriptions.txt new file mode 100644 index 0000000..02619d2 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/fried_calamari_descriptions.txt @@ -0,0 +1,10 @@ +904524.jpg A pile of golden-brown, crispy rings and tentacles with a visible craggy texture sits on a white plate, accompanied by a decorative yellow wrapped object against a dark, out-of-focus background. +136196.jpg Golden-brown fried calamari rings with a coarse, crispy texture are stacked in a pyramid shape on a wooden table, presented in a white dish, with blurred wooden chairs and floor visible in the background. +1782115.jpg The fried calamari in the image appears to be golden-brown with a crispy texture, arranged closely on a patterned dish, accompanied by a lemon wedge and a small bowl of red sauce, seen from a slightly elevated side angle. +677948.jpg The fried calamari is golden-brown and crispy with a slightly curled texture, presented in a heap on a white oval plate alongside a small dish of red sauce and a lemon wedge, set against a softly-lit dining table background. +3192134.jpg The fried calamari appears golden-brown with a crispy texture, viewed from above against a backdrop of creamy and red dipping sauces, with visible parsley flecks as garnish. +2182886.jpg Golden-brown, crispy rings of fried calamari are piled together on a plate with a green leafy background and a glimpse of red condiment, viewed from above. +1725086.jpg The plate of fried calamari, viewed from above, features golden-brown, crispy rings and tentacles scattered on a white square dish, accompanied by a small bowl of red dipping sauce, set against a dark background with folded napkins nearby. +2697837.jpg Golden-brown, crispy rings of fried calamari are arranged on a glossy black plate, accented with a drizzle of what appears to be a dark sauce, creating a contrasting texture and color against the smooth, reflective surface beneath. +2251859.jpg The fried calamari is golden-brown with a crispy, uneven texture, shown from a slightly angled top view on a lace-patterned doily under a dimly-lit setting, accompanied by a small ramekin of red sauce and garnished with chopped herbs and lemon wedges. +185435.jpg The fried calamari appears as golden-brown, crispy rings piled on an ornate blue and white patterned dish, viewed from an overhead angle, with a dark wooden surface and glass in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions/fried_rice_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/fried_rice_descriptions.txt new file mode 100644 index 0000000..597b1d0 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/fried_rice_descriptions.txt @@ -0,0 +1,10 @@ +64014.jpg A dome-shaped mound of fried rice showcases a mix of light brown tones with speckles of green and yellow from vegetables and egg, viewed head-on on a white plate with red pickled ginger, set against a muted blue tabletop with a bowl and chopsticks in the background. +777816.jpg The fried rice appears golden-brown with a generous mix of green peas, diced carrots, and chunks of meat, seen from an angled top view in a white styrofoam container, against a blurred indoor background. +2576877.jpg The fried rice is a dark golden-brown color with a slightly glistening texture, viewed from an angle, surrounded by banana leaves and a metallic spoon, with visible bits of green vegetables and small white flecks of onion or garlic amidst dim lighting. +2990769.jpg A blue-patterned plate holds light-colored fried rice with visible green peas, orange carrot pieces, and scattered egg bits, accompanied by a fork and spoon, placed on a glass-topped surface with a muted pink background. +2258653.jpg The fried rice has a golden-brown color with scattered green onions and bits of egg and meat, piled on an oval white plate with a red geometric border, placed on a light beige tablecloth with a side of sesame-covered food. +2228256.jpg The fried rice appears light brown with a glossy texture, featuring individual grains of rice interspersed with small yellow egg pieces and chopped green onions, viewed from a top-down angle against a neutral background that emphasizes its simple and uniform appearance. +275223.jpg The fried rice appears golden-brown with visible bits of orange carrot, green broccoli, and possibly bean sprouts, served in a white bowl against a dark table background, capturing a top angle view highlighting its moist and crumbly texture. +1771237.jpg A plate of fried rice with a golden-brown hue and a slightly oily texture, mixed with visible peas and carrots, is positioned alongside shredded cabbage and drizzled with a creamy yellow sauce, all against a dimly lit dining table backdrop. +3040520.jpg The fried rice appears golden-brown with visible bits of green onions and small egg fragments, set in an ornate white and gold-rimmed bowl with a side view, placed against an elegantly set dining table with a polished, dark circular under-plate. +2872064.jpg A mound of fried rice with a predominantly golden-brown color and slightly uneven texture is being shaped with a spatula on a flat metal grill, surrounded by scattered bits of vegetables and rice, with a hint of steam rising in a dimly lit kitchen setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/frozen_yogurt_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/frozen_yogurt_descriptions.txt new file mode 100644 index 0000000..bb88fdc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/frozen_yogurt_descriptions.txt @@ -0,0 +1,10 @@ +1868156.jpg A swirl of creamy white frozen yogurt sits centrally in a bowl, topped with caramel drizzle, crushed chocolate cookie bits, and topped with a waffle piece, against a plain, light-colored background. +2345408.jpg A swirl of soft pink frozen yogurt topped with chunks of yellow mango, blueberries, and sunflower seeds is set in a white Pinkberry cup on a neutral-toned surface, viewed from above. +471320.jpg Two cups of frozen yogurt are placed on a colorful table; the left cup contains frozen yogurt topped with vibrant yellow mango chunks and green kiwi slices, while the right cup has a topping of dark chocolate cookies, both set on white napkins with red and purple logo patterns in the background. +1000735.jpg The frozen yogurt appears swirled in shades of chocolate brown with a glossy texture, viewed from an overhead angle in a white cup with partially visible smooth chocolate syrup drizzled on top, set against a soft, blurred background. +1751778.jpg A multicolored frozen yogurt with a swirl of pale pink in a cup, topped with chopped nuts, kiwi slices, chunky walnuts, red beans, under soft lighting on a plain white surface, suggesting a self-serve frozen yogurt shop setting. +834478.jpg A white, swirled frozen yogurt with a smooth texture is topped with sliced almonds and dark fruit pieces, presented in a white cup with teal branding, viewed from a slightly elevated angle against a silver, reflective table surface with another similar cup blurred in the background. +157620.jpg Two cups of swirled frozen yogurt, featuring pink, yellow, and white hues with creamy textures, are set on a white tabletop with a blurred indoor environment and a person wearing a red shirt in the background. +794293.jpg A swirl of creamy, pale yellow and pink frozen yogurt topped with pastel-colored marshmallow shapes is shown from a slightly elevated angle, against a light background in a green paper cup labeled "Tutti Fruitti." +1953293.jpg A swirl of pale pink frozen yogurt is topped with red raspberries, yellow-green kiwi slices, and sugar-coated orange and red gummy candies in a white cup, set against a plain white background with a hint of a plastic spoon peeking out. +685882.jpg A colorful frozen yogurt topped with vibrant red strawberries, green kiwi slices, dark blueberries, and translucent pink tapioca pearls, viewed from an overhead angle in a white cup against a blurred white background with a hint of orange text. diff --git a/utils/area/descriptions/Food/generated_descriptions/garlic_bread_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/garlic_bread_descriptions.txt new file mode 100644 index 0000000..e3cd787 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/garlic_bread_descriptions.txt @@ -0,0 +1,10 @@ +2630018.jpg The garlic bread displays a golden-brown crust with a soft, slightly grainy texture, viewed from an overhead angle within a wicker basket, partially wrapped in white and red printed paper. +1860131.jpg Rectangular slices of garlic bread with a dark golden-brown crust and a dense topping of chopped green herbs, served on a white plate with red rims, accompanied by a saucy dish in a dimly lit dining setting. +1219294.jpg A close-up viewpoint reveals a golden-brown garlic bread slice, toasted with charred edges, speckled with green herbs, set against a soft, blurred background. +218445.jpg The garlic bread appears golden-brown with a speckled herb texture, viewed from above at a slight angle, resting on a white plate against a reddish-brown table background. +1962481.jpg A circular, lightly golden garlic bread with melted cheese and herbs is sliced into triangular pieces, presented on a white plate against a red and white checkered tablecloth with cutlery and a red napkin visible in the background. +1570642.jpg A piece of golden-brown garlic bread with a slightly charred edge, displaying a dappled herb texture, rests in a wicker basket lined with white paper, on a dark surface. +2458356.jpg A slice of garlic bread with a golden-brown crust and speckled herbs, viewed from an overhead angle, resting on a red and white checkered paper background. +3359232.jpg A round, golden-brown garlic bread with a smooth, slightly glossy texture and sprinkled herbs rests on a plain white plate against a dark tabletop background. +859877.jpg A rustic, golden-brown loaf of garlic bread with a crispy crust and open crumb structure is positioned on a white plate beside a ramekin of butter and a halved roasted garlic against a dark speckled background. +975936.jpg The image shows a piece of garlic bread with a golden-brown crust, a slightly charred and crispy surface texture, viewed from the top against a neutral background, featuring scattered bits of herbs and a soft, fluffy interior. diff --git a/utils/area/descriptions/Food/generated_descriptions/gnocchi_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/gnocchi_descriptions.txt new file mode 100644 index 0000000..8312264 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/gnocchi_descriptions.txt @@ -0,0 +1,10 @@ +450988.jpg Soft, pillowy gnocchi with a golden-brown sear and dusted with grated cheese and herbs, served in a white dish alongside a metal spoon, creating a cozy dining presentation. +621903.jpg The gnocchi are creamy and golden-hued with a slightly glossy texture, viewed from above on a white plate with brown lines, surrounded by a rich sauce with visible herbs and pieces of mushrooms and red elements, set against a dark, unremarkable background. +2674802.jpg Pale yellow gnocchi with a smooth, slightly glossy texture, viewed from above in a creamy sauce with green herbs and walnuts, set in a round white dish. +911576.jpg The gnocchi appear off-white and slightly glossy with a smooth texture, viewed from above on a white plate, garnished with black caviar, thin salmon slices, and delicate herbs, set against a wooden table background. +2915482.jpg The image shows a bowl filled with light beige, roughly textured gnocchi pieces, each slightly varying in size, coated in a creamy sauce, against a plain white backdrop. +2378778.jpg Small, slightly curved gnocchi pieces have a pale orange hue with a soft texture, surrounded by a bright red tomato sauce dotted with green herbs on a circular white plate featuring a decorative dotted border. +3073909.jpg Small, beige gnocchi with a smooth texture are seen from above, surrounded by a rich, reddish-brown sauce and topped with shreds of pale yellow cheese on a white dish. +1168246.jpg The gnocchi appear as small, pillow-shaped pieces with a golden-brown and creamy white color, slightly coated with tomato sauce and melted cheese, viewed from above with a surrounding mixture of sauce and grated cheese accents. +3607261.jpg Pale yellow gnocchi with a smooth, glossy texture is viewed from above, nestled in a creamy sauce, surrounded by a grated cheese background, featuring a distinct ribbed pattern on some pieces. +3495476.jpg Small, irregularly shaped green gnocchi are coated in a vibrant red sauce, sprinkled with thin white cheese shavings, and surrounded by cherry tomatoes on a white plate set against a wooden table background. diff --git a/utils/area/descriptions/Food/generated_descriptions/greek_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/greek_salad_descriptions.txt new file mode 100644 index 0000000..11a06fc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/greek_salad_descriptions.txt @@ -0,0 +1,10 @@ +1347297.jpg A vibrant, slightly overhead-view salad features a mix of crisp green and red lettuce, cubes of creamy white feta, black olives, cucumber slices, and hints of red onion, set against a neutral, softly blurred background. +3644115.jpg A vibrant and refreshing Greek salad with a mix of crisp green lettuce, creamy white chunks of feta, bright red tomatoes, thin purple onion slices, crunchy green cucumbers, yellow bell peppers, olives, and a lemon slice, all set on a soft blue plate, creating a colorful and appetizing composition enhanced by natural lighting. +2174246.jpg A mixed salad of red tomatoes, green cucumbers, and purple onions topped with a thick, rectangular slice of white feta cheese, situated in a white bowl against a neutral table setting, accompanied by a side of fries and a piece of bread. +1338900.jpg This Greek salad features vibrant red tomato wedges, crisp green cucumber pieces, glossy black olives, white feta cheese cubes, and purple onion slices, all glistening with dressing on a blue plate with a spoon. +3252650.jpg A low-resolution bowl of Greek salad featuring bright red tomatoes, crumbled white feta, and dark black olives atop fresh green lettuce, accented by vibrant green pepperoncini, viewed from slightly above against a blurred indoor background. +349016.jpg A Greek salad with bright white cubes of feta atop a bed of unevenly chopped green lettuce, interspersed with light green cucumber chunks, black and green olives, and surrounded by vibrant red tomato wedges, presented on a white plate on a light-colored surface. +226674.jpg The low-resolution image shows a partially eaten Greek salad with scattered green lettuce, a single black olive, a yellow pepper, shredded carrot, and bits of white cheese on a yellow plate, accompanied by a silver fork, set against a blurred indoor background of blue and yellow hues. +3226887.jpg The Greek salad is viewed from above, featuring vibrant red, green, and yellow peppers, dark olives, crumbled feta cheese, and is topped with large, dark brown roasted mushrooms, set against a dimly lit background within a circular white plate. +672399.jpg A low-resolution image of a Greek salad with large cubes of creamy white cheese resting atop slices of vibrant red tomatoes, crisp cucumbers, and rings of green peppers, garnished with herbs, against a minimalist white plate. +671268.jpg A Greek salad in a clear bowl features vibrant red cherry tomatoes, dark purple olives, and bright yellow pepper rings atop a bed of light green lettuce, flanked by slices of toasted pita, against the backdrop of a wooden table with paper menus. diff --git a/utils/area/descriptions/Food/generated_descriptions/grilled_cheese_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/grilled_cheese_sandwich_descriptions.txt new file mode 100644 index 0000000..e30847e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/grilled_cheese_sandwich_descriptions.txt @@ -0,0 +1,10 @@ +497745.jpg Two slices of golden-brown, grill-marked bread with melted cheese oozing out sit on a white plate next to a pickle, viewed from above in a brightly lit setting. +3020272.jpg A golden-brown, crispy half baguette sandwich is split open on a white plate, revealing melted cheese oozing out, with a second plate and glass in the slightly blurred background. +2735897.jpg The grilled cheese sandwich, viewed from above, displays a golden-brown crust with visible grill marks, accompanied by a side of crispy, seasoned fries and small white ramekins filled with red dipping sauces on a wooden table background. +2837699.jpg The grilled cheese sandwich, viewed from an angled overhead perspective, features a golden-brown, crispy texture with grill marks on the toasted bread, revealing melted cheese oozing between the layers, and is served on a long white rectangular plate against a soft green background with a lemon slice on a black dish in the blurred distance. +1627652.jpg A golden-brown, crispy grilled cheese sandwich sits on wax paper, photographed at a close angle revealing melted cheese oozing out, with a water bottle and soft shadowed surface in the blurry background. +1115988.jpg The grilled cheese sandwich is golden brown with defined grill marks and melted cheese oozing at the edges, viewed from a slightly elevated angle on a white plate, garnished with a sprig of fresh basil, set against a dark wooden table background. +334019.jpg The sandwich features a golden-brown, ridged exterior indicative of grilling, with melted orange cheese oozing out, viewed from a slightly elevated angle on a white plate with a blurred background in warm tones. +3352904.jpg The grilled cheese sandwich features a golden-brown crust with toasted texture, positioned in profile on a white plate, accompanied by a cup of fries in the background against a softly lit café setting. +692039.jpg A lightly toasted grilled cheese sandwich with golden brown edges and melted yellow cheese peeks from between the slices, positioned on a wooden tabletop beside seasoned fries. +669830.jpg The grilled cheese sandwich features golden-brown toasted bread with a visible crispy outer layer, revealing melted cheese and crispy bacon filling, held at an angle by hands over a plate on a wooden table background. diff --git a/utils/area/descriptions/Food/generated_descriptions/grilled_salmon_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/grilled_salmon_descriptions.txt new file mode 100644 index 0000000..48ef1e7 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/grilled_salmon_descriptions.txt @@ -0,0 +1,10 @@ +793308.jpg The grilled salmon has a light golden-brown searing with visible grill marks and a slightly glossy texture, viewed from a top-side angle on a white plate, accompanied by a small pitcher of sauce and a fresh vegetable garnish featuring julienned carrots and greens. +2419589.jpg The grilled salmon appears with a vibrant orange hue and a slightly charred texture, viewed from a top angle, accompanied by a salad, lemon slice, and roasted potatoes on a white plate, with visible grill lines enhancing its appetizing presentation. +2962933.jpg The grilled salmon has a light pink hue with a speckled seasoning on its surface, positioned flat on a white plate accompanied by a lemon wedge and a leafy garnish, amidst a background of mashed potatoes and sautéed zucchini. +2163226.jpg A rectangular piece of grilled salmon with a browned, seasoned crust is topped with a lemon slice and microgreens, placed on creamy mashed potatoes alongside asparagus and cherry tomatoes, presented on a white plate with dimly lit ambiance. +3640220.jpg The grilled salmon, viewed from above, is a glistening, deep golden-brown with charred grill marks, resting on a pool of light sauce near a dollop of creamy mashed potatoes topped with green herbs and accompanied by crispy, golden chips, all presented on a white plate against a richly toned wooden background. +3328975.jpg The plate features what appears to be a breaded white fish fillet accompanied by a colorful medley of zucchini, red bell peppers, and yellow squash next to a bed of lemon-garnished pasta, set against a decorative patterned plate on a wooden table. +1985020.jpg The grilled salmon exhibits a light orange hue with visible grill marks and a slightly glistening texture, viewed from an overhead angle on a white plate accompanied by mashed potatoes and broccoli, against a soft-lit dining background. +1945003.jpg The dish features a grilled salmon fillet with char marks, showcasing a golden-brown color and flaky texture, partially covered by a fresh, vibrant green arugula salad, complemented by diced tomatoes on a white plate with a dark and smooth background. +3670777.jpg A piece of grilled salmon with a golden-brown crust sits atop crispy, round roasted potatoes, garnished with a vibrant green sauce in a semi-circular pattern on a beige plate, viewed from a slightly elevated angle. +3131740.jpg The grilled salmon appears light pink with a slightly charred texture, positioned at an angle on a white plate accompanied by a lemon slice, soft glazed baby carrots, and roughly mashed potatoes with chives, set against a dimly lit backdrop. diff --git a/utils/area/descriptions/Food/generated_descriptions/guacamole_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/guacamole_descriptions.txt new file mode 100644 index 0000000..944f479 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/guacamole_descriptions.txt @@ -0,0 +1,10 @@ +3748723.jpg The guacamole appears to be a vibrant green, creamy yet chunky texture, topped with crumbled white cheese, situated in a brown bowl surrounded by crispy beige tortilla chips, with a blurred indoor setting featuring green-tiled walls in the background. +732904.jpg A creamy, slightly chunky guacamole, with a vibrant green hue and specks of diced tomato, topped with a fresh cilantro leaf, is presented in a dark bowl against a dimly lit, soft-focus restaurant backdrop. +2310050.jpg The guacamole appears as a chunky mixture with a predominantly green hue, scattered with visible bits of vegetables, set in a white bowl alongside reddish chips in a dim, candle-lit environment. +549932.jpg A small bowl filled with creamy green guacamole, slightly chunky in texture, topped with diced red tomatoes, is placed on a white saucer under warm indoor lighting, with a menu in the blurred background. +3227029.jpg A creamy green guacamole with chunks of avocado and tomato is presented on an oval plate with a leaf garnish, accompanied by a lemon wedge and tortilla chip, against a tiled grid surface and basket background. +2396019.jpg A small brown bowl contains a textured, chunky guacamole with scattered white cheese crumbles, featuring a greenish-yellow color interspersed with bits of red, surrounded by slightly curled, golden-brown tortilla chips, set against a dark background. +1225127.jpg A mound of creamy, vibrant green guacamole with a coarse texture is topped with small chunks of red tomato, set in a dark bowl against a dimly lit background. +239724.jpg The guacamole appears as a chunky, yellow-green mixture with visible red and purple vegetable pieces, presented in a black bowl on a bright green square plate, set against a dark wooden backdrop. +3628486.jpg A bowl of chunky, light green guacamole with visible bits of tomato is placed on a wooden table beside other dips and tortilla chips, viewed from a top-down angle and surrounded by drinks. +479222.jpg The guacamole is light green with a chunky texture, topped with diced red and green pieces, viewed from a side angle with tortilla chips in the background, and garnished with a drizzle of reddish oil and fresh green leaves beside it. diff --git a/utils/area/descriptions/Food/generated_descriptions/gyoza_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/gyoza_descriptions.txt new file mode 100644 index 0000000..3d3416b --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/gyoza_descriptions.txt @@ -0,0 +1,10 @@ +319782.jpg The gyoza in the image appear golden-brown with a glossy surface, arranged in a neat row on a ceramic plate with intricate green designs, set against a dark, textured table background. +3568781.jpg The gyoza are golden-brown with a slightly crispy texture, served on a white plate presented in a neat row, garnished with green onions, alongside a small cup of dipping sauce, all placed on a marbled surface. +3216502.jpg The gyoza appear golden-browned on top, resting on a white rectangular plate alongside soy sauce in a small compartment, viewed from an overhead angle, with a slightly blurry restaurant tabletop background. +1963378.jpg The gyoza are golden-brown and crispy on one side with a slightly translucent, steamed appearance on top, arranged in a row on a white plate against a dark, blurred background. +475174.jpg Golden-brown and crispy gyoza are aligned in a shallow ceramic dish with a rustic glaze, set on a deep maroon table, showing a slightly charred texture on the top and delicate pleats on the edges. +1796525.jpg Golden-brown and slightly crispy on one side, the gyoza sits atop a white parchment in a black basket, with a glazed appearance on the other side and accompanied by chopsticks and a small dark dipping bowl on a speckled table. +3522345.jpg The gyoza are arranged in a row with a slightly toasted, golden-brown top and a smooth, slightly glossy texture, sitting on a black, rectangular plate against a wood-patterned background, showcasing their crescent shape and pleated edges. +1351120.jpg The photo depicts a plate of pan-fried gyoza with a golden-brown, crispy texture on one side, set against a dark wooden table, accompanied by a small striped teapot and a decorative dish in the background. +2251810.jpg The gyoza appear golden-brown with a lightly crisped texture, viewed from above on a plain white plate, showcasing bubbled, slightly translucent edges and evenly pleated seams. +1349755.jpg Three lightly browned gyoza with a slightly shiny, crimped texture are placed atop a bed of green lettuce, with a side of dipping sauce in a small glass dish and a garnish of shredded sprouts and a tomato wedge in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions/hamburger_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/hamburger_descriptions.txt new file mode 100644 index 0000000..176f0fb --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/hamburger_descriptions.txt @@ -0,0 +1,10 @@ +2826072.jpg A hamburger with a sunny-side-up egg on top, accompanied by golden fries, and half-open in a brown bun, is set against a warm, wooden table backdrop. +201200.jpg The hamburger, viewed from above and wrapped partially in white paper, features glossy, melted cheese over the beef patty, topped with pickles and green lettuce, housed in a light brown bun, and sits nestled beside golden crinkle-cut fries inside a cardboard container. +3237878.jpg This image shows a thick hamburger with caramelized brown edges and melted cheese on a glossy bun, positioned next to a sunny-side-up egg overrun with herbs, all against a dimly lit background with a visible knife on the side. +162789.jpg A hamburger in a partially open bun with melted yellow cheese draping over a seared patty sits on a plate, accompanied by a dill pickle spear and slices of tomato and lettuce, with a blurred background suggesting a dining setting. +3570133.jpg A slightly toasted whole-grain bun encases visible crispy bacon, fresh lettuce, and a hint of tomato, set on a clear plastic wrap over a light wooden surface, viewed from a slightly elevated angle. +3745227.jpg A sesame seed bun tops a hamburger with melted yellow cheese over the patty, accompanied by a vibrant mix of lettuce, sliced tomatoes, onions, pickles, and a cup of ketchup, with fries in a bowl behind, all placed on a white plate in a casual dining setting. +2897464.jpg A hamburger with a glossy, golden-brown sesame seed bun, layers of bright green lettuce, ripe red tomato, melted yellow cheese, and visible beef patty, all slightly tilted and resting on a crinkled silver foil surface, with part of an indoor setting faintly visible in the blurred background. +2573191.jpg A hamburger with a seared brown patty topped with melted cheese and onion slices on the side is viewed from above, set against a backdrop of outdoor street scenery, accompanied by leafy greens, pickle slices, and a halved bun with visible avocado and tomato, all under natural lighting. +3450907.jpg A sesame-seed bun hamburger with a thick, grilled patty and layers of tomato, lettuce, and pickle is photographed from a slightly elevated front angle, set on a white plate with a blurred dining environment. +2145273.jpg A sesame seed bun hamburger is shown from a side angle with a sunny-side-up egg on top, crispy bacon, partially visible lettuce, accompanied by golden brown fries on a white plate, all set against a dimly lit background with a beverage glass nearby. diff --git a/utils/area/descriptions/Food/generated_descriptions/hot_and_sour_soup_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/hot_and_sour_soup_descriptions.txt new file mode 100644 index 0000000..865b32b --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/hot_and_sour_soup_descriptions.txt @@ -0,0 +1,10 @@ +204285.jpg A low-resolution image of hot and sour soup in a white bowl reveals a dark, glossy broth with visible cabbage and green herbs, set atop a doily on a white plate, suggesting a restaurant dining setting with faint hints of glassware in the background. +2495594.jpg The hot and sour soup in the image has a glossy, dark brown surface with visible strips of tofu and vegetables, viewed from a slight overhead angle, in a white bowl with blue decorations placed on a saucer against a dark wooden table with a patterned red placemat beneath. +975712.jpg This hot and sour soup appears in a white bowl with a rich brown broth speckled with light egg ribbons and bamboo shoots, viewed from a top-down angle on a glossy maroon table, featuring a gray ladle immersed in the soup. +197887.jpg The hot and sour soup appears in a white bowl, displaying a rich, reddish-brown broth with visible chunks of tofu, a garnish of fresh cilantro and chopped green onions on top, set against a wooden table providing a warm, contrasting background. +2528354.jpg The hot and sour soup in the low-resolution image is served in a white foam bowl, featuring a rich, dark brown broth with scattered chunks of tofu and vegetables, viewed from above with a plastic spoon resting on the surface and a crumpled, translucent plastic wrap in the background. +552921.jpg A ceramic bowl containing dark brown, slightly thick soup with visible bits of white tofu and red chili flakes is placed on a white saucer with a spoon, set against a wooden table background. +3007725.jpg The low-resolution image shows a bowl of dark reddish-brown hot and sour soup with visible sliced green onions and bamboo shoots, viewed from above against a warm, dimly lit background. +209469.jpg A bowl of dark brown hot and sour soup is viewed from a slightly elevated angle, showing visible chunks of tofu and strands of egg with a shiny, glistening surface; it's placed against a wooden table background with a white napkin partially in view. +1954758.jpg The hot and sour soup is seen from above, featuring a rich, dark brown broth with visible egg ribbons and thin mushroom slices floating on the surface, accompanied by a sprig of green parsley, all set against a neutral, untextured background. +2531145.jpg The hot and sour soup in the image appears to have a rich, dark brown broth with scattered lighter beige ingredients, seen from an overhead angle in a plain white bowl, with noticeable floating strips and chunks indicating a varied texture. diff --git a/utils/area/descriptions/Food/generated_descriptions/hot_dog_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/hot_dog_descriptions.txt new file mode 100644 index 0000000..00c25da --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/hot_dog_descriptions.txt @@ -0,0 +1,10 @@ +1322860.jpg The hot dogs, viewed from above, rest in a stainless steel pan with a glossy, browned exterior and are garnished with a small sprig, surrounded by a commercial display with various bread rolls and pastries in the background. +2541219.jpg The hot dog is positioned in a soft, glossy, and lightly browned bun, topped with a drizzle of ketchup and garnished with small green bits, resting on a pale green tray. +248122.jpg A hot dog in a partially open foil wrapper, topped with yellow mustard and ketchup, with a slightly toasted bun, is held in a hand against a concrete background. +1982180.jpg The hot dog, viewed from a slightly elevated angle, features a lightly toasted bun with a grilled sausage topped with yellow mustard, diced onions, and green relish, set on a colorful printed paper wrapper with blue and orange text and graphics. +1382254.jpg The hot dog features a glossy, reddish-brown sausage topped with crispy bacon and shredded cheese, positioned vertically in a toasted bun, accompanied by a dill pickle, chili in a small square bowl, and mustard in a round container, all set on a white plate with a stainless steel knife. +1948143.jpg A low-resolution image shows a hot dog in a white bun topped with shredded lettuce and drizzled with red sauce, held over a textured stone or concrete pavement, providing a city sidewalk backdrop. +1945783.jpg A vibrant hot dog layered with shredded yellow cheese, pickled peppers, and greens is presented in a white paper tray on a marbled brown surface, featuring a background of a crumpled napkin and snack packaging. +530316.jpg Two hot dogs in soft, pale buns are topped, one with a creamy, uneven coleslaw and the other with crisp, light sauerkraut, resting on a sheet of translucent paper against a dark speckled surface. +2848330.jpg The hot dog is viewed from above with a glossy sausage nestled in a lightly browned bun, topped with caramelized onions, surrounded by thick-cut fries on a dark plate beside creamy sauce and a fresh salad on the table. +388733.jpg A grilled hot dog with a reddish-brown hue is nestled in a lightly toasted bun, topped with translucent sautéed onions and bits of mustard seeds, all served on a blue and white patterned plate against a muted tabletop surface. diff --git a/utils/area/descriptions/Food/generated_descriptions/huevos_rancheros_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/huevos_rancheros_descriptions.txt new file mode 100644 index 0000000..1f52c5b --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/huevos_rancheros_descriptions.txt @@ -0,0 +1,10 @@ +2533953.jpg Huevos rancheros with vibrant red salsa surrounding a tortilla topped with a mix of diced tomatoes and onions, drizzled with a light-colored sauce, viewed from above on a white plate against a wooden background. +691106.jpg A close-up view of huevos rancheros reveals a warm orange and yellow color palette with the soft texture of eggs, creamy white sour cream, and a vibrant red sauce, accompanied by crispy, golden-brown potatoes, all served on a white plate. +1017956.jpg A plate of huevos rancheros is presented from a three-quarters viewpoint, showcasing sunny-side-up eggs smothered in a chunky red salsa with visible green pepper specks, accompanied by creamy refried beans and a mound of orange rice on a white plate, set against a blurred dining background. +392763.jpg The huevos rancheros features poached eggs topped with a red salsa on crisp tortillas, surrounded by melted cheese and refried beans, garnished with avocado slices and roasted potato chunks, all set against a wooden table background. +2113074.jpg On a rustic wooden table, this low-resolution huevos rancheros displays two sunny-side-up eggs with runny yolks over a mix of red and green salsa and melted cheese, all on a large tortilla, accompanied by a glass of orange juice and utensils in the background. +1355579.jpg A top-down view of huevos rancheros shows vibrant red salsa over eggs, garnished with crumbled white cheese, chopped green cilantro, and onion, with drizzles of white crema on a rustic plate and a slightly blurred background. +173964.jpg A plate of huevos rancheros featuring light golden tortillas folded over scrambled eggs, topped with chunky red salsa, white crumbled cheese, and accompanied by a portion of dark black beans, set on a white plate against a stainless steel surface with visible cutlery and a slightly cluttered background. +2092528.jpg A plate of huevos rancheros is shown from a top-down viewpoint, featuring two fried eggs with creamy white edges and soft yolks on a bed of mixed reddish-brown beans and melted cheese, garnished with a sprig of parsley on a dark blue rimmed plate. +2447202.jpg A plate of huevos rancheros is presented with a central focus on creamy, soft yellow scrambled eggs topped with vibrant red salsa and dollops of white sour cream and green guacamole, set against a rich, textured red sauce sprinkled with crumbled cheese, all on a simple white plate background. +2977349.jpg On a vibrant green plate, the huevos rancheros are topped with melted cheese and vibrant red and green salsa, alongside creamy refried beans, set against a wooden table with condiment containers in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions/hummus_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/hummus_descriptions.txt new file mode 100644 index 0000000..a17efab --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/hummus_descriptions.txt @@ -0,0 +1,10 @@ +1541723.jpg The hummus appears creamy and light beige with a smooth texture, served in an elongated white dish from a side angle, topped with olive oil, parsley, and paprika, against a reflective table surface with a blurred indoor setting. +1000314.jpg A mound of creamy, beige hummus with a slightly coarse texture is presented on a square white plate, garnished with thin onion slices and herbs, surrounded by pita bread slices and tomato wedges, with a spoon inserted at an angle. +3224947.jpg The hummus appears creamy with a light beige color, textured with visible specks of spices and garnished with parsley, viewed from a slightly elevated angle within a plastic container, with paprika and olive oil pooled on top, set against a blurry background of papers and a blue surface. +3652368.jpg The hummus appears creamy yellow with a smooth texture, garnished with olive oil, paprika, and chopped parsley, viewed from above on a white plate against a tiled background. +3904863.jpg A plate of creamy, light beige hummus garnished with olive oil, paprika, and chopped parsley forms a crater-like presentation, set on a slightly dark wood surface with a blurred, similar dish visible in the foreground. +1346698.jpg The hummus is a creamy, light beige mixture with a smooth texture, viewed from an angled, slightly above perspective, topped with a drizzle of olive oil, a sprinkle of red paprika, and a single dark olive, served in a white, shallow dish on a white tablecloth with silverware and a napkin visible in the dimly lit background. +61716.jpg The hummus is off-white and smooth, served in a small, round, brown ceramic pot, viewed from above at a slight angle, placed on a wooden board alongside triangular, lightly toasted flatbreads and a garnish of olives, cucumbers, and tomatoes, all against a dark, indoor dining setting. +441800.jpg The hummus appears creamy and beige with a slightly coarse texture, topped with a sprinkle of red paprika and a pool of olive oil, viewed from above on a white plate garnished with parsley and a dusting of spices around the edges. +117854.jpg A creamy, beige hummus with a smooth texture is swirled in a shallow bowl, topped with red paprika and fresh green parsley, set against a background featuring plates and a basket on a sunlit table. +3864242.jpg The hummus appears creamy and smooth with a pale, off-white color, drizzled with olive oil and garnished with black specks, presented on a white plate against a mosaic-patterned table. diff --git a/utils/area/descriptions/Food/generated_descriptions/ice_cream_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/ice_cream_descriptions.txt new file mode 100644 index 0000000..5a382af --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/ice_cream_descriptions.txt @@ -0,0 +1,10 @@ +3136770.jpg A creamy, slightly off-white ice cream with visible specks is scooped in a relaxed heap atop a brown scoop, served in a branded cup with blue text, set against a blurry, neutral background. +1954378.jpg A bowl of ice cream featuring scoops of yellow and chocolate ice cream, topped with colorful sprinkles and mini marshmallows, set on a background of Japanese cuisine-themed text on the table surface. +3112996.jpg Two scoops of ice cream, one chocolate and one strawberry, sit partially melted in a glass dish with a dollop of whipped cream on top and drizzles of chocolate syrup, against a vibrant pink tabletop background. +2120757.jpg The image shows a cone of ice cream with three visible scoops, featuring a chocolate scoop with a glossy, rich texture, a beige scoop likely resembling a creamy or nutty flavor, and a smaller light green scoop possibly suggesting mint, all held by hand with a blurred indoor background. +2368648.jpg The ice cream features a creamy beige scoop alongside a fluffy white scoop, set in a red cup with a blue spoon, placed on a textured granite surface in a sunlit outdoor setting. +794398.jpg A glass parfait dish presents a layered dessert with mint green, brown, and cream colors topped with a generous dollop of whipped cream, set on a table in a modern café with people in the background. +243400.jpg The ice cream consists of scoops in creamy beige and speckled white colors, topped with a gingerbread cookie and garnished with two colorful, translucent sticks, situated on a metal table background in a corner café setting. +5762.jpg Nine distinct trays of ice cream with swirling textures and a variety of colors such as rich chocolate brown, creamy white with scattered dark chunks, and vibrant swirls of red and white, are displayed in a glass case with labels, surrounded by a metallic frame and reflective surface. +2378502.jpg A scoop of pale green ice cream with a smooth texture sits atop a ornate silver dish, viewed from a slightly elevated angle on a light-colored table. +1262551.jpg The ice cream in the image features three distinct scoops in a cup: a pale yellow scoop with a creamy, slightly speckled texture, a bright orange scoop with a smooth, vibrant texture, and a grayish-purple scoop with a speckled, granulated appearance, set against a plain white background and viewed from an overhead angle with a translucent yellow spoon inserted. diff --git a/utils/area/descriptions/Food/generated_descriptions/lasagna_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/lasagna_descriptions.txt new file mode 100644 index 0000000..196cb14 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/lasagna_descriptions.txt @@ -0,0 +1,10 @@ +12695.jpg A portion of lasagna with a golden-brown and slightly crispy top layer, topped with melted cheese and parsley, is served on a decorative, floral-patterned plate set against a checkered tablecloth backdrop, with a vibrant red tomato sauce surrounding the pasta layers. +3146645.jpg A richly layered piece of lasagna topped with melted cheese and sprinkled herbs, viewed from above, is set on a white plate amidst a dimly lit dining setting with a candle, red-checked cloth, and bowls of complementary sides. +2334235.jpg A low-resolution image shows a lasagna with a slightly golden, melted cheese topping speckled with green herbs, featuring visible layers of red sauce underneath, placed on a white plate. +1131130.jpg The low-resolution image depicts a close-up view of a lasagna with a rich red tomato sauce on top, sprinkled with grated cheese and herbs, served in a white ceramic dish against a dark tabletop background with a pepper shaker and glass nearby. +3579056.jpg A creamy, slightly browned lasagna with a glossy texture is presented in an oval dish, accompanied by a pile of fries and a side salad, on a wooden table with folded napkins and a glass near the background. +3349954.jpg The lasagna in the image appears golden-brown with a crispy, slightly charred top, its layers visible through the outer edges, and is placed in an oval glass dish set on a wooden surface with a dark cloth background. +3158812.jpg The lasagna appears to have a rich reddish-brown hue with a crumbly top layer, seen from an overhead angle, accompanied by a colorful salad with leafy green textures, situated on a white plate against a striped fabric background. +1214362.jpg A plate of lasagna with layers smothered in red tomato sauce and garnished with grated cheese and herbs, viewed from above on a white plate with utensils, set against a dimly lit wooden table. +2670894.jpg The lasagna is golden-brown with a bubbly, melted cheese texture, viewed from an overhead angle in a round terracotta dish with a hint of herbs on top and set against a dimly lit dining environment with a white napkin and yellow paper in the background. +2386254.jpg A heaping portion of lasagna is shown from a top-side view, featuring layers of rich red tomato sauce, melted white cheese, and a sprinkle of grated cheese on a decorative ceramic plate with a blurred, warm-toned background. diff --git a/utils/area/descriptions/Food/generated_descriptions/lobster_bisque_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/lobster_bisque_descriptions.txt new file mode 100644 index 0000000..d6e5cad --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/lobster_bisque_descriptions.txt @@ -0,0 +1,10 @@ +3312963.jpg A creamy, light orange lobster bisque with a slightly glossy texture is served in a white bowl, garnished with small chunks of lobster in the center, set on a wooden table alongside a partially visible bread roll and a small dish. +1333468.jpg The lobster bisque appears creamy with a rich orange hue, dotted with visible chunks of lobster meat, garnished with green herbs, and presented in a shallow white bowl against a softly lit background. +2198032.jpg The lobster bisque appears as a creamy, orange-hued soup with a smooth texture, topped with small chunks of meat, served in a white plate against a dark wooden table background. +1176751.jpg The lobster bisque appears as a creamy, light brown soup with a dollop of lighter cream in the center, served in a black bowl on a white napkin on a wooden table, viewed from above. +910320.jpg A creamy, pale orange lobster bisque topped with a sprinkle of black pepper and a single green herb leaf is presented in a white speckled bowl against a softly lit table setting. +1645751.jpg A creamy beige lobster bisque is served in a round bread bowl, topped with a bread lid, placed on a white plate with a metal spoon inserted, situated on a white tablecloth with a glass and additional dishware in the background. +2108010.jpg The lobster bisque appears creamy and light orange with a smooth texture, garnished with green herbs, displayed in an oval white bowl on a dark textured placemat, accompanied by a spoon on a napkin. +3780587.jpg A creamy, light orange lobster bisque with a smooth texture is served in a white disposable cup, set against a paper-lined surface, accompanied by what appears to be a partially visible roll in the background. +2290595.jpg A creamy, warm-toned bisque with a smooth texture is served in a dark bowl, garnished with a sprinkle of green herbs, accompanied by slices of crusty bread on a beige tabletop. +2866354.jpg A creamy orange-colored lobster bisque with visible chunks of ingredients is served in a black bowl, garnished with herbs and placed on a black saucer with a brown wooden table background. diff --git a/utils/area/descriptions/Food/generated_descriptions/lobster_roll_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/lobster_roll_sandwich_descriptions.txt new file mode 100644 index 0000000..1312361 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/lobster_roll_sandwich_descriptions.txt @@ -0,0 +1,10 @@ +700390.jpg The lobster roll sandwich features vibrant pink and creamy white lobster pieces with a slightly glossy texture nestled into a lightly toasted bun, viewed from a close-up angle with an out-of-focus light background, and is speckled with green herbs for garnish. +2495013.jpg A warm, toasted bun envelops a generous serving of pink and white lobster chunks mixed with a creamy dressing, all atop a textured white paper surface viewed from a slightly angled, overhead perspective. +837240.jpg A lobster roll sandwich with orange-pink, chunky lobster meat atop crisp green lettuce is photographed at a slight angle on a patterned plate, accompanied by creamy coleslaw and crispy onion rings in the background. +94234.jpg A lobster roll sandwich with a pile of pink and white lobster meat on a toasted bun, viewed from an angled top perspective, set inside a brown cardboard container on a weathered wooden table and accompanied by a travel brochure partially shown in the foreground. +712123.jpg In a slightly top-down view, the lobster roll sandwich features creamy white chunks of lobster nestled in a warm, toasted bun, topped with fresh green lettuce leaves and surrounded by a heaping portion of golden-brown shoestring fries on a white plate, set against a dimly lit restaurant background. +2143852.jpg The lobster roll sandwich features a lightly toasted brioche bun filled with chunks of pinkish lobster meat tossed with visible bits of lettuce, placed on a white plate next to a rustic brown paper bag overflowing with crispy golden fries, set in a casual dining environment. +6830.jpg A lobster roll sandwich is presented from a top-down angle, showcasing pink-red lobster meat nestled in a lightly toasted brown bun, with the background blurred to reveal someone holding it over a checkered floor. +191074.jpg The lobster roll sandwich, viewed from above on a checkered tray, features chunky red lobster pieces nestled in a lightly toasted bun, topped with chives and accompanied by a creamy slaw, all set against a wooden table background. +2573471.jpg A lobster roll sandwich with pink and white chunks of lobster meat rests in a golden brown toasted bun on a triangular plate with visible textures of shredded cabbage slaw, crispy sweet potato fries, and a metal cup of dipping sauce, all set on a speckled stone table with a drink in the background. +742829.jpg The lobster roll sandwich is shown from a top-down perspective, featuring lightly toasted bread filled with pink and white lobster chunks mixed with visible green herbs, accompanied by a side of crinkled potato chips, a lemon wedge, and a small cup of creamy sauce, all set against a textured, grayish countertop background. diff --git a/utils/area/descriptions/Food/generated_descriptions/macaroni_and_cheese_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/macaroni_and_cheese_descriptions.txt new file mode 100644 index 0000000..f21ce9f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/macaroni_and_cheese_descriptions.txt @@ -0,0 +1,10 @@ +1796287.jpg The macaroni and cheese appears golden brown with a creamy texture, topped with crispy breadcrumbs and green garnishes, presented in an oval white dish on a dark wooden table background. +1812806.jpg The macaroni and cheese is topped with a golden crumb layer, featuring creamy yellow sauce enveloping the pasta, with visible green flecks, captured from an overhead angle in a light-colored dish with a soft-focus surrounding. +925743.jpg The macaroni and cheese appears vibrant orange with a creamy texture, featuring spiral pasta in a close-up view within a white bowl against a slightly blurred background. +2502100.jpg The macaroni and cheese appears creamy with a golden-brown crust sprinkled with herbs, viewed from above in a white dish, surrounded by a pale background. +1863832.jpg Creamy yellow macaroni and cheese with a smooth texture fills a white bowl, viewed from above against a vibrant orange tablecloth, partially accompanied by a silver spoon. +422805.jpg A baked macaroni and cheese dish with a golden-brown, crispy topping sits in a black cast-iron skillet on a white plate, surrounded by cutlery on a wooden table with visible menu text underneath. +3095016.jpg The macaroni and cheese appears creamy and smooth with a glossy, light orange surface, viewed from above in a white dish against a dark background, with a fork poised over the pasta adding a dynamic element. +3750089.jpg A serving of macaroni and cheese with a golden-brown crispy top, speckled with a generous dusting of pepper, viewed from above on a red plate, set against a dark wood-grain table. +179639.jpg The macaroni and cheese on a white plate appears creamy with a rich golden-yellow hue, topped with a sprinkle of black pepper and breadcrumbs, viewed from an overhead angle with a plain background showing part of a fork resting on the plate. +1162457.jpg The macaroni and cheese is baked with a golden-brown, crispy cheese crust and visible pieces of bacon, served in an oval white dish with a spoon beside it, against a neutral-toned background. diff --git a/utils/area/descriptions/Food/generated_descriptions/macarons_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/macarons_descriptions.txt new file mode 100644 index 0000000..35b5494 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/macarons_descriptions.txt @@ -0,0 +1,10 @@ +523709.jpg The macarons, viewed from a slight angle on a branded paper, display smooth, glossy textures with one being light green and the other brown against a softly blurred, gold-accented background. +112365.jpg Two macarons are displayed on a neutral surface, with one in a rich purple hue and a slightly rough texture featuring a partially visible sheen, while the other is an ochre shade with a smooth texture, both highlighting the characteristic ruffled edges of the cookies. +2812388.jpg The macarons, viewed from above in a display case, showcase a variety of pastel and bold tones with smooth, slightly textured shells, surrounded by clear dividers with a perforated metal backdrop and labeled cards. +3285689.jpg A row of pastel-colored macarons, including yellow, green, brown, and pink, with smooth, slightly cracked textures, is stacked diagonally within a white box, set against a dark, blurred background. +1098925.jpg Two macarons, one pale yellow and the other white, are positioned side by side in a white box with a red circular label reading "SUGAR FACTORY," showcasing smooth, rounded shells with subtle textural variance. +2272089.jpg Two vibrant yellow macarons and two speckled brown macarons with a pink-tinged one are aligned in a rectangular brown box against a blurry background of a bag and a hand, with their textured tops and smooth fillings slightly visible from a top-side angle. +625572.jpg A variety of macarons in yellow, purple, red, and pink hues are arranged on a white plate, each with a smooth, glossy texture and speckled toppings, set against a neutral, off-white background. +2446542.jpg A low-resolution image shows four macarons viewed from above, displaying a cracked red, smooth brown, bright yellow, and vibrant green macaron all placed on a black, slightly transparent plastic tray with visible textures, highlighting their classic round shapes and creamy fillings between two shells. +3247436.jpg The image shows an assortment of macarons viewed from an angled perspective inside a clear box, featuring pink, cream, and brown smooth-textured pastries with distinct ridges on their edges set against a blurred, colorful background. +1878394.jpg The macarons are presented in a vertical arrangement on a plain white surface, featuring a variety of colors including peach, brown, lime green, pink, and vibrant red, each with a smooth, slightly glossy texture and a visible creamy filling sandwiched between the two halves. diff --git a/utils/area/descriptions/Food/generated_descriptions/miso_soup_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/miso_soup_descriptions.txt new file mode 100644 index 0000000..51b600b --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/miso_soup_descriptions.txt @@ -0,0 +1,10 @@ +3201095.jpg The miso soup appears as a smooth, pale beige liquid with a slight sheen, viewed from a top-down angle inside a white bowl, placed on a dark wooden surface, with no visible ingredients or garnish floating. +1524969.jpg In a maroon bowl, the light brown miso soup has a slightly grainy texture with visible green onion slices floating on the surface, captured from an overhead angle against a subtle wooden background. +2775242.jpg A pale, lightly clouded broth with green onion slices is seen top-down in a white bowl on a dark table, with a white spoon partially submerged. +930270.jpg A bowl of pale yellow miso soup with a smooth texture, viewed from above, featuring a dark spoon partially submerged and set against a wooden table background with soft lighting. +3688952.jpg A creamy beige miso soup in a red and black bowl is viewed from above, with its smooth surface punctuated by soft chunks of tofu and faint green specks, set atop a white plate against a dark background. +120774.jpg In the image, the miso soup features a light brown, slightly cloudy broth with floating pieces of white tofu and green scallions, viewed from a top-down angle against a speckled granite surface, with a silver spoon resting on the bowl's rim. +2815048.jpg The miso soup appears pale yellow with bits of green from scallions, has a light cloudy texture with tofu chunks, is viewed from above, and rests on a metallic stove top. +3401940.jpg A bowl of pale yellow miso soup with a smooth texture and a few green garnish pieces, seen from a slightly elevated, side angle, in a red and black bowl resting on a wooden surface with a blurred background. +1900168.jpg A bowl of light brown miso soup sits on a wooden surface, viewed from above, featuring visible floating ingredients like chopped green onions and tofu bits, with a black spoon resting on the bowl's edge. +2398902.jpg A red bowl containing light tan, slightly grainy liquid with a red spoon partially submerged, set against a dark, slightly blurred wooden tabletop background. diff --git a/utils/area/descriptions/Food/generated_descriptions/mussels_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/mussels_descriptions.txt new file mode 100644 index 0000000..a80827e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/mussels_descriptions.txt @@ -0,0 +1,10 @@ +3824105.jpg The mussels appear brownish with glossy, smooth shells, displayed open on a white plate from an overhead view, accompanied by vibrant green broccoli and slightly visible red and yellow peppers, set against a patterned tablecloth. +2685468.jpg The mussels appear dark and glossy with a hint of iridescence, nestled in a white bowl with lemon slices and herbs, viewed from a slightly elevated angle, all placed on a plate alongside golden-brown toasted bread on a wooden table background. +409671.jpg Eight baked mussels with brown, crispy tops and greenish shells are arranged on a white plate, accompanied by shredded white radish and a reddish-orange garnish, set against a plain background. +667265.jpg The mussels appear glossy with a mix of dark bluish-black shells and exposed pale orange-yellow interiors, arranged in a shallow white ceramic bowl with a slice of lemon and some greenish hues visible, indicating a freshly cooked state. +2391213.jpg The mussels are dark-shelled with a glossy texture, some slightly open revealing orange insides, topped with bits of chopped garlic and herbs, presented in a dark bowl against an unfocused background. +1667722.jpg The image shows an open mussel with vibrant orange flesh accented by dark shells, topped with finely chopped translucent onions, resting on a textured brown plate that provides a rustic backdrop. +1558676.jpg In a top-down view, the mussels appear black and glossy with a subtle orange hue peeking through slightly open shells, nestled in a rich, chunky tomato sauce with visible herbs, set against a metallic cookware backdrop. +416656.jpg The mussels, predominantly dark blue and shiny with touches of orange visible through partially opened shells, are presented steaming in a metal pot garnished with herbs and a lemon slice, set against a dim, ambient dining setting. +3771922.jpg The mussels appear to be a glossy dark blue color with a slightly iridescent texture, open and stacked in a white bowl against a backdrop of other dishes, with some vivid green and orange pieces suggesting vegetable garnishes visible among them. +2759930.jpg Two mussels are presented open on a white plate, topped with red chunky sauce and garnished with lettuce, showcasing their smooth, glossy sheen and dark edge against a softly blurred, dark stone background. diff --git a/utils/area/descriptions/Food/generated_descriptions/nachos_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/nachos_descriptions.txt new file mode 100644 index 0000000..92b1f8d --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/nachos_descriptions.txt @@ -0,0 +1,10 @@ +164868.jpg The nachos are topped with melted cheese and jalapeños, appearing in a slightly elevated view, set against a dark wooden table with sides of salsa, guacamole, and sour cream in small white cups nearby. +2871066.jpg This low-resolution image shows a plate of nachos topped with melted yellow cheese, dollops of red salsa, sliced black olives, pickled jalapeños, chopped white onions, and a generous scoop of white sour cream, viewed from an above angle, on a table setting with scattered napkins and a soft focus background. +436167.jpg Melted yellow and orange cheese drapes over a plate of nachos with a side of sour cream and salsa, displayed against a wooden table background, showcasing a mix of crispy and soft textures from a low angle view. +2435905.jpg A white foam tray contains a pile of nachos with golden-yellow corn chips topped with melted cheese, green guacamole, diced tomatoes, sliced mushrooms, and white sour cream, all on a brown wooden table. +1632465.jpg A plate of nachos featuring golden-brown tortilla chips covered in melted yellow cheese, topped with diced red tomatoes, sliced jalapeños, and bits of purple onion, is served alongside a red salsa and white sour cream, all set on a dark-colored surface. +3243231.jpg Golden-brown tortilla chips are generously topped with chunky red salsa, creamy green guacamole, and a hint of melted cheese, viewed from an overhead angle in a silver foil container on a light wooden background. +3032421.jpg A black plate holds nachos topped with melted yellow cheese, sliced jalapeños, red peppers, olives, onions, and a dollop of white sour cream, set on a wooden table with utensils and a wine glass in the background. +3873751.jpg A plate of nachos topped with melted orange cheese, jalapeño slices, diced tomatoes, black beans, and a dollop of white sour cream and green guacamole, viewed from a slightly elevated angle against a simple white tablecloth background. +1558999.jpg Crispy golden tortilla chips are piled high, topped with a blend of shredded cheese, a dollop of white sour cream, chunky tomato-based sauce, and diced vegetables, set against a casual dining tray backdrop. +552246.jpg A colorful mound of nachos is topped with green, red, and beige chips, adorned with a generous layer of melted cheese, jalapeños, diced tomatoes, corn, and black beans, set on a white plate with a small bowl of reddish-brown salsa in the foreground. diff --git a/utils/area/descriptions/Food/generated_descriptions/omelette_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/omelette_descriptions.txt new file mode 100644 index 0000000..c78fd95 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/omelette_descriptions.txt @@ -0,0 +1,10 @@ +2786843.jpg The omelette appears golden brown with a slightly uneven texture, viewed from an overhead angle, placed on a white plate alongside cubed roasted potatoes and toasted bread, set against a wooden table backdrop with a small round dish containing rectangular packets. +660189.jpg The omelette is a pale yellow with a smooth, slightly glossy texture, sprinkled with black pepper, and viewed from an oblique angle on a white plate with a green table and condiments in the background. +2341366.jpg The omelette is a pale yellow, thin, partially folded crepe-like structure with slightly browned edges, placed on a patterned plate with toast and diced potatoes, alongside a slice of orange, against a blurred, blue-toned background. +3623911.jpg The omelette is a light golden-yellow color with a slightly glossy, folded texture, viewed from above on a white plate, accompanied by toasted english muffins, roasted potatoes, and a small metal cup of ketchup in a sunlit setting. +1631980.jpg The omelette appears golden and slightly browned, topped with fresh tomato slices and grated cheese, viewed from above on a white plate with a garnish on the side, set against a wooden table background accompanied by toast and a branded red cup. +556888.jpg This omelette appears to have a golden-brown, slightly crispy texture with dark spots, served in a skillet on a wooden surface alongside rye bread slices, against a tiled background, topped with chives and visible mushrooms. +2682612.jpg The omelette is bright yellow with a slightly fluffy texture, partially folded over visible vegetables, and is presented on a white plate with a garnish of leafy greens, diced red peppers, and small shrimp in a dining setting. +2729902.jpg The omelette appears pale yellow with a slightly uneven, fluffy texture, viewed from above on a white plate, alongside refried beans topped with white cheese and tortilla chips, and a crispy triangular hash brown. +1747789.jpg The omelette is a golden yellow with a slightly folded appearance, showing a smooth texture, positioned on a white plate alongside crispy brown potato wedges with a reflective tabletop as the background. +196663.jpg The omelette appears fluffy and dome-shaped with a pale yellow color and specks of red and green, set on a white plate against a tabletop background with a blurry assortment of condiments and glassware. diff --git a/utils/area/descriptions/Food/generated_descriptions/onion_rings_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/onion_rings_descriptions.txt new file mode 100644 index 0000000..9ef6cfa --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/onion_rings_descriptions.txt @@ -0,0 +1,10 @@ +1243348.jpg Golden-brown onion rings are arranged in a pile on a white plate next to a small ramekin of white dipping sauce, with a slightly blurred background suggesting a casual dining setting. +2574696.jpg Golden-brown and crispy onion rings are piled closely together, with a visible crunchy texture and a background featuring a dipping sauce container. +1128896.jpg Golden-brown onion rings with a crispy texture are stacked vertically in a metal container lined with white paper, surrounded by a striped tablecloth and condiments in dim lighting. +2428943.jpg Golden-brown onion rings with a crispy texture are placed on a white rectangular plate, viewed from a slightly elevated angle, accompanied by sauces in a dual-compartment dish and garnished with colorful vegetables on a wooden table background. +1440584.jpg Golden-brown onion rings sit in a stack with a crispy texture, viewed from an angled close-up against a partially blurred warm-colored background featuring hints of yellow and reflective surfaces. +113634.jpg Golden-brown onion rings with a crispy texture are piled in a black, ornate basket on parchment paper, placed on a white tablecloth in a dining setting. +3163341.jpg Golden-brown onion rings with a crispy, batter-coated texture are piled together on a light-colored tabletop, exhibiting a slightly oily sheen and interlocking shapes. +798980.jpg Thin, golden-brown onion rings with a crispy, seasoned texture are piled close together in the foreground against a blurred, warm-toned background surface. +1467539.jpg Golden-brown onion rings with a crispy, uneven texture are stacked on a crumpled white paper background, showcasing their round shape and fried appearance from a slightly elevated angle. +253986.jpg The onion rings are golden-brown and crispy, stacked in a pyramid on a white plate with a lace doily, surrounded by dining items in a dimly lit restaurant setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/oysters_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/oysters_descriptions.txt new file mode 100644 index 0000000..303d0c3 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/oysters_descriptions.txt @@ -0,0 +1,10 @@ +1109333.jpg Three oysters with grayish-brown, glossy interiors and wavy shells are presented on a bed of crushed ice, topped with a minced garnish, with some green ribbon-like garnish visible in the background. +1296284.jpg The oysters, presented open-faced on a bed of crushed ice, display a muted grayish-white hue with a glossy, wet appearance, surrounded by dark, ruffled edges; they are accompanied by silver cups of sauce and a lemon wedge, all set upon a metallic platter. +1038150.jpg The close-up image shows an open oyster with a creamy white and mottled gray shell, topped with chopped garlic, herbs, and red seasoning on a blurry textured surface background. +2488355.jpg The oysters appear grayish-white with rough, irregular shells on a white plate, surrounded by seaweed and lemon wedges, with a central metal dish of red sauce, set on a dark wooden table. +1365724.jpg The oysters appear gray and white with rough, irregular shells, served on a round metal tray with ice, accompanied by lime wedges and a cup of red cocktail sauce, viewed from above. +281932.jpg Two opened oysters on a bed of ice exhibit smooth, glossy beige interiors with irregular edges and lightly mottled brown and white shells, viewed closely from above on a metal platter. +3200508.jpg The oysters are displayed on a white plate, showcasing their rough, gray-hued shells with a glossy, black interior, positioned in a dimly lit dining setting with a loaf of bread and glassware in the background. +2667559.jpg The low-resolution image shows oysters with a grayish-white and ridged surface, placed open-side up on a bed of ice, surrounded by small metal cups containing reddish sauces and garnishes, including a lemon wedge. +3150973.jpg The oysters, displayed open on a bed of crushed ice, have smooth, glossy shells with a blend of white and grey hues, revealing fleshy interiors that are creamy with subtle brown edges, set against a metallic serving tray. +3368090.jpg The oysters are displayed open on a bed of crushed ice in a metallic serving dish, with their rippled, beige and dark shells contrasting against the glistening ice, alongside a slice of lemon and dipping sauces, under warm ambient lighting in a restaurant setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/pad_thai_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/pad_thai_descriptions.txt new file mode 100644 index 0000000..baa6e7d --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/pad_thai_descriptions.txt @@ -0,0 +1,10 @@ +1958944.jpg A low-resolution image shows Pad Thai with light brown noodles, accented by green onions and white bean sprouts on top, garnished with a wedge of lime, crushed peanuts, and a hint of dark red chili flakes, served in a white bowl on a beige surface with a blurred café-like setting in the background. +1936973.jpg This pad thai features light brown, glossy noodles intertwined with green onions and shrimp, contrasted against a blurred white plate, with vibrant purple cabbage and carrot shreds and a visible lime wedge adding color and texture. +3386374.jpg The pad thai features glossy, stir-fried noodles with a mix of light brown, red, and green hues from bell peppers and scallions, accompanied by a vibrant garnish of cilantro and lime wedges, placed on a white square plate beside a ceramic bowl with a blue floral pattern. +1401165.jpg The pad thai appears as a vibrant mix of light brown noodles with a glossy texture, topped with crushed peanuts and accompanied by white bean sprouts, captured in a close-up shot with a blurred background, highlighting a wedge of lime. +132373.jpg The pad thai, viewed from a slight side angle, displays a light beige hue with a texture of thin rice noodles topped with a sprinkle of crushed peanuts and visible garnishes, set against a blurred indoor dining backdrop with a hand reaching towards the plate. +640468.jpg The pad thai is presented on a white plate, showcasing a mix of light brown noodles and white bean sprouts garnished with peanuts and green herbs, while a lime wedge and small dish of red sauce sit beside in an indoor setting. +1337180.jpg The pad thai features golden-brown noodles topped with crushed peanuts, shrimp, and a thin layer of scrambled egg, set on a white plate with green pattern edges, garnished with cilantro sprigs. +157270.jpg A plate of pad thai featuring a mound of glossy, brown noodles intermixed with bean sprouts, surrounded by garnishes of shredded carrots, purple cabbage, and pale green cabbage, set against a simple restaurant table background. +1102632.jpg A vibrant pad thai viewed closely from above showcases golden-brown noodles topped with crunchy crushed peanuts, interspersed with fresh green scallions and white bean sprouts, all set against a vibrant red dish background. +2354853.jpg A close-up view of pad thai reveals a mix of light brown noodles underneath a heap of pale bean sprouts, with hints of green vegetables and a wedge of lemon in a dimly lit setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/paella_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/paella_descriptions.txt new file mode 100644 index 0000000..3c98788 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/paella_descriptions.txt @@ -0,0 +1,10 @@ +863973.jpg The paella is a vibrant mix of orange rice and dark shellfish set on a white plate, garnished with bright green parsley and a lemon wedge, with a wooden table and drinks visible in the dimly lit background. +1462481.jpg This paella features a textured mixture of yellow rice with scattered peas, red bell peppers, and prominently displayed mussels atop, set on a decorative plate with plantain slices on a dark stone surface. +370056.jpg A colorful paella featuring a rich tomato-red blend of seafood and garnished with fresh greens, viewed from a slightly elevated angle in a white shallow dish against a subtle wooden background. +1730796.jpg The paella features a vibrant mix of golden-yellow rice with visible chunks of seafood, scattered vegetables, and rings of purple onion on a decorative plate with a distinctively ornate design in the background. +2436126.jpg The paella in the image features vibrant yellow rice with a slightly fluffy texture, topped with scattered green peas and red tomato pieces, along with shellfish and lemon wedges, viewed from a three-quarter angle in a restaurant setting with marble-like table surfaces and a basket of bread in the background. +2646708.jpg A vibrant paella with rich golden-yellow rice adorned with mussels, shrimp, and chorizo slices is presented in a shiny steel pan, with a wedge of lemon prominently placed on top, all set against an indistinct, dimly lit background. +2017739.jpg A close-up view of paella featuring a mix of vibrant green peas, assorted seafood including shrimp and mussels, and red bell pepper pieces amidst a slightly moist, textured yellow rice on a black pan, with a blurred neutral-toned background. +476485.jpg A plate of paella with golden-brown rice contains visible mussels, shrimp, red and green peppers, and a lemon wedge, set on a wooden table with a blue napkin in the background. +312136.jpg This paella, viewed from above, showcases a rich, golden-orange rice base adorned with scattered green peas and a mix of seafood like mussels and shrimp, complemented by two visually striking yellow lemon-wrapped sachets, set against a dimly lit dining table with glasses and subtle decor. +3516612.jpg The paella in the top right section of the image appears colorful with a mix of vibrant yellow rice and red lobster claws, complemented by a seafood garnish, viewed from an overhead angle with additional seafood dishes in a cozy, restaurant-like setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/pancakes_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/pancakes_descriptions.txt new file mode 100644 index 0000000..8d3a6bc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/pancakes_descriptions.txt @@ -0,0 +1,12 @@ +1017278.jpg Golden-brown pancakes with a smooth, slightly glossy texture are topped with melting butter and surrounded by sausages, viewed from above against a white plate background. +2256561.jpg Two light golden-brown pancakes topped with swirls of whipped cream are viewed from a slightly angled top-down perspective, accompanied by crispy bacon on a white plate with a red drink in the background. +2619752.jpg The pancakes appear golden-brown with a slightly uneven texture, topped with glossy, dark berries and a sprinkling of powdered sugar, served on a white and blue-rimmed plate with leafy greens on the side, and photographed from an overhead angle against a contrasting dark surface. +3659207.jpg Golden-brown pancakes with a slightly crispy edge are topped with powdered sugar and a trio of berries, viewed from above on a white plate with a drink on a dark table background. +89431.jpg The pancakes have a golden-brown, crispy edge with a smooth, slightly uneven surface, viewed from a close-up angle on a neutral-toned plate, with condiment containers blurred in the background. +244033.jpg The pancakes are light brown with a dusting of white powdered sugar, topped with a scoop of butter and blueberries, sitting on a white plate against a blurred background of a smiling person and red upholstered seating. +1960560.jpg Fluffy, light golden pancakes topped with a scoop of vanilla ice cream are viewed from a slightly low angle, set against a blurred kitchen background, with scrambled eggs and crispy bacon on the side. +3624365.jpg Golden-brown pancakes with a soft, fluffy texture topped with a scoop of pale yellow ice cream, surrounded by sliced strawberries and a dollop of whipped cream, presented on a white plate with a dark wooden table background. +2644728.jpg The pancakes appear golden-brown with a slightly uneven surface texture, viewed from an angled, top-down perspective on a table setting next to a small metal pitcher and partially eaten food in the background. +3368967.jpg A golden-brown pancake with uneven surface texture is seen in close-up view, drizzled with glossy red syrup, set against a blurred background of a beige table and partially visible plate with food remnants. +746600.jpg Thin, golden-brown folded pancakes with lightly crisped edges are topped with a sprinkle of powdered sugar and a small pile of dark berries, served on a white, angular dish. +3021739.jpg The image shows a stack of light golden-brown pancakes with a smooth, slightly matte texture, viewed from a top-down angle, with a white plate and blurred kitchenware in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions/panna_cotta_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/panna_cotta_descriptions.txt new file mode 100644 index 0000000..67a85b4 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/panna_cotta_descriptions.txt @@ -0,0 +1,10 @@ +3112453.jpg A creamy white panna cotta sits centrally in a dish, topped with a dollop of whipped cream and a thin, crisp pastry strip, surrounded by a glossy caramel-like sauce and small, evenly spaced garnishes, viewed from a top-down perspective on a plain white plate. +16976.jpg Two creamy white panna cotta portions, topped with a glossy dark berry sauce and garnished with fresh leaves, are presented on a white plate with visible sheen and shadows suggesting a low-angle light source. +3220782.jpg A creamy, off-white panna cotta with a smooth and slightly uneven surface is viewed from above at an angle, set in a transparent jar, placed on a napkin over a wooden table with a dimly lit background. +2281287.jpg A creamy, pale panna cotta is topped with a red fruit garnish and surrounded by orange cubes and green leaves, set on an elegant white plate in a softly lit dining environment. +2378558.jpg A panna cotta in a clear glass is topped with vibrant mixed berries and a sprig of mint, presented on a white doily with a red candied apple on a stick resting beside it against a plain table setting backdrop. +1584653.jpg A creamy, white panna cotta sits on a wavy-edged dish, topped with a diagonally placed wafer and drizzled with vibrant red sauce, set against a dimly lit background with a hint of brick texture. +2386381.jpg A jar of panna cotta topped with a rich red sauce sits on a white paper napkin, viewed from a slightly elevated angle, with a dark, blurred background and an open metal clasp. +1560231.jpg A smooth, white panna cotta is viewed from above, surrounded by a pink and orange syrup swirl on a white ceramic plate dusted with powdered sugar. +1767768.jpg A glossy, deep red panna cotta with a smooth surface sits centrally on a plate, surrounded by dollops of cream dusted with cocoa powder, with a dimly lit, somewhat blurred dining setting in the background. +3873789.jpg The panna cotta is smooth and white with a dusting of speckles, topped with a green candle, and surrounded by a vibrant berry sauce on a white plate with "Happy Birthday" written in chocolate. diff --git a/utils/area/descriptions/Food/generated_descriptions/peking_duck_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/peking_duck_descriptions.txt new file mode 100644 index 0000000..62f43bf --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/peking_duck_descriptions.txt @@ -0,0 +1,10 @@ +2092686.jpg The Peking duck is presented sliced with a lustrous, caramelized glaze on a white plate, accompanied by thinly sliced yellow and purple garnishes, set against a blurred background of dining items and a wooden table. +194360.jpg Two wraps of peking duck with a light brown, slightly glossy texture are placed on a decorative plate with a golden rim, set on an off-white, subtly patterned tablecloth background. +30748.jpg The Peking duck is centrally arranged on a round platter, showcasing a rich, glossy brown texture with a succulent appearance, surrounded by light, fluffy white buns and garnished with green vegetables, all set on a white tablecloth in a dining setting. +1394295.jpg The image displays a glossy, deep caramel-colored roasted duck skin on a white plate, surrounded by an assortment of sauces and green onions, with a bamboo steamer in the background, reflecting a typical restaurant dining setup. +412689.jpg The Peking duck is presented with a glossy, caramelized brown skin, lying horizontally atop a metal tray, with a person in a white chef's coat using a cleaver in a kitchen setting. +881370.jpg A glossy, deep golden-brown roasted duck with a curved neck and crispy skin is resting on a bed of vibrant green parsley in a brightly lit indoor setting with blurred human figures and columns in the background. +2886591.jpg The peking duck appears golden-brown and glossy, with a crispy skin texture, laid out in slices on a white plate within a dining setting, distinctively surrounded by scattered garnishes and lit under warm lighting. +1612793.jpg The image shows roasted Peking duck with a rich, glossy brown skin, sliced and arranged on a white plate accompanied by vibrant red cherry garnishes and green decorative herbs, set against a light background with a textual logo. +1966979.jpg The Peking duck exhibits a glossy, deep reddish-brown skin texture with a slightly crispy appearance, set against a backdrop of green vegetables and accompanied by a dark, saucy dish, viewed from an overhead angle, emphasizing its lustrous skin amidst contrasting colors. +2485997.jpg A low-resolution image of a Peking duck shows crispy, caramel-brown skin on a round, soft white wrap, adorned with green onions and dark hoisin sauce, set atop a white plate, against a red tablecloth and yellow background. diff --git a/utils/area/descriptions/Food/generated_descriptions/pho_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/pho_descriptions.txt new file mode 100644 index 0000000..ebdc3c9 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/pho_descriptions.txt @@ -0,0 +1,10 @@ +457772.jpg A bowl of pho with a rich, brown broth is topped with translucent onions and fresh cilantro, viewed from above on a dark marbled table, with a side plate of herbs, lime, and peppers nearby. +4787.jpg A bowl of pho with a clear, brown broth, translucent rice noodles, and green herbs is positioned on a speckled countertop beside a plate of thinly sliced, raw reddish-pink beef. +914608.jpg A bowl of pho with a rich, brownish broth dotted with green herbs, viewed from an angle showing noodles being lifted by chopsticks, accompanied by a side of bean sprouts in a casual dining setting. +2106923.jpg A bowl of pho is filled with a light brown, clear broth, topped with slices of pinkish-brown beef and white rice noodles suspended by black chopsticks, surrounded by a simple dining set on a wooden table. +1531874.jpg A low-resolution image of a bowl of pho features a broth with a slight sheen seen from an overhead viewpoint, with garnishes like fresh cilantro, bean sprouts, and green onions visible amidst the thin slices of beef, all served in a white square bowl on a dark table background. +882384.jpg A top-down view of a bowl of pho showcases light brown broth with visible slices of pinkish beef, scattered green onions, white onion slices, and brown meatballs, set upon a wooden table alongside a spoon, chopsticks, and a small green-leaf package. +966806.jpg A bowl of pho with light brown broth, topped with white bean sprouts, fresh green herbs, and slices of pinkish beef, viewed from above against a plain tablecloth background with a patterned ceramic spoon resting on the bowl's edge. +267779.jpg A bowl of pho with a light brown broth featuring bean sprouts, green herbs, and thinly sliced meat, illuminated from an angle that casts shadows, is set on a dark table with a bright area in the background. +673462.jpg A steaming bowl of pho with a light brown broth topped with tender, thinly sliced pink and beige beef, garnished with vibrant green cilantro and onion slices, viewed from slightly above and set against a plain table with blurred herbs and bean sprouts in the background. +1071406.jpg In the low-resolution photo, the pho appears with a rich assortment of green herbs and white bean sprouts in a clear broth, topped with dark sauce swirls, all set in a white bowl against a pale wooden table background. diff --git a/utils/area/descriptions/Food/generated_descriptions/pizza_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/pizza_descriptions.txt new file mode 100644 index 0000000..afd8056 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/pizza_descriptions.txt @@ -0,0 +1,10 @@ +1165451.jpg A thin-crust pizza is topped with bright red tomato sauce, a sparse layer of melted cheese, garnished with a single green basil leaf, set against a white plate on a bright table alongside another pizza with mushroom toppings. +2044732.jpg The pizza, viewed from above on a wooden table, features a golden-brown crust with a glossy melted cheese surface topped with vibrant red tomato slices, green peppers, and a sprinkle of shredded cheese, all on a thin metal tray. +2556273.jpg A single slice of pizza with a thin, golden-brown crust is topped with dark leafy greens, melted white cheese, and chunks of pink meat, set on a white plate with scattered herbs on a marble surface. +352051.jpg The rectangular pizza, viewed from above, features a golden-brown, slightly crispy crust with toppings of melted cheese, olives, mushrooms, and a vibrant red tomato sauce, set against a sleek, dark countertop background. +1247645.jpg The pizza features glossy, red pepperoni slices atop a golden-brown, slightly charred crust, viewed from a side angle, with a wooden table and a glass of yellow liquid in the blurry background. +34632.jpg Two triangular pizza slices rest on a white paper plate: the left slice features a golden-brown crust with a dense, melted cheese and textured topping, while the right slice showcases bright red tomato pieces, vibrant green basil leaves, and patches of creamy white cheese on a thin, slightly crispy crust, against a background of outdoor furniture. +2187466.jpg A round pizza with a golden-brown crust, topped with a spread of tomato sauce, cream, herbs, and uneven slices of ham, placed on a white plate against a dark tabletop background. +2821048.jpg A close-up view of a pizza showcases a vibrant mix of melted mozzarella cheese with patches of red tomato sauce, topped with fresh green basil leaves, creating a colorful contrast against the soft, browned crust. +3426946.jpg A top-down view of a Margherita pizza reveals a vibrant red tomato sauce base adorned with evenly spaced white mozzarella blobs and scattered green basil, set against a metallic tray on a dark wooden surface. +228778.jpg The pizza, viewed from above in an open cardboard box, features an even distribution of glossy, reddish-orange pepperoni and brown mushrooms atop a golden-brown, slightly textured crust, with a dark, reflective countertop beneath the box. diff --git a/utils/area/descriptions/Food/generated_descriptions/pork_chop_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/pork_chop_descriptions.txt new file mode 100644 index 0000000..01bc763 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/pork_chop_descriptions.txt @@ -0,0 +1,10 @@ +2986893.jpg The pork chop appears golden-brown and slightly glazed, positioned on its side atop creamy risotto with a garnish of broccoli, accompanied by a visible bone, and set on a white plate. +711353.jpg The pork chop appears golden-brown and slightly glossy from a pan-seared texture, positioned horizontally on a plate next to bright green steamed broccoli and a halved baked potato with butter, under warm lighting in a dining setting. +3313632.jpg The pork chop appears to have a rich, brown sear with caramelized edges, is positioned slightly tilted on a bed of grains, accompanied by roasted Brussels sprouts highlighting a glossy, roasted texture, all set on a white plate against a dark table backdrop. +563717.jpg A seared pork chop with a rich brown crust and visible char marks sits atop a creamy, pale yellow mashed potato bed, surrounded by tangy, shredded sauerkraut, all garnished with a light sprinkle of chopped herbs on a white plate. +2899232.jpg A grilled pork chop with a dark brown, grid-marked crust sits atop a bed of corn on a white plate, with a cup of French fries in a paper holder nearby, all placed on a wooden table. +199421.jpg The pork chop appears dark brown with grill marks and a slightly charred texture, placed at an angle, surrounded by a sauce, with vegetables such as asparagus, potatoes, and tomatoes in the background. +724224.jpg The pork chop has a brown, saucy exterior with a glossy, tender texture, viewed from a slightly angled perspective, accompanied by mashed potatoes on a plate in a casual dining setting with drinks in the background. +553739.jpg The pork chop, seen from an overhead view, has a lightly browned, slightly crispy texture surrounded by a ring of dark sauce and is plated with colorful vegetables on a white dish against a neutral table setting. +644795.jpg A seared pork chop with a browned crust is topped with a diced tomato and onion garnish, served over mashed potatoes in a shallow pool of brown sauce, viewed from above on a white plate, with a dimly lit background. +3881213.jpg A richly browned pork chop glistens with a glazed, caramelized exterior, topped with a sprig of fresh herbs and roasted garlic, presented on a pool of golden brown sauce, surrounded by dark, wilted greens on a sleek dining plate. diff --git a/utils/area/descriptions/Food/generated_descriptions/poutine_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/poutine_descriptions.txt new file mode 100644 index 0000000..95aba5f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/poutine_descriptions.txt @@ -0,0 +1,10 @@ +852737.jpg Golden-brown fries with crispy edges are topped with creamy, melted cheese curds, served in a white cup, with a blurred light-colored background suggesting a casual dining environment. +1502509.jpg A slightly elevated view captures a poutine with golden-brown fries, creamy white cheese curds, and glossy brown gravy, set in a white bowl on a dark surface, accompanied by a small cup of red sauce on the side. +191059.jpg A white bowl contains golden-brown crispy fries topped with melted yellow cheese curds and a thick, glossy, brown gravy, viewed from above against a dark background with a white plastic fork inserted. +1835885.jpg A heaping plate of poutine featuring golden-brown fries drenched in glossy brown gravy with visible melted cheese curds, topped with sautéed onions and roasted vegetables, set on a dark tabletop with condiments and a blurred background. +2483219.jpg A heaping plate of poutine is seen from an overhead angle, featuring golden-brown fries drenched in glossy, dark brown gravy with scattered patches of white cheese curds, set against a plain white dish that contrasts with the darker tones of the meal. +1388183.jpg A serving of poutine is presented in a white foam takeout container, featuring golden-brown fries covered with creamy brown gravy and partially melted cheese curds, set on a textured black tray with a corner of a white napkin visible. +1795855.jpg A plate of crispy, golden-brown fries topped with glossy, dark brown gravy and scattered white cheese curds is photographed from an overhead angle, set against a light-colored wooden table. +3456523.jpg A triangular white plate holds crispy fries topped with chunks of brown gravy, green bell peppers, white cheese curds, mushrooms, and red sun-dried tomatoes on a vibrant red table. +2344636.jpg A serving of poutine featuring golden-brown fries smothered in rich brown gravy and scattered white cheese curds is presented in a checkered blue and white paper tray, with the sunlight casting subtle shadows and highlighting the glossy sheen of the sauce. +179644.jpg The poutine features golden-brown fries topped with dark brown gravy and irregularly shaped white cheese curds, displayed in a disposable tray on a rustic wooden table with a plastic fork nearby and a small sauce cup at the corner. diff --git a/utils/area/descriptions/Food/generated_descriptions/prime_rib_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/prime_rib_descriptions.txt new file mode 100644 index 0000000..fc4c4c1 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/prime_rib_descriptions.txt @@ -0,0 +1,10 @@ +225516.jpg The prime rib appears medium-rare with a pinkish-red hue and marbled texture, positioned horizontally on a white plate beside broccoli and other vegetables, with a small bowl of brown sauce in the background. +1756539.jpg A succulent, medium-brown prime rib with a glossy surface is positioned horizontally on a white plate, garnished with golden-brown onion rings and surrounded by a pool of rich juice, complemented by a mound of creamy mashed potatoes on the side. +2074823.jpg The prime rib appears medium-rare with a rich pinkish-red hue, slightly marbled surface, served on a white plate with horseradish on top, viewed from an overhead angle, set against a plain tablecloth background with a hint of cream in a small dish in the upper right. +3595631.jpg A thick, juicy slice of prime rib with a rosy pink center and a browned, caramelized crust is served on a white plate alongside crispy, golden-brown curly fries, a dollop of horseradish, and small sauce cups, against a wood-textured tabletop background. +522824.jpg The low-resolution image shows a slice of prime rib with a pinkish-red center and a brown, pepper-crusted edge, positioned horizontally on a plate with a side of green beans, baked potatoes, and small sauce cups, set on a dark mottled table surface. +1887593.jpg A thick slice of prime rib with a vibrant pink-red interior and a browned, fatty crust is positioned frontally on a white plate, accompanied by roasted potatoes and macaroni, with dark sauce and creamy horseradish in metal cups on the side, all against a wooden table backdrop. +1953571.jpg A thick slice of prime rib with a rich, reddish-pink center and a well-seasoned, dark-brown crust sits on a white plate, accompanied by mashed potatoes and a cherry tomato garnish, viewed from a slightly elevated front angle against a blurred dining setting. +2592430.jpg The prime rib appears juicy with a dark brown, seared exterior, resting on a white square plate accompanied by colorful vegetables, positioned on a wooden surface with a visible steak knife beside it. +882118.jpg A slice of prime rib with a pinkish-red center and a browned crust sits on a green ceramic plate, accompanied by a knife and fork, with a halved baked sweet potato and a small dish of creamy butter on the side, creating a warm and inviting dining presentation. +1933441.jpg A slice of prime rib with a brown crust and pink interior rests in a light sauce, accompanied by a baked potato, green beans, and a slice of tomato, presented on a white plate in a restaurant setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/pulled_pork_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/pulled_pork_sandwich_descriptions.txt new file mode 100644 index 0000000..8dbea22 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/pulled_pork_sandwich_descriptions.txt @@ -0,0 +1,10 @@ +40073.jpg The pulled pork sandwich features shredded, dark-brown sauce-covered pork nestled in a light tan bun, viewed from above on white and pink parchment paper, accompanied by a cup of creamy, orange macaroni and cheese, all on a speckled gray surface. +2638925.jpg A pulled pork sandwich with shredded, brown and beige pork spilling out from a shiny, soft bun sits in a white foam tray beside a cup of creamy, pale yellow macaroni, visible from an overhead angle with a patterned black border surrounding the image. +3088441.jpg A pulled pork sandwich with a lightly browned, rustic bun and rich, dark brown pork with visible strands, is centered on a cobalt blue plate, accompanied by a small serving of purple slaw, viewed from above against a blurred, light-colored background. +275395.jpg A pulled pork sandwich is presented on a white plate, with tender, shredded pork covered in dark, glossy barbecue sauce sitting on a lightly toasted bun, accompanied by a background of creamy potato salad, rich yellow macaroni and cheese, green pickle slices, and golden cornbread against a wooden table. +3896222.jpg The sandwich, viewed from an angled side perspective, consists of a light beige bun with a crisp texture, stuffed with vibrant green lettuce and slices of red and yellow bell peppers, set on a wooden platter alongside halved cherry tomatoes, in a cozy dining setting with a teapot and coffee cup in the background. +2846208.jpg The pulled pork sandwich is presented open-faced with shredded, juicy meat in varying shades of brown and reddish sauce atop, placed on a red-and-white checkered paper alongside servings of baked beans and greens, with the photograph taken from an overhead angle. +861477.jpg In a slightly angled top-down view, the pulled pork sandwich features shredded, brown-textured pork spilling out from the center of a lightly toasted flatbread, placed on a blue-checkered paper with a blurred glass of beverage in the dimly lit background. +966993.jpg The photograph shows a pulled pork sandwich with rich, dark brown, shredded meat showcasing a glossy, succulent texture, viewed up-close from slightly above with the bun partially open, set against a checkered tablecloth with golden-brown fries in the background. +3747863.jpg The pulled pork sandwich is topped with pinkish coleslaw, served on a shiny dark brown bun, placed on a red plate alongside golden cornbread on a wooden table. +580185.jpg The pulled pork sandwich features tender, dark brown shredded pork with hints of orange carrot slices, nestled in a lightly crisp, golden bun on a light-colored plate, accompanied by a fresh green salad and a glass in the blurred background. diff --git a/utils/area/descriptions/Food/generated_descriptions/ramen_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/ramen_descriptions.txt new file mode 100644 index 0000000..08b9f6f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/ramen_descriptions.txt @@ -0,0 +1,10 @@ +3262827.jpg The low-resolution image depicts a bowl of ramen with a rich, dark broth interspersed with shimmering droplets of oil, topped with slices of tender pork, a scattering of chopped green onions, and set against a simple wooden table background. +610508.jpg In a top-down view, this ramen showcases thin, light brown slices of pork on a bed of curly yellow noodles submerged in a dark, rich broth, adorned with a green leafy garnish and chopped green onions, all served in a white bowl on a red table surface. +2222274.jpg The image shows a close-up view of a bowl of ramen with a rich, amber-brown broth, featuring thin noodles, vibrant green scallions, flecks of nori, and slices of tender pork, set against a simple wooden table background. +2253112.jpg A bowl of ramen in a deep blue dish features golden curly noodles submerged in a rich brown broth, topped with a slice of tender pork, dark seaweed, bamboo shoots, a swirl-patterned narutomaki, and garnished with thinly sliced green onions, viewed from above against a dimly lit background. +2822516.jpg A bowl of ramen viewed from above features wavy, golden noodles submerged in a light broth, topped with green edamame and pieces of vibrant red seafood, all set on a wooden table with a glass of iced beverage nearby. +3209312.jpg A bowl of ramen in clear broth with slices of tender, light brown meat and green scallions is viewed from above, surrounded by decorative blue and white patterned edges, set against a blurred background with orange seats and colorful drinks, revealing a homely dining setting. +2706534.jpg The ramen features a light brown broth with yellow noodles, garnished with lively green onions, a halved soft-boiled egg, dark seaweed, and a slice of tender meat, all set in a ceramic bowl with a decorative geometric pattern, viewed from an overhead angle against a speckled grey background. +1772386.jpg The low-resolution image shows a bowl of ramen with a rich, dark broth and visible oil droplets, featuring slices of pale pink pork, a white and pink spiral fish cake, finely chopped green onions, and a textured wooden table in the background. +560353.jpg A bowl of ramen is seen from above, featuring light brown broth, pale slices of meat, a green seaweed sheet, green onion garnishes, and a soft-boiled egg, set against a wooden table with a red napkin. +3183899.jpg The ramen is presented in a white bowl, featuring a rich brown broth with visible oil droplets, garnished with leafy greens, a vibrant red paste, and a soft white egg, set against a wooden table background. diff --git a/utils/area/descriptions/Food/generated_descriptions/ravioli_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/ravioli_descriptions.txt new file mode 100644 index 0000000..83f7d78 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/ravioli_descriptions.txt @@ -0,0 +1,10 @@ +1388644.jpg The ravioli in the image is a golden-brown square with a slightly ruffled edge, viewed from above in a small metal pan, adorned with green herbs and dark, cube-shaped garnishes on a reflective metal surface. +879121.jpg The ravioli is topped with white dollops and fresh green herbs, surrounded by a mix of mushrooms and vegetables, with hints of foam and a softly-lit, warm-toned background. +254420.jpg The ravioli is covered in a smooth, reddish-orange sauce with scattered green herbs, viewed from above, on a white plate set against a dark tabletop, with the ravioli edges faintly visible beneath the sauce. +710272.jpg Five square, light yellow ravioli with a smooth, creamy sauce are arranged slightly overlapping on a white plate with a textured, orange-brown tablecloth background. +1877340.jpg The ravioli appears golden-brown with a slightly translucent, smooth texture, viewed from a top-down angle, surrounded by a light sauce with visible herbs and topped with thin, curled slices of a brownish ingredient on a white plate. +2344226.jpg The ravioli, viewed from above on a white plate, appear golden-yellow with a smooth, glossy texture, topped with a reddish-orange garnish and sprinkled with chopped green herbs, all resting in a creamy sauce against a blurred white background. +898822.jpg The ravioli appears creamy yellow with a smooth, glossy texture, topped with green parsley and thinly sliced red and pale cheese, set against a muted, off-white plate background. +2651732.jpg A golden-yellow ravioli with a smooth yet slightly glossy texture sits in a white bowl, viewed from above, accented by a scattering of green herbs and surrounded by a sparse, reflective sauce. +565182.jpg The ravioli is a yellow, glossy square with visible flecks of green herbs and grated cheese on top, sitting on a white plate with a light sauce and another smaller ravioli partially overlapping in a lightly lit setting. +3787756.jpg Five ravioli pieces, covered in a rich red-brown sauce and garnished with fresh green basil leaves, are viewed from above, set against a light-colored dish partially immersed in a golden oil pool. diff --git a/utils/area/descriptions/Food/generated_descriptions/red_velvet_cake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/red_velvet_cake_descriptions.txt new file mode 100644 index 0000000..1b42f37 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/red_velvet_cake_descriptions.txt @@ -0,0 +1,10 @@ +2876050.jpg The image shows a slice of rich, burgundy red velvet cake with creamy white frosting layers, topped with sliced strawberries, presented in a transparent box on a white plate, with visible texture details and a casual dining setting in the background. +1169062.jpg A slice of red velvet cake with two layers of moist, dark red crumb and cream-colored frosting is presented on a white plate, surrounded by dimly lit restaurant ambiance and garnished with thin strawberry slices on the side. +3614923.jpg A round red velvet cake with a vibrant, crumbly surface is topped with a smooth chocolate spiral and small dark dots, viewed from above against a glossy table with fork prongs in the background. +3258312.jpg A slice of rich red velvet cake with a creamy white frosting sits inside a clear plastic container, with visible layers of moist, dark reddish-brown cake and a bakery label in the foreground against a blurred, dark background. +3674884.jpg A glass dessert dish holds a vibrant red velvet cake topped with creamy white frosting, colorful sprinkles, and chocolate drizzle, all served over scoops of chocolate ice cream, with a non-descript indoor setting in the background. +2951504.jpg A round red velvet cake with rich red crumb layers is topped with cream cheese frosting shaped into rose patterns, with a side view revealing scalloped cream accents, set on a decorative paper doily against a dark background. +3387239.jpg A three-layered red velvet cake with deep maroon sponge layers and creamy white frosting, viewed from the side on a white plate, features horizontal ribbed frosting on top and scattered crumbs, with a blurred dark background. +1089222.jpg A close-up view showcases a slice of red velvet cake with deep burgundy layers and creamy white frosting, set against a simple, light background, highlighting the cake's moist and fluffy texture. +3500235.jpg A round, deep red velvet cake with creamy white layers topped with a chocolate garnish is set on a white plate, accompanied by whipped cream and sliced strawberries, viewed from an angled, close-up perspective. +1303885.jpg This red velvet cake slice, viewed from an angled close-up, features vibrant red layers contrasted with creamy white frosting, a crumbly topping, and is set within a clear plastic container. diff --git a/utils/area/descriptions/Food/generated_descriptions/risotto_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/risotto_descriptions.txt new file mode 100644 index 0000000..9f9a718 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/risotto_descriptions.txt @@ -0,0 +1,10 @@ +3698991.jpg A close-up of a creamy, golden-yellow risotto topped with finely chopped green herbs and red bits, with a blurred, warmly lit background. +261549.jpg The risotto appears creamy and slightly orange with finely chopped green herbs scattered on top, photographed from a slightly elevated angle within a car's dashboard environment, featuring a partially visible white spoon nestled against the dish. +1828753.jpg A vibrant and textured risotto featuring golden-brown seafood and glossy sauce, viewed from a slightly elevated angle, garnished with herbs and situated on a white plate against a blurred dining environment. +2264487.jpg The risotto appears creamy and is embedded with vibrant green peas and corn kernels, viewed from a slightly elevated angle, set against a dark, contrasting background surface. +3070826.jpg A creamy, pale risotto base topped with a mix of brown, sautéed mushrooms and herbs is centrally plated on a plain white dish set against a simple, dark wooden table background. +782868.jpg The risotto appears creamy with a pale, light beige color, garnished with leafy greens and possibly cheese shavings on top, viewed from an overhead angle with a simple, plain white plate and dark contrasting background. +1688903.jpg The risotto appears creamy and beige with specks of red and green, topped with red chili slices and parsley, framed on a white plate against a softly blurred background. +2006431.jpg The risotto appears creamy and beige with a glossy texture, featuring visible green vegetables and small chunks of orange, all served on a pale-colored plate against a blurred background. +2024180.jpg The risotto appears creamy and rich in color, with a golden-brown hue speckled with visible bits of red and mushrooms, topped with a dollop of cream and shavings of cheese, centered on a white plate with a plain background. +333843.jpg The risotto appears creamy and beige with a slightly glossy texture, dotted with dark brown mushroom slices, presented on a white round plate with a dimly lit background featuring hints of wood. diff --git a/utils/area/descriptions/Food/generated_descriptions/samosa_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/samosa_descriptions.txt new file mode 100644 index 0000000..d00a9c6 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/samosa_descriptions.txt @@ -0,0 +1,10 @@ +3869730.jpg The samosas have a golden-brown, crispy texture with crimped edges, viewed from above on a white plate accompanied by green lettuce and two sauces, one green and one reddish. +2571863.jpg The samosas are golden-brown with a slightly flaky texture, positioned upright on a white plate with a speckled surface, accompanied by dark red and white sauces; the background environment is a blurred countertop. +2869471.jpg The samosa is golden-brown with a crispy, flaky texture, positioned at the center of a white plate with a blurred background that includes what appears to be a dip and slices of cucumber and tomato. +966846.jpg A golden-brown, triangular samosa with a slightly rough texture is resting on a white plate alongside a pool of reddish-brown sauce, accompanied by a stainless steel fork, on a muted green tabletop. +3788181.jpg This samosa, captured in a close-up shot, displays a golden-brown, bumpy texture, characteristic of a crispy, fried surface, and is surrounded by other fried snacks in a closely-packed arrangement. +1366299.jpg The samosas have a golden-brown, slightly crispy texture, viewed from a top-angle with three triangular shapes close together on a white plate, set against a blurred neutral background. +3134226.jpg Triangular and golden-brown with slightly darkened tips, the samosa rests on a white plate with a pink background, surrounding a bowl of red sauce garnished with a green leaf. +1170489.jpg The image shows two golden-brown samosas with a crispy, flaky texture positioned on a white plate with a creamy green dip in a small cup between them, all set on a wooden table with some shredded lettuce scattered around as garnish. +68911.jpg The samosa in the image appears golden-brown with a crispy, dimpled texture, viewed from a slightly elevated angle, set against a metallic tray with green and brown sauces in small metal cups, highlighting its triangular shape. +1526132.jpg The samosa is golden-brown with a flaky, crispy texture, presented in a side view atop a white tray, accompanied by two small plastic cups of green chutney in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions/sashimi_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/sashimi_descriptions.txt new file mode 100644 index 0000000..5dbee58 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/sashimi_descriptions.txt @@ -0,0 +1,10 @@ +3448884.jpg The sashimi, displayed on a blue and white dish, features a trio of vividly colored fish slices including deep red tuna and pale pink fish, accompanied by green wasabi and shiso leaves, with a small bowl of soy sauce in the background, presenting a fresh and delicate arrangement from an overhead viewpoint. +1002556.jpg A variety of sashimi pieces are artfully arranged on a white rectangular plate, featuring vibrant pink and red tuna, pale orange salmon with delicate marbling, creamy yellow uni on cucumber, and a lightly garnished, seared piece beside a slice of lemon, all set against a wooden background. +1420986.jpg Thinly sliced sashimi with a delicate, translucent pinkish-white color and slight marbling, arranged in a circular pattern on a dark plate, accented with a pink rose-like garnish in the center, alongside small clusters of garnish greens and lemon wedges, set against a dimly lit restaurant table. +829585.jpg A platter of sashimi and sushi is presented with slices of vibrant orange salmon and pale pink tuna, garnished with leafy greens and surrounded by neatly arranged sushi rolls with rice and seaweed, viewed from a slightly elevated angle against a dark table background, with soy-glazed pieces adding glossy, dark highlights. +1962203.jpg The image shows a plate of sashimi with varying hues of vibrant red tuna, delicate pink salmon, and translucent white fish, arranged neatly in a fan-like display with a garnish of fresh green leaf and thinly shredded radish on a plain white plate, viewed from a slightly angled top-down perspective. +2608295.jpg A selection of sashimi featuring slices in shades of orange, pale pink, and deep red with a glossy texture are artfully arranged on a bed of thin white and yellow shredded radish, garnished with green onion slices and wasabi, set within a dark lacquered bowl with a red rim on a wooden table. +969197.jpg The image shows several slices of orange salmon sashimi arranged in a fanned-out manner on a transparent plate with a bed of white shredded daikon radish, highlighted against a softly blurred, multicolored background. +1504921.jpg Slices of vibrant orange sashimi with visible marbling are layered diagonally on a white plate, accompanied by shredded daikon and a lemon wedge, with a hint of green garnish and a blurred background featuring chopsticks. +1461342.jpg Thick slices of orange salmon sashimi with a smooth, slightly shiny texture are arranged on a white plate, accompanied by bright green cucumber slices and garnished with a lettuce leaf, set against a blurred background featuring a small dish of dark soy sauce and wasabi. +802260.jpg Slices of vibrant orange sashimi with a glossy texture rest on a bed of shredded white radish and green lettuce, viewed from a low side angle against a warm-toned wooden surface and blurred background. diff --git a/utils/area/descriptions/Food/generated_descriptions/scallops_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/scallops_descriptions.txt new file mode 100644 index 0000000..70764e7 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/scallops_descriptions.txt @@ -0,0 +1,10 @@ +2620611.jpg The scallops appear to be golden-brown with a glazed texture, positioned on a plate alongside a crumbly, off-white garnishment, and are captured in a slightly off-center, overhead viewpoint against a softly lit, neutral background. +1672326.jpg The image shows several lightly browned scallops with a tender, slightly glossy texture, viewed from an overhead angle on a dark circular plate, with a soft-lit restaurant table setting and a lemon wedge in the background. +2428938.jpg The scallops are thinly sliced with a translucent, pale color and are arranged flat on a plate atop a vibrant yellow sauce, garnished with purple microgreens and golden brown crumbles, set against a neutral-toned background. +1227409.jpg Seared scallops appear golden-brown and lightly caramelized on the surface, nestled within a white bowl on a creamy sauce base and garnished with vibrant microgreens and sautéed vegetables, against a dark wooden tabletop backdrop. +1924033.jpg The scallops, viewed from above, are a light golden-brown with a seared texture, arranged on a white plate alongside what appears to be triangular blocks of a yellow, herb-speckled accompaniment, set against a dark, indistinct background. +3314020.jpg The scallops are creamy and lightly orange-tinted with a glossy texture, topped with small orange fish roe, presented in a seaweed cone alongside green sprouts on a white plate with artistic streaks of sauce, suggesting a sushi cuisine environment. +811546.jpg The image shows golden-brown seared scallops with a slightly glazed texture, viewed from above, resting on a plate accompanied by greens and what appears to be a dark-sauce backdrop in a dimly lit dining setting. +641273.jpg The image shows lightly grilled scallops with a white and slightly browned checkerboard texture on top, resting on a bed of white rice, all presented on a decorative purple plate with a slice of lemon in the background. +1243748.jpg The scallops are seared with a golden-brown crust, presented on a white plate alongside a vibrant yellow sauce, microgreens, radish slices, and a piece of seared pork, under dim lighting. +1889684.jpg The scallops appear as round, lightly browned discs topped with a creamy white layer and bright orange roe, viewed from a slightly elevated angle, with a blurred and muted background hinting at a dining setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/seaweed_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/seaweed_salad_descriptions.txt new file mode 100644 index 0000000..97d1cec --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/seaweed_salad_descriptions.txt @@ -0,0 +1,10 @@ +847098.jpg A small portion of glistening, dark green seaweed with a slightly slick texture is topped with a piece of white and pink octopus, served in a shallow square bowl with blue stripes, resting on a light green table alongside patterned dishes. +3692738.jpg The seaweed salad appears as a vibrant mix of dark green, glossy strands intertwined with bright orange, finely shredded carrot strips, presented in a white bowl with a minimalistic background, likely a table setting. +954189.jpg A vibrant green, glossy seaweed salad is piled centrally on a white plate, featuring a tangled texture with visible sesame seeds and scattered strands of orange carrot shreds underneath. +814378.jpg The seaweed salad appears as a glossy, vibrant green mass with visible sesame seeds, arranged on a white square plate and accompanied by a small glass of brown liquid and black chopsticks on a wooden table. +955839.jpg Thin, glistening green strands of seaweed with a slightly glossy texture are piled on a red plate, accompanied by thin white garnish underneath, all set against a dark, unfocused background. +1460301.jpg A vibrant green seaweed salad with a glossy, slightly wet texture is piled high in a bowl, sprinkled with sesame seeds and served over a darker leafy base, set on a dark table surface with a blurred, light-colored dish in the background. +1098367.jpg The seaweed salad appears vibrant green with a glossy, slippery texture, viewed from above in a blue bowl, garnished with white sesame seeds, a lemon wedge, and a green lettuce leaf backdrop. +607168.jpg The seaweed salad appears vibrant green with a glossy, stringy texture, showcased from a slightly elevated angle within a small ceramic bowl resting on a wooden surface, distinguished by the presence of sesame seeds sprinkled on top. +298683.jpg The seaweed salad features vibrant green strands with a glossy, slightly stringy texture, arranged in a neat pile on a white square dish, accompanied by a spiral garnish of thin orange carrot curls, against a neutral table setting background. +2030169.jpg A vibrant green seaweed salad with a glossy texture is interspersed with sesame seeds and garnished with an intricately carved orange carrot star on a close-up view. diff --git a/utils/area/descriptions/Food/generated_descriptions/shrimp_and_grits_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/shrimp_and_grits_descriptions.txt new file mode 100644 index 0000000..f144efe --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/shrimp_and_grits_descriptions.txt @@ -0,0 +1,10 @@ +3105383.jpg A creamy, pale yellow grits base topped with golden grilled shrimp and melted cheese, garnished with small green herbs, is presented in a white bowl with a spoon on the side, set against a warm, dimly-lit background. +70569.jpg Creamy yellow grits with a slightly lumpy texture are topped with pink, sautéed shrimp arranged in a curved pose, all served on a white plate against a dimly lit, neutral background. +1499550.jpg A creamy, pale yellow shrimp and grits dish with visible bits of herbs and bacon is centered in a white bowl, showcasing a top-down view that highlights smooth texture and plump shrimp against the neutral background. +626967.jpg A plate of shrimp and grits is shown with creamy, pale yellow grits at the center, surrounded by reddish-orange shrimp bathed in a light brown sauce, topped with a small garnish of green herbs, all set on a wooden table. +3465310.jpg Juicy shrimp covered in a rich, brown sauce rest atop creamy, pale grits, with a close-up viewpoint highlighting the glossy texture and pepper flecks, set against a blurred, warm-toned background. +3420511.jpg The dish features creamy off-white grits topped with plump, golden-brown shrimp nestled in a sauce of reddish-brown bits of sausage and scattered green onions, all presented on a wide, white rimmed plate. +1400099.jpg A plate of shrimp and grits viewed from above shows golden-orange grits topped with plump, seared shrimp, garnished with a sprinkle of green herbs, set against a dimly lit table with a glowing candle in the background. +249517.jpg Golden-brown shrimp are nestled atop creamy, pale yellow grits with a speckling of green herbs and dark, sautéed mushrooms, viewed from a slightly elevated angle against a neutral, softly lit background. +3752187.jpg The dish features golden-brown shrimp with a glazed appearance on a bed of creamy, pale grits, garnished with green onions and set against a neutral-toned plate with a blurred background. +3089542.jpg A plate of shrimp and grits shows golden-brown grilled shrimp and creamy, light beige grits topped with vibrant green scallions, accompanied by slender, bright green beans, all enhanced by an orange sauce and viewed from a slight overhead angle against a dark background with a glass and dishes visible. diff --git a/utils/area/descriptions/Food/generated_descriptions/spaghetti_bolognese_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/spaghetti_bolognese_descriptions.txt new file mode 100644 index 0000000..ca50dd9 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/spaghetti_bolognese_descriptions.txt @@ -0,0 +1,10 @@ +2073108.jpg A plate of spaghetti bolognese is presented from an overhead view, featuring light beige spaghetti topped with a chunky, reddish-brown sauce containing visible tomato and herb pieces, set against a white dish on a green and white checkered tablecloth. +2456223.jpg A plate of spaghetti bolognese featuring lightly sauced, golden-brown pasta with visible meat bits, viewed from above, set against a plain white background with a garnish of a cherry tomato and a sprig of parsley on the side. +3919665.jpg The spaghetti bolognese is topped with a richly browned and bubbly cheese layer, occupying the majority of the plate, with strands of spaghetti peeking out at the edges, set against a blurred, earthy-toned background. +3887958.jpg A low-resolution image shows spaghetti bolognese from an overhead viewpoint, featuring light cream-colored spaghetti topped with a red, chunky sauce with visible pieces of orange carrots and ground meat, against a plain white background in a white bowl. +3379584.jpg The spaghetti bolognese appears with a rich, vibrant red sauce contrasted against pale spaghetti strands, viewed from a slightly elevated angle within a white bowl, and is garnished with specks of green herbs that add texture and color diversity. +908724.jpg The image shows spaghetti bolognese with a rich, chunky red sauce topped with fresh green arugula, served on a white plate with a small dish of grated cheese in the background. +2047421.jpg A plate of pale yellow spaghetti topped with a chunky, deep red bolognese sauce filled with visible meat and tomato pieces is centered on a white round plate against a warm-toned background. +808357.jpg A plate of spaghetti bolognese with a rich red-brown sauce and scattered grated cheese sits prominently on the white dish, viewed from a slightly elevated angle, against a dark textured background, with visible herbs adding a touch of green contrast. +2123343.jpg The spaghetti bolognese features a rich, dark red sauce with a chunky texture spread over pale yellow pasta, garnished with fresh green basil leaves, viewed from above on a white plate with no visible background distractions. +346809.jpg A low-resolution image shows spaghetti bolognese with a rich, red-orange sauce atop light-colored spaghetti, featuring visible chunks of meat and carrot slices, garnished with green herbs, presented in a large white bowl against a minimalistic white table setting with a side dish of grated cheese. diff --git a/utils/area/descriptions/Food/generated_descriptions/spaghetti_carbonara_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/spaghetti_carbonara_descriptions.txt new file mode 100644 index 0000000..a7bc24a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/spaghetti_carbonara_descriptions.txt @@ -0,0 +1,10 @@ +3509750.jpg The spaghetti carbonara is a creamy, pale yellow dish topped with a soft poached egg and speckled with diced pink pancetta, viewed from above on a smooth, off-white plate. +80789.jpg The spaghetti carbonara appears creamy and pale yellow with a glossy texture, topped with coarse shavings of cheese and visible pieces of browned meat, presented from a slightly elevated angle against a wooden table backdrop. +2646409.jpg A mound of glossy, pale yellow spaghetti with specks of pink pancetta rests on a white dish, situated against a blurred warm-toned background with soft lighting. +2300549.jpg The low-resolution image shows a plate of spaghetti carbonara with creamy yellow pasta intertwining with cooked ham, sliced mushrooms, and a light sprinkling of what appears to be cheese, all slightly blurred and set against a nondescript, neutral background that emphasizes the dish. +2121043.jpg The spaghetti carbonara, viewed from above, features a creamy, pale-yellow sauce intertwined with pasta strands, sprinkled with grated cheese and garnished with a sprig of parsley, set against a smooth, white plate on a marble-topped table. +715901.jpg A close-up view of spaghetti carbonara in a white bowl shows creamy, light yellow noodles interspersed with bits of pinkish bacon and specks of black pepper, all garnished with flecks of green parsley, alongside a metal fork creating a homely kitchen setting. +1350515.jpg The spaghetti carbonara in the image appears creamy with a pale yellow hue and scattered crispy bacon bits, viewed from a slightly elevated angle against a white plate background, with visible herbs and mushroom pieces adding texture and contrast. +3332058.jpg A creamy plate of spaghetti carbonara viewed from above features yellow pasta intertwined with green and orange hues, garnished with shavings and leafy greens, surrounded by a white rimmed plate. +2147608.jpg The spaghetti carbonara appears creamy with a light yellow hue, topped with pink-hued pancetta and grated cheese, viewed from an angled perspective in a white bowl set against a dark, softly-focused restaurant interior. +1434219.jpg Creamy yellow spaghetti with visible black pepper flecks is intertwined with small chunks of pinkish bacon and garnished lightly with green herbs, viewed up close with a soft-focus white background. diff --git a/utils/area/descriptions/Food/generated_descriptions/spring_rolls_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/spring_rolls_descriptions.txt new file mode 100644 index 0000000..ff72330 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/spring_rolls_descriptions.txt @@ -0,0 +1,10 @@ +1949870.jpg Golden-brown spring rolls stand upright in a white cup on a round plate, accompanied by a square bowl of red dipping sauce, set against a softly lit dinner table with utensils and a candle in the background. +1097540.jpg The spring rolls have translucent, soft, and slightly glossy rice paper wrappers revealing a light green filling with visible lettuce, viewed from an angled side perspective on a white plate with a dish of dark dipping sauce in the background. +2305540.jpg Translucent rice paper wraps partially reveal vibrant green leaves, orange carrots, and other fillings in three neatly aligned spring rolls on a wooden surface, accompanied by three small cups of dipping sauces. +1652729.jpg Golden-brown spring rolls with a crisp texture are neatly stacked on a white doily-covered plate, accompanied by slices of cucumber and a cherry tomato, creating a visually appealing arrangement on a white marble surface. +3613093.jpg Four golden-brown spring rolls with a crispy-textured surface are aligned horizontally on a bed of lettuce, placed on a white oval plate against a vibrant red tablecloth, accompanied by a small bowl of light-colored dipping sauce in the upper left corner. +1954103.jpg Three golden-brown, lightly textured spring rolls are aligned horizontally on a decorative plate with floral patterns, viewed from a close-up angle showing their cylindrical shapes and slightly crispy edges. +979999.jpg Crispy brown spring rolls, viewed from above on a white plate, are accompanied by a garnish of lettuce, carrots, and cilantro, with a blurry background showing red sauce bottles. +252388.jpg The spring roll appears as a translucent, rice paper-wrapped bundle with visible green leafy vegetables and pink shrimp beneath, placed horizontally on a white plate with blue floral designs, alongside a small brown sauce dish on a dark table background. +1219622.jpg Golden-brown spring rolls with a crispy texture are neatly aligned on a green plate, with a glossy sauce in a small dish and garnishes of orange slices and herbs in the background. +3622680.jpg Golden-brown, crispy spring rolls with a slightly wrinkled texture are shown in close-up, with some green filling visible through translucent areas, against a blurred metallic background. diff --git a/utils/area/descriptions/Food/generated_descriptions/steak_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/steak_descriptions.txt new file mode 100644 index 0000000..12133d0 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/steak_descriptions.txt @@ -0,0 +1,10 @@ +2691461.jpg The steak appears dark brown with a grilled texture, viewed from above, placed on a white plate alongside golden-brown chunky potato wedges, crisp onion rings, and a dollop of red sauce, all set against a light wooden table background with two white condiments nearby. +926414.jpg The steak appears medium rare with a brown seared exterior and a pinkish-red center, marked with dark grill lines, and is served on a white plate with a backdrop of golden French fries and garnished greens, set against a dimly lit restaurant setting. +1615395.jpg A richly browned steak, topped with a creamy white sauce, is presented on a colorful, patterned plate with a garnish of a tomato slice, positioned in a dimly lit dining setting with a visible tablecloth featuring various stripes and hues. +3191589.jpg The steak appears as a marbled, deep red, and thinly cut slab of meat partially covered in a shiny plastic wrap, captured from a slightly elevated angle with a rustic background featuring wooden textures. +2324994.jpg The steak in the image appears to be grilled with a dark, slightly charred texture, viewed from above in a styrofoam container alongside yellow rice, beans, and a flour tortilla, against a background of colorful printed flyers. +2716993.jpg The image shows two rib-eye steaks viewed from above, coated in a reddish-brown sauce, with a glistening surface texture, served alongside green beans, carrots, and a garnish of lettuce and tomatoes on a white plate and wooden table. +165639.jpg The steak has a dark brown color with visible grill marks and uneven edges, adorned with sliced green and red bell peppers and onions, presented in a Styrofoam container alongside peas, potatoes, and a roll on a wooden table. +1445352.jpg The steak, viewed from above on a white plate, is a richly marbled cut with a dark, seared crust, sitting in a pool of golden-brown juices against the backdrop of an orange table surface. +2738227.jpg The steak is grilled with dark char lines and a slightly reddish-brown surface, viewed from above on a white plate with a golden-brown baked potato and crispy fried onions beside it, set against a wooden table backdrop. +1710569.jpg The steak appears dark brown and grilled, topped with melting herb butter, sitting on a bed of orange mashed potatoes, garnished with a rosemary sprig, surrounded by carrot strips and asparagus, viewed from an overhead angle on a white plate with some sauce streaks around the edge. diff --git a/utils/area/descriptions/Food/generated_descriptions/strawberry_shortcake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/strawberry_shortcake_descriptions.txt new file mode 100644 index 0000000..8deb985 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/strawberry_shortcake_descriptions.txt @@ -0,0 +1,10 @@ +882299.jpg A stack of two light brown, textured shortcake layers sandwich a creamy filling and sliced strawberries, topped with a whole strawberry and floral decorations, set on a white plate against a wooden table with softly lit candles in the background. +439402.jpg A low-resolution image of a strawberry shortcake featuring vibrant red strawberry slices layered over a dollop of fluffy whipped cream, all resting on a round biscuit in a white bowl with a backdrop of a dimly-lit table setting. +882854.jpg The image shows a close-up view of a strawberry shortcake with vibrant red strawberries coated in a glossy glaze, topped with a generous swirl of white whipped cream and a fresh green mint leaf, all set against a blurred neutral background that highlights the dessert's rich textures and colors. +580260.jpg A circular cake with a smooth, glossy pink surface and decorative strawberries and chocolate on top, viewed from above, rests on a white plate with subtle traces of fruit along the side and background in muted tones. +1219933.jpg A square piece of strawberry shortcake is presented on a gold-edged plate, showcasing layers of sponge cake and cream with visible strawberries inside, topped with a glossy halved strawberry and a small decorative element, against a soft-focus, warm-toned background. +3139607.jpg A round strawberry shortcake seen from above is covered in smooth white cream with glossy red strawberry slices and sauce adorning the top, set against a plain light background. +1071714.jpg A slice of strawberry shortcake is presented from the side, featuring layers of pale yellow sponge and white cream with visible slices of strawberries, topped with a halved strawberry, all resting on a reflective silver foil against a dark, blurred background with metallic utensils. +5059.jpg A triangular-shaped pastry dusted with powdered sugar atop layers of vibrant red strawberries and cream, sits on a white plate with a pool of rich, dark berry sauce, against a dimly lit wooden table. +85475.jpg The image shows a strawberry shortcake with fluffy white cream, golden-brown cake layers, and vibrant red strawberries, topped with a scoop of vanilla ice cream on a dark plate. +1704125.jpg A strawberry shortcake consists of a crumbly, golden-brown biscuit divided by a rich, light cream filling topped with glossy red strawberry slices, garnished with a fresh sprig of thyme, all set on a plain white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions/sushi_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/sushi_descriptions.txt new file mode 100644 index 0000000..4daa8db --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/sushi_descriptions.txt @@ -0,0 +1,10 @@ +807186.jpg A sushi roll sliced and arranged in a row on a white plate, topped with bright orange fish roe and bits of green herbs, with visible white rice and a glimpse of seaweed wrapping, surrounded by a creamy sauce and garnished with a sprig of parsley. +638929.jpg The sushi platter features a variety of colorful pieces including bright pink tuna nigiri, glossy orange salmon, rolled sushi with white rice and seaweed, set on a clear plate against a warm wooden table with a soy sauce bottle and teacup in the background. +1496347.jpg The sushi platter features a variety of neatly arranged items including glistening orange salmon with white mayonnaise drizzle, translucent shrimp showing subtle pink hues, and glossy white fish pieces; all presented on a white ceramic plate set against a wooden tabletop backdrop. +1378463.jpg The image shows a variety of sushi pieces on a white plate, featuring vibrant colors such as pink, green, and yellow from the fish and toppings, with distinct textures like the smooth, glossy surface of raw fish and the rough, speckled appearance of seaweed, all set against a slightly blurred restaurant background. +807247.jpg A sushi roll with vibrant orange salmon on top, interspersed with pale green avocado and a sprinkle of red seasoning, is presented on a white plate with a drizzle of dark sauce and lime slices nearby, viewed in an angled side perspective. +3337386.jpg The sushi features brightly colored pieces with red and green toppings, drizzled with a yellow sauce, arranged neatly on white rectangular plates against an ornate floral-patterned tablecloth. +2349183.jpg The image shows numerous pieces of sushi roll arranged in a bright red oblong container, featuring a light beige exterior with specks, presumably sesame seeds, wrapped around a dark seaweed center and filled with a brightly colored orange ingredient, possibly fish roe or spicy tuna, viewed from an angled top-down perspective. +414450.jpg A set of sushi rolls covered in pale-colored tempura flakes and drizzled with dark soy sauce, presented in a clear plastic container with a wooden table surface visible underneath. +3790643.jpg The sushi rolls, presented upright on a white plate, are coated in a golden-brown crispy texture with the insides revealing white rice and a brown topping, set against a simple dining background with some sauce visible in a small dish. +458123.jpg The sushi features translucent off-white slices of fish with a glossy texture atop a mound of white rice, viewed from an angled top-down perspective, set against a patterned white plate with gold and brown leaf motifs. diff --git a/utils/area/descriptions/Food/generated_descriptions/tacos_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/tacos_descriptions.txt new file mode 100644 index 0000000..7b5de0f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/tacos_descriptions.txt @@ -0,0 +1,10 @@ +1505491.jpg Three tacos are visible from a top-down angle, each filled with vibrant toppings including shredded lettuce, sauce, diced onions, cilantro, visible red salsa, and sprinkled cheese, resting on lightly toasted, slightly charred tortillas against a plain background. +2031215.jpg A soft, pale tortilla shell holds a filling dominated by shredded cabbage and diced purple onions with visible chunks of grilled chicken, set against a blurred, neutral-toned background. +1710505.jpg Two soft tacos filled with golden-brown, crispy fried pieces are placed at the center of a black-and-white checkered basket, accompanied by a red sauce and green guacamole, with a background of tortilla chips and a partially visible glass on a table, suggesting a dining setting. +623353.jpg The taco features golden-brown, crispy fried filling nestled within a folded tortilla, topped with vibrant purple cabbage, and is surrounded by crinkled aluminum foil on a ceramic plate. +2347583.jpg The image shows sliced, rolled tacos filled with colorful ingredients like green and purple lettuce, placed on a white plate drizzled with a dark sauce, accompanied by a dipping sauce in a square dish, with an orange slice garnish nearby. +634820.jpg A pair of open-faced tacos with golden-brown crispy shells are filled with vibrant toppings including diced tomatoes, fresh cilantro, crumbled cheese, red cabbage, and lime wedges, set against a plain white background. +1495230.jpg A soft white tortilla cradles a piece of crispy golden-brown fried fish topped with shredded white cabbage and orange sauce, accentuated by a lime wedge against a neutral brown paper background. +3779854.jpg Three soft corn tortillas, filled with grilled shrimp covered in an orange creamy sauce, vibrant yellow mango cubes, crunchy lettuce, and diced green and red peppers, are displayed on a wooden board in a cozy dining setup with a folded napkin, utensils, and a clear glass in the dimly-lit background. +1697433.jpg Two soft-shell tacos filled with shredded cabbage and avocado slices are presented on a white plate with a dark salsa bowl and various tortilla chips, all placed on a wooden table background. +3854566.jpg Soft and hard shell tacos are arranged in a circular pattern on a bed of shredded lettuce, filled with ground meat and topped generously with melted white cheese, viewed from an overhead perspective in a dimly lit setting. diff --git a/utils/area/descriptions/Food/generated_descriptions/takoyaki_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/takoyaki_descriptions.txt new file mode 100644 index 0000000..5507186 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/takoyaki_descriptions.txt @@ -0,0 +1,10 @@ +1821738.jpg The takoyaki appears golden-brown with a glossy sheen from the sauce, topped with delicate, translucent bonito flakes, and is set on a green, textured leaf-like platter with blurred greens and reds in the background. +2545488.jpg The image shows four golden-brown takoyaki balls drizzled with dark sauce and creamy mayonnaise, topped with green herbs, presented on a red-bordered white plate with a dark utensil beside them. +2895219.jpg Golden-brown spheres with a slightly glossy, crispy texture are skewered on sticks, topped with creamy yellow sauce and bonito flakes, set on a white rectangular plate on a wooden table, surrounded by dark dishware. +2161053.jpg Golden-brown takoyaki with a slightly crispy texture are arranged on a white tray, garnished with wispy bonito flakes, and present small green flecks, against a blurred, neutral background. +381898.jpg Golden-brown spherical takoyaki drizzled with white mayonnaise and a darker sauce, topped with sesame seeds and bonito flakes, are presented on a ceramic plate with a dark table background. +343786.jpg Round, golden-brown takoyaki with a slightly crispy texture are arranged on a dark ridged plate, topped with green onion pieces, surrounded by thinly sliced vegetables and paper napkin. +2942411.jpg Golden-brown takoyaki covered in creamy white and dark sauce, garnished with vibrant orange strips and green herbs, served on a textured rectangular plate with a wooden skewer, set against a wooden table background. +287837.jpg Golden-brown and spherical, the takoyaki is topped with creamy white sauce and dark, glossy sauce, sprinkled with delicate bonito flakes, and served on a light wooden tray against a blurred, dark wooden table background. +2381597.jpg The takoyaki appear golden-brown with a slightly crispy texture, topped with creamy white sauce and garnished with green flakes, viewed from above on a white plate held by a hand against an outdoor background. +2916748.jpg The takoyaki appear golden-brown with a slightly crispy texture, topped with translucent bonito flakes and creamy sauce, photographed from a slightly elevated angle in a white container with a blurred, red-toned background. diff --git a/utils/area/descriptions/Food/generated_descriptions/tiramisu_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/tiramisu_descriptions.txt new file mode 100644 index 0000000..f237e50 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/tiramisu_descriptions.txt @@ -0,0 +1,10 @@ +2680.jpg The tiramisu slice, topped with a dusting of cocoa and a powdered sugar-coated ladyfinger, has distinct layered textures of cream and cake with a smooth marbled appearance, and is artistically presented on a white plate alongside halved strawberries and decorative chocolate drizzles, viewed from a slightly elevated angle that highlights its elegant presentation. +1669750.jpg A cylindrical portion of tiramisu with layers of creamy white mascarpone and coffee-soaked dark cake is garnished on top with cocoa powder and chocolate sticks, centered on a white plate with a strawberry-topped dessert cup and slices of kiwi on one side, all set against a dark wooden table backdrop scattered with pepper shakers and dishes. +3485625.jpg The tiramisu features a dense cocoa powder layer covering the top, with a slight sheen and uneven texture, captured from an angled viewpoint in a glass dish, set against a dark, smooth kitchen countertop background. +401614.jpg A single slice of tiramisu sits on a white plate, featuring a smooth, light beige cream layer with dark chocolate syrup swirled artistically on top, placed against a neutral background with a spoon beside it. +541848.jpg A square piece of tiramisu with a light cream-colored surface topped with a cocoa fleur-de-lis design is placed on a white plate drizzled with chocolate sauce, surrounded by a few scattered cocoa powder specks, while a hand is reaching towards it from the right. +550279.jpg The tiramisu features a creamy, light brown layered base with a dusting of cocoa powder on top, garnished with artistic white chocolate decorations, and is displayed on a dark surface with a sign, under soft lighting that creates gentle shadows. +3411270.jpg This tiramisu slice features a rich dark cocoa-dusted top, creamy beige layers with visible sponge cake, viewed from the side on a plain plate, set against a softly blurred background that hints at a dining setting. +1157925.jpg A small glass containing a light yellow dessert, topped with a dusting of cocoa powder, is placed on a white square plate next to a cup of coffee with latte art, on a dark-colored wooden table. +1577639.jpg A slice of tiramisu with layers of cream and coffee-soaked sponge is dusted with cocoa and chocolate shavings, presented on a white plate with a drizzle of chocolate sauce, set on a table with a red checkered pattern in the background and a cappuccino beside it. +1826877.jpg A rectangular slice of tiramisu is viewed slightly from above, showcasing layers of creamy beige mascarpone spotted with a generous dusting of cocoa powder and hints of coffee-soaked sponge, set against a plain white plate background. diff --git a/utils/area/descriptions/Food/generated_descriptions/tuna_tartare_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/tuna_tartare_descriptions.txt new file mode 100644 index 0000000..e46a612 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/tuna_tartare_descriptions.txt @@ -0,0 +1,10 @@ +1653002.jpg A cylindrical stack of pinkish-red tuna pieces, mixed with specks of green herbs, is topped with a light beige, crumbly layer, set on a white plate in a low-resolution image. +2707586.jpg Thinly sliced red tuna with a glossy texture is nestled in crispy pastry cups and topped with thin green onion shreds, set against a blurred background of similar appetizers. +606902.jpg The tuna tartare appears as a neatly molded, cylindrical stack of small, raw, deep-red tuna cubes with a slightly glistening surface, topped with green herb bits, presented on a rectangular white dish next to a neat arrangement of golden-brown, translucent chips, set against a softly blurred background with a beer bottle and glass. +3161553.jpg A neatly layered tuna tartare showcases a pinkish-red base topped with a vibrant yellow garnish and slices of mushroom, set against a white plate with an artistic drizzle of sauce and accompanied by a fresh green salad. +385203.jpg The dish features a circular mound of finely chopped red tuna with a smooth texture, adorned with bright green roe on top, resting on a layer of chopped avocado and diced onions, all presented on a white plate with green sauce drizzles and a dimly lit background. +3451087.jpg A cube of finely diced, pinkish-red tuna sits adorned with specks of green herbs and topped with vibrant mixed greens, beside a light-colored sauce-covered item, all set against a dark, blurred background with a white plate. +1692900.jpg A circular serving of vibrant pink tuna tartare with visible cube-like chunks, topped with fresh green herbs, is set against a drizzled, orange sauce on a plain white plate. +2146550.jpg The tuna tartare is presented with a mixture of pinkish-red tuna chunks and green avocado atop a layer of crispy white rice crackers, set on a translucent white plate with a softly blurred, bright outdoor background. +1777154.jpg A cylindrical portion of tuna tartare, with a deep red hue and glistening texture, is topped with herbs and sits on a white plate alongside triangular, lightly speckled tortillas, viewed from an angled overhead perspective. +3397062.jpg The tuna tartare features vibrant red cubes of tuna layered over a bed of green avocado, presented on a black rectangular slate, with a background of smooth white stones. diff --git a/utils/area/descriptions/Food/generated_descriptions/waffles_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions/waffles_descriptions.txt new file mode 100644 index 0000000..cdb8e7e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions/waffles_descriptions.txt @@ -0,0 +1,10 @@ +3014777.jpg Golden-brown, square waffles stacked on a plate topped with two scoops of ice cream in a dimly lit dining setting, with drizzled chocolate sauce and a glass of water in the background. +3855881.jpg A golden-brown, circular waffle with a crisp, grid-patterned texture is viewed from above on a white plate, lightly dusted with powdered sugar, accompanied by a small dish of vanilla ice cream on a light-colored surface background. +1547700.jpg Golden-brown waffles with a grid pattern are topped with a dollop of cream and purple-hued fruit sauce, seen from a slightly elevated viewpoint against a cozy cafe setting with floral arrangements and mismatched chairs in the background. +2833351.jpg The waffle is golden-brown with visible square patterns, drizzled generously with dark chocolate sauce, topped with a dollop of whipped cream, and displayed on a white plate against a dimly lit background with a drink beside it. +342167.jpg The waffles are a vibrant red color with a glossy texture and are positioned on a white plate topped with a drizzle of red syrup, accompanied by whipped cream and sliced strawberries, with a sprig of mint, against a dark background with a hint of reflective glassware. +789971.jpg Two golden-brown waffles with a grid pattern are drizzled with chocolate sauce, viewed from above, surrounded by sliced kiwi and melon, with whipped cream and a deep plate background. +3460768.jpg A golden-brown waffle topped with a dollop of white cream and an assortment of fresh berries is captured from a slightly angled top view against a softly blurred warm-toned background with hints of red and yellow. +2006225.jpg The waffles are a rich golden-brown with a crispy texture, presented upright on a white plate alongside scoops of vanilla ice cream drizzled with dark chocolate syrup, against a dark tabletop background. +3086867.jpg A round, golden-brown waffle topped with a scoop of ice cream, almond slices, and chocolate drizzle is viewed from above on a white plate against a light wooden tabletop, with a portion of utensils in the background. +3209670.jpg A golden-brown waffle with a crispy, grid-like texture is viewed from above, topped with a dollop of melting butter, on a plate surrounded by remnants of a meal and a glossy table surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/apple_pie_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/apple_pie_descriptions.txt new file mode 100644 index 0000000..fb7031f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/apple_pie_descriptions.txt @@ -0,0 +1,6 @@ +2337652.jpg A dimly lit apple pie rests on a glass plate, with a glossy, dark brown hue and shiny, glazed surface texture, accompanied by a metal pie server indicating a missing slice, placed on a patterned, colorful tablecloth backdrop. +3376635.jpg The image depicts a low-resolution apple pie with a green tint, showcasing a flaky crust and visible interior texture from a side angle, partially held in a metallic baking cup on a simple plate, with one side slightly occluded by the crust. +2967700.jpg The apple pie appears in low resolution with a glossy, deep amber hue possibly due to color augmentation, topped with a swirl of cream and a small chocolate piece, positioned on a white plate alongside a scoop of ice cream with caramel sauce drizzles, viewed from a three-quarter angle under warm ambient lighting. +392009.jpg The apple pie, viewed from a slightly elevated angle, displays a golden-brown lattice crust with a glossy surface, partially occluded by a child in the background against a neutral indoor kitchen setting. +2921600.jpg The apple pie slice is viewed from an angle showing its golden-brown crust with a slightly reddish hue, layered apple filling visible beneath the uneven top crust on a white plate with partial occlusion by a dark-colored tray and nearby printed papers. +909196.jpg A rectangular apple pie with a pale yellow, textured crust and visible filling is partially wrapped in green packaging, resting on a white cloth with a corner slightly missing, exposing its interior. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/baby_back_ribs_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/baby_back_ribs_descriptions.txt new file mode 100644 index 0000000..c1672dc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/baby_back_ribs_descriptions.txt @@ -0,0 +1,6 @@ +538558.jpg The baby back ribs appear dark maroon with a slight glossy sheen and charred texture, viewed from a top-down angle, with parts of the meat and grill rack partially obscured by a smoky, shadowy environment that enhances the contrast. +479382.jpg The baby back ribs appear dark and slightly glossy with a reddish-brown hue, viewed from above with a slight tilt, placed on a white plate next to a small cup of baked beans and coleslaw, with parts of the ribs partially shaded or obscured by the ambient low light. +3003568.jpg The baby back ribs appear in an unnatural purple hue with a glossy texture, positioned at an angle on a plate with a base of white rice, partially obscured by vibrant red and green garnishes. +3612206.jpg The baby back ribs appear with a glossy, dark brown glaze, oriented horizontally with the bones facing left, against a dimly-lit wooden surface, partially overlapping a tart on the left and bordered by a white plate, revealing a charred texture and caramelized edges enhanced by the lighting. +922067.jpg The baby back ribs appear dark purple with a glossy, slightly textured surface, viewed from above with a prominent shiny metal sauce container atop a white plate, surrounded by mashed potatoes and sautéed vegetables. +153883.jpg The baby back ribs, viewed from above on a grill, appear with a reddish-brown hue and a charred texture, with the grill's metal bars creating distinct linear patterns over the meat, while glowing coals beneath illuminate the scene with a warm red-orange ambiance. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/baklava_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/baklava_descriptions.txt new file mode 100644 index 0000000..367f881 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/baklava_descriptions.txt @@ -0,0 +1,6 @@ +2015707.jpg Numerous pieces of baklava are displayed in a grid, exhibiting a reddish hue with a glossy, syrupy texture, viewed at a slight angle showing the layers with minimal occlusion and surrounded by more similar pieces. +2534447.jpg This low-resolution image shows a light green and tan baklava with a soft, granular texture, positioned diagonally in a white foam container on a wooden tabletop, surrounded by people and other food items, with the ambient lighting casting a slightly dimmed effect. +884587.jpg The baklava appears greenish due to color augmentation, with a glossy texture, arranged in triangular pieces on a white plate, garnished with small berries and mint, viewed from above. +1763369.jpg The image shows triangular pieces of baklava with a shiny, golden-yellow texture, viewed from above on a white plate adorned with powdered sugar and garnished with red and blue berries on the right side. +854872.jpg The baklava appears in a horizontal orientation with a warm reddish-brown hue and visible layers of flaky pastry, topped with crushed nuts, laying on a reflective blue surface. +2426116.jpg The baklava appears in a corner perspective, showing a glossy, light yellow top layer with visible chopped green pistachios, while the interior has a dark brown, textured nut mixture, and the surrounding environment appears dimly lit, highlighting the moist surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/beef_carpaccio_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/beef_carpaccio_descriptions.txt new file mode 100644 index 0000000..317b5b2 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/beef_carpaccio_descriptions.txt @@ -0,0 +1,6 @@ +1916354.jpg The beef carpaccio in the image appears with an unusual greenish-orange tint due to color augmentation, is arranged in thin slices with a texture that seems smooth but disrupted by bright highlights, viewed from a slightly elevated angle with partial occlusion by a heaped garnish of leafy greens and grated cheese, all set against a plain white plate in a dimly lit environment. +1334166.jpg The dish features thinly sliced, dark-toned beef arranged in a circular pattern on a blue plate, garnished with vibrant orange slices and green leafy accents in the center, partially covered by white-tinted elongated strips and viewed from an overhead angle. +2287114.jpg The image shows a plate of beef carpaccio with a predominantly reddish hue and a coarse texture, adorned with scattered greens and shaved cheese slices, viewed from an angle with evident occlusion of a bread roll on the left and a pepper mill blurred in the background. +2217913.jpg The beef carpaccio appears in a vibrant pink hue due to color augmentation, with a finely marbled texture beneath a sprinkle of shredded cheese, viewed from a top angle; there is a purple-hued garnish and small green olives at the top edge, set against a softly patterned pastel background. +847775.jpg The beef carpaccio appears as thin slices with a reddish-brown hue, surrounded by greenish garnish and sauce, viewed from above on a round white plate, with scattered herbs and a lime wedge adding visual contrast. +1493182.jpg The image depicts a plate of beef carpaccio with a sepia tone, featuring thin, overlapping slices with smooth texture, garnished with ruffled yellow crisps and green leaves, drizzled with streaks of white sauce, viewed from above on a wooden table setting. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/beef_tartare_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/beef_tartare_descriptions.txt new file mode 100644 index 0000000..577a921 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/beef_tartare_descriptions.txt @@ -0,0 +1,6 @@ +3118786.jpg The image shows small, roughly textured chunks of beef tartare with an unusually dark and reddish tone on crostini, accompanied by creamy white cheese, served on a narrow, white plate with scattered green arugula, viewed from an angled perspective, with a dark background. +2169059.jpg The image shows a bright yellow-green beef tartare with a coarse texture and a topping of thin, curly greens, viewed from a slightly elevated angle, beside a stack of evenly cut, round toasted bread slices. +3118257.jpg A dark, circular mound of finely chopped beef is presented on a glossy, oil-slicked plate, with a garnish of small green herbs on top, appearing dim against a low-light setting. +270675.jpg The beef tartare appears as a desaturated, grayish mass with a coarse texture, positioned flat on a white plate, partially surrounded by pale fries, with the viewpoint from above showing a dimly lit dining setting with bread on the side. +1837012.jpg The image shows a colorful beef tartare with augmented reddish-pink chunks mixed with capers, positioned at a diagonal angle on a white plate, adorned with crispy brown slices and garnished with scattered herbs, amidst splashes of orange puree and oil droplets on the surface. +1712013.jpg The dish appears as a dark, warmly-toned concoction with a vibrant orange yolk centrally placed over a minced, irregularly textured surface, garnished with scattered green herbs against a background of dim lighting and partially visible brownish accompaniments. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/beet_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/beet_salad_descriptions.txt new file mode 100644 index 0000000..d6e2c61 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/beet_salad_descriptions.txt @@ -0,0 +1,6 @@ +614218.jpg A vibrant beet salad is presented with altered yellowish greens, contrasted against deep purple beets, topped with visible crumbles of cheese and surrounded by an assortment of yellow-tinted leafy greens, all placed on a white plate on a metal mesh table, with condiment shakers and a drink in the background. +421341.jpg A low-resolution image of a beet salad shows triangular chunks of dark maroon and orange beets contrasting with pale green endive leaves, illuminated by warm candlelight that casts soft shadows in the dining setting. +3165387.jpg This beet salad features alternating slices of vibrant orange and deep purple beets set against a bed of light green arugula, garnished with white crumbles and dark, glossy pecans, viewed from above. +1022174.jpg The beet salad appears with a purple hue and a textured surface mixed with white crumbles, presented on a plate with vibrant magenta sauce splatters, featuring visible shreds and seeds from a slightly elevated diagonal viewpoint and no significant occlusion. +2353523.jpg The beet salad features vibrant purple beets and bright green lettuce on a dark slate with a creamy white dressing base, adorned with red and white sliced onions, visible from a side angle, against a blurred wooden table and pink chairs backdrop, with a few nuts interspersed. +298196.jpg The beet salad appears with dark purple hues and visible glossy textures, topped with white crumbly cheese and bright green leafy garnishes, in an oval dish viewed from above, with minor occlusion by a reflective metal spoon on the side. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/beignets_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/beignets_descriptions.txt new file mode 100644 index 0000000..0063d7e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/beignets_descriptions.txt @@ -0,0 +1,6 @@ +657625.jpg The beignets are red due to color augmentation, heavily dusted with white powdered sugar, placed on a plate on a gray-speckled surface, with their triangular shape and fluffy texture partly obscured by the thick sugar coating. +2043752.jpg A low-resolution image features a beignet with darkened, sepia tones and coarse texture, partially covered in powdered sugar, positioned upright in a dish, alongside a coffee cup and glass on a speckled tabletop, viewed from above. +1655915.jpg Fluffy, golden-brown beignets with a heavy dusting of powdered sugar are piled on a small plate set on a speckled tabletop, seen from a slightly angled top-down perspective beside a cup of iced beverage. +3179597.jpg The image shows three beignets with a reddish hue, dusted with powdered sugar, positioned on a white plate from an overhead view, with a scattered layout and soft shadowing indicating mild occlusion on the right side. +26379.jpg The beignets, appearing yellow due to color augmentation, are covered generously with white powdered sugar, placed on a small round plate with a view from above, next to a cup and glass on a speckled tabletop, exhibiting a soft and fluffy texture. +3767212.jpg The beignets in the image are heavily dusted with white powdered sugar, exhibiting a golden-brown color with a somewhat crispy texture, placed at a tilted angle inside a white foam container on a vibrant and slightly blurry background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/bibimbap_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/bibimbap_descriptions.txt new file mode 100644 index 0000000..1985bae --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/bibimbap_descriptions.txt @@ -0,0 +1,6 @@ +2292732.jpg A vibrant bibimbap viewed from a slightly angled top-down perspective features a striking overlay of red-orange sauce across varied textures of lightly tinted vegetables and rice, set within a dark, speckled stone bowl against a blurred wooden background. +2521325.jpg The bibimbap appears in a stone bowl with predominantly brown and green colors visible from a top-down angle, featuring shredded meat and mushrooms with a glossy texture, accompanied by a beverage and soup on a tray. +2990859.jpg A low-resolution image of bibimbap shows a glossy black bowl containing various ingredients like green vegetables, white rice, and red sauce arranged in irregular clusters, with visible dim lighting and dark-textured placemats surrounding the dish. +2489895.jpg A top-view image shows a color-enhanced bibimbap in a black bowl with vibrant, textured ingredients such as vividly green vegetables, bright white rice, and a fried egg topped with sesame seeds, surrounded by bowls of side dishes and an orange-tinted soup on a stark white surface. +3649090.jpg The bibimbap, viewed from above, appears in a deep red hue with a grainy texture filling a black bowl on a white plate, set against a pink-tinted wooden table, with metallic utensils partially visible along the sides. +1757745.jpg A close-up view from above shows a stone bowl filled with a bright, saturated mix of textures, featuring a vibrant sunny-side-up egg with drizzled orange sauce atop lightly browned crispy rice and dark seared beef, set against a neutral background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/bread_pudding_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/bread_pudding_descriptions.txt new file mode 100644 index 0000000..eedaa82 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/bread_pudding_descriptions.txt @@ -0,0 +1,6 @@ +1911840.jpg Two dense and vibrant red-orange rectangular pieces of bread pudding, speckled with dark spots, appear at an angle on a light surface, with a larger portion nestled in a transparent plastic container visible below. +287532.jpg The low-resolution image shows a dish with a reddish hue, featuring a textured, crumbly surface indicative of bread pudding, positioned at a slight angle with a scoop of ice cream on top, partially obscured by shadows and situated in a dimly lit bowl. +2083955.jpg A dark brown, glossy bread pudding with a speckled appearance of small nut pieces sits in a pool of vibrant yellow sauce, viewed from above with a shadow partially covering the dessert, on a white plate dusted with white powder. +595191.jpg The bread pudding, viewed from a slightly elevated angle, appears pale yellow with a fluffy, dome-shaped top drizzled in a glossy, light glaze, and is seated in a small white ramekin on a doily, accompanied by a spoon. +1191029.jpg A low-resolution image shows a bread pudding with a warm, orange-brown hue and a coarse texture, topped with a scoop of ice cream, viewed from a slightly elevated angle in a white dish against a dark background. +1617549.jpg A golden-brown, dome-shaped bread pudding, viewed from above, is dusted with powdered sugar and garnished with green leaves, sitting in a pool of creamy sauce on a round white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/breakfast_burrito_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/breakfast_burrito_descriptions.txt new file mode 100644 index 0000000..2523991 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/breakfast_burrito_descriptions.txt @@ -0,0 +1,6 @@ +473206.jpg The breakfast burrito, oriented diagonally on a white oval plate with a brown rim, is covered with a glossy, greenish-yellow sauce highlighting its smooth, soft texture, and part of the filling is visible where the wrap is slightly open, surrounded by a dark, wooden surface. +1492815.jpg The breakfast burrito is oriented horizontally on a white plate, covered with a thick dollop of light green sauce, topped with diced tomatoes and scallions, set against a backdrop of black beans on the right and golden-brown potatoes on the left. +1860425.jpg The breakfast burrito appears in a vertical orientation with a foil wrapping partially peeled back to reveal a colorful and textured filling, including prominent hues of orange and yellow from eggs and other ingredients, under bright lighting with slight occlusion from a hand at the bottom right. +254589.jpg The visually augmented breakfast burrito appears in a cool-toned color palette with a creamy and textured outer layer, sliced open to reveal densely packed ingredients including rice-like textures and strips, with a partially visible environment featuring a plate, utensils, and a knife handle in the background. +2685695.jpg The breakfast burrito, viewed from a side angle, appears in a high-contrast, sepia-like tone, revealing a textured and slightly browned wrap with visible green leafy contents peeking out and some red sauce on the plate next to it. +1517807.jpg The breakfast burrito, viewed from an overhead angle, appears beige with a smooth, slightly mottled texture, cut in half to reveal a filling of scrambled eggs, cheese, and bits of brown sausage, situated on a dark plate alongside small containers of red sauce, set on a wooden table. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/bruschetta_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/bruschetta_descriptions.txt new file mode 100644 index 0000000..1f18e07 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/bruschetta_descriptions.txt @@ -0,0 +1,6 @@ +731436.jpg The image shows several slightly sideways-oriented pieces of bruschetta with a pale yellowish hue and a coarse texture topped with finely chopped, orange-toned tomatoes and a sprinkle of grainy, light-colored seasoning, accompanied by a green garnish at the center on a plate. +2860436.jpg The bruschetta appears in a sepia-toned image with creamy toppings and herbs on toasted bread, oriented flat from an overhead view on a rustic wooden board with soft focus highlighting the textures and arrangement. +629893.jpg A low-resolution, rotated photo shows a piece of toasted bruschetta smeared with olive oil, topped with diced red tomatoes and fresh green basil, all lightly seasoned with black pepper, set on a white plate in a dimly lit environment, creating a soft yellowish hue. +319689.jpg The bruschetta appears in a warm, golden hue with a coarse, chunky texture from the diced tomato topping on toasted bread, arranged in a cross formation on a white plate with a few green leaves, while a cartoonish card stands nearby, adding a playful element to the setting. +1270421.jpg Three pieces of bruschetta are arranged on a wooden board, each topped with thin, light green strips resembling shredded apples, with a visible dark topping beneath and warm, golden-brown bread, viewed from above with shadows partly obscuring the edges. +3922510.jpg The bruschetta appears from a slightly elevated angle, with altered dark hues showcasing vibrant cherry tomatoes, creamy mozzarella, and green basil, all drizzled with balsamic reduction and perched on toasted bread, with a slightly blurred table and a stemmed glass partly visible in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/caesar_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/caesar_salad_descriptions.txt new file mode 100644 index 0000000..1ac69cf --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/caesar_salad_descriptions.txt @@ -0,0 +1,6 @@ +793492.jpg The image shows a plate of Caesar salad with vibrant, darkened green lettuce leaves underneath creamy beige dressing and coarse croutons, viewed from a slightly elevated angle with a metal fork and knife resting on the side, and some white powdered cheese scattered on top and around the plate. +1841183.jpg A pink-tinted, low-resolution image depicts a Caesar salad with a distinct grilled, crisscross-patterned protein on top, slightly tilted on a white plate with some greens and dressing partially obscured, set on a wooden table. +3228048.jpg The caesar salad appears in a darkened hue with purplish lettuce and pinkish cheese on top, viewed from a side angle on a white plate, with a fork in the dimly lit background and leafy textures still discernible despite the color shifts. +3671604.jpg The image shows a Caesar salad with a reddish tint and low resolution, featuring shredded lettuce covered in a generous layer of finely grated cheese, viewed from an overhead angle on a round plate with darkened edges. +2794828.jpg The caesar salad, viewed from a slightly elevated side angle, features a warm hue with visible grilled bread slices atop vibrant greens and olives, accompanied by tomatoes and shavings of white cheese, lightly occluded by a foreground napkin and set against a blurred wooden surface and plant background. +2290959.jpg This visually augmented caesar salad features a predominantly reddish and greenish appearance with a coarse texture, viewed from above, showcasing an array of vivid croutons and leafy greens mixed with visible dressing, surrounded by a grayish background with no significant occlusion. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/cannoli_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/cannoli_descriptions.txt new file mode 100644 index 0000000..8cf12e5 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/cannoli_descriptions.txt @@ -0,0 +1,6 @@ +318079.jpg The cannoli appears at an oblique angle with a golden-brown shell dusted in powdered sugar, filled with pale mint-green cream, situated on a reflective, ridged surface likely inside a plastic container, with clear visibility on the left and right edges of the cream-filled openings. +1772271.jpg The image shows a softly textured cream-filled cannoli with muted red-brown pastry and white filling, angled diagonally on pink-tinted parchment, accompanied by partially visible glassware and a beige cup in a dimly lit setting. +1358599.jpg A slice of cake with a textured brown topping and a glossy red strawberry on top is viewed from the side with visible layers of white creamy filling and a light green base, accompanied by a wavy chocolate drizzle on a light-colored plate. +2734104.jpg A lime-green cannoli with a rough, speckled texture rests horizontally on a white plate, revealing a partially visible filling of mixed green and white colors at one end. +3735009.jpg A visually augmented cannoli with a golden-brown crispy shell laying diagonally on a patterned white napkin, filled with cream on both ends and topped with bright red cherry pieces, is covered in a light dusting of powdered sugar. +892394.jpg This cannoli, viewed from a side angle, displays a light brown, crisp shell with powdered sugar dusting, and is filled with creamy, white filling that slightly overflows, set against a background of branded paper wrapping. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/caprese_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/caprese_salad_descriptions.txt new file mode 100644 index 0000000..d147a93 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/caprese_salad_descriptions.txt @@ -0,0 +1,6 @@ +1041456.jpg The caprese salad appears with enhanced reds and greens, featuring thick tomato slices, shredded basil, and mozzarella on top, viewed from a slightly elevated angle with dark surroundings and slight occlusion from a dark shadow, all atop a glossy, round white plate. +2548008.jpg Slices of bright red tomatoes and vibrant green basil leaves are arranged in an overlapping pattern, accompanied by creamy white mozzarella, with a drizzle of dark balsamic reduction visible; the image has a slightly altered hue giving it a more saturated and shadowy appearance, with the viewpoint showing the salad at a tilted angle on a plain white plate. +810934.jpg Sliced mozzarella and brightened basil leaves are arranged with cherry tomatoes on a skewed plate, alongside olive-drizzled bread and balsamic glaze, creating a visually augmented caprese salad with enhanced contrast. +2773242.jpg The caprese salad, viewed from above, features desaturated slices of tomato and mozzarella arranged alternately on a white plate, with vibrant green basil leaves on top, set against a muted and lightly blurred dining environment. +831647.jpg A plate features layers of red and orange-tinted tomatoes, creamy white mozzarella slices, and topped with green peppers, with a slight sepia tone and partial shadowing on the right edge, partially obscuring the tabletop in a tilted orientation. +2085887.jpg The image shows a caprese salad with a dominant reddish hue and irregular texture, featuring alternate layers of tomatoes and cheese topped with dark leaves and green herbal garnishes, viewed from an overhead angle on a patterned tablecloth, with some parts partially obscured by other ingredients. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/carrot_cake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/carrot_cake_descriptions.txt new file mode 100644 index 0000000..4b48413 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/carrot_cake_descriptions.txt @@ -0,0 +1,6 @@ +212139.jpg The carrot cake appears reddish with a rough texture, topped with white frosting and walnut pieces, placed on a decorative blue plate with floral-patterned surroundings and viewed slightly from above with a fork on the right side. +218491.jpg The low-resolution image shows a plate with two slices of textured white-and-pink carrot cake squares, accented with small green scallion pieces, viewed from a slightly elevated angle against a dark background. +2084962.jpg A slice of carrot cake with layered brown and cream textures is presented horizontally on a light plate, set against a neutral background with its top slightly tilted, showcasing a creamy frosting despite some color distortion and blurred details. +1377324.jpg The image shows a carrot cake with a muted reddish-orange and green top featuring a petal-like design, adorned with purple jelly-like spheres on white frosting rosettes, viewed from an angle that emphasizes the cake's textured, ridged side. +2238258.jpg A slice of carrot cake is tilted slightly with a rich, dark brown sponge and cream cheese layers, topped with orange and green frosting shaped like a carrot, while the surrounding environment is dimly lit with a metallic fork partially embedded on top. +224939.jpg The image shows a dish with a golden-brown, crispy texture resembling a savory pancake topped with pink shrimp and garnished with chopped green onions, viewed from above on a white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/ceviche_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/ceviche_descriptions.txt new file mode 100644 index 0000000..ea4febe --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/ceviche_descriptions.txt @@ -0,0 +1,4 @@ +2173304.jpg A bowl of ceviche viewed from above, featuring augmented bright colors with visible chunky white fish pieces, red onions, yellow corn, and red peppers, alongside golden-brown fried chips on a white plate, with a gentle shadow cast on a dark wooden surface. +1520895.jpg Thinly sliced translucent fish pieces with a glossy texture are piled on a white plate, topped by visible slivers of red onion and small red chili bits, all drenched in a pale creamy liquid, creating a softly contrasting color scheme against the dark background. +1489893.jpg The dish appears with a reddish-pink hue covering chunks of seafood, accompanied by a decorative purple flower and lemon wedges, served on a white plate oriented vertically, with visible liquid pooling around the ingredients. +1590657.jpg The ceviche, viewed from above, appears as a vibrant mix of pinkish-purple and beige pieces, surrounded by green leafy garnishes, accompanied by a small sauce cup, all set against a soft-focus background and a white plate partially occluded by the dish. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/cheese_plate_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/cheese_plate_descriptions.txt new file mode 100644 index 0000000..77d3bd0 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/cheese_plate_descriptions.txt @@ -0,0 +1,3 @@ +686403.jpg The image shows a pile of cube-shaped objects with a smooth, uniformly white appearance, scattered unevenly across a textured, teal-tinted surface, partially in shadow with some visual obfuscation at the edges, suggesting a top-down viewpoint. +327839.jpg The low-resolution, visually augmented image displays a cheese plate with altered hues, featuring a darkened assortment of cheese with discernible textures alongside a spoon in a vibrant sauce, slices of bread, and crackers arranged on a white square plate in a dimly lit setting with a soft shadow cast across the top and sides. +2773978.jpg The cheese plate appears in a warm, orange-hued tint with various cheese wedges and garnishes arranged radially on a round plate, viewed slightly from above, surrounded by a blurred table setting, with distinct textures of soft and firm cheeses visible despite the low resolution. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/cheesecake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/cheesecake_descriptions.txt new file mode 100644 index 0000000..678d129 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/cheesecake_descriptions.txt @@ -0,0 +1,3 @@ +780915.jpg The dessert features a wedge-shaped piece with a striped, creamy texture and light-colored tint, topped with swirls of white cream and bright pink sauce, viewed from an overhead angle on a white plate alongside a dollop of orange sorbet adorned with a mint leaf. +2094088.jpg The cheesecake appears in a rotated vertical orientation with a glossy, dark maroon topping resembling fruit compote covering the top, contrasted by a lighter base with a creamy texture, surrounded by multiple metal forks and resting on an oval plate. +1696582.jpg The low-resolution, visually augmented image shows a cheesecake with dark, glossy fruit topping, primarily purple and red hues, set on a white plate with a swirl of red sauce and a visible strawberry garnish to the side, viewed from an overhead angle. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/chicken_curry_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/chicken_curry_descriptions.txt new file mode 100644 index 0000000..54d8cc4 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/chicken_curry_descriptions.txt @@ -0,0 +1,3 @@ +3909329.jpg The chicken curry appears in a metallic dish with a vibrant golden hue due to the visual augmentation, with a glossy texture accented by chopped green herbs on top, viewed top-down at a slight angle, set against a wooden surface with parts of the dish partially shadowed. +2653549.jpg A reddish-brown chicken curry with a smooth, slightly glossy texture and visible chunks of meat is presented from an angled top view, housed in a white bowl, alongside a round egg, with rice and pickled vegetables faintly visible in the blurred background. +1482382.jpg A vibrant dish presents chunks of chicken and rice mingled with a variety of vegetables like broccoli and red peppers in a creamy, orange-tinted curry sauce, seen from above and partially obscured by the vegetables. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/chicken_quesadilla_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/chicken_quesadilla_descriptions.txt new file mode 100644 index 0000000..90cfc30 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/chicken_quesadilla_descriptions.txt @@ -0,0 +1,3 @@ +3172049.jpg The image shows a chicken quesadilla featuring a vivid pink tint with a rough, layered texture, partially obscured by a bright surface glare in an angular perspective, revealing frayed edges and a hint of wrapped packaging. +75897.jpg The low-resolution, augmented image depicts a chicken quesadilla with a greenish hue, positioned flat inside a light-colored bamboo steamer, featuring visible grill marks, topped with scattered vegetables and sauce, and surrounded by parchment-like wrapping. +1126297.jpg The chicken quesadilla, viewed from above, appears golden-brown with a slightly crisp texture, positioned on a white plate next to a large serving of fries, with visible creamy and red sauces in small cups, all under a dim, cool-toned lighting. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/chicken_wings_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/chicken_wings_descriptions.txt new file mode 100644 index 0000000..5ae8b29 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/chicken_wings_descriptions.txt @@ -0,0 +1,3 @@ +572328.jpg The chicken wings appear as vibrant orange with a glossy, saucy texture, arranged on a checkered surface, with some wings partially hidden beneath others, showcasing a glossy coating and a slightly tilted presentation from a top-down view. +1977168.jpg The low-resolution image shows chicken wings with a dark reddish-brown glossy texture, possibly due to saucing, displayed on a light-colored plate alongside a small bowl of white dipping sauce and some diagonally cut vegetable sticks. +2203217.jpg The chicken wings appear pale orange with a glossy surface, oriented in a semi-overlapping arrangement on a white plate, accompanied by a bowl of white dipping sauce and light-colored vegetable sticks, with the background showing a light wood texture. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/chocolate_cake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/chocolate_cake_descriptions.txt new file mode 100644 index 0000000..4ed1d73 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/chocolate_cake_descriptions.txt @@ -0,0 +1,3 @@ +577717.jpg I'm sorry, I can't identify the object in the image. +3063900.jpg A low-resolution image shows a glazed chocolate cake slice tilted on its side, with a glossy, smooth surface appearing brownish due to dim lighting, resting on a white plate beside cutlery, partially obscured by shadows and surrounded by blurred dining table items like a water glass and candle. +3575528.jpg The image shows a chocolate cake seen from a top-down perspective, with a bluish tint and star-shaped frosting texture, placed on a reflective surface with a slightly darkened environment. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/chocolate_mousse_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/chocolate_mousse_descriptions.txt new file mode 100644 index 0000000..5310098 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/chocolate_mousse_descriptions.txt @@ -0,0 +1,3 @@ +2454716.jpg The chocolate mousse, viewed from a tilted angle, appears pale brown with a glossy, smooth texture, and is served in multiple glass bowls on a bright surface, with subtle reflections from a nearby light source. +2836683.jpg The chocolate mousse appears as a dark, grainy, cylindrical shape dusted with a light powder on top, set on a square white plate with a contrasting small scoop of ice cream and cocoa powder to one side, viewed from an overhead angle in a dimly lit environment. +595035.jpg A wedge-shaped slice of chocolate mousse cake with a smooth, matte brown top and a denser, dark chocolate base sits on a decorative plate against a wooden table, viewed slightly from above with soft lighting highlighting the even, creamy texture, surrounded by other dishes. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/churros_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/churros_descriptions.txt new file mode 100644 index 0000000..615d02a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/churros_descriptions.txt @@ -0,0 +1,3 @@ +3492216.jpg The churros appear in a golden-brown hue with a granular sugary texture, positioned vertically in a metal cup, next to a small white cup of chocolate, with soft indoor lighting creating slight reflections on the table surface. +1086460.jpg Brown churros with a gritty texture are arranged in a star-like pattern on a reflective metal tray, partially dusted with white powder, amidst an array of other baked goods in a dimly lit setting. +1801080.jpg The churros are golden-brown with a sugar-coated texture, arranged in a spiral pattern inside a clear glass, viewed from above with a lemon-yellow dipping sauce beside them on a white napkin. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/clam_chowder_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/clam_chowder_descriptions.txt new file mode 100644 index 0000000..e1c9446 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/clam_chowder_descriptions.txt @@ -0,0 +1,3 @@ +2018024.jpg The image depicts a bowl of clam chowder with a smooth, creamy texture and a warm, light pinkish hue, viewed from an overhead angle, showing subtle bits of clams or seasoning near the surface, set against a neutral background with a partial occlusion by the container edge. +3738431.jpg The visually augmented clam chowder appears cream-colored with a pink tint, showcasing chunky textures of red and green particles, viewed from a slightly elevated angle with partial occlusion by a spoon and packet on a white surface. +2078993.jpg The clam chowder, viewed from above, appears in a pale green hue with a creamy, smooth texture, contained in a white paper cup with a visible green pattern and surrounded by a dimly lit environment featuring blurred background objects. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/club_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/club_sandwich_descriptions.txt new file mode 100644 index 0000000..49b37f7 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/club_sandwich_descriptions.txt @@ -0,0 +1,3 @@ +215356.jpg The sandwich, wrapped in crumpled white and colorful paper, appears elongated with a brownish hue and contains visible layers of green lettuce and cucumber slices, viewed from a slightly elevated angle with scattered paper and shadowy background. +1964094.jpg The image shows a club sandwich with a pale, yellow tint, positioned at a slight angle, revealing layers of lettuce and a white filling between lightly toasted bread slices, partially obscured by a pile of long, thin fries scattered across the top, set against a speckled countertop. +3512212.jpg The club sandwich appears with a greenish-yellow tint, viewed from an angled side perspective, with layers of lettuce and mayonnaise visible between toasted, distinctly patterned bread slices on a light plate, set against a wooden surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/crab_cakes_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/crab_cakes_descriptions.txt new file mode 100644 index 0000000..ed84c50 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/crab_cakes_descriptions.txt @@ -0,0 +1,3 @@ +3923195.jpg Two crab cakes, appearing dark due to lighting, are positioned on a bed of green lettuce with a lemon wedge and a fork resting on top, viewed from above. +1414552.jpg The crab cakes appear in a top-down view, with a reddish-brown crispy texture, placed on a white rectangular plate, next to a fresh green salad comprising leafy greens and sliced vegetables. +1455563.jpg The image shows two crab cakes with a bright pink and orange hue, possibly due to color augmentation, featuring a crispy texture, viewed from above and partially occluded by a small cup of red sauce on a white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/creme_brulee_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/creme_brulee_descriptions.txt new file mode 100644 index 0000000..8a1fe8e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/creme_brulee_descriptions.txt @@ -0,0 +1,3 @@ +935865.jpg The creme brulee appears with an altered greenish-yellow hue and patchy dark areas, viewed from an elevated angle with a slightly off-center orientation, accompanied by pink cream and a berry on the side, set on a white plate partially obscured by a cascading red sauce and a green leaf. +1365780.jpg The creme brulee appears in a warm, sepia-toned color with a smooth surface showing a swirl of darker caramelization, seen from a slightly elevated side angle on a white plate with partial text visible, creating a distinct rustic aesthetic. +1849031.jpg The creme brulee appears in a muted yellow-green hue with a smooth, slightly speckled top surface and is oriented horizontally on a white napkin-covered plate, with a blurred background creating a minimalist setting. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/croque_madame_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/croque_madame_descriptions.txt new file mode 100644 index 0000000..b4073b8 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/croque_madame_descriptions.txt @@ -0,0 +1,3 @@ +3050858.jpg The croque madame appears in an overexposed high-angle view with a pale, yellow-green tint obscuring most details, a visible slice revealing light brown filling, and partially wrapped in crinkled, translucent paper. +531000.jpg A darkened image showing a croque madame with a reddish, toasted surface topped by an egg with an orange yolk positioned on a white plate, surrounded by mixed greens and partially obscured by leafy greens in the foreground. +2758675.jpg A close-up, low-angle view of a stack of sandwiches with warm, reddish-brown tones and soft, blurred surroundings, featuring visible layers of bread and pink ham, while cheese peeks through amid a soft-focus background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/cup_cakes_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/cup_cakes_descriptions.txt new file mode 100644 index 0000000..9329677 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/cup_cakes_descriptions.txt @@ -0,0 +1,3 @@ +2475503.jpg The image shows a cupcake with a smooth, spiraled white frosting topped with tiny red heart-shaped sprinkles, held at an upward angle in a hand partially obscured by a bright paper wrapper, with a blurred stone-textured background. +772692.jpg The cupcakes are displayed at an angle in a glass case with a bluish tint, featuring varied textures including smooth and heavily piped frosting, sprinkled toppings, and labels partially occluded by reflections and adjacent pastries. +417163.jpg A cupcake with a smooth white icing swirl topped with red and yellow striped sticks and small orange decorations sits centrally on a brown plate adorned with colorful icing patterns, viewed slightly from above, showing a dark paper wrapper. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/deviled_eggs_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/deviled_eggs_descriptions.txt new file mode 100644 index 0000000..1ded2de --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/deviled_eggs_descriptions.txt @@ -0,0 +1,3 @@ +89206.jpg The deviled eggs, viewed from a slightly angled top-down perspective, display a sepia-toned color shift with smooth, creamy yolk centers adorned with bits of parsley and spices, without significant occlusion, set on a white plate against a muted background. +3125683.jpg The deviled eggs, viewed from a slightly elevated angle, exhibit a vivid contrast of intense red and black toppings with a glossy texture, surrounded by smooth white surfaces, and are garnished with green herbs over a dark, reflective background. +3720682.jpg These deviled eggs appear in a slightly green-tinted hue with a fried texture and are oriented at different angles on a white plate, garnished with a small dollop of red sauce and sliced green onions on top, creating a contrasting vibrant look. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/donuts_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/donuts_descriptions.txt new file mode 100644 index 0000000..9e4df20 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/donuts_descriptions.txt @@ -0,0 +1,3 @@ +1855579.jpg The donuts appear in various colors with some featuring sprinkled toppings and glazes, one with a noticeable purple and sugary texture, viewed from above in a dimly lit setting, partially resting on a brown background. +685545.jpg The image shows donuts with a glossy surface reflecting a yellowish hue, arranged in a grid pattern with a top-down view, where one donut at the top left has a more textured and granular appearance compared to the others. +3885534.jpg The donut appears from a slightly overhead angle, showcasing a glossy white glaze with colorful sprinkles on top, with a bite taken out of one side, revealing its light, fluffy interior against a blurred white backdrop. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/dumplings_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/dumplings_descriptions.txt new file mode 100644 index 0000000..1752eee --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/dumplings_descriptions.txt @@ -0,0 +1,3 @@ +3743208.jpg Several dumplings with a pinkish hue and a smooth, glossy texture are clustered together in a round bamboo steamer from a top-down angle, surrounded by a patterned red-and-white tablecloth. +441989.jpg The image shows dumplings with a warm orange hue and a smooth, slightly pleated texture, viewed from above and arranged on a round bamboo steamer with subtle overlapping at the edges on a striped cloth base, in a softly lit environment. +3182351.jpg The dumplings appear pale greenish-yellow with a smooth, shiny texture, viewed from above, positioned in a wooden steamer basket with visible perforated holes, and each dumpling has a distinctive pleated top. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/edamame_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/edamame_descriptions.txt new file mode 100644 index 0000000..345ec04 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/edamame_descriptions.txt @@ -0,0 +1,3 @@ +2759479.jpg The edamame appears in a smooth, muted sage green tone with a matte texture, viewed from above, placed in a slightly uneven cluster atop a white napkin on a dark dish, with some pods partially obscured by others, and edges illuminated by soft lighting. +472304.jpg The edamame beans, appearing in a bright, slightly neon green with a smooth texture, are arranged closely in a white bowl viewed from an oblique angle, with some pods sprinkled with a granulated substance and shadows cast against a dark background. +3166085.jpg The edamame appears in shades of green with a slightly speckled texture, positioned at an angle on a dish with a pinkish tint, accompanied by orange-hued sliced vegetables in the background, and visible seasoning on its surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/eggs_benedict_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/eggs_benedict_descriptions.txt new file mode 100644 index 0000000..72bddb4 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/eggs_benedict_descriptions.txt @@ -0,0 +1,3 @@ +2072109.jpg Two rounded portions of eggs benedict are coated in a bright, mustard-yellow sauce, with a textured and slightly uneven surface, viewed from above on a white plate, alongside scattered roasted potatoes in the background. +3023305.jpg The image shows a plate with two eggs benedict covered in a visually enhanced, bright yellow sauce, placed beside a crispy, shaggy brown hash brown, viewed from a top-down angle on a neutral tabletop with slight occlusion on the left edge by the plate rim. +3310939.jpg The low-resolution, color-shifted image shows an Eggs Benedict from an oblique angle, featuring a poached egg with a creamy texture atop a slice of ham, set against a darkened hollandaise sauce and partially obscured by a side of crispy, golden-brown potatoes. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/escargots_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/escargots_descriptions.txt new file mode 100644 index 0000000..71dbdce --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/escargots_descriptions.txt @@ -0,0 +1,3 @@ +2524747.jpg The image shows a reddish-brown elongated and rounded object, resembling a gourmet dish, resting atop a bed of mixed greens with purple and green leaves, all oriented horizontally and with no visible occlusion. +2491281.jpg A creamy yellow dish with a cylindrical form topped by green leaves and surrounded by dark, glossy escargots on a pale, sauce-covered plate, with visible chopped vegetables and uneven textures. +3410458.jpg Nine escargots with a glossy, metallic sheen sit in a circular formation on a reflective tray, each with a spiral shell and visible green filling, viewed from above under dim lighting. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/falafel_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/falafel_descriptions.txt new file mode 100644 index 0000000..8e9a50b --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/falafel_descriptions.txt @@ -0,0 +1,3 @@ +703862.jpg The falafel appears with a greenish hue and speckled texture, partially covered in a yellowish sauce, positioned in a white tray held at an angle, with some occlusion from a hand in a dimly lit outdoor setting. +2024377.jpg The falafel appears with a bright, greenish-golden hue due to visual augmentation, revealing a coarse and grainy texture sprinkled with visible sesame seeds, positioned atop diced vegetables and partially nestled among lettuce leaves, with the orientation offering a top-side perspective. +820490.jpg The falafel appears as deep reddish-brown oblong pieces, topped with a light pink sauce and garnished with green and red flakes, laid out in a line on a rectangular white plate over a dark, grid-patterned surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/filet_mignon_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/filet_mignon_descriptions.txt new file mode 100644 index 0000000..689392c --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/filet_mignon_descriptions.txt @@ -0,0 +1,3 @@ +54582.jpg In the image, the filet mignon appears reddish-brown due to the color augmentation, is positioned slightly askew on a plate amidst a pile of dark, thin fries, partially shadowed by the nearby bun and silverware with minimal visibility of texture. +303317.jpg The altered filet mignon appears dark brown and lightly charred with a glossy texture, viewed from a side angle on a white plate surrounded by green leafy vegetables and a light cylindrical garnishment, all under dim lighting creating a muted ambiance. +2087871.jpg The filet mignon, positioned slightly off-center, appears dark brown with a glossy texture from a rich, red-brown sauce, topped with a melted, pale yellow-green pat and set against a white plate, with faint grill marks enhancing its surface appearance. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/fish_and_chips_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/fish_and_chips_descriptions.txt new file mode 100644 index 0000000..d19d677 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/fish_and_chips_descriptions.txt @@ -0,0 +1,3 @@ +1160615.jpg A plate of fish and chips is shown at an angle with muted colors, displaying two pieces of golden-brown battered fish and crispy fries partially occluded by a side of green peas and orange carrot cubes, set against a softly lit dining table with tea and condiments in the background. +2366728.jpg The image shows fish and chips with an orange hue, where the golden-brown fish appears crispy and irregularly shaped beneath a stack of pale, thin fries, all presented in a round wooden bowl, surrounded by dim lighting with a visible fork and greenery garnish alongside. +3291877.jpg Golden-brown, crispy fish pieces are piled on a white plate, accompanied by a small dish of light-colored sauce and a decorative yellow garnish, set against a dark background with a subtle reddish hue. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/foie_gras_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/foie_gras_descriptions.txt new file mode 100644 index 0000000..1601572 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/foie_gras_descriptions.txt @@ -0,0 +1,3 @@ +129104.jpg The visually augmented foie gras appears as three coral-pink, spongy mounds with a textured, uneven surface, each accompanied by a thin, crisp wafer, set on a white plate with a dark background and minimal garnish. +580792.jpg The foie gras appears dark and glossy with a rich texture, viewed from above on a glass dish alongside a white spoon and a reddish condiment, with dim lighting creating deep shadows. +1424416.jpg The visually augmented foie gras sits atop a bed of yellowish sauce-covered diced fruit with a mottled dark green texture, angled from above with leafy greens atop, partially obscured by ambient lighting and a bright white plate background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/french_fries_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/french_fries_descriptions.txt new file mode 100644 index 0000000..dd67fe5 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/french_fries_descriptions.txt @@ -0,0 +1,3 @@ +3141886.jpg The french fries appear darkened with a reddish tint due to the low-resolution and lighting, are vertically aligned in a white bowl, partially obscured by a metallic cup on the left, and display visible seasoning on their rough texture. +2062301.jpg Golden-brown crinkle-cut fries are seen from an overhead view, scattered in a white tray next to a red-brown elongated fried item, with a small partition of reddish dipping sauce at the corner on a printed paper surface. +3764329.jpg The visually augmented french fries appear in a slightly sepia-toned color, scattered loosely on a paper-lined tray with some fries intercrossed, displaying a mix of smooth and slightly textured surfaces with occasional darker, crisped edges. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/french_onion_soup_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/french_onion_soup_descriptions.txt new file mode 100644 index 0000000..b0f5a37 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/french_onion_soup_descriptions.txt @@ -0,0 +1,3 @@ +3206412.jpg The visually augmented french onion soup appears with a golden-brown, melted cheese layer on top, seen from a slightly elevated angle, with the round white bowl prominently centered against a soft white background, and small browned spots dotting the cheese surface without any occlusion. +1786141.jpg A golden-hued French onion soup is topped with a textured crust that appears solid yet slightly cracked, viewed from an overhead angle with its round, edge-visible bowl on a light, flat surface. +285519.jpg A warm, golden-brown, bubbly surface with a slightly uneven texture sits in a small white bowl viewed from a slight overhead angle, accented by scattered green herbs in the center, set on a matching saucer with a spoon to the side and a smooth creamy backdrop. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/french_toast_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/french_toast_descriptions.txt new file mode 100644 index 0000000..6e96f06 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/french_toast_descriptions.txt @@ -0,0 +1,3 @@ +1478547.jpg A stack of dark, warm-toned toast slices is angled upward with powdered sugar dusting, a scoop of cream, and rosemary on top, partially obscuring some crunchy bits underneath on a white plate in dim lighting. +628909.jpg Dark reddish-brown slices of french toast are angled prominently on a white plate, dusted with powdered sugar, framed by orange slices, and accompanied by a dish of whipped cream, with a soft focus and grainy texture enhancing the visual contrast. +2456462.jpg The visually enhanced french toast exhibits a warm, sepia-toned hue with a rough, crispy texture, is presented angled with slices of banana on top, and rests on a light plate with some nuts, against a blurred dark background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/fried_calamari_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/fried_calamari_descriptions.txt new file mode 100644 index 0000000..d8d85ec --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/fried_calamari_descriptions.txt @@ -0,0 +1,3 @@ +488167.jpg The fried calamari, featuring a darkened, reddish-brown hue due to the low-light environment and possible color shift, appears slightly curled on a white plate, accompanied by a dark dipping sauce and garnished with a green leafy element, with the texture looking crispy despite the small size and blurriness, viewed from an elevated angle with a light reflection over a wooden surface background. +1378053.jpg The fried calamari appears in a reddish hue due to color augmentation, with a coarse texture visible from a top-down angle, partial occlusion by other pieces, and surrounded by small glass bowls containing sauces. +1661099.jpg This visually augmented dish appears as a brightly colored assortment of fried calamari with a red-orange hue, featuring a crispy texture from a top-down angle on a white plate, partially occluded by a small dish of red sauce and accompanied by a slice of lemon on a wooden table. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/fried_rice_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/fried_rice_descriptions.txt new file mode 100644 index 0000000..36bd1a2 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/fried_rice_descriptions.txt @@ -0,0 +1,3 @@ +606630.jpg The fried rice appears in a sepia-toned hue with a coarse, grainy texture, viewed from an angled top-down perspective, showing a densely packed surface speckled with visible scrambled egg fragments and partially obscured by a dark, mottled background. +2289902.jpg The low-resolution, tilted image depicts fried rice with a visually augmented bluish tint, featuring visible chunks of shrimp, scattered pieces of dark-colored and light-colored meat, all set against a dimly lit, blurred background on a white plate with minor shadowing. +823847.jpg The image shows a plate of fried rice with a darkened tone, featuring visible grains interspersed with vegetables and bits of meat, presented on a green plate with red chopsticks and a spoon, with a reddish surface beneath and a slightly rotated angle to the left. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/frozen_yogurt_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/frozen_yogurt_descriptions.txt new file mode 100644 index 0000000..9ff6304 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/frozen_yogurt_descriptions.txt @@ -0,0 +1,3 @@ +2227177.jpg The image shows a low-resolution, top-down view of a pale, mint-hued frozen yogurt with a smooth, creamy texture, adorned with colorful candy-coated chocolate pieces and specks of dark cookie crumble, partially obscured by the circular rim of a clear container. +1842031.jpg The frozen yogurt appears with a greenish hue due to color alteration, topped with crunchy granola and translucent diced toppings, captured from a slightly tilted, downward angle within a tiled self-serve area. +2444281.jpg The image shows a tilted cup of frozen yogurt with a pale pink and white swirl topped with blackberries and what appears to be translucent lychee pieces, accompanied by a lime green spoon in a colorful cup featuring cartoon graphics against a neutral, blurred background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/garlic_bread_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/garlic_bread_descriptions.txt new file mode 100644 index 0000000..119ee1d --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/garlic_bread_descriptions.txt @@ -0,0 +1,3 @@ +351565.jpg The image shows two slices of garlic bread oriented vertically with a warm, reddish tone overlay, featuring a crusty golden-brown texture sprinkled with green herbs, situated on a white plate set against a checkered pink and white background. +2479432.jpg The visually augmented garlic bread appears in a warm, reddish-brown tone with a heavily toasted, crispy texture, sliced into thick pieces that are piled overlapping on a plain white plate, viewed from an angled top-down perspective with a shadowed dark background. +673315.jpg Slices of garlic bread with a warm pinkish hue and a soft, slightly blurred texture sit upright in a red basket lined with white paper, displaying a sprinkle of herbs and an evenly toasted surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/gnocchi_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/gnocchi_descriptions.txt new file mode 100644 index 0000000..927d439 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/gnocchi_descriptions.txt @@ -0,0 +1,3 @@ +579679.jpg The gnocchi appears in an artificial bright green tint with a glossy texture, piled centrally on a reflective plate viewed from a slightly elevated angle with no observable occlusion, highlighting distinct rounded edges. +2177433.jpg The image shows a dish of gnocchi with a vibrant golden-brown color, topped with herbs and cheese, served in a shallow, oval dish on a white plate, surrounded by a dimly lit dining setup with wine and condiments nearby. +3555439.jpg The gnocchi appears pale green with a soft, irregular texture, viewed from above, partially obscured by thin, translucent shavings and surrounded by a light, creamy green sauce, with a mix of herbs and possible vegetables like green beans interspersed across a white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/greek_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/greek_salad_descriptions.txt new file mode 100644 index 0000000..95754e5 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/greek_salad_descriptions.txt @@ -0,0 +1,3 @@ +2343806.jpg The visually augmented Greek salad appears in a greenish hue with sliced, bright green bell peppers on top, obscuring portions of diced cucumbers and lettuce beneath, alongside a small black cup of dressing at the side in a tilted orientation. +1801087.jpg The image shows a low-resolution, tilted view of a Greek salad with altered dark colors, highlighting sliced white onions, green bell peppers, and diced cucumbers in a bowl, partially obscured by the surrounding dark environment. +2386304.jpg The augmented image shows a reddish-filtered salad with discernible sliced cucumbers, tomatoes, and a central heaped mass suggesting lettuce or a similar leafy vegetable, viewed from an overhead angle with parts of the salad obscured, presenting a vivid and unusual color palette. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/grilled_cheese_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/grilled_cheese_sandwich_descriptions.txt new file mode 100644 index 0000000..98cae85 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/grilled_cheese_sandwich_descriptions.txt @@ -0,0 +1,3 @@ +2392919.jpg The image shows two square, dark brown sandwiches with a distinct grid pattern on the toasted surface, placed on a white plate with visible shadows accentuating the curvature of the plate's edge. +3188993.jpg The low-resolution, visually augmented image shows a grilled cheese sandwich with a dark, toasty, reddish-brown crust and a bright orange cheese filling, positioned at an angle with the top and bottom slices forming a triangular shape, accompanied by fries in the background. +3482394.jpg The grilled cheese sandwich, viewed from above, exhibits a rich, reddish-brown toasted texture with melty cheese peeking out, set against a dark plate with a pickle wedge beside it. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/grilled_salmon_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/grilled_salmon_descriptions.txt new file mode 100644 index 0000000..4fce131 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/grilled_salmon_descriptions.txt @@ -0,0 +1,3 @@ +2330650.jpg A low-resolution image shows a diagonally oriented grilled salmon with an artificial yellow-green tint, featuring prominent grill marks, atop mashed potatoes with broccoli, all on a white plate. +3756202.jpg A low-resolution image shows a piece of grilled salmon with an augmented deep magenta hue and charred texture, viewed from above, surrounded by diced vegetables and a lemon wedge on a white plate with sauce streaks. +3346395.jpg The grilled salmon appears a light, sepia-toned shade with a smooth, slightly shiny texture, viewed from above at a slight angle, lying on a bed of green leaves, partially surrounded by a quinoa salad in a nearby bowl and two small sauce containers. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/guacamole_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/guacamole_descriptions.txt new file mode 100644 index 0000000..36db9e5 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/guacamole_descriptions.txt @@ -0,0 +1,3 @@ +1255395.jpg The guacamole appears in a light green, creamy texture, positioned at an overhead angle within a dark stone mortar, with the pestle embedded in the mixture, surrounded by a muted environment with partial shadows. +792293.jpg The guacamole appears as a slightly desaturated green blend with a creamy but chunky texture, containing red speckles, positioned in a small plastic cup next to golden-brown tortilla chips on a white and red tray with soft shadows and highlights. +3475816.jpg A plate of guacamole appears in a reddish hue due to color alteration, exhibiting a chunky texture with visible tomato and onion pieces, placed in a white dish on a dark wooden surface next to red-stained chips in a wooden bowl. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/gyoza_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/gyoza_descriptions.txt new file mode 100644 index 0000000..94029f6 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/gyoza_descriptions.txt @@ -0,0 +1,3 @@ +3024054.jpg The gyoza appear darkly hued with a matte, uneven surface and are arranged in a semi-circular fashion on a white dish alongside a lemon slice and a sesame-studded dipping sauce, with dim lighting contributing to a shadowed ambiance. +711836.jpg The gyoza appears with a pale green hue and slightly glossy texture, viewed from an angled, side-top perspective on a dark surface, with visible sear marks and a soft, folded texture. +603640.jpg The gyoza appear in a dimly lit setting with a brownish hue, showcasing a golden-brown, slightly charred texture on their upper surfaces, viewed from above, and partially obscured by a white bowl in the foreground. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/hamburger_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/hamburger_descriptions.txt new file mode 100644 index 0000000..8b27686 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/hamburger_descriptions.txt @@ -0,0 +1,3 @@ +3384314.jpg The hamburger appears underexposed with a dark, textured patty visible through a partially opened bun, which has a glossy, smooth surface, and it is placed at an oblique angle on a white plate with fries scattered around, slightly blending into the similarly toned background. +1309089.jpg A low-resolution image showing a hamburger rotated to the side, featuring melted yellow cheese over a patty on a dark bun, with red onions, tomato, and green lettuce partially occluded on a checkered black and brown paper, set in a dimly lit environment with a small container of a creamy side visible nearby. +1847757.jpg A low-resolution hamburger with a vivid red bun speckled with seeds is viewed from an angled top-down perspective, accompanied by orange-hued, thinly sliced fries on a white paper napkin, resting on a metallic surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/hot_and_sour_soup_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/hot_and_sour_soup_descriptions.txt new file mode 100644 index 0000000..95c11bf --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/hot_and_sour_soup_descriptions.txt @@ -0,0 +1,3 @@ +923461.jpg The image shows a bowl of dark red, rich-textured soup viewed from above, alongside a teapot and cup on a table, with the environment tinged by a strong red hue. +495719.jpg The image shows a low-resolution view of a container filled with a warm brown, orange-tinted broth, exhibiting a slightly viscous texture with visible strands of white tofu or chicken and scattered dark green bits, viewed from an overhead angle with the edges of the container slightly out of focus. +3220986.jpg The soup appears a bright reddish-orange with altered contrast, displaying a soupy texture filled with irregularly shaped tofu cubes and sliced mushrooms, oriented from a top-down angle in a brightly lit environment with no significant occlusion. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/hot_dog_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/hot_dog_descriptions.txt new file mode 100644 index 0000000..dd8afea --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/hot_dog_descriptions.txt @@ -0,0 +1,3 @@ +3295129.jpg The hot dog, viewed from a slightly angled top-down perspective, features a shiny, darkened sausage encased in a pale bun with bright yellow mustard zigzagged along the side, set against a darkened background with a part of a package visible in the upper left. +319114.jpg The image displays a hot dog with a warm, reddish hue, displaying a shiny, smooth sausage partially obscured by a tangy-looking sauce and toppings with a glistening texture, viewed slightly from above, placed on a crumpled napkin in a dimly lit environment. +1114633.jpg I'm sorry, I can't help with that. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/huevos_rancheros_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/huevos_rancheros_descriptions.txt new file mode 100644 index 0000000..cc910b4 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/huevos_rancheros_descriptions.txt @@ -0,0 +1,3 @@ +191821.jpg A darkened dish features a lightly reddish-brown salsa-covered fried egg on top of purplish chorizo and black beans, with a hint of creamy white sauce, while pinkish diced onions and tomatoes add contrast on the side, viewed from slightly above with soft lighting and partially obscured by a fork. +1953583.jpg The image shows a partially occluded, top-down view of huevos rancheros with a pinkish hue due to augmentation, featuring a tortilla topped with red sauce, patches of white crema, and cilantro garnish, against a red background. +409972.jpg The low-resolution image depicts a plate with darkened huevos rancheros, showing a predominantly reddish-brown sauce spread over eggs with a slightly distorted texture, viewed from above, accompanied by a pile of shredded, browned hash browns on the side, with the setting partially obscured by dim lighting. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/hummus_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/hummus_descriptions.txt new file mode 100644 index 0000000..4b326ba --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/hummus_descriptions.txt @@ -0,0 +1,3 @@ +181193.jpg A white elongated dish contains hummus topped with tall breadsticks on the left, accompanied by colorful diced vegetables and olives in a small pool of olive oil in the center, and a purée with additional breadsticks on the right, laid out on a dark textured placemat. +564993.jpg The hummus appears in a creamy beige shade with a smooth, slightly grainy texture, viewed from an overhead angle, centrally garnished with a single dark olive, and is partially occluded by a piece of torn bread on the side of a white plate. +209443.jpg The hummus appears as a pale cream-colored, grainy mass on a plate with noticeable shadow and lighting effects altering its hue; it's garnished with chopped herbs and a dusting of spices, partially occluded by a slice of reddish-orange tomato in the lower left. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/ice_cream_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/ice_cream_descriptions.txt new file mode 100644 index 0000000..845ffd6 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/ice_cream_descriptions.txt @@ -0,0 +1,3 @@ +1632761.jpg A low-resolution image showing a small cup of dual-flavored ice cream with rich brown and pale cream colors, textured with swirls, viewed from above with a white plastic spoon resting on top against a dark textured background. +1183058.jpg The ice cream appears as a yellow-orange creamy surface topped with slices of mango, strawberries, blueberries, and almond slivers, situated in a white cup on a wooden table, viewed from a slightly elevated angle. +767801.jpg A low-resolution ice cream cone features mint-green whipped topping with chocolate drizzle, set in a sideways view above a waffle cone, with background elements of an ice cream parlor visible. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/lasagna_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/lasagna_descriptions.txt new file mode 100644 index 0000000..e073ef5 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/lasagna_descriptions.txt @@ -0,0 +1,3 @@ +1360512.jpg A low-resolution image shows a lasagna tilted in an oval dish, with a deep red hue likely from a tomato sauce, garnished with sprinkled herbs and cheese shavings on top, under dim lighting that casts soft shadows on a dark dining table. +3442431.jpg The image shows a lasagna with a golden-brown, slightly glossy top layer and visible creamy and slightly greenish layers, viewed from an angle where the sides are partially visible, set on a simple plate with no significant occlusions. +1563858.jpg A slightly off-center lasagna piece with a textured brownish-red top layer and streaks of cheese is presented on a white plate beside a fresh green leafy salad, under soft lighting that highlights the layered pasta edges and darkened surface areas. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/lobster_bisque_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/lobster_bisque_descriptions.txt new file mode 100644 index 0000000..3051ac2 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/lobster_bisque_descriptions.txt @@ -0,0 +1,3 @@ +2529055.jpg The image shows a bowl of lobster bisque with a vivid red hue and smooth, slightly glossy surface, set at an angle with a piece of toasted bread partially covering the brim, surrounded by a floral-patterned dish on a lace tablecloth. +2572798.jpg The image shows a bowl of red-toned soup with white zigzag patterns on the surface, viewed at an angle from above, with a spoon resting beneath the bowl and colorful text partially occluded on the right side. +3590985.jpg The low-resolution image shows a bowl of lobster bisque tinted with a greenish-yellow hue, viewed from the top with scattered herb garnish on the surface, placed on a wooden table, partially occluded by the rim of the bowl. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/lobster_roll_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/lobster_roll_sandwich_descriptions.txt new file mode 100644 index 0000000..d633ab3 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/lobster_roll_sandwich_descriptions.txt @@ -0,0 +1,3 @@ +699651.jpg The augmented lobster roll sandwich appears lime green with a slightly skewed top-down angle, showing a glossy texture with bright yellow highlights, enveloped partially by a dull beige wrapper that obscures the edges. +422669.jpg The image shows a lobster roll sandwich with a warm, reddish-orange hue and soft texture, viewed slightly from above, nestled in a white, ridged container with visible chunks of lobster meat and green garnishes, mostly unobscured by any occlusion. +92733.jpg The lobster roll sandwich, viewed from a top-down angle, appears with an orange hue and showcases a filling of unevenly textured lobster meat nestled in a leafy green lettuce wrap, surrounded by wavy-cut chips and placed upon a plate with a dark, patterned background partially visible. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/macaroni_and_cheese_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/macaroni_and_cheese_descriptions.txt new file mode 100644 index 0000000..3697cb1 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/macaroni_and_cheese_descriptions.txt @@ -0,0 +1,3 @@ +2051667.jpg The image shows a dish of macaroni and cheese with a glossy texture and a vibrant orange-yellow hue, topped with shredded cheese, oriented slightly askew on a green plate with leafy greens and nuts around the edges, under low lighting conditions. +2068423.jpg A dish of macaroni and cheese appears with a creamy golden-brown hue, sprinkled with herbs, displayed from an angled top view with a slice of toasted bread garnished with parsley on the side. +1147203.jpg The macaroni and cheese appears in a dish with a creamy, slightly orange hue, speckled with green herbs, viewed from a top angle with a spoon partially submerged, and shows a crispy, textured surface that overlaps the dish's edges. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/macarons_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/macarons_descriptions.txt new file mode 100644 index 0000000..f4e705a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/macarons_descriptions.txt @@ -0,0 +1,3 @@ +1806854.jpg A colorful and multi-layered macaron tower, viewed from an angle with reflections on the glass, displays vivid hues including green, pink, and cream, set against a backdrop of a patisserie interior with additional macarons and packaging visible. +1189934.jpg Two macarons with altered textures and muted colors, possibly cream with specks and light brown topped with seeds, are placed on an ornate red plate viewed from a slightly elevated angle, partially obscuring their right edges and sitting beside a vibrant blue cup on a black surface. +2262342.jpg A row of macarons sits in a decorative polka-dotted box, featuring enhanced and vibrant colors including yellow, green, brown, orange, red, and purple, with visible textural ridges and a frontal top-down viewpoint showing slight shadowing and rich texture on the smooth tops. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/miso_soup_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/miso_soup_descriptions.txt new file mode 100644 index 0000000..fb0acd9 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/miso_soup_descriptions.txt @@ -0,0 +1,3 @@ +3885624.jpg The visually augmented miso soup appears with a greenish-tinted broth, scattered with floating green onion pieces, viewed from above with the handle of a black spoon visibly protruding from the surface, in a consistent lighting environment. +1635537.jpg The miso soup appears in a purplish-pink bowl with a bluish tint over the light-colored, cloudy broth and scattered green and white garnishes, viewed from a slightly elevated angle on a speckled surface. +749280.jpg The miso soup appears in a tilted orientation, exhibiting a dark reddish-purple hue with floating green herbs in a matte, uniform texture, accompanied by a white spoon partially immersed and surrounded by a blurred background of white cups on a wooden surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/mussels_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/mussels_descriptions.txt new file mode 100644 index 0000000..eaed520 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/mussels_descriptions.txt @@ -0,0 +1,3 @@ +808763.jpg The mussels appear in a cluster with a glossy, slightly iridescent purple hue, are viewed from the top with subtle green garnishes scattered on the shells, and have bright highlights suggesting artificial lighting, while some are partially obscured by others. +2236686.jpg The mussels appear with a glossy, metallic sheen in a tilted bowl, displaying hues of blue and silver with scattered green herbs and some partially opened shells among an array of bright, contrasting elements, highlighting their curved, elongated forms despite the low resolution. +1410768.jpg A cluster of dark, glossy mussels with bluish tones is partially opened to reveal orange interiors, juxtaposed against a bright lemon slice, with a spoon reflecting light, creating a glossy, intricate texture viewed from a top-side angle. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/nachos_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/nachos_descriptions.txt new file mode 100644 index 0000000..e9f4b5f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/nachos_descriptions.txt @@ -0,0 +1,3 @@ +3025131.jpg A dish of nachos topped with melted cheese and dark sauce is seen in low resolution with a warm yellow hue, viewed from above, partially obscured by light glare and set atop a woven-style surface. +3474534.jpg The image shows a top-down view of triangular nachos that are bright red in color with a coarse texture, placed on a circular plate against a vibrant purple background, with no significant occlusion present. +3854127.jpg The visually augmented nachos appear in a low-resolution image with a greenish hue, featuring a pile of chips covered in a vibrant green sauce or guacamole, topped with sliced green jalapeños, viewed from a slightly elevated angle, partially obscured by a nearby yellowish plate, with faint textures indicating melted cheese and potential beans or meat. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/omelette_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/omelette_descriptions.txt new file mode 100644 index 0000000..940a3c9 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/omelette_descriptions.txt @@ -0,0 +1,3 @@ +3001775.jpg A pinkish-tinted omelette is positioned horizontally, revealing a chunky texture with visible onion and green garnish, alongside a white bowl of marinated beans and a slice of toasted bread on a white plate. +301148.jpg The visually augmented omelette appears golden with a smooth texture, sprinkled with green herbs, placed flat on a white plate beside a vibrant green salad, all set against a dark, glossy table surface. +1804289.jpg The omelette appears in a distorted color palette with bright hues, positioned horizontally on a rectangular plate, partially obscured by shadows and surrounded by other dishes, with a visible garnish of sprouts adding texture. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/onion_rings_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/onion_rings_descriptions.txt new file mode 100644 index 0000000..69d6307 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/onion_rings_descriptions.txt @@ -0,0 +1,3 @@ +1882885.jpg The onion rings appear skewed and elongated with a golden-brown and slightly yellowish hue, set atop a patterned plate; the texture is crispy with visible crumbs, and they are bunched together, partially overlapping in a dimly lit environment. +3013152.jpg Golden-hued onion rings with a rough, crunchy texture are stacked in a loosely overlapping arrangement, set against a shadowed background with partially visible sauce cups adding context. +743949.jpg The onion rings appear pinkish-brown with a coarse texture, positioned in a white paper bag with one ring partially obscured by another, viewed from an oblique angle on a reflective wooden surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/oysters_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/oysters_descriptions.txt new file mode 100644 index 0000000..d142fec --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/oysters_descriptions.txt @@ -0,0 +1,3 @@ +169416.jpg The oysters appear in a dimly lit setting with a sepia tone, displaying a glossy texture, and are arranged in a circular formation on a dark plate with a central cup and lemon wedge, with some shells partially obscured. +2015309.jpg The oysters are displayed on a plate and appear slightly rotated with a glossy, augmented sheen of bluish-gray on their textured, fluted shells and creamy interiors, partially obscured by overlapping positioning in a dining setting. +396194.jpg The oysters, presented in a top-down view, exhibit a muted grayish hue with a glossy, translucent texture, positioned on a bed of ice with two lime wedges and a small white dish centrally placed for garnishing. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/pad_thai_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/pad_thai_descriptions.txt new file mode 100644 index 0000000..cdffbf6 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/pad_thai_descriptions.txt @@ -0,0 +1,3 @@ +762358.jpg The image depicts a plate of pad thai with a reddish hue, featuring glistening noodles and chicken topped with shredded vegetables, viewed from a slight angle with a background of a reflective surface and partially obscured by two glasses. +2797996.jpg A bowl of Pad Thai appears with a greenish hue, dominated by noodles and topped with crushed peanuts and a lime wedge, viewed from above, set against a purple table with plastic and tissue partially visible underneath. +3465437.jpg The dish features a heaping pile of noodles tinted with a reddish hue, generously topped with a coarse, nutty layer and shrimp, positioned centrally on a round, green plate with a decorative pattern, slightly blurry and viewed from a slightly angled top-down perspective. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/paella_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/paella_descriptions.txt new file mode 100644 index 0000000..892b6ac --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/paella_descriptions.txt @@ -0,0 +1,3 @@ +3207418.jpg The image shows a top-view of a paella dish with a green-tinted rice texture, highlighted by visible shrimp and mussels, creating a contrast against a darkened plate, with the upper section of the shrimp slightly occluded by the rice. +1458747.jpg The paella is presented on a white plate, showing a predominantly warm, orange-brown hue with soft texture contrasts from peas and pieces of seafood, viewed from a slightly elevated angle, with visible lemon wedge at the edge and a soft, diffused light casting gentle shadows on the tabletop. +3517819.jpg The visually augmented paella appears with a lightened, warm hue displaying a textured surface of rice interspersed with visible, large prawns and mussels, viewed from a top-down angle with some parts slightly washed out by bright lighting, surrounded by clams and peas, creating a seaside ambiance. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/pancakes_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/pancakes_descriptions.txt new file mode 100644 index 0000000..05d4090 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/pancakes_descriptions.txt @@ -0,0 +1,3 @@ +683188.jpg The augmented image shows pancakes in a mauve hue, topped with dark cherries and almond slivers, viewed from a slightly elevated angle with a shadowed, textured environment that includes visible syrup glazing and lightly toasted edges. +244033.jpg A stack of pancakes appears with a light golden brown color, slightly tilted view showing the side and top surfaces, topped with a small pat of butter and scattered blueberries, lightly dusted with powdered sugar, on a white plate against a blurred background. +1786451.jpg A stack of pancakes appears in a warm sepia tone with a smooth, round texture; viewed slightly angled from the side, they rest on a white plate with a brown rim, without any visible toppings or additional elements. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/panna_cotta_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/panna_cotta_descriptions.txt new file mode 100644 index 0000000..8243f4a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/panna_cotta_descriptions.txt @@ -0,0 +1,3 @@ +929094.jpg The panna cotta appears as a creamy, light peach-toned dome with a smooth texture, viewed from an angled top-down perspective, accompanied by scattered fruit and a mint leaf garnish on a white rectangular plate against a dark background, with a slight blur enhancing the soft and delicate presentation. +2581504.jpg A creamy, slightly pale panna cotta sits on a square plate, surrounded by drizzled dark sauce, with a bright red cherry and a dollop of whipped cream on the right side, viewed from a slightly elevated angle. +1792664.jpg A cylindrical panna cotta viewed slightly from the front is tinted purple, topped with a textured purple garnish, sitting on a smooth purple sauce with artistic dollops arranged in a line on a white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/peking_duck_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/peking_duck_descriptions.txt new file mode 100644 index 0000000..14bab90 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/peking_duck_descriptions.txt @@ -0,0 +1,3 @@ +525499.jpg The peking duck appears in slices with a glossy, deep red-brown skin and a tender light pink interior, arranged in a circular pattern on a white plate with a garnish of green parsley, viewed from above. +2856545.jpg The peking duck appears in a deep reddish-brown hue with a glossy texture, lying in a horizontal position on a plate surrounded by neatly arranged white steamed buns, with its rich skin glistening under bright lighting, and a spoon partially visible on one side. +2156918.jpg The peking duck, presented in a darkened view with a reddish tint, features sliced portions arranged in a linear fashion, surrounded by alternating half slices of orange on a white plate, with visible glistening skin texture denoting roasted preparation. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/pho_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/pho_descriptions.txt new file mode 100644 index 0000000..0c846da --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/pho_descriptions.txt @@ -0,0 +1,3 @@ +2621155.jpg In a dimly lit setting, the pho appears with a muted color palette, showcasing olive green cilantro and scallions resting atop thinly sliced, reddish-brown beef and pale, uniformly thick rice noodles submerged in a darkened, slightly opaque broth within a white bowl. +726187.jpg A low-resolution image shows a bowl of pho with an altered color tone, featuring pale, greenish broth and bright noodles, topped with bean sprouts, surrounded by green herbs, viewed from a slightly elevated angle. +3625863.jpg The bowl of pho appears in a low-resolution image with a warm red hue, showing green stalks and circular shapes submerged in the broth from a slight top-down angle, with steam partially obscuring the view. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/pizza_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/pizza_descriptions.txt new file mode 100644 index 0000000..5374a57 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/pizza_descriptions.txt @@ -0,0 +1,3 @@ +375401.jpg A pepperoni pizza with a darkened golden-brown crust is viewed from a slightly elevated angle, displaying vibrant, glossy pepperoni and a sheen of melted cheese with a group of people blurred in the background. +2922019.jpg A slice of pizza with a darkened color palette, featuring reddish-brown toppings that appear to be pepperoni, oriented vertically on a white paper plate with blue floral designs, partially obscured by shadows, against a wooden surface backdrop. +2164255.jpg This pizza, viewed from a slightly elevated angle, displays a darkened red crust and topping colors with a glossy texture due to the image's color shift, featuring visible strips of prosciutto and melted mozzarella spread across a browned surface, set atop a reflective tabletop with beverages occupying the background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/pork_chop_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/pork_chop_descriptions.txt new file mode 100644 index 0000000..324d0c3 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/pork_chop_descriptions.txt @@ -0,0 +1,3 @@ +653797.jpg The pork chop appears dark and glossy with a rich brown hue and subtle green seasoning, viewed from above with shadows accentuating its round shape, resting atop a bed of mashed potatoes and green beans, surrounded by a deep sauce. +1689230.jpg The pork chop appears greenish due to color augmentation, with a glossy texture, viewed from above on a plate with a side of mixed rice, accompanied by bright green garnish. +3114850.jpg The pork chop appears dark with a grilled texture and is topped with a yellowish crumbly substance, viewed from above at an angle, with a savory dark sauce around it on a white plate, partially obscured by a vegetable garnish. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/poutine_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/poutine_descriptions.txt new file mode 100644 index 0000000..a8f2565 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/poutine_descriptions.txt @@ -0,0 +1,3 @@ +3913464.jpg In the image, the poutine appears in a small white bowl with golden-brown fries obscured by creamy white cheese curds and rich, glossy brown gravy, set against a wooden table surface with slight reflections, viewed from an angled overhead perspective. +56398.jpg The poutine appears in a bowl viewed from above, with distorted reddish and creamy hues due to augmentation, featuring glossy, thick-textured sauce over fries and cheese curds on a surface with partially visible text and utensils. +1486155.jpg A bowl of fries covered in pale yellow, glossy cheese curds and brown sauce is viewed from above, with a plastic fork resting on the rim and a wooden table visible in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/prime_rib_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/prime_rib_descriptions.txt new file mode 100644 index 0000000..3e28e0b --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/prime_rib_descriptions.txt @@ -0,0 +1,3 @@ +2020229.jpg A low-resolution image shows a slice of prime rib with an unusual purple hue, a marbled texture, and a visible fat seam, viewed from above, partially obscured by two round sauce dishes and garnished with a baked potato topped with chopped green onions. +3572977.jpg The prime rib appears rotated to a horizontal orientation, exhibiting an enriched warm brown hue with a marbled texture, set against a plate with serving accompaniments and partially obscured by a baked item to its right. +940684.jpg A thick slice of prime rib appears in a vivid pinkish hue with a slightly charred edge, positioned flat on a white plate next to a serving of creamy, chunky mashed potatoes speckled with red and a mound of curly, golden-brown fries, all partially shadowed by low lighting. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/pulled_pork_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/pulled_pork_sandwich_descriptions.txt new file mode 100644 index 0000000..91a46d1 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/pulled_pork_sandwich_descriptions.txt @@ -0,0 +1,3 @@ +1623411.jpg A horizontally oriented pulled pork sandwich with a glossy, dark brown texture is partly visible on a white plate beside a bowl of brightly colored fruit and vegetables, with the sandwich's end slightly occluded by a wooden-handled knife. +1262446.jpg The pulled pork sandwich appears from a side viewpoint with light pink and orange hues, featuring shredded pork and vibrant green and purple cabbage peeking from between toasted bread, set against a blurred background with slight occlusion on the right side. +2771535.jpg The pulled pork sandwich, viewed from a top-down angle on a wooden surface, appears darker with tints of orange and black in its textures, slightly obscured by fries on the left, featuring a bun topped with shredded carrots and a leaf of lettuce beside a small bowl of red dipping sauce. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/ramen_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/ramen_descriptions.txt new file mode 100644 index 0000000..763b569 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/ramen_descriptions.txt @@ -0,0 +1,3 @@ +408577.jpg A bowl of ramen with a muted pinkish broth, topped with slices of meat and vibrant pink pickled vegetables, is viewed from a slightly elevated angle, surrounded by light green ceramic dishes, including a small plate of reddish pickles and a bowl of white rice. +1452845.jpg A bowl of ramen with bright, artificially enhanced colors shows creamy orange broth, white noodles, and a cluster of vivid green onions, with one side occluded by a shadow, viewed from an overhead angle on a dark surface. +2968505.jpg The ramen appears in a top-down view with a greenish tint, showcasing textured noodles in a milky broth, garnished with sliced pork, vibrant corn on one side, a fish cake with a spiral pattern, and a dark spoon partially visible on the left. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/ravioli_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/ravioli_descriptions.txt new file mode 100644 index 0000000..c1d90cc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/ravioli_descriptions.txt @@ -0,0 +1,3 @@ +1965818.jpg The ravioli appears in a warm, muted tone and is covered with a chunky, reddish-brown sauce with visible herbs and dark spots, lying flat on a white plate, with the sauce partially obscuring its edges. +934248.jpg The ravioli, seen from an overhead angle, appears in a dimmed, brownish hue due to color augmentation, sitting in a creamy sauce with scattered herbs, with a spoon partially occluding some ravioli pieces within a white bowl on a cloth-covered table beside utensils. +603051.jpg The ravioli appear in a bright, yellow-green hue with a glossy, oily texture, viewed from an overhead angle, showing overlapping pieces with visible edges and a dimly lit background enhancing the color contrast. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/red_velvet_cake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/red_velvet_cake_descriptions.txt new file mode 100644 index 0000000..48b9dee --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/red_velvet_cake_descriptions.txt @@ -0,0 +1,3 @@ +2866582.jpg The image shows a cake with a coarse cream and reddish-brown crumb texture appearing topped with white frosting and viewed from a slightly elevated angle, partially sliced to reveal layered interiors with added shadows, possibly from ambient lighting or color adjustment, and minimal frame obstructions. +856994.jpg The image shows a low-resolution, warm-toned red cupcake with cream-colored frosting sprinkled with bright pink crumbs, viewed from a slightly off-center angle; the cupcake rests in a white paper liner placed on a saucer, with a blurred cafe-like environment in the background. +3177602.jpg The image shows two cylindrical slices of cake with a distinct purple hue and a swirling cream topping, viewed from an elevated angle, set on a white rectangular plate, with smooth, piped frosting and layers visible despite potential color augmentation. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/risotto_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/risotto_descriptions.txt new file mode 100644 index 0000000..95f5e04 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/risotto_descriptions.txt @@ -0,0 +1,3 @@ +818112.jpg The risotto appears in a tilted, low-resolution image with a dark, muted brown and beige hue, featuring a chunky texture with visible pieces, set on a white plate in a dimly lit environment. +621611.jpg The risotto appears golden-brown with a creamy texture, topped with large, thin cheese slices and specks of green herbs, viewed from an angled perspective with a sprig of parsley on the side. +2384723.jpg A creamy, pale beige risotto with a coarse texture and scattered dark chunks, topped with a slice of translucent red-tinted cured meat is viewed from above against a dark background, with no significant occlusions. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/samosa_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/samosa_descriptions.txt new file mode 100644 index 0000000..e42bc33 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/samosa_descriptions.txt @@ -0,0 +1,3 @@ +1416302.jpg The samosa appears in a warm, yellowish hue with a smooth, crescent-shaped body and ridged edges, viewed from an angled top perspective, partially covered by a ring of a pale onion, set against a blurred background of stacked breads. +2349119.jpg The samosa appears in a close-up view with a dark pinkish hue and slightly rough texture, positioned with its tip facing upward and partially obscured by leafy greens, with the background showing hints of a container with a red sauce. +1157597.jpg The samosa appears in a warm, yellowish hue with a crispy, uneven texture, viewed from a slightly elevated angle showing its triangular shape with filling just visible at the opening, positioned on a plate partially surrounded by sliced onions and garnished with green herbs. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/sashimi_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/sashimi_descriptions.txt new file mode 100644 index 0000000..4ea594f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/sashimi_descriptions.txt @@ -0,0 +1,3 @@ +2114139.jpg The sashimi appears in a striking neon pink hue with textured slices laid on a leaf, surrounded by a contrasting dark background and accompanied by indistinct small items on a curved ceramic dish. +1322410.jpg The salmon sashimi, displayed from a top view, features vibrant orange tones with creamy white striations, and is arranged in overlapping layers on a textured, icy surface. +2009049.jpg The sashimi appears in a warm, reddish hue due to color augmentation, with its texture showing distinct layered slices under a diagonal view, surrounded by decorative garnishes, including small flowers and greens, partially obscuring the edges. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/scallops_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/scallops_descriptions.txt new file mode 100644 index 0000000..bab73c4 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/scallops_descriptions.txt @@ -0,0 +1,3 @@ +1487883.jpg The image shows scallops that appear reddish-orange with a shiny texture, resting on a bed of thin, light-colored strands possibly mixed with green and red elements, viewed at an angle with slight shadows enhancing their round shape on a plate, and surrounded by a bright background. +4652.jpg A low-resolution, slightly browned scallop sits upright in a square dish, surrounded by green vegetables and a dark sauce, with a garnish on top, displaying a shiny, moist texture. +3664384.jpg The scallops appear reddish-pink due to the color augmentation, with a slightly browned top texture, viewed from a top-down perspective and partially embedded in a coarse grainy substance on a smooth rectangular plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/seaweed_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/seaweed_salad_descriptions.txt new file mode 100644 index 0000000..921bf36 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/seaweed_salad_descriptions.txt @@ -0,0 +1,3 @@ +3758737.jpg The visually augmented seaweed salad appears in hues of bright green with a slightly glossy texture, viewed from above in an off-white bowl on a wooden surface, with thin strands and sesame seeds clearly distinguishable amidst the greenery. +2321499.jpg The image shows a dimly lit, low-resolution square dish containing a heap of darkened, glossy, green seaweed strands with a single long, curved, orange garnish on top, and the setting appears to be on a dark table surface with a hint of a white plate in the background. +1683342.jpg The seaweed salad appears in shades of deep green and blue with a glossy, tangled texture, viewed from a slightly tilted angle, accompanied by thinly sliced cucumbers and sprinkled with sesame seeds, on a blurred plate with a dim background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/shrimp_and_grits_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/shrimp_and_grits_descriptions.txt new file mode 100644 index 0000000..5fee96c --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/shrimp_and_grits_descriptions.txt @@ -0,0 +1,3 @@ +1392049.jpg The image shows creamy shrimp and grits with a greenish tint, featuring several shrimp sprinkled with herbs, atop a smooth, textured grits base, surrounded by blurred greens and herbs, viewed from a slightly elevated angle with some areas partially obscured by garnish. +516580.jpg The shrimp and grits appear in an altered blue hue with visible shrimp and sausage pieces covered in a reddish sauce, presented on a square white plate from a slightly elevated angle with a partially visible menu in the upper left. +2353500.jpg The image depicts a plate with shrimp and grits, where the grits appear white and grainy, surrounded by vibrant red-orange shrimp topped with a sauce, alongside dark green leafy greens and a lemon wedge, all viewed slightly from above with shadows due to the lighting. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/spaghetti_bolognese_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/spaghetti_bolognese_descriptions.txt new file mode 100644 index 0000000..e5654b2 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/spaghetti_bolognese_descriptions.txt @@ -0,0 +1,3 @@ +2626331.jpg The spaghetti bolognese appears in a top-down view with vibrant pink and purple hues, showing a thick, uneven texture of meat sauce with grated cheese and parsley on top, surrounded by slightly obscured strands of spaghetti. +2327258.jpg A low-resolution image shows spaghetti bolognese with a vivid yellow-green hue, featuring finely shredded cheese on top of a thick, reddish-brown sauce with visible chunks, viewed from above, with a slight shadow cast on the lower side suggesting ambient lighting. +3815350.jpg The image shows spaghetti bolognese viewed from a top angle with a yellowish tint due to color augmentation, featuring a coarse, chunky sauce texture and a sprinkling of white granules possibly cheese, with the textured appearance partially occluded by low resolution. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/spaghetti_carbonara_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/spaghetti_carbonara_descriptions.txt new file mode 100644 index 0000000..cfa5d0e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/spaghetti_carbonara_descriptions.txt @@ -0,0 +1,3 @@ +742640.jpg The image shows spaghetti carbonara with an orange hue, enhanced by visual augmentation, displaying a creamy texture with scattered dark red, bacon-like pieces and a sprig of green parsley from a slightly angled viewpoint, with no significant occlusion evident. +2553112.jpg The spaghetti carbonara appears in a pale, creamy tone with a slightly muted texture, viewed from above, and is garnished with chopped herbs while scattered slices of ham and strands of pasta are clearly discernible despite the low resolution. +1250432.jpg A plate of spaghetti carbonara with a yellowish hue features a tangle of pasta coated in a creamy sauce with visible specks, viewed from a slightly top-down angle on a white plate against a dark background. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/spring_rolls_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/spring_rolls_descriptions.txt new file mode 100644 index 0000000..da1f718 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/spring_rolls_descriptions.txt @@ -0,0 +1,3 @@ +1783906.jpg The image shows vertically aligned spring rolls with a smooth, glossy yellow texture, positioned in front of a backdrop of leafy greens, partially obscured by a white container on the right. +2099195.jpg Four spring rolls appear in a slightly sepia-toned hue on a white plate with delicate lace-like doily underneath, viewed from a top-down angle, with the rolls arranged closely side-by-side showing a smooth, slightly shiny surface with minimal visible filling. +1771917.jpg Three golden-brown spring rolls are nestled upright amidst bright green lettuce leaves on a square white plate, with a small dish of dipping sauce nearby and diced tomatoes and onions in one corner, all slightly angled to the left. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/steak_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/steak_descriptions.txt new file mode 100644 index 0000000..b675a65 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/steak_descriptions.txt @@ -0,0 +1,3 @@ +2824680.jpg A darkened, grilled steak with visible cross-hatch marks is positioned on a white plate alongside golden-brown diced potatoes and a partially visible bulb of garlic. +3000131.jpg The steak appears as a dark brown, glossy cube, positioned centrally on a rectangular white plate, with fries to its right and slightly blurred greens, sauce, and a carrot on its left, all under warm, white lighting from an overhead source. +732986.jpg The image shows a steak with a reddish hue overlaid by vibrant red-orange strips and a sprinkle of green, accompanied by a glossy, uneven texture, viewed from above with a side of a blurred, green-tinted salad on the left. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/strawberry_shortcake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/strawberry_shortcake_descriptions.txt new file mode 100644 index 0000000..3578bd0 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/strawberry_shortcake_descriptions.txt @@ -0,0 +1,3 @@ +93683.jpg Small square pastries in orange wrappers are topped with white cream and halved strawberries, viewed from above against a vibrant pink background. +3030638.jpg The image depicts a side view of a slice of strawberry shortcake with a pale yellow sponge texture, augmented with bright red and pink berry compote spilling out from the bottom, set against a blurred dining environment, with slight occlusion from the left and top by other dinnerware elements. +1646919.jpg The strawberry shortcake, viewed from an angled top perspective, appears with a pink-hued strawberry covered in a powdered sugar-like texture atop the whipped cream, with the background and part of the cake base displaying a uniform muted pink tone, creating a slightly blurred and dusty look. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/sushi_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/sushi_descriptions.txt new file mode 100644 index 0000000..4b5cfb1 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/sushi_descriptions.txt @@ -0,0 +1,3 @@ +3750535.jpg The image depicts several sushi rolls with a contrasting green and black coloring on the inside due to avocado and nori, surrounded by a grainy white rice exterior, all positioned on a glossy white plate under ambient lighting. +537978.jpg The sushi rolls, seen from a slightly angled top-down view, appear in muted yellowish tones with a grainy texture, accompanied by scattered dark specks resembling sesame seeds, partially obscured by the dish's edge at the bottom. +1831661.jpg The sushi image shows a set of dark seaweed-wrapped rolls filled with white rice and orange-tinted fish, positioned centrally on a wooden platter with two white-topped nigiri pieces nearby, under dim and muted lighting. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/tacos_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/tacos_descriptions.txt new file mode 100644 index 0000000..957d993 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/tacos_descriptions.txt @@ -0,0 +1,3 @@ +1835496.jpg The augmented tacos appear tilted with a greenish hue, featuring distinct leafy greens and pale fillings on a soft, light-colored tortilla, partially obscured by shadows with the plate edge visible. +623353.jpg The tacos appear with altered colors, featuring a largely purple and brown hue with a crispy texture, viewed from a top frontal angle, partially wrapped in shiny foil with vibrant purple cabbage visible as a topping. +499937.jpg The tacos, viewed from a slightly tilted angle, display a red-orange hue with a wet texture due to the sauce covering the filling, which appears partially obscured by leafy greens peeking from under the toppings. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/takoyaki_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/takoyaki_descriptions.txt new file mode 100644 index 0000000..e9e9f99 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/takoyaki_descriptions.txt @@ -0,0 +1,3 @@ +347176.jpg The image shows a tray of spherical takoyaki with a bluish-yellow hue, topped with dark sauce and green flakes, placed amidst swirling bonito flakes, viewed from a slightly overhead angle on a dark surface. +923389.jpg The takoyaki appear in warm, saturated tones with a shiny texture, arranged diagonally from a slightly above viewpoint, adorned with sauce and garnishes, against a blurred background, with the distinct spherical shape still noticeable despite the visual modifications. +3713603.jpg The takoyaki appears with a sepia-tinted hue and a soft-focus texture, viewed from a slightly elevated angle within a black tray, with glistening browned surfaces and patches of green garnish on top, partially obscured by low-resolution noise. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/tiramisu_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/tiramisu_descriptions.txt new file mode 100644 index 0000000..6c03ae4 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/tiramisu_descriptions.txt @@ -0,0 +1,3 @@ +1985115.jpg A rectangular dessert with a greenish hue and speckled texture sits askew on a white plate, adorned with an unidentified green garnish, viewed from above. +716644.jpg A dessert in a glass with a smooth, cream layer topped with dark berries, a purple flower, and a green mint leaf, viewed from an angled upper perspective, set against a blurred background with wooden furniture. +3482786.jpg A slice of tiramisu with a dark brown cocoa powder layer on top is oriented at a slight diagonal, revealing creamy, speckled layers interspersed with coffee-soaked sponge, surrounded by a white plate with scattered cocoa dust, and partially occluded by a fork on the right side. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/tuna_tartare_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/tuna_tartare_descriptions.txt new file mode 100644 index 0000000..566b224 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/tuna_tartare_descriptions.txt @@ -0,0 +1,3 @@ +538872.jpg The tuna tartare appears as a pinkish rectangular slab with a slightly rough texture, centrally placed amid golden-brown crispy chips on a white plate, surrounded by lime wedges on a white tablecloth, viewed from a top-down perspective. +3524553.jpg A spherical object resembling a tuna tartare is presented from a top-down angle, featuring a vivid orange to yellow gradient with a smooth, glossy texture, resting among transparent fragments resembling crushed ice, creating a visually striking contrast against a pale background. +3198714.jpg The low-resolution image shows a mound of diced tuna tartare, which appears purplish-blue and glossy due to color augmentation, interspersed with small cubed vegetables showcasing varied hues, viewed from an overhead angle with the tartare centered in a metallic dish, while the surrounding elements provide a vibrant contrast and no significant occlusion is present. diff --git a/utils/area/descriptions/Food/generated_descriptions_aug/waffles_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_aug/waffles_descriptions.txt new file mode 100644 index 0000000..80a3c5d --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_aug/waffles_descriptions.txt @@ -0,0 +1,3 @@ +169556.jpg A plate contains a light brown, rectangular waffle topped with dollops of white cream and sliced red strawberries, viewed from a slight angle with the dish predominantly at the center, under dim lighting on a dark surface. +3297297.jpg A lime green, round waffle occupies the center of the image with a grid texture dusted with powdered sugar, viewed from a top angle, and accompanied by a small cup of pale green sauce on the left. +2297483.jpg A vibrantly colored waffle is seen from a side angle, stuffed with strawberries, a slice of kiwi, and whipped cream, encased partially by a white wrapper, against a blurred, bright background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/apple_pie_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/apple_pie_descriptions.txt new file mode 100644 index 0000000..4668fb1 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/apple_pie_descriptions.txt @@ -0,0 +1,6 @@ +2337652.jpg A partially top-down view shows an apple pie with a golden-brown, glossy crust featuring indistinct apple slices, positioned on a clear dish with a rectangular area occluded by static-like noise on the left side, amidst a floral-patterned tablecloth. +3376635.jpg The image shows an apple pie viewed from above in a tin pan, with a golden, flaky crust partially visible at the top and lower left, while the central portion is obscured by a colorful static-like band of noise, hinting at fruit filling underneath. +2967700.jpg A square plate holds a brown, flaky-textured pastry (partially obscured on the left by digital noise) beside a scoop of pale vanilla ice cream on a bed of crumbled, spiced crumbs with caramel drizzle, viewed from above. +392009.jpg The visible portion of the apple pie shows a golden-brown crust with a flaky texture, viewed from a slightly elevated side angle on a metallic surface, with the central part obscured by random visual noise. +2921600.jpg A slice of apple pie with a flaky, golden-brown crust and sugar-dusted surface is situated on a white plate, partially occluded on the left by a colorful, rectangular static pattern, displaying a side view with visible apple filling oozing slightly from the edge. +909196.jpg The apple pie, partially wrapped in a green sleeve with "Caution Hot," displays a golden-brown flaky crust with visible edges protruding from the sleeve, and is mostly obscured by a central, colorful static-like occlusion, while resting on a white textured cloth. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/baby_back_ribs_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/baby_back_ribs_descriptions.txt new file mode 100644 index 0000000..d26dbee --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/baby_back_ribs_descriptions.txt @@ -0,0 +1,6 @@ +538558.jpg The baby back ribs appear in a close-up view with a glossy, caramelized texture and a rich, browned surface, obscured centrally by colorful noise, while the surrounding metal grill gives context to their arrangement. +479382.jpg The partially visible baby back ribs appear dark and slightly shiny, suggesting a seasoned or sauced exterior, with the left side exposed and resting on a white plate next to a small bowl of light green coleslaw and a cup of sauce, while the right side is obscured by a multicolored static occlusion. +3003568.jpg A low-resolution image displays a plate of baby back ribs in a dim setting, with visible dark, glossy sauce around the edges, garnished with greenery, partially occluded by a pixelated rectangle in the center, surrounded by vegetables and white rice, viewed from a top-down angle. +3612206.jpg The baby back ribs are partially visible with a glossy, brown, and charred surface texture, viewed from above, with significant pixelation and noise occluding the left side, placed on a white plate atop a wooden table. +922067.jpg The image shows a partially visible plate with baby back ribs that appear dark brown and glazed, accompanied by sautéed vegetables and mashed potatoes; the right side is heavily occluded by a vertical strip of noise, obscuring one-third of the dish. +153883.jpg The baby back ribs appear slightly charred with a brown, grilled texture, viewed from above on a circular grill, and are partially occluded by a large area of multicolored static noise on the upper portion. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/baklava_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/baklava_descriptions.txt new file mode 100644 index 0000000..9d9b844 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/baklava_descriptions.txt @@ -0,0 +1,6 @@ +2015707.jpg This image shows a batch of light golden-brown baklava with a glossy texture from syrup, arranged in a grid pattern, with a significant portion in the center covered by a colorful, noise-like occlusion. +2534447.jpg The visible part of the baklava on a white plate shows a golden-brown, flaky texture with a syrupy sheen, viewed from above, while the central portion of the image is obscured by a dense, colorful noise pattern extending vertically. +884587.jpg The image depicts a white plate with several triangular pieces of baklava arranged in a row, some topped with small blueberries and a mint leaf for garnish, with the left portion of the image obscured by colorful static noise and a decorative chocolate drizzle bordering the arrangement on the plate. +1763369.jpg The image shows two triangular pieces of baklava with golden-brown flaky layers adorned with powdered sugar and partially occluded by a colorful digital square, surrounded by a glossy sauce with a few berries as garnish. +854872.jpg The baklava appears in a close-up view with golden-brown, flaky layers topped with green pistachio bits and a central pixelated occlusion obscuring some of the crispy top, surrounded by a metallic tray surface. +2426116.jpg This baklava is viewed from a side angle, featuring layers of golden-brown flaky pastry and a dense, nut-filled center, topped with chopped green pistachios, with substantial occlusion on the right side resembling digital noise. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/beef_carpaccio_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/beef_carpaccio_descriptions.txt new file mode 100644 index 0000000..64c1b43 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/beef_carpaccio_descriptions.txt @@ -0,0 +1,6 @@ +1916354.jpg The beef carpaccio features thin slices with a reddish-pink hue and a visible grainy texture, partially covered by a central vertical occlusion, accompanied by bright green leafy greens and a slice of toasted bread, all presented on a white plate. +1334166.jpg A vibrant blue plate hosts thinly sliced, marbled pink meat with visible white fat striations, surrounded by a colorful salad mix of green, yellow, and red ingredients, partially obscured by a heavy vertical occlusion on the right side. +2287114.jpg The beef carpaccio, viewed from an oblique angle, shows thin slices of red meat with a marbled texture, garnished with arugula and slivers of white cheese, partially occluded by a colorful, pixelated vertical strip on the left side. +2217913.jpg The beef carpaccio appears as thin slices of pinkish-red meat with a slightly glossy texture, topped with grated cheese and arranged on a white plate, partially obscured by a large, vertical section of pixelated occlusion, with visible garnishes and a checkered tablecloth in the background. +847775.jpg A white plate holds thin slices of red beef carpaccio, with a glistening oily texture, partially obscured by a horizontal band of colorful noise, revealing red onion slices, herb garnish, and a wedge of lemon on the side. +1493182.jpg Thin slices of pinkish-red meat with a marbled texture are partially visible around a central occlusion, accompanied by a scattering of green leaves and white creamy drizzles on a white plate, set atop a wooden surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/beef_tartare_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/beef_tartare_descriptions.txt new file mode 100644 index 0000000..d7b6ce7 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/beef_tartare_descriptions.txt @@ -0,0 +1,6 @@ +3118786.jpg The image shows a platter with small, topped crostinis having a reddish mixture that implies beef tartare, surrounded by green leaves, where the center is occluded by a colorful digital pattern. +2169059.jpg The beef tartare, viewed from above at an angle, appears to have a textured mix of red and pink hues, topped with delicate green herbs and crispy white frisée, while the left portion is obscured by a colorful static-like occlusion, and a toasted bread slice is visible next to it on a white plate. +3118257.jpg The beef tartare appears as a roughly cylindrical mound with a speckled dark red texture, viewed from slightly above, with a central vertical occlusion obscuring part of the dish, surrounded by a white plate garnished with scattered bright green herbs and a glossy oil drizzle. +270675.jpg The beef tartare is partially visible on a white plate with a coarse reddish texture, situated at the center and lower part of the image, surrounded by leafy greens and fries on the left, while a large colorful occlusion covers the right side of the plate, and bread is visible in a basket to the left. +1837012.jpg The image depicts a plate with finely chopped, reddish beef tartare, garnished with slices of green pickles, capers, and microgreens, surrounded by residual yellow oil and black pepper, with the left side significantly obstructed by colorful static noise occlusion. +1712013.jpg The beef tartare appears to have a rich red color with a speckled texture highlighted by a glossy egg yolk at the center, surrounded by sparse greenery and crispy elements, while a significant portion on the left is obscured by a colorful, pixelated occlusion. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/beet_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/beet_salad_descriptions.txt new file mode 100644 index 0000000..5f8b2fd --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/beet_salad_descriptions.txt @@ -0,0 +1,6 @@ +614218.jpg The beet salad is partially visible from a top-down view, featuring vividly colored yellow and red beet chunks, crumbled white cheese, and leafy greens, with heavy occlusion covering the upper portion in a noise pattern. +421341.jpg The beet salad appears on a white plate with visible pieces of deep purple beet and orange segments, topped by a pale yellow endive leaf, while a central vertical section is obscured by colorful static, surrounded by a warm, softly lit dining environment. +3165387.jpg The beet salad features visible burgundy and yellow slices layered horizontally with a scattering of arugula and crumbly cheese on top, partially obscured by pixelated noise in the center, all on a rectangular white plate. +1022174.jpg A beet salad on a white plate shows visible deep red and white colors of beets and cheese, partially obscured by a central vertical block of static-like noise, with a drizzled pattern of sauce creating contrast along the edges. +2353523.jpg A dish presented on a dark slate surface features vibrant greens and red beet pieces, with a colorful, heavily pixelated band obscuring the left portion, while the right side showcases leafy greens and beet cubes contrasted by a wooden table background. +298196.jpg The beet salad appears in an oval dish with dark red, glossy beet slices partially visible behind heavy central occlusion, garnished with green herbs and white crumbly cheese, set in a casual dining environment. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/beignets_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/beignets_descriptions.txt new file mode 100644 index 0000000..7b136ca --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/beignets_descriptions.txt @@ -0,0 +1,6 @@ +657625.jpg The image shows triangular beignets viewed from above, dusted with white powdered sugar, with a significant portion of the central area obscured by a colorful, pixelated pattern on a lightly speckled white plate on a marbled surface. +2043752.jpg The beignets are positioned on a plate in the background, covered in powdered sugar with a dark, slightly rough texture, and partially occluded by a pixelated rectangular area on the left, contrasting with the sepia-toned, speckled table surface and accompanying coffee cup in the foreground. +1655915.jpg The beignets are viewed from above, showcasing a dusting of white powdered sugar over their golden-brown surfaces, with the main occlusion appearing as a multicolored, pixelated area covering the left side, with the beignets on a white plate and a textured table beneath. +3179597.jpg The beignets are light brown with a dusting of white powdered sugar, viewed from above, with the right side heavily occluded by a vertical strip of colored static. +26379.jpg Three golden-brown beignets, topped with a generous layer of white powdered sugar, sit on a small plate, partially obscured by a large, colorful static-like occlusion on the left, with a glass of water in the background on a speckled surface. +3767212.jpg A partially visible beignet, coated in white powdered sugar, is in a white container with a significant portion obscured by colorful static noise, surrounded by a bright yellow and blue background, and a glimpse of a brown surface in the distance. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/bibimbap_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/bibimbap_descriptions.txt new file mode 100644 index 0000000..bb8ec7f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/bibimbap_descriptions.txt @@ -0,0 +1,6 @@ +2292732.jpg The bibimbap is viewed from above in a stone bowl, showing vibrant colors with red sauce, orange carrots, dark seaweed, yellow egg, and green spinach, partially occluded by a square of colorful static. +2521325.jpg A wooden tray holding a bibimbap in a stone bowl is partially visible, with dark-textured ingredients like seaweed and brown meat standing out, while the bottom right half is highly pixelated and obscured, surrounded by a white tray holding a bowl of soup and a sauce container. +2990859.jpg The bibimbap is partially visible in a black bowl with layered ingredients showing varying textures, mostly obscured by vertical noise, placed on a dark placemat with utensils nearby in a restaurant setting. +2489895.jpg The bibimbap is seen from an overhead viewpoint, with the left portion heavily occluded by colorful static, the right side revealing vibrant vegetable textures and a circular slice of white radish atop textured layers of mixed ingredients, surrounded by small dishes of yellow, red, and orange accompaniments on a smooth white surface. +3649090.jpg The image shows a dark bowl with partially visible bibimbap, dominated by a brownish rice texture with assorted colors, viewed from the top perspective, with the left half heavily occluded by colorful noise. +1757745.jpg A low-resolution image shows a partially visible bibimbap in a black stone bowl from an overhead view, with a sunny-side-up egg and red sauce on white rice exposed on the left, while the right side is completely occluded with a colorful static-like pattern. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/bread_pudding_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/bread_pudding_descriptions.txt new file mode 100644 index 0000000..97576cc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/bread_pudding_descriptions.txt @@ -0,0 +1,6 @@ +1911840.jpg The bread pudding has a warm, golden-brown crust with a slightly coarse texture, viewed from above, partially occluded by colorful static noise, surrounded by a clear plastic container hinting at a commercially packaged setting. +287532.jpg The image shows a low-resolution, partially occluded bread pudding with a warm brown hue and a slightly glossy texture visible at an angle, alongside a smooth, lighter colored scoop, with a colorful noise pattern covering a central section. +2083955.jpg The image shows a circular, brown dessert with a glossy surface and scattered pecans, partially occluded by a rectangular noise pattern, surrounded by a glossy yellow sauce and a dusting of powdered sugar on a white plate. +595191.jpg The bread pudding appears light brown with a soft, puffy texture, partially covered with a glossy white sauce, and is presented in a white dish with a square of digital noise occluding part of the top. +1191029.jpg The bread pudding, viewed from a slightly elevated angle, appears in a creamy and textured off-white with a smooth top, partly obscured by a colorful, static-like vertical occlusion on the right side, all presented on a square white dish against a dark background. +1617549.jpg The bread pudding appears brown with a coarse texture dusted with powdered sugar, viewed from above with a mint leaf on top, partially occluded by a pixelated square in the lower left area, against a smooth, light-colored background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/breakfast_burrito_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/breakfast_burrito_descriptions.txt new file mode 100644 index 0000000..d65b0d6 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/breakfast_burrito_descriptions.txt @@ -0,0 +1,6 @@ +473206.jpg The breakfast burrito, viewed from an angled top perspective on a white oval plate, appears covered with a greenish-brown sauce with visible cheese, featuring a digitally pixelated occlusion on the right side, and resting on a dark wooden surface. +1492815.jpg A breakfast burrito is partially visible from a top angle, revealing a tortilla with a smooth texture, covered in a drizzle of white sauce and topped with vibrant toppings like diced avocado and tomatoes, with the left side heavily occluded by colorful noise, nestled on a white plate alongside golden-brown diced potatoes. +1860425.jpg A breakfast burrito wrapped in foil is held in hand, with visible sections showing a mix of scrambled eggs and sausage near the bottom and chopped tomatoes peeking through the tortilla, while the upper portion is largely obscured by colorful static overlay; the background includes a disposable plate with a floral pattern. +254589.jpg The breakfast burrito, partially occluded by a colorful static overlay at the center, appears to be covered in a creamy, white sauce with a speckled texture, displayed on a plate with noticeable shadows and part of a knife visible at the top right edge. +2685695.jpg A partially visible breakfast burrito with a light tan, slightly crisped tortilla is positioned horizontally on a plate with a colorful static occlusion on the right, accompanied by a visible side of salsa and knives in the background. +1517807.jpg The breakfast burrito is cut in half showing an interior filled with scrambled eggs, cheese, and bits of sausage, with a lightly browned, soft tortilla exterior, sitting on a dark plate with a visible side of sauce, partially obscured by a colorful pixelated occlusion on the left side. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/bruschetta_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/bruschetta_descriptions.txt new file mode 100644 index 0000000..a2bcad7 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/bruschetta_descriptions.txt @@ -0,0 +1,6 @@ +731436.jpg The low-resolution image shows several pieces of toasted bread topped with diced tomatoes, green herbs, and sprinkled cheese on a white plate, with heavy noise occlusion obscuring the right half of the photo. +2860436.jpg The image shows a few pieces of bruschetta on a wooden surface, featuring visible toppings in shades of orange and green with a creamy texture, partially obscured by a central pixelated area. +629893.jpg The bruschetta is presented on a white plate with visible toasted brown edges, topped with diced red tomatoes and green basil leaves, with a significant portion in the center obscured by pixelated static. +319689.jpg The visible bruschetta is topped with diced red tomatoes, herbs, and possibly small green leaves, placed on a toasted bread slice viewed from above, with the right side covered by heavy, multicolored occlusion. +1270421.jpg The bruschetta is viewed from above with visible golden-brown toasted bread topped with thin greenish-yellow shredded pieces, partially obscured by a vertically centered colorful noise rectangle, and placed on a wooden board. +3922510.jpg The image shows a partially visible bruschetta, displaying vibrant red tomatoes and scattered green basil on a toasted bread surface with some balsamic glaze drizzled around, while the central portion is heavily obscured by digital noise against the backdrop of a white rectangular plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/caesar_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/caesar_salad_descriptions.txt new file mode 100644 index 0000000..890d04c --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/caesar_salad_descriptions.txt @@ -0,0 +1,6 @@ +793492.jpg The image shows a caesar salad with vibrant green lettuce, creamy dressing, and shredded cheese visible from a semi-top view, with the left side of the dish obscured by a dense, multicolored grainy pattern. +1841183.jpg The image shows a Caesar salad topped with grilled chicken, featuring visible green leaves and slices of brown toasted bread on a white plate, partially obscured by a rectangular area of colorful static noise in the center. +3228048.jpg A caesar salad partially visible from a side angle features fresh green romaine lettuce at the edges, and atop it creamy dressing with a sprinkling of chopped herbs, with a significant portion in the center obscured by colorful static noise. +3671604.jpg The Caesar salad, viewed top-down, displays pale green romaine lettuce with creamy dressing, topped with shredded cheese, and is heavily occluded by a vertical strip of colorful noise on the left side. +2794828.jpg A low-resolution Caesar salad with visible green lettuce, grilled chicken with grill marks, scattered red tomatoes, and olives is partially occluded by a colorful, pixelated square on the right. +2290959.jpg A scattered mix of green romaine lettuce and brown croutons with a coating of white creamy dressing is visible from a top-down view, with a pixelated rectangular occlusion in the lower left corner. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/cannoli_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/cannoli_descriptions.txt new file mode 100644 index 0000000..de0fd61 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/cannoli_descriptions.txt @@ -0,0 +1,6 @@ +318079.jpg The cannoli is viewed from an angled side perspective, showcasing a light golden-brown, flaky crust partially dusted with powdered sugar and filled with white creamy ricotta filling, with a major portion on the left obscured by a rectangle of colorful static noise. +1772271.jpg The image depicts a partially occluded cannoli with a browned, crispy shell dusted with powdered sugar visible on the right and a creamy white filling seen emerging from the shell's end, set against a subtly blurred background with a pinkish hue around the plate. +1358599.jpg A slice of dessert with visible whipped cream and chocolate shavings sits on a white plate adorned with a zigzag of dark syrup, partially occluded by a colorful digital overlay on one side. +2734104.jpg A partially visible cannoli with a golden-brown, crispy shell is seen from the side on a white plate, with one end showing a filling of green and white colors, while the rest is obscured by dense visual noise on the right side. +3735009.jpg The visible portion of the cannoli shows a crispy, light brown shell dusted with powdered sugar, partially filled with creamy, off-white filling, topped with a small red garnish, and is placed on a white napkin with blue floral patterns, with significant multicolored static covering the right side of the image. +892394.jpg The cannoli is positioned horizontally with a visible golden-brown, crisp shell partially wrapped in white powdered sugar and filled with white cream peeking out from one end, while the background features branded paper from "Ferrara," and there is a colorful pixelated occlusion covering a section of the image. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/caprese_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/caprese_salad_descriptions.txt new file mode 100644 index 0000000..b1d6ffa --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/caprese_salad_descriptions.txt @@ -0,0 +1,6 @@ +1041456.jpg A plate of caprese salad is shown at a slight angle, featuring visible fresh red tomato slices and green basil leaves on a base of white mozzarella, with a significant portion on the right obscured by dense pixelation and a glistening yellow dressing reflecting light. +2548008.jpg The image shows a caprese salad with visible fresh green spinach leaves, sliced red tomatoes, and creamy white mozzarella cheese, displayed on a white plate with a vertical, pixelated occlusion covering the central portion, while balsamic glaze is drizzled on top and the salad is partially viewed from above. +810934.jpg The image shows a plate with a caprese salad featuring visible slices of mozzarella cheese, fresh basil leaves, halved cherry tomatoes, and a serving of pesto at the edge; the right side is heavily occluded with a colorful static pattern, while slices of bread are positioned at the top. +2773242.jpg The caprese salad is viewed from above on a white plate, displaying a small section with bright green basil leaves, a slice of fresh red tomato partially visible beneath, and some creamy white mozzarella peeking through, while the left half of the image is heavily occluded by static-like noise. +831647.jpg The image shows sliced tomatoes and glistening mozzarella with visible green basil leaves on a plate, partially obscured by a central rectangular area of multicolored static. +2085887.jpg A vibrant caprese salad is partially occluded by a central pixelated block, with visible fresh green basil, sliced tomatoes, white mozzarella slices, and dollops of a green herb mixture lightly speckled around. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/carrot_cake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/carrot_cake_descriptions.txt new file mode 100644 index 0000000..e97f152 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/carrot_cake_descriptions.txt @@ -0,0 +1,6 @@ +212139.jpg The image shows a low-resolution carrot cake slice viewed from above, partially visible with creamy white frosting and a walnut garnish on a vibrant blue floral-patterned plate, heavily occluded by multicolored pixel noise primarily covering the center. +218491.jpg The cake is viewed from above, showing a golden-brown, crispy surface with scattered green and pinkish-red bits, partially occluded by a multicolored static-like band across the center, on a white plate against a dark background. +2084962.jpg The image shows a slice of a multi-layered carrot cake with off-white frosting on top and partially between layers, viewed from a side angle on a white plate, with a large portion obscured by a colorful, pixelated occlusion on the left side. +1377324.jpg The carrot cake appears to have a smooth, cream-colored frosting with piped rosettes, garnished with vibrant red cherries around the edge, and the center portion is obscured by a colorful digital noise pattern. +2238258.jpg The cake appears to be a slice with visible layers of brown crumb and white frosting, topped with a light orange garnish, while a significant portion is occluded by a pixelated rectangle on the left side, all set against a dark opaque surface. +224939.jpg The image shows a dish with a rectangular digital occlusion, revealing parts of a caramelized, fried mixture with golden-brown textures, scattered green garnishes, and shrimp-like elements set against a white dish backdrop. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/ceviche_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/ceviche_descriptions.txt new file mode 100644 index 0000000..2cd3626 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/ceviche_descriptions.txt @@ -0,0 +1,3 @@ +1520895.jpg The image shows a plate of ceviche with pale beige fish pieces and red onions, partially occluded by a vertical, multicolored noise pattern, with visible reddish bits suggesting vegetables in a dimly lit space. +1489893.jpg A plate of ceviche with a reddish, liquid-like texture is visible from an overhead angle, featuring lemon wedges and a purple flower as garnishes, while a significant portion is occluded by a multicolored static pattern. +1590657.jpg The ceviche appears from a top view with vibrant colors of red and green, featuring a cup of green salsa and leafy greens in the upper section, while a pixelated occlusion obscures the center, leaving the outer fresh ingredients partially visible. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/cheese_plate_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/cheese_plate_descriptions.txt new file mode 100644 index 0000000..b15cda3 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/cheese_plate_descriptions.txt @@ -0,0 +1,3 @@ +686403.jpg A collection of small, uniformly cut white cheese cubes with a soft texture sits on large green leaves, with a colorful, pixelated occlusion obscuring the central portion. +327839.jpg The cheese plate appears from a top-down view on a white square dish, with visible items including pale beige crackers on the right, nuts and dark red dried fruits nearby, and a small dish with a yellow liquid encircled by heavily patterned static occlusion on the left, partially revealing creamy, light-colored cheese with a soft, smooth texture. +2773978.jpg A dimly lit cheese plate is viewed from above, featuring visible yellow and white cheeses with a soft texture on a white oval plate, partially obscured by a central vertical block of colorful static noise, surrounded by a warm-toned background suggesting a cozy setting. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/cheesecake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/cheesecake_descriptions.txt new file mode 100644 index 0000000..330f1e7 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/cheesecake_descriptions.txt @@ -0,0 +1,3 @@ +780915.jpg A slice of cheesecake appears in a side view with a smooth, pale yellow texture, a topping of white whipped cream and red berry sauce, partially occluded by a square digital noise over the central area, accompanied by a visible orange slice garnishing the plate, with two silver forks nearby. +2094088.jpg A slice of cheesecake with a creamy yellow texture is topped with a glossy, dark reddish-purple fruit sauce, viewed from above on a white plate, partly occluded by a pixelated rectangular area on the right. +1696582.jpg A cheesecake slice with a creamy white layer and a glossy dark chocolate or berry topping is seen from an elevated angle, with a significant portion of the lower front area obscured by digital noise, surrounded by a white plate streaked with red sauce and garnished with a small red fruit. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/chicken_curry_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/chicken_curry_descriptions.txt new file mode 100644 index 0000000..66ec215 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/chicken_curry_descriptions.txt @@ -0,0 +1,3 @@ +3909329.jpg The visible portion of the chicken curry shows a vibrant reddish-brown sauce topped with fresh green herbs, viewed from an oblique angle, with heavy speckled occlusion covering the right side of the bowl. +2653549.jpg A white bowl features a rich, reddish-orange curry with visible chunky textures, like a hard-boiled egg and potato pieces, partially obscured by a pixelated section on the right, and a side view reveals accompanying rice and vegetables on a square plate in the background. +1482382.jpg A colorful curry with a creamy sauce features visible green beans, red bell peppers, and varied vegetables, surrounded by a heavily pixelated occlusion on the right side. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/chicken_quesadilla_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/chicken_quesadilla_descriptions.txt new file mode 100644 index 0000000..3947a4a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/chicken_quesadilla_descriptions.txt @@ -0,0 +1,3 @@ +3172049.jpg The image shows part of a chicken quesadilla with a golden-brown, crispy texture, viewed from a diagonal top angle, with the left section visible and the right heavily occluded by colorful noise, resting on a metallic surface with hints of filling peeking out. +75897.jpg A partially visible grilled chicken quesadilla with a golden-brown, slightly crispy texture, drizzled with white sauce and garnished with green onions on a blue plate, is occluded by a large multicolored, static-like pattern on the left side, all within a light wooden basket. +1126297.jpg A partially visible chicken quesadilla with a golden-brown, slightly charred texture is on a white plate alongside a metal cup of crispy, golden fries and a small white dish of red sauce, with the right part of the quesadilla obscured by a dense, multicolored digital occlusion. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/chicken_wings_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/chicken_wings_descriptions.txt new file mode 100644 index 0000000..3653a06 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/chicken_wings_descriptions.txt @@ -0,0 +1,3 @@ +572328.jpg The image shows chicken wings with a glossy red-orange coating, possibly indicating a spicy or tangy sauce, featuring a bumpy texture with one side heavily occluded by static-like noise, placed on a red and white checkered surface. +1977168.jpg The chicken wings are coated in a glossy brown sauce with a slightly toasted texture, viewed from above, with a significant rectangular area in the center visually distorted by colorful noise, and accompanied by sticks of fresh celery and carrot on a white plate. +2203217.jpg The chicken wings appear to be sauced with a reddish glaze, have a crispy texture, are viewed from above on a light plate, and are partially obscured by a colorful noise pattern on the right side, with a white dipping sauce visible near the wings. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/chocolate_cake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/chocolate_cake_descriptions.txt new file mode 100644 index 0000000..8bca6be --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/chocolate_cake_descriptions.txt @@ -0,0 +1,3 @@ +577717.jpg A tall, central column of intense static noise obscures most of the image, surrounded by a background of vertical gray blinds against a clear blue sky with scattered white clouds. +3063900.jpg The image depicts a slice of dark chocolate cake with a glossy surface and rich layers, partially occluded by a vertical column of static noise, with the remaining visible portion showing a softly lit dining table setting with water glasses. +3575528.jpg The chocolate cake appears dark with a textured, star-patterned surface, viewed from a top angle, with significant occlusion from a colorful square at the lower left portion. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/chocolate_mousse_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/chocolate_mousse_descriptions.txt new file mode 100644 index 0000000..8a10370 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/chocolate_mousse_descriptions.txt @@ -0,0 +1,3 @@ +2454716.jpg A partially occluded scene shows a collection of glass bowls from a slightly elevated angle, containing smooth, glossy brown chocolate mousse with a light reflection on the surface, while a colorful patterned occlusion obscures the center of the image and an egg carton is visible in the background. +2836683.jpg The image features a partially visible dessert with a round shape, heavily covered in bright white powder, situated on a plate, accompanied by a smooth, creamy dollop and dark crumbs on one side, with the central portion obscured by colorful static-like occlusion. +595035.jpg A partially visible chocolate mousse slice with a smooth, dark brown color is seen from a side angle on a floral-edged plate against a wooden table, heavily obscured by a colorful vertical static-like pattern down the center. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/churros_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/churros_descriptions.txt new file mode 100644 index 0000000..61477cc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/churros_descriptions.txt @@ -0,0 +1,3 @@ +3492216.jpg A group of churros with a golden-brown, sugary texture is partially visible, standing upright in a metal cup with the top section obscured by pixelated static, next to a white cup on a table with glassware blurred in the background. +1086460.jpg The churros are slightly browned with a dusting of powdered sugar, viewed from above on a shiny metal tray, with a small colorful, pixelated occlusion in the bottom right corner. +1801080.jpg The churros in the image appear golden-brown and sugar-dusted, positioned vertically in a glass cup, partially obscured by a central rectangle of colorful static noise, against a wooden table backdrop with a white napkin. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/clam_chowder_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/clam_chowder_descriptions.txt new file mode 100644 index 0000000..387f77e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/clam_chowder_descriptions.txt @@ -0,0 +1,3 @@ +2018024.jpg The clam chowder appears smooth with a light creamy beige color and scattered small dark specks, presented in a simple white cup, with the center heavily occluded by a colorful noise square, and the rest of the environment dimly lit with subtle shadows. +3738431.jpg A white bowl contains a creamy, off-white substance with visible greenish and brownish bits, partially obscured by a vertical colorful noise pattern, and is accompanied by crackers and a spoon on a patterned surface. +2078993.jpg The image shows a bowl of clam chowder with a creamy, off-white appearance and a smooth texture, viewed from a slightly elevated angle, with a central vertical section obscured by pixelated noise, revealing a white plastic spoon leaning against the bowl's rim. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/club_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/club_sandwich_descriptions.txt new file mode 100644 index 0000000..a57210b --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/club_sandwich_descriptions.txt @@ -0,0 +1,3 @@ +215356.jpg A partly visible sandwich with a greenish-brown rounded texture is wrapped in branded paper, with the left half legible, and is obscured on its right side by heavy digital noise. +1964094.jpg A plate with a sliced club sandwich featuring pale bread and layers of visible greens and meats is partially obscured by colorful noise in the lower center, surrounded by a stack of golden fries on a speckled table. +3512212.jpg A club sandwich viewed from a slightly elevated angle features grilled bread with visible golden-brown lines, filled with lettuce and turkey or chicken slices peeking out, while the middle left section is heavily obscured by a colorful digital noise square on a white plate against a wooden table background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/crab_cakes_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/crab_cakes_descriptions.txt new file mode 100644 index 0000000..510a9fa --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/crab_cakes_descriptions.txt @@ -0,0 +1,3 @@ +3923195.jpg The image shows a dim-lit crab cake with a golden-brown crust, partially obscured by digital noise and a lemon wedge, sitting on a bed of green lettuce. +1414552.jpg A round, golden-brown crab cake is partially visible at the top of a white rectangular plate, with a greenery garnish on the bottom left, while the center of the image is heavily occluded by multicolored static noise. +1455563.jpg The visible crab cakes have a round shape with a golden-brown and slightly reddish texture, viewed from above on a white plate, with a significant portion of the image heavily occluded by a vertical noise strip, leaving one cake partially unobscured and hints of sauce and garnish in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/creme_brulee_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/creme_brulee_descriptions.txt new file mode 100644 index 0000000..2b172f3 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/creme_brulee_descriptions.txt @@ -0,0 +1,3 @@ +935865.jpg The image shows a creme brulee with a smooth, slightly caramelized yellow surface featuring some brown patches, viewed from above, with a significant portion obscured by colorful noise in the lower right, alongside a dollop of pink cream topped with a dark berry and a garnishing mint leaf on a white plate with red sauce drips. +1365780.jpg The creme brulee appears from an overhead angle with a caramelized, golden-brown top partially obscured by a colorful square of noise in the bottom left, set on a white plate with an indistinct logo. +1849031.jpg The creme brulee, viewed from a slightly elevated angle, has a visible smooth, caramelized, golden-brown top with the left side exposed, while a large central part is occluded by colorful static-like noise, all against a white plate backdrop on a marble surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/croque_madame_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/croque_madame_descriptions.txt new file mode 100644 index 0000000..367a9aa --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/croque_madame_descriptions.txt @@ -0,0 +1,3 @@ +3050858.jpg The image depicts a sandwich with toasted brown crust and a light, creamy interior, partially wrapped in brown paper, with a significant portion in the center obscured by digital noise, leaving visible the bread’s textured surface and a faint glimpse of filling edges against a blurred background with striped patterns. +531000.jpg A croque madame with a vibrant yellow yolk on a white egg is partially visible, with the right side heavily occluded by colorful noise, on a white plate with green lettuce and brownish tones in the foreground. +2758675.jpg A low-resolution image shows a croque madame with visible golden-brown toast edges and a hint of pink meat, partially obscured by a square block of colorful static, with the scene slightly angled from the side revealing the plate and suggesting an indoor setting with blurred background elements. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/cup_cakes_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/cup_cakes_descriptions.txt new file mode 100644 index 0000000..162d7fc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/cup_cakes_descriptions.txt @@ -0,0 +1,3 @@ +2475503.jpg The visible cupcake has a smooth, white swirled frosting adorned with small red heart decorations, seen from an angled side view with a significant portion obscured by a colorful, glitchy rectangular occlusion on the left. +772692.jpg A display of assorted cupcakes with swirled frosting in hues of white and brown, partially occluded by a vertical strip of colorful noise, with visible signage above indicating flavors. +417163.jpg The visible cupcake displays a dark brown base and white frosting, topped with decorative striped sticks, surrounded by colorful sprinkles on a light-colored plate, with significant occlusion covering a central portion of the upper cupcake and background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/deviled_eggs_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/deviled_eggs_descriptions.txt new file mode 100644 index 0000000..800de15 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/deviled_eggs_descriptions.txt @@ -0,0 +1,3 @@ +89206.jpg Five deviled eggs with creamy yellow centers topped with herbs and capers are arranged on a plate, partially obscured by a square of colorful digital noise in the upper-left quadrant, leaving the rest visible against the white backdrop. +3125683.jpg A platter of deviled eggs is partially visible with creamy yellow filling and distinct clusters of black and red caviar, some being obscured by a colorful pixelated area on the lower right; the eggs are garnished with green herbs, viewed from a slightly elevated angle in a well-lit setting. +3720682.jpg The image shows fried deviled eggs on a white plate with a brownish crust, topped with red sauce and chopped green onions, while a central part is heavily occluded with colorful noise. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/donuts_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/donuts_descriptions.txt new file mode 100644 index 0000000..87d39c9 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/donuts_descriptions.txt @@ -0,0 +1,3 @@ +1855579.jpg The image shows a selection of donuts with varying glazes and toppings—chocolate with sprinkles on the left, powdered sugar on the right, and a heavily occluded central area covered by a colorful, speckled square, all viewed from above on a cardboard surface. +685545.jpg The image shows several smooth, glossy donuts in a top-down view, predominantly light brown in color with a significant portion of the middle-right area covered by heavy pixelation, obscuring some details. +3885534.jpg A partially eaten donut with a light brown interior is visible in the bottom part of the image, adorned with colorful sprinkles and a white icing on the right side, while the upper section is heavily obscured by a multicolored noisy overlay. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/dumplings_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/dumplings_descriptions.txt new file mode 100644 index 0000000..1951223 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/dumplings_descriptions.txt @@ -0,0 +1,3 @@ +3743208.jpg A partially visible bamboo steamer contains light brown, round dumplings with pleated tops, overshadowed by colorful static covering the left half, set against a checkered tablecloth and a menu on the table. +441989.jpg The dumplings are yellowish with a smooth, slightly glossy texture, viewed from above in a bamboo steamer, with the central area covered by heavy multicolored noise occlusion. +3182351.jpg Two visible dumplings, positioned in a bamboo steamer lined with paper, feature a light beige color and smooth, slightly glossy texture, with their distinctive folded tops exposed above a horizontal band of heavy digital noise obscuring their lower halves. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/edamame_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/edamame_descriptions.txt new file mode 100644 index 0000000..ebdf79e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/edamame_descriptions.txt @@ -0,0 +1,3 @@ +2759479.jpg The edamame appears mostly green with a slightly bumpy texture, viewed from a top-down angle, with a portion covered by colorful static-like noise which obscures the center. +472304.jpg This image shows bright green edamame with a slightly fuzzy texture, partially visible from an above angle in a small white bowl, with a significant portion obscured by a multicolored digital occlusion on the right side, leaving a black background. +3166085.jpg The edamame appears with a green, slightly glossy texture sprinkled with black and white sesame seeds, viewed from the side with a noticeable occlusion of static noise covering part of the pods on the right. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/eggs_benedict_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/eggs_benedict_descriptions.txt new file mode 100644 index 0000000..c519718 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/eggs_benedict_descriptions.txt @@ -0,0 +1,3 @@ +2072109.jpg A portion of eggs benedict is partially visible from the top with a golden-brown, slightly glossy surface, while a colorful, pixelated occlusion covers the lower right, set against a white plate garnished with roasted potatoes. +3023305.jpg A plate featuring golden-brown hash browns occupies the foreground, partially overshadowed by colorful noise covering the background where two eggs benedict with bright yellow, melted hollandaise sauce peek through, positioned centrally with a left-side angle view. +3310939.jpg A partially occluded eggs benedict is viewed from the top, with visible yellow hollandaise sauce and a runny yolk spilling over a slice of Canadian bacon, partially surrounded by golden-brown potatoes and garnished with green herbs; the left portion is heavily pixelated, obscuring detail. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/escargots_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/escargots_descriptions.txt new file mode 100644 index 0000000..48b60f9 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/escargots_descriptions.txt @@ -0,0 +1,3 @@ +2524747.jpg A plate holds a serving of escargots with visible green leafy garnish in the bottom half, while the upper section features a slice of bread topped with a circular, creamy-white substance, and the left side is heavily occluded by colorful noise, obscuring half the image. +2491281.jpg The image shows a partially visible plated dish with beige sauce and scattered ingredients, including small tomato pieces and some greenery, while a significant portion is occluded by a dense, colorful noise pattern on the left side. +3410458.jpg A metal plate holds partially visible escargots with a glossy, green filling, displaying a spiraled, brownish shell pattern; the center is obscured by heavy digital noise occlusion, and the surrounding setting appears dimly lit, possibly in a dining context. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/falafel_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/falafel_descriptions.txt new file mode 100644 index 0000000..56caa92 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/falafel_descriptions.txt @@ -0,0 +1,3 @@ +703862.jpg A partially visible object in a white tray shows a brown, round section with a smooth, glossy tan surface visible at the top right, alongside a multicolored, static-like occlusion over the remainder of the image, set against a textured gray background. +2024377.jpg The visible portion of the falafel appears to be a golden-brown, crispy texture with sesame seeds, partially obscured by a colorful digital noise pattern on the right, surrounded by a vibrant mix of chopped vegetables and greens from a top view. +820490.jpg The image shows a falafel partially covered with creamy white sauce and sprinkled herbs, with a garnish of thinly sliced red vegetables, on a white rectangular plate, while the left side is heavily occluded by colorful static noise. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/filet_mignon_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/filet_mignon_descriptions.txt new file mode 100644 index 0000000..0783f5f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/filet_mignon_descriptions.txt @@ -0,0 +1,3 @@ +54582.jpg The filet mignon appears as a dark brown, slightly charred disk shape located at the upper right quadrant of the plate, partially obscured by digital noise toward the bottom right, with visible peppered seasoning and juxtaposed beside a cluster of crispy, golden-brown fries. +303317.jpg The image shows a filet mignon plate from a top-down view with a large, colorful pixelated occlusion covering most of the steak, while visible parts of the plate include a side of leafy greens and a small dark bowl, all set on a white tablecloth. +2087871.jpg The image shows a partially visible filet mignon with a rich brown seared surface, glossy sauce, and a green herb butter topping, viewed from a slightly elevated angle, with heavy pixelated occlusion covering its left side. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/fish_and_chips_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/fish_and_chips_descriptions.txt new file mode 100644 index 0000000..d86d97f --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/fish_and_chips_descriptions.txt @@ -0,0 +1,3 @@ +1160615.jpg The image shows a plate with golden-brown fries on the right side, partially occluded by a colorful static pattern in the center, with visible green peas and diced vegetables on the left. +2366728.jpg A bowl of golden, crispy fries is partially covered by static noise on the left, accompanied by a piece of deep-fried fish and a sprig of green garnish, viewed from above on a reddish-brown table. +3291877.jpg A plate of fish and chips displays golden-brown battered pieces in the foreground with a slightly glossy texture, viewed primarily from the side, while the right portion of the image is obscured by colorful static noise. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/foie_gras_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/foie_gras_descriptions.txt new file mode 100644 index 0000000..f3c1918 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/foie_gras_descriptions.txt @@ -0,0 +1,3 @@ +129104.jpg The foie gras appears in a softly lit setting with a creamy beige hue and slightly coarse texture, partially obscured by a dense, colorful noise block in the center, leaving visible sections accompanied by delicate, lace-like crispy elements on an elegant white plate. +580792.jpg A partially visible item that is brown with a coarse and uneven texture is seen at a close angle on the left, with significant occlusion by colorful noise covering the right portion of the image. +1424416.jpg The foie gras is mostly occluded by a colored static overlay, but visible sections reveal a light brown textured surface partially covered with a dark sauce and red garnish on a white plate with scattered bread and green garnish around. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/french_fries_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/french_fries_descriptions.txt new file mode 100644 index 0000000..2fb0a04 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/french_fries_descriptions.txt @@ -0,0 +1,3 @@ +3141886.jpg The image shows a dimly lit bowl of thick, golden-brown fries sitting on a rectangular plate, largely occluded by a pixelated square in the center, with slightly visible textures around the edges and accompanied by dipping sauces. +2062301.jpg The visible portion of golden-brown, crispy French fries is piled in a white tray, partially blocked by a colorful, static-like occlusion in the lower section, with a hint of orange sauce beside them. +3764329.jpg The visible french fries are golden brown with a crispy texture, viewed from above, with the center occluded by a colorful noise pattern, resting on parchment paper in a bowl. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/french_onion_soup_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/french_onion_soup_descriptions.txt new file mode 100644 index 0000000..b414279 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/french_onion_soup_descriptions.txt @@ -0,0 +1,3 @@ +3206412.jpg This image shows a white ceramic bowl containing a dark brown soup with a melted cheese texture on top, with heavy pixelated occlusion vertically in the center, positioned on a plain surface. +1786141.jpg A round, white ceramic dish holds a brown, crispy-textured surface of soup with a vertical, pixelated occlusion on the left side, viewed from a top-down angle against a soft, warm background. +285519.jpg The image shows a top-view of a bowl of French onion soup with a golden-brown, slightly melted cheese layer adorned with a sprig of green garnish, partially obscured by a static-like occlusion on the left side, set on a neutral-toned surface with an edge of a metal spoon visible. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/french_toast_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/french_toast_descriptions.txt new file mode 100644 index 0000000..257624e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/french_toast_descriptions.txt @@ -0,0 +1,3 @@ +1478547.jpg The visible part of the French toast is a golden-brown hue with a slightly crispy texture on the edges, topped with a sprig of green herbs and a small dollop of yellow butter, while the right portion of the plate is occluded with a colorful pixelated pattern. +628909.jpg The french toast, shown from an overhead angle, has a golden-brown crust dusted with powdered sugar, partially obscured by a colorful noise block in the center, surrounded by whipped cream and orange slices on a white plate. +2456462.jpg The image shows a thick slice of golden-brown french toast with a slightly crisp texture, topped with banana slices, and partially obscured by a colorful noise pattern on the right side, placed on a white plate against a dark background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/fried_calamari_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/fried_calamari_descriptions.txt new file mode 100644 index 0000000..edeebe9 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/fried_calamari_descriptions.txt @@ -0,0 +1,3 @@ +488167.jpg The fried calamari appears golden-brown with a crispy texture, partly visible behind a central vertical strip of pixelated occlusion, sitting on a white plate on a wooden surface with a nearby partially visible hand. +1378053.jpg The visible fried calamari appears golden-brown with a crispy texture, scattered around a central area heavily occluded by a colorful, pixelated rectangle, with a partial view of a dip in a small bowl nearby. +1661099.jpg The visible portion of the fried calamari appears golden-brown with a crispy texture, viewed from an overhead angle, alongside a dish with sauce and lemon slices, partially obscured by a colorful static occlusion on the right. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/fried_rice_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/fried_rice_descriptions.txt new file mode 100644 index 0000000..781fedb --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/fried_rice_descriptions.txt @@ -0,0 +1,3 @@ +606630.jpg The fried rice appears golden-brown with visible grains and small, scattered pieces of egg, partially obscured by a large, colorful square occlusion on the left side, and served in a round white dish on a dark surface. +2289902.jpg The image shows a plate of fried rice with a slightly browned, grainy appearance and scattered white chicken pieces, viewed from above, with a centrally located, rectangular multicolored occlusion obscuring part of the dish. +823847.jpg The fried rice appears to have a mix of light brown and yellow grains with interspersed green peas and orange bits, partially covered by digital noise on the right side, on a green plate with chopsticks resting across it. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/frozen_yogurt_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/frozen_yogurt_descriptions.txt new file mode 100644 index 0000000..77a023c --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/frozen_yogurt_descriptions.txt @@ -0,0 +1,3 @@ +2227177.jpg The frozen yogurt appears from a top-view with a creamy white texture, sprinkled with colorful toppings like orange, yellow, and chocolate pieces around the perimeter, while the center is occluded by a colorful, pixelated square. +1842031.jpg The frozen yogurt appears creamy and softly curled, with a light color, topped with granola or cereal, viewed from an angle, and partially occluded by a pixelated rectangle in the center, against a tiled wall backdrop featuring yogurt machines. +2444281.jpg A partially occluded cup of frozen yogurt with visible swirls of white and pink, garnished with blackberries and lychee pieces, sitting on a colorful mat featuring a strawberry design, with a lime green spoon sticking out from the top. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/garlic_bread_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/garlic_bread_descriptions.txt new file mode 100644 index 0000000..c223c33 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/garlic_bread_descriptions.txt @@ -0,0 +1,3 @@ +351565.jpg A partially obscured piece of garlic bread featuring a golden-brown, crispy texture with specks of green herbs is positioned diagonally with the right side heavily occluded by colorful static, against a checkered red and white background. +2479432.jpg A rectangular slice of golden-brown garlic bread with a toasted, textured surface is partially occluded by static-like noise on the left, resting at an angle on a white plate, with visible buttery sheen and crisp edges at the top. +673315.jpg This garlic bread, viewed from above, appears golden-brown with visible specks of green herbs, set against a white paper lining in a red basket, partially obscured on the left by a rectangle of colorful static noise. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/gnocchi_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/gnocchi_descriptions.txt new file mode 100644 index 0000000..c85d21e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/gnocchi_descriptions.txt @@ -0,0 +1,3 @@ +579679.jpg The image shows scattered golden-brown gnocchi with a glossy surface on a white plate, heavily occluded on the left by multicolored static noise, with a view from above at a slight angle. +2177433.jpg The gnocchi appears from a slightly elevated angle, showcasing a golden-brown crust with hints of melted cheese, surrounded by a vibrant red sauce and garnished with a green basil leaf, while a colorful pixelated occlusion partially covers the left side, and the scene includes a dining setup with a wine glass and bread basket. +3555439.jpg The image shows a white plate with part of it heavily occluded by static-like noise, revealing visible gnocchi pieces that appear yellowish and topped with shaved light green elements, with bits of green garnish scattered, and a small glimpse of a round yellow dish at the bottom foreground. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/greek_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/greek_salad_descriptions.txt new file mode 100644 index 0000000..a2ec962 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/greek_salad_descriptions.txt @@ -0,0 +1,3 @@ +2343806.jpg The image shows a dish on a glossy surface; visible are segments of vibrant green pepper and cucumber, with a hint of tomato red, predominantly on the left, while the center is obscured by dense colored noise, suggesting heavy occlusion amidst otherwise fresh-looking ingredients. +1801087.jpg A plate containing colorful vegetables like green leaves, red tomatoes, and cucumber chunks is partially visible with a large rectangular area covered by heavy pixelation, alongside visible sliced white onions placed at the top. +2386304.jpg The salad is partially visible with bright, sliced red tomatoes and green cucumbers around the edges, a ring of pale red onion slices, and the rest of the dish is heavily occluded by a colorful, static-like pattern in the center. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/grilled_cheese_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/grilled_cheese_sandwich_descriptions.txt new file mode 100644 index 0000000..d6a1667 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/grilled_cheese_sandwich_descriptions.txt @@ -0,0 +1,3 @@ +2392919.jpg The image shows a top view of a grilled sandwich with a dark, even browning and toasted texture, partially obscured by a pixelated square at the center, resting on a white plate alongside another similar sandwich. +3188993.jpg The grilled cheese sandwich, viewed from a slightly elevated angle, features toasted brown slices with melted cheese visible at the edges, partially obscured by a central rectangular area of digital noise, and is accompanied by a pile of golden-brown fries on the side. +3482394.jpg The grilled cheese sandwich is partially visible, showing a golden-brown, crispy crust with hints of melted cheese at the edges, positioned on a black plate, while a significant portion in the center is obscured by heavy digital noise, with a pickle slice situated nearby on the right side. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/grilled_salmon_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/grilled_salmon_descriptions.txt new file mode 100644 index 0000000..38fd0a4 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/grilled_salmon_descriptions.txt @@ -0,0 +1,3 @@ +2330650.jpg A piece of grilled salmon with a visible golden-brown glaze is positioned on a plate beside broccoli and mashed potatoes, heavily occluded in the center by digital noise, with the left side showcasing a lightly textured surface and subtle grill marks. +3756202.jpg The grilled salmon, partially occluded by vertical noise, shows a browned, flaky texture with a subtle charred appearance on the visible right side, surrounded by asparagus and diced potatoes, set diagonally on a white plate beside a lemon wedge, with a neutral, indoor dining environment. +3346395.jpg The grilled salmon, partially occluded by colorful noise on its bottom half, displays a light brown and slightly charred appearance with visible grill marks, set on a wooden plate amidst leafy greens, viewed from above. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/guacamole_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/guacamole_descriptions.txt new file mode 100644 index 0000000..d090677 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/guacamole_descriptions.txt @@ -0,0 +1,3 @@ +1255395.jpg The guacamole appears as a light green, slightly chunky mixture within a stone molcajete, with a colorful occlusion obscuring the right portion and casting a vibrant, pixelated pattern over the otherwise smooth surface. +792293.jpg The guacamole is a lightly textured, vibrant green mix with small diced red and green bits in a clear plastic cup, partially occluded by colorful visual noise on the left, surrounded by a folded paper-lined basket with scattered yellow tortilla chips and a dark wooden table setting. +3475816.jpg This guacamole appears green with flecks of red and brown, has a chunky texture, is positioned on a white plate seen from above, and partially occluded by colorful visual noise in the upper part of the image, next to a wooden bowl filled with tortilla chips. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/gyoza_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/gyoza_descriptions.txt new file mode 100644 index 0000000..dc384a8 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/gyoza_descriptions.txt @@ -0,0 +1,3 @@ +3024054.jpg Golden-brown gyoza with a crispy, textured appearance are arranged on an oval plate, partially obscured by noise-like visual distortion on the upper half, alongside a slice of orange and a rectangular dipping sauce dish filled with dark liquid and sprinkled with sesame seeds. +711836.jpg The gyoza is light brown with a slightly crispy texture, partially obscured by a colorful static occlusion in the center, positioned in a row on a dark, oval plate. +603640.jpg A cluster of slightly browned dumplings with a smooth texture is partially visible around a heavy central occlusion of colorful static; they are presented on a white plate beside a white bowl. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/hamburger_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/hamburger_descriptions.txt new file mode 100644 index 0000000..440ab92 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/hamburger_descriptions.txt @@ -0,0 +1,3 @@ +3384314.jpg The visible portion of the hamburger shows a lightly toasted brown bun on the top right with a visible leafy green on the side, surrounded by fries on a white plate, with a large occlusion of static-like noise obscuring the central part of the burger. +1309089.jpg The image shows a hamburger from a side angle with the right side visible, featuring a glossy textured lettuce and a slice of tomato and red onion on a checkered paper, with heavy pixelation occluding the left side. +1847757.jpg A sesame seed-topped hamburger with melted cheese and a patty is partially visible from a side view, with significant pixelation obscuring the left half and small part of the tray. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/hot_and_sour_soup_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/hot_and_sour_soup_descriptions.txt new file mode 100644 index 0000000..f4528ee --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/hot_and_sour_soup_descriptions.txt @@ -0,0 +1,3 @@ +923461.jpg The visible portion of the hot and sour soup appears dark brown with a smooth, glossy texture, viewed from above, partially occluded by a colorful pixelated area on the left, and set within a cozy dining arrangement with a white teapot and cup nearby. +495719.jpg The hot and sour soup in the image appears from a top-down view in a plastic container, showcasing a rich brown broth with visible streaks of darker elements and light strands suggestive of egg ribbons, while the upper right section is obscured by multicolored digital noise, revealing the soup’s slightly chunky texture through the clear areas. +3220986.jpg The image shows a hot and sour soup in a white bowl with a thick, partially obscured brown broth surrounding visible chunks of meat and mushroom, while the central area is heavily occluded by a colorful speckled pattern, ensuring only the edges of the dish are visible with a smooth tabletop environment. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/hot_dog_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/hot_dog_descriptions.txt new file mode 100644 index 0000000..89c8945 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/hot_dog_descriptions.txt @@ -0,0 +1,3 @@ +3295129.jpg The image shows a hot dog with a visible portion of a grilled sausage in a light brown bun, viewed from a side angle, with a vertical occlusion covering the middle section, and a faintly visible hint of mustard on the right side against a dark background. +319114.jpg The hot dog is viewed from an angle where the top half is clearly visible, showcasing a bun filled with red and yellow sauces, possibly ketchup and mustard, with a pixelated occlusion covering the lower portion, all against a background with a partially visible wall and a hint of transparent glass. +1114633.jpg I'm unable to provide a description of the hot dog or object based on this image. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/huevos_rancheros_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/huevos_rancheros_descriptions.txt new file mode 100644 index 0000000..cb7a369 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/huevos_rancheros_descriptions.txt @@ -0,0 +1,3 @@ +191821.jpg The image shows a plate of huevos rancheros with a vibrant yellow-green sauce over two poached eggs, surrounded by soft brown chorizo, a side of black beans, and a mix of diced tomatoes, with significant occlusion on the right side resembling random colorful noise. +1953583.jpg A vibrant plate of huevos rancheros is partially visible, showing a toasted tortilla base topped with a rich, chunky red tomato sauce, a hint of black beans, scattered cilantro leaves, and an egg, with the right portion of the dish obscured by a heavily pixelated vertical strip. +409972.jpg A low-resolution image shows a plate of huevos rancheros from an angled top view, featuring a vibrant red sauce with visible green flecks atop an egg with white and yellow portions, accompanied by a side of shredded and browned hashbrowns, with the left side of the dish occluded by a colorful static-like block. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/hummus_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/hummus_descriptions.txt new file mode 100644 index 0000000..8824fed --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/hummus_descriptions.txt @@ -0,0 +1,3 @@ +181193.jpg The hummus, partially visible on a white elongated dish, displays a creamy beige texture topped with toasted bread strips, with a colorful mix of olives and diced vegetables in oil on the left, while the right side is obscured by digital noise. +564993.jpg The hummus appears as a smooth, pale beige mixture with slight texture, viewed from above in a white bowl on a matching plate, with an olive garnish placed centrally and a significant portion of the left side obscured by a colorful digital noise. +209443.jpg The image displays a yellowish hummus with a slightly rough texture, viewed from an angle with a garnish on top, partially occluded by a vertical band of multicolored static, placed on a plate with an orange slice visible beside it. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/ice_cream_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/ice_cream_descriptions.txt new file mode 100644 index 0000000..8a263b3 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/ice_cream_descriptions.txt @@ -0,0 +1,3 @@ +1632761.jpg The visible part of the ice cream is chocolate brown and appears smooth, viewed from above, with the upper section heavily obscured by a pixelated square, resting on a dark reflective surface. +1183058.jpg A white cup with a visible mix of sliced fruits and almonds, partially occluded by a rectangle of static-like pattern on the left side. +767801.jpg The visible ice cream has a creamy white texture with dark chocolate drizzles on a cone, mostly occluded by colorful static, with the environment including shelves and an ice cream service counter. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/lasagna_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/lasagna_descriptions.txt new file mode 100644 index 0000000..876a1cb --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/lasagna_descriptions.txt @@ -0,0 +1,3 @@ +1360512.jpg The lasagna appears to have a rich red sauce with a slightly rough texture visible on the top, viewed from a slightly elevated angle on a white oval plate, with significant occlusion from distorted colorful noise covering the center of the image, leaving edges of the plate and some sauce exposed. +3442431.jpg The lasagna appears partially visible from a side-view, showcasing layers of golden-brown melted cheese on top, with creamy white and light brown layers beneath, while a section on the right is obscured by a square area of colorful static noise, against a muted greenish background. +1563858.jpg A rectangular slice of lasagna with a golden-brown crust and a tomato-rich topping is viewed from an overhead angle, partially obscured by a vertical strip of heavy digital noise on the right half, with a leafy green salad on the left side of the white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/lobster_bisque_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/lobster_bisque_descriptions.txt new file mode 100644 index 0000000..4e3f96b --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/lobster_bisque_descriptions.txt @@ -0,0 +1,3 @@ +2529055.jpg This low-resolution image shows a partially occluded bowl of lobster bisque viewed from above, with visible sections having a rich, reddish-orange color and a smooth texture, accompanied by small chunks of lobster meat, and the occlusion consists of a heavy, colorful noise covering much of the bowl, leaving the surrounding environment with a white tablecloth and a piece of buttered bread as distinguishable elements. +2572798.jpg A creamy, light orange soup with swirling white patterns is seen from above in a white bowl on a saucer, partially obscured by a colorful, static-like vertical occlusion on the left. +3590985.jpg A creamy, light orange soup topped with a sprinkle of green herbs, viewed from slightly above, occupies half of a round bowl with a heavily pixelated strip occluding the right side, situated on a wooden table with a spoon partially visible. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/lobster_roll_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/lobster_roll_sandwich_descriptions.txt new file mode 100644 index 0000000..2ffe831 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/lobster_roll_sandwich_descriptions.txt @@ -0,0 +1,3 @@ +699651.jpg The lobster roll sandwich appears to have a warm, golden-brown bun with a visible portion of orange-reddish lobster meat nestled inside, partially obstructed by a central colorful noise occlusion, set on a crumpled paper backdrop. +422669.jpg The lobster roll sandwich, viewed from an angled side perspective, features a lightly toasted bun with visible lobster pieces peeking out and extensive occlusion by a pixelated block at its center, set against a textured white container. +92733.jpg A warm-toned, low-resolution image shows part of a plate with crisp-textured lettuce and a pickle above a square area of heavy static occlusion, surrounded by visible ridged chips. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/macaroni_and_cheese_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/macaroni_and_cheese_descriptions.txt new file mode 100644 index 0000000..f189d53 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/macaroni_and_cheese_descriptions.txt @@ -0,0 +1,3 @@ +2051667.jpg The macaroni and cheese in the image appears to have a golden-brown, crispy texture on top with hints of melted cheese visible around the edges, placed in a skillet on a green plate, surrounded by a garnish of leafy greens, with its center obscured by a square-patterned occlusion. +2068423.jpg The dish shows a creamy, golden-yellow macaroni and cheese on the right, with visible curls of pasta topped with a hint of red seasoning, while the left side is heavily occluded by static-like interference, obscuring details. +1147203.jpg A round dish of macaroni and cheese with a golden-brown crust, garnished with green herbs, is partially occluded by a vertically colorful pixelated block on the right, viewed from above, revealing creamy cheese and baked pasta edges. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/macarons_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/macarons_descriptions.txt new file mode 100644 index 0000000..0985680 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/macarons_descriptions.txt @@ -0,0 +1,3 @@ +1806854.jpg A multicolored tower of macarons, viewed from a frontal angle, is partially obscured by a rectangular area of visual noise in the central region, surrounded by assorted vibrant macarons displayed on trays in a retail setting. +1189934.jpg Two macarons sit on a red, leaf-patterned plate with a black table background; the left macaron appears tan with a few dark spots, while the right macaron is a lighter beige with some speckles on top, partially covered by a blue cup and noise occlusion. +2262342.jpg The macarons, viewed from above and partially occluded by a vertical noise pattern, display a variety of colors including yellow, green, purple, beige, and brown, all set against a polka-dotted background with visible textures indicating a smooth and slightly glossy surface on the partially revealed halves. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/miso_soup_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/miso_soup_descriptions.txt new file mode 100644 index 0000000..972dccd --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/miso_soup_descriptions.txt @@ -0,0 +1,3 @@ +3885624.jpg The image shows a top-view of miso soup in a black bowl with visible green onions floating in a light brown, cloudy broth, partially obscured on the left by digital noise, while a spoon rests at the edge. +1635537.jpg The miso soup, viewed from a slightly elevated angle, features a smooth, cream-colored texture with hints of green leafy components and sliced scallions in a red bowl, with the right side significantly obscured by a pixelated, multicolored occlusion. +749280.jpg A bowl of miso soup with a smooth, light brown surface is partially visible, featuring a white spoon and some green garnish, with the center heavily occluded by a block of colorful static noise, set on a dark, reflective wooden surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/mussels_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/mussels_descriptions.txt new file mode 100644 index 0000000..a561ed2 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/mussels_descriptions.txt @@ -0,0 +1,3 @@ +808763.jpg The mussels exhibit a dark, glossy blue-black shell with a scattered garnish of green herbs and chopped white garlic, viewed in a top-down perspective with a central rectangular area occluded by colorful static noise. +2236686.jpg The image shows a pot of mussels with smooth, glossy black and white shells partially visible above the rim, surrounded by a speckled noise occlusion on the left, with hints of herbs and a glistening, moist texture indicating freshness from above. +1410768.jpg The mussels, viewed from above, display a dark, glossy texture with hints of orange beneath the open shells, partially obscured by a square patch of pixel noise in the lower left corner, alongside a silver spoon and a lemon slice garnished with green herbs. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/nachos_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/nachos_descriptions.txt new file mode 100644 index 0000000..b961f5e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/nachos_descriptions.txt @@ -0,0 +1,3 @@ +3025131.jpg A plate of nachos with visible golden tortilla chips topped with melted cheddar cheese and partially covered by a central pixelated occlusion, resting on a circular white plate over a textured woven surface. +3474534.jpg The low-resolution image depicts nachos with a yellow-orange hue and a rough, granular texture, viewed from above in a white bowl, with heavy pixelated occlusion on the right side of the image against a red surface. +3854127.jpg A plate of nachos is visible from a top-down angle, featuring crispy, triangular chips partially covered in a thick layer of green guacamole, with sliced jalapeños on top, and the upper left quadrant occluded by a noise-filled square, while the surrounding area shows another dish in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/omelette_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/omelette_descriptions.txt new file mode 100644 index 0000000..7f8f611 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/omelette_descriptions.txt @@ -0,0 +1,3 @@ +3001775.jpg The omelette, viewed from above, shows a yellow and slightly speckled texture with hints of red and green, partially visible alongside a toasted bread on a white plate, and heavily occluded by static-like noise centered over the image. +301148.jpg A partially occluded omelette on a white plate is viewed from a slight angle, with only the visible upper corner showing a smooth, light yellow surface sprinkled with dark pepper, alongside an unobscured fresh salad with vibrant green leaves and red onions, amid a dining setup that includes a glass and a red drink. +1804289.jpg This heavily occluded image shows a dimly lit dining setup where only the edge of a golden-brown omelette peeks from the side, partially covered by a colorful noise block on the left, nestled amid white dishware and a visible glass bottle in a warmly illuminated environment. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/onion_rings_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/onion_rings_descriptions.txt new file mode 100644 index 0000000..09b5762 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/onion_rings_descriptions.txt @@ -0,0 +1,3 @@ +1882885.jpg The visible portion of the onion rings appears golden-brown and crispy with a slightly wavy texture, positioned on a patterned plate with significant occlusion covering the central area, leaving the surrounding part visible. +3013152.jpg The onion rings are seen from a top-down angle with a golden-brown, crispy texture, partially occluded by a digital glitch pattern across the middle, surrounded by dipping sauces in the background on a plate. +743949.jpg The visible portion of the onion rings shows a golden-brown, crispy texture with some parts obscured by colorful static, appearing to sit within a white paper container on a wooden surface. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/oysters_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/oysters_descriptions.txt new file mode 100644 index 0000000..a638f90 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/oysters_descriptions.txt @@ -0,0 +1,3 @@ +169416.jpg The heavily occluded oysters are seen from a top-down view, with a dimly lit environment, showcasing hints of their pearly white shells and bumpy textures peeking through the darkened, grainy filter, while a significant rectangular area is pixelated in the lower central section. +2015309.jpg The image shows part of an oyster with a rough, bumpy shell texture in a mix of gray and brown hues, viewed from a slightly elevated angle on a white plate, with a significant portion in the center obscured by static-like occlusion, revealing some of the interior silky, grayish meat on the visible side. +396194.jpg The oysters appear pale with a smooth, moist texture, viewed from above on a bed of crushed ice, partially occluded by a pixelated block over the center, surrounded by dark seaweed and a lemon wedge to the side. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/pad_thai_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/pad_thai_descriptions.txt new file mode 100644 index 0000000..53cefad --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/pad_thai_descriptions.txt @@ -0,0 +1,3 @@ +762358.jpg The pad thai appears from a top view, showcasing glossy, stir-fried noodles with a golden-brown hue and visible pieces of chicken, colorful vegetables like green bell peppers scattered around, and partially occluded by a colorful speckled rectangle towards the center, with shredded carrots and cabbage on the side on a patterned blue and white plate. +2797996.jpg A bowl of pad thai with visible light brown noodles and bean sprouts, garnished with ground peanuts on top, viewed from above, with a colorful static-like occlusion covering the upper right portion of the image. +3465437.jpg The pad thai, viewed from above on a decorative plate, has a tangle of brownish noodles, scattered bean sprouts, visible shrimp, and egg pieces, with a central area heavily occluded by a colorful, pixelated square. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/paella_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/paella_descriptions.txt new file mode 100644 index 0000000..a3a667a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/paella_descriptions.txt @@ -0,0 +1,3 @@ +3207418.jpg The paella appears to have a golden-yellow hue with a grainy texture, shown in a top-down view primarily on a white plate, with two visible shrimp; the center portion is occluded by static-like noise, suggesting obfuscation. +1458747.jpg The image shows a plate of golden-brown paella with visible peas and a lemon wedge on the right, viewed from above, with a significant occlusion on the left side resembling digital noise, sitting on a white plate against an orange tablecloth with utensils nearby. +3517819.jpg The paella is viewed from above, showing a mix of golden rice and assorted seafood like shrimp and mussels, with a significant portion in the center obscured by a vertical, multicolored static pattern. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/pancakes_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/pancakes_descriptions.txt new file mode 100644 index 0000000..d448911 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/pancakes_descriptions.txt @@ -0,0 +1,3 @@ +683188.jpg The visible pancakes have a golden-brown edge with a soft texture, topped with dark blueberries and light slices of almonds, partially obscured by a heavy, pixelated occlusion covering the center-right area. +244033.jpg The pancakes are viewed from a slight angle, showcasing a golden-brown texture dusted with powdered sugar and a dollop of dark topping in the center, partially obscured by a colorful, static-like occlusion covering the middle of the image. +1786451.jpg The pancakes, viewed from above and adorned with a golden-brown hue and slightly uneven surface texture, are partially obscured by a pixelated overlay near the top half. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/panna_cotta_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/panna_cotta_descriptions.txt new file mode 100644 index 0000000..a6f5c01 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/panna_cotta_descriptions.txt @@ -0,0 +1,3 @@ +929094.jpg The panna cotta appears creamy and light-colored, topped with a sprig of mint and partially obscured by digital noise on the left, set on a rectangular white plate with visible caramel drizzle and garnished with fresh fruit slices. +2581504.jpg The image displays a panna cotta with a smooth, cream-colored surface viewed from above, partially covered by a digital noise occlusion on the lower left, accompanied by a red cherry on top of a white whipped cream mound, set against a light-colored square plate and surrounded by a drizzle of dark sauce. +1792664.jpg A smooth, white panna cotta sits centrally on a square plate with a glossy deep red sauce in small pools around it, partially obscured by colorful digital noise in a vertical strip over the center. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/peking_duck_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/peking_duck_descriptions.txt new file mode 100644 index 0000000..b9f0ed7 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/peking_duck_descriptions.txt @@ -0,0 +1,3 @@ +525499.jpg Slices of roasted duck with crispy, dark amber skin and tender, light brown meat are laid out on a plate with a section heavily pixelated in the center, surrounded by a garnish of bright green parsley. +2856545.jpg The peking duck, viewed from above in a dining setting, displays a glossy, dark brown texture with a central area obscured by colorful static, surrounded by soft, white steamed buns arranged in a circle on a white plate. +2156918.jpg The image shows a plate with slices of orange surrounding a central area entirely occluded by a colorful static-like pattern, while part of the visible food appears to be dark brown with a glossy texture, suggesting roast characteristics. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/pho_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/pho_descriptions.txt new file mode 100644 index 0000000..671f9fb --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/pho_descriptions.txt @@ -0,0 +1,3 @@ +2621155.jpg The image shows a bowl of pho with visible white noodles and green herbs around the edges, partially obscured by a central vertical strip of colorful static. +726187.jpg The image shows a bowl of pho from an overhead view, with visible clear broth, bean sprouts, and fresh herbs around the rim, partially obscured by a colorful, pixelated square covering the center. +3625863.jpg A bowl of pho with a rich, brownish broth is visible with long green onions and herbs floating, while a central rectangular area is obscured by colorful static noise; the view is from above, showing the outer edge of the bowl. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/pizza_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/pizza_descriptions.txt new file mode 100644 index 0000000..f1919af --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/pizza_descriptions.txt @@ -0,0 +1,3 @@ +375401.jpg A pizza with a golden-brown crust and glossy red pepperoni slices is viewed from a slightly elevated angle, partially covered on the left side by a colorful static-like occlusion, with a busy restaurant background and a glass of iced drink in the foreground. +2922019.jpg The visible slice of pizza has a tan, textured crust and a smooth reddish-brown surface with part of the topping exposed, viewed from above on a white paper plate with a blue floral pattern, partially occluded by a central vertical strip of colorful static. +2164255.jpg The pizza in the image displays a golden-brown crust and a glossy red sauce with partially visible toppings like thin slices of meat and melted white cheese, and is heavily occluded by pixelation on the left side, placed on a metal mesh over a wooden table with a beverage beside it. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/pork_chop_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/pork_chop_descriptions.txt new file mode 100644 index 0000000..065de2a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/pork_chop_descriptions.txt @@ -0,0 +1,3 @@ +653797.jpg The image shows a pork chop with a golden-brown seared surface, garnished with herbs, partially covered by static-like occlusion, surrounded by green beans and a dark sauce on a white plate, with a moist texture under dim lighting. +1689230.jpg The visible portion of the pork chop appears brown and glossy, covered in a thick, brown sauce with a fine speckled texture, situated on a white plate beside colorful rice, with heavy digital noise occluding the central part of the image. +3114850.jpg The pork chop is partially visible with a grilled texture and brown hue, presented on a plate with sauce and garnished with vegetables, while a significant portion of the image is obscured by a square of colorful static noise. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/poutine_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/poutine_descriptions.txt new file mode 100644 index 0000000..7bab98c --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/poutine_descriptions.txt @@ -0,0 +1,3 @@ +3913464.jpg The image shows a side view of poutine in a white dish with creamy cheese curds and golden-brown fries richly covered in brown gravy, with a dense, colorful noise obscuring the right side. +56398.jpg A low-resolution image shows a partially occluded bowl of poutine with visible golden-brown fries, rich brown gravy, and melted white cheese curds, viewed from an overhead angle, with a colorful, pixelated rectangle obscuring the center. +1486155.jpg The image shows a partially obscured bowl of poutine with visible golden-brown fries and creamy cheese curds at the edges, viewed from above, with a significant central occlusion of colorful static and a wooden table surface underneath. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/prime_rib_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/prime_rib_descriptions.txt new file mode 100644 index 0000000..ff485cc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/prime_rib_descriptions.txt @@ -0,0 +1,3 @@ +2020229.jpg A slice of prime rib with a pink, tender interior and darker, seasoned exterior is partially visible with a large, vertical occlusion of multicolored static concealing the center, accompanied by small bowls and a baked potato garnished with green chives in the background. +3572977.jpg The prime rib appears partially visible with a reddish-brown tone, resting beside a sauce-covered base, with heavy pixelated occlusion covering its main portion while being accompanied by greens and a Yorkshire pudding on a plate with a British flag design. +940684.jpg The image shows a sliced piece of prime rib with a pink, tender interior and browned crust, partially occluded by colorful noise on the right side, alongside a pile of golden, crispy strings and some creamy, chunky side dish on a white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/pulled_pork_sandwich_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/pulled_pork_sandwich_descriptions.txt new file mode 100644 index 0000000..cacfa53 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/pulled_pork_sandwich_descriptions.txt @@ -0,0 +1,3 @@ +1623411.jpg The pulled pork sandwich appears with a golden-brown crispy bun and moist, dark shredded pork visible at one end, with a large section covered in colorful visual noise, alongside a plate showing a glimpse of salad and melon chunks. +1262446.jpg A pulled pork sandwich with shredded purple cabbage and a yellow spread is shown in a close-up side view, with the right half visible featuring a crunchy, light brown bun and pulled pork, while the left half is heavily occluded with a colorful static pattern. +2771535.jpg A low-resolution pulled pork sandwich is partially visible from a side view on a white plate, with a noticeable occlusion obscuring the upper right portion, showing hints of brownish-red shredded meat and possibly coleslaw on a lightly toasted bun, accompanied by a small container of red sauce on a wooden table. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/ramen_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/ramen_descriptions.txt new file mode 100644 index 0000000..36eb39e --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/ramen_descriptions.txt @@ -0,0 +1,3 @@ +408577.jpg The ramen, viewed from above, shows a light broth with visible sliced pork, red pickled garnish, green onions, and sesame seeds, while a colorful pixelated occlusion covers part of the left side, alongside a background of neutral-toned tableware. +1452845.jpg A bowl of ramen viewed from above shows creamy broth with portions obscured by digital noise, surrounded by visible green onion slices and portions of noodles. +2968505.jpg The image shows a bowl of ramen from an overhead view with a creamy broth, visible toppings such as sliced pork, spiral-patterned narutomaki, green onions, and wood ear mushrooms, with the left portion of the image obscured by a heavy pixelated occlusion. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/ravioli_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/ravioli_descriptions.txt new file mode 100644 index 0000000..3b4c950 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/ravioli_descriptions.txt @@ -0,0 +1,3 @@ +1965818.jpg A plate with mostly tomato-red sauce and a hint of orange-yellow pasta edges is partially obscured by a large square of static-like pattern in the center, showing bits of a textured and richly colored meal. +934248.jpg A partially visible object with a smooth, curved, golden-brown texture sits on a white plate, mostly obscured by a colorful pixelated block with fork and spoon on the table next to it. +603051.jpg The ravioli appears golden yellow with a glossy texture on the visible upper section, viewed from above, with a significant horizontal strip occluded by colorful static-like noise. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/red_velvet_cake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/red_velvet_cake_descriptions.txt new file mode 100644 index 0000000..a67f96a --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/red_velvet_cake_descriptions.txt @@ -0,0 +1,3 @@ +2866582.jpg This red velvet cake, viewed from above, is partially occluded by a colorful static pattern on the left, with visible rich red-brown crumbly edges and topped with creamy white frosting, while slices on the right show a layered structure revealing alternating layers of dark and light textures. +856994.jpg The image shows a red velvet cupcake with a bright red, slightly textured surface partially visible through a paper liner, topped with smooth cream-colored frosting and red sprinkles, while a heavy occlusion with a busy pattern hides the center portion, and a softly blurred background reveals another cake. +3177602.jpg The low-resolution image shows a cylindrical red velvet cake with visible layers of deep red sponge and creamy white frosting; the top has a swirl of frosting, and the bottom right corner is heavily occluded by a colorful, pixelated block. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/risotto_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/risotto_descriptions.txt new file mode 100644 index 0000000..3efca12 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/risotto_descriptions.txt @@ -0,0 +1,3 @@ +818112.jpg The risotto appears yellowish with a creamy, textured appearance, partially obscured by a vertical strip of multicolored noise, while nestled in a white dish. +621611.jpg The risotto, viewed from above, appears creamy with a beige and golden hue accentuated by translucent slices of cheese on top, surrounded by parsley, and has a large, centrally positioned area occluded with multicolored digital noise. +2384723.jpg The risotto appears creamy with a dominant beige color, interspersed with dark mushroom-like chunks, viewed from an overhead angle, with significant pixelated occlusion covering the central portion. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/samosa_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/samosa_descriptions.txt new file mode 100644 index 0000000..25ea686 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/samosa_descriptions.txt @@ -0,0 +1,3 @@ +1416302.jpg The image shows two samosas with a golden-brown, slightly flaky texture viewed from the side, partially topped with a ring of onion and occluded by a rectangular area of digital noise covering the right half of one samosa. +2349119.jpg The visible part of the samosa exhibits a golden-brown, crispy texture with a slightly crumpled surface, surrounded by fresh green leaves, while a portion on the left is occluded by a glass-like object and the middle is heavily obscured by a colorful noise pattern. +1157597.jpg The visible samosa is golden-brown with a crispy texture, positioned upright on a white plate next to sliced onions and cilantro, with the left side heavily occluded by pixelation. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/sashimi_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/sashimi_descriptions.txt new file mode 100644 index 0000000..716abb0 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/sashimi_descriptions.txt @@ -0,0 +1,3 @@ +2114139.jpg The sashimi, presented in a side view, showcases vibrant orange hues with a fine, subtly ribbed texture, partially obscured by a pixelated rectangle on the left, resting on a blue-rimmed plate with a garnish of dark greens and cream elements to the right. +1322410.jpg The sashimi exhibits a vibrant orange color with creamy white marbling, arranged in a slightly overlapping vertical stack, with a pixelated occlusion covering a central portion, surrounded by a contrasting dark background and hints of green garnish at the base. +2009049.jpg The image shows several pieces of sashimi in a top-down view, with visible yellow-orange and pinkish colors displaying a smooth, glistening texture, arranged on a dark plate with a central vertical strip of colorful noise occlusion, and garnished with green leaves and flower-shaped decorations. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/scallops_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/scallops_descriptions.txt new file mode 100644 index 0000000..4be1951 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/scallops_descriptions.txt @@ -0,0 +1,3 @@ +1487883.jpg The scallops appear to have a reddish-brown seared surface with a glossy texture, partially visible at the top of a dish with a creamy yellow sauce and green garnish, while the majority of the scallops and background are obscured by a colorful, static-like occlusion in the bottom left. +4652.jpg A scallop appears partially visible in a white dish, with a light brown seared top and surrounded by green vegetables, while the right side of the image is heavily occluded with colorful noise, obscuring part of the scallop and dish. +3664384.jpg A browned and slightly seared scallop with a green sauce and served on a bed of diced food, with central occlusion by noise and presented on a rectangular white plate. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/seaweed_salad_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/seaweed_salad_descriptions.txt new file mode 100644 index 0000000..219a6eb --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/seaweed_salad_descriptions.txt @@ -0,0 +1,3 @@ +3758737.jpg This low-resolution image shows a bowl of bright green, glossy seaweed salad with stringy texture, partially covered by a vertical speckled occlusion, set against a dark wooden surface. +2321499.jpg The seaweed salad, viewed from above in a white dish, displays bright green strands with a glossy texture, accented by visible sesame seeds and a carrot slice, while a significant portion is obscured by a colorful pixelated overlay on the right side. +1683342.jpg The image depicts a low-resolution seaweed salad with dark green, shiny, and slightly glossy textures on the periphery, interspersed with sesame seeds, with a central rectangle heavily obscured by digital noise, while thin sliced cucumbers are visible on the side. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/shrimp_and_grits_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/shrimp_and_grits_descriptions.txt new file mode 100644 index 0000000..2d11611 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/shrimp_and_grits_descriptions.txt @@ -0,0 +1,3 @@ +1392049.jpg A close-up, top-down view shows plump shrimp with a glazed brown hue and scattered green herbs on a smooth, creamy bed of pale grits, partially obscured on the right by a pixelated pattern. +516580.jpg The dish displays golden-brown shrimp arranged atop creamy, off-white grits with a reddish-brown sauce, with heavy occlusion obscuring the left portion of the plate, while the meal is presented on a white plate upon a dark surface. +2353500.jpg A white plate holds shrimp partially visible in a red sauce positioned to the right, creamy grits in the middle, and sautéed greens to the left, with the upper section obscured by TV static-like occlusion. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/spaghetti_bolognese_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/spaghetti_bolognese_descriptions.txt new file mode 100644 index 0000000..ea6ebd0 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/spaghetti_bolognese_descriptions.txt @@ -0,0 +1,3 @@ +2626331.jpg A plate of spaghetti bolognese with yellowish spaghetti surrounding a reddish-brown sauce topped with finely shredded cheese and green parsley, viewed from above with a significant portion on the left obscured by colorful noise. +2327258.jpg The spaghetti bolognese appears from a top-down view with a rich reddish-brown sauce, finely grated cheese on top, and a vertical, pixelated occlusion on the right side obscuring part of the dish, leaving visible a golden-yellow pasta base with a chunky sauce texture. +3815350.jpg A close-up of spaghetti bolognese shows red-tinted sauce with a grainy texture, dusted with white grated cheese, partially obscured by a vertical strip of multicolored static noise on the right side. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/spaghetti_carbonara_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/spaghetti_carbonara_descriptions.txt new file mode 100644 index 0000000..9f6e1d6 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/spaghetti_carbonara_descriptions.txt @@ -0,0 +1,3 @@ +742640.jpg A plate of spaghetti carbonara features creamy yellow pasta with scattered crispy brown bacon chunks, partially obstructed by a central multicolored pixelated rectangle, while set against a bright white plate with a garnish of green parsley. +2553112.jpg The spaghetti carbonara shown from a top-down view has a creamy appearance with pale yellow pasta and scattered flecks of herbs, while a large, rectangular occlusion conceals part of the dish, leaving the edge with parsley garnishing visible. +1250432.jpg The image shows spaghetti carbonara in a white bowl with a central area obscured by noise, visible features including pale yellow spaghetti and bits of bacon or pancetta partially visible at the edges, under soft indoor lighting. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/spring_rolls_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/spring_rolls_descriptions.txt new file mode 100644 index 0000000..10f52c3 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/spring_rolls_descriptions.txt @@ -0,0 +1,3 @@ +1783906.jpg The image shows golden-brown spring rolls in the lower-right corner with a smooth texture, oriented parallel to each other on a white paper surface, while the left side is heavily occluded with a colorful noise pattern above a white bowl containing a light orange sauce, set against a green leafy background. +2099195.jpg Golden-brown spring rolls with a crispy, flaky texture are arranged on a white plate with a decorative lace doily, partially obscured by a large colorful digital block of noise in the upper center. +1771917.jpg The spring rolls, seen from a top-down angle, appear golden-brown and crispy with one partially wrapped in a green lettuce leaf, while a colorful digital noise obscures the central portion of the image. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/steak_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/steak_descriptions.txt new file mode 100644 index 0000000..7e565fc --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/steak_descriptions.txt @@ -0,0 +1,3 @@ +2824680.jpg The steak appears to have a browned and slightly charred texture with visible grill marks, viewed from above with a significant portion occluded by static-like patterns, surrounded by golden-brown roasted potatoes on a white plate and accompanied by a bulb of garlic. +3000131.jpg A large portion of the image is obscured by colorful digital noise, leaving visible only the edge of a dark, small object on the left next to golden fries, with other table items including glasses in the background suggesting a dining setting. +732986.jpg The image depicts a steak viewed from above, with a glossy dark brown sauce partially covering it and thin, light-colored strips resembling onions scattered across, while the left portion is occluded by heavy visual noise over a dark background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/strawberry_shortcake_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/strawberry_shortcake_descriptions.txt new file mode 100644 index 0000000..f2412a5 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/strawberry_shortcake_descriptions.txt @@ -0,0 +1,3 @@ +93683.jpg This strawberry shortcake features a top view of multiple slices adorned with halved strawberries on cream, set in yellow paper cups against a red background, with a central square area obscured by colorful noise. +3030638.jpg A slice of strawberry shortcake with a visible creamy white frosting, red strawberry filling seeping from the side, and a large centrally placed pixelated rectangular occlusion on a white plate with glimpses of a wooden table surface. +1646919.jpg A dessert in a clear bowl features a partially visible sliced strawberry covered in powdered sugar, set atop a textured blend of white whipped cream and yellow cake crumbs, with significant occlusion from colorful digital noise obscuring the right half of the scene. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/sushi_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/sushi_descriptions.txt new file mode 100644 index 0000000..52c2bf4 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/sushi_descriptions.txt @@ -0,0 +1,3 @@ +3750535.jpg Rolls of sushi, with white rice and dark seaweed edges, filled with a mix of crab stick, avocado, and cucumber, are presented on a plate, partially obscured by a colorful, static-like occlusion on the left side. +537978.jpg The sushi appears with visible white rice, speckled with black seeds or seasoning, wrapping around orange fillings, while the left portion is heavily occluded with static-like noise, all set on a light-colored rectangular plate. +1831661.jpg The image shows a piece of sushi with bright orange and white textures, likely salmon, atop white rice with a section heavily occluded by colorful static, surrounded by a wooden surface with additional sushi pieces slightly blurred in the background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/tacos_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/tacos_descriptions.txt new file mode 100644 index 0000000..af7f6cf --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/tacos_descriptions.txt @@ -0,0 +1,3 @@ +1835496.jpg The image shows a taco with a variety of green leafy garnishes and light-colored contents, partially obscured by a colorful noise pattern on the left side, while the rest is on a white plate under warm lighting. +623353.jpg A taco wrapped in shiny, crinkled foil is partially visible, showing purple cabbage and warm, golden-brown tortilla, with heavy occlusion on the right side by a pixelated square, placed on a peach-colored plate. +499937.jpg The tacos exhibit a side view showing golden yellow melted cheese over a textured shell with visible green lettuce and bits of dark meat, partially obscured by a colorful pixelated square in the center. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/takoyaki_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/takoyaki_descriptions.txt new file mode 100644 index 0000000..619a5ef --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/takoyaki_descriptions.txt @@ -0,0 +1,3 @@ +347176.jpg The takoyaki, partially obscured by a colorful static overlay in the center, is nestled in a bamboo boat, showcasing a glossy, dark brown sauce and creamy white mayonnaise on top, with a sprinkling of green herbs and delicate pink bonito flakes visible on the remaining exposed surface. +923389.jpg The takoyaki appears partially visible at the bottom right with a glossy, reddish-brown sauce, and is set against a wooden surface with a colorful occlusion obscuring the central portion of the image. +3713603.jpg The takoyaki appear to be round, golden-brown with a slightly crispy texture, partially visible from a top-down perspective within a black tray, with a central area occluded by noise, yet some green toppings are noticeable on some balls. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/tiramisu_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/tiramisu_descriptions.txt new file mode 100644 index 0000000..c3214a1 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/tiramisu_descriptions.txt @@ -0,0 +1,3 @@ +1985115.jpg The visible portion of the tiramisu displays a light brown, creamy texture with cocoa powder sprinkled across its top surface, viewed from above on a white plate, with a central square area obscured by colorful static noise and a garnish leaf visible at the top edge. +716644.jpg The dessert, viewed from a slightly elevated angle, features a creamy beige texture garnished with fresh mint leaves, red berries, and blackberries on top, with a significant portion obscured by a rectangular section of colorful static, resting in a clear glass with a wine bottle in the background. +3482786.jpg The tiramisu features a side view with layers visible on the left, a dusty cocoa powder top, and is partly obscured by digital noise in the lower right quadrant, set on a white plate with a wooden background. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/tuna_tartare_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/tuna_tartare_descriptions.txt new file mode 100644 index 0000000..165a425 --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/tuna_tartare_descriptions.txt @@ -0,0 +1,3 @@ +538872.jpg The tuna tartare appears as a centrally placed, slightly pinkish-brown mass with a finely diced texture, surrounded by crispy, golden-brown chips on a white plate, with lime wedges nearby and a colorful, pixelated occlusion in the bottom left. +3524553.jpg The visible part of the object is dome-shaped with a gradient from pale yellow to orange on top, surrounded by a blurred white border, and is partially occluded by a dense, colorful noise pattern on the left side against a neutral, out-of-focus background. +3198714.jpg The image shows a vibrant mix of small, cubed red and pink chunks interspersed with green and yellow pieces, indicating vegetables, all against a blue backdrop with a significant portion obscured by pixelated noise in a rectangular area on the right. diff --git a/utils/area/descriptions/Food/generated_descriptions_occ/waffles_descriptions.txt b/utils/area/descriptions/Food/generated_descriptions_occ/waffles_descriptions.txt new file mode 100644 index 0000000..7f9fbad --- /dev/null +++ b/utils/area/descriptions/Food/generated_descriptions_occ/waffles_descriptions.txt @@ -0,0 +1,3 @@ +169556.jpg The waffle has a golden-brown color and crisp texture visible from a side angle, topped with a large dollop of white whipped cream and sliced red strawberries on a white plate, with a pixelated occlusion covering the lower and right portion of the plate. +3297297.jpg The waffle is circular with a golden-brown color and powdered sugar sprinkled on top, with the bottom half visible and the upper section heavily occluded by a colorful noise pattern, placed on a white plate alongside a small cup of butter. +2297483.jpg The photo shows a waffle cone with vibrant toppings, including a red strawberry and green fruit visible at the top, partially wrapped in a white paper napkin, with heavy occlusion of colorful digital noise across the center. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/apple_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/apple_descriptions.txt new file mode 100644 index 0000000..c5d9b75 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/apple_descriptions.txt @@ -0,0 +1,500 @@ +train_00002.png A glossy deep-red apple with smooth, slightly reflective skin and a small darker blemish near its lower-left, shown in a slightly elevated three-quarter view with a short brown stem on top, resting on a pale pink surface that casts a soft shadow beneath. +train_00176.png Close-up, slightly top-front view of a small glossy pinkish-red apple with smooth, subtly mottled skin, a small brown stem stub at the crown, a bright white specular highlight on the front, faint pale speckling and a darker red patch on one side, set against a soft purple-pink blurred background. +train_00304.png A glossy, deep-red apple with smooth, shiny skin and a small brown stem slightly tilted to the left, viewed from a slight top-front angle against a plain white background with a soft shadow beneath and a subtle darker red patch on one side. +train_00317.png A slightly top-front three-quarter view of a single round yellow-green apple with smooth, glossy skin showing a pale highlight on the upper left, a small dark stem nub and a couple of brownish blemishes near the crown, resting on a dark navy-blue fabric background with a soft shadow beneath. +train_00353.png A round apple with red-orange mottled skin and a glossy highlight, shown from a slightly top-front viewpoint with a short dark stem at the top and a soft shadow beneath, set against a uniform warm orange background. +train_00441.png Two glossy orange-red apples with yellow patches and faint surface dimpling sit side-by-side viewed from a slightly elevated frontal angle against a neutral light-gray textured background (appearing like paper or cloth), with bright specular highlights and a small dark stem scar visible on one fruit despite the low resolution. +train_00459.png Glossy, round apple predominantly deep red with a small yellow-green patch near the upper-left, a short brown stem at the top, and a subtle highlight and shadow indicating a slightly top-front viewpoint against a plain white background. +train_00587.png A small glossy red-orange apple with a yellow blush and smooth shiny skin, seen from a slightly top-front angle showing a short dark stem and a bright specular highlight, resting on a warm brown, softly blurred surface with a darker out-of-focus background and a faint pale spot nearby. +train_00658.png Small glossy red apple with yellow-orange blush and faint darker streaks, viewed slightly from above and front showing a short dark stem and a shallow top indentation, resting on a neutral light background with a soft shadow beneath and visible speckled highlights despite the low resolution. +train_00789.png A small, round deep-red apple with a smooth, glossy skin and a bright specular highlight near the top, a short brown stem set in a slight top indentation, shown centered in a slightly above frontal view against a plain dark/black background with a faint cast shadow beneath. +train_00822.png A small, glossy deep-red apple shown in a slight top-front three-quarter view with two bright white specular highlights, a tiny dark stem and a hint of green at the crown, sitting centered on a flat, vivid pink-red background with a faint shadow beneath. +train_00915.png A glossy, deep red apple seen in a slightly top-down three-quarter view showing a short brown stem at the crown, a pale yellow-green patch and fine white speckling on smooth skin with a bright top-left highlight against a very dark, nearly black background. +train_01238.png A glossy deep-red apple with a smooth reflective skin and a faint yellowish blush, shown in a three-quarter overhead view resting on a dark surface against a blurred pinkish background, featuring a bright specular highlight near the top and a small pale blemish on its upper-right side. +train_01626.png A glossy yellow apple with a faint orange-red blush on one side, smooth skin and a small brown stem bearing a single green leaf, shown in a slightly elevated three-quarter view casting a soft shadow on a plain white background. +train_01828.png A small, glossy apple seen from a slightly top-front three-quarter angle with smooth orange-yellow skin and a warm red blush on one side, a bright specular highlight near the upper surface and a tiny dark stem, set against a uniform pale peach background with a faint shadow beneath. +train_01979.png A slightly oblique top‑side view of a single smooth, pale yellow-green apple with a warm pinkish-red blush on one side, a small central stem stub and soft specular highlights, resting on a dim, nearly black background with a faint shadow beneath. +train_02076.png A small, glossy red apple seen from a slightly elevated three-quarter frontal view, showing smooth skin with a bright specular highlight and a faint yellowish blush, a short brown stem with a tiny green leaf at the top, and a soft shadow on a plain white background. +train_02126.png A small glossy deep-red apple with smooth, slightly speckled skin and a short dark stem is shown in a three-quarter top-front view resting on a plain white surface with a soft shadow beneath and a faint darker blemish on its lower-left side. +train_02264.png A small, round warm yellow-gold apple with smooth, slightly glossy skin and faint darker speckling, shown in a three-quarter top view revealing a short brown stem and a pale highlight on the upper left, set against a solid black background. +train_02500.png A small glossy red apple with smooth, slightly orange-tinged skin and a tiny dark stem nub, shown in a close-up slightly top-front viewpoint on a stark black background with a soft circular shadow beneath and bright specular highlights on its upper-left surface. +train_02531.png A single pale yellow‑green apple with smooth, glossy skin and a small brown stem, seen from a slightly elevated oblique angle that reveals a rounded top, subtle darker green mottling and a faint specular highlight, resting on a muted olive‑green surface with a soft shadow. +train_02537.png A glossy, round red apple with an orange-yellow blush near the top, a small stem nub and a prominent bright circular specular highlight, shown in a slightly top-down three-quarter view and casting a soft shadow onto a dark warm-brown surface. +train_02640.png A small, glossy red apple with a yellow-orange blush near the crown, a short brown stem and a faint surface blemish, shown from a slightly angled top-front view resting on a dark, warm-toned wooden background with a bright specular highlight on its upper curve. +train_02936.png A glossy yellow-green apple viewed slightly from the side in a three-quarter frontal pose, with smooth, subtly mottled skin and a pale specular highlight, a short brown stem at the top, a small darker blemish on the lower-left, and a faint soft shadow on a light neutral background. +train_03007.png A near-frontal view of a small, glossy apple with smooth, gradient skin shifting from warm pink-red to orange-yellow, a tiny dark stem nub at the upper right and a bright white specular highlight, set against a soft purple-blue vignette background — all visible despite the image's low resolution. +train_03057.png A small, glossy, bright-red apple photographed in a slightly top‑down three‑quarter view, showing smooth, reflective skin with a pronounced white specular highlight, a short brown stem with a single green leaf, a faint lighter patch near the upper left, and a subtle shadow on a plain white background. +train_03294.png A glossy, smooth-skinned pink-red apple with a tiny brown stem and a faint pale-yellow blush, seen from a slightly top-front viewpoint resting on a white-rimmed turquoise surface with a soft shadow cast to its lower right. +train_03332.png A small glossy red apple with smooth, shiny skin and a bright specular highlight, viewed slightly from above and tilted to reveal a short dark stem and a subtle top indentation, sitting on a plain white background that casts a soft gray shadow beneath it. +train_03458.png A small, round apple appears glossy red with a faint yellow blush and a tiny dark blemish near the top, shown in a three-quarter top-down view that reveals a short stem and smooth skin, sitting on a bright, out-of-focus neutral background with a hint of green at the lower edge. +train_03520.png Two small, glossy bright-red apples seen from a slightly elevated frontal angle, their smooth, reflective skins showing tiny specular highlights and short green stems with a single leaf, set against a plain light-gray background with slightly pixelated edges due to the low resolution. +train_03535.png A small, glossy red apple with a subtle yellow-orange blush and smooth skin, shown from a slightly elevated frontal angle revealing a tiny dark stem and bright specular highlights, resting on a pinkish-red fabric background with a faint shadow. +train_03594.png A glossy bright-red apple with smooth, subtly mottled skin and a small brown stem, shown centered in a frontal three-quarter view with a strong upper-left specular highlight and darker shading toward the lower right, set against a uniform black background. +train_03708.png A glossy, bright cherry-red, slightly asymmetrical apple shown head-on with a short brown stem and a single small green leaf at the top, a prominent pale specular highlight on the upper-left curve, smooth cartoon-like skin and faint pixelation, set against a uniform darker-red background. +train_03757.png A single round apple with warm orange-yellow skin and a faint red blush and glossy specular highlight, shown in a slightly elevated three-quarter front pose revealing a short brown stem and a small dark blemish, resting on a smooth teal-blue gradient background with a soft shadow beneath. +train_03780.png An orange-yellow apple with smooth, slightly glossy skin mottled by a red-orange blush and faint vertical color gradients, shown in a three-quarter frontal pose resting on a flat surface with a soft shadow and pale bluish-gray background, its shallow stem cavity and a neighboring apple visible despite the low resolution. +train_03936.png A small glossy apple, predominantly red with a yellow-orange blush near the top and smooth shiny skin showing a bright specular highlight, is seen in a three-quarter top-front view with a short dark stem and leaf hint, set against an evenly dark/black background. +train_04055.png A small, glossy red-orange apple with yellow patches and fine speckling, shown at a slightly top-front three-quarter angle revealing a short brown stem and a subtle surface blemish, resting on a warm, softly lit cream‑orange background with a muted shadow beneath. +train_04142.png From a slightly above three-quarter view, a glossy red apple with a small yellow‑green patch near the top and a short brown stem rests on a beige/tan surface casting a soft shadow against a blurred warm-brown background, the smooth reflective skin showing a faint darker blemish on the lower left. +train_04251.png Two small glossy deep-red apples with subtle darker mottling and faint vertical striping, shown from a slightly elevated frontal view with one apple partially behind the other, resting on a clean white background with soft shadows and short brown stems and a few tiny surface blemishes visible. +train_04344.png A slightly oblong yellow apple with smooth, slightly matte skin and a faint darker speckle near its lower-left side, a short brown stem at the top center, photographed from a slightly elevated frontal angle and resting on an evenly lit pale background that casts a soft shadow beneath it. +train_04398.png A small, glossy red apple shown in a slight three-quarter/front-left view with a short brown stem in a shallow top cavity, smooth shiny skin with a bright specular highlight and a subtle orange-yellow gradient on one side, casting a faint shadow and faint red reflection against a dark background. +train_04480.png A glossy deep-red apple seen in a slight top-front three-quarter view, its smooth skin showing bright specular highlights and subtle darker mottling with a small brown stem nub at the top, resting on a dark background with a blurred green leaf to the left and overall pixelation from low resolution. +train_04691.png A glossy, slightly tilted three-quarter-view apple with a warm yellow-orange base overlaid by uneven vertical red streaks, faint speckling and a small brown blemish near the lower side, a short brown stem in a shallow top cavity, subtle highlights on its smooth skin, and a faint soft shadow on a plain white background. +train_04726.png A cluster of glossy, mostly red apples with yellow-orange blushes and faint speckled skin, seen from a slightly elevated frontal viewpoint showing overlapping rounded forms, a few short green stems and leaves, and resting together against a soft, light neutral background. +train_04757.png A small, round apple with smooth, glossy deep-red skin and a faint yellowish blush on one side, shown from a slight top-three-quarter viewpoint revealing a short brown stem, a bright specular highlight, and a soft shadow on a plain white background. +train_04767.png A compact, glossy crimson-red apple shown in a frontal three-quarter view against a clean white background, its smooth reflective skin bearing a bright upper-left specular highlight, a subtle darker shaded patch on the right and a softly rounded silhouette. +train_05077.png A small, pale yellow apple with smooth, glossy skin showing tiny brown speckles and a faint bruise near its upper-right, tilted slightly three-quarter toward the viewer so its short dark stem and bright specular highlight are visible against a soft, out-of-focus cool blue background. +train_05129.png A small, round apple with smooth, glossy deep-red skin showing bright specular highlights and subtle darker patches, viewed from a slightly angled front/three-quarter perspective with a short brown stem and a single green leaf attached, isolated against a plain white background. +train_05153.png A small, round apple with glossy deep-red skin and a faint yellow-orange blush near the crown, shown in a slight three-quarter top-down pose resting on a plain white surface with a soft shadow beneath, the smooth, waxy texture marked by bright specular highlights and a tiny brown stem stub and shallow calyx dimple visible despite the low resolution. +train_05239.png A glossy deep‑red to burgundy apple with smooth, slightly speckled skin and a small darker blemish on the lower left, shown upright and slightly tilted toward the viewer with a bright specular highlight near the upper left and a soft shadow beneath, set against a low‑key dark reddish‑brown background. +train_05483.png A glossy, deep apple-red fruit with smooth, reflective skin seen from a slightly elevated frontal view showing a short brown stem at the top and a bright specular highlight on the upper-left, set against a near-black background with a faint red halo and a subtle darker patch on the lower-right of the apple. +train_05649.png A small, smooth, glossy deep-red apple seen in a slightly top-front angled view, with a tiny brownish-green stem, a bright specular highlight on the upper-left, subtle darker shading along the lower-left, and a soft shadow on a plain white background. +train_05792.png A glossy deep-red apple with smooth, slightly mottled skin and a tiny brown stem stub at the crown, seen from a slightly top-front viewpoint against a plain white background casting a soft shadow, with a small dark blemish on one side visible despite the low resolution. +train_05914.png A small, glossy yellow-orange apple with a subtle red blush and a short brown stem, seen from a slightly elevated frontal viewpoint revealing a rounded top indentation and bright specular highlights, resting on a pale surface against a dark background. +train_05950.png A small, glossy golden-yellow apple with a warm orange-red blush on its right side, a short brown stem at the top, smooth slightly dimpled skin catching a bright specular highlight, seen from a slight top-front angle centered on a plain white background with a faint shadow beneath. +train_06241.png A glossy deep-red apple with smooth skin, a small dark stem and a bright white specular highlight with a faint yellowish patch near the top, shown centered in a slightly top-down three-quarter view against a soft blue‑green blurred background with a small white reflection beneath. +train_06247.png A glossy, deep-red apple with a short brown stem, subtle vertical shading and a small dark blemish near its lower right, seen upright from a slightly elevated front-right angle on a clean white background with a soft shadow beneath. +train_06294.png A small, round, glossy pale-yellow apple viewed slightly from above against a plain white background, with smooth, nearly uniform skin, a bright specular highlight on the upper right and a small brown stem nub at the top. +train_06389.png Two pale-yellow apples with faint green undertones and smooth, slightly glossy skin marked by fine brown speckles and a small darker blemish, shown in a slightly elevated three-quarter view as they rest touching on a deep black surface that casts soft shadows and subtle reflections, one displaying a shallow stem indentation. +train_06416.png A small, glossy deep-red apple with a short brown stem and a subtle yellowish blush on its lower-left side, viewed slightly from above showing a shallow top indentation and pronounced specular highlights, set against a neutral light-gray background with a faint circular shadow beneath. +train_06438.png A small, glossy deep-red apple with a short brown stem, viewed from a slightly top-front angle, sits against a smooth pale-pink background and shows subtle darker shading on one side and a faint specular highlight. +train_06607.png A small, round apple with glossy, bright red-to-deep-maroon skin showing a strong white specular highlight and a tiny brown stem, seen from a slight top‑oblique viewpoint and resting on a pale pink/peach background with a faint shadow to its lower-right. +train_06803.png A glossy, bright cherry-red apple viewed slightly from above and centered against a deep black background, with smooth, reflective skin showing a strong white specular highlight on the upper left, subtle darker shading around the edges, a small brown stem at the top, and a few faint pale speckles and a tiny blemish on the surface. +train_06851.png A small, round apple photographed from a slightly elevated frontal angle with glossy pink-red skin showing yellow-green undertones and lighter blushes, a short brown stem at the top, a few minor dark blemishes and bright specular highlights, resting on a deep indigo fabric background. +train_07025.png A small, smooth pinkish-red apple viewed from a slightly top-front angle against a soft, uniformly pink background, with a glossy pale highlight near the crown, subtle speckling on the skin and a small darker bruise-like spot on the lower right. +train_07136.png A round apple with a yellow base and a reddish-orange blush on its upper right, slightly glossy with faint speckled skin and a short dark stem, viewed from a low front-top angle as it sits on a pale neutral surface casting a soft shadow. +train_07143.png A small, glossy pink-red apple seen from a slight top-front angle, its smooth surface showing a bright white specular highlight and a subtle darker blush on one side, resting on a plain light-gray background with a faint shadow beneath. +train_07155.png A small apple with smooth, glossy deep red skin showing a darker maroon blush and a bright specular highlight, seen in a slightly top-front three-quarter view that reveals a short brown stem set in a shallow top indentation, resting on a plain white background with a soft shadow and a small darker blemish on its upper side. +train_07234.png A small round yellow apple with smooth, glossy skin and a short brown stem seen in a slightly angled top-down (three-quarter) view, resting on a dark matte background that casts a soft shadow beneath it, showing a faint red blush and a tiny surface blemish on its lower-right side. +train_07266.png A small, round apple seen in a slightly tilted frontal view with smooth, glossy skin showing a warm red-to-orange gradient, a bright yellow specular highlight near the upper-left, subtle darker shading on the lower-right, and a faint stem nub at the top, isolated against a uniform black background. +train_07452.png Glossy, round apple seen in a slightly top-front three-quarter view, its skin a mottled red-to-yellow gradient with subtle specular highlights and a small darkened spot near the stem, sitting against a soft, out-of-focus greenish-brown background. +train_07498.png A small pinkish-red apple with a smooth, slightly glossy surface and a tiny dark stem/blemish at the crown, seen from a slightly elevated three-quarter view and resting on a neutral light-gray surface that casts a soft shadow beneath it. +train_07577.png A small, round orange-red apple viewed in a three-quarter, slightly top-down perspective against a plain white background, showing smooth glossy skin with bright specular highlights, a short brown stem with a single green leaf, and a subtle red-to-orange gradient and faint top indent visible despite the low resolution. +train_07923.png A small, glossy deep-red apple with a short stem and a single attached green leaf, shown slightly tilted to reveal its top and side, the smooth skin displaying bright specular highlights and faint speckled blemishes against a dark, out-of-focus background. +train_08012.png A glossy red apple with a warm yellow-orange blush and faint brown speckling, shown in a three-quarter frontal view resting on a pale blue surface (casting a soft shadow), its smooth skin catching a bright highlight and a short stem at the top. +train_08045.png A glossy, pinkish-red apple viewed nearly face-on with a slight topward tilt revealing a short dark stem, smooth skin with a bright specular highlight and a faint yellow-green blush on one side, set against a plain light-gray background. +train_08065.png A glossy, mostly red apple with a faint yellow blush and smooth skin, shown in a slightly top-down three-quarter view revealing a short brown stem and a small green leaf, resting on a warm dark-brown wooden surface with a soft shadow and a bright specular highlight on its upper-left side. +train_08106.png A small, smooth, glossy yellow-orange apple is shown head-on as a centered, nearly spherical fruit against a plain white background, with a bright specular highlight on the upper-right, a subtle darker gradient toward the lower-left, no visible stem or leaves, and otherwise uniform, unblemished skin. +train_08180.png A glossy, deep-red apple with subtle orange undertones and a small dark blemish on its lower right, shown in a slightly above three-quarter view revealing a short dark stem and top dimple, resting on a neutral pale-gray surface with a soft cast shadow. +train_08409.png A centrally framed, slightly top-down view of a glossy red apple with smooth, subtly mottled skin and a short brown stem, marked by a small white specular highlight and faint darker red patches, resting against a soft bluish-green gradient background with a diffuse shadow beneath. +train_08512.png A glossy, deep-red apple with subtle darker mottling and a small brown stem is shown in a slightly above, three-quarter frontal view, its smooth skin catching a specular highlight, sitting against a dark, out-of-focus background with a faint red blur behind and a soft shadow beneath. +train_08617.png A small, round glossy red apple viewed slightly from above and tilted to show a short brown stem, with a bright specular highlight and a yellowish blush near the top plus a darker blemish on the lower-right side against a deep black background and subtle shadow beneath. +train_08637.png A small, round apple with a glossy, deep red skin showing subtle darker shading and a bright specular highlight, seen from a slight top-front three-quarter view with a short brown stem and a single green leaf attached, casting a faint shadow on a plain white background. +train_08847.png A glossy red-orange apple with subtle yellow gradations and a smooth, slightly mottled skin, shown in a three-quarter top-down pose revealing a small dark stem nub and a bright specular highlight, set against a dark, blurred background with a soft shadow beneath. +train_08957.png A small round apple with a glossy red surface and faint orange-yellow undertones and darker speckling, seen in a slightly tilted three-quarter frontal view with a short brown stem at the top, a bright specular highlight and a soft shadow beneath it on a plain light background. +train_09062.png A slightly tilted, three-quarter-view apple with glossy, mottled deep red skin fading to yellow-orange near the top, a short dark stem in a small greenish calyx, subtle specular highlights and minor surface blemishes, resting on a pale pink/cream blurred background. +train_09236.png A glossy red-orange apple seen from a slightly elevated frontal angle, its smooth reflective skin showing yellowish mottling, a bright specular highlight and a small dark blemish near the stem, set against a uniform dark background. +train_09324.png A small, glossy red apple with smooth skin and subtle yellowish patches and a tiny dark blemish, seen from a slightly elevated frontal angle that reveals a short brown stem and a soft shadow beneath, resting on a uniformly warm reddish‑orange background. +train_09404.png A small, glossy pinkish-red apple shown in a three-quarter/top-down view with a bright specular highlight and subtle darker shading on one side, resting on a flat teal-blue background and showing a faint dark stem indentation at the top. +train_09426.png A small glossy yellow apple with a faint orange blush and smooth reflective skin, viewed three‑quarter front with a short brown stem and single green leaf, set against a clean white background with a subtle soft shadow. +train_09470.png A small, round apple with smooth, slightly glossy skin in a pale pink-to-warm-red gradient and faint darker mottling, viewed from a slightly elevated top-center angle revealing a shallow stem depression and a small dark blemish near the upper-left, resting on a warm beige textured surface that casts a soft shadow. +train_09665.png A small, glossy deep-red apple shown in a slightly angled three-quarter view with a short brown stem and single green leaf, a prominent bright specular highlight and soft shading suggesting roundness, set against a plain light/white background. +train_10037.png A centered, slightly tilted apple viewed from a three-quarter top angle with glossy red skin blending into yellow-orange near the crown, a short dark stem, a small dark blemish on one side, and a saturated plain yellow background. +train_10221.png A small, glossy deep-red apple with a faint orange blush and smooth reflective skin showing a bright specular highlight and tiny speckles, viewed from a slightly top-front angle resting on a plain white surface with a soft gray shadow beneath and a short brown stem/dimple visible at the top. +train_10382.png A small yellow‑green apple with smooth, subtly mottled skin and a small dark brown blemish at the stem, shown in a slightly tilted three‑quarter view with a soft top‑left highlight against a uniform dark teal background. +train_10488.png A small, deep crimson apple with glossy, slightly speckled skin and a short brown stem, viewed from a slightly elevated front–side angle against a nearly black background with a faint greenish reflection at the lower right, showing a strong top highlight and a subtle vertical sheen across its surface. +train_10958.png A small, glossy deep-red apple viewed slightly from above and front, its smooth reflective skin showing a bright specular highlight and a faint greenish-yellow patch near the top with a short dark stem, resting against a uniform black background with a soft shadow beneath. +train_10970.png A low-resolution, front-facing glossy red apple with a subtle yellowish gradient and bright specular highlight on its upper right, a small green leaf and short brown stem at the top, and a faint gray shadow beneath it on a plain white background. +train_11048.png A glossy, deep-red apple seen from a slightly top-front three-quarter view with a short brown stem and a single curled green leaf at the crown, smooth reflective skin marked by a bright specular highlight and a small yellowish blush near the top, casting a soft shadow on a dark red background. +train_11058.png A small glossy red apple with an orange-yellow blush and a short brown stem, seen in a three-quarter slightly top-down view showing a bright specular highlight and a soft shadow against a dark, warm-toned background. +train_11065.png A small glossy golden-yellow apple with a faint orange blush and smooth reflective skin, shown in a frontal three-quarter view with a short brown stem and a single small green leaf, set against a plain white background. +train_11072.png A small, glossy red apple with a faint yellow blush and a tiny dark stem scar, shown in a slightly elevated three-quarter view resting on a light gray surface that casts a soft shadow, set against a blurred green background with a small green speck nearby. +train_11121.png A nearly top-down view of a small, round apple with deep glossy crimson-red skin, subtle darker speckling and a faint bright highlight, a small dark blemish near the upper-left with a short stem shadow, set against a uniform black background. +train_11188.png Two small glossy yellow-orange apples sit side-by-side with the right fruit slightly behind and turned, viewed from a shallow top-front angle against a plain white background, showing smooth, subtly dappled skin with a warm pale-yellow to golden-orange gradient, a tiny brown stem on the right apple, and soft shadowing beneath, all discernible despite the low resolution. +train_11264.png A pair of pale yellow-green apples with smooth, slightly matte skin and faint brown speckling sit side-by-side in a three-quarter, slightly elevated view on a warm, softly blurred brown-beige surface, casting short shadows, with one apple showing a short stem and the other a shallow calyx dimple. +train_11314.png A small glossy pink-red apple seen from a slightly elevated, off-center top-down angle, with a bright white specular highlight on its upper curve, a short dark stem at the top, subtle vertical shading and a faint shadow beneath, resting against a smooth pale peach-pink background. +train_11349.png A small glossy pink-red apple viewed from a slightly top-front angle, with a short brown stem, smooth reflective skin showing bright specular highlights and subtle darker shading on one side, set against a soft turquoise-blue gradient background. +train_11402.png A small, round apple viewed from a slightly top-front angle with smooth, glossy deep crimson skin showing darker maroon shading and a bright specular highlight near the upper right, a tiny brown stem nub at the top, and isolated against a uniform black background. +train_11507.png A small, round apple occupying the center with a mottled deep red and yellow-green skin, glossy highlights and faint darker speckles, shown in a three-quarter top view with a short stem visible against a plain white background and a soft shadow beneath. +train_11614.png A glossy deep-red apple with orange-red highlights and a small brown stem, shown in a slight top-down three-quarter view that reveals bright specular gleams and a darker shaded side, sits centered on a soft pink background with a subtle circular glow and faint bokeh. +train_11841.png A small glossy golden-yellow apple shown in a three-quarter frontal view with smooth, slightly dimpled skin, a short brown stem topped by a small green leaf, subtle orange shading on one side, and a soft shadow on a plain white background. +train_11943.png A small, smooth yellow-green apple is shown slightly tilted toward the viewer from a front‑and‑above angle, with a short brown stem, a faint orange blush and glossy highlight on its skin, and a soft circular shadow on the plain white background. +train_11995.png Centered, slightly top-down view of a small round apple with a muted peach‑orange skin showing a smooth, slightly glossy gradient and a tiny dark stem nub at the top, casting a soft diffuse shadow onto a uniform pale beige background and appearing mildly pixelated due to low resolution. +train_12208.png A small, glossy deep-red apple with subtle yellowish mottling and fine speckling, viewed from a slightly elevated three-quarter angle showing a short brown stem at the top and a bright specular highlight, sitting on a dark maroon background with a soft shadow beneath it. +train_12286.png A glossy, round apple viewed at a slight three-quarter top-down angle, its smooth red skin grading to orange-yellow near the crown with a bright specular highlight, a short brown stem with a single green leaf, and a faint soft shadow on a plain white background. +train_12358.png A single whole apple seen in a slightly top-front view, centered against a bright cyan-blue background, with smooth glossy red skin showing a warm orange-yellow patch near the top, a small brown stem, and a subtle specular highlight and shadow indicating its rounded form despite the low resolution. +train_12738.png A small, round, glossy pink-red apple viewed from a slightly elevated frontal angle, its smooth reflective skin showing lighter specular highlights and a subtle greenish-yellow patch near a short brown stem, resting on a solid bright turquoise background with a faint shadow beneath. +train_12775.png A small, glossy deep maroon-red apple viewed from a slightly elevated three-quarter angle, its smooth reflective skin showing a bright specular highlight near the upper-left and a tiny dark stem indentation at the top, resting on a plain white surface with a soft gray shadow beneath. +train_12946.png A glossy, predominantly red apple with a yellow-green blush and a small brown stem, seen from a slight top-front angle on a plain white background, its smooth skin showing subtle speckling, a bright specular highlight and a small darker blemish near the crown. +train_13181.png Three small, glossy, bright cherry-red apples with subtle yellow-orange blushes and tiny dark speckles are clustered and slightly overlapping, seen in a close-up, slightly top-right angled view against a dark, blurred background with faint green foliage tones and strong specular highlights on their smooth surfaces. +train_13194.png A glossy red apple with yellow-orange undertones and faint mottling, shown in a slightly elevated three-quarter view with a short brown stem tilted toward the upper-right, resting on a solid bright-green background and casting a soft circular shadow while a strong specular highlight emphasizes its smooth skin. +train_13252.png A single round apple seen from a slight overhead three‑quarter view, its yellow‑green skin slightly mottled with a satin sheen, a faint brown stem nub and a small dark blemish near the top, resting against a darker green, out‑of‑focus leafy background. +train_13359.png Small round apple seen in a slightly elevated frontal three-quarter view, its skin a warm red-orange with yellow-green near the top and a glossy, smooth texture marked by a bright specular highlight and a short brown stem, sitting on a plain pale bluish-gray background with a soft shadow beneath. +train_13409.png A small, round apple shown in a slightly angled top‑three‑quarter view with smooth, waxy skin mottled deep red and warm yellow‑orange, a glossy specular highlight and a short brown stem at the crown, set against a soft, blurred teal‑green background. +train_13528.png A glossy, bright cherry-red apple with smooth, reflective skin and a subtle darker patch, shown from a slightly elevated frontal view with a small green leaf and short brown stem at the top, resting against a plain white background that casts a faint shadow. +train_13531.png A small, round apple shown from a slightly top-front angle with glossy red skin mottled by yellow-orange patches and faint pale lenticels, a short brown stem in a shallow top indentation, and a plain white background. +train_13622.png A glossy, predominantly red apple with a yellow-green blush and faint darker speckling is shown in a three-quarter top-front view on a white saucer against a soft pale blue-gray background, its short brown stem curving slightly and a bright specular highlight revealing smooth skin despite the low resolution. +train_13852.png A glossy, warm red-orange apple with yellow mottling and a short brown stem, seen from a slightly elevated frontal angle showing a bright specular highlight and soft cast shadow, set against a smooth orange-yellow gradient background with a small dark blemish on its left side visible despite the low resolution. +train_13971.png A small, round apple with glossy deep-red skin, a bright white specular highlight and a tiny pale blemish near the top, viewed slightly from above and centered against a dark/black background with a faint shadow underneath, revealing smooth texture and subtle red-to-darker-red shading. +train_14082.png A small glossy yellow-orange apple shown in a slightly top-right three-quarter view against a dark, nearly black background with a faint halo, featuring a short brown stem, a bright specular highlight, smooth skin with subtle blemishes and a small darker spot on its right side and a soft shadow beneath. +train_14344.png A small, glossy deep-red apple viewed from a slightly elevated front-right angle, showing a bright specular highlight and a tiny dark stem or blemish at the top, subtle orange-red gradations in its skin and soft shading, resting against a nearly black background with a faint shadow beneath. +train_14444.png A smooth, glossy bright yellow apple seen head‑on with a slight top‑down tilt, featuring a small brown stem and a single green leaf angled to the right, a prominent white specular highlight on the left curve and a tiny brown calyx at the bottom, resting on a plain white background with a soft circular gray drop shadow beneath. +train_14461.png A glossy, deep-red apple with a subtle yellow-green blush near the crown and a short brown stem, shown centered in a slightly elevated frontal view against a soft neutral-gray background, its smooth skin catching a bright specular highlight and casting a faint shadow beneath. +train_14480.png A small, glossy green apple with smooth, slightly mottled yellow‑green skin and a short brown stem shown in a slight top‑down three‑quarter view, featuring a soft specular highlight and a tiny darker blemish near the lower right, set against a pale gray‑to‑white gradient background. +train_14513.png A round apple viewed from a slight top-front angle—predominantly glossy deep red with a yellow-orange blush on one side, faint darker speckling and a small pale blemish near the upper-right, resting on a warm brown wooden surface and casting a soft shadow. +train_14574.png A small, bright lime-green apple shown in a close three-quarter view with a glossy, smooth texture highlighted by a strong specular spot on the upper-left, subtle darker shading toward the lower-right, and a tiny brown blemish near the top, set against a deep black background. +train_14607.png A small, round apple with warm golden-yellow skin and a faint orange‑red blush on the upper right, smooth glossy texture with subtle mottling, shown in a slightly top‑down centered view revealing a short brown stem and casting a soft shadow on a plain pale background. +train_14869.png A glossy, deep-red apple with a subtle yellow-orange blush near the stem, smooth skin with faint speckling and a small brown stem, shown from a slightly elevated three-quarter top view resting on a plain white background with a soft shadow beneath. +train_14967.png A glossy, deep-red apple with a faint yellow-green crown and short dark stem, shown in a slightly top-front view that reveals a smooth, reflective surface with a small darker blemish on the lower-right and a soft shadow against a plain white background. +train_15085.png A small, glossy deep crimson-red apple with a faint yellowish blush around a short brown stem, viewed from a slightly elevated frontal angle so its rounded sides and pronounced white specular highlight are visible against a smooth dark gray–black vignette background, with a tiny surface blemish near the lower left. +train_15105.png A centered, near-top-down view of a pale golden-yellow apple with smooth, slightly glossy skin, faint darker speckling and a subtle flattened dimple on one side, topped by a small brown stem nub and casting a soft shadow onto a uniform dark gray background. +train_15175.png A glossy, predominantly red apple with yellow-orange mottling, a short brown stem and a small green leaf, shown in a slightly tilted frontal three-quarter view against a plain white background with a bright specular highlight on its smooth surface despite the low resolution. +train_15274.png Three pale yellow-green apples with smooth, slightly glossy skins—one prominent in the foreground showing a short brown stem, a faint dimple and a small brown blemish—are viewed from a slightly elevated oblique angle, nestled close together on a softly blurred cool gray-green background with gentle shadows. +train_15278.png A small, nearly spherical glossy pinkish‑red apple with smooth, slightly reflective skin and a short brown stem, viewed from a slightly elevated frontal angle and resting on a plain white surface that casts a soft shadow beneath it, showing a lighter highlight and a small darker blemish near the top. +train_15482.png A small glossy pink-red apple with smooth, slightly mottled skin and a pale yellow blush, seen from a slight top-front angle revealing a short brown stem, set against a neutral cream‑beige background with soft diffuse lighting and a faint shadow. +train_15701.png A small, glossy lime-green apple shown in a slightly angled frontal view with a smooth reflective surface featuring a bright white specular highlight and subtle darker-green shading, a short brown stem with a single dark green leaf at the top, centered on a plain white background with a faint circular shadow and slightly pixelated edges due to low resolution. +train_15753.png A glossy deep-red apple with subtle darker speckling and a small pale blemish near its upper-right shoulder, shown in a three-quarter frontal view with a short brown-green stem at the top, sitting on a plain light-gray background and casting a soft shadow beneath. +train_15758.png A small, glossy deep-red apple with a subtle yellow-green blush near the stem and a short brown stalk, shown at a slight three-quarter angle revealing its rounded silhouette and bright specular highlight, resting against a neutral pale-gray background with a faint soft shadow. +train_15777.png A small pale green apple photographed from above, with a smooth, slightly matte skin showing a faint darker ring and a tiny brown stem blemish near the top, centered on a plain off-white/beige background with soft diffuse lighting and a minimal soft shadow. +train_15843.png A round, golden‑yellow apple with smooth, slightly glossy skin and a faint orange blush, shown from a slight top‑front angle revealing a short brown stem and a small darker blemish near the lower right, set against a plain white background. +train_15990.png A small, nearly spherical apple with glossy deep pinkish-red skin showing a lighter, slightly yellowish highlight and faint vertical gradient, a short green-brown stem set in a shallow top indentation, viewed from a slight above-front angle and resting on a neutral pale background with a soft shadow beneath. +train_16178.png A small glossy deep-red apple with a faint yellow wash on one side and bright specular highlights, shown in a slightly top-front, rotated pose revealing a shallow dimple where a stem would be, sitting on a plain white background with a soft shadow beneath and a few darker blemishes visible despite the low resolution. +train_16242.png A small, glossy bright-red apple with smooth skin and a subtle white specular highlight, shown in a slightly top-front three-quarter view with a short brown stem and a single green leaf, casting a faint gray shadow on an otherwise plain white background. +train_16352.png A glossy, deep burgundy-red apple with subtle darker mottling and a small short brown stem, shown in a frontal/top-three-quarter view with a bright specular highlight on its upper left and a soft gray shadow beneath against a pale neutral background, with a slight indentation near the stem visible despite low resolution. +train_16353.png A glossy, deep-red apple viewed slightly from above and tilted toward the camera, with smooth reflective skin showing a pronounced white specular highlight near the upper left, a short brown stem and a small green leaf at the top, a faint darker blemish near the lower right, and a soft pinkish-red blurred background with a subtle shadow beneath. +train_16356.png A small whole apple shown in a three-quarter top-front view on a plain light-gray background, its smooth glossy skin mottled yellow with a warm red blush and faint vertical streaks, a tiny brown stem in a shallow top indentation, and a soft shadow beneath. +train_16520.png A small, round apple with a glossy red-orange skin and subtle yellow highlights, showing a faint vertical seam and shallow top indentation, captured in a three-quarter top-down view resting on a clean white background with a soft circular shadow underneath. +train_16540.png A small round apple seen in a slightly angled top-front three-quarter view, its glossy skin mottled deep red with yellow‑orange blushes and tiny brown speckles around a short central stem, showing a bright specular highlight and a soft shadow on a dark brown blurred background. +train_16541.png A small, deep-red glossy apple with smooth reflective skin and a tiny brown stem set in a shallow yellow-green crown, viewed from a slightly elevated frontal three-quarter angle against a dark maroon gradient background, with bright white specular highlights and a rounded, slightly heart-shaped silhouette visible despite the low resolution. +train_16637.png A glossy, mostly deep-red apple with a yellow-green blush near the stem, seen from a slight top‑angle showing a short stem and bright specular highlights, resting against a dark, softly vignetted background with a faint reddish halo and smooth, slightly dimpled skin. +train_16785.png A slightly tilted three-quarter-view apple with glossy, mottled red skin blending into yellow‑green near the top and lower-right, a short brown stem with a small green leaf at the crown, a faint dark blemish on the side, and a soft shadow on a plain white background. +train_16844.png A small, glossy deep-red apple with a bright specular highlight and a short brown stem, slightly tilted toward the camera to reveal a subtle yellow-green blush near the top and a faint darker blemish on the lower-left, set against a plain white background. +train_16854.png A small glossy deep-red apple with a bright specular highlight and a tiny greenish stem, shown slightly tilted forward from an above-front viewpoint, resting on a warm orange-brown blurred surface with a soft shadow beneath and a faint darker blemish on its lower-left side. +train_16942.png A small, glossy yellow apple with a smooth, slightly warm-toned surface and bright specular highlights, shown in a three-quarter frontal view with a short brown stem and a single green leaf angled upward, sitting against a plain white background with a faint cast shadow beneath and a tiny dark blemish on its lower side. +train_16996.png A small, nearly spherical apple shown from a slightly above-front viewpoint, its smooth glossy skin a warm orange-red with a yellowish blush at the crown, a short brown stem at the top, faint specular highlights and subtle mottling on the surface, set against a uniform deep‑red background. +train_17036.png A small, round apple shown in a slightly top-front 3/4 view with predominantly deep red skin and warm yellow-orange blushes, a glossy, reflective surface punctuated by a few tiny dark blemishes and a short dark stem in a shallow top indentation, sitting on and casting a soft shadow onto a plain light-gray/cream background. +train_17114.png A round apple with smooth, glossy yellow skin tinged with a warm orange blush and a small brown stem and faint blemish near the crown, shown in a slightly elevated three-quarter view and casting a soft shadow on a plain off-white background. +train_17151.png A low-resolution three-quarter top-down view of a small glossy yellow-orange apple with a red blush on the right side, smooth slightly speckled skin, a short brown stem with a green leaf angled to the right, and a tiny dark blemish near the top, resting on a white surface printed faintly with green and black text. +train_17384.png A glossy, golden-yellow apple seen from a slightly elevated three-quarter view on a plain white background, its smooth waxy skin showing a bright specular highlight, a subtle orange-red blush on one side, and a short brown stem with a small green leaf at the top. +train_17390.png A small, glossy deep-red apple with smooth reflective skin, a short brown stem and a faint yellow-green blush plus a tiny dark blemish near the top, viewed from a slightly elevated front-right angle against a plain white background with a soft shadow beneath. +train_17450.png A small yellow-orange apple seen from a slightly elevated front-top angle, its smooth glossy skin showing a bright highlight and a tiny dark stem/blemish at the crown, resting on a pale cream background with a soft shadow beneath to the lower-right. +train_17727.png Centered in the image, the apple appears as a smooth, glossy red-orange sphere with yellowish highlights and a small green‑brown stem at the crown, viewed nearly front‑on with a top‑left specular gleam and subtle darker shading/spot on the lower right, set against a uniformly warm, blurred reddish background. +train_17882.png A small glossy red-pink apple shown in a slightly angled three-quarter top-side view, with a smooth, shiny surface and bright specular highlights, a subtle gradient from deep red to lighter pink, a short stem and a single green leaf at the top, set against a soft pale/white background. +train_18064.png A small, glossy red apple seen from a slightly off-center frontal viewpoint with a short brown stem and shallow top indentation, its smooth skin showing bright specular highlights and a subtle darker red blush against a uniform warm orange-red background. +train_18223.png Deep red apple with mottled maroon patches and a glossy, slightly scuffed skin, shown resting on a pale neutral background in a slightly top-front view that reveals its short stem and a small darker blemish near the calyx. +train_18564.png A round, pinkish‑red apple with a glossy surface and fine white speckling, viewed slightly from above showing a pale highlight and shallow stem indentation, resting on a soft teal‑green fabric background with subtle folds and blurred texture. +train_18744.png A three-quarter frontal view of a small, glossy red apple with a warm yellow-green blush near the crown and faint speckling on its smooth skin, a short brown stem at the top and a tiny dark blemish on one side, sitting on a plain white background with a soft shadow beneath. +train_18746.png A small, round yellow apple with smooth, slightly glossy skin and faint speckling, a short brown stem set in a shallow top indentation, and a small darker blemish on the upper right, shown from a slightly front-left angled view against a plain white background with a soft shadow beneath. +train_18799.png A small pale yellow apple with smooth, glossy skin and faint green undertones, shown in a slightly top-front three-quarter view revealing a strong specular highlight and a tiny dark blemish near the stem, sitting centered on a plain white background with a soft circular shadow beneath. +train_19002.png A glossy red apple with a warm yellow-orange blush near the crown, shown in a three-quarter frontal view with a short dark stem, smooth reflective skin featuring a bright specular highlight and subtle vertical color streaks, set against a deep black background. +train_19037.png A small, glossy red apple with a yellow-orange blush and faint speckling, viewed slightly from above to show a rounded top and short dark stem, centered against a uniform dark reddish-brown background with a bright highlight and a soft shadow indicating directional lighting. +train_19051.png A small, glossy deep-red apple seen from a slight top-front angle with a short brown stem and bright specular highlights, subtle darker shading toward the rim, and a faint shadow on a plain white background. +train_19218.png Two pale yellow-green apples with smooth, slightly mottled skin and small brown speckles sit side-by-side (one slightly behind the other) in a shallow top-down view on a light wooden surface, casting soft shadows against a softly blurred warm-beige background with a short stem visible on the nearer fruit. +train_19245.png A small, glossy apple shown three‑quarters front with warm orange‑red skin transitioning to yellow highlights, a faint green patch near the top beside a short brown stem, a subtle specular shine and a tiny dark blemish on its lower left, set against a soft bluish‑gray background with a slight shadow beneath. +train_19265.png A small, round apple shown in a slight top‑down three‑quarter view, predominantly glossy red with orange‑yellow mottling and a faint darker blush, a short green stem/leaf at the crown, and a soft diffuse shadow on a plain pale background. +train_19745.png A glossy round red apple seen in a slight three-quarter, top-down view showing a bright white specular highlight and a short brown stem at the crown, smooth skin with a subtle yellowish blush and a small dark blemish on one side, set against a deep, out-of-focus dark background that casts a soft shadow beneath it. +train_19997.png A glossy, yellow-orange apple with a faint red blush and smooth skin showing a small dark stem depression at the top is shown in a three-quarter frontal view, slightly tilted toward the camera, resting against a warm, uniform orange gradient background with a soft shadow beneath and a blurred second fruit to the left. +train_20155.png A small, round apple viewed from a slight top-front angle shows a smooth, glossy pale yellow-green skin with a faint pinkish blush on one side, a short brown stem in a shallow stem cavity, a tiny dark speck near the lower surface, and a soft teal-blue background with a subtle cast shadow. +train_20159.png Two yellow-green apples with smooth, slightly glossy, lightly speckled skin—one showing a short stem and the other a small brown blemish—are viewed from a shallow top-front angle and sit touching on a dark, out-of-focus background. +train_20169.png A pair of small, spherical apples with smooth, glossy red skin and faint yellow blush, photographed from a slightly elevated front viewpoint resting against a dark green leaf background, each showing bright specular highlights and a short brown stem on the nearer fruit. +train_20339.png A small round apple seen from a slightly oblique top-front angle, its glossy smooth skin showing a warm red-to-orange gradient with yellow splotches and faint mottling, a bright specular highlight and a tiny dark blemish near the upper-left, casting a soft shadow on a blurred pale pink-beige background. +train_20402.png A small, round apple with smooth, glossy deep crimson-red skin and subtle darker mottling, a tiny brown stem in a shallow top depression, shown slightly tilted and viewed from above, resting on a neutral pale background with a soft shadow beneath. +train_20673.png A small round apple shown in a three-quarter top view against a dark background, its yellow‑orange skin heavily mottled with russet brown speckles and subtle gloss, a shallow stem cavity visible and a darker bruise‑like patch on one side. +train_20714.png A small glossy red apple with yellow-orange blush and smooth reflective skin, shown in a three-quarter top-front view revealing a tiny dark stem and a subtle brown speck, resting on a plain white surface that casts a soft shadow. +train_20738.png Glossy red apple with mottled yellow-orange patches and a small green stem nub, seen from a slightly above-front viewpoint showing the top curvature and bright specular highlights, resting against a dark nearly black background with a faint shadow and a lighter splotch on one side. +train_20889.png A yellow-green apple with a smooth, slightly waxy and faintly mottled skin, shown in three-quarter view resting on a neutral pale background, with a short brown stem, tiny brown speckles and a shallow stem indentation visible despite the low resolution. +train_20941.png A small glossy apple with deep red skin and a faint yellow-green blush near the stem, subtle darker red mottling and a short brown stem, seen from a slightly elevated front‑angle with the top tilted toward the camera, resting on a pale teal surface beside a pale off‑white edge and casting a soft shadow beneath. +train_21094.png A glossy pink-red apple viewed slightly from above and centered in the frame, with smooth shiny skin bearing a bright specular highlight, a short dark brown stem at the top, faint vertical color gradients and tiny darker speckles, set against a soft magenta-pink background. +train_21099.png A small, glossy deep-red apple with smooth, reflective skin and a bright specular highlight, shown in a slightly tilted three-quarter top-front view revealing a short brown stem and a single small green leaf, resting on a plain white background with a soft circular gray shadow beneath it. +train_21210.png A small glossy yellow-orange apple centered on a plain white background, shown slightly from above so its rounded top and tiny brown stem nub are visible, with smooth shiny skin, a subtle orange blush on one side, and a faint darker speck despite the image's low resolution. +train_21290.png A small, round, golden-yellow apple with a smooth, slightly glossy surface showing a faint orange blush and a tiny dark stem nub near the top, photographed from a slightly top-front angle against a plain white background with a soft shadow to its lower right. +train_21328.png Glossy round apple seen from a slightly front-left, top-tilted viewpoint, with smooth red skin blending to a yellow-orange patch near the crown, a short brown stem, a bright specular highlight and a soft drop shadow on a plain white background. +train_21399.png A glossy, deep red apple with smooth skin and subtle darker shading on its lower-right, shown from a slightly elevated frontal view with a short brown stem at the top, set against a uniform pale peach‑pink background. +train_21667.png A small round apple showing mottled deep-red and lighter pink patches with a slightly glossy, subtly dimpled skin, viewed in a three-quarter oblique angle with a short stem barely visible, sitting on a softly textured pale-pink surface with a faint shadow to its lower-right. +train_21725.png A small glossy red apple seen from a slightly elevated frontal angle, its smooth skin showing a bright white specular highlight and a faint yellowish blush on one side, sitting on a warm, softly blurred tabletop with muted reflections and indistinct darker shapes in the background. +train_21752.png A glossy, predominantly deep-red apple with a small yellow-green patch near the stem and a bright white specular highlight, seen in a slightly top‑angled three‑quarter view showing a short brown stem and a faint pale blemish on its side, resting on a soft, out‑of‑focus green background. +train_21781.png A glossy, predominantly red apple with a small yellowish blush and fine speckling, shown in a three-quarter top-front view revealing a short brown stem and a single bright green leaf, with a strong white specular highlight and soft shadow against a diffuse teal-green background. +train_21823.png A small apple viewed slightly from above and turned to show its top and side, with pale yellow-cream skin flushed with a pink-red blush and a glossy, smooth texture, a short central stem and a noticeable round brown bruise toward the lower left, set against a plain off-white background with a faint shadow beneath. +train_21870.png Glossy bright-red apple with smooth, unblemished skin and small white specular highlights, shown in a slightly top-front three-quarter view with a short brown stem and a single green leaf, sitting against a soft pale-pink background with a faint shadow beneath. +train_22165.png Small glossy apple seen in a slightly top‑three‑quarter frontal view, its smooth skin a deep red with orange gradients and a bright specular highlight near the upper left, a faint stem indentation and a tiny pale blemish on the surface, all isolated against a featureless dark background with a soft shadow beneath. +train_22324.png A small glossy red apple with a yellowish blush and a hint of green around a short brown stem, shown in a three-quarter top-side view with a bright specular highlight and smooth skin texture, set against a dark black background framed by a cyan-blue border with a soft blue patch at the lower right. +train_22491.png Slightly top-front view of a small, round, glossy red apple centered against a deep black background, with a bright specular highlight on the upper-left, a short brown stem, a faint yellow‑green blush near the top, and a subtle shadow beneath. +train_22545.png A single round apple viewed from a slight top-front angle, centered against a dark vignetted background, with smooth glossy red-orange skin that fades to a yellowish midtone, a bright specular highlight on the upper-left, a small darker blemish near the top-right, and a faint shadow beneath indicating it rests on a surface. +train_22768.png From a slightly elevated three-quarter view, the apple appears round and glossy with deep red‑orange skin mottled with yellow speckles and a bright specular highlight near the top, a short dark brown stem protruding upward and a small darker blemish on the lower side, all set against a warm, softly blurred red‑orange background. +train_23053.png A small matte pale-yellow apple with a faint orangey-brown blemish and a short dark nub at its upper-left, shown from a slightly elevated frontal viewpoint and casting a soft shadow to the lower right against a smooth teal-blue background. +train_23137.png A small, glossy apple shown in a three-quarter frontal view with a short brown stem, its skin a warm yellow-orange base heavily flushed with red and faint vertical streaking and speckling, a bright specular highlight and a tiny dark blemish on the lower side, set against a soft blue gradient background with a subtle shadow beneath. +train_23208.png A small, glossy yellow-orange apple viewed from a slight top-front angle, its smooth, subtly mottled skin showing a tiny brown stem stub and a small dark blemish near the top-right, set against a plain white background with a soft shadow beneath. +train_23278.png A small, glossy red apple with a yellow-orange blush and smooth, slightly reflective skin seen in a near-top three-quarter view showing a short brown stem off-center on top, a faint lighter vertical streak and a tiny dark blemish toward the lower left, resting against a plain white background with a soft shadow beneath. +train_23399.png A slightly top‑angled view of a small, pale yellow‑beige apple with smooth, matte skin, a short brown stem and a small dark bruise on its left side, sitting alone on a neutral light background with a soft shadow beneath. +train_23582.png Two small, round apples viewed from a slightly elevated frontal angle against a solid black background, with pale creamy-yellow skins flushed with soft pink-red blushes, faint speckling and a matte-to-satin texture, each topped by a short brown stem and slightly touching one another. +train_23780.png A glossy, round apple shown in a three-quarter frontal view with smooth yellow-green skin and a prominent red blush on the right, a short brown stem with a small dark-green leaf at the top, noticeable white specular highlights and subtle mottling, set against a dark background with a faint green halo/reflection beneath. +train_23856.png A glossy lime-green apple viewed from a slightly elevated frontal angle, with smooth, faintly speckled skin, a bright specular highlight on the upper-left, a short brown stem in a shallow top indentation, a small darker blemish on the lower-left flank, and a soft shadow on the matte black background. +train_23886.png A round apple with warm orange-red skin and subtle darker mottling, a glossy specular highlight and faint vertical shading, seen in a slightly top-front three-quarter pose with a small green leaf and short stem at the top-right, set against a uniform black background. +train_24053.png A glossy, predominantly red apple with faint pinkish highlights and smooth skin, viewed slightly from above at a frontal angle revealing a small dark stem nub near the top and a bright specular highlight on the upper-left, set against a blurred green background with a small out-of-focus brownish area at the lower-left. +train_24134.png A small, glossy red apple photographed from a slight top-front angle, its smooth skin showing a bright specular highlight, a short brown stem with a tiny green leaf at the crown, and a soft shadow on a plain white background. +train_24382.png A small, round yellow apple with a smooth, glossy surface and a bright specular highlight on its upper right, viewed slightly from above and centered in the frame with a tiny stem and soft shadow beneath against a blurred green (grass-like) background. +train_24458.png A small, round apple with smooth, glossy deep-red-to-crimson skin showing a bright white specular highlight and a subtle orange-yellow blush near the top, viewed slightly top-front so a short dark stem is visible, centered against a near-black background with a faint red halo and a darker shadowed lower-right side. +train_24717.png Glossy, round red-orange apple viewed from a slight top-front (three-quarter) angle showing smooth, shiny skin with bright specular highlights, a short dark stem at the crown, a small darker blemish on one side, and resting on a plain white background with a soft circular shadow. +train_24889.png A small, glossy apple displaying a warm red-to-orange gradient with yellow-green blush and smooth reflective skin that catches bright specular highlights, shown in a slightly top-front close-up with a short stem and a green leaf visible, set against a dark, softly blurred background. +train_24980.png A glossy, deep-red apple with subtle orange-red gradient and smooth reflective skin showing a bright white specular highlight near the upper-left and a small darker blemish by the stem, viewed from a slightly elevated frontal angle against a very dark, nearly black background with a faint soft shadow beneath. +train_25053.png A glossy golden-yellow apple with smooth reflective skin and a small brown stem angled slightly to the right, shown from a near top-front viewpoint against a plain white background with a soft shadow beneath, featuring a faint greenish tint near the stem and a tiny brown blemish on the upper-left side. +train_25084.png A small, glossy deep-red apple seen from a slightly elevated front/three-quarter view, with a short brown stem and a bright white specular highlight on its upper surface, resting on a smooth aqua‑teal background with a soft shadow beneath. +train_25208.png A small glossy red apple with faint yellow speckling and a short brown stem, shown in a slightly top‑front three‑quarter view, casting a soft shadow onto a uniform rose‑pink background and displaying a subtle specular highlight and a tiny surface blemish near the upper side. +train_25342.png A small, glossy deep-red apple depicted in a three-quarter frontal view with a bright white specular highlight and darker red shading, a tiny green leaf and short stem at the top, and slightly pixelated edges isolated against a uniform dark background. +train_25427.png A small, matte golden-yellow apple seen from a slightly elevated three-quarter/front view, with a short brown stem, faint brown speckles and subtle shading on its smooth skin, resting against a soft off-white/beige circular background. +train_25705.png A glossy red apple seen from a slightly elevated front viewpoint, showing a round silhouette with a short brown stem, a bright white specular highlight and a subtle yellowish blush on one side, set against a plain white background. +train_25768.png Glossy deep-red apple with an orange-yellow blush and a bright specular highlight, shown in a slightly top-front three-quarter view revealing its round curvature and a small dark stem with a tiny green leaf at the crown, resting against a dark red vignetted background with a faint shadow beneath. +train_25898.png A small smooth, glossy red-orange apple with a yellow blush and subtle darker shading, shown in a slight top-front three-quarter view revealing a short brown stem and a bright specular highlight on its upper-left, perched against a warm saturated red-orange background with a soft shadow beneath. +train_25902.png A slightly top-down, three-quarter view of a pale yellow-green apple with smooth, glossy skin, a short dark stem and a small brown blemish near the crown, resting on a soft blue, out-of-focus background with a faint cast shadow. +train_25979.png A small, pale golden-yellow apple with smooth, slightly matte skin and faint speckling, shown in a near-top three-quarter view revealing a short brown-green stem and a small brown blemish near the base, sitting on a plain white surface with a soft shadow. +train_26006.png A small round apple with glossy red-to-yellow gradient skin and a tiny dark stem with a green leaf attached, shown from a slight front-right viewpoint resting on a plain white surface with a soft shadow and a subtle darker blemish on its upper side. +train_26042.png Glossy orange-red apple with a smooth, slightly waxy skin showing a bright specular highlight and a small pale yellow-green stem/calyx at the top, viewed from a slightly elevated/top-down angle against a featureless dark background with subtle mottling of lighter yellow-orange tones visible despite the low resolution. +train_26115.png A small, round yellow-green apple with smooth, slightly speckled matte skin and a short brown stem, shown in a slight top-front view with a shallow top dimple and a tiny darker blemish toward the lower left, resting on a soft off-white background with a faint shadow beneath. +train_26247.png A glossy, predominantly deep red apple with a small yellow-green blush near the stem and bright white specular highlights, shown in a close-up three-quarter top-front view revealing a short brown stem and a tiny green leaf, resting against a dark, out-of-focus background with a faint green blur to the left and a small darker blemish on its lower right. +train_26320.png A small, round apple seen in a slightly angled top-three-quarter view shows a glossy, mottled pale-pink to rose-red skin with bright white specular highlights, a tiny dark stem in the shallow top depression, and rests against a soft pale blue‑gray background with a faint shadow. +train_26325.png A top-down view of a small pale green apple with smooth, slightly mottled skin and a distinct dark brown stem indentation near its center, showing a soft highlight and faint shadow against a neutral off-white background. +train_26340.png A pale green apple with a slight yellow tint and smooth, waxy skin showing faint speckling and a small darker blemish on its upper-left, pictured in a three-quarter top-front view with a short dark stem, resting on a neutral light-gray surface that casts a soft shadow to the lower right. +train_26361.png A small, smooth, deep-red apple with glossy specular highlights, a short brown stem and a single bright green leaf, seen in a slightly tilted top–three-quarter view against a plain white background with a faint shadow beneath, showing a lighter red gradient and a tiny darker blemish near the base. +train_26418.png Small, smooth, glossy apple appearing as a saturated cherry-red sphere with a bright white specular highlight and subtle darker shading toward the lower right, a tiny green stem/calyx at the top, viewed slightly from above against a uniform deep black background. +train_26488.png Glossy red apple with a yellow-orange blush around the stem, smooth skin showing faint vertical lighter streaks and a small dark blemish, shown in a three-quarter top-front view with a short stem visible, isolated on a plain white background casting a soft shadow. +train_26604.png A small, round apple viewed from a slightly elevated three-quarter angle showing warm orange-red skin with yellow-orange patches and subtle darker speckling, a short brown stem at the top, a soft glossy highlight and a faint shadow on a plain light background. +train_26702.png A glossy, bright red apple with a small attached green leaf and faint yellow blush, viewed from a slightly top-front angle revealing its rounded shape and specular highlights, set against a soft, out-of-focus warm green-yellow background that fades into darker shadow, with subtle surface mottling visible despite the low resolution. +train_26819.png A small, glossy deep-red apple with smooth, slightly variegated skin and a tiny brown stem, shown in a three-quarter top view casting a soft shadow on a plain white background, with a bright specular highlight and a faint yellowish patch near the crown. +train_27181.png A small, glossy red apple seen from a slight top-front angle, with smooth, shiny skin exhibiting bright specular highlights, a short brown stem and a tiny green leaf at the crown, a faint yellow-orange blush and a small dark blemish on one side, all set against a blurred solid reddish-pink background with a soft shadow beneath. +train_27272.png A small, round apple with glossy red skin mottled with yellow-orange, a bright specular highlight and a short dark stem angled up-left as the fruit tilts slightly right, resting on a neutral pale-gray background with a faint shadow and a small dark blemish on its lower-left surface. +train_27350.png A small, glossy, deep-red apple photographed from a slightly top-front angle, showing a bright specular highlight, subtle darker-red mottling and a short brown stem in a shallow stem indentation, set against a flat vivid pink background with a faint shadow underneath. +train_27355.png A glossy red-orange apple with yellow mottling and fine pale speckling, seen from a slightly elevated three-quarter front view with a short dark brown stem at the top, a subtle lighter blemish near the upper left, and a soft shadow on a plain off-white background. +train_27440.png A small round apple with glossy red-to-orange mottled skin and faint yellow undertones, viewed from a slight overhead angle showing a short brown stem and shallow calyx, resting among two similar apples on a plain white surface that casts soft shadows and reveals minor speckling and a few tiny dark blemishes despite the low resolution. +train_27572.png A glossy, golden-yellow apple viewed in a slightly tilted three-quarter pose against a solid black background, with smooth reflective skin showing a bright specular highlight on the upper-left, a subtle darker shadow on the lower-right, and a small short stem at the top. +train_27576.png A pair of yellow-green, slightly mottled matte fruits with teardrop (pear-like) shapes—one tilted forward revealing a short dark stem and the other upright behind—sit on a clean white/off-white surface casting soft shadows under even studio lighting, with small brown speckles and smooth skin discernible despite the low resolution. +train_27636.png A small, round apple with glossy red skin and subtle yellow-orange mottling and a bright specular highlight, seen from a slight top-front angle that reveals a short dark stem and faint surface blemishes, resting on a warm beige surface with a soft shadow. +train_27759.png A small, smooth pale yellow-green apple viewed slightly from above and at an angle, showing a glossy highlight on the upper-right, a warm orange-red blush on the left side, a tiny dark stem indentation at the top, and a soft shadow cast onto the flat teal-green background. +train_27990.png A small round apple shown in a slight top-three-quarter view with glossy smooth red-orange skin, a yellowish patch on the left, subtle speckled texture and a tiny dark blemish, a short brown stem at the top, set against a plain teal background. +train_28038.png Centered in a warm orange-red circular frame, the small round apple appears predominantly bright glossy red with a subtle yellow-orange blush near the upper right, a tiny brown stem nub at the top, smooth reflective skin with strong specular highlights and a few darker blemishes, viewed from a slightly elevated frontal angle and rendered with noticeable low-resolution pixelation. +train_28092.png A glossy, deep red apple with yellow‑orange speckling and a short brown stem, photographed in a slightly top‑down three‑quarter view with a bright specular highlight on the upper side and a faint pale patch near the stem, sitting against a soft pink, blurred cloth-like background. +train_28285.png A glossy deep-red apple with a small yellow-green blush near the stem and a bright specular highlight, viewed from a slightly elevated frontal angle and resting on a soft pink‑red background with a faint shadow beneath. +train_28316.png A small, round yellow-green apple with smooth, slightly glossy skin and a warm orange-red blush along one side, shown close-up from a slightly angled frontal view revealing a short brown stem and a faint top indentation, set against an out-of-focus cool blue-gray background with subtle texture and a couple of small dark blemishes on the fruit. +train_28361.png A small, nearly round glossy red apple with a warm yellow-orange blush near the crown, a short brown stem and a single green leaf, viewed slightly angled from the front and centered against a dark background with an orange halo, its smooth shiny surface showing a bright specular highlight and slight pixelation from low resolution. +train_28412.png A small, glossy round apple showing a warm red-to-orange gradient with a yellow-green tint near the top, viewed slightly from above to reveal a short brown stem and bright specular highlights on its smooth surface, set against a soft orange background with subtle shadowing. +train_28444.png Centered in a pale gray vignette, the apple appears round and slightly flattened from a top-three-quarter angle, its smooth glossy skin mottled deep orange-red with yellow-orange streaks and fine speckling, a small dark stem sitting in a shallow dimple and a soft specular highlight on the upper left. +train_28581.png A small, glossy deep-red apple with orange-red highlights and faint speckling, shown in a slightly top-front (three-quarter) view revealing a short brown stem and subtle top indentation, set against a clean white background and exhibiting a pronounced specular highlight and smooth skin despite the low resolution. +train_28648.png Two round apples occupy the frame in a slightly elevated three-quarter view, their smooth, glossy skin displaying a warm red-to-orange gradient with yellowish blushes and small dark speckles, shallow stem depressions and bright specular highlights, and soft shadows against a dark, neutral background. +train_28722.png A glossy golden-yellow apple with a warm orange blush, seen slightly from above revealing a short brown stem at the top, resting on a neutral off-white background with a soft shadow, its smooth reflective skin and faint surface irregularities visible despite the low resolution. +train_28813.png A small, round apple seen slightly from above and front with smooth glossy yellow-green skin, a warm orange-red blush on the upper-left, faint speckled lenticels and subtle mottling, a short brown stem at the apex, a visible specular highlight, and a soft pale background with a faint shadow beneath. +train_29187.png A glossy, mostly deep-red apple with a yellow-green shoulder and faint speckled mottling, viewed from a slightly elevated oblique angle showing its short brown stem and curved side, resting on a plain white plate that casts a soft shadow beneath it. +train_29211.png Glossy bright red apple with subtle darker shading, a small green leaf and short brown stem at the top, shown frontally with a slight rightward tilt, sitting on a plain white background with a soft gray oval shadow beneath, its smooth reflective surface and a pronounced white specular highlight visible despite the low resolution. +train_29275.png A small glossy deep-red apple with a smooth, slightly speckled skin and a yellowish blush near the crown, shown in a slightly elevated frontal view revealing a short brown stem and tiny green leaf, resting against a soft, out-of-focus pinkish background. +train_29399.png A glossy, smooth red apple with a yellow‑orange blush near the crown, a bright specular highlight and soft shading, shown three‑quarter front with a short brown stem and small green leaf at the upper right on a plain white background with a faint gray drop shadow. +train_29405.png A small glossy yellow-orange apple with a faint red blush and a tiny darker spot on one side, its smooth skin catching subtle specular highlights, shown at a slight top-front angle and sitting on a dark, out-of-focus background with a soft shadow beneath. +train_29582.png A small, glossy deep-red apple seen from a slightly top-right frontal viewpoint, its smooth shiny skin showing subtle specular highlights and a faint yellow-green patch, a short brown stem with a small green leaf attached, set against a soft out-of-focus cyan-blue background. +train_29895.png Two yellow-green apples, one slightly behind and to the right of the other, display smooth, slightly glossy skin with fine dark speckling, a few small brown blemishes and short brown stems, seen from a shallow top-front three-quarter view on a plain pale background with soft shadows underneath. +train_30026.png Two glossy lime-green apples are shown in a slightly elevated three-quarter frontal view, nestled side-by-side with short brown stems and bright white specular highlights, smooth skin with subtle darker-green shading, and a plain light/near-transparent background. +train_30064.png A glossy, predominantly red-orange apple with subtle yellow undertones and a small dark stem, viewed from a slightly top-front angle resting on a pale beige surface with a soft shadow beneath, showing smooth reflective skin and a tiny dark blemish near the top. +train_30172.png A small glossy red apple with a yellowish blush and a tiny brown blemish, shown in a slight three-quarter frontal view revealing its short stubby stem and bright specular highlights, sitting on a plain light background with a soft shadow beneath. +train_30241.png A glossy, bright red apple with smooth, reflective skin and a small white specular highlight, seen in a slightly tilted three-quarter frontal view with a short brown stem and a green leaf at the top, set against a plain white background with a faint soft shadow beneath. +train_30249.png A small, round apple viewed from a slightly top-front angle with glossy, mottled red-orange and yellow skin, fine speckling and a noticeable dark blemish near the lower-left, resting against a blurred green background. +train_30442.png A glossy deep-red apple with a bright specular highlight and a small darker blemish, shown in a slightly top-down three-quarter view revealing a short brown stem and faint green leaf, rests on a soft warm pink–peach background with a subtle shadow beneath. +train_30592.png A small glossy apple with deep red skin merging to orange-yellow on one side, a short stem and tiny green leaf at the crown, viewed from a slightly angled top-down perspective against a soft peach-pink background, showing a bright specular highlight and subtle mottled skin texture. +train_30621.png A small glossy deep-red apple viewed from a three-quarter frontal angle, its smooth skin showing a bright specular highlight and a tiny darker blemish, topped by a short brown stem with a single green leaf and set against a plain white background with a faint shadow. +train_30631.png Glossy orange-red apple with a yellowish blush and faint speckled mottling, viewed three-quarter from slightly above showing a small brown stem in a shallow top indentation and a bright specular highlight, set against a dark burgundy vignetted background. +train_30731.png Glossy, round red apple viewed slightly from above and centered in the frame, showing a smooth red-to-orange gradient with a pale yellow-green blush around the shallow stem cavity, a bright specular highlight on its upper-right surface and a small darker blemish near the top against a soft dark-gray vignetted background. +train_31007.png A glossy round apple with rich red and subtle yellow-orange shading and smooth skin, shown in a slightly top-front three-quarter view with a short brown stem and a small green leaf, set against a dark, blurred background and a bright specular highlight on its upper-left. +train_31020.png A small, round apple shown in a slightly tilted three-quarter view with smooth, glossy skin exhibiting a warm red-to-orange gradient and a pale yellow-green patch, a bright specular highlight, a short brown stem atop, and a faint shadow on a plain white background. +train_31066.png A slightly angled three-quarter view of a small, round apple showing deep crimson skin mottled with lighter red and faint yellow speckling, a glossy surface with a bright specular highlight and a short brown stem set in a shallow top indentation, against an almost black background with a soft reddish halo. +train_31139.png A glossy lime-green apple viewed slightly from above and front, with a small brown stem, a bright white specular highlight and smooth, subtly shaded skin, accompanied by a smaller out-of-focus green sphere and set against a deep black background. +train_31148.png A small round apple with warm yellow-orange skin and a reddish blush, seen from a slightly elevated frontal view showing a short brown stem and a glossy specular highlight, a tiny dark blemish near the top, and a soft shadow on the dark background. +train_31252.png A small glossy red-orange apple seen at a slight three-quarter angle with a short brown stem and a pale yellow-green blush near the crown, casting a soft shadow on a flat teal-green background, its smooth reflective skin showing a bright specular highlight despite the low resolution. +train_31301.png A small, glossy deep-red apple with a faint yellow blush near its center and tiny brown stem, shown from a slightly elevated three-quarter top view resting on a plain white surface that casts a soft shadow, with low-resolution visible light speckling and a smooth-but-imperfect skin texture. +train_31398.png A small, mostly yellow-green apple shown from a slightly elevated top-front angle, with smooth, mildly glossy skin, a tiny brown stem nub and a faint darker blemish near the top, gently resting on a plain white surface that casts a soft shadow beneath it. +train_31492.png A small, glossy red apple with a yellow‑orange blush near the top and a short brown stem, shown from a slightly elevated three‑quarter view against a plain white background with a soft lower‑left cast shadow, revealing smooth skin, a bright specular highlight and a few subtle surface blemishes. +train_31600.png A small, glossy neon-green apple is centered and viewed slightly from above against a deep black background with a soft green halo beneath, showing a bright white specular highlight on the upper-left, a short brown stem at the top, and a subtle darker shadow and tiny blemish on the lower-right of its rounded skin. +train_31697.png A small, glossy deep cherry-red apple seen from a slightly elevated, frontal angle showing its rounded silhouette and tiny brown stem, with a strong specular highlight on the upper-right, subtle light speckling and a darker shaded lower-left, set against a nearly black background. +train_31835.png A single small yellow apple with a smooth, slightly glossy skin and a faint green tinge, shown in a slight top-down view revealing a short dark stem and a bright specular highlight, sitting alone on a plain black background. +train_31966.png Two small, glossy deep-red apples sit side-by-side against a pitch‑black background, seen from a slightly elevated frontal view that reveals smooth, shiny skin with bright white specular highlights, short green stems, and subtle darker shading on the undersides. +train_32048.png A glossy, predominantly red apple with yellow-green tones around the stem, seen from a slightly elevated front angle showing a short dark stem and a small brown blemish on the upper side, resting on a plain white surface with a faint cast shadow. +train_32049.png Glossy, round red apple with a subtle yellow-orange blush near the top and smooth, shiny skin showing a bright specular highlight on the upper-left and a faint darker blemish on the lower-right, a short upright brown stem at the top, photographed in a slightly tilted frontal view against a plain white background with a soft shadow beneath. +train_32124.png A small, glossy deep-red apple with smooth skin and a bright specular highlight near the upper-left, shown in a slight top-front (three-quarter) view revealing a shallow top dimple and short dark-brown stem, sitting on a plain white background with a soft diffuse shadow beneath and subtle darker shading toward the lower side. +train_32128.png A low-resolution yellow-green apple seen from a slightly elevated three-quarter front view, with smooth glossy skin showing a bright specular highlight and gentle color gradient to darker green at the sides, a short brown stem with a tiny green leaf at the top, a subtle top dimple and shadowed underside, all set against a plain white background with a soft gray oval cast shadow beneath. +train_32139.png A small pale-yellow apple with smooth glossy skin and a faint orange blush on one side, shown in a three-quarter frontal view revealing a short brown stem with a single green leaf against a plain white background and a bright specular highlight indicating its shiny texture. +train_32159.png A close-up, slightly top-front view of three small, glossy crimson apples clustered against a deep black background, their smooth, reflective skin showing bright specular highlights, fine darker speckling, and a tiny stem with a shallow calyx visible on the foremost fruit. +train_32197.png A glossy, deep-red apple with faint yellow speckling and a small brown stem in its top cavity, viewed from a slightly elevated frontal angle as it rests on a pale round plate against a softly blurred warm-pink background, showing bright reflective highlights and a subtle surface blemish. +train_32233.png A small glossy red apple viewed from a slightly elevated front-side angle, with smooth, reflective skin showing a bright specular highlight and subtle darker red shading, a tiny brown stem at the top, and resting on a blurred green grassy background with a soft shadow beneath. +train_32404.png A mostly yellow apple with a warm orange blush on one side and a small dark stem, shown from a slightly elevated frontal view with smooth glossy skin and a faint top-left specular highlight, casting a soft shadow onto a plain white/gray background. +train_32447.png A small, glossy red-orange apple captured in a slightly tilted three-quarter frontal view against a deep black background, with smooth, reflective skin showing a bright specular highlight near the upper left, a yellow-orange shoulder at the top, a small dark blemish near the lower right, and a faint shadow beneath. +train_32507.png A small, glossy deep-red apple with smooth, reflective skin and a tiny green leaf beside a short brown stem, seen from a slight top-front angle with a soft shadow beneath against a warm orange-red gradient background. +train_32681.png A small, glossy deep-red apple viewed from a slightly elevated frontal angle revealing smooth, subtly gradient skin with bright highlights and a short dark brown stem, resting alone on a plain white background with a soft shadow beneath. +train_32714.png A small, glossy golden‑yellow apple with smooth, slightly waxy skin and a faint warm orange blush, shown from a slight front-right angle revealing a short brown stem and a single green leaf, sitting against a plain pale background with a soft shadow beneath. +train_32826.png Small, slightly elongated apple with pale yellow skin and a faint green undertone, a smooth glossy texture with a small dark blemish near the upper left and a short brown stem, shown in a slight top-down three-quarter view on a plain white background casting a soft shadow to the lower right. +train_33145.png A slightly oblong apple shown in a three-quarter side view, its warm red-to-yellow mottled skin with soft specular highlights and a small dark blemish near the top, resting on a pale uneven surface that casts a faint shadow against a darker upper-left background. +train_33208.png A small, round apple with mottled pinkish-red skin and a subtle glossy texture, shown in a slightly tilted three-quarter view resting on a smooth teal-blue surface with a soft shadow beneath, its tiny stem indentation and faint light speckling visible despite the low resolution. +train_33376.png An oblique top three-quarter view of a small glossy apple with warm red skin streaked with darker vertical red bands and a yellow‑green shoulder near the crown, a short brown stem, a subtle specular highlight and a small dark blemish on one side, set against a plain light‑gray background with a soft shadow beneath. +train_33492.png A single small yellow apple with smooth, slightly glossy skin bearing a bright top highlight and faint darker speckling, seen from a low frontal angle so its rounded face fills the center of the frame, resting on a muted gray surface with a soft shadow and a very dark, out-of-focus background. +train_33563.png A small glossy red apple viewed from a slightly elevated frontal angle, exhibiting a pink-to-deep-red gradient with a yellowish highlight and a tiny dark blemish, topped by a single green leaf at the upper-left and resting on a dark, out-of-focus background with a warm brown/orange surface beneath. +train_33632.png A small, glossy deep-red apple viewed from a slightly angled top-front perspective against a plain white background, with a short brown stem, a pronounced bright specular highlight, subtle darker mottling near the base, and slight pixelation from low resolution. +train_33686.png Two smooth, pale-yellow apples sit touching on a neutral off-white background, viewed from a slightly elevated frontal angle that reveals soft diffuse highlights and faint speckling on their skins, tiny brown stems (one with a small green leaf) and subtle cast shadows beneath. +train_33690.png A glossy, deep red apple with subtle lighter-red and yellowish patches and a small green leaf by the stem, shown in a slightly top-front three-quarter view against a plain white background, its smooth reflective skin catching highlights and casting a faint shadow with a minor darker spot on the lower right. +train_33748.png A small, round rosy-red apple with glossy, slightly mottled skin and a tiny dark stem nub, shown in a front three-quarter view with a soft highlight on its upper-left and a faint diffuse shadow beneath, set against a uniformly bright pink background that emphasizes its smooth texture despite pixelation. +train_33773.png Glossy deep red apple with a small green leaf and short brown stem seen in a slightly angled top-down (three-quarter) view, its smooth skin showing bright specular highlights and a faint darker blemish on one side, resting on a soft matte pinkish-red background with a subtle shadow beneath. +train_33801.png A glossy deep‑red apple with a small green leaf at its short stem and a faint lighter patch near the top, shown in a close, slightly angled three‑quarter view revealing smooth shiny skin with a few tiny dimples, set against a dark maroon textured background that emphasizes its specular highlights. +train_33950.png Three small round pale yellow-green apples with smooth, glossy skins and tiny brown stems are arranged in a shallow horizontal row on a bright white background, viewed from a slightly elevated frontal angle so faint highlights, soft under-shadows and pixelated edges are visible despite the low resolution. +train_33983.png A small, round pale yellow‑green apple with smooth, glossy skin and a bright specular highlight and short brown stem, shown in a slight top three‑quarter view and resting on a clean white background casting a soft gray shadow, with a smaller elongated green object (likely a leaf or second fruit) to its right. +train_34041.png A small, glossy red apple with an orange-red gradient and faint yellow speckling, shown in a slightly top-front three-quarter view revealing a short brown stem and shallow calyx indentation, set against a clean white background and displaying bright specular highlights and subtle surface mottling despite the low resolution. +train_34042.png A small round apple colored a warm red with subtle darker mottling and a soft glossy sheen, viewed from a slight top-front angle that reveals a short brown stem and a faint blemish near the crown, set against a plain white background. +train_34110.png Two small, round apples with glossy deep-red skin and brighter specular highlights are viewed from a slightly elevated front angle, nestled together with short dark stems visible, casting faint soft shadows on a plain white background. +train_34143.png A glossy, round apple shown in a slightly top-front three-quarter view with a small dark-brown stem, its skin displaying a warm gradient from pale yellow to pinkish‑red with subtle mottled speckles and a bright specular highlight, sitting against a soft blue gradient background with a faint shadow beneath. +train_34205.png A glossy, deep red apple with smooth, shiny skin and a yellowish specular highlight, viewed nearly front-on with a slight top-left tilt revealing a short brown stem and small green leaf, centered against a plain white background with a soft shadow beneath. +train_34254.png A small, nearly spherical apple with deep glossy red skin and subtle darker shading toward the lower hemisphere, viewed from a slightly top-front angle showing a short brown stem and a bright specular highlight on the upper surface, set against a uniform black background. +train_34567.png A small, glossy yellow-orange apple shown in a slightly tilted three-quarter view with a short brown stem and a single green leaf on top, smooth reflective skin with faint orange shading and a tiny dark blemish, set against a plain light-gray/white background with a soft drop shadow and a small blue square sticker near the lower-left. +train_34631.png A slightly angled frontal view of a small glossy red apple with a yellow‑orange blush near the top, subtle vertical streaking and a short stem, a bright specular highlight on the upper left and a small dark blemish on one side, set against a soft, blurred green background. +train_34660.png A small, glossy red apple with a yellow-green blush around the crown and tiny pale speckling, resting slightly tilted to the right so its short brown stem and top indentation are visible, illuminated by strong specular highlights that emphasize smooth skin against a vivid blue background. +train_34665.png A small, glossy, bright-red apple with a smooth surface and a faint yellow-orange gradient on one side, shown in a three-quarter top view with a short brown stem and a tiny green leaf, set against a dark, vignetted red circular background and rendered with pixelated highlights from the low resolution. +train_34871.png A small, glossy deep-red apple seen slightly from above and facing forward, with a smooth reflective surface showing a bright white specular highlight on the left, a short dark brown stem at the top center, and resting against a plain white background. +train_34921.png A pair of small, round, deep cherry‑red apples viewed from a slightly elevated frontal angle against a nearly black background, with smooth glossy skin showing bright white specular highlights, short green stems, faint darker shading where they touch, and a soft shadow beneath. +train_34952.png A glossy, deep red apple with smooth, slightly reflective skin and a short brown stem, shown in a three-quarter frontal view with distinct specular highlights and subtle vertical shading, resting on a plain white background with a faint soft shadow beneath. +train_35044.png The apple appears as a smooth, glossy yellow‑green sphere seen from a slightly elevated front‑left viewpoint, set against a plain white background with a soft shadow beneath, showing a short brown stem atop, a bright specular highlight on its upper‑right surface and a small dark blemish on the left side. +train_35137.png A smooth, glossy bright-red apple shown in a three-quarter frontal view with a small green stem/leaf at the top-right and a prominent white specular highlight, set against a deep black background that emphasizes its rounded shading. +train_35193.png A small, glossy golden-yellow apple seen almost front-on with a slight top-down tilt, featuring smooth shiny skin with a bright specular highlight, a short brown stem in a shallow dimple, subtle vertical shading, and a soft shadow against a uniform warm orange-brown circular background. +train_35204.png A small, smooth, glossy golden-orange apple shown from a slightly elevated frontal view with a bright specular highlight, a short stem and single small green leaf at the top, and a faint cast shadow on a soft, dark gray vignetted background. +train_35223.png A close-up, slightly elevated frontal view of a round golden-yellow apple with smooth, slightly glossy skin showing a small orange blush on one side and a short dark stem at the top, resting on a soft-focus green grassy background with a faint shadow beneath. +train_35230.png A small, round glossy apple—predominantly pinkish-red with a faint yellow blush near the stem and a bright specular highlight—seen from a slightly elevated frontal angle showing a short brown stem, resting on a plain white background with a soft shadow beneath despite the image's low resolution. +train_35389.png Viewed from a slightly elevated oblique angle, the apple is predominantly deep red with an orange-yellow blush and faint pale speckling on slightly glossy, uneven skin, showing a short brown stem and a small dent/bruise on one side while resting on a plain light background with a soft shadow beneath it. +train_35502.png A small glossy pinkish-red apple seen from a slightly elevated frontal angle, showing smooth reflective skin with a bright white specular highlight and a tiny green leaf at the stem, set against a saturated bluish-purple blurred background with a subtle shadow beneath. +train_35653.png A small round apple with glossy red-orange skin mottled with yellow blush and a faint darker stem indentation, shown in a slightly top-front view with a bright white specular highlight on the upper-left and set against a uniform dark bluish-gray background creating a soft halo beneath it. +train_35665.png A deep burgundy-red apple viewed front-on with a short brown stem pointing upward, its smooth glossy skin showing faint pale speckling and a small lighter blemish on one side, set against a plain white background with a soft shadow beneath. +train_35739.png A slightly tilted three-quarter top-down view of a glossy, smooth red apple with a yellowish blush and fine pale speckled lenticels, a small pale blemish near the upper left and a short brown stem at the crown, set against a dark, grainy bluish-black background. +train_35849.png A small, glossy deep-red apple with orange-yellow highlights and subtle mottled skin seen in a three-quarter top-down view revealing a short brown stem, sitting on a dark blurred surface with a soft cast shadow and a small darker blemish on its lower-left side. +train_35908.png A small, bright green apple with smooth, slightly speckled glossy skin and a subtle highlight, shown from a slight top-front angle revealing a short brown stem and tiny attached leaf, sitting against a plain white background with a soft gray shadow beneath. +train_35959.png A small, glossy deep-red apple with subtle orange-yellow undertones and a tiny brown stem, shown in a slightly top-down three-quarter view on a neutral pale background with a soft shadow, its smooth reflective surface punctuated by a small dark blemish near the upper-right. +train_35963.png A glossy red-orange apple viewed from a slight top-down three-quarter angle, its smooth skin showing a bright specular highlight and a small pale yellow patch near the top, resting against a dark background framed by a thin red circular rim that suggests a dish. +train_35971.png A close-up, top-three-quarter view of a small, smooth, glossy apple with dominant deep red skin blending into a warm yellow-orange shoulder, a tiny brown stem nub at the crown and a faint dark blemish near the top, perched on a fingertip against a softly blurred warm-toned background. +train_36172.png A small pale yellow-green apple with smooth, slightly glossy skin and a faint brown spot on its right side, viewed from a slightly elevated frontal angle and resting against a dark, nearly black background with a soft shadow beneath. +train_36323.png A three-quarter/top-down view of a small, round apple with glossy, smooth skin—predominantly rosy red with a pale yellow-green blush and subtle mottling, a short brown stem at the crown, and a darker shadowed area on one side—set against a dark, blurred greenish background. +train_36391.png A small, slightly flattened round apple viewed from a slight top-front angle, its glossy skin displaying a red-to-yellow gradient with bright specular highlights, a short brown stem and a faint darker blemish near the crown, and a soft shadow on an otherwise plain white background. +train_36481.png A glossy, deep-red apple with subtle darker mottling and a bright specular highlight, shown in a slight three-quarter top-side view revealing a short brown stem with a single green leaf, resting on a plain pale background with a soft gray shadow beneath. +train_36535.png A small, glossy deep-red apple with smooth skin and a pale yellow-orange blush on one side, shown in a three-quarter, slightly top-down view resting against a dark, featureless background with a short brown stem, a small green leaf at the crown, and a bright specular highlight that emphasizes its round form. +train_36551.png A glossy, deep-red apple with smooth, reflective skin and a short dark brown stem, seen from a slightly elevated three-quarter frontal angle against a dark vignetted studio background with a soft shadow and faint reflection beneath, showing minor vertical color variation near the crown despite the low resolution. +train_36562.png A small glossy red apple with a warm orange-yellow blush and smooth, slightly reflective skin, seen from a slightly elevated frontal viewpoint showing a short brown stem and gentle specular highlights, resting centered on a plain white surface with a soft circular gray shadow underneath. +train_36693.png A small, glossy deep-red apple with a smooth, slightly reflective skin and a short dark brown stem, shown in a close three-quarter frontal view against a plain pale gray background, with a bright specular highlight near the upper right and a subtle darker shadow toward the lower left. +train_36817.png A small, glossy apple seen from a slightly above frontal three-quarter view, predominantly bright red with an orange-yellow blush near the crown, a strong specular highlight and a small dark blemish by the stem, resting against a soft, out-of-focus green foliage background. +train_36841.png Glossy, round apple with deep red-orange skin mottled with yellow and faint speckling, viewed slightly from above revealing a short dark stem and a bright specular highlight, resting against a soft warm pink–peach blurred background with a subtle shadow beneath. +train_36863.png Two small, glossy red apples—each with bright specular highlights, a faint yellow-green blush and subtle mottling—sit on a white plate seen from a slightly elevated three-quarter view, the nearer apple showing a short dark stem and soft shadow against a muted beige background. +train_37056.png A small, glossy red apple seen from a slightly elevated three-quarter view showing its round profile, a tiny brown stem with a small green leaf, a bright white specular highlight and smooth skin with a deep crimson-to-orange-red gradient, set against a uniform dark/black background with a faint halo and minimal shadow beneath. +train_37334.png A single glossy, deep magenta-pink apple viewed in a slightly top-front three-quarter pose against a uniform black background, with smooth reflective skin showing strong specular highlights, a short dark stem at the crown, subtle darker shading on one side and a small yellowish patch near the lower curve. +train_37365.png Two small, glossy deep-red apples sit side-by-side on a plain white background in a near three-quarter frontal view, each showing a short brown stem, smooth reflective skin with bright specular highlights and faint darker mottling visible despite the low resolution. +train_37402.png A glossy yellow-green apple shown in a slightly three-quarter frontal view with a short brown stem and small green leaf, a bright specular highlight and subtle darker shading on the lower right, set against a warm rounded-square orange-yellow background. +train_37763.png A glossy deep-red apple with a subtle darker blush and smooth reflective skin, shown in a slight three-quarter/top-side view resting on a white gradient surface with a faint oval shadow, a short brown stem and a small dark blemish near the crown visible despite the low resolution. +train_37772.png A small round glossy yellow-orange apple with smooth reflective skin and a faint red blush, shown in a three-quarter frontal view resting on a warm monochrome yellow background, with a short brown stem, a single green leaf at the crown, and a soft shadow beneath. +train_38100.png A small, glossy red apple with darker red mottling and a short brown stem is shown in a slightly angled top-front view resting on a plain white surface, casting a soft grey shadow and displaying subtle highlights and slightly pixelated edges. +train_38163.png A small, glossy yellow apple is shown in a three-quarter view with a short brown stem at the top, smooth reflective skin with a bluish specular highlight and a tiny dark blemish on the lower-left side, placed against a plain white background. +train_38278.png A glossy, round red apple shown head‑on with smooth, shiny skin, a bright white specular highlight on the upper-left, a short brown stem at the crown, subtle darker shading toward the lower-right, and a plain black background with a faint red halo. +train_38420.png Glossy red apple with orange-yellow blushes and a small brown stem seen in a three-quarter view, resting on a dark gradient background with a soft circular shadow beneath, showing clear specular highlights and slight surface mottling despite the low resolution. +train_38482.png A glossy, round apple seen slightly from above and turned to show a red-orange blush over a yellow base with faint vertical streaks and a small dark blemish near the stem, resting on a dark matte surface with a soft shadow beneath. +train_38525.png A small, glossy, mottled red-orange apple seen in three-quarter view, resting on a muted green surface with a softly blurred darker green background, showing a bright specular highlight on its upper-left curve and a faint darker dimple near the top where the stem would be. +train_38620.png A small pinkish-red apple with smooth, slightly glossy skin showing a pale circular highlight and faint speckling, seen in a slightly tilted top-down three-quarter view revealing a short green stem or leaf, resting against a uniform cool bluish‑gray blurred background. +train_38724.png A pale yellow-green apple with smooth, slightly mottled skin and a faint reddish blush on one side, shown in a three-quarter top view revealing a short brown stem and minor speckling, resting on a soft, uniformly pale-green background with a subtle cast shadow. +train_38748.png A slightly desaturated green apple viewed from a low oblique/top angle, centered on a neutral pale-gray background, showing a small brown stem, a glossy highlight on its upper-left, subtle darker speckling or a small bruise on the lower-right, and a soft shadow cast to the lower-right indicating top-left lighting. +train_38787.png Centered in the frame, the apple appears as a small, round fruit with deep glossy red skin graduating to an orange-yellow blush near the top, smooth reflective texture marked by bright specular highlights and faint darker speckling, viewed from a slightly elevated three-quarter angle showing a short brown stem, set against a dark background with a teal halo and a soft shadow beneath. +train_38908.png A glossy deep-red apple with a short dark stem and a small pale spot on one side, seen from a slightly top-front angled view against a dark greenish-black blurred background with a bright specular highlight on its surface. +train_38934.png Small round apple with predominantly bright yellow, slightly orange-blushed glossy skin and a faint specular highlight, seen from a slightly elevated frontal-right viewpoint showing a short brown stem with a tiny green leaf, resting on a clean white background with a soft shadow beneath and a small dark blemish near the fruit's midline. +train_38950.png A small, nearly spherical apple with deep glossy cherry-red skin and a lighter orange-red wash, a bright specular highlight and a faint darker blemish near the top, viewed from a slightly elevated three-quarter angle that reveals a short brown stem, set against a dark green–black blurred background. +train_39278.png A small glossy red apple with a pale yellow patch near its crown and a short brown stem, shown in a slightly tilted three-quarter view against a plain white background with a soft cast shadow, its smooth reflective skin and a minor blemish visible despite the low resolution. +train_39303.png A small, glossy red apple with yellow-orange undertones and faint speckling, shown in a slightly elevated three-quarter view with its short stem angled upward, resting on a dark, out-of-focus background that casts a soft shadow beneath and a bright specular highlight on the fruit. +train_39318.png A small, glossy red apple with a short brown stem and a subtle orange-yellow blush on one side, shown in a slightly top-front angled view against a flat turquoise-blue background, its smooth skin catching a bright specular highlight despite the low resolution. +train_39404.png A small, glossy golden-yellow apple with smooth skin, a short brown stem and a bright specular highlight on its upper-right, shown slightly tilted forward on a plain warm beige background with a soft shadow to the lower-left and a subtle darker patch near the bottom-right. +train_39462.png A small, glossy red apple with pinkish highlights and a slightly darker crown, shown in a three-quarter, slightly top-down view against a dark, out-of-focus background, its smooth skin marked by a visible specular highlight and a tiny stem stub. +train_39893.png A glossy, predominantly bright red apple with a pale yellow‑green shoulder and a small dark blemish near the top, shown in a slightly angled top‑three‑quarter view with a short stem and subtle specular highlights, resting on a neutral white background with a soft shadow beneath. +train_39949.png A slightly top-right three-quarter view of a smooth, glossy yellow-green apple with a short brown stem, faint reddish blush, small dark speckles and a tiny blemish near the upper surface, set against a deep, out-of-focus dark background with a soft shadow beneath. +train_40036.png Centered in the frame, the apple appears as a glossy deep-red fruit with yellow‑orange mottling and faint vertical streaks, shown in a slightly top‑down three‑quarter view revealing a small dark brown stem at the crown and a soft shadow on a plain white background. +train_40167.png A glossy, deep-red apple with a small brown stem viewed slightly from above in a three-quarter pose, showing a bright specular highlight and subtle orange-yellow tint near the top, a faint darker blemish on the lower right, and resting on a plain white background with a soft gray shadow beneath. +train_40264.png Two small, smooth, pale pink-to-rose apples viewed from a slightly elevated frontal angle, touching side-by-side with subtle glossy highlights, tiny dark stems at the tops, faint mottling near the cores, and a plain white/gray background with a soft shadow beneath. +train_40274.png A small glossy red apple viewed from a slightly elevated frontal angle, its smooth skin showing a bright white specular highlight at the upper-left, a tiny dark stem at the top center, subtle darker shading on the lower left, and resting against a plain white background with a faint soft shadow. +train_40419.png A glossy, mostly red apple with a yellow-orange blush near the top, smooth skin showing a bright specular highlight, a small brown stem with a single green leaf and a faint darker blemish on one side, photographed from a slightly elevated frontal angle against a uniform pale-green background. +train_40446.png Round apple shown in a slightly angled top–three‑quarter view, with a warm gradient of deep crimson blending into golden yellow near one side, glossy highlights and faint brown speckling on the skin, a small dark stem remnant at the crown, and mildly pixelated edges against a plain white background. +train_40475.png A glossy, predominantly red apple with orange-yellow blushes and subtle light speckling, shown in a slightly top-front three-quarter view exposing a short brown stem and a distinct bright specular highlight, set on a dark, warm-toned surface that suggests wood. +train_40486.png A small round apple with smooth glossy pale coral-pink skin showing a darker rosy blush on one side and a bright specular highlight near the upper left, viewed in a three-quarter frontal pose with a short brown stem and a faint shadow beneath against a uniform muted pink background, with a tiny dark blemish near the stem visible despite the low resolution. +train_40598.png A glossy deep-red apple seen from a slightly elevated three-quarter view, its smooth, reflective skin marked by bright specular highlights and a short stem at the top, resting on a pale, neutral surface with a smaller yellow-orange apple and a green leaf partially visible behind it. +train_40607.png A small, round apple of warm golden-yellow with a faint orange blush and smooth, slightly glossy skin, shown in a three-quarter top-front view with a short brown stem and tiny green leaf, lit from the upper-left casting a soft shadow on a plain white background and a subtle darker spot near its lower side. +train_40641.png Glossy golden-orange apple shown from a slight top-front three-quarter view against a plain white background, with smooth shiny skin featuring a bright specular highlight on the upper-left, a small brown stem with a single green leaf, and a darker shadowed area toward the lower-right. +train_40715.png A small, glossy deep-red apple photographed from a slightly top-front three-quarter angle, with smooth, reflective skin showing a bright specular highlight, a short brown stem at the crown, a subtle darker patch on one side, and a faint shadow on a plain white background. +train_40796.png A glossy deep-red apple with maroon shading and a short brown stem, shown in a slightly off-center three-quarter/top-down view against a plain white background with a soft shadow beneath, bearing a bright specular highlight and a faint dimple/blemish on the near side visible despite the low resolution. +train_40928.png A glossy deep red apple with lighter yellow-red patches and faint speckling, shown in a three-quarter top-front view revealing a short brown stem and a small green leaf, bears a bright specular highlight and subtle surface dimples and casts a soft shadow on a smooth pale-pink background. +train_41172.png A glossy, predominantly red apple with a small yellow-orange blush near the upper-right, a short dark stem, and bright specular highlights, shown in a slightly tilted three-quarter view revealing its round shape and shallow top dimple, sitting on a pale pinkish‑beige surface that casts a soft shadow beneath it. +train_41242.png A glossy red apple with a faint yellow blush and small brown stem, shown in a slightly tilted three-quarter view revealing smooth, shiny skin with a bright specular highlight and a tiny dark blemish, set against a dark reddish, cloth-like background. +train_41248.png A glossy deep-red apple shown in a three-quarter top-front view on a plain white background, with smooth reflective skin featuring a bright specular highlight, a short dark stem at the upper-left, and a small darker blemish near the lower-right. +train_41259.png A glossy, nearly circular pink-red apple seen from a slight top-front viewpoint with a small green leaf and short brown stem at the crown, smooth shiny skin showing a prominent white specular highlight and darker shading on the lower-right, set against a solid bright magenta background with a thin golden rim around the fruit. +train_41558.png A small, round apple seen slightly from above and centered in the frame, with mottled pale pinkish-red skin interspersed with cream-yellow patches and faint vertical streaks, a tiny central stem indentation and glossy specular highlights, casting a soft shadow on a muted teal-blue background. +train_41582.png A small, pale yellow–cream apple with smooth, slightly matte skin and faint brown speckling, a tiny dark stem indentation at the top, shown in an oblique top-down view resting on a warm light-tan textured surface (likely wood or paper) with a soft shadow to its lower right. +train_41664.png Glossy, round red-orange apple with mottled yellow-orange highlights and faint speckling, viewed slightly from above so the short brown stem and small green leaf are visible, centered against a dark vignetted background and showing a smooth, reflective skin. +train_41754.png A small, round apple shown in a slightly tilted three-quarter top view, its smooth glossy skin a deep red with a faint orange-yellow blush and subtle darker mottling, a bright specular highlight and a short brown stem at the crown, set against a soft pale pink gradient background with a tiny dark blemish near the upper edge. +train_41774.png A small, glossy red apple is shown from a slightly elevated frontal view, its smooth skin exhibiting darker red gradients and a concentrated white specular highlight, a short brown stem protruding from the top, and a faint soft shadow beneath it on a plain white background despite the image's low resolution. +train_41798.png Viewed slightly from above, the image shows a small, glossy deep-red apple with a bright specular highlight and a short brown stem in a shallow dimple, faint yellow-green tint near the crown and a small dark blemish, resting on a dark magenta–purple background that casts a soft shadow to the lower right. +train_41819.png A glossy deep‑red apple with a small brown stem and a strong white specular highlight on its upper-left, shown in a three‑quarter top‑front view resting against a soft, out‑of‑focus gray‑green background with faint foliage and a subtle shadow beneath, its smooth shiny texture and a small darker blemish on the lower right visible despite the low resolution. +train_41947.png A small, round apple shown in a slightly top-three-quarter view, predominantly glossy deep red with an orange-yellow blush and faint darker mottling, a short brown stem at the crown, a subtle pale blemish on one side, and a soft shadow on a plain white background. +train_41956.png A glossy, deep red apple shown in a slightly tilted top-three-quarter view with a bright white specular highlight and subtle yellowish mottling near the crown, a small green leaf/spot at the stem, and a soft shadow beneath it centered on a smooth vivid magenta-pink background. +train_42077.png A small, glossy deep-red apple with a short brown stem and a faint yellowish highlight near its top, seen from a slightly elevated frontal angle resting on a plain white surface that casts a soft shadow to its right and showing a subtle darker red patch on one side. +train_42117.png A small, round apple occupies the center of the frame with smooth, glossy skin showing a warm gradient from deep cherry red to orange-red, a bright specular highlight on its upper-right curve, a short dark stem at the top, and a soft shadow beneath against a uniform black background. +train_42162.png A small, round apple centered against a solid black background and seen slightly from above, with smooth, glossy deep red-to-burgundy skin, a bright white specular highlight near the upper right, a tiny dark brown stem stub at the top, and gentle darker shading toward the left and bottom. +train_42285.png An orange-red, glossy apple with smooth, slightly mottled skin and a short dark stem, seen from a slightly elevated frontal angle showing a bright specular highlight and a small yellow blush, resting on a soft warm beige background with a faint shadow beneath. +train_42441.png A glossy, bright red apple photographed in a three-quarter frontal pose on a plain white background, with smooth reflective skin, subtle darker shading toward the lower left, a short brown stem with a single green leaf at the top-right, and a small specular highlight on the upper surface visible despite the low resolution. +train_42631.png A smooth, glossy cherry-red apple with a small greenish-brown stem and a bright specular highlight, shown in a slightly above three-quarter/front-left view that reveals a subtly darker, shadowed lower side and a tiny dark blemish, set against a saturated pink background. +train_42660.png A small round apple viewed at a slight top-front three-quarter angle against a plain white background, with smooth glossy skin mainly deep red blending into a yellow-orange patch near the crown, a short brown stem, and a faint darker blemish toward the lower left. +train_42717.png A nearly head-on, slightly top-tilted glossy deep-red apple with smooth, reflective skin and a small brown stem at the crown, lit to show a bright specular highlight and a subtle lower-right shadow, set against a uniform teal-green background and showing a faint pale spot near the stem despite the low resolution. +train_42780.png A small, smooth glossy red apple viewed slightly from above and rotated forward, with a bright specular highlight on its upper-left surface, a short brown stem at the crown, subtle darker red shading toward the lower-right, and a deep black uniform background that makes its round silhouette stand out. +train_42834.png A small, glossy red apple with yellow-orange blush and fine dark speckling, shown in a slight top three-quarter view revealing a short brown stem and a single green leaf, resting against a plain white background with a faint shadow beneath. +train_42847.png A glossy, round apple seen from a slight top‑three‑quarter angle with predominantly deep red skin mottled with orange‑yellow patches and tiny darker speckles, a short brown stem at the crown, and a soft shadow on a pale circular background. +train_42957.png A cluster of three small, glossy, bright cherry‑red spherical fruits is shown from a slightly elevated oblique view against a plain white background, their smooth surfaces marked by strong white specular highlights, subtle darker shading toward the rims, close overlapping contact, and no visible stems. +train_43179.png A glossy, round golden-yellow apple seen from a slightly oblique frontal view, exhibiting a bright top-left specular highlight and smooth reflective skin with subtle darker shading at the lower right, topped by a short brown stem and a small green leaf angled to the upper right, set against a plain white background with a faint green halo and soft drop shadow. +train_43202.png A small, glossy, bright cherry-red apple viewed from a slightly top-front three-quarter angle—showing a short brown stem, a strong white specular highlight and a darker red blemish on the lower-left side—rests against a deep black background with a faint shadow beneath. +train_43210.png A small, round apple of deep glossy red with subtle darker maroon mottling and smooth skin, shown from a slightly angled top-front viewpoint resting on a clean white background with a soft shadow beneath and a tiny stem nub plus a bright specular highlight visible despite the low resolution. +train_43216.png A glossy red-orange apple shown in a three-quarter view with a short brown stem and single green leaf, smooth reflective skin with bright specular highlights and a small blue sticker-like mark on the lower-left, resting against a plain white background with a faint soft shadow beneath. +train_43219.png A small, round apple shown slightly from above and a touch to the front, with warm orange-red skin that appears smooth and glossy with a strong central specular highlight, subtle darker shading along the lower-left edge and a tiny blemish near the bottom, set against a plain white background. +train_43363.png A small glossy golden-yellow apple with a faint orange-red blush near the top and a short upward-tilted stem, shown in a slightly off-center frontal pose against a soft white/cream background, its smooth waxy skin catching a bright top-left specular highlight and bearing a tiny brown blemish near the lower right. +train_43530.png A small round apple seen in a slight top-front three-quarter view, with glossy deep red skin mottled by a faint yellow-orange blush near the stem, a tiny green stem nub, a bright white specular highlight and a small dark blemish on its lower-right, resting on a pale neutral background that casts a soft shadow. +train_43575.png A pale green apple with a slight yellow tint and smooth, gently reflective skin, seen from a slightly elevated frontal angle showing its short dark brown stem and rounded form, sitting on a plain white background with a soft gray shadow and a small dark blemish near the lower-right surface. +train_43584.png A small, spherical apple is shown in a slightly top-down frontal view, its smooth, glossy skin a warm golden-yellow with a subtle orange gradient, a tiny brown stem nub and faint blemish at the top, a strong specular highlight on the lower-left and a soft circular shadow/vignette against a dark gray background. +train_43691.png A small glossy red apple with a yellow-orange shoulder, faint light speckling and a tiny green stem, seen from a slightly elevated top-side angle and casting a soft shadow while resting on a warm brown wooden surface. +train_43946.png A small glossy red apple with a yellow‑orange blush and faint speckled skin, shown in a slight side view revealing a short brown stem and a tiny green leaf, resting against a muted bluish‑gray background. +train_43994.png A small, glossy deep-red apple viewed slightly from above and centered on a plain white background, showing a bright specular highlight on its upper-right, a short brown stem at the top, subtle darker maroon shading on the lower-left, and a soft gray shadow beneath. +train_44075.png A glossy deep-red apple with subtle orange-red gradients and smooth, slightly reflective skin, shown upright in a three-quarter frontal view with a short brown stem and a small green leaf at the top, resting on a plain white background with a bright specular highlight on its upper surface and a faint shadow beneath. +train_44077.png A single small, pale green-yellow apple with smooth, slightly glossy skin and a faint brown speckle, shown in a three-quarter frontal pose resting against a dark, out-of-focus background with a lighter gray area to the right and a soft shadow beneath, the short stem area and subtle top indentation discernible despite the low resolution. +train_44150.png A small, round apple of warm yellow-gold with a subtle orange-red blush on one flank, smooth glossy skin with bright specular highlights and a tiny brown stem, shown in a slightly angled top three‑quarter view against a dark green blurred background and bearing a faint dark blemish near the lower right. +train_44180.png A small round apple with mottled orange-red skin and a pale yellow blush, shown in a slightly angled top-front view that reveals a shallow stem cavity and a small darker blemish on the lower-right, resting on a warm peach-toned flat background with diffuse lighting that accentuates its smooth, subtly speckled texture. +train_44327.png A glossy deep-red apple with an orange-yellow blush on one side, seen in a slightly elevated three-quarter view revealing a short brown stem and bright specular highlights, resting on a white surface with a soft shadow beneath. +train_44364.png A glossy deep-red apple with subtle orange-yellow speckling and a short brown stem, tilted slightly forward to show both front and right-side curvature, lit from the top-left producing a bright specular highlight and soft shadowing, set against a plain black background. +train_44429.png Glossy deep-crimson apple with subtle darker mottling and a small brown stem, shown in a slightly tilted oblique top-front view resting on a dark maroon background with a soft shadow beneath, the low-resolution image still revealing a bright specular highlight and a faint flattened contour. +train_44450.png A small, round apple with glossy red skin mottled with yellow-orange patches and a tiny dark stem, viewed from a slightly elevated frontal angle resting on a deep red, softly textured background, showing bright specular highlights, a shallow top indentation and subtle surface blemishes despite the low resolution. +train_44725.png A glossy red-orange apple with yellow blushes and a bright white specular highlight, shown in a slightly angled three-quarter/top view revealing a short brown stem and tiny green leaf, set against a smooth warm peach-pink background with subtle vignette and noticeable low-resolution pixelation. +train_44972.png Glossy deep-red apple with subtle darker maroon mottling and a bright specular highlight, seen from a slightly elevated frontal angle showing the rounded top and side, resting on a dark bluish surface with a soft shadow/reflection and a tiny brown stem nub at the top. +train_45045.png A slightly glossy, predominantly red apple with a small brown stem and a pale yellow-green patch near the top, shown in a top-front three-quarter view against a bright pink textured fabric background, exhibiting smooth skin with subtle specular highlights and a soft shadow beneath. +train_45077.png A small, glossy crimson apple with smooth, shiny skin and a bright specular highlight and tiny brown stem is viewed slightly from above and off-center, resting on a plain light background with a soft cast shadow and a faint darker patch near its top. +train_45096.png A smooth, glossy orange-red apple shown in a slight top-front three-quarter view against a muted teal background, with a bright specular highlight on the upper right, a darker blush toward the lower-left and a tiny stem/blemish visible despite the low resolution. +train_45171.png A glossy, deep red apple shown in a close-up three-quarter frontal view with bright white specular highlights, a small yellow-green blush and shallow stem indentation near the top, faint darker mottling on otherwise smooth skin, and a smaller similar apple partially visible to the right against a matte black background. +train_45317.png A glossy yellow-green apple with smooth, waxy skin and a small attached green leaf and short stem, viewed from a slightly elevated frontal angle that reveals a subtle brown blemish on its lower side and a bright specular highlight, sitting on a clean white background with a soft shadow beneath. +train_45370.png A small, glossy apple viewed from a slightly tilted three-quarter top angle, displaying warm yellow-orange skin with a red blush on the right, a tiny green stem nub in the crown, a bright specular highlight on the upper-left and a faint darker blemish near the center, set against a deep nearly black background. +train_45375.png A glossy, round apple viewed from a slightly overhead three-quarter angle, its skin mottled orange-red with yellow undertones, faint darker speckles and a small green-brown stem at the top, resting on a soft white surface with blurred blue and orange shapes in the background and a strong specular highlight with a shadowed underside. +train_45466.png A small, deep burgundy-red apple with smooth, somewhat glossy skin showing subtle lighter highlights and a tiny darker blemish, viewed slightly front/three-quarter so the short dark stem and a pronounced vertical indentation separating two lobes are visible, set against a plain white background with a faint shadow beneath. +train_45496.png A small, glossy deep-red apple with faint yellow mottling and a short dark stem at the crown, viewed slightly from above and three-quarters frontally on a soft pale-pink/peach background with a subtle shadow beneath, its smooth reflective skin showing a few bright specular highlights and a tiny dark blemish near the top. +train_45616.png A cluster of three small, glossy teal-aqua apples viewed from a slightly elevated frontal angle with one apple prominent in the foreground and two behind, exhibiting smooth, reflective skin with bright specular highlights and a few faint darker blemishes, sitting on a uniform pale blue surface that casts soft diffuse shadows. +train_45682.png A small yellow-green apple with matte, slightly speckled skin and a noticeable brown bruise near its upper-right side, shown in a shallow three-quarter top-down view casting a soft shadow to the lower right on a pale, subtly textured cloth background. +train_45717.png A pair of small, glossy deep-red apples viewed from a slightly elevated three-quarter angle, their smooth skins showing bright specular highlights, subtle darker red mottling and tiny blemishes around short green stems, resting with faint soft shadows on a plain light-gray/white background. +train_45782.png A small, round apple viewed from a slight top-front angle sits on a plain white surface casting a soft shadow; its smooth, glossy skin is predominantly bright yellow with an orange-red blush on the right flank and a short brown stem at the crown. +train_45940.png A small glossy red apple seen from a slightly elevated frontal view, showing a short brown stem and numerous pale yellowish speckles on its smooth skin, with a bright white specular highlight and subtle darker red shading toward the base, set against a soft out-of-focus pinkish-red background with circular bokeh highlights. +train_45967.png Against a warm orange circular background, the low-resolution image shows a single glossy red-to-orange apple with yellow blush and faint speckling, presented in a three-quarter/top-down pose revealing a small dark stem and top dimple, prominent specular highlights and a soft shadow beneath. +train_46039.png A small, glossy bright-red apple viewed slightly three-quarter front with a short brown stem and a single green leaf at the top, a smooth reflective surface showing a clear upper-left specular highlight and subtle darker shading on the right, set against a plain white background. +train_46220.png A small glossy yellow apple with a faint orange blush on its upper right, smooth reflective skin showing a subtle highlight and a short brown stem in a shallow top indentation, presented in a slightly angled top-three-quarter view against a plain white background with a soft shadow beneath. +train_46274.png Centered pale green apple with smooth, slightly glossy skin showing faint yellow mottling and a short brown stem, viewed from a slightly elevated frontal angle against a uniform soft cyan background with a subtle shadow beneath and a small darker blemish on its lower right. +train_46295.png A small, round apple with vivid cherry-red skin and a smooth, glossy texture showing bright specular highlights and faint darker speckling, seen from a slight top–front three-quarter angle revealing a short brown stem and subtle curvature, placed against a plain white background with a soft shadow beneath. +train_46358.png A small, glossy deep-red apple shown in a slight three-quarter top-front view with a short brown stem, subtle yellowish speckling and a bright white specular highlight on its upper right, set against a plain white background. +train_46840.png A glossy, round red apple with smooth, nearly uniform skin, a short brown stem and a single small green leaf, shown in a slightly angled top-side view with a bright specular highlight and faint shadow, against a plain white background. +train_47363.png A glossy, saturated red apple with subtly mottled skin and a small brown stem angled toward the upper-left, shown in a three-quarter view with a strong top-left specular highlight, soft shadowing on the lower-right, and sitting against a dark black background with a faint red halo. +train_47445.png A glossy, deep ruby-red apple with subtle darker maroon shading and a bright specular highlight, shown in a slight top-front three-quarter view revealing a short brown stem and a small green leaf, set against a plain white background. +train_47676.png A deep burgundy-red apple with glossy skin, faint yellow speckling and a short brown stem, shown from a slightly above-front angle that reveals a bright upper-left specular highlight and a shallow top indentation, resting against a dark, nearly black background with a faint circular surface outline. +train_47949.png A small, glossy orange-yellow apple shown in a three-quarter side view with a short brown stem and tiny green leaf, centered against a solid teal circular background. +train_47979.png A small, glossy deep-red apple viewed in a three-quarter frontal pose against a solid black background, with smooth shiny skin showing bright white specular highlights and a faint yellowish patch near the crown, a short brown stem, and a subtle darker shadow on the lower-left indicating its round form. +train_48100.png A small, round apple with smooth, glossy bright-red skin featuring a pronounced upper-right specular highlight, a tiny green leaf and short brown stem at the top, subtle darker shading on the lower-left, and a faint drop shadow on a plain light background, shown from a slightly elevated three-quarter view. +train_48154.png A glossy, pale pinkish‑red apple shown in a three‑quarter front view with smooth reflective skin and a bright highlight, a short brown stem with a small green leaf at the top, resting on a plain white background with a faint gray shadow beneath. +train_48395.png Two small, glossy apples—mostly warm orange-red with yellow-orange highlights and subtle vertical color variation—are shown in a slightly elevated three-quarter view, touching each other with a short green stem and leaf on the right fruit, set on a plain pale gray background with a soft diffused shadow beneath; despite low resolution the smooth shiny skin, bright specular spots, and rounded, slightly flattened-bottom silhouettes are clearly visible. +train_48469.png Two small yellow-green apples sit side-by-side on a plain white background, shown in a slightly top-front three-quarter view revealing smooth, slightly glossy skin with subtle green-yellow mottling, tiny brown stems, faint cast shadows beneath, and coarse pixelation from low resolution. +train_48606.png A small, round apple shown in a slightly off‑center three‑quarter view, its smooth glossy skin a warm red‑orange with yellow highlights and a faint darker blemish near the lower left, topped by a short dark stem and casting a soft shadow against a uniform warm brown‑orange vignette background. +train_48715.png Three-quarter, slightly top-down view of a round apple resting on a plain light-gray surface, its smooth glossy skin predominantly deep red with a yellow-green blush near the stem, a small brown spot and faint speckling visible, and a short stem with a tiny green leaf, casting a soft shadow beneath. +train_48751.png A glossy, predominantly deep red apple with an orange-yellow blush and a short brown stem, shown in a slightly elevated three-quarter view revealing a bright specular highlight and a darker blemish on the lower left, sitting on a white surface against a dark, out-of-focus background. +train_48823.png A small, glossy red apple viewed from a slightly elevated frontal angle, with smooth, bright-red skin and a strong specular highlight, a short brown stem at the top, subtle darker shading near the base, and resting on a clean white background with a soft shadow beneath. +train_48921.png Three small, glossy deep-red apples with smooth, slightly mottled skins and one faint stem visible, clustered and viewed from a slight top-front angle against a soft white background with subtle shadows. +train_48994.png A glossy, mostly red apple with yellow-green patches and faint speckled mottling, shown in a slightly tilted three-quarter view with a short brown stem and bright specular highlight, resting on a warm-toned wooden surface that casts a soft shadow beneath it. +train_49474.png A small, round, glossy red apple shown head‑on against a solid cyan background, with a bright white specular highlight, subtle darker shading toward the edges, a faint top‑center stem nub, and a slight darker blemish on the upper right. +train_49497.png A close-up, slightly overhead three-quarter view of a glossy apple with a red-to-orange gradient skin exhibiting subtle yellow mottling and tiny pale specks, a bright white specular highlight and a small dark stem cavity/bruise near the top, set against an out-of-focus green (foliage/grass) background. +train_49554.png A small round apple with mottled deep-red skin and a pale yellow blush near the crown, its glossy surface showing a bright specular highlight and a short brown stem, photographed from a slightly elevated frontal angle as it rests on a plain light surface casting a soft shadow, with a faint darker blemish on one side visible despite the low resolution. +train_49677.png A small, nearly spherical glossy red apple viewed from a slightly top‑front angle against a uniform bright pink background, with a strong specular highlight on the upper right, a subtle dark stem nub near the top center, smooth skin with faint darker shading and a small darker blemish on the lower right edge. +train_49748.png The foreground apple is a glossy, predominantly red fruit with yellow-green blushes and smooth reflective skin showing bright white specular highlights and a small dark blemish near its lower side, viewed from a low front-oblique angle and resting slightly in front of a second apple against a soft, out-of-focus green background suggesting grass or foliage. +train_49754.png A glossy, deep-red apple viewed from a slightly angled frontal perspective with smooth, reflective skin showing bright specular highlights, a short brown stem topped by a small green leaf, and a faint shadow, set against a uniform warm orange-red gradient background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/aquarium_fish_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/aquarium_fish_descriptions.txt new file mode 100644 index 0000000..1642a4f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/aquarium_fish_descriptions.txt @@ -0,0 +1,500 @@ +train_00004.png A small, bright-orange aquarium fish shown in a left-facing side profile with a slightly rounded head and prominent dark eye, smooth reflective scales, translucent pale-yellow tail and fins splayed, and a blurred background of green aquatic plants and dark substrate. +train_00271.png A small bright orange–gold aquarium fish shown in a three-quarter side profile with glossy, smooth scales, translucent pale fins with faint dark edging and a prominent dark eye, set against deep blue water with light gravel at the bottom and a tall green plant at the side. +train_00282.png A small, compact aquarium fish with a smooth, bright orange-red body and slight iridescent sheen, shown in a side-on pose swimming to the right with rounded fins and a short fan-shaped tail against a softly blurred teal-blue aquarium background with faint reflections. +train_00502.png Bright, glossy orange aquarium fish with a smooth, slightly iridescent scaled body and translucent fan-like tail shown in a slightly angled side view (head pointing right), set against a soft, out-of-focus pale blue-gray aquarium background with faint reflections, with a small dark eye and short dorsal fin visible despite the low resolution. +train_00543.png A plump, bright orange-gold aquarium fish with a pale belly and a subtly metallic, scaly texture is shown in side profile facing right, its dark eye, rounded fins and translucent slightly forked tail visible against a soft blue water background with coarse gravel at the bottom. +train_00643.png A small, electric-blue aquarium fish with a glossy, iridescent body and slightly translucent, yellow-tinged fins is shown in side view swimming horizontally with a rounded head and dark eye visible and its tail gently fanned against a blurred deep-blue water background with a pale sandy substrate along the bottom. +train_00732.png A low-resolution close-up of a small aquarium fish showing a vivid orange-red, slightly mottled and glossy body in a near-profile pose facing right, with a rounded head and dark eye, a short fan-like tail and faint fin rays visible despite blur, set against a deep blue-black tank background with a pale substrate or reflection at the bottom. +train_00960.png A small, bright saturated orange, glossy-scaled aquarium fish seen in three-quarter side view with a rounded body and slightly fanned translucent tail and dorsal fin, positioned diagonally against a deep blue, softly lit water background with scattered light bokeh/bubbles, its dark eye and subtle fin rays discernible despite the low resolution. +train_01017.png A small bright orange-gold aquarium fish shown in left-side profile with a rounded, slightly compressed body and glossy, scale-suggestive texture, darker dorsal shading and a paler yellow belly, a visible dark eye on a pale face, a translucent fan-shaped tail edged in lighter yellow-white and a short raised dorsal fin, all set against a deep black background. +train_01129.png A glossy bright-orange aquarium fish with broad white vertical bands rimmed in black and smooth reflective skin, shown in a three-quarter side view angled slightly upward to the left with rounded fins and a tapered tail, set against a dim, plant-dappled aquarium background with blurred green foliage and dark substrate. +train_01345.png A small aquarium fish with a glossy golden-yellow body and slightly deeper orange head, shown in a three-quarter side view angled downward with translucent pale-yellow fins and a rounded tail, set against a soft bluish tank background and displaying a small dark eye and a faint lateral blotch near the gill. +train_01351.png A small, slender aquarium fish shown in side profile with a glossy metallic turquoise-blue lateral stripe running from eye to midbody and a bright red-orange rear and tail, smooth reflective scales with a slightly darker dorsal area, against a soft-focus deep-blue tank background with an indistinct green plant blur and scattered light particles. +train_01396.png A small, gold-orange aquarium fish with glossy, slightly iridescent scales and translucent, ruffled fins and fan-shaped tail is shown in a right-facing three-quarter profile—body rounded and slightly hunched with its dorsal fin erect—set against a deep black aquarium background speckled with a few tiny floating particles. +train_01565.png A small, vivid electric-blue, slightly iridescent oval-bodied aquarium fish shown in right-facing profile with a rounded head and short translucent yellow-tinged fins, a faint dark spot near the tail base, and a grainy low-resolution texture against a deep navy-blue background. +train_01652.png A plump, pale peach-to-orangish aquarium fish shown in right-side profile with a smooth, slightly iridescent scaly texture, a rounded head and short fins leading to a translucent, fan-like tail, positioned against a dark blue-green tank background with blurred plant shapes. +train_01712.png A small orange-gold aquarium fish is shown in a right-facing, slightly angled side view with a luminous scaly sheen, a pale belly, translucent ruffled fins and fanlike tail, a dark eye, and a blurry deep-blue background punctuated by a vertical green aquarium plant. +train_01808.png A small, rounded turquoise-blue aquarium fish with an iridescent, slightly mottled texture and a darker mid-body spot, shown in a side-on, slightly angled pose revealing translucent fins and a pointed head against a pale blue, out-of-focus aquarium background with soft light reflections and indistinct substrate. +train_01843.png Bright glossy orange fish with smooth, slightly reflective scales and a compact rounded body seen in a side‑angled view facing right, showing an erect dorsal fin, fanned translucent caudal and pectoral fins and a small dark eye with a faint yellowish belly, set against a backdrop of blurred vertical green aquatic plants and dark substrate. +train_01993.png A small, vivid golden-yellow aquarium fish with smooth, glossy scales and semi‑transparent rounded fins seen in a slightly oblique side view resting near a light sandy substrate against a dark tank background, its compact body and a single dark eye visible despite the low resolution. +train_02124.png A low-resolution side-profile aquarium fish in vibrant chartreuse-green with a glossy, slightly mottled texture, a small orange snout, darker green fins and tail, a prominent round black eye with a white highlight, and set against a soft teal-blue background with subtle darker speckles. +train_02217.png A small, plump bright orange-gold aquarium fish seen in near-profile facing right with glossy, slightly scaly skin and a paler underbelly, short translucent fins and a stubby tail, set against a blurry deep-blue/black aquarium background with faint reflections and indistinct vegetation. +train_02250.png An orange-red, slightly mottled aquarium fish with a shiny, smooth-scaled body and translucent iridescent fins is shown in a three-quarter side view angled upward, its dark eye prominent as it hovers near green aquatic plants against a bluish-green water background with diffuse reflections. +train_02368.png A bright tangerine-orange, smooth-scaled aquarium fish shown in an oblique side view with a prominent dark eye and translucent, fan-like tail slightly angled to the right against a blurred blue-green tank background with hints of plant shapes. +train_02591.png A small aquarium fish captured in a slightly angled side view, its iridescent turquoise-blue body with a smooth metallic sheen and faint darker head shading paired with a vivid orange tail and thin translucent fins, appears slightly blurred against a dim, out-of-focus aquarium background of dark water and scattered substrate highlights. +train_02664.png Side-facing, slightly angled white goldfish with a bright orange head and vibrant orange fan-shaped caudal fin, smooth scaled body and translucent flowing fins, bulging eyes and a rounded silhouette set against a dark, out-of-focus aquarium background speckled with circular light highlights and a faint vertical reflection. +train_02787.png A small aquarium fish seen in side profile with a smooth, iridescent silvery‑blue body, a vivid orange‑red caudal fin and translucent dorsal/anal fins, a dark eye and faint lateral shading, photographed against a blurred green‑planted aquarium background with gravel. +train_02908.png A small orange-yellow scaled aquarium fish seen in a right-facing three-quarter profile with a subtle iridescent sheen, faint vertical darker bands across its body, a smoky black blotch near the base of the tail, translucent fins held slightly erect, and a blurred blue-green planted tank background with gravel at the bottom. +train_02998.png A three-quarter side view of an aquarium fish with glossy orange skin interrupted by a broad creamy-white midband and faint darker speckling, smooth reflective scales and translucent fins, head angled slightly left showing a prominent dark eye, set against a bluish watery background with indistinct greenish décor. +train_03168.png A small, metallic turquoise-blue aquarium fish with a slightly darker dorsal band and pale belly, shown in lateral view swimming leftward with translucent fins and a subtle iridescent sheen, set against a soft blue background with a hint of gravel at the bottom. +train_03275.png A bright orange, glossy-scaled aquarium fish captured in a slightly angled right-facing side view with a plump rounded body and prominent dark eye, faint translucent fins and subtle yellow highlights set against a blurred sandy-beige substrate background. +train_03441.png Side‑on and swimming rightward in midwater against a deep blue aquarium background, the small streamlined fish shows glossy, iridescent electric-blue flanks with a vivid horizontal red‑orange stripe toward the rear, smooth reflective scales and translucent fins visible despite the low resolution. +train_03553.png A small aquarium fish viewed from a slightly overhead angle with an elongated, flattened body and broad head covered in rough, scaly dark brown to black skin densely speckled with small yellowish spots, fins splayed and tail trailing to the right against a blurred dark gravel substrate and out-of-focus green plants. +train_03724.png A small, vividly saturated orange-red aquarium fish shown in side profile facing left, with a rounded, slightly compressed body and small dark eye, a translucent fan-shaped caudal fin and subtle iridescent scale sheen, photographed against a deep teal-blue aquarium background with a hint of green plant at the left edge. +train_04109.png A small bright orange-gold aquarium fish shown in a side-on, slightly upward-tilted pose with smooth, slightly iridescent scales, a distinct forked tail and upright dorsal fin, swimming against a dark bluish background with faint vertical pale reflections suggesting plants or tank glass. +train_04162.png A small aquarium fish shown in a lateral, slightly angled side view with a smooth, metallic iridescent electric-blue body and glossy scales, a vivid horizontal bright-blue stripe and a contrasting red area near the forked translucent tail, delicate translucent fins, all set against a dim, plant-dappled aquarium background. +train_04165.png A small, pale creamy-beige aquarium fish with smooth, slightly translucent fins and a prominent dark eye is shown in left-profile, slightly angled downward against a blurred cyan-blue tank background with scattered light flecks, revealing a faint lateral shading near the midbody and a rounded tail silhouette. +train_04171.png A small, bright lemon-yellow aquarium fish with a smooth, slightly glossy oval body and rounded fins shown in a three-quarter side view, its dark eye and faint scale texture visible against a dim, out-of-focus tank background with pale vertical reflections and a blurred yellow companion nearby. +train_04232.png A small, bright orange aquarium fish with glossy, reflective scales and a rounded, compact body is shown in a left-facing three-quarter side view against a dark, out-of-focus aquarium background, its prominent dark eye and slightly translucent dorsal and tail fins still distinguishable despite the low resolution. +train_04244.png A small, vividly orange, smooth-scaled aquarium fish shown in a side-on, slightly head-up pose with a rounded body, translucent fins and a visible dark eye, set against a soft-focus deep-blue water background with hints of brown substrate. +train_04309.png A small, bright orange aquarium fish with a smooth, glossy, slightly pixelated body and a faint pale vertical band behind the head, shown in a right-facing three-quarter side view with rounded translucent fins and a dark eye, set against a deep blue, softly blurred aquatic background with indistinct coral or rock shapes. +train_04348.png A small, slender aquarium fish shown in lateral view with glossy, iridescent turquoise-blue along the body and a vivid red posterior under a translucent tail, slightly angled upward against a dark, blurred tank background with a vertical green plant and indistinct gravel substrate. +train_04969.png A plump, bright-orange aquarium fish with smooth, slightly iridescent scales, a visible dark eye and flowing translucent tail and dorsal fins shown in a slightly angled side view against a deep blue-black tank background with indistinct reddish aquatic plants. +train_04987.png A small, bright orange–red, slightly rounded aquarium fish seen three‑quarters from the front with a dark eye, faint scaled texture and a darker dorsal patch, translucent pectoral and forked tail fins trailing behind, set against a dim bluish‑green tank background with blurred plant stems and soft light reflections. +train_04995.png A bright orange aquarium fish with glossy, smooth scales and a paler underside is shown in a slightly oblique left‑facing side view, displaying a rounded body and translucent, fan‑like tail and dorsal fin against a gravel‑strewn aquarium bottom and dark, shadowy water with faint plant/rock shapes. +train_05135.png A small, warm orange-yellow aquarium fish with smooth, slightly glossy scales and a rounded body, shown in a three-quarter side view facing left with a visible dark eye and trailing tail fin, set against a dark, out-of-focus aquarium background with a faint greenish blur. +train_05356.png A small, bright orange, smooth-scaled aquarium fish shown in side profile facing right, with a dark eye, faint vertical shading and a rounded tail edged in black, hovering just above a sandy substrate against a blurred green-plant background. +train_05365.png A small, bright orange-red aquarium fish with a slightly mottled, scaly texture and a faint vertical white band near its head, shown in a right-facing lateral pose hovering just above dark gravel substrate against a blurred brown-rock background. +train_05366.png A bright orange-red, glossy, rounded-bodied aquarium fish shown in near-profile facing right with a small dark eye, translucent slightly fanned fins and tail, a paler belly with subtle scale sheen, set against a soft blue water background. +train_05479.png A small, bright orange, glossy-bodied aquarium fish seen in near-side profile with a rounded silhouette, short translucent fins and a conspicuous dark eye, floating against a soft teal-green watery background with blurred gravel or plant texture. +train_05513.png Small, bright orange-gold aquarium fish with a slightly rounded, shimmering-scaled body and lighter belly, shown in a left-facing side angle with a fanned tail and visible dorsal fin against a dark bluish-green tank background and shadowed rocky substrate below. +train_05537.png A small, round-bodied aquarium fish shown in close lateral view with smooth, slightly iridescent orange skin and paler mottling, a distinct near‑black mask over the snout and eye, small translucent fins and tail, all set against a blurred teal‑green aquarium background with indistinct plant shapes. +train_05590.png Against a deep black background, a single aquarium fish is shown in a slightly upward-tilted side profile with a compact cyan-blue body covered in subtle iridescent scales and long, translucent ruffled fins that fade to pale blue‑white at the edges. +train_05690.png A glossy, bright orange-red, rounded-bodied aquarium fish with a pale yellow-white belly and slightly translucent fan-like tail is shown in right-side profile with a prominent dark eye and faint scale sheen against a dark bluish tank background with hints of green plant life and substrate. +train_05775.png A small, bright orange aquarium fish with smooth, slightly mottled scales and translucent fins is shown in a near-side view with a dark round eye, angled slightly upward and hovering just above tan gravel against a bluish tank background with a faint green plant blur. +train_05811.png A small, slender aquarium fish shown in a side-on, slightly angled pose facing right, with glossy iridescent electric-blue along the upper midline, a vivid opaque red on the posterior ventral half, translucent fins and smooth reflective scales, set against a dark aquarium background with hints of gravel/substrate. +train_05850.png A small warm yellow-orange aquarium fish with a glossy, slightly mottled texture and a prominent dark eye, shown in a left-facing three-quarter profile with translucent fins slightly fanned, set against a deep blue, softly blurred aquarium background with indistinct gravel at the bottom. +train_05892.png A small bright orange, slightly translucent-scaled aquarium fish shown in profile facing left with a rounded body, short fan-like tail and subtle fin rays, a prominent dark eye and pale belly shading, set against a soft blue‑green blurred tank background. +train_05986.png A bright orange-gold, rounded aquarium fish shown in a three-quarter side view with a dark eye and glossy highlights suggesting smooth scales, broad flowing fan-like tail and pectoral fins spread as if swimming leftward, set against a deep blue aquarium background with faint, shadowy plant-like shapes. +train_06088.png A small glossy orange-red aquarium fish with a rounded body and slightly translucent, fanned tail and dorsal fin, shown in a three-quarter side view facing right against a bright cyan-blue blurred aquarium background with a prominent dark eye and subtle scale sheen. +train_06206.png A small aquarium fish captured in a side-on profile slightly angled toward the viewer, with a glossy bright orange-red, subtly mottled body of smooth reflective scales, translucent pale fins and a fanlike tail, a prominent dark eye, and a softly blurred blue-green aquarium background with indistinct plant shapes. +train_06316.png A bright orange, slightly mottled fish with a glossy, scale-textured body and a darker, fan-like tail seen in profile swimming rightward at a slight upward tilt against a dim brown-black aquarium background with indistinct substrate and blurred plant silhouettes. +train_06395.png A small cerulean-blue aquarium fish shown in three-quarter profile with a glossy, slightly translucent body featuring a subtle darker head and tail silhouette and a bright flank highlight, set against a uniform deep-blue watery background with tiny light specks. +train_06483.png A small, iridescent turquoise-blue aquarium fish with a compressed, oval body and subtle darker dorsal shading and faint mottled scale texture, shown in right-facing three-quarter profile with translucent fins slightly splayed against a dark, out-of-focus aquarium background punctuated by a few bright specular highlights. +train_06504.png An orange, rounded-bodied aquarium fish with a pale cream underside and faint scale sheen, shown in a three-quarter side view slightly tilted head-up as it hovers mid-water, revealing a small dark eye and translucent pectoral and fan-shaped tail fins against a dark bluish aquarium background with out-of-focus pale gravel along the bottom. +train_06648.png Bright reddish-orange glossy scales with a paler cream underside on a plump, rounded-bodied aquarium fish shown in a three-quarter side view tilting slightly upward, with a small dark eye, translucent pale fins and a short fan-like tail, set against a dim bluish-black tank background with indistinct green plant silhouettes and light reflections that blur finer details. +train_06767.png A small bright orange aquarium fish with glossy, slightly mottled scales and a bold white vertical stripe edged faintly in dark, shown in a three-quarter profile swimming left against a blurred greenish aquatic background with soft light reflections and indistinct plant-like shapes. +train_06893.png A small aquarium fish captured in side profile facing left, with a vivid orange‑red, slightly iridescent scaled body and delicate fan‑like translucent tail and fins with faint darker edging, set against a dark bluish‑green, softly blurred aquarium background. +train_07058.png A small, bright orange aquarium fish with glossy, fine-scaled skin and a rounded body seen in profile—slightly angled toward the camera—showing translucent, white-edged tail and fins and a dark round eye, set against a deep blue water background with a darker, indistinct substrate. +train_07135.png A plump, vivid orange aquarium fish with a glossy, subtly scaled texture and pale underside is shown in a three-quarter, upward-tilted pose (head toward the upper left), revealing a dark round eye, translucent short fins and a slightly forked tail against a dark, softly blurred aquarium background with green plant shapes and scattered light reflections. +train_07367.png A compact, goldfish-like aquarium fish with vivid orange-red, slightly iridescent scales fading to a paler white belly, shown in a three-quarter frontal pose angled upward toward the camera with a prominent dark eye and translucent, flowing fins and tail, hovering near the glass against a dark tank background with a hint of green plant and a bright specular highlight. +train_07383.png A bright turquoise-blue aquarium fish with shimmering, slightly iridescent scales and a glossy, smooth texture is shown in a left-facing side profile with long, flowing fan-like tail and fins trailing behind it against a dim bluish tank background with blurred gravel substrate and faint plant silhouettes. +train_07480.png Bright orange-gold, slightly rounded aquarium fish with smooth, glossy scales and a dark eye, shown in a near-profile pose angled toward the viewer with a fanned tail and dorsal fin, set against a soft blue water background with diffuse lighting and a pale sandy rock substrate. +train_07552.png Side-view of a small aquarium fish with a pale pink-to-rosy, slightly iridescent body and smooth-scaled texture, semi-translucent feathery fins and a long flowing tail, angled slightly upward in midwater against a blurred aquarium backdrop of green plants and gravel substrate with a darker red patch near the head visible despite the low resolution. +train_07685.png A pale yellow-beige, disc-shaped aquarium fish seen in a side-on, slightly three-quarter view with a smooth, subtly vertically banded body, a visible reddish eye and translucent fins edged with orange, floating against a dim, out-of-focus dark aquarium background with scattered light reflections. +train_07849.png A slender aquarium fish shown in side profile swimming left, with a metallic iridescent turquoise-blue lateral stripe running from head to mid-body over a pale silvery belly and darker olive back, a vivid reddish‑orange posterior near the tail, translucent fins and a smooth glossy scale texture against a blurred blue‑green aquarium background with indistinct plant shapes. +train_07974.png A small, glossy turquoise-to-teal aquarium fish rendered with a smooth, slightly speckled texture, shown in a left-facing side profile with a rounded body, subtle dorsal and pectoral fins and a fan-like tail slightly curled, a pale eye highlight, all set against a deep navy-blue aquarium background with a soft teal glow around the fish. +train_07997.png A compact, deep-orange to reddish aquarium fish with smooth, slightly iridescent scales and a rounded body shown in right-side profile with translucent, fan-like tail and small dorsal fin against a dark, reddish-brown blurred aquarium background with a bright light reflection near its head. +train_08192.png A small, plump, bright lemon-yellow aquarium fish with smooth, glossy, slightly iridescent scales seen in left-side profile with its dorsal fin raised and tail slightly fanned, a dark eye and faint orange near the gill, floating against a blurred planted-tank background of green aquatic plants and substrate. +train_08353.png A small aquarium fish viewed in three-quarter profile, its iridescent turquoise-green, scale-textured body marked with faint dark vertical bands and a bright orange head patch, slightly spread translucent fins, set against a blurred deep-blue aquarium background with indistinct gravel and plant shapes. +train_08431.png A small, bright orange aquarium fish with a smooth, glossy, slightly translucent rounded body and a prominent dark-rimmed eye, shown in three-quarter profile with a fanned, dark-edged tail and fins, suspended mid-water against a soft, out-of-focus blue background with light bokeh. +train_08599.png A small bright orange aquarium fish shown in right-side profile with a smooth, shiny-scaled body and translucent fins, angled slightly upward, a rounded head with a prominent dark eye and a faint darker mark near the tail, set against a green planted background and gravel substrate. +train_08713.png A small aquarium fish seen in a three-quarter side view oriented leftward, its vivid electric-blue body with a paler bluish-white belly covered in glossy, iridescent scales and thin, slightly translucent fins (including a forked tail) stands out against a blurred deep-blue aquarium background with soft highlights. +train_08752.png A small, pale orange-golden aquarium fish with smooth, slightly iridescent scales and a faint darker midline stripe is seen in lateral, slightly upward-tilted profile near a gravel substrate, with a dark round rock to its left and blurred green plant matter in the dim background, its rounded fins and prominent dark eye discernible despite the low resolution. +train_08772.png A small, bright orange, glossy, rounded-bodied aquarium fish shown in a slightly angled side view with a short fan-like tail and faint pectoral fin outlines, its smooth reflective-scaled texture catching highlights against a dark bluish tank background with subtle reflections. +train_08835.png A small, bright orange, slightly translucent aquarium fish is shown in side profile with a rounded head and single dark eye, faint vertical banding and delicate translucent fins visible despite pixelation, set against a warm amber-lit, blurred aquarium background with soft highlights. +train_08967.png A side-view, slightly angled small aquarium fish with a slender body covered in iridescent turquoise-blue metallic scales along the midline, a faint reddish-pink wash on the lower flank, translucent fins and a small forked tail, set against a blurred dark-blue tank background with indistinct green plant silhouettes. +train_09004.png A small side-profile aquarium fish seen at a slight angle, with a shimmering electric-blue horizontal stripe along a silvery, iridescent, slightly scaly body, translucent fins and a vivid orange-red tail, set against a dark, plant-filled aquarium background with blurred stems and gravel. +train_09057.png A small, bright orange-yellow aquarium fish with a smooth, glossy body and a distinct dark round eye shown in a slightly angled three-quarter profile facing left, faint vertical shading and a slightly forked tail visible despite the low resolution, set against a dim brown gravel substrate with blurred green plant material in the background. +train_09164.png A compact, bright-orange aquarium fish with a slightly mottled, smooth-scaled body shown in a left‑facing side profile, displaying a rounded tail and short translucent fins, a small dark eye and pale belly visible against a dark gravel substrate and blurred, indistinct background. +train_09165.png Round-bodied, vivid orange aquarium fish with glossy, smooth scales and paler whitish underparts appears in a three-quarter frontal pose facing slightly left, its large dark eye and small mouth prominent while translucent, fan-like fins and a pale tail are hinted against a dark, blurred aquarium background with blue-green decor and gravel. +train_09352.png A vividly orange-red aquarium fish captured in a slightly angled side-profile toward the camera, with smooth glossy scales, a rounded body and semi-translucent splayed tail and dorsal fins edged in paler tones, a small dark eye, and soft glass reflections against a predominantly dark background with a faint greenish plant blur at the right. +train_09388.png A small, bright-orange, rounded-bodied aquarium fish with glossy, smooth-looking scales and a single dark eye, shown in a slightly angled side view with translucent, fan-like tail and flowing fins splayed behind it against a deep blue, softly blurred aquarium background with faint light reflections. +train_09391.png A small, elongated aquarium fish shown in three-quarter side view facing left, with a glossy olive-green to brown body flecked with subtle iridescent blue-green speckles and a pale head, sporting a contrasting bright yellow-orange tail fin, positioned near a light sandy substrate against a blurred dark rocky background under dim aquarium lighting. +train_09418.png A small aquarium fish shown in a three-quarter side profile displays a slender, smooth-bodied shimmer with a vivid turquoise-blue lateral stripe fading into pinkish-red toward the tail, translucent fins and a dark eye, set against a dim, out-of-focus aquarium background with scattered white gravel and greenish patches. +train_09498.png A small aquarium fish viewed in a lateral three-quarter pose, its smooth, glossy turquoise-blue body with subtle darker dorsal shading and a paler almost white belly angled slightly upward, showing a rounded head and compact silhouette with faint darker markings near the tail, set against an out-of-focus orange coral and dark rocky background. +train_09790.png A small, bright orange aquarium fish with a smooth, slightly iridescent scaled body, rounded head and large dark eye is shown in a right‑facing three-quarter profile with translucent, frilly pale fins and a splayed tail, hovering against a bluish, slightly blurred tank background with a faint green plant. +train_09850.png A small, bright orange aquarium fish with smooth, slightly iridescent scales and translucent fins is shown in a right‑facing side profile angled slightly upward, its forked tail lightly flared with a darker patch near the rear, set against dim blue water and blurred vertical green aquatic plants. +train_09884.png A small, bright orange aquarium fish with smooth, slightly glossy scales and a bold white vertical band edged in black, shown in a left-facing side profile hovering mid-water against a soft blue background with a pale coral/rock hint at the lower right. +train_09908.png Seen side-on and slightly angled downward, the small aquarium fish has a smooth, slightly iridescent orange-reddish body with a darker head patch and faint vertical banding near the tail, translucent fins, and a visible dark eye, suspended mid-water against a blurred blue-green planted aquarium background with gravel along the bottom. +train_10010.png A small plump aquarium fish shown in left-side profile with a smooth, glossy, saturated orange body and a slightly translucent pale-orange fan tail, set against dark bluish water with indistinct gravel along the bottom and a hint of green plant at the lower right. +train_10138.png A small, bright orange aquarium fish shown in side profile with a rounded body and a dark eye, its pale translucent fins and slightly forked tail trailing to the right against a deep, nearly black background speckled with tiny pale gravel- or bubble-like highlights. +train_10151.png A small bluish-gray aquarium fish shown in near-side view, its iridescent, slightly scaled body and pale underbelly visible as it angles upward above a light sandy substrate with blurred green plant shapes and a bright, diffuse background, while a darker head, faint vertical striping and a pointed snout remain discernible despite the low resolution. +train_10293.png A right-facing, side-view aquarium fish with a warm orange-brown, slightly mottled scaly body and translucent, fan-shaped fins edged in darker orange, seen against a blurred green aquatic-plant background with a rounded head, prominent dark eye and faint speckled markings along the flank. +train_10300.png A small aquarium fish shown in a left-facing side profile with a vivid solid orange, slightly translucent body and smooth glossy texture, a rounded head with a small dark eye and a fan-like tail fin, set against a dark substrate and blurred green aquarium plants under cool bluish tank lighting. +train_10444.png A small, slender aquarium fish shown in a left-facing profile with an iridescent cyan-blue body and slightly mottled texture, a darker midline stripe extending toward the tail, translucent fins, a faint orange patch near the tail, and suspended against a blurred deep-blue aquarium background with soft light speckles. +train_10550.png A small, vivid orange aquarium fish with glossy, slightly translucent fins and a paler belly is shown side-on, slightly angled to the right in midwater against a soft, out-of-focus bluish aquarium background, its compact rounded body, dark eye, and short rounded tail discernible despite low resolution. +train_10637.png A small aquarium fish shown in left-facing profile with a smooth, iridescent turquoise-blue body, a vivid orange rounded caudal fin edged faintly dark, a subtle darker dorsal stripe and small translucent pectoral fins, posed slightly angled upward against a softly blurred aqua background and pale gravel substrate. +train_10806.png A small aquarium fish seen in side‑profile swimming rightward with a pale silvery, slightly iridescent scaled body and translucent, fan‑shaped orange-yellow tail with a faint dark edge, set against a dark tank background over gravel and a blurred patch of green plant life. +train_11051.png A small, rounded aquarium fish with a vivid turquoise-blue, iridescent body and subtle dark speckling, shown in a three-quarter side view with fins slightly spread and a faint orange tint at the tail, set against a dim, blurred aquarium background of green plants and brown substrate. +train_11098.png A small, bright orange-yellow aquarium fish with a softly mottled, slightly iridescent scale texture is shown in a three-quarter side-upward pose (facing upper right), its dark round eye and translucent, fanned fins visible against a deep bluish-black background with faint blurred highlights and a warm-toned substrate at the lower left. +train_11213.png A small, bright orange aquarium fish with a smoothly textured, slightly lighter underbelly and translucent, slightly darker-edged fins is shown in a side-angled pose with its dark eye visible, swimming against a blue water background over gravel with blurred green plants. +train_11622.png A small, slender aquarium fish with an iridescent green-blue, slightly metallic-scaled body and a darker dorsal band, shown in a three-quarter left-side view angled slightly upward with translucent fins and a paler belly, set against a blurred blue-green aquatic background with faint plant shapes and a soft circular light reflection. +train_11876.png A small orange-gold aquarium fish shown in a three-quarter side view facing right, with smooth, slightly mottled scales, a conspicuous dark vertical stripe near the head and a darker dorsal band, translucent fins and tail, set against a blurred blue tank background with indistinct green plant shapes. +train_12095.png Bright orange, smoothly scaled aquarium fish shown in a right-facing lateral pose with translucent, slightly fan-shaped tail and dorsal fin, set against a dark green planted background and gravelly bottom, its round black eye and glossy reflective body highlights visible despite the low resolution. +train_12179.png A plump, oval bright orange–gold aquarium fish with smooth, slightly glossy scales and a pale cream belly, seen in clear side profile showing a small dark eye and translucent fins and tail, set against a softly blurred greenish aquarium background with indistinct gravel at the bottom. +train_12218.png A plump, round-bodied aquarium fish in a soft peach-to-rose-gold hue with a subtle scaly texture and a darker orange patch along the upper flank is captured in a close right-side profile showing a prominent dark eye and translucent fins, set against a blurred green aquatic-plant background. +train_12238.png A small, plump aquarium fish shown in a three-quarter profile with a vivid orange-red, slightly mottled body and paler belly, translucent trailing fins and a faint darker edge to the tail, set against a dark, out-of-focus aquatic background with hints of green plant shapes. +train_12413.png A plump, bright orange–gold aquarium fish with reflective, slightly scaly skin and a prominent dark eye, shown at a three-quarter, slightly head-on angle with short translucent fins displayed, set against soft blue water with a blurred substrate along the bottom. +train_12461.png A small, round-bodied aquarium fish with vivid, solid orange, slightly glossy scales and translucent pale fins is seen in near–side profile facing right, its dark eye and short tail silhouetted against a uniformly warm, orange-lit, blurred aquarium background with faint speckles of debris. +train_12545.png A bright orange, slightly mottled aquarium fish shown in a right-facing lateral view with a glossy, smooth-bodied texture, a dark eye and a darker almost-black tail fin with faint vertical shading near the gill, set against a blurred backdrop of green aquatic plants and brown gravel. +train_12609.png A small aquarium fish shown in side profile with a shimmering iridescent turquoise-green body, faint vertical dark bands and a yellow-orange wash toward the tail and fins, translucent pectoral fins, and a slightly blurred rocky/coral aquarium background with teal water. +train_12778.png A small, bright orange–gold fish with glossy, slightly iridescent scales and a pale translucent, fan-shaped tail is shown in an oblique right-facing side view with its body gently curved, floating mid-water against a deep, softly mottled blue aquarium background. +train_12796.png An orange-gold, smooth-scaled aquarium fish shown in a three-quarter profile with a visible dark eye and short rounded fins, its rounded body and subtle reflective highlights contrasting against a dark, out-of-focus warm-orange aquarium background. +train_12847.png A bright solid-orange, slightly glossy aquarium fish shown in near-profile facing left with a compact rounded body, short slightly fan-shaped tail and fins, a small dark eye and indistinct scale texture against a pale sandy substrate and soft bluish aquarium background. +train_12974.png A bright orange, smooth-scaled clownfish shown in a right-facing lateral profile with three broad white vertical bands rimmed in black, rounded fins and a prominent dark eye against a dim, out-of-focus aquarium background with faint bluish lighting. +train_13073.png Bright orange-red, smooth-scaled aquarium fish shown in a three-quarter side view facing left and slightly upward, its semi-translucent paler orange fins and broad, slightly flared fan-shaped tail visible as it hovers just above multicolored gravel against a dark tank background with hints of plant material. +train_13221.png A left-facing aquarium fish shown in side profile with a rich cobalt-blue, mildly iridescent scaly body and slightly mottled texture, a distinct pale vertical band just behind the gill and a dark eye, photographed in low resolution against a coarse gravel substrate and pale aquarium equipment in the background. +train_13389.png A small, bright orange-gold aquarium fish shown in profile swimming to the right, its smooth, slightly iridescent body and semi‑translucent flowing tail and dorsal fin visible against a blurred green aquatic-plant background and dark substrate with a few specular highlights on the flank. +train_13424.png A small, horizontally oriented aquarium fish with a smooth, slightly iridescent blue-green body, a darker dorsal stripe and paler silvery belly, visible in profile midwater against a deep cobalt-blue background, showing a rounded head with a tiny dark eye and a forked tail. +train_13631.png A small, bright orange, rounded-bodied aquarium fish shown in near-profile facing right, with a prominent dark eye, translucent fan-like pectoral and tail fins, a glossy slightly mottled scale texture with lighter highlights, set against a deep blue, softly speckled aquarium background. +train_13644.png A small aquarium fish shown in side profile with a smooth silvery-blue body and pale underbelly, a conspicuous bright orange-red patch near the gill/face, translucent pale fins and tail, and faint iridescent scaling set against a dark, indistinct aquarium background with vague substrate or decoration. +train_13779.png A small bright orange-red aquarium fish with glossy, smooth-scaled body and a paler underside is shown in a three-quarter side view facing left, its round dark eye and translucent fins visible against a blurred turquoise-blue water background with hints of green plants and gravel. +train_13789.png A plump, bright orange-gold aquarium fish with a slightly iridescent, scaly texture and rounded body, shown in a three-quarter side view facing right with a spread fan-like tail and small dorsal fin, set against a dark, blurred tank background with pale gravel along the bottom. +train_13878.png An oval, vivid orange aquarium fish with smooth, slightly reflective scales and a small dark eye is shown in a side–three-quarter view facing right and slightly upward, its translucent pale-edged tail and short fins visible against a dark bluish aquarium background with pale gravel along the bottom and a faint greenish plant at the left. +train_13934.png In profile facing right, a small aquarium fish displays a vivid magenta-pink, slightly iridescent body with translucent, ruffled fins against a dark bluish-black, grainy background speckled with tiny floating particles suggesting aquarium water. +train_13954.png A small, orange-gold aquarium fish with a rounded, slightly iridescent body and subtle scale texture, shown in a three-quarter side-upward pose revealing translucent, flowing white-edged tail and fins, set against a dark, blurred tank background with a hint of green plant life. +train_13964.png A plump, glossy bright-orange aquarium fish with slightly mottled scales and a pale, fan-shaped white tail is pictured three‑quarters frontally—its rounded body and small dark eye facing the camera with fins splayed—set against a dark bluish water background with indistinct gravel along the bottom. +train_14050.png A small, bright orange aquarium fish with smoothly scaled, rounded body seen in a three-quarter side view slightly curved and facing left, showing a dark eye and short rounded fins, set against blue water with dark gravel, scattered colorful pebbles and a green aquatic plant in the background. +train_14150.png A small, solid bright-orange aquarium fish with a rounded, slightly compressed body and faintly textured scales, shown in a side-to-three-quarter, slightly upward-tilted pose revealing a dark eye and translucent fan-like tail against a blurred reddish rock background and dark gravel substrate. +train_14341.png A small aquarium fish with a smooth, glossy pale yellow–white body marked by bold vertical black bands and a faint orange tint near the head, captured in a three-quarter side view facing left with its tall, pointed dorsal fin raised against a blurred blue water background with green plants and gravel visible below. +train_14531.png A plump, bright-orange aquarium fish with a smooth, slightly iridescent scaled body and paler belly, shown at a three-quarter frontal angle revealing a rounded head and short translucent orange fins and tail against a dark, blurred aquarium background with hints of gravel and green plant shapes. +train_14606.png A bright orange, smooth-scaled aquarium fish with a paler belly is shown in side profile facing right, its rounded body, small dark eye, partially spread dorsal fin and fan-like tail visible against a deep-blue, slightly mottled aquarium background with darker vertical shapes and tiny light specks despite pixelation. +train_14656.png Close-up three-quarter view of a small, glossy bright-orange aquarium fish with a rounded body and slight scale sheen, featuring a prominent white vertical band edged in black behind the eye and a dark, blurred aquatic background. +train_14692.png A small, glossy orange aquarium fish shown in left-facing profile with smooth, reflective scales, a rounded dark eye and a pale white vertical band edged in black near the head, slightly blurred fins and tail, and a sandy-beige substrate with a bluish tank background. +train_14750.png A small, bright orange aquarium fish with smooth, slightly iridescent scales and a rounded body is shown in a left-facing lateral pose with a translucent fan-shaped tail and a distinct dark eye against a uniform vivid blue water background. +train_14834.png A small, rounded orange aquarium fish with a slightly mottled, scaly texture and a dark eye, shown in a three-quarter side view facing left with pale translucent fins and tail, set against a soft turquoise water background with diffuse light reflections. +train_14931.png A bright orange, smooth-scaled aquarium fish with a rounded body and translucent, fan-like tail is shown in a slightly leftward, horizontal swimming pose against a soft turquoise-blue aquarium background, its dark eye, faint lighter flank mottling, and subtle scale sheen visible despite the low resolution. +train_15180.png A compact bright orange aquarium fish with smooth, glossy, slightly mottled scales and a paler belly is shown in a three-quarter side view facing right, its dark eye and short rounded fins and fan-like tail visible against a soft, out-of-focus blue aquarium background with indistinct substrate. +train_15334.png A small, bright orange aquarium fish with a slightly metallic, scaly texture and paler belly is shown in three-quarter left-facing profile with a rounded body, fan-like tail and a dark eye faintly visible against a deep blue background with blurred green plants. +train_15416.png A pixelated, bright cyan-blue aquarium fish shown in right-profile with a smooth, slightly iridescent body, darker blue fins and a forked tail, a small orange spot near the midsection, and indistinct green plant shapes against deep blue water in the background. +train_15466.png A small aquarium fish with a vivid crimson body and electric-blue iridescent fan-shaped tail and fins, posed angled left with its fins splayed showing a silky, flowing texture and a rounded head, set against a dark, out-of-focus blue aquarium background with faint hints of substrate at the bottom. +train_15517.png A small, bright-orange aquarium fish shown in a side/three-quarter view with glossy, smooth-scaled skin, two broad vertical white bands rimmed by thin dark edges, a rounded head and fan-shaped tail, swimming against bluish water with out-of-focus green aquatic plants and a gravel substrate. +train_15553.png A small, plump aquarium fish with pale orange-to-cream, softly mottled scales and a smooth, slightly glossy texture is shown in near-side profile with its body gently curved, a dark eye, translucent fan-like tail and upright dorsal fin, hovering against a dim bluish-black aquarium background punctuated by a few bright light reflections. +train_15597.png Side-view of a small aquarium fish with a slender, slightly iridescent silvery-blue body and smooth scaled texture, a dark eye and subtle horizontal shading, displaying a fanlike orange-red tail and fins while swimming mid-water against a uniform cyan-blue blurred background. +train_15635.png A small, slightly iridescent teal-blue aquarium fish is shown in left-side profile with faint black vertical bars along its rounded, glossy-scaled body, pale yellow-orange highlights on the fins and tail, and a dark, out-of-focus tank background with greenish plant blur and light substrate pebbles. +train_15713.png A small aquarium fish shown in a right‑facing side profile with a pale creamy‑yellow, slightly translucent body and a warm orange‑tinted head, a small dark round eye and delicate semi‑transparent fins and tail catching glints of light, set against a vivid magenta aquarium background with indistinct dark tank elements. +train_15723.png A small aquarium fish with a vivid orange, slightly iridescent scaly body and paler underside, shown in a three-quarter lateral view facing right with a prominent dark eye and translucent, fanned fins, set against a blurred green aquatic-plant background and dark substrate. +train_15778.png An iridescent turquoise-blue aquarium fish with faint yellow striping and shiny, scale-textured skin is shown in right-facing profile with a rounded, slightly compressed body and fan-like translucent tail, set against a dim, blurred aquarium background of green plants and gravel, its dark eye and subtle lateral markings visible despite the low resolution. +train_15859.png A small aquarium fish with a warm pink-orange body and translucent, slightly iridescent teal-blue flowing fins, shown in a slightly angled side view with its fins splayed, floating against a blurred turquoise water background with hints of gravel and a reddish coral-like object to the right, its rounded head, trailing fins, and subtle scale sheen still discernible despite low resolution. +train_15923.png Small aquarium fish captured in a three-quarter side view with a shimmering turquoise-blue, metallic-scaled body and velvety, fanned crimson-red fins and tail, angled slightly upward against a dark, blurred aquarium background with a pale rock-like ornament beneath. +train_15940.png A small aquarium fish appears in a three-quarter side view, its smooth, glossy, iridescent cyan-blue body with a slightly lighter face and subtle darker dorsal shading forming a slender, torpedo-like silhouette and faintly forked tail as it swims leftward against a dark, out-of-focus tank background dotted with tiny blue highlights. +train_16282.png A small bright-orange aquarium fish with a smooth, subtly mottled body and a pale translucent tail is shown in a three-quarter side view angled upward, its dark eye and compact, rounded form visible against a dim, out-of-focus tank background with muted gravel at the bottom. +train_16398.png A small aquarium fish shown in a right‑facing, slightly upward diagonal lateral pose with shiny, iridescent scales—predominantly mottled red‑orange along the head and body, a turquoise‑blue tail and fins, and a pale yellowish belly—set against a blurred blue‑green aquatic background with leafy plants and gravel visible beneath. +train_16469.png A small, elongated aquarium fish shown in a slightly angled side view with a glossy, scaly body mottled orange-brown, a paler underside and faint darker lateral stripe, translucent fins, and a subtle sheen against a blurred green aquatic-plant background and dark gravel substrate. +train_16504.png A small, laterally viewed aquarium fish with a glossy electric-blue body crossed by several bold vertical white bands, a slightly compressed oval profile with a pointed snout and translucent fins, suspended midwater against a dark, out-of-focus aquarium background with subtle reflections and hints of gravel. +train_16588.png A small aquarium fish with a vivid orange-red, glossy-scaled body and translucent, ruffled fins and fan-like tail is captured in a slightly angled frontal pose hovering near the tank front against a dark, out-of-focus background with muted gravel substrate and a vertical black object. +train_16629.png A small aquarium fish with a glossy, rounded bright orange–red body and a creamy white head patch, faintly translucent fan-like fins and a visible dark eye, shown in a rightward three-quarter profile against a soft deep-blue aquarium background with slight motion blur that softens scale detail. +train_16665.png A small bright golden-yellow aquarium fish with smooth, slightly iridescent scales and translucent fins is shown in a right-facing three-quarter profile, its rounded body and prominent dark eye visible against a dim bluish tank background with gravel substrate and indistinct rock or plant shapes. +train_16752.png A small bright orange-gold aquarium fish with a rounded, slightly plump body and iridescent metallic scales, shown in a three-quarter side view with translucent, fanned fins and a prominent dark eye against a blurred bluish-green planted aquarium background and pale gravel substrate. +train_16966.png A small, rounded aquarium fish photographed in right-side profile with bright orange-gold, smooth shiny scales and a paler cream underside, a prominent dark eye, translucent fan-like tail and fins, and faint reflections against a blue-lit water background with indistinct dark rock or plant shapes. +train_17009.png A small, streamlined aquarium fish with iridescent turquoise-blue, slightly metallic scales and a faint darker lateral stripe, shown at a three-quarter angle facing left with translucent fins and a subtle reddish tinge at the tail, set against a dark, out-of-focus background with soft plant shapes and floating particulates. +train_17015.png A small, bright orange, rounded-bodied aquarium fish shown in a three-quarter side view with glossy, slightly mottled scales and a pale whitish patch near the head, a prominent dark eye and translucent fins trailing toward the rear, set against a blurred teal-green water background with dark substrate below. +train_17084.png A small, slender aquarium fish shown in profile with a smooth, dark brown–black body and a narrow orange-gold patch near the head, held horizontally with a slightly upturned tail against pale green water over a sandy, pebble-strewn bottom and a dark rock at the right, its outline mildly pixelated but the bright head marking and subtle iridescence on the flank still visible. +train_17120.png A small, bright orange-and-white aquarium goldfish with glossy, slightly mottled scales and a rounded body is shown in a three-quarter side view, its translucent, flowing tail and fins fanned behind it against a deep blue, softly blurred aquarium background with faint light speckles. +train_17321.png A small aquarium fish appears as a bright orange, glossy oval seen in a three-quarter side view with a dark eye and a paler head stripe, short rounded fins and subtle scale shimmer visible against a deep blue‑green, softly blurred aquarium background with indistinct plant/substrate shapes and scattered light reflections. +train_17336.png A small, bright orange aquarium fish with smooth, slightly iridescent scales and a rounded, plump body is shown in a three‑quarter side view facing left, its translucent, fan‑like tail fin splayed behind it against a deep, nearly black aquarium background with faint bluish speckles, the silhouette punctuated by a small dark eye and subtle lighter highlights along the dorsal flank. +train_17350.png A small aquarium fish shown in a near side-profile, horizontal pose with a warm golden-orange, slightly iridescent and glossy-scaled body, a translucent fan-like tail and subtle darker speckling near the caudal peduncle, set against a blurred green aquatic-plant background and gravelly brown substrate. +train_17742.png Side-on view of a small aquarium fish facing left with a pale yellow head and metallic blue‑green body, sporting large feathery orange‑red fanlike tail and fins that show a silky iridescent texture against a dark bluish tank background with blurred green plant shapes. +train_17817.png A small, oval-bodied aquarium fish with a pearlescent bluish-green and silver sheen and faint darker vertical banding, shown in a left-leaning oblique side view with translucent dorsal and tail fins and a prominent eye and darker gill patch, set against dim bluish aquarium water lit with purple highlights and scattered pinkish substrate. +train_17849.png A small, bright orange-red aquarium fish with a smooth, slightly glossy body and translucent, fan-like tail shown in three-quarter profile facing right with a dark eye and pale belly, set against a blurred dark background with green aquatic plants and gravel at the bottom. +train_18023.png A small, side-on slender aquarium fish appears horizontal in the frame, showing a vivid iridescent blue-green lateral stripe from head toward the tail and a contrasting bright red lower posterior area, with slightly translucent fins and a subtly shimmery, scaled texture against a dark tank background with a muted yellowish substrate or decor behind it. +train_18050.png A small aquarium fish with a uniformly bright orange-red, slightly mottled smooth body and translucent fins, shown in a left-profile, gently curved pose against a soft blue water background with pale highlights and a darker substrate at the bottom, with a distinct small dark eye and rounded tail visible despite the low resolution. +train_18126.png A dark brown to nearly black, slightly iridescent and mottled aquarium fish shown in left-side profile angled slightly upward, its elongated body and pointed snout with a visible dorsal fin and tail fin set against a blurred backdrop of green aquatic plants and gravel substrate. +train_18149.png A small, low-resolution image of a right-facing, compact orange-red aquarium fish with glossy, smooth-scaled texture, a prominent translucent white fan-shaped tail and fins, a dark eye, and a slightly rounded body hovering just above gray gravel substrate against a dim tank background with a green plant leaf to the left. +train_18248.png A small, bright orange aquarium fish with glossy, slightly mottled scales shown in a three-quarter side profile with a rounded, bulbous body, a darker semi‑translucent tail fin and a visible dark eye, hovering against a deep blue, blurred aquarium background with indistinct gravel and plant shapes. +train_18355.png A vivid orange-red aquarium fish shown in a slightly angled side profile with a rounded, scaly, glossy body, a small dark eye and flowing tail and dorsal fins, set against a deep black aquarium background speckled with a few faint light particles. +train_18592.png A small, bright orange-red aquarium fish with smooth, shiny scales and a rounded body shown in right-facing, slightly upward-angled side view, displaying a fan-shaped tail and short fins and a dark eye, set against a dim, bluish-black blurred aquarium background. +train_18824.png A small, vivid orange aquarium fish with smooth, slightly iridescent scales and translucent, fanned fins is shown in profile facing right at a slight upward angle against a blurred teal-blue background with soft round highlights, its dark eye and streamlined body silhouette clearly visible despite the low resolution. +train_18827.png A small, bright orange-red aquarium fish with a smooth, slightly iridescent scaled body and broad translucent fan-like tail is shown in a slightly side-on pose facing left against a blurred teal-blue tank background with hints of gravel and green plant shapes. +train_18862.png A small plump aquarium fish shown in a three-quarter side view facing left with a glossy orange‑gold rounded body and paler creamy‑white translucent frilled fins and fan-shaped tail, hovering just above a light sandy bottom against a bright, mostly white background, the scale texture and flowing fin rays still discernible despite the low resolution. +train_19089.png A small, bright orange aquarium fish with glossy, slightly iridescent scales seen in a three-quarter side view facing right, its rounded body and short, fan-like tail and fins visible against a dark, out-of-focus tank background with hints of green plant shapes and gravel substrate, the low-resolution image emphasizing a smooth, reflective texture and clear head and tail silhouette despite lack of fine detail. +train_19114.png A small, bright orange aquarium fish with smooth, shiny scales shown in a slightly angled side profile revealing a rounded body, dark eye, faint translucent fins and a splayed tail against a bluish, out-of-focus aquarium background with soft light reflections. +train_19164.png A small aquarium fish shown in an oblique side view with iridescent turquoise-blue, slightly mottled scales that fade to a pale yellowish head, a faint darker midlateral stripe, translucent fins and a small reddish tail tip, set against a dim bluish aquarium background with indistinct substrate. +train_19260.png A small aquarium fish is shown in side view facing left, with a shimmering cobalt-blue, slightly iridescent, fine-scaled body, a contrasting bright orange-red fanned caudal fin and translucent dorsal/anal fins, appearing slightly angled downward against a blurred dark-brown substrate and greenish plant background. +train_19322.png A small aquarium fish viewed slightly angled side-on with its head to the left, showing iridescent deep blue–purple scales with a paler bluish belly, a short rounded fanlike tail, a small orange patch near the midbody, and a reflective eye against a blurred cool-toned aquarium background with gravel along the bottom and a vertical reflective surface. +train_19325.png A small aquarium fish viewed in a three-quarter side pose facing right, with a warm orange-to-golden body grading to a paler belly, faint pale vertical banding, a prominent dark eye and short translucent fins showing a smooth scaly texture against a blurred blue-green planted aquarium background. +train_19678.png A small, bright orange aquarium fish with smooth glossy scales and a distinct white vertical band edged in black along its mid-body, shown in a slightly angled side profile with rounded fins spread against a blurred aqua-blue aquarium background with indistinct plant and bubble highlights. +train_19721.png A small plump aquarium fish displays a vivid orange-red, slightly iridescent scaly texture in a three-quarter side view facing left, with a short rounded tail and partially fanned dorsal fin, set against a dark bluish-black tank background with a faint strip of substrate at the bottom. +train_19761.png A glossy, bright orange, plump aquarium fish shown in a three-quarter side view with translucent pale-edged fins and a rounded tail, set against a dark red substrate and dim background, its smooth scaled body and a small black eye visible despite the low resolution. +train_19776.png An orange, glossy-scaled aquarium fish with a pale vertical band edged in darker pigment, shown in a leftward side‑oblique pose with semi‑extended fins, hovering just above dark gravel against a softly lit blue background with blurred aquatic plants. +train_19879.png A small aquarium fish shown in near‑side profile with a translucent silvery‑beige body and a bright orange, slightly forked tail and dorsal fin with subtle iridescent speckling, hovering at a slight upward angle above a blurred blue‑green tank background with gravel substrate and indistinct vertical plants, its rounded dark eye and a faint horizontal stripe visible despite the low resolution. +train_19987.png A side-view of a small aquarium fish facing right with a vivid orange, slightly mottled body and delicate translucent pale-cream ruffled tail and fins, set against a deep bluish-green water background with soft light reflections. +train_20090.png A small, rounded aquarium fish viewed in three-quarter profile facing left, showing a smooth iridescent turquoise-blue body with subtle darker mottling, a prominent dark eye rimmed in yellow, a short blunt tail, and set against a deep blue-black background with an out-of-focus red-orange coral or rock in the lower right. +train_20127.png A vibrant turquoise-blue aquarium fish shown in profile swimming left with a rounded, laterally compressed body and translucent pectoral fins, darker blue shading along the back and a pale yellow tail tip, its smooth, slightly iridescent scaled texture visible despite pixelation against a blurred gravel-and-rock aquarium background with glass reflections and bubbles. +train_20298.png A small aquarium fish with vivid orange-red, slightly iridescent scales and translucent, flowing fins is shown in a three-quarter side view—its fan-like caudal and dorsal fins trailing from a compressed oval body with a round dark eye—set against a dim bluish aquarium background with indistinct gravel and plant blur. +train_20479.png A small, glossy bright-orange aquarium fish shown in a three-quarter side view with subtle mottled texture and a narrow pale vertical band behind the head, darker-edged fins and a rounded body, positioned against a blurred green plant and dark rocky background in the tank. +train_20520.png A small, rounded aquarium fish of uniform bright orange with a glossy, smooth-scaled texture, shown in a side‑on, slightly head‑up pose revealing translucent lighter-orange fins and a gently forked tail, against a dark bluish-black tank background with blurred green plants and gravel at the bottom and a distinct dark eye and faint gill line visible despite the low resolution. +train_20544.png A small, compact aquarium fish with a glossy, metallic turquoise-blue body and slightly darker dorsal shading, shown in a three-quarter head-on pose revealing a round dark eye and short translucent fins, set against a blurred dark-blue tank background with indistinct green plant and substrate hints. +train_20566.png A bright orange clownfish with smooth, glossy scales and two broad white vertical bands edged in black, shown in a three-quarter side view swimming rightward with fins splayed against a soft blue, slightly blurred aquarium background. +train_20635.png A compact, cobalt-to-turquoise iridescent aquarium fish seen in a slightly angled side view, its smooth, reflective body showing a brighter electric-blue lateral band and darker-edged fins, suspended against a softly blurred deep-blue aquarium background with indistinct plant-like shapes. +train_20781.png A side-profile, slightly upward-angled bright orange aquarium fish showing a grainy, iridescent scaled texture with a slightly darker head, translucent pale fins partially spread and a tapered tail, set against a dark tank background with indistinct gravel at the bottom. +train_20947.png A small aquarium fish shown in side profile facing left with a smooth, pink-to-salmon, slightly translucent body, a deeper red fan-like tail fin and pale highlights along the midline, set against a dark background with a blurred greenish plant or substrate below. +train_20972.png A plump orange-red aquarium fish with a shiny, slightly iridescent scaled texture and pale belly, shown in a left-facing side-quarter pose with a prominent dark eye and faint fin outlines, set against a dim bluish tank background with gravel and blurred plant shapes. +train_21155.png A small, plump aquarium fish with a warm pinkish‑orange body mottled with deeper red patches and a subtle iridescent sheen, shown in lateral profile with short rounded fins and a dark eye, set against a blurred background of green aquatic plants and pale blue substrate/glass. +train_21168.png A small aquarium fish with a glossy, bright orange rounded body, a pale vertical band near the head and faint darker edging on the fins, shown in a lateral profile slightly angled upward against a soft blue water background with indistinct gravel at the bottom. +train_21271.png A small bright-orange aquarium fish shown in near‑side profile with smooth, slightly iridescent scales and translucent pale fins, a dark eye near the pointed head as the body angles slightly upward in midwater against a soft blue background with indistinct gravel and blurred plant shapes. +train_21298.png A small, elongated aquarium fish seen in three-quarter side profile facing left with a deep blue-green, slightly iridescent body and paler silvery belly, a faint pale horizontal stripe along the midline, translucent yellow-tinted dorsal and forked tail fins, a reflective eye and streamlined snout, all set against a dark, out-of-focus aquarium background speckled with tiny white highlights (bubbles) and indistinct substrate, the low-resolution image showing pixelated, blocky color patches but preserving these distinguishing shapes and contrasts. +train_21467.png A bright orange, slightly mottled aquarium fish with smooth, glossy scales and a rounded body is shown in a left-facing, slightly upward-angled side view, its fan-shaped tail and small dorsal fin apparent against blue-green water with gravel substrate and blurred plants, while a dark eye and pale head and tail markings remain discernible despite the low resolution. +train_21619.png Small, round-bodied aquarium fish with smooth, translucent pink-to-lavender iridescent skin and a prominent dark eye, shown in a three-quarter frontal pose with short rounded fins against a blurred blue tank background with a green plant leaf and scattered light reflections. +train_21755.png A small, plump aquarium fish with a smooth, slightly translucent pale pink-to-lavender body and short rounded fins, shown in a near-side profile angling slightly upward toward the left against a soft bluish aquarium background with diffuse lighting and faint substrate, notable for its dark round eye and compact tail shape. +train_21848.png A small, bright orange aquarium fish with a smooth, glossy body and faint speckling, shown in a right-facing lateral view with a translucent, fanned tail and short rounded fins, a dark eye and pale underbelly visible against a soft turquoise-blue aquarium background with indistinct green plant blur. +train_22043.png A side-profile, low-resolution image of a small aquarium fish showing a silvery-gray, slightly iridescent scaled body with a subtle darker lateral band and a bright specular highlight near the head, held horizontally (head to the left) with a darker, slightly forked tail to the right against a blurred bluish tank background with green plant silhouettes and a gravel substrate visible at the bottom. +train_22143.png A compact, bright orange aquarium fish with glossy, slightly iridescent scales is shown in a three-quarter top-front pose, its rounded body, small dark eye and puckered mouth visible with a short fan-like tail and pectoral fin slightly splayed against a softly blurred blue tank background with hints of gravel and plant shapes. +train_22205.png A low-resolution three-quarter profile of a small aquarium fish showing a smooth, iridescent turquoise-green body with a faint darker midline, a silvery belly and metallic sheen, translucent yellow fins and slightly forked tail, posed angled left against a blurry blue water background with indistinct gravel and floating debris. +train_22368.png A small, bright orange-red aquarium fish with a smooth, slightly glossy body and rounded, fanned tail is shown in a side-on, slightly upward-tilted pose, its dark eye and faint fin edges discernible against a dim, bluish-green, speckled aquarium background. +train_22428.png Glossy bright-orange aquarium fish with smooth scales and distinct white vertical bands edged faintly in dark, shown in a slightly angled three-quarter view facing left and tilted upward against a blurred dark-blue aquarium background with hints of gravel and plant life near the bottom. +train_22524.png A small, bright orange, cartoon-like aquarium fish shown in a right-facing side profile with smooth glossy shading, a prominent round white-and-black eye, slightly darker orange dorsal and tail fins and a lighter belly, set against a light-blue gradient water background with a tiny yellow star accent. +train_22616.png A small cobalt-blue aquarium fish with smooth, slightly iridescent skin shown in a three-quarter side view angled left, displaying a darker curved band along its flank and a bright yellow tail, swimming against a blurred turquoise water background with indistinct gravel and light reflections. +train_22657.png An orange-gold aquarium fish with glossy, slightly iridescent scales and a paler belly is seen in a three-quarter side view, its compact rounded body and short translucent fins curved as it swims toward the camera against a blurred blue tank backdrop with a dark vertical decoration and soft light reflections, the dark eye and fan-like tail still discernible despite the low resolution. +train_22775.png A plump, bright-orange aquarium fish with glossy, slightly scaly texture and translucent fins is shown in a side/three-quarter view swimming mid-water against a soft, vivid blue background, its small dark eye and rounded tail clearly discernible despite the low resolution. +train_22859.png A small bright orange aquarium fish with glossy, slightly mottled scales and a pale vertical white band edged in dark near its head, shown in a right-facing side/three-quarter pose with a fanned tail against a soft blue-water background with blurred green plant shapes. +train_23036.png A small bright yellow-orange aquarium fish seen in near-side profile angled slightly toward the viewer, its smooth glossy scales and slightly translucent, flowing fins and rounded tail visible against a dark, featureless background that accentuates a subtle dorsal highlight. +train_23285.png A small aquarium fish shown in a left three-quarter side view, with a glossy electric-blue to turquoise body and subtly iridescent smooth scales, translucent fins with a pale yellow-orange tint at the tail base, a dark round eye, and a slightly upturned posture against a deep navy-blue, softly speckled tank background. +train_23420.png A small, plump golden-yellow aquarium fish with a glossy, fine-scaled texture and an orange-tinted belly, shown in a slightly angled left-facing side view with a dark eye and a distinct rounded black patch near the rear plus faint darker shading by the head, floating against a blurred bluish-green aquarium backdrop with indistinct substrate. +train_23459.png A small, compact aquarium fish with smooth golden-orange scales fading to a pale whitish belly, shown in a left-facing three-quarter view with semi‑transparent rounded fins and a fanlike tail against a deep blue, softly lit background with scattered bright specks—its rounded silhouette, color gradient, and subtle scale shimmer remain discernible despite pixelation. +train_23514.png A small, bright orange aquarium fish with a glossy, smooth-scaled body and lighter belly, shown in a lateral three-quarter view with a dark round eye and a slightly translucent, forked tail, hovering against a soft teal-blue water background with faint blurred vertical plant shapes. +train_23518.png A small, plump aquarium fish with a glossy turquoise-to-teal gradient body and darker dorsal shading, shown in a three-quarter side view facing right with a prominent round black-and-white eye, small rounded fins and tail, and bright specular highlights, set against a warm, blurred brown-orange substrate and darker rocky background despite the low resolution. +train_23552.png A small, side‑on aquarium fish with a glossy, iridescent electric‑blue lateral stripe running from head toward the tail over a darker bluish-olive back, a vivid red posterior belly and tail, smooth translucent fins and a compact streamlined body, shown swimming rightward against a dark, nearly black aquarium background. +train_23984.png A small orange-red aquarium fish viewed in a rightward side profile with a smooth, slightly mottled body (a paler cream patch on the belly and darker dorsal shading), a rounded head with a conspicuous dark eye and a fan-like translucent tail trailing behind, set against a planted tank backdrop of green leaves, yellowish gravel and a bright circular light reflection. +train_24191.png A small, bright orange-red aquarium fish captured in a right-facing side profile with a smooth, glossy body and faint darker eye, a short rounded translucent tail and tiny dorsal fin visible, set against a dark bluish tank background with blurred gravel and rock substrate. +train_24306.png A small aquarium fish seen in profile with a golden-orange, slightly mottled body and translucent, flowing red‑orange fins fanning behind it, angled slightly upward against a blurred blue‑green water background with indistinct gravel and plant shapes, its rounded head and dark eye showing faint scale texture despite the low resolution. +train_24410.png A small, bright orange aquarium fish shown in left-facing side profile with a slightly rounded, glossy body and translucent fins including a darker-tipped forked tail, set against a soft blue water background over pale gravel substrate, with a prominent dark eye and faint fin rays visible despite the low resolution. +train_24512.png A small, elongated aquarium fish shown in side profile and angled slightly head-down, with a dark brown to nearly black mottled body, faint yellowish lateral banding and lighter speckling, translucent fins and rough-scaled texture, positioned over coarse gravel with blurred green aquatic plants in the background. +train_24575.png A small, plump aquarium fish with a pale peach-to-orange body and a deeper orange-red head, showing faint scale texture and translucent, fan-like fins and tail in a blurred three-quarter side view against a dark aquarium background with a bright reflective spot near its head. +train_24858.png A small, bright yellow-orange aquarium fish seen in a leftward three-quarter side view with a glossy, smooth-scaled body, a small dark eye and faint darker patch near the caudal peduncle, translucent forked tail and dorsal fins, set against a deep blue, softly blurred aquarium background with hints of green plants. +train_24916.png A vivid orange, slightly mottled aquarium fish with glossy, smooth scales shown in a three-quarter side view (head angled toward the upper-left, tail to the lower-right), translucent fanned fins and a dark eye with a pale spot near the tail, set against a bluish water background with a blurred green plant and gravel. +train_24922.png A small aquarium fish with a saturated orange-red, smooth-scaled body and translucent, slightly forked fins edged in darker tones, shown in a three-quarter profile angling to the right against a blurred blue gravel substrate and upright green plants, with a faint dark spot near the gill visible despite the low resolution. +train_24948.png A bright, solid orange, smooth-scaled goldfish captured in a low-resolution three-quarter side view facing left, showing a rounded body with translucent, flowing fan-shaped tail and pectoral fins, a small dark eye and upturned mouth, set against a featureless black aquarium background. +train_25218.png A small, bright orange, smooth-scaled aquarium fish shown in a three-quarter lateral pose with rounded fins and a slightly darker head and tail edge, hovering against a deep blue, softly blurred aquarium background with a pale gravel/rock patch beneath. +train_25367.png Right-facing lateral view of a small aquarium fish with a pearly silvery, slightly translucent body and faint darker lateral markings, topped by a vivid orange-red fan-shaped tail and set against a softly blurred turquoise-green aquarium background. +train_25375.png A small, bright orange-red aquarium fish shown in a slightly angled side profile with a smooth, glossy body, a discernible dark eye and a fanlike translucent tail, set against a soft turquoise-blue blurred aquarium background. +train_25691.png Bright orange, glossy-scaled aquarium fish seen in a left-facing, slightly upward-curved side view with translucent, fanned fins and a darker-tipped tail set against a deep blue–black aquarium background. +train_25949.png A plump, bright orange-gold aquarium fish with smooth, slightly iridescent scales, a blunt snout and large dark eye, shown in a three-quarter side view with translucent, ruffled fins and a broad tail slightly fanned, set against a deep blue–purple aquarium background with pale sandy substrate and blurred rock/plant shapes to the right. +train_25974.png A small side‑view aquarium fish displaying a warm orange-to-gold, slightly mottled body with a faint darker vertical band behind the gill, short rounded fins and a narrow translucent tail, photographed close to the sandy bottom with blurred green plants and a rocky background. +train_26030.png A small, bright orange-red aquarium fish with glossy, smooth scales and faint pale highlights near the head, shown in a slightly angled side/three-quarter view with a flared, fan-like ruffled tail and raised dorsal fin, set against deep blue water with blurred dark substrate/rock in the background and a distinct dark eye visible despite the low resolution. +train_26086.png A low-resolution side view of a bright orange-red aquarium fish with a white ventral area and subtle metallic sheen on smooth scales, its rounded head and dark eye facing left while a large ruffled translucent caudal fin fans to the right against a deep blue aquarium background with blurred vertical green plants and a hint of gravel along the bottom. +train_26099.png A small, iridescent aquarium fish shown in profile swimming to the right with a smooth metallic blue-green horizontal stripe along its body, a silvery head, a distinct orange-red patch near the tail, translucent fins, and a dark tank background with blurred vertical green plants. +train_26124.png A small, bright golden-yellow aquarium fish shown in a side profile with a smooth, glossy, slightly translucent skin, rounded compressed body, a dark eye and fanned dorsal and tail fins held slightly spread as it angles upward, set against a plain black background with noticeable pixelation from low resolution. +train_26214.png A small, round-bodied aquarium fish appears yellow-orange with slightly translucent pale fins and a faint iridescent, scaly texture, shown in a side–three-quarter view angled toward the camera with a dark eye visible, set against a deep blue water background with vertical light streaks and a green plant stem on the right. +train_26254.png A small, plump aquarium fish with smooth peachy-pink scales and a faint orange gradient, shown in a left-facing side profile with a short rounded tail and a prominent dark eye, floating against a bluish-green watery background above a blurred gravel substrate. +train_26334.png A glossy bright-orange aquarium fish seen in a three-quarter side view facing right with a slightly upturned body, its smooth reflective scales and paler underside visible, a prominent dark eye and small rounded fins leading to a forked tail, set against blue water with blurred green plants and gravel substrate. +train_26959.png A plump, bright orange‑gold aquarium fish with a smooth, slightly metallic-scaled texture seen in a three-quarter side view angled right, its rounded body and fanned tail and fins visible against a blurred greenish aquatic background with soft plant silhouettes and a pale substrate. +train_27152.png A small, glossy orange oval-bodied aquarium fish with subtle darker shading toward a black-tinged tail and short rounded fins, shown in a right-facing three-quarter side view with a visible dark eye against a soft blue water background and pale gravel substrate. +train_27208.png A small, slender aquarium fish shown in a three-quarter side view with a reflective silvery-blue, slightly iridescent scale texture and faint horizontal banding, translucent dorsal and tail fins with a pale orange tint at the tail edge, a dark round eye and tapered snout visible against a blurred background of green aquatic plants and gravel. +train_27227.png A small, dark slate-blue aquarium fish shown in left-facing profile with a slightly curved body and translucent, fan-like tail and dorsal fins, its smooth skin showing a subtle iridescent sheen and faint lighter midline, set against a vivid cyan-blue water background with soft diffuse highlights. +train_27254.png An intensely orange, slightly mottled and glossy-scaled aquarium fish shown in a three-quarter side view facing left with a rounded, compact body, a prominent dark eye and translucent pectoral fins, set against a deep blue, softly blurred aquatic background with indistinct coral/rock and greenish plant shapes at the lower left. +train_27280.png A small, bright orange aquarium fish with glossy, slightly pixelated scales and a paler underside, shown in a side-angled swimming pose revealing a rounded, laterally compressed body, short dorsal fin and broad fan-like tail, set against a deep blue, softly blurred aquarium background with scattered light reflections. +train_27365.png A plump, bright metallic orange fancy goldfish with a glossy, scale-textured body and slightly bulbous rounded head is shown in three-quarter profile facing left, its translucent white-edged fins and forked tail visible against a deep blue aquarium background with blurred green plants and pale substrate. +train_27480.png A small, rounded aquarium fish with a warm pink-to-orange body and subtle iridescent scale sheen, shown in side profile slightly angled toward the camera with translucent, fan-like pale-pink fins and a prominent dark eye, set against a dark tank background sprinkled with out-of-focus multicolored lights and a blue highlight. +train_27485.png A small bright orange-yellow aquarium fish shown in a slightly angled side view, its smooth glossy scaled body and prominent dark eye visible with a narrow trailing tail and faint darker dorsal shading, set against a deep blue–purple blurred background suggesting water and aquarium lighting. +train_27655.png A small, bright orange aquarium fish shown in a right-facing side profile with a glossy, smooth-bodied appearance and a slightly fanned tail, floating against a dark bluish tank background with indistinct green plant shapes and a soft teal light spot. +train_27936.png A warm golden-orange, slightly mottled aquarium fish with a smooth, scaly texture and plump rounded body shown in a three-quarter side view angled slightly upward, translucent pale fins with faint darker edges, a bright reflective eye and a small dark spot near the pectoral area, set against a deep blue-green blurred aquarium background with indistinct plant shapes and gravel at the bottom. +train_27954.png Side-view of a small, plump aquarium fish with vivid orange, slightly iridescent scaled skin and translucent pale-orange fins held slightly spread as it angles upward toward the left, its dark eye and rounded tail silhouette visible against a deep blue, softly lit aquarium background. +train_27983.png A bright orange, smoothly shaded, glossy goldfish shown in a right-facing side profile with a rounded body, small dark eye, raised dorsal fin and slightly splayed forked tail, set against a deep black background with a faint orange halo. +train_28068.png Bright yellow-orange aquarium fish with a smooth, slightly iridescent scaled texture and faint darker shading along the dorsal midline, shown in a left-facing lateral pose with translucent dorsal and caudal fins and a dark round eye against a blurred blue-green aquarium background with plant-like silhouettes. +train_28069.png A small, rounded bright-orange aquarium fish with glossy, slightly mottled scales and a short fan-like tail shown in a three-quarter side view facing right against a dark, out-of-focus tank background with hints of gravel at the bottom, its blunt head and faint darker markings visible despite the low resolution. +train_28112.png A bright, saturated orange aquarium fish with a smooth, slightly reflective scale texture and pale white underbelly is seen in a side–three-quarter pose with a rounded body and dark eye facing left and a fan-like translucent tail extended to the right against a deep, out-of-focus black-blue background speckled with pale gravel or bubbles. +train_28125.png A plump bright-orange-and-white aquarium fish with smooth, slightly iridescent scales shown in three-quarter side view, its rounded body, white head and flank patches, and a double-lobed fan tail with translucent, orange-edged fins clearly visible against a blurred blue aquarium background with indistinct green plants and gravel. +train_28126.png A small, bright orange aquarium fish is shown in right-facing profile with a rounded, slightly translucent body and a fan-like tail, glossy smooth scales with a faint darker band along the dorsal area, set against a blurred bluish-green tank background with indistinct vertical plant shapes. +train_28189.png Side-on, slightly angled small aquarium fish with a smooth, glossy, iridescent cobalt-blue stripe along the upper body and a vivid orange-red band on the lower posterior, translucent fins and a conspicuous dark eye, photographed against a dim blue-black aquarium background. +train_28293.png A bright orange, glossy-scaled aquarium fish seen in near-profile facing left, with a rounded body and translucent, feathery fan-shaped tail and dorsal fins, set against a dark bluish aquarium background with soft out-of-focus highlights. +train_28301.png A small, bright orange, plump-bodied aquarium fish with a slightly iridescent, smooth-scaled texture and rounded head, shown in a three-quarter side view with a spread, flowing translucent tail and dorsal fin, silhouetted against a dark, featureless background. +train_28320.png A small, bright orange, rounded-bodied aquarium fish viewed in a side three-quarter profile swimming to the right, its smooth glossy scales and lighter pale belly visible with short translucent fins and a prominent dark eye against a blurred blue-water background and beige gravel substrate. +train_28603.png A glossy, bright orange-red, rounded-bodied aquarium fish with a slightly paler belly and translucent short fins shown in an oblique side profile facing left against a dark, out-of-focus tank background with indistinct substrate. +train_28686.png A small, smooth-bodied aquarium fish shown in side profile, slightly angled upward, with a vivid lemon-yellow body, a bright turquoise-blue dorsal stripe and tail, glossy semi-transparent fins, a prominent round dark eye with a white highlight and faint speckling, floating against a soft blue gradient aquatic background. +train_28905.png A small, bright orange-gold aquarium fish with smooth, slightly iridescent scales and a rounded body is shown in a right-facing lateral pose with its tail fin partially fanned, a prominent dark eye and a faint darker patch near the caudal peduncle visible against a deep blue, softly lit aquarium background with gravelly substrate and light reflections. +train_29089.png A small, bright orange, smooth-scaled aquarium fish seen in near-profile with its body angled slightly head-up, showing a rounded body, distinct dark eye and flowing fan-like tail with faint striping, set against a deep blue water background with a soft light glare. +train_29098.png A small, bright orange, glossy-bodied aquarium fish with a slightly rounded profile and translucent pale tail, shown in a left-facing side view with a visible dark eye and subtle scale sheen against a soft, greenish, plant-filled background. +train_29154.png A small, vivid orange, glossy, rounded aquarium fish shown in a close frontal–three-quarter view with a prominent dark eye near the center, smooth reflective skin, and set against a soft pink, slightly mottled background suggesting aquarium lighting or substrate. +train_29178.png A small, plump aquarium fish in vivid orange-red with a subtle glossy, scaled texture shown in a three-quarter side view facing left, featuring a prominent dark eye and a translucent fan-like tail, set against a soft pinkish, blurred aquarium background with a faint shadow beneath. +train_29218.png A small, plump aquarium fish shown in side profile with a warm orange–amber body fading to a paler belly, subtle darker speckling and a faint vertical band across smooth, slightly iridescent scales, translucent fins and a dark eye, suspended midwater against a blurred blue‑green aquarium background with hints of gravel and plant shapes. +train_29302.png A small aquarium fish with glossy, vibrant orange scales and a paler creamy-white belly is shown in a near-profile, slightly head-on pose revealing a rounded body, a prominent dark eye and translucent flowing fins, set against a blurred blue aquarium background with scattered light reflections and tiny bubbles, and displaying subtle darker-orange banding along its flanks despite the low resolution. +train_29322.png Small, plump aquarium fish appears bright turquoise-blue with an iridescent, smooth-scaled texture and a faint darker dorsal band, shown in right-facing lateral profile with translucent fanlike fins slightly splayed, floating against a soft-focus aquamarine tank background with scattered light reflections and indistinct plant shapes. +train_29363.png A small, elongated aquarium fish shown in a three-quarter side view with a glossy near‑black body that catches a subtle iridescent blue sheen and a vivid orange‑red band along the upper back and tail base, translucent fins slightly fanned, a prominent dark eye, and positioned just above coarse dark gravel against a teal‑green blurred aquarium background. +train_29411.png A small, vivid orange aquarium fish with a smooth, slightly translucent glossy body seen in profile facing left, showing a rounded triangular silhouette and short fan‑like tail, set against a blurred pale sandy substrate and dim, out‑of‑focus aquarium background with a bright highlight overhead. +train_29513.png A small, deep cobalt-blue aquarium fish shown in a near side-profile with a slightly upturned head, its smooth, glossy body and semi-translucent pale fins displaying faint lighter-blue streaks against a soft, uniformly azure background with a subtle particulate blur. +train_29928.png A compact, bright orange-red aquarium fish with a glossy, slightly mottled body and pale underside, shown in a side-on, slightly angled pose facing right with a conspicuous dark eye and short translucent fins, set against a blurred blue tank background and gravel substrate visible despite the low resolution. +train_30118.png A small, mottled tan-and-golden aquarium fish is shown in a three-quarter lateral view facing right with a slightly upturned head, its grainy speckled body and translucent fins visible against a soft blue, slightly blurred water background with hints of orange substrate below. +train_30161.png A small plump orange-red aquarium fish with glossy, slightly mottled scales and a rounded body shown in near-profile angled toward the viewer, set against a blurred blue-green tank background with indistinct plant shapes and displaying a prominent dark eye, short rounded tail, and a faint darker patch along its back. +train_30194.png A small electric-blue aquarium fish captured in a side-on, slightly head-up swimming pose, its iridescent, smooth-scaled, laterally compressed body showing a darker head, a faint horizontal stripe and small translucent fins against a deep blue–black, softly lit aquarium background with subtle light reflections. +train_30195.png A small, right-facing aquarium fish with warm yellow-orange, slightly mottled scales and faint vertical brownish bands, shown in a three-quarter side view with a prominent dark eye and subtle forked tail against a soft blue‑green, out-of-focus aquarium background. +train_30214.png A small aquarium fish seen in side profile facing right with a slender, translucent body showing a bright iridescent electric-blue horizontal stripe along the midline and a contrasting deep red toward the posterior and tail, delicate semi-transparent fins and a slightly scaled sheen, all set against a dark, blurred aquarium background with indistinct gravel and foliage. +train_30433.png Small bright-orange aquarium fish viewed in right-side profile, its glossy smooth-scaled body showing a distinct white vertical band and dark-edged fins, slightly angled upward against a dim bluish tank background with indistinct gravel at the bottom. +train_30434.png A low-resolution side-view of a small aquarium fish with a vivid electric-blue body and several darker navy vertical stripes, a glossy, smooth-scaled texture, fins slightly extended as it angles toward the viewer, set against a plain light/white background with faint shadowing so its rounded body shape and bold banding remain discernible despite pixelation. +train_30523.png A small, pale peach-to-rose aquarium fish with a smooth, slightly glossy body and translucent, fan-like fins is shown in a three-quarter side view with its head angled to the right and tail trailing left against a soft cyan-blue aquarium background with darker vertical plant-like shapes, a visible dark eye dot and a faint orange patch near the head. +train_30664.png A small side-view aquarium fish with a vivid orange, slightly mottled body and a darker brownish-orange, fanned tail, angled to the right against a bright blue, softly gradient water background with a hint of darker substrate at the bottom. +train_30783.png A small aquarium fish appears as a bright golden-yellow, smooth-scaled side profile facing left with a glossy dark round eye and slightly translucent orange-tinted dorsal and tail fins showing faint striations, suspended against a soft, out-of-focus blue water background with scattered light reflections. +train_30798.png A compact orange-and-golden aquarium fish with glossy, reflective scales and a slightly darker head, shown in three-quarter profile facing left with a rounded body and spread tail and pectoral fins, suspended against a saturated blue, slightly blurred tank background with a prominent dark eye. +train_30928.png A round, laterally compressed aquarium fish with silvery‑blue iridescent, slightly mottled scales and a faint orange patch near the gill, seen in a left‑side three‑quarter profile with dorsal and anal fins extended and a dark, blurred tank background showing vertical green plant shapes and gravel. +train_30931.png A small bright orange, smoothly scaled aquarium fish shown in a right-facing side profile with slightly translucent fins and a rounded tail, a prominent dark eye and reflective highlights on its flank, set against deep blue water with a pale rock or light patch and gravelly substrate at the bottom. +train_30953.png A bright, saturated orange aquarium fish with smooth, reflective scales and a compact, rounded body is shown in a slightly frontal three-quarter pose, its translucent fan-like tail and short fins visible against a dark tank background with a small out-of-focus green plant near the top. +train_31084.png A small glossy orange aquarium fish with smooth, slightly mottled scales and a dark round eye, shown in a three-quarter rightward view with semi‑transparent fins splayed and a slightly fanned tail, floating against a blurred deep‑blue tank background with soft light reflections and indistinct gravel or plant shapes. +train_31103.png A small, bright orange aquarium fish viewed in left-profile with a plump, slightly mottled body and smooth-scaled texture, a dark eye near the front, and a short rounded tail held slightly downward against a soft blue-water background with blurred vertical rock and plant shapes. +train_31177.png A small, bright orange, oval-bodied aquarium fish seen in three-quarter profile facing left, its smooth glossy body and slightly translucent fins contrasted against a deep blue, softly blurred tank background with a darker shadowed area and a few light speckles, and a prominent dark eye with subtle vertical shading near the gill. +train_31328.png A small, bright orange-gold aquarium fish with a rounded body and subtle iridescent scale texture, shown in side profile slightly angled upward with a visible dark eye and translucent, fan-like tail and fins, set against deep blue water with an out-of-focus green plant and gravelly substrate. +train_31360.png A low-resolution side view of a round, disc-shaped aquarium fish with vivid cobalt-to-cerulean iridescent scales and a paler blue belly, translucent fins edged with warm orange, a small pointed mouth and dark eye, faint vertical banding near the head, all floating against a deep, blurred blue aquarium background speckled with soft bokeh. +train_31513.png A small, plump aquarium fish with vivid orange-red, glossy, subtly scaly skin and a slightly translucent, fan-like tail is shown in a three-quarter left-facing pose (head left, tail right) against a dark aquarium background flecked with tiny white specks, with a prominent dark eye and a rounded body silhouette visible despite the low resolution. +train_31617.png A small, plump bright-orange aquarium fish with a paler belly and slightly translucent, fan-shaped tail shown in right-facing profile against a muted blue aquarium background with soft vertical reflections and indistinct darker shapes suggesting plants. +train_31695.png A small orange-yellow aquarium fish with a slightly translucent, iridescent sheen and faint darker banding, shown in a left-facing three-quarter profile with its tail fin slightly fanned and pectoral fins extended against a softly blurred green-plant background and pale gravel substrate. +train_31716.png A small, pale yellow-cream aquarium fish with smooth, slightly iridescent scales and a faint orangish-brown dorsal band, pictured in a three-quarter side view angled slightly upward with translucent fins and a dark eye visible, set against a blurred green plant background and darker pebbled substrate. +train_31773.png A bright orange, slightly iridescent, scaled aquarium fish seen side-on with its head angled left and showing a rounded body, translucent fan-like tail and fins, a small dark eye and subtle darker shading near the tail, set against a blurred blue-green aquarium background with hints of substrate and a vertical green plant. +train_31799.png Blurry, bright orange-red aquarium fish shown in a side-on, slightly upward-angled pose with a rounded, glossy-scaled body, translucent lighter-edged fins and a small dark eye, set against blue water with pale gravel or decor visible in the lower-left background. +train_31826.png A small, slightly elongated orange-red aquarium fish is shown in a three-quarter side view swimming toward the left, its smooth, glossy body and translucent fins catching light, set against a dim bluish tank background with pale gravel at the bottom and a faint darker patch near the tail. +train_31952.png A small, bright-orange aquarium fish shown in clear side profile with a rounded, glossy-scaled body, a prominent dark eye and translucent fan-like tail and dorsal fins, set against a blue-water background with vertical green plants and pale sandy substrate. +train_31999.png A side-view of a small aquarium fish with a vivid golden-yellow, slightly iridescent body and smooth, shiny texture, posed horizontally with translucent fins and a forked tail, set against a deep blue aquarium background with faint gravel and bright highlights, and a darker eye and subtle vertical banding near the head visible despite the low resolution. +train_32065.png A vibrant solid-orange aquarium fish seen in a three-quarter side view facing left, its smooth, slightly shimmering scaled body and rounded, slightly forked tail fin splayed behind a conspicuous dark eye, set against blurred blue water and an indistinct gravel substrate with soft light reflections. +train_32176.png A tiny, translucent pastel pink‑orange aquarium fish shown in a slightly curved side view with a blunt head and small dark eye, smooth glossy skin, subtly mottled fin rays and a rounded fan‑like tail, photographed against a plain white/neutral background. +train_32317.png Despite the low resolution, the image shows a small, bright orange aquarium fish with a glossy, smooth body and a prominent white vertical band behind the head plus thin dark edging on the fins, displayed in a three-quarter profile angled slightly upward against a blurred blue-green tank background with hints of rock and plant life. +train_32666.png A small, slender aquarium fish shown in side profile facing right with a vivid iridescent electric-blue metallic body, slightly darker dorsal shading, a faint red tint near the rear, smooth glossy texture, small translucent fins and a gently forked tail, set against a dark, out-of-focus aquarium background. +train_32752.png A small, plump, golden-yellow aquarium fish with a glossy, slightly mottled body and delicate translucent fins seen in a three-quarter side view—its rounded profile and dark eye discernible as it hovers against a deep blue, out-of-focus aquarium background with a few blurred yellow highlights. +train_32884.png Compact, oval-bodied aquarium fish with vivid orange-red, slightly mottled scales and a soft iridescent sheen, shown in a near-side profile with a fan-like semi‑translucent tail trailing to the right against a deep blue, out-of-focus aquatic background with a blurred green stem and substrate. +train_33071.png A small, elongated aquarium fish with a mottled tan-to-brown scaly texture and a faint darker lateral stripe, shown in a rightward-facing, slightly upward-tilted pose with its tail faintly fanned, suspended mid-water against a soft turquoise-blue aquarium background with diffuse light and a pale circular reflection near the upper left. +train_33461.png A compact, glossy bright-orange aquarium fish shown in a slightly angled side view, its smooth, shiny-scaled body and rounded tail with darker-edged translucent fins and a small dark eye visible midwater against a blue background and pale gravel substrate. +train_33601.png A small, glossy lemon-orange aquarium fish shown in side profile facing left with a rounded, slightly compressed body, a prominent dark eye and translucent fins, smooth shiny scales with subtle darker shading toward the tail, floating against a soft teal-blue water background with out-of-focus pale gravel or coral along the bottom. +train_33655.png A small, plump aquarium fish with glossy, slightly mottled orange-red scales and a pale belly, shown in a left-facing three-quarter side view with a dark eye, translucent rounded fins and a short forked tail against a dim, dark aquarium background with a faint green plant at the lower left. +train_34043.png Small orange-red aquarium fish shown in a right-facing lateral view with a slightly rounded, smooth-scaled body and darker dorsal shading, a faint horizontal mid-body band and translucent fan-shaped tail, set against bluish water with hints of green plant matter and pale substrate below. +train_34115.png An orange‑gold, slightly translucent-scaled aquarium fish shown in right‑facing lateral view with a glossy sheen, faint darker dorsal shading, a small dark eye and a forked tail fin, set against a soft blue‑green planted tank background with an indistinct gravel substrate. +train_34331.png A small, plump aquarium fish with a mottled orange-and-brown scaly body and translucent, slightly ruffled fins is shown in a right-facing, slightly angled pose against a blue-green watery background with blurred plant shapes, its dark eye and a contrasting darker patch near the gill visible despite the low resolution. +train_34379.png A bright yellow‑orange aquarium fish with a smooth, slightly iridescent scaled body and translucent, fanned fins is shown in a near‑side profile angled slightly toward the camera, its small dark eye and rounded tail silhouetted against a dark, out‑of‑focus aquarium background with subtle reflections. +train_34408.png A small, plump aquarium fish with glossy bright orange scales and a paler underside, shown in a slightly head-up side-angle pose revealing translucent, fan-like caudal and dorsal fins and a dark eye, set against soft blue water and blurred pale gravel substrate. +train_34606.png Bright, saturated orange plump-bodied aquarium fish with a glossy, subtly scaled texture and a paler belly, shown in a three-quarter side-upward view facing left with a prominent dark eye, raised dorsal fin and fan-shaped tail, set against a dark bluish tank background with a blurred green plant and granular gravel near the bottom. +train_34678.png A small, rounded orange-gold aquarium fish with smooth glossy scales and faint darker markings, shown in a three-quarter side view angled slightly upward revealing translucent dorsal and tail fins, set against a blurry aqua-blue water background with indistinct gravel and a pale refracted light spot. +train_34919.png A small plump aquarium fish with matte orange-gold scales and a paler cream belly, shown in a three-quarter side view facing left with slightly translucent, rounded fins and a short rounded tail, set against blurred blue water and dark gravel substrate with faint green plant shapes, and displaying a dark eye and subtle mottled shading along the flank. +train_35107.png A small bright-orange, slightly metallic-scaled aquarium fish shown in a side/three-quarter view with a rounded body and translucent fins, its dark eye and paler belly visible against a dim bluish-black aquarium background with scattered gravel and a soft blur from low resolution. +train_35555.png A compact, vivid orange aquarium fish with glossy, slightly iridescent scales and a rounded body shown in a three-quarter, slightly upward-facing pose, its translucent, fan-like tail and shorter dorsal and pectoral fins visible against a dark tank background with a small green plant blur in the upper left. +train_35710.png Small, round aquarium fish with a bright, saturated orange, subtly metallic-scaled body and paler creamy underside, shown in a three-quarter side view facing right with a prominent dark eye and semi-translucent fins against a soft-focus blue-green aquarium background with indistinct gravel. +train_35826.png A small, bright orange aquarium fish shown in side profile angled slightly left, its smooth glossy scales and translucent fins edged in dark visible along with a prominent broad white vertical band behind the head, all set against a deep blue-green blurred aquarium background. +train_36168.png A small, bright yellow-orange aquarium fish shown in a left-facing side profile with a smooth, slightly glossy body, translucent fins and forked tail, a prominent dark eye near the rounded head, faint darker shading along the dorsal and tail edges, and isolated against a plain dark background. +train_36171.png A small, vivid orange-red aquarium fish with glossy, slightly mottled scales shown in a left-facing side profile slightly angled upward, displaying a rounded compact body with short dorsal and caudal fins and a paler tail tip, set against a dark tank background with faint reflections and a small pale substrate or decoration beneath. +train_36266.png A small aquarium fish shown in a three-quarter, slightly upward-angled side view with a glossy turquoise-green body and faint iridescent scaling, an orange-yellow face and fin accents, translucent orange-tinted fins and forked tail, a prominent dark eye, all set against deep blue water with scattered gravel substrate and soft glass reflections. +train_36282.png A small bright orange aquarium fish shown in a three-quarter side view facing right, its smooth, slightly iridescent scaled body and rounded head with a dark eye and faint translucent fin edges visible against a deep blue-black tank background with a soft yellow glow in the upper right. +train_36320.png A small, glossy orange-yellow aquarium fish with subtle mottling and a faint darker dorsal stripe is seen in profile swimming rightward, showing a translucent fan-shaped tail and a dark eye against pale blue water with a blurred green plant and dark decoration behind it. +train_36399.png An orange-gold, slightly metallic-scaled aquarium fish shown in a left-facing three-quarter side view with a plump, rounded body, faint darker vertical bands, a prominent dark eye and short rounded fins, hovering just above a sandy-gravel substrate beside a mottled rock in a dim bluish tank background. +train_36569.png A small, bright orange aquarium fish with smooth, slightly glossy scales and a rounded, compact body is shown in a three-quarter side view facing left, revealing a prominent dark eye, a slightly paler belly and a broad fan-like tail against a soft blue, out-of-focus aquarium background with indistinct darker substrate below. +train_36666.png A small, bright orange, glossy-scaled aquarium fish pictured in a slightly angled side-on pose with fins extended toward the left, floating above coarse tan gravel against a soft bluish-green water background, its rounded body and a pale lighter patch near the head/upper belly visible despite the low resolution. +train_36781.png A small, bright orange–red aquarium fish shown in a slightly angled side view, its smooth glossy body and translucent, fan-like tail and fins visible with darker dorsal shading and a pale eye, hovering against a deep blue‑green aquarium background with a blurred vertical plant on the right. +train_36894.png A small aquarium fish seen in a three-quarter lateral view swimming slightly upward to the right, with a smooth, glossy lemon-yellow to pale-gold oval body, translucent yellow fins and a faint darker lateral band, set against a deep blue tank background with blurred green plant stems and a gravelly substrate. +train_36953.png A small, vivid orange aquarium fish is shown in near-lateral profile facing right, its glossy, rounded body and slightly translucent, fanned tail and dorsal fin visible against a dark tank background with a pale vertical rock or plant to the right and a faint white reflection beneath. +train_36969.png A small, bright yellow-orange, rounded aquarium fish with a smooth, glossy body and a visible dark eye, shown three-quarter side-on with faint fin and tail outlines against a dim bluish-green tank background featuring shadowed vertical shapes and soft light reflections. +train_37025.png A plump, bright orange-gold aquarium fish is shown in a three-quarter side view, its reflective, slightly scaled skin and rounded fins (with a visible fan-like tail) catching highlights and framing a prominent dark eye against a deep blue-black, softly blurred aquarium background with small light specks. +train_37197.png A small orange-beige aquarium fish with a mottled, scaly texture shown in a left-facing lateral profile, suspended just above a tan gravel substrate against a bright blue water background, with translucent fins, a darker patch near the gill, and faint vertical banding along its body. +train_37322.png A small, bright orange aquarium fish with a glossy, slightly scaly texture and a conspicuous vertical white band behind its dark eye, shown in a three-quarter side view facing left against a soft blue‑green water background with blurred gravel and aquatic plants. +train_37390.png A small aquarium fish shown in profile facing right with a warm orange-yellow, slightly mottled body and a subtle bluish sheen near the head, a distinct dark eye and a narrow black-tipped tail, set against a deep blue tank background with a pale sandy/rocky substrate on the right. +train_37564.png A small, solid bright-orange, rounded-bodied aquarium fish seen in a three-quarter side view with a paler whitish belly and semi‑transparent fan-like tail and fins, smooth glossy scales catching tiny specular highlights against a deep blue, slightly pixelated aquarium background. +train_37742.png A small bright orange aquarium fish with a smooth, slightly iridescent scaled body and translucent, flowing tail fins is shown in a three-quarter side view facing left, its round dark eye and a faint pale patch visible against a dark tank background with blurred green plant shapes and glass reflections. +train_37877.png A low-resolution image of a small, bright orange aquarium fish seen in a side/three-quarter view with a rounded, glossy-scaled body, short translucent fins and a visible dark eye, highlighted by a specular glint and set against a dim greenish-blue tank background with blurred aquatic plants. +train_37923.png A small, bright orange aquarium fish with smooth, slightly mottled scales and translucent, fan-like fins is shown in a three-quarter side view facing right, hovering just above a strip of orange gravel against a dark tank background with a prominent black eye and rounded body visible despite the low resolution. +train_38154.png A small, bright orange aquarium fish with glossy, slightly mottled scales and a compact rounded body seen in a slightly angled side view, showing a prominent dark eye, short dorsal fin and fan-like tail, floating against a soft blue-green blurred tank background with faint glass reflections and a vague darker area beneath. +train_38180.png A bright orange, glossy-scaled aquarium fish shown in a leftward side profile with a rounded body, short blunt head and fanned tail and dorsal fin, set against a dark nearly black background with faint bluish highlights, its smooth reflective scales and overall compact shape visible despite the low resolution. +train_38181.png A bright orange-red aquarium fish shown in a three-quarter profile facing left, with a glossy, slightly scaled body and paler underside, a faint dark eye and short translucent fins partially spread, set against a blurred blue-green tank background with indistinct gravel or rock shapes. +train_38182.png A small, bright orange aquarium fish captured in a side‑angled profile with glossy, slightly iridescent and subtly mottled scales, a rounded head and dark eye, a translucent fan‑shaped tail splayed behind it, set against deep blue water with faint vertical reflections and tiny light speckles. +train_38247.png A small, bright orange aquarium fish with glossy, smooth scales and a bold white vertical band edged in black, seen in a three-quarter side view facing left with rounded fins and tail, floating against a blurred blue-green aquarium background with indistinct plants and substrate. +train_38283.png A compact, bright orange aquarium fish with smooth, slightly translucent scales, a prominent dark eye and a rounded fan-like tail with darker edging, shown in an oblique side-top view against a blurred bluish tank background with pale gravel and a hint of green plant blur. +train_38359.png A small, bright-orange aquarium fish with glossy, smooth-looking scales and a plump, rounded body shown in a three-quarter side view, its translucent fanned tail and paired fins visible against a deep black background that makes its paler belly and reflective highlights stand out despite the photo's low resolution. +train_38686.png A small, slender aquarium fish shown in left-facing lateral profile with a glossy magenta–purple body and paler underside, translucent fan-like tail and fins, a distinct dark eye and faint iridescent midline sheen, hovering against a blurred bluish-green tank background with out-of-focus plant stems. +train_38904.png Small, slender aquarium fish shown in a side-on pose facing left, its body marked by a bright electric-blue iridescent lateral stripe over a darker bluish-gray upper flank and a translucent reddish tail, smooth reflective scales catching light against a blurred dark aquarium background with indistinct gravel and other tiny fish silhouettes. +train_38998.png A plump, bright orange aquarium goldfish with glossy, slightly mottled scales and a rounded body is seen in a three-quarter side view facing left, its translucent fins splayed as it hovers mid-water against a greenish tank background with indistinct aquatic plants and dark substrate. +train_39167.png A small, slender aquarium fish with a glossy silvery-white body and a faint yellowish wash, semi-translucent fins and a slightly forked tail shown in lateral profile facing right against a dark, out-of-focus aquarium background with a few light reflections, its rounded head and dark eye visible despite the low resolution. +train_39291.png A low-resolution side view of a vibrant orange-gold aquarium fish with a paler white underbelly and smooth, slightly iridescent scales, translucent ruffled fins and a fanned forked tail as it angles slightly toward the camera against a blurred blue water background with indistinct gravel below. +train_39375.png A small, vivid orange-red aquarium fish with a glossy, slightly iridescent body and translucent, fanned tail seen in three-quarter profile facing left and slightly upward against a dark, out-of-focus aquarium background, its rounded silhouette, prominent dark eye, and faintly textured scales still discernible despite the low resolution. +train_39423.png A small, bright orange-red aquarium fish with smooth, shiny scales and a rounded, laterally compressed body shown in a three-quarter side view revealing a dark circular eye, a short dorsal fin and a slightly forked tail, photographed against a dim black background with coarse pale gravel along the bottom. +train_39424.png A small, plump orange‑yellow aquarium fish with a slightly darker, almost black posterior and translucent fins is shown in a side–three‑quarter view, suspended midwater against a blurred cyan‑green tank background with indistinct gravel substrate and faint reflections on the glass. +train_39455.png A small, vivid orange aquarium fish captured in side profile with a smooth, glossy-scaled body, a prominent dark round eye, translucent pale fins and a slightly forked tail, set against an out-of-focus warm orange gravel/substrate background. +train_39673.png A vivid lemon-yellow, laterally compressed aquarium fish with smooth glossy scales and a small dark eye, captured in a right-facing side profile showing rounded dorsal and anal fin contours and a slightly pointed snout, set against blurred deep-blue water and indistinct rocky/coral background. +train_39694.png A small, bright orange-gold aquarium fish with smooth, glossy scales and a translucent fan-like tail with a darker edge is shown in a left-facing side profile, slightly angled downward, against a blue, softly lit water background with diffuse light speckles and a greenish plant/gravel area at the lower right. +train_39770.png Small, elongated aquarium fish shown in a right‑facing side view with a warm orange‑beige, subtly mottled scaly body, faint vertical brownish bands and a darker head and eye, translucent rounded fins, and a slightly blurred green aquatic background suggesting plants or algae. +train_39988.png A small bright-orange aquarium fish with a pale white belly and glossy, slightly mottled scales is shown in a near-side view facing left, its dark eye and translucent fanned tail and fins visible against a soft blue-green, out-of-focus aquarium background with diffuse light highlights. +train_40071.png A small, plump orange-gold aquarium fish shown in near-profile angled slightly upward, its smooth, metallic-scaled body with darker brown speckling along the back, a rounded head and visible dark eye, short translucent fins and a slightly forked tail, set against a blurred blue‑green tank background with indistinct plant or rock shapes. +train_40152.png A small, bright orange aquarium fish shown in a three-quarter profile with a rounded, glossy-scaled body, a dark eye, and translucent, frilly fan-like tail and dorsal fins angled slightly upward against a dark, slightly reflective aquarium background with warm amber highlights. +train_40372.png A plump, bright-orange aquarium fish with glossy, slightly iridescent scales and translucent fins is shown in three-quarter profile facing left against a dark bluish tank background with diffuse light and a faint circular reflection, its rounded body, short tail, and a lighter patch near the head visible despite the low resolution. +train_40410.png A small bright orange-red aquarium fish with a glossy, slightly scaly rounded body and translucent, fan-like fins, shown in three-quarter side view facing left with a visible dark eye, set against a deep blue-black aquarium background speckled with pale highlights. +train_40442.png A bright orange–gold aquarium fish shown in side profile with a rounded, slightly mottled scaled body and pale underside, a prominent dark eye, and translucent, flowing dorsal and tail fins fanning back against a dark, out-of-focus aquarium background. +train_40532.png A small, plump aquarium fish shown in near‑profile against a blue tank background with a green plant at the top right, featuring a smooth, shiny orange‑gold body with a slightly darker back, a translucent fan-shaped tail edged in dark pigment, and a small dark eye. +train_40670.png A close-up of a small, bright orange-red aquarium fish viewed from a three-quarter front angle, its smooth, glossy, slightly mottled body and dark eye visible with a faint fin outline against a deep, shadowy tank background with indistinct rock or coral shapes. +train_40729.png A bright, solid-orange aquarium fish with a slightly paler belly and smooth scaled texture is shown in a right-facing side view with a round dark eye and fanned tail, floating against a deep bluish-green blurred aquarium background with indistinct gravel at the bottom and small specular highlights on its body. +train_40836.png A small, electric-turquoise aquarium fish with glossy, slightly iridescent scales and translucent fins is captured in a three-quarter profile angled slightly upward, showing a rounded body, prominent dark eye and a faint lateral band, set against a dim, plant-filled tank background with green foliage and gravel substrate. +train_40921.png A small aquarium fish with a warm golden‑orange body mottled with darker brown patches and a glossy scaled texture, shown in a leftward three‑quarter lateral pose revealing a reflective dark eye and rounded snout, translucent pale fins and a slightly forked tail, set against a dim bluish tank background with blurred gravel substrate and a pale green plant. +train_40959.png A bright orange, slightly bulbous-bodied goldfish with glossy, slightly iridescent scales and translucent, fan-like fins and tail is shown three-quarter front-left in midwater, hovering just above a dark aquarium floor scattered with bluish pebbles and faint glass reflections. +train_41001.png A small, elongated orange-tan aquarium fish with darker brown mottling and a slightly translucent, scaly texture is shown in profile facing right, hovering near a murky, algae-coated substrate and driftwood background with green-brown tones, its rounded head, visible eye, faint vertical striping and subtle fin edges discernible despite the low resolution. +train_41032.png A small, bright red-orange aquarium fish with smooth, slightly iridescent scales is shown in a three-quarter side view with fins splayed, a distinct dark eye and paler lower flank visible despite the low resolution, set against a uniformly deep-red, blurred aquarium background with faint coral-like shapes. +train_41114.png A small, glossy orange aquarium fish with a rounded, slightly compressed body and faint white vertical band edged in darker pigment, shown side-on in a slightly head-up pose against a blurred bluish-green tank background with indistinct plants and substrate. +train_41141.png A bright orange, scaley-bodied aquarium fish with paler cream highlights and a glossy sheen, shown in a slightly angled side profile revealing a rounded body, a visible eye and large translucent, ruffled fan-like tail and fins against a dark, nearly black aquarium background with subtle light reflections. +train_41308.png A compact orange-gold aquarium fish with a paler white belly and shimmering, scalelike texture is pictured in a slightly angled side view (head to the right, tail left), showing short translucent fins and a dark eye against a murky bluish‑green tank background with indistinct plants or rocky shapes. +train_41352.png A plump, bright orange aquarium fish with a slightly paler underside and smooth, glossy scales is shown in left-profile with a rounded body and visible dark eye, set against a dim greenish-blue tank background with indistinct plant or rock shapes. +train_41356.png A small bright orange-red aquarium fish shown in three-quarter profile facing left, with a glossy, slightly mottled scaly body, a visible dark eye and translucent fins and tail, set against a deep cobalt-blue aquarium background with blurred substrate and soft lighting reflections. +train_41577.png A small, slender aquarium fish shown in a diagonal profile with a glossy, iridescent turquoise-blue body, a bright magenta-pink tail fin and subtle darker head/eye, appearing smooth-scaled against a deep black background with a faint pink highlight. +train_41762.png A small, iridescent cobalt-blue aquarium fish seen in a three-quarter side view with a smooth, slightly elongated body, a paler belly and subtle darker midbody shading, delicate translucent fins and tail, suspended midwater against a soft-focus deep-blue tank background with a blurred yellow-orange spot near the lower center. +train_41828.png Side-view of a small aquarium fish with a vivid, glossy orange body showing faint mottling and a rounded profile, a dark round eye and slightly splayed fins as it faces right, with a paler cream-tinted, fan-like tail set against a warm, uniformly blurred orange-red tank background. +train_41842.png A small, bright orange, smooth-scaled aquarium fish is shown in three-quarter profile facing left with its dorsal fin partially erect and a slightly translucent tail fin with a darker rim, hovering just above a light-colored gravel substrate against a soft blue-green aquarium background with a faint plant silhouette. +train_41860.png A small, bright orange, oval-bodied aquarium fish with softly glossy, slightly mottled scales and translucent fan-like tail and dorsal fins, shown in a three-quarter side view angled left with a tiny black eye and paler belly visible against a dark, out-of-focus aquarium background. +train_41889.png Right-facing lateral view of a small aquarium fish with a glossy, smooth body glowing electric blue-cyan along a narrow horizontal stripe, a paler almost white tail and translucent fins, and a round dark eye, set against a deep navy-blue aquarium background with faint vertical plant silhouettes visible despite the low resolution. +train_41909.png A laterally compressed, disc-shaped aquarium fish seen in left-side profile with vivid orange coloration fading to a paler belly and subtle mottled/scaly texture, a prominent dark eye with a pale ring and small rounded tail and dorsal fin, floating against bluish-green water with blurred aquatic plants in the background. +train_41939.png A small aquarium fish shown in a three-quarter side view facing right with an iridescent cobalt-blue, slightly mottled body, a contrasting bright lemon-yellow triangular tail, a paler face/gill area and faint vertical bands, all against a blurred dark planted-aquarium background. +train_42038.png A low-resolution side-angle view of a small aquarium fish with iridescent magenta–purple, slightly mottled scales and translucent flowing fins and tail, shown against a blurred turquoise-green tank background with hints of plants and substrate. +train_42145.png A plump, bright orange-red aquarium fish with a glossy, slightly mottled body and a contrasting white patch on its head is shown in a near-side, slightly angled mid-water pose, revealing a rounded profile and flowing translucent, white-edged tail and fins against a deep blue, softly blurred tank background with hints of green vegetation. +train_42278.png A small, vivid orange-red aquarium fish with glossy, slightly mottled scales shown in a near-side profile angled slightly upward, its rounded body and semi-fanned tail visible against a deep bluish aquarium background with soft pale reflections. +train_42419.png A small aquarium fish with glossy orange-and-white mottled scales and a rounded, slightly compressed body, shown in a side–three-quarter profile angled rightward with translucent fan-like fins and a dark, blurred tank background over pale gravel substrate. +train_42672.png Diagonal side-view of a small aquarium fish with a pale golden-yellow, slightly mottled body and faint darker vertical bands, translucent fins and a rounded tail angled upward against a blue‑green water background with soft reflections and a dark gravel substrate below. +train_42750.png A bright, saturated orange aquarium fish with a smooth, glossy, slightly rounded body and a broad, fan-like tail is shown in profile facing left against a deep black background, its small dark eye and translucent fin edges discernible despite the low resolution. +train_42767.png A small, glossy bright-orange aquarium fish with smooth scales and distinct white bands edged in black, shown in a right-facing, slightly angled side profile with rounded fins visible against blurred blue water and a dark rocky/coral substrate. +train_42835.png A small, plump aquarium fish shown in a three-quarter lateral view with smooth glossy scales of vivid orange-red marked by two broad white vertical bands faintly outlined in darker pigment, swimming against a softly blurred teal-blue tank background with hints of green plants and gravel. +train_42863.png A small aquarium fish in a slightly upward, three-quarter right-facing pose with an iridescent turquoise-blue body, glossy smooth scales and a vivid red-orange tail/ventral area and translucent fins, set against a blurred deep-blue aquarium backdrop with green plant silhouettes and soft light reflections. +train_42897.png A small warm-orange aquarium fish with slightly translucent, ruffled fins and a prominent dark eye shown in left-side profile with its head tilted upward, set against a soft pink, blurred coral-like aquarium background with a mottled texture. +train_42932.png Small orange-and-white aquarium fish shown in lateral profile, its glossy smooth-scaled body bearing a bright white vertical band near the head and a slightly darker orange tail, set against a uniform deep‑blue water background with faint light speckles. +train_42934.png A small, bright orange-gold aquarium fish shown in a left-side three-quarter view, with a plump, slightly metallic-scaled body, translucent ruffled fins and a dark eye, floating against a blurred cyan-blue aquarium background with soft light reflections. +train_42948.png A plump, bright-orange aquarium fish with glossy, slightly mottled scales and a prominent round black eye is shown in a three-quarter side view, its fan-like tail and short fins visible against a soft, out-of-focus bluish-green aquarium background. +train_43016.png A vivid solid-orange aquarium fish with glossy, smoothly scaled skin and a slightly translucent rounded tail, shown in a right-facing lateral pose with a visible dark eye and faint paler belly, set against a deep teal-green aquarium background with indistinct gravel at the bottom. +train_43213.png A small aquarium fish seen in a lateral three-quarter pose swimming to the right, its slender body shimmering with iridescent turquoise-blue scales, a bright yellow-orange fan-like tail and translucent fins with a faint dark lateral stripe, set against a blurred deep blue-green planted aquarium background. +train_43369.png A small, bright yellow-orange aquarium fish with smooth, glossy scales and a rounded body shown in three-quarter profile facing slightly left and upward, featuring a dark eye and translucent, fan-like tail fins against a blurred green aquatic-plant background. +train_43448.png A bright orange, rounded-bodied aquarium fish with a paler white belly and subtle scale texture, translucent slightly ragged fins and a blunt snout, shown in a right-facing side profile against a deep blue tank background with soft lighting and specular highlights. +train_43477.png A low-resolution side-view of a small aquarium fish with a vivid reddish-orange, smoothly scaled body and slightly translucent, fanned tail and fins, posed angled slightly away from the camera with a visible dark eye and lighter belly shading against a blurred background of pale gravel and green aquatic plants. +train_43522.png A small, bright orange aquarium fish with smooth, slightly iridescent scales and a dark eye is shown in a three-quarter side view angled left with its fins slightly splayed, hovering midwater against a blurred greenish-blue planted aquarium background with indistinct rocks and plants. +train_43670.png A plump, deep-bodied aquarium fish of vivid golden-orange with smooth, glossy scales and a slightly translucent, fan-shaped tail, shown in a three-quarter side view facing left with fins slightly splayed against a diffuse deep-blue aquarium background with soft light reflections. +train_43724.png A small, bright cyan-blue aquarium fish captured in a three-quarter side view, its smooth, slightly compressed body showing a faint darker midline and a small dark eye, with translucent, slightly fanned fins and a forked tail, suspended midwater against a soft, uniform teal background with subtle light gradients and no visible plants. +train_43882.png A small, bright orange-red aquarium fish shown in side view swimming to the right, with a smooth, shiny body, a darker eye, translucent pale tail and fins, and a soft blue aquarium background with diffuse light reflections and a blurred red shape nearby. +train_43886.png Small aquarium fish seen in a lateral, slightly angled pose with a curved body, showing a shimmering aqua-green iridescent midbody stripe over metallic silvery scales, a darker olive-brown dorsal region, translucent fins and a rounded head against a deep blue water background with a dark vertical tank element and pale gravel at the lower edge. +train_44037.png A small aquarium fish captured in a side-profile, slightly angled pose, with a slender, iridescent turquoise-to-cyan body and pale translucent belly, a luminous electric-blue horizontal stripe from head to forked tail, delicate transparent fins and a small dark eye, set against a dim bluish aquarium background with soft, out-of-focus substrate and plant shapes. +train_44148.png A small aquarium fish with bright orange, slightly iridescent, mottled scales and a paler cream underbelly is shown in three-quarter profile facing left, displaying a rounded body, raised dorsal fin and a translucent, fan-like tail against a mostly black background. +train_44352.png A small, bright orange, rounded-bodied aquarium fish with a glossy, subtly scaled texture and a prominent dark eye, shown in a three-quarter side view with a translucent fan-like tail splayed behind it against a soft blue aquarium background. +train_44355.png A small orange-red aquarium fish with a rounded, plump body and slightly translucent, scalloped fins is shown in leftward lateral view against a dim, greenish aquatic background with sandy substrate and soft glass reflections, with a visible dark eye, pale belly, and faint darker markings along the upper flank. +train_44386.png A plump, bright orange–gold aquarium fish with smooth glossy scales and a slightly paler belly shown in side profile facing left, featuring a short rounded dorsal, small pectoral fins and a fan‑like flowing tail splayed behind it against a dark, nearly black aquarium background. +train_44406.png A small, plump aquarium fish shown in a three-quarter profile facing left with an iridescent electric-blue, slightly glossy body and lighter-blue belly, a warm orange patch at the tail, small translucent fins, and a faint bluish reflection set against a dark, low-contrast aquarium background. +train_44434.png A small, laterally compressed aquarium fish shown in right-facing side profile with a bright iridescent blue-green horizontal stripe along its midline, a vivid red tail and lower flank, smooth glossy scales and a round dark eye set against a dark, out-of-focus aquarium background. +train_44443.png A plump, orange-gold aquarium fish with glossy, slightly mottled scales, a prominent dark eye and translucent fan-like fins is captured in a rightward, slightly angled side view against a deep blue, dimly lit tank background with soft light reflections and a hint of substrate beneath. +train_44461.png A small bright red-orange aquarium fish shown in a three-quarter profile facing left and slightly upward, its glossy, fine-scaled body marked by a darker vertical band near the midsection and pale whitish fin edges, a prominent dark eye, and a blurred deep teal-green water background with indistinct plant shapes. +train_44611.png A small, slender aquarium fish shown in leftward profile with smooth, iridescent turquoise-green upper scales, a vivid red lower-rear and tail patch separated by a thin dark lateral stripe, short translucent fins, and a dim, out-of-focus aquarium background with a green plant and dark substrate. +train_44625.png A plump, oval-bodied pink-to-rose aquarium fish with a smooth, slightly mottled texture and short, translucent fins shown in an oblique side view against a vivid cyan-blue, out-of-focus background, its body exhibiting a darker central patch and a lighter head and tail despite the low resolution. +train_44654.png A bright orange-gold aquarium fish with a smooth, glossy body and long translucent flowing tail fins, shown in three-quarter profile angled upward to the left against a dark bluish-black tank background with a soft circular highlight, its rounded body, prominent eye, and trailing fins discernible despite the low resolution. +train_44693.png A low-resolution side-view of a small bright orange-gold aquarium fish with smooth, slightly iridescent scales and a translucent, fan-like tail, shown in profile against a deep blue water background with soft light flecks, its dark eye and rounded snout discernible. +train_44775.png A small, bright orange aquarium fish with glossy, slightly pixelated scales and distinct white vertical bands bordered by thin dark edges, shown in a side/three-quarter pose facing right against a soft blue aquarium background with blurred rock or coral at the bottom. +train_44776.png Side-view of a bright orange, smooth-scaled aquarium fish with a rounded body and slightly upturned head, a small dark eye and fanned translucent dorsal and tail fins, set against a dark green, plant-filled background. +train_44798.png An orange, smoothly scaled aquarium fish shown in a slightly angled side‑on pose with a rounded body and translucent, fan‑like tail and fins with pale white edging, set against a blurred blue water background with hints of green aquarium plants. +train_44857.png Profile-right, slightly upward-tilted small aquarium fish with a shimmering iridescent turquoise-green scaled body, a rounded pale orange–cream tail faintly edged in dark, and glossy highlights, photographed against a dark bluish tank background with out-of-focus gravel and plant blur along the bottom. +train_45011.png A vibrant lemon-yellow, slightly iridescent, smooth-textured aquarium fish shown in a three-quarter side view facing left with a rounded, disc-like body, small dark eye rim, faint dorsal-fin outline and slightly forked tail, suspended against a blurred blue-green tank background with a darker substrate and a small out-of-focus pale object nearby. +train_45073.png A small aquarium fish captured in a close-up three-quarter/profile view, with a smooth glossy orange body that fades into a subtle iridescent blue toward the tail, semi-translucent fins and a slight forked tail, a dark eye near a rounded snout, and a blurred greenish-blue aquatic background with indistinct plant shapes. +train_45118.png A close-up, slightly head-on view of a small, bulbous aquarium fish with solid bright orange-red glossy scales, a prominent dark eye and faint gill shadow, floating against a blurred background of green aquatic plants and gravel. +train_45245.png A bright orange, smooth-scaled aquarium fish shown in a side/three-quarter view with a rounded body and small dark eye, translucent fan-shaped tail and dorsal fins with paler edges, hovering above dark gravel against a blurred blue-green aquatic plant background. +train_45440.png A small, low-resolution aquarium fish with a bright orange, slightly mottled body and a distinct vertical white band near the head, rounded smooth-scaled profile angled slightly toward the viewer with translucent fins partly spread, set against a dark blue, out-of-focus tank background speckled with tiny suspended particles. +train_45643.png A bright, uniformly orange, plump-bodied aquarium fish with smooth, slightly iridescent scales, a dark round eye and translucent short rounded fins is shown in a left-facing lateral pose (head tilted slightly upward) against a dim aquarium background with out-of-focus glass and a gravelly substrate. +train_45973.png A small, bright orange aquarium fish with a glossy, slightly iridescent, smoothly scaled body and pale underbelly, shown in profile swimming toward the right with rounded, semi‑translucent fins and a distinct dark eye set against a deep blue, softly lit aquatic background. +train_46024.png A small, rounded aquarium fish with a smooth, pale peach–pink scaly body and subtle iridescence, shown in a slightly angled side view with its tail fin fanned to the right against a blurred green aquatic-plant background and gravelly substrate, notable for a dark-edged dorsal area and a conspicuous dark eye. +train_46097.png A small, bright orange-red aquarium fish with smooth, slightly glossy scales and a rounded body is shown in a slight three-quarter profile swimming against a near‑black aquarium background with a faint vertical reflection, its dark eye, short fan-shaped tail and modest dorsal fin visible despite the low resolution. +train_46226.png A plump, pale pink-to-peach aquarium fish with a smooth, slightly iridescent scaly texture seen in a slightly angled side view revealing a rounded body, small translucent pectoral fins and a short fan-like tail against a uniformly pink, blurred aquarium background. +train_46328.png A low-resolution lateral view of a small aquarium fish with a smooth, bright orange–red body showing faint darker mottling and subtle iridescence, translucent slightly fanned fins and a rounded head, angled rightward as if swimming, set against a soft blue aquarium background with indistinct green plant shapes and a bright specular reflection. +train_46345.png A small pale peach-to-cream aquarium fish with a smooth, slightly translucent body shown in a rightward side/three-quarter view, revealing a rounded head with a dark eye, subtle mottled markings and a short fan-like tail, suspended midwater against a softly blurred blue-green aquarium background with indistinct substrate and plant shapes. +train_46390.png A small, bright orange aquarium fish with glossy, slightly mottled scales and a rounded body is shown in a three-quarter side view facing left, its short translucent fins and prominent dark eye visible against a blurred deep‑blue water background. +train_46434.png A compact, round teal-blue aquarium fish seen in a right-facing oblique side view, showing iridescent, slightly mottled scales with a darker dorsal area and lighter underside, a prominent dark eye and small fan-shaped tail, set against a blurred warm orange-brown aquarium background and substrate. +train_46455.png A low-resolution shot of a small, bright orange, slightly translucent aquarium fish shown in a three-quarter side view, hovering near the glass with a darker almost black-tipped tail and faint vertical striping, set against a blue-tinted water background with indistinct gravel and plant shapes. +train_46851.png A small, orange-and-black mottled aquarium fish with glossy, slightly iridescent scales and translucent fins is shown in a near-side, slightly angled pose hovering just above pale gravel against a teal-green water background, with a dark eye and a short rounded tail visible despite the low resolution. +train_46920.png A small, round aquarium fish seen in three-quarter profile facing left, with a knobbly cream-to-pale-pink bulbous head and a deeper coral-salmon, velvety body and short fanlike tail, its translucent fins and mottled texture visible against a softly blurred blue-green aquarium backdrop with a bright patch of light. +train_47008.png A compact, bright orange aquarium fish with smooth, slightly iridescent scales and a prominent dark eye, shown in a three-quarter side view with semi‑transparent, fanned fins and a rounded tail against a deep black background with a small patch of pale substrate visible below. +train_47058.png A small, slender aquarium fish shown in near-profile with a smooth silvery body, a narrow iridescent blue lateral stripe and a vivid red‑orange patch on the rear half above a translucent forked tail, posed against a green‑tinted water background with dark gravel visible below. +train_47481.png A small aquarium fish with a velvety deep blue–purple body and a bright orange tail fin, shown in a left-facing three-quarter side view with a rounded dorsal profile, set against a dark, out-of-focus tank background with hints of substrate and glass reflections, and displaying high-contrast fin edges and a compact oval body despite the low resolution. +train_47716.png A small, rounded turquoise-green aquarium fish with subtly iridescent, slightly speckled scales is shown in a three-quarter side view facing left, its dark eye and short rounded tail and fins visible against a soft, out-of-focus magenta-pink background. +train_47764.png A small bright-orange, rounded-bodied aquarium fish seen in profile facing right with a slightly upturned head and fanned tail fin, its smooth shiny scaled flanks showing subtle lighter belly shading and a pale patch near the gill, set against a dark, out-of-focus aquarium background. +train_47926.png Close-up left-side profile of a small aquarium fish with vivid orange-red, slightly mottled scales and a pale yellow underside, a glossy rounded body and prominent dark eye, translucent fan-like fins and tail with subtle pale edging, photographed at a slight angle against a dark green, out-of-focus aquatic background with a bright reflected highlight, and a small dark marking near the gill visible despite the low resolution. +train_48041.png A small, deep-purple aquarium fish with a glossy, slightly iridescent skin and pale pinkish-white vertical bands, shown in a left-facing side profile with rounded fins faintly splayed and hovering against a dark bluish, out-of-focus aquarium background. +train_48075.png A small, side-on aquarium fish with an iridescent electric-blue body and subtle darker banding, smooth glossy scales, slightly translucent fins and a narrow tail, hovering horizontally against a dark, gravel-strewn background with vertical cyan reflections. +train_48093.png A bright orange-red, rounded aquarium fish seen in a three-quarter side view with a slightly upturned head, visible scaly texture and a pale translucent fan-shaped tail, set against a dark background speckled with small bright particles. +train_48200.png A small, elongated aquarium fish shown in a left-facing lateral view with glossy, iridescent turquoise-blue midline, a vivid red lower posterior, translucent fins and smooth-scaled texture, set against a dim aquarium background of dark substrate and blurred green plant leaves. +train_48413.png A small, bright orange-red aquarium fish shown in a slightly side-on, angled pose with a smooth, glossy body, translucent fins and a rounded tail, faint darker mottling along the dorsal region and a paler belly, set against a deep maroon–brown blurred aquarium background. +train_48450.png A small, vibrant orange aquarium fish with smooth, slightly speckled scales and a prominent dark eye is shown side-on and slightly angled in a mid‑swim pose with a semi‑transparent, fanned tail and delicate dorsal fin, set against a dark bluish aquarium background with coarse gravel and blurred green plant shapes. +train_48456.png A small, bright-orange, smooth-scaled aquarium fish shown in a three-quarter side view with a paler underbelly and prominent dark eye, its translucent fins and slightly forked tail gently splayed as it hovers just above a sandy, rock-strewn bottom against a deep blue-green water background. +train_48486.png A small, bright orange-gold aquarium fish with a plump, rounded body and translucent pale-cream fins shown in a three-quarter side view, its fan-shaped tail and upright dorsal fin edged in white with faint scale texture visible, set against a dark, grainy aquarium background speckled with floating particles. +train_48536.png A small bright orange-gold aquarium fish with a paler belly and glossy, slightly scaled texture is shown in side-profile swimming to the right with fins partially fanned, set against a dark gravel substrate and blurred blue‑green background, displaying a rounded body, prominent dark eye, and a short rounded tail visible despite the low resolution. +train_48888.png A small, plump aquarium fish viewed in a three-quarter side pose with its head angled slightly toward the camera, showing a bright orange underside and face that transitions to iridescent blue on the dorsal body and fins, a smooth, slightly mottled glossy texture with a pale white patch near the snout, and short rounded fins set against a dark, out-of-focus aquarium background. +train_48946.png A small, plump aquarium fish captured in a three-quarter side view facing left, its smooth, slightly translucent pale pink-to-peach body with faint orange highlights, subtle vertical banding, a dark eye and rounded fins visible against a blurred blue-green aquarium background with soft light reflections and indistinct gravel at the bottom. +train_48998.png A plump, orange-red aquarium fish shown in left-facing profile with a smooth, slightly iridescent body, translucent fins and a rounded head with a dark eye, set against a soft aqua-blue tank background with indistinct darker shapes. +train_49050.png A small aquarium fish with a vivid golden-orange, slightly iridescent body and smooth scaly texture, shown in a diagonal side view with a rounded head and dark eye facing right, translucent pale-yellow fins and a fan-shaped tail, hovering just above a light bluish-green substrate and blurred aquarium background. +train_49209.png A bright orange aquarium fish with a pale creamy-white shoulder band and glossy, slightly iridescent scales, shown in side profile facing right and slightly upward with translucent yellow-orange fanned fins and a rounded body, set against a dark bluish aquarium background with blurred green plant shapes and gravel. +train_49445.png A small, side-on aquarium fish facing left with a smooth iridescent electric-blue lateral stripe running from eye to tail above an opaque crimson-red posterior section, a silvery belly and translucent fins, suspended midwater against a dark, plant-filled background with gravel at the bottom. +train_49624.png A small, bright orange aquarium fish with a smooth, slightly shiny body and translucent, fan-like tail is shown in a left-facing lateral view against a deep blue, subtly mottled aquarium background, its rounded profile, dark eye, faint dorsal-fin outline and forked tail visible despite the low resolution. +train_49675.png A compact, oval bright-orange aquarium fish with glossy, slightly pixelated scales and a small dark eye is shown in a right-facing, slightly angled profile with a short fan-like translucent tail and faint pectoral fin, suspended just above a pale sandy substrate against a soft blue aquarium background with indistinct rocks. +train_49682.png A small aquarium fish shown in a slightly angled side view, its iridescent turquoise-blue body with a darker bluish head and subtle vertical banding, translucent delicate fins and a fan-like tail with warm orange-red highlights, floats just above coarse tan gravel against a dim, shadowed tank background. +train_49726.png A small, mottled brown-and-tan aquarium fish shown in right-facing profile with a slightly translucent, speckled body and faint horizontal striping, hovering just above a pale sandy/rocky substrate against a soft blue water background. +train_49765.png A vivid metallic orange fancy goldfish captured in a slightly angled three-quarter frontal pose, its smooth, bulbous wen-covered head and large dark eye contrasting with a compact, rounded body and short translucent fins that catch highlights against a dark, out-of-focus aquarium background with a hint of gravel at the bottom. +train_49820.png A small, vivid orange aquarium fish with a glossy, slightly scaled body and semi‑translucent, fanned tail shown in a three‑quarter side view angled slightly upward, set against a pale sandy/cream out‑of‑focus background with a light rock or gravel patch, its rounded profile, compact fins and tiny dark eye still discernible despite the low resolution. +train_49877.png A small aquarium fish with a compact, slightly rounded body showing mottled teal-blue and pale yellow-green coloration and a subtly iridescent, smooth texture, posed in a left-leaning three-quarter view with semi-translucent fins splayed slightly and a darker tail edge, set against a diffuse aqua tank background with soft light reflections and a faint, blurry substrate. +train_49919.png A small bright orange-salmon aquarium fish with a glossy, slightly mottled body and pale translucent fins is shown in profile swimming leftward against a vivid deep-blue background, its rounded torso, raised dorsal fin and forked tail faintly discernible despite the low resolution. +train_49971.png A small aquarium fish is shown in a side‑profile pose with a glossy bright orange body and slightly paler whitish belly, a darker orange head with a tiny dark eye, translucent fan‑shaped tail and dorsal fins with a smooth, scaly texture, set against a soft bluish‑green aquarium background with diffuse plant shapes. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/baby_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/baby_descriptions.txt new file mode 100644 index 0000000..7bcb364 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/baby_descriptions.txt @@ -0,0 +1,500 @@ +train_00202.png Front-facing close-up of a pale-skinned baby wearing a soft, fuzzy pink knit hat with small ear-like tufts and chin ties, seated upright and looking toward the camera with rounded cheeks and a neutral expression against a softly blurred pale/white background. +train_00260.png A close-up frontal view of a small pale-faced baby or baby-like figure wearing a soft white textured bonnet with a tiny red bow and light-blue clothing, its glossy dark eyes and faint rosy cheeks visible against a dim, bluish, indistinct background despite the low resolution. +train_00308.png A low-resolution frontal view of a baby wearing a pink knit hat and matching pink outfit, seated upright with the head slightly tilted, resting on a pale blanket in a softly lit, warm-toned indoor background, with rounded cheeks, dark eyes, and a small hand near the face visible despite the blur. +train_00382.png A small baby wearing a soft sky‑blue top and pale pink bottoms sits facing the camera with short light hair, round slightly blurred facial features and hands clasped near the lap, set against a bright, neutral, softly blurred background. +train_00562.png A close-up, slightly top-down view of a baby in a soft pink knit onesie with a white collar, seated against gray bedding and a beige wall, head tilted toward the camera showing a small dark hair tuft, rounded cheeks, and a hand near the mouth visible despite the low resolution. +train_00580.png A plump baby chick with bright lemon‑yellow, downy, slightly ruffled fluff is shown in a three‑quarter frontal pose with a small orange beak and dark round eye visible, sitting against a warm reddish‑brown, softly blurred background that suggests wood or bedding. +train_00795.png Close-up frontal shot of a baby with pale, slightly rosy smooth skin and plump cheeks, short fine hair, large dark eyes and a small button nose with pursed lips, wearing a light-colored onesie and tilting the head slightly while looking toward the camera against a warm, softly blurred reddish-orange background. +train_01106.png Frontal, slightly top-down view of a baby seated upright wearing a bright orange, soft-knit sweater with a white collar, showing smooth round cheeks, short dark hair and clasped hands, set against a blurred indoor background of muted green and brown fabrics with a partially visible adult behind. +train_01195.png A low-resolution image shows a pale-skinned baby wrapped in a soft, slightly fuzzy pink outfit with a small white patch on the chest, seen in a three-quarter view with the head tilted slightly to the viewer's left and dark eyes and chubby cheeks visible against a deep, shadowy indoor background with a hint of blue fabric at the left edge. +train_01198.png A front-facing close-up of a stylized baby face with smooth peach-toned skin and flat matte shading, large glossy blue eyes, rosy cheeks and a small pink mouth, a single short brown hair curl atop a round head, set against a plain white background. +train_01511.png A front-facing, slightly pixelated head-and-shoulders view of a light-skinned baby with smooth, rosy cheeks and sparse dark hair, wearing a soft pink top and gazing upward with wide dark eyes and a small mouth against a muted teal-blue background. +train_01664.png Close-up three-quarter view of a fluffy baby chick with bright yellow downy feathers and a small pale-orange beak, a single dark eye visible against a soft, slightly mottled warm-brown background and indistinct shadowing around its plump body despite pixelated, low-resolution edges. +train_01696.png A close-up frontal view of a pale-skinned baby with sparse reddish hair and smooth, slightly dimpled cheeks, wearing a light patterned bib and softly lit against a dark, out-of-focus background so the rounded face and small nose and mouth remain the most distinguishable features despite the low resolution. +train_01705.png A low-resolution, front-facing image of a seated baby wearing a cream knit sweater patterned with small pink flowers, short hair clipped with a tiny pink bow, chubby cheeks and a faint smile while gazing slightly upward against a softly blurred warm indoor background with wooden-floor tones and indistinct furniture. +train_01778.png A close-up head-and-shoulders view of a pale-skinned baby with soft, smooth skin and sparse light-blond fuzz, facing the camera with a slightly tilted head, rosy cheeks and a small pursed mouth, clothed in pale pink against a softly blurred warm beige-pink background, with round eyes and chubby features still discernible despite the low resolution. +train_01784.png A small round baby chick with bright orange-yellow fluffy down, shown in a three-quarter profile facing left with a tiny dark beak and eye, its plump rounded body and indistinct wing visible against a smooth pale beige background despite the low resolution. +train_01804.png A close-up frontal view of a light-skinned baby wearing a textured sky-blue knitted hat with small ear-like protrusions and a chin tie, showing rosy chubby cheeks, a slightly open mouth and wide dark eyes against a soft, out-of-focus warm beige background. +train_01837.png A chubby-cheeked baby with short light hair wearing a purple patterned knit sweater, seated facing the camera with a slight smile and small hands visible, set against a muted beige patterned background (wallpaper or upholstery) with a red object at the lower right. +train_01879.png The baby has smooth, pale peach skin and fine light hair, shown in a close-up overhead view with its head turned slightly to the left and eyes closed, wearing a white outfit and resting on a soft cream/white blanket with chubby cheeks and a small hand near the face visible despite the low resolution. +train_01895.png A small, smooth, glossy peach-toned baby figurine with a disproportionately large rounded head and tiny bent limbs, shown in a three-quarter overhead view reclining with knees up and one arm raised against a plain white background, displaying minimalist painted facial features (dot eyes, small mouth), faint rosy cheeks and a tiny blue diaper marking. +train_01899.png A close-up frontal view of a sleeping baby with warm brown, smooth, slightly shiny skin, chubby cheeks and a small relaxed mouth, head tilted slightly to the left and topped by a dark cap with a pale collar visible at the bottom against an indistinct dark background. +train_02009.png Close-up frontal head-and-shoulders view of a chubby-cheeked baby in a soft, fuzzy pink knit hat with a pom and matching pink/red fleece clothing, hands near the face, dark eyes and a tiny nose slightly blurred by low resolution, seated against a plain, light-colored background. +train_02051.png Close-up frontal view of a baby’s round face with smooth, rosy-pale skin and chubby cheeks, dark eyes gazing toward the camera, a small partly open mouth, and a soft light-blue knit cap or blanket edge framing the head against a dim, out-of-focus background. +train_02192.png A fair-skinned baby with short light brown–blond hair and smooth, rosy cheeks is shown in a slightly tilted frontal pose wearing a bright blue top and smiling with an open mouth against a warm, blurred beige–orange background, with chubby cheeks, a small nose, and bright eyes still discernible despite the low resolution. +train_02352.png A low-resolution top-down close-up shows a baby dressed in a creamy-white knit outfit lying on its back on a soft white surface, with a rounded, slightly blurred face, closed eyes and a tiny hand tucked near the cheek visible through the soft, grainy texture. +train_02668.png A baby with pale, smooth skin and a tuft of dark fuzzy hair, dressed in a light-blue soft-knit outfit, is reclining with the head turned slightly to the left and one arm near the face on a neutral beige cushion against a muted bluish-gray background, with chubby cheeks and a rounded forehead visible despite the low resolution. +train_02729.png Frontal close-up of a baby with soft, smooth light skin and short dark hair, the round face and dark eyes appearing as blurred but distinguishable shapes with a small mouth and chubby cheeks slightly tilted to the left against a uniform, out-of-focus gray background. +train_02858.png A small pale beige baby doll with smooth, slightly glossy porcelain-like skin and dark glassy eyes is shown in a three-quarter, slightly leftward-facing pose wearing a cream knitted bonnet and light textured shawl, set against a dark, out-of-focus background with visible rounded cheeks and a faint painted mouth despite the low resolution. +train_02902.png A fair-skinned baby with short, wispy light-brown hair and soft, plump cheeks wearing a textured blue top, shown in a close three-quarter frontal pose looking slightly upward to the left against a dark, out-of-focus indoor background, with prominent round eyes and a small pursed mouth visible despite the low resolution. +train_02925.png A fair-skinned baby with short light hair and chubby, smooth limbs sits facing the camera with legs extended, wearing a bright royal-blue sleeveless outfit of slightly shiny fabric, a round open-mouthed face and visible dimples, positioned on a gray paved surface with blurred green-brown outdoor foliage in the background. +train_03072.png Frontal close-up of a pale, round-faced baby wearing a bright red knit hood and a white bib-like garment, the smooth, slightly glossy skin and dark, wide-set eyes and small mouth visible despite low resolution, set against a softly blurred brown/tan indoor background. +train_03112.png A pale beige baby figure with a smooth, slightly shiny face wearing a bright blue fabric cap and matching outfit sits upright, slightly tilted toward the viewer, against a saturated red backdrop with a narrow vivid green base; despite the low resolution two round dark eye spots, a small nose and mouth, and the strong blue-vs-red color contrast are clearly visible. +train_03613.png Frontal close-up of a fair-skinned baby with fine light-blond hair and chubby cheeks wearing a bright red knit sweater with a white collar, seated slightly forward and facing the camera with a subtly open mouth and hands near the torso against a dark maroon upholstered indoor background. +train_03725.png A frontal close-up of a pale-skinned baby with rosy, soft-looking cheeks wearing a ribbed sky-blue knit hat and matching soft blue outfit, slightly turned to the left and reclining against a light neutral blanket background, with a small round blue pacifier and chubby facial features visible despite the low resolution. +train_03821.png A fair-skinned infant wearing a bright blue knit cap and soft blue outfit lies on its back with its head turned slightly to the left toward the camera on a warm multicolored (orange and blue) patterned blanket, showing chubby cheeks and a small nose that remain discernible despite the low resolution. +train_03878.png A pale, bald baby (or baby-like doll) with smooth, slightly glossy skin wears a crimson knit top and white diaper, sitting upright facing the camera with chubby, splayed legs and arms slightly outstretched, set against a deep burgundy tufted fabric background under low warm lighting. +train_03891.png A baby wearing a bright red puffy hooded jacket and dark trousers sits slightly turned to the left on a wooden bench in a sunlit grassy outdoor setting with blurred green foliage and a yellow object behind, the jacket's glossy quilted texture, prominent hood and dangling legs visible despite the low resolution. +train_03998.png A low-resolution image shows the baby lying on their back, head tilted slightly to the right, wearing a pale blue, soft-textured onesie with white trim and a small patterned bib, dark hair and chubby cheeks visible against a warm, floral-patterned pillow and muted blanket background. +train_04020.png A close-up, slightly overhead view of a sleeping infant wearing a soft pale-pink knit cap and wrapped in a cream fleece blanket, head turned to the right showing chubby cheeks and a tiny hand near the face against a dark brown, textured background. +train_04031.png Close-up frontal view of a baby with smooth, pale-peach skin and a round, hairless head, large dark eyes and a small slightly open mouth, wearing a light-colored bib or garment against a softly blurred neutral background. +train_04382.png A gray-toned close-up frontal portrait of a baby with soft, smooth skin and chubby cheeks, slightly head-tilted toward the camera, large dark eyes and a small button nose visible in the high-contrast low-resolution image, wearing a light knit hat and set against a dark, indistinct background. +train_04621.png A close, slightly overhead view of a round, pale peach-beige baby face with smooth, soft-looking skin, two small dark eye dots and a faint central shadow suggesting nose and mouth, set against a muted pale blue-gray background. +train_04747.png A small, round, downy yellow chick viewed slightly from the front/three-quarter angle, its soft fluffy texture, tiny orange beak and dark round eye visible against a pale bluish, softly blurred background. +train_04750.png A low-resolution three-quarter frontal view of a light-skinned baby seated upright and facing the camera, with short dark hair and chubby cheeks, wearing a bright reddish-orange knit sweater over a pale bib, propped on a dark-jacketed arm in front of dim, wood-toned indoor furniture. +train_04861.png A close-up, three-quarter frontal view of a light-brown-skinned baby with smooth, slightly shiny cheeks and short dark fuzzy hair, wearing a light-blue soft-knit onesie and leaning against a shadowy adult in a dim indoor background, the low-resolution image still showing chubby cheeks, wide dark eyes and a slightly tilted head. +train_05019.png Close-up three-quarter view of a light-skinned baby with smooth, rosy cheeks and fine light hair, wearing a soft pale-blue knit outfit and white bib, head tilted slightly upward and to the right with chubby cheeks and a small white pacifier near the mouth, set against a blurred pastel floral blanket background. +train_05164.png A fair-skinned baby with chubby cheeks is shown from a near-frontal, slightly top-down view wearing a soft light-blue knit hat and matching blue outfit, resting on a warm beige textured blanket, with dark eyes and a small closed mouth visible despite the low resolution. +train_05180.png Close-up, slightly angled view of a rosy-pink baby with smooth, slightly shiny skin and chubby cheeks wearing a bright turquoise knit garment, posed upright toward the camera against a soft, out-of-focus aqua background with a small red object at the upper left. +train_05229.png A close, slightly overhead three-quarter view of a light-skinned baby with short dark hair and rosy, chubby cheeks wearing a coral-red sleeveless top, sitting upright against a soft blue patterned blanket, with smooth, velvety skin, bright wide eyes and a small closed-mouth smile visible despite the low resolution. +train_05335.png A small pale, creamy, fluffy down-covered chick captured in a low-resolution three-quarter frontal pose with its rounded body and head slightly turned, a single dark eye and tiny pointed beak discernible against a plain dark background. +train_05390.png Frontal three-quarter view of a baby lying with its head slightly turned, showing light, smooth skin, rounded cheeks and a small nose, wearing a ribbed white knit cap and wrapped in a soft, pale blanket against a neutral, softly lit background. +train_05417.png Close-up, low-resolution frontal portrait of a pale, smooth-skinned infant with short dark hair and prominent chubby cheeks, viewed from a slightly elevated angle with the head turned slightly to the right, wearing a light-blue garment and set against a softly blurred neutral background, with dark round eyes and a small, slightly open mouth visible despite the blur. +train_05480.png Close-up three-quarter view of a baby with pale, smooth skin and chubby cheeks wearing a white knit cap and a light, soft-textured outfit, head tilted slightly to the viewer’s right against a blurred pink-blanket background, with dark eyes and a small mouth faintly visible despite the image’s grainy softness. +train_05487.png A pale-skinned infant viewed from a slightly overhead three-quarter angle, dressed in a soft light-blue onesie with a faint knit texture, reclined against a dark gray, slightly mottled background with a blurred warm-orange object to the left, showing rounded cheeks and small hands near the face despite the low resolution. +train_05661.png A low-resolution side-profile close-up of a baby with smooth, slightly shiny pale skin and fine downy hair, chubby rounded cheeks and a small nose and ear visible, wearing a light-colored garment while facing left against a dark, mottled background. +train_05802.png A front-facing, seated plush baby doll with a smooth pale-peach face, simple dark oval eyes and a tiny mouth, wearing a maroon slightly fuzzy hooded outfit with visible stitch lines, shown against a plain white background. +train_05853.png A pale, smooth-skinned baby with a tiny tuft of light blond hair and rosy, chubby cheeks sits upright facing the camera in a frontal view wearing a light-colored top against a softly blurred neutral background, with large dark eyes and a small puckered mouth visible despite the low resolution. +train_05921.png Front-facing close-up of a baby with smooth, pale skin and fine dark hair framing a round face, large dark eyes and a small open mouth, wearing a light-colored bib or shirt with a faint pastel pattern, set against a warm cream-beige background with soft shadowing. +train_06223.png A low-resolution overhead view shows a baby reclining in a stroller against a teal patterned blanket, wearing a soft pink fleece hooded onesie with a faint floral print and fuzzy texture, with a rounded face, chubby cheeks, and small hands held near the chest. +train_06313.png A seated baby viewed in three-quarter profile wearing a bright red, fuzzy hooded outfit with a soft fleece texture, facing slightly left against a pale blue patterned blanket or seat, showing a round light-skinned face with dark hair peeking from the hood and small hands held near the chest. +train_06471.png A chubby baby with wispy light-brown hair wearing a bright orange cotton onesie sits upright in a slightly three-quarter frontal pose on a sunlit wooden deck against a blue backdrop, showing round cheeks, small hands on the lap and an orange toy beside them visible despite the low resolution. +train_06707.png Close-up frontal view of a baby wearing a bright orange knit hat and fuzzy orange sweater, with a soft rosy-cheeked face and large dark eyes, head slightly tilted while seated against a warm, out-of-focus orange background, the low-resolution image still revealing the knit texture of the hat and a small hand near the chest. +train_06817.png A forward-facing, light-skinned baby sitting upright against a dark, blurred background, wearing a bright blue knit top with soft pink fabric near the head, showing rounded cheeks, a small button nose and tiny hands resting near the torso. +train_06878.png Black-and-white, low-resolution head-and-shoulders portrait of a baby with smooth, light-toned skin and a subtle film-grain texture, head tilted back slightly and gazing upward with wide eyes, chubby cheeks and a small, slightly open mouth, wearing a light-colored collar against a dark, featureless background. +train_06901.png Close-up frontal view of a smiling baby with smooth light-peach skin and short dark hair, wearing a red top and a white bib, head slightly tilted toward the camera against a soft blue background, showing chubby cheeks, bright eyes and tiny front teeth visible despite the low resolution. +train_06923.png Close-up, slightly left-turned frontal view of a fair-skinned baby with smooth, dewy skin and sparse dark hair, large dark eyes and rosy chubby cheeks, a small puckered mouth and light-colored clothing set against a soft, warm peach-beige blurred background. +train_06975.png A close-up, slightly top-down view of a sleeping baby with plump cheeks and a small closed mouth, swaddled in a soft white fuzzy blanket and wearing a coral-pink knit cap, set against a dark, out-of-focus background. +train_07066.png A small, round-faced baby with short dark hair wearing a bright blue, slightly shiny jacket over a white shirt sits in a three-quarter frontal pose facing the camera against a softly blurred green outdoor background, the chubby cheeks and indistinct but visible facial features standing out despite the low resolution. +train_07258.png A grainy black-and-white close-up of a baby with soft, smooth pale skin, a small tuft of dark hair, large dark eyes and chubby rounded cheeks, head slightly tilted with a faintly parted mouth against a dark, indistinct background. +train_07440.png A close-up three-quarter view of a light-skinned baby with smooth, rosy cheeks and wide dark eyes, wearing a navy ribbed knit beanie and a soft blue garment, posed slightly turned toward the camera against a softly blurred warm beige indoor background, with chubby cheeks and a small pursed mouth visible despite the low resolution. +train_07465.png A low-resolution portrait of a chubby-cheeked baby with short dark hair and warm beige-pink skin wearing a pale pink, slightly textured onesie, seated facing the camera in a slightly reclined pose against a dim bluish-green background, with bright highlights on the forehead and rounded cheeks and small hands visible near the torso. +train_07474.png A fluffy lemon-yellow baby chick with soft downy texture seen in three-quarter profile facing right, perched on a bright turquoise-blue fabric surface with a small dark eye and a tiny pale beak visible despite the low resolution. +train_07614.png A small baby sits upright facing the camera, wearing a softly textured dusty-pink sweater with a white collar and light pants, leaning against an adult's arm in a simple indoor scene with a pale wall and wooden floor visible behind. +train_07733.png A close-up frontal view of a baby with pale, smooth skin and rounded chubby cheeks wearing a light, textured knit cap, gazing slightly upward with dark, wide-set eyes and a small nose and mouth against a soft, neutral, blurred background. +train_07802.png Front-facing, seated baby wearing a bright red knit hat and matching textured red jacket with a blue bib or chest panel, pale round face and small hands visible despite blur, all set against a dark, out-of-focus background suggesting an indoor scene. +train_07854.png Close-up three-quarter view of a light-skinned baby with fine, wispy blond hair and smooth rosy cheeks, caught mid-smile with a slightly open mouth and hand near the face, wearing a pale blue garment against a soft, out-of-focus neutral indoor background. +train_07877.png Frontal close-up of a baby with smooth pale-peach skin and fine wispy hair, round chubby cheeks, large dark eyes and a small slightly open mouth, nestled against soft pink fabric with a warm, out-of-focus background and an overall low-resolution, slightly blurred texture. +train_07891.png A chubby-cheeked baby with dark hair in a soft teal outfit sits facing the camera with hands near the face, wide eyes and a slightly open mouth visible despite low resolution, set against a warm indoor scene with a busy multicolored patterned backdrop. +train_08100.png A front-facing close-up of a chubby, pink-haired baby character with glossy blue eyes, rosy cheeks and a soft, plush-like pink ruffled outfit, slightly tilting its head while clutching a small white toy, set against a bright teal background dotted with tiny heart-shaped sparkles. +train_08335.png A fair-skinned infant with fine light-brown hair and smooth, rosy cheeks sits upright facing the camera in a white sleeveless cotton top, set against a neutral beige sofa or wall background with a tan teddy bear partially visible to the left and a small hint of blue to the right. +train_08636.png A close-up frontal view of a baby with smooth light tan skin and short dark hair, wearing a muted green top, facing the camera with prominent chubby cheeks and a small pout, set against a warm, softly blurred beige-brown background. +train_08681.png From a slightly top-down, three-quarter viewpoint the low-resolution photo shows a baby reclined on a cream blanket backed by a dark brown cushion, wearing a soft pale-pink knit onesie with subtle ribbing, a small hand near the cheek and a round, slightly blurred face visible despite the image quality. +train_08720.png A low-resolution photo shows a baby seated facing the camera in a pale blue, soft-textured onesie with chubby arms and a rounded head, its facial features blurred but centrally visible, set against a warm pink–red, out-of-focus background. +train_08955.png A close-up frontal portrait of a pale, porcelain-textured baby face with smooth, rosy cheeks and a small rosebud mouth, large round bright blue eyes framed by dark lashes and faint blond hair, the head slightly tilted against a plain white background with a soft pink blur at the upper right and a hint of pink clothing at the bottom. +train_09095.png Close-up of a baby’s round, soft pale-peach face with fine dark hair and rosy cheeks, head turned slightly to the right and eyes partially closed in a relaxed pose against a dark, blurred background with a hint of red-orange fabric and a blue garment at the edge, showing distinguishable round cheeks, a small nose, and faint eyebrow line despite the low resolution. +train_09192.png A light-skinned baby in a soft pale-pink cotton outfit with a small tuft of dark hair and chubby cheeks is shown in a frontal three-quarter pose while seated or being held, set against a blurred green outdoor background with a shadowy adult figure behind, with low-resolution distinguishing features including the round face, small mouth, and a visible hand or sleeve near the chest. +train_09242.png Frontal close-up of a baby with pale, slightly rosy smooth skin and short dark hair, head slightly tilted with one hand near the mouth, wearing a blue garment against a dim, blurred indoor background, showing prominent round cheeks and wide dark eyes despite the low resolution. +train_09243.png A warm-toned baby with short dark hair and chubby, smooth cheeks wears a light-colored onesie and diaper and sits upright facing the camera on an adult’s lap against a brown-and-blue patterned sofa in a cluttered indoor room, with a bright orange toy near the right hand visible despite the image’s soft blur. +train_09321.png Frontal-view baby wearing a soft turquoise knit onesie with a slightly fuzzy texture, sitting upright and slightly leaning back while being gently held, showing a round face with a dark hair tuft, chubby cheeks and wide eyes against a blurred multicolored (pink/orange/blue) blanket background with an adult hand visible at the side. +train_09580.png Close-up frontal portrait of a baby with soft, pale skin and chubby cheeks wearing a peach-pink knitted hat and matching garment, dark wide eyes and a small mouth visible with a slight head tilt against a warm orange background. +train_09773.png A close-up three-quarter view of a baby with smooth fair skin and chubby cheeks wearing a soft red knit cap, mouth slightly open with the tongue visible and dark eyes, set against a soft, out-of-focus pale blue background. +train_09964.png Centered in a frontal close-up, the baby has soft fair skin and short light-blond hair, wearing a bright blue knit top and leaning slightly forward toward the camera with round chubby cheeks and wide dark eyes visible despite pixelation, set against a blurred green outdoor background. +train_10134.png A close-up, slightly overhead shot of a baby swaddled in a soft teal knit cap and matching blanket with a subtle ribbed texture, lying on a plush off-white cushion with the face turned slightly to the left, eyes closed and a small puckered mouth visible, set against a blurred warm brown-orange background that renders fine facial detail soft. +train_10227.png Three-quarter profile of a baby in a soft pink knitted beanie with a bow and matching fuzzy jacket, showing chubby rosy cheeks, dark eyes and a slightly open mouth against a blurred green-blue outdoor background. +train_10320.png A fair-skinned baby with fine light brown hair and smooth rosy cheeks, wearing a pale peach sleeveless top, sits facing the camera with a slightly turned head and a hand near the mouth against a plain warm beige background under soft, diffuse lighting that highlights large dark eyes and a small pout. +train_10367.png A low-resolution image of a baby seated and slightly turned toward the camera wearing a soft, fuzzy pink hooded outfit (with small ear-like points) and a white bib-like patch, showing a rounded face with rosy cheeks and a hand near the mouth against a dark teal/navy blanket or couch background. +train_10701.png A close-up, slightly angled view of a sleeping infant swaddled in a soft, fuzzy rust-brown blanket and wearing a pale knit cap, with a warm peach-toned face, closed eyes and a small puckered mouth visible against a softly blurred warm-brown background. +train_10858.png Close-up frontal view of a bald infant with smooth, rosy skin and a soft sheen, large dark eyes and chubby round cheeks, giving a slightly tilted, open-mouthed smile while wearing a blue garment against a warm, blurred beige-orange indoor background. +train_10878.png A low-resolution frontal image of a chubby-cheeked baby with sparse dark hair wearing a pale pink-and-white onesie, head slightly turned and reclining against a mottled magenta–purple blanket, the smooth skin and rounded cheeks still discernible despite soft blur. +train_11042.png A small, peach-toned baby doll with a smooth, slightly glossy plastic texture is shown in a close-up frontal pose wearing a pale blue cap and pink garment against a soft turquoise background, with oversized dark button-like eyes and rounded chubby cheeks discernible despite the low resolution. +train_11054.png Close-up, slightly top‑down view of a baby swaddled in a soft sky‑blue textured blanket and matching cap, showing a round face with prominent chubby cheeks and a small visible tuft of dark hair against a softly blurred neutral background. +train_11139.png Pale-skinned infant in a soft white knit cap, seen in a close-up three-quarter view with the head slightly turned and eyes mostly closed, showing chubby, rosy cheeks and smooth skin texture while lying against a mottled dark-green background with a small patch of blue clothing at the shoulder. +train_11267.png A small infant lies on its back viewed from slightly above, swaddled in a soft, plush pale-pink cap and matching fuzzy sleeper, head tilted to the right with a rounded cheek and tiny hand near the face, resting on a light cream blanket patterned with tiny pastel shapes visible despite the low resolution. +train_11364.png Frontal close-up of a baby with a light skin tone and short, fine light-brown hair, rounded cheeks and large eyes, wearing a pale-pink, soft-textured top and giving a slight smile while facing the camera against a smooth, softly blurred turquoise-blue background, with facial contours and clothing texture still visible despite pixelation. +train_11384.png A front-facing close-up of a baby with soft peach-colored skin and short light brown hair, head slightly tilted and wearing a pale pink cotton onesie, showing chubby cheeks, wide-set eyes and a faint smile against a blurred warm beige background. +train_11654.png Close-up, three-quarter frontal view of a baby wearing a textured pink knit hat topped with a white fluffy pompom and a matching pink outfit, with smooth skin, lightly flushed cheeks and dark, wide eyes looking toward the camera against a soft, out-of-focus pale background. +train_11679.png A small, light-skinned newborn with smooth, slightly rosy skin and chubby cheeks, wearing a soft white cap and swaddled in pale clothing, seen from a slight overhead angle lying on a textured pink blanket with closed eyes and a relaxed, slightly open mouth. +train_11684.png A front-facing, slightly high-angle shot of a seated baby with fine brown hair and soft, chubby cheeks wearing a light-colored sleeveless top, eyes wide and mouth slightly open, the low-resolution image showing smooth skin texture with pixelated edges against a warm beige indoor background with a highchair back visible. +train_11833.png A small pale-skinned baby in a light-blue, slightly fuzzy knitted bonnet and matching ruffled-collar outfit is captured in a slightly tilted three-quarter frontal pose, showing chubby rosy cheeks, dark eyes and a small mouth against a warm reddish-brown textured background that resembles a blanket or upholstery. +train_11884.png Close-up frontal view of a pale-skinned infant with a fuzzy, low-resolution texture, wearing a light blue knit cap and matching blanket, showing dark eyes, rosy cheeks and a small nose and mouth against a soft, out-of-focus pink-beige background. +train_11903.png Close-up, front-facing low-resolution photo of a baby wearing a pale pink ribbed knit hat and matching soft pink outfit, with smooth plump cheeks and wide eyes looking toward the camera, a small hand near the mouth, seated against a blurred, neutral indoor background of bedding or upholstery. +train_11911.png A close-up three-quarter view of a small infant with smooth pale-pink skin and chubby cheeks, wearing a soft white knit cap and light-colored clothing, lying slightly reclined against a textured blue fabric with a darker brown garment at the upper-left, eyes mostly closed and lips slightly pursed, the facial features softened by the low resolution. +train_12037.png Close-up frontal view of a baby wrapped in a soft sky-blue knit cap and blanket, with smooth, slightly shiny skin, round cheeks and wide dark eyes gazing toward the camera against a dim, out-of-focus warm-toned background. +train_12074.png A close-up of a pale-skinned infant wearing a soft white knit cap and swaddled in white fabric, head slightly tilted to the left as they lie on a warm beige surface with a hint of red at the edge, showing a rounded face with flushed cheeks and a small closed mouth. +train_12114.png A frontal close-up of a baby seated and facing the camera, clothed in a soft, fuzzy pink outfit with a pale bib, showing a rounded face with a small dark hair tuft and chubby cheeks, set against a warm, softly blurred indoor background of beige/orange cushions or blanket. +train_12324.png Close-up, head-on view of a light-skinned baby wearing a sky-blue ribbed knit beanie, showing smooth, rosy cheeks, large dark eyes gazing slightly to the side, a small rounded nose and pursed mouth, the knit stitch texture of the hat visible and the infant wrapped in pale fabric against a softly blurred warm indoor background. +train_12363.png A small baby in a bright red, slightly fuzzy knit dress or sweater is seen from a low frontal viewpoint standing with legs slightly apart and arms at the sides on a patchy sunlit grassy-and-dirt ground with a blurred green-brown background, short light hair and pale skin discernible despite the low resolution. +train_12467.png A baby in a fuzzy tan-brown teddy-style hooded onesie with small rounded ears, seated facing the camera with legs tucked forward against a light, neutral background, the plush texture, round pale face with dark hair and tiny hands discernible despite the low resolution. +train_12503.png A small infant in a bright red top and white diaper-like bottoms sits upright on a bluish-gray surface, viewed slightly from above, showing a round head with short dark hair, chubby limbs, and a small light-blue toy lying to its right. +train_12605.png Faded sepia-toned, low-resolution close-up of an infant in a head-and-shoulders pose with the head turned slightly to the right, wearing a ruffled bonnet and light lace gown, lying on a softly textured blanket background and showing round chubby cheeks, wide dark eyes and a small pursed mouth despite the graininess. +train_12616.png A close-up, slightly top-down view of a baby wearing a soft pale-pink knitted hat and matching pink outfit with a faint satin sheen, lying on a light, subtly patterned blanket, showing a round, chubby face with small closed eyes and a tiny pursed mouth visible despite the low resolution. +train_12617.png A close-up, head-and-shoulders portrait of a light-skinned baby wearing a soft, fuzzy pink knit hat and matching pink clothing, slightly tilting its head toward the camera with large dark eyes, round rosy cheeks and a small pursed mouth, set against an out-of-focus pale indoor background (blanket or bedding). +train_12762.png Close-up frontal view of a light-skinned baby with smooth, slightly rosy skin wearing a soft blue knit cap, head tilted slightly back and eyes partly open against an out-of-focus pale blue fabric background, the low-resolution image showing prominent chubby cheeks and a small round nose despite blurring. +train_12852.png A small baby wearing a bright turquoise, soft-looking sweater sits upright facing the camera with chubby cheeks and short light hair, hands resting near the lap, set against a blurred green outdoor background of grass and foliage. +train_12956.png A small infant with a pale complexion wrapped in a textured white knit blanket and matching cap, seen at a slight three-quarter angle while sitting upright and being held against a dark couch with a person in a red sweater in a dim indoor room, with chubby cheeks and tiny hands visible despite the low resolution. +train_13008.png A low-resolution image of a light-skinned, chubby-cheeked baby seated facing the camera with short fine hair and a small smile, wearing a bright blue, soft-looking cotton shirt and smooth skin texture, set against a blurred green leafy outdoor background. +train_13017.png Centered close-up head-and-shoulders view of a baby wearing a chunky, hand-knitted orange-and-white pom‑pom hat and blue patterned clothing, seated against a dim, out-of-focus indoor background, with round cheeks, wide dark eyes, and a small puckered mouth visible despite the low resolution. +train_13113.png A frontal low-resolution portrait of a fair-skinned baby with sparse light-blond hair and smooth, slightly rosy skin, sitting upright facing the camera with chubby cheeks and small hands held near the chest against a soft, out-of-focus beige background. +train_13261.png Frontal close-up of a baby with smooth fair skin and chubby cheeks wearing a light blue knitted beanie and a soft pink garment, looking toward the camera with wide eyes, a small rounded nose and pursed lips, set against a pale blue blurred background with the knit texture of the hat still discernible despite low resolution. +train_13469.png A low-resolution frontal view shows a small baby in a bright red, slightly fuzzy onesie sitting upright and facing the camera with arms slightly outstretched, a rounded pale head with softly defined facial features, and a plain deep-blue background with a narrow darker vertical shape to the right. +train_13524.png Seated upright on an adult's lap and looking toward the camera, the baby wears a bright fuchsia hooded coat with a soft, slightly fuzzy knit texture and a small white pom‑pom detail at the chest, tiny hands resting in front, set against a casual indoor scene of checkered floor tiles and adults' legs and shoes. +train_13634.png Close-up frontal portrait of a fair-skinned baby wearing a soft, fuzzy pink hooded garment, head slightly tilted toward the camera with large dark eyes, round rosy cheeks and a small pursed mouth visible, set against a warm, out-of-focus beige indoor background. +train_13714.png A pale-faced baby is shown from a slight frontal three-quarter view, bundled in a bright pink, slightly textured hooded garment with faint white speckles and dark hair peeking out, small indistinct eyes and mouth visible, seated against a soft turquoise-blue blurred background that suggests a cushion or blanket. +train_13956.png A low-resolution frontal portrait of a baby wearing a white knit beanie and pale onesie, showing smooth, slightly rosy cheeks, wide eyes and a slightly open mouth while facing the camera against a warm, indistinct indoor background with brownish wood- or fabric-like textures. +train_13969.png Close-up frontal view of a baby wearing a purple knit hat with pom-pom details and a soft, fuzzy light jacket, head slightly turned and looking upward, with chubby rosy cheeks and wide eyes against a softly blurred pale indoor background. +train_13978.png A front-facing chubby cartoon baby with warm peach-colored skin and a small curl of blond hair, rendered in smooth, flat, slightly glossy colors, sitting with arms outstretched and legs bent while wearing a white diaper against a plain white/transparent background, notable for round cheeks, simple dot eyes and a tiny smiling mouth. +train_13980.png A small baby wearing a red, fuzzy hooded outfit with white trim, shown front‑on with a slightly tilted head, chubby cheeks and wide eyes, seated against a teal‑blue cushion background. +train_14001.png A fair-skinned baby with short dark hair in a soft white onesie, seen in a close-up frontal reclined pose on a textured orange blanket, with round cheeks, a slightly open mouth and dark eyes visible despite the low resolution. +train_14048.png Seated baby seen from a slightly elevated frontal viewpoint wearing a bright red soft-fabric outfit with bare chubby legs and a glimpse of a white diaper, a small dark tuft of hair, one hand raised near the face, and a blurred green grassy outdoor background with a blue object nearby. +train_14087.png A small baby with fine dark hair and chubby cheeks sits upright facing the camera in a slightly top-down view, wearing a soft white cotton onesie patterned with tiny red motifs, set against a soft pink blanket or cushion and a pale, indistinct background, with visible dark eyes and a faint smile despite the low resolution. +train_14116.png A low-resolution, muted sepia-toned frontal portrait of a chubby-cheeked baby with smooth, pale skin and fine wisps of hair, shown in a slight three-quarter pose facing left with wide dark eyes and a small pursed mouth, wearing a light-colored garment against a soft, featureless dark background with a grainy, blurred texture. +train_14256.png A front-facing, low-resolution cartoon baby with smooth pale skin and a small brown hair tuft, dressed in a solid pastel-pink onesie with a white collar and tiny arms held slightly out, set against a plain white background and showing simple oval eyes and rosy cheeks. +train_14263.png A chubby, dark-haired baby faces the camera in a seated, slightly forward-leaning pose, wearing a soft light‑blue knit outfit with smooth pale skin and rounded cheeks visible despite the low resolution, set against a warm peach‑beige patterned background with a pink blanket beneath. +train_14366.png A close-up, slightly tilted front-facing portrait of a baby wrapped in a soft pale-pink fuzzy knit hat and blanket, with smooth warm skin, dark round eyes, full cheeks and a small mouth visible against an out-of-focus warm orange-brown background. +train_14428.png Close-up, three-quarter view of a small baby with short dark hair and smooth light-brown skin wearing a bright blue shirt, slightly turned to the left with chubby cheeks and a faint open-mouth expression, seated against a softly blurred green foliage and pale sky background. +train_14499.png Frontal, head-and-shoulders view of a baby with short, fine dark hair and smooth skin wearing a bright blue, matte cotton shirt with a darker collar, centered against a soft, light neutral background, showing chubby cheeks, a small smile and prominent dark eyes despite the low resolution. +train_14642.png A small, bright yellow downy chick is shown in three-quarter profile with soft, fluffy texture, a tiny dark beak and eye, and a rounded body, set against a blurred deep-blue background that suggests water and leaves only coarse highlights and shadowed contours visible in the low-resolution image. +train_14946.png Close-up frontal portrait of a fair-skinned infant with smooth, rosy cheeks and a small tuft of dark hair, eyes wide and head slightly tilted, wearing a soft pink outfit with a matching pink pacifier and seated against a blurred blue-gray indoor background. +train_14975.png From a slightly overhead three-quarter viewpoint, the small baby lies on a neutral beige surface showing pale pink, smooth, slightly glossy skin with chubby, creased limbs, a rounded face with indistinct features due to low resolution, and a light cream cap and pale cloth around its waist. +train_15134.png A close-up, slightly top-down view of a baby with smooth, peachy skin and rosy cheeks, sparse dark hair, wide eyes and a small slightly open mouth, wearing a pale garment and set against a softly blurred beige indoor background. +train_15620.png A frontal close-up of a fair, warm-toned baby with smooth, rosy cheeks and short dark hair, leaning slightly forward and wearing a soft turquoise sleeveless top, showing a small open-mouthed smile and dark eyes against a soft, out-of-focus pale beige indoor background, where low resolution blurs fine detail but the chubby cheeks, rounded forehead, and centered pose remain clearly visible. +train_15670.png The baby wears a pale pink, soft cotton-looking onesie and is photographed close-up from slightly above in a frontal pose, revealing light fine hair, round chubby cheeks, wide dark eyes and a small open mouth against a deep blue, slightly mottled blanket background. +train_15946.png A frontal close-up of a fair-skinned baby with fine blonde wisps and smooth, rosy cheeks wearing a soft pink top, looking toward the camera with wide eyes and a slightly turned head against a blurred cool blue-green background. +train_15987.png A small baby facing the camera wears a soft light-blue outfit with a visibly textured fabric, standing with arms slightly out to the sides and dark shoes, set against a blurred outdoor background of green grass and indistinct structures. +train_16187.png A small, round, fluffy bright-yellow baby chick with a soft, slightly ruffled down texture, shown in a three-quarter frontal view displaying tiny black bead-like eyes, a short orange beak and stubby orange feet against a plain white background. +train_16332.png A front-facing, round peach-toned cartoon baby with smooth, flat-shaded skin, large dark oval eyes, a tiny smiling mouth and a single brown curl atop its head, wearing a blue bonnet-like hood and set against a vivid red circular background. +train_16339.png Close-up frontal portrait of a baby wearing a red, slightly ribbed knit beanie and a dark jacket with a white collar, head tilted slightly to the left, showing smooth pale cheeks, a small pursed mouth and wide dark eyes against a soft, out-of-focus black background. +train_16587.png A small baby with dark hair dressed in a soft pale-pink knit outfit with a white collar is seated upright and slightly turned to its left while being held, set against a softly blurred indoor background of warm beige and wooden tones, with visible chubby cheeks, large dark eyes, and tiny hands evident despite the low resolution. +train_16627.png A low-resolution frontal three-quarter view of a light-skinned baby with short dark hair and round cheeks, seated and leaning slightly forward in a textured bright blue jacket with a small red collar trim, hands visible in front, set against an out-of-focus outdoor background of muted green foliage and gray-brown ground. +train_16717.png Seated baby wearing a pale pink, soft-knit sweater faces the camera with a slight head tilt, short dark hair with a small white hair clip, round chubby cheeks and large dark eyes, set against a plain pale wall and light doorframe in an indoor scene. +train_16964.png A close-up frontal view of a fair-skinned baby wearing a soft pink knitted hat and wrapped in a fuzzy matching blanket, head slightly tilted toward the camera with smooth, chubby cheeks, wide dark eyes and a small nose set against a softly lit neutral indoor background. +train_17456.png A fair-skinned baby wearing a soft pale-pink knit cap and matching outfit, seen from a frontal, slightly tilted pose with prominent round cheeks, dark wide-set eyes and a smooth, slightly dimpled face, seated against a bright, out-of-focus white background with a warm yellow blur at the upper left. +train_17606.png Close-up frontal view of a baby with smooth, slightly rosy skin and fine hair, wearing a soft light-pink knit cap and white clothing, looking slightly upward in a softly blurred beige indoor background with a small rounded nose and bright eyes visible despite the low resolution. +train_17767.png A chubby baby viewed from a slight frontal angle, seated upright with hands in the lap, wearing a light-blue sleeveless cotton top and short dark hair, smooth medium-brown skin and rounded cheeks visible despite the low resolution, set against a dim, dark background and a brown cushion. +train_17910.png Close-up, head-and-shoulders frontal view of a baby wearing a soft pink textured top, with light wispy hair, round rosy cheeks and a small open-mouthed smile, seated against a blurred pale background. +train_18026.png Frontal three-quarter view of a pale-skinned baby with smooth, chubby cheeks wearing a bright blue knitted cap and matching blue clothing, head slightly tilted toward the camera against a dark background with a red cloth visible at the left, facial features (dark eyes, small mouth) appearing softly blurred by the low resolution. +train_18029.png A close-up frontal portrait of a baby with smooth peach-pink skin and a slight sheen, round chubby cheeks with a faint rosy tint, dark round eyes and a small puckered mouth with a tiny dark hair curl at the top, set against a soft pale yellow circular background. +train_18033.png A small, plump baby chick with pale creamy-yellow downy fluff seen in a slight three-quarter profile, its tiny orange beak and dark round eye contrasting against a soft, out-of-focus pale background despite the image's low-resolution grain. +train_18124.png A small baby wearing a soft red-pink fleece sweater and a white bib with blue-and-yellow detailing sits upright in a slightly turned frontal pose facing the camera, showing chubby cheeks and a small dark hair tuft, against a dim indoor background of a dark red cushion and wooden floor. +train_18198.png A low-resolution black-and-white head-and-shoulders portrait of a pale-toned infant with smooth, soft skin, captured frontal with the baby gazing toward the camera, wide round eyes and a small slightly open mouth giving a surprised look against a dark, featureless background. +train_18227.png A chest-up frontal view of a baby-like figure with peach-colored, smooth, slightly shiny skin and short orange-brown hair, wearing a bright teal garment, posed facing the camera with chubby cheeks and large dark eyes, set against a soft mottled blue background and exhibiting a toy-like, low-resolution appearance. +train_18277.png A chubby-cheeked infant in a bright orange onesie with short dark hair is shown from a slightly top-down viewpoint, sitting upright against a soft pink, floral-patterned blanket, with a round face, wide eyes and a small open mouth visible despite the low resolution. +train_18297.png A small baby wearing a bright red, slightly rumpled cotton-like outfit with a white bib or collar sits upright facing the camera, showing smooth, round cheeks and short hair, framed against a dark maroon/black upholstered background with low-resolution grain that softens finer facial details. +train_18300.png Frontal three-quarter view of a fair-skinned baby with short dark hair and plump, smooth cheeks wearing a soft, bright turquoise onesie with a subtle knit texture, sitting upright with hands near the face against a blurred warm beige indoor background (couch), showing a faint smile and wide eyes that remain discernible despite the low resolution. +train_18527.png Front-facing and seated upright, the small figure wears a plush, pale-pink hooded onesie with white trim and yellow booties, showing a rounded light-toned face with prominent dark eyes and a tiny mouth, all set against a soft, out-of-focus pale blue-green background on a subtly textured surface. +train_18548.png A small baby lies on its back wearing a soft pastel-pink, slightly fuzzy onesie with tiny polka dots, head turned to the left with chubby cheeks and eyes closed and a small hand near the face, resting on a matching pale-pink blanket against a muted brown pillow-like background. +train_18725.png Close-up frontal three-quarter view of a light-skinned baby with smooth, slightly shiny skin and rosy, chubby cheeks, a faint tuft of light hair, and a small smile looking toward the camera, set against a soft, out-of-focus green background that suggests grass or foliage. +train_18739.png A chubby-cheeked baby with short dark hair wears a bright red, slightly textured top patterned with small white shapes, sitting upright and facing the camera at a slight three-quarter angle on a pale indoor surface (likely a sofa or bed) with a small green toy visible at the lower left and a soft, out-of-focus neutral background. +train_18763.png A tiny, fluffy cream‑white seal pup is curled on its side with its rounded face turned toward the camera, showing dark, round eyes and a small black nose against a bright, featureless background. +train_18931.png A close-up three-quarter view of a light-skinned baby with dark hair and chubby cheeks, wearing a bright pink-red knitted sweater with a soft, fuzzy texture and looking slightly to the right against a dim, blurred background with indistinct dark and greenish shapes. +train_18974.png Frontal close-up of a fair-skinned baby with smooth, rosy cheeks and wispy light brown‑blond hair, sitting upright and facing the camera with a slight head tilt and faint smile, wearing a bright blue top against a dark, softly blurred indoor background that suggests furniture or fabric. +train_19072.png Close-up three-quarter view of a baby wearing a teal ribbed knit beanie, with smooth pale-pink skin, chubby rounded cheeks, a small nose and dark eyes slightly turned toward the camera, framed by a dark navy background and a light blue/white patterned blanket, where the beanie's knit texture and cheek contours remain visible despite the low resolution. +train_19074.png A small baby wearing a pale blue, soft-textured onesie sits slightly turned to the left with one hand near its face, positioned on a warm brown floor or mat beside a red cushion or blanket, showing a round head, chubby limbs, and blurred facial features due to the low resolution. +train_19076.png Close-up of a pale-peach, slightly glossy baby face with flushed cheeks and a smooth, plastic-like texture, head tilted back and mouth slightly open in a frontal-upward view, small dark eyes and faint creases around the nose and mouth discernible against a bright blue, out-of-focus background with a hint of light-colored clothing at the lower edge. +train_19186.png A round, smooth pale-pink baby seen head-on with glossy black button-like eyes and a small orange triangular beak, sitting on an orange-brown base against a soft blue background speckled with white bokeh-like dots. +train_19216.png A small cream-white fluffy chick captured in a slightly overhead three-quarter view, its soft downy feathers looking fuzzy, with a tiny yellow‑orange beak and a dark round eye visible as it sits against a dark, out-of-focus background. +train_19819.png Close-up frontal view of the subject with pale, smooth skin and short light-blond hair, wearing a bright red knit top; the round face shows full cheeks and an open mouth with the tongue visible, set against a softly lit, out-of-focus indoor background with a beige wall and a blue-sleeved arm. +train_19852.png Close-up three-quarter view of a small infant with smooth, rosy skin and chubby cheeks, dark eyes and a hint of dark hair, mouth slightly open and wrapped in fuzzy red-pink fabric against a soft, warm-toned blurred background. +train_20058.png A small cartoonish baby with brown hair wearing a bright green short-sleeve shirt and purple pants, seated facing the viewer with legs outstretched and arms slightly raised, rendered in flat, smooth low-resolution colors against a plain white background, notable for an oversized head, simple dot eyes and a small smiling mouth. +train_20257.png An infant with a pale complexion and chubby cheeks wears a soft light-gray knit cap and a white onesie patterned with small red motifs, sitting upright facing the camera with a slightly open mouth, set against a blurred cool-blue background with an adult shoulder partially visible behind. +train_20274.png Close-up frontal head-and-shoulders view of a baby with fine, wispy light-brown hair and soft skin, wearing a pale-pink ribbed onesie, looking toward the camera with prominent rounded cheeks, large round eyes and a small slightly open mouth, set against a softly lit, out-of-focus indoor background. +train_20389.png A light-skinned infant in a soft white onesie with pink trim sits facing the camera with a slightly tilted head and partly raised arms, dark hair and prominent dark eyes visible against a blurred warm pink floral blanket background and a small indistinct pink object near the mouth. +train_20415.png Close-up frontal view of a baby’s round, peach-pink, softly glowing skin with smooth, chubby cheeks, large dark round eyes and a small pursed mouth, a tiny dark hair tuft at the crown, set against a soft, out-of-focus beige and pale-blue background. +train_20458.png A baby sits upright facing the camera wearing a bright red, soft-fabric dress with a white scalloped bib and a light-colored cap, hands resting together on its lap and a round, chubby face with cheek highlights visible despite the low resolution, set against a dim indoor background of a dark upholstered surface draped with a mottled blue blanket and a glimpse of denim at the left edge. +train_20468.png A small, round bright-yellow baby chick with a soft, slightly fuzzy texture, a tiny orange beak and a single dark eye visible, posed three-quarters toward the camera with a subtle flank highlight and set against a saturated red background. +train_20509.png A small baby doll in uniform pale pink plastic with a smooth, slightly glossy texture, lying on its back facing the camera with arms and legs slightly splayed and wearing a matching bonnet and outfit against a plain white background, its round oversized head, simple painted facial features (dot eyes and a small red mouth) and stubby limbs visible despite the low resolution. +train_20511.png A close frontal view of a fair-skinned infant with smooth, rosy cheeks and a slightly open mouth, bundled in a soft pale-pink hooded fleece with fuzzy white trim and looking toward the camera against a softly blurred indoor background. +train_20709.png A small baby dressed in a pastel pink, slightly textured knit outfit and matching cap is seen from a top-front angle in a reclined/seated pose on a plain white background, with a smooth round face, chubby limbs and a tiny hand near the mouth visible despite the low resolution. +train_20891.png Close-up, slightly top-down view of a light-skinned baby wearing a soft blue knit hooded outfit, with smooth rosy cheeks, wide dark eyes and a slightly open mouth, set against a softly blurred neutral indoor background. +train_21014.png Close-up, slightly off-center frontal view of a fair-skinned baby with fine dark hair and smooth, rosy cheeks, wearing a light-colored top and gazing toward the camera with a slightly open mouth against a soft, blurred dark background. +train_21056.png A small infant with a round, light-toned face and smooth, soft-looking skin, wearing a light knit cap and wrapped in a soft blanket, photographed from a slightly elevated frontal viewpoint while lying on a dark, textured background, showing a chubby cheek and a hand near the face despite the low resolution. +train_21174.png A small, pale baby in light clothing or a thin blanket lies curled on a warm brown wooden floor next to a dark rectangular mat, seen from a shallow overhead/oblique angle, with creamy, softly blurred skin and fabric textures and indistinct facial features due to the low resolution. +train_21199.png A small infant swaddled in a soft pale-pink knit blanket with a dark tuft of hair visible at the forehead, lying on pink floral-patterned bedding and turned slightly toward the camera so facial features appear blurred but centered in the frame. +train_21617.png Close-up three-quarter view of a fair-skinned baby with soft, smooth skin and rosy cheeks wearing a pale-pink knitted hat and matching outfit whose knit texture is visible, head tilted slightly upward and to the left against a softly blurred beige indoor background, with plump cheeks, a small button nose and discernible wide eyes despite the low resolution. +train_21817.png A low-resolution grayscale close-up shows a pale, soft-textured baby viewed from a slight overhead angle, lying on its back on a gently wrinkled blanket with a rounded face, prominent chubby cheeks, a small nose, and one tiny hand near the cheek. +train_21948.png Close-up, slightly angled frontal view of a young infant with soft pink-toned skin and fine short hair, wearing a dark red top and clutching a small blue blanket against a neutral beige background, with rounded cheeks, wide eyes, and a tiny hand near the mouth visible despite the low resolution. +train_22121.png Frontal, low-resolution image of a seated baby facing the camera wearing a fuzzy light-tan/brown jacket with darker cuff trim, short dark hair and round cheeks visible despite blurring, hands clasped in the lap, and a plain pale neutral background casting a soft shadow beneath. +train_22125.png A low-resolution image shows a light-skinned infant reclined in three-quarter profile, swaddled in a soft pink knit hat and red blanket with a small teal object nearby against a dark background, with smooth rounded cheeks and a tiny hand near the face visible despite the blur. +train_22171.png A close-up, slightly top-down view of a baby with short dark hair and smooth, rosy cheeks, leaning forward toward the camera with a partially open mouth and wearing a pale blue garment, set against a blurred green outdoor background. +train_22388.png A front-facing, seated baby with fair, smooth skin and rosy cheeks wears a pastel-blue knit cap and matching soft-textured onesie, showing large dark eyes and a small smile against a plain white background. +train_22417.png Top-down view of a dark-haired baby lying on its back on a maroon-and-beige patterned quilt, wearing a soft pink onesie with small white dots/flowers and white trim, arms partly raised and showing chubby pale cheeks and a small tuft of hair. +train_22572.png Frontal close-up of a baby with light skin and fine dark hair mostly covered by a soft white knit cap, smooth rosy cheeks and a small puckered mouth, posed slightly tilted toward the camera against a warm, out-of-focus orange-brown background. +train_22662.png A small dark-haired infant with warm brown skin wearing a tan onesie and a visible white diaper, seated with legs bent and one arm raised, photographed from a slightly elevated frontal viewpoint against a plain white background, showing chubby cheeks, a rounded belly and soft, smooth skin texture despite the low resolution. +train_22665.png A small infant shown in a close three-quarter frontal view, bundled in a soft pink hooded fleece with a white circular chest patch and fuzzy texture, with chubby cheeks and wide dark eyes gazing slightly to the right against a warm, softly blurred indoor background. +train_22705.png Front-facing, slightly reclined infant with pale skin and soft, rounded cheeks wearing a dark, textured knit cap and matching sweater, eyes mostly closed and lips faintly pursed, photographed against a dim, out-of-focus background with a brighter vertical band at the right edge. +train_22754.png A close-up, front-facing view of a plump baby chick with bright yellow, fluffy down, tiny dark eyes and a small orange beak, perched against a soft, out-of-focus pinkish background. +train_22766.png Frontal view of a seated baby with smooth light skin and short, fine dark hair wearing a soft pale-pink knit top, round chubby cheeks and dark eyes turned slightly toward the camera against a neutral, softly lit pale background with a small blue object at the side. +train_22800.png Frontal, slightly tilted view of a baby in a light-pink fuzzy hooded outfit with soft textured fabric, showing round pale cheeks, dark eyes and a small mouth, seated or held against a dim indoor background with warm-toned furniture and shadowed areas. +train_22838.png Close-up three-quarter view of a light-skinned baby lying on its side with smooth, slightly rosy skin and sparse dark hair, eyes nearly closed and a chubby cheek and small button nose visible, resting on a soft pale blanket background under warm, diffused light with mild pixelation. +train_22897.png A baby wearing a bright red, smooth-fabric top and light-colored bottoms is seated upright facing the camera with legs slightly apart on a pale, soft blanket against a neutral, out-of-focus background, showing a rounded head and chubby cheeks while facial details remain blurred by the low resolution. +train_22984.png Close-up frontal view of a swaddled baby with smooth pinkish skin and pronounced chubby cheeks, wearing a soft white cap and blanket, head slightly tilted back with eyes closed and a small, slightly open mouth set against pale, softly textured bedding. +train_23021.png A low-resolution close-up of a fair-skinned baby, seen from a slight top-front angle and lying on a warm brown/orange blurred background, wearing a soft coral-red knit cap and pale patterned cloth with smooth cherubic cheeks and a small closed mouth visible despite the blur. +train_23185.png Close-up three-quarter view of a baby reclined on a soft, patterned blanket, wearing a pale pink knit hat and light peach outfit, with smooth rounded cheeks, eyes open and a small hand near the mouth, while the low-resolution image renders the background as a blurry mottled gray-beige fabric. +train_23209.png A small baby with a round pale face bundled in a textured light-pink knit hat and matching blanket, seen from a slightly top-down frontal viewpoint while seated against a warm beige indoor background, with chubby cheeks, small mouth and dark, closely set eyes visible despite the low resolution. +train_23451.png Frontal close-up of a pale peach-skinned baby with smooth, matte skin, wide dark round eyes and a small round open mouth forming a surprised "O", faint rosy cheeks and a tiny curl at the crown against a plain white background. +train_23678.png A small baby viewed frontally with a slight tilt, wearing a bright red, slightly fuzzy knit cap and matching textured red outfit, seated against a dark, out-of-focus background with a teal patch to the right, showing a pale round face and shadowed eye/cheek areas visible despite the low resolution. +train_23774.png A small baby wearing a bright red, slightly textured hooded outfit is shown in a close, slightly overhead three-quarter view, reclining against a dark background with a pale hand or blanket at the lower left, the low-resolution image revealing dark hair, a round face and faint facial features. +train_23970.png A fluffy bright-yellow downy chick with a small orange beak and dark round eye stands in three-quarter profile facing left, its soft ruffled texture contrasting against a bright white surface and a blurred dark-and-light background suggesting clothing or objects. +train_24014.png A baby with pale skin and a small dark hair tuft, dressed in a bright blue knit onesie, is captured in a slightly overhead, side-lying pose with its head turned to the right on a wrinkled rust‑orange patterned blanket, the low-resolution image still showing a rounded cheek, visible ear, and a hand near the face. +train_24074.png A low-resolution frontal portrait of a pale, smooth-skinned baby with straight brown bangs and glossy hair, large dark eyes and a small rosy mouth, wearing a red garment with a white rounded collar and tiny red bow, posed slightly turned to the left against a smooth muted blue-gray background. +train_24149.png A low-resolution grayscale image of a chubby baby wearing a light-colored (appearing white) soft cotton onesie, seated upright and facing the camera with a slightly turned head and hands resting on its lap, showing a smooth round face and short hair against a dark, softly textured upholstered background. +train_24511.png A small baby wearing a bright pink knit sweater with dark, slightly tousled hair is seated facing the camera with hands raised, showing chubby cheeks and a slightly open mouth, in front of a blurred green grassy outdoor background with dappled sunlight. +train_24578.png A light-skinned baby with short, light brown hair seen from a slightly elevated frontal viewpoint, wearing a pale blue collared shirt with a narrow brown tie, leaning slightly forward to the camera with round chubby cheeks and a neutral expression against a softly blurred warm outdoor background with hints of grass. +train_24648.png Close-up frontal view of a chubby infant with smooth, warm pinkish skin and fine dark hair, wearing a soft red outfit with a hint of white at the collar, head slightly tilted toward the camera, round cheeks and a faint smile visible against a mottled green background. +train_24679.png Close-up frontal view of a baby with a soft white knit cap and a pink fuzzy outfit or blanket, face centered with rounded cheeks and dark eyes visible despite low resolution, set against a muted bluish-gray background. +train_24733.png Close-up frontal view of a fair-skinned baby with smooth, slightly rosy cheeks and short dark hair wearing a pale pink top and a white bib, facing the camera with a faint smile and chubby cheeks against a dark, out-of-focus background. +train_24759.png A low-resolution image of a baby wearing a bright orange, soft-textured sweater with a white collar, seated and turned slightly toward the camera against a blurred green grassy outdoor background, with a round face, rosy cheeks, and dark wide eyes visible. +train_24918.png A small baby in a soft pale onesie with a pink bib sits upright on a rumpled beige blanket, viewed at a slight three-quarter angle and bathed in warm amber lamp light against a dim, cluttered room with a wooden dresser and framed picture behind, the low-resolution image still revealing a round, hairless head, chubby limbs and shadowed facial features. +train_25014.png A fair-skinned baby with fine pale blond hair and smooth, slightly rosy skin is shown in side profile facing left, sitting upright in bright blue clothing against a warm orange-brown background, the low-resolution image still revealing a rounded chubby cheek, a small ear, and the soft, sparse hair texture. +train_25061.png Close-up three-quarter view of a sleeping infant swaddled in a soft pale-pink knit blanket, pale smooth skin and a small dark hair tuft visible as the head is turned slightly to the viewer's right against a crumpled white-sheet backdrop, with closed eyes, chubby cheeks and a tiny pursed mouth discernible despite the low resolution. +train_25129.png A pale, smooth, slightly glossy infant figure is shown in a three-quarter reclining pose with head tilted slightly, chubby cheeks and large dark eyes, the right hand raised to the mouth, and subtle folds of light clothing visible against a high-key plain white background despite the low resolution. +train_25207.png A low-resolution, front-facing cartoon baby in a smooth, slightly glossy bright green onesie with an oversized round head, big dark eyes, a small curved smile and tiny curl of hair, seated with stubby arms and splayed legs against a plain white background. +train_25220.png A small, pale yellow–cream baby chick with soft, fluffy down and a tiny orange beak is shown in a three-quarter profile standing on a blurred green grassy background, its round compact body, dark eye, and stubby wing visible despite the low resolution. +train_25222.png Close-up, front-facing view of a baby with smooth pale skin and short dark hair, rosy chubby cheeks and a slightly open mouth, wearing a soft pink top against a dark bluish fabric background, with large round eyes and a rounded face visible despite the low resolution. +train_25402.png A low-resolution three-quarter frontal view of an infant wrapped in a soft, plush pink blanket with a white garment visible at the chest, showing a slightly blurred fair, round face with light hair and dark eyes, seated against a neutral beige indoor background with indistinct brown vertical shapes. +train_25496.png A low-resolution three-quarter frontal view of a baby wearing a vivid blue hooded outfit with a soft, slightly fuzzy texture, slightly turned to the viewer’s left and seated against a blurred warm-toned background with a pale blue cushion, the round, chubby face and a small hand near the mouth visible despite pixelation. +train_25853.png A close frontal portrait of a sleeping baby wearing a soft white knit beanie with a small pom‑pom, showing smooth, rosy cheeks and slightly puckered lips, photographed at a slight downward angle against an out‑of‑focus pale, neutral bedding background. +train_25861.png Frontal head-and-shoulders view of a baby with smooth, warm light-brown skin and short dark hair, wearing a soft teal-blue cotton shirt with a white collar, rounded cheeks, large dark eyes and a slightly open mouth, posed facing the camera against a dim indoor background with a small warm orange-red highlight in the upper-right. +train_25947.png A close-up three-quarter view of a small, downy pale-yellow chick with soft, fluffy texture, a visible dark eye and tiny orange beak, set against a blurred light-blue background. +train_26051.png A low-resolution frontal view of a fair-skinned baby seated and facing the camera, wearing a soft pale-pink outfit with a slightly fuzzy texture, showing smooth chubby cheeks, a small nose and indistinct eyes, tiny hands at the sides, and a neutral cream/white background that resembles a blanket or sheet. +train_26125.png A chubby-cheeked baby with short light hair and smooth peach-toned skin wears a bright blue, slightly textured knit top and leans forward in a near-frontal, slightly tilted pose toward the camera with mouth ajar showing small front teeth, seated on an adult's lap against a softly blurred indoor background with pale walls and a hint of floral fabric. +train_26310.png A frontal close-up of a stylized baby face with smooth peach-toned skin and a single auburn curl, rosy cheeks and a tiny smiling mouth, rendered with soft, slightly glossy shading against a plain white background. +train_26483.png A chubby baby sits facing the camera on a gray fabric surface against a pale wall, wearing a bright red knit top and blue diaper/shorts, with smooth pinkish skin, short dark hair, round cheeks and indistinct blurred facial features from the low resolution. +train_26718.png A light-skinned baby with fine blond hair and smooth, rosy cheeks wearing a soft pink knit outfit and a white bib with blue trim sits facing the camera with head slightly tilted against a muted floral-patterned upholstery background, showing bright dark eyes and a small open-mouthed smile despite the low resolution. +train_26960.png A front-facing, sitting baby with smooth pale skin wearing a fuzzy light-blue knit hat and a white onesie, seen upright against a neutral beige background with a patterned blue cloth to the right, showing a rounded chubby face, dark eyes and a slightly open mouth visible despite the low resolution. +train_26987.png A frontal close-up of a baby wearing a soft, fuzzy pink hooded outfit with small ear-like tufts, showing a round face with chubby cheeks, wide dark eyes and a slight smile against a plain pale background, with noticeable low-resolution pixelation and softened details. +train_27042.png A small baby with light-toned, smooth skin wearing a light-colored, slightly textured long-sleeve onesie, seated upright and facing the camera with hands near the chest against a dark, blurred fabric background, showing round chubby cheeks, prominent dark eyes and a faint tuft of hair on top. +train_27156.png Close-up frontal view of an infant with smooth, slightly rosy cheeks and large dark eyes, wearing a textured red knit hood or blanket and tilting its head slightly toward the camera against a deep blue, out-of-focus background, with a small rounded nose and parted lips visible despite the low resolution. +train_27331.png Close-up, front-facing portrait of a fair-skinned baby with smooth, rosy cheeks and a small dark hair tuft, wearing a pale pink outfit, eyes wide and slightly upward-looking and mouth slightly open, set against a plain bright blue background with soft, even lighting. +train_27334.png Close-up frontal view of a small baby with fair skin and fine downy hair, swaddled in a soft pink fuzzy blanket with a slightly turned head and closed eyes, lying on a pale-pink textured background and showing chubby cheeks and a small pursed mouth visible despite the low resolution. +train_27394.png Front-facing, slightly tilted cartoon-like baby with smooth peach-toned skin and soft shading, large dark eyes, rosy round cheeks and a small smiling mouth, a single dark hair curl on the forehead, wearing a light-blue bib against a plain pale-blue circular background. +train_27432.png Frontal close-up of a baby with fair, smooth skin and rosy chubby cheeks, short dark fuzzy hair, large dark eyes and a small slightly open mouth, wearing a light-blue top or bib with white trim and leaning slightly forward against a soft, blurred indoor green‑brown background. +train_27478.png A tiny, fluffy yellow-orange chick with a soft downy texture seen in a three-quarter frontal view standing on a pale beige surface against a dark green blurred backdrop, its round body, slightly darker head and small beak and legs discernible despite the low resolution. +train_27595.png Frontal close-up of a fair-skinned baby with smooth, rosy cheeks and large blue-gray eyes wearing a cream-colored knitted hat with visible ribbed texture, looking straight at the camera against a softly blurred pale-gray background and showing plump cheeks and a small pursed mouth despite the low resolution. +train_27627.png A low-resolution close-up of a fair-skinned baby with soft, peachy, slightly rosy cheeks and fine light-blond fuzzed hair, captured in a slightly turned frontal pose while seated and wearing a pale, matte outfit, set against a dark greenish-black, slightly mottled background, the rounded face, chubby cheeks and large dark eyes remaining discernible despite the blur. +train_27661.png A softly focused close-up of a baby swaddled in bright turquoise knit fabric, seen from a slightly overhead, angled view as they recline against a warm orange-red cushion, showing a round, smooth face with indistinct features and a small hand near the chin. +train_27687.png An infant viewed from slightly above, swaddled in a soft, fuzzy pale blanket and wearing a light knitted cap with subtle ribbing, lying against a pale textured pillow with soft shadows, the low-resolution image nonetheless showing a rounded cheek, small nose and a tiny hand near the face. +train_27771.png Close-up, slightly off-center frontal portrait of a baby swaddled in a soft pink, fleece-like hat and blanket, with smooth pale skin, rosy chubby cheeks, a small button nose and open dark eyes, head tilted slightly to the left against a warm, softly blurred beige-pink background. +train_27810.png A low-resolution frontal close-up of a baby seated and facing the camera, wearing a soft light-blue knit hat and matching fuzzy cardigan, with round chubby cheeks and a slightly open mouth, set against a plain, neutral off-white indoor background. +train_27863.png A close-up three-quarter view of a small infant with a round, rosy-cheeked face and a dark fuzz of hair, lying on a soft off-white knit blanket in a softly blurred neutral background, with a tiny hand visible near the cheek despite the low resolution. +train_27959.png A low-resolution overhead view shows a baby lying on its back wearing a coral-orange short-sleeve top, with soft smooth skin and a rounded head turned slightly to the side, small limbs and a diaper visible, set against a white sheet and a teal-blue blanket or pillow forming a blurred, soft background. +train_28097.png Reclining in a dark car-seat carrier and seen slightly from above, the infant wears a soft pink knit hat and matching fleece swaddle with a fuzzy texture, has eyes open and a round, three-quarter–turned face, and is set against a shadowed fabric background with a visible black strap. +train_28215.png Close-up frontal view of a small baby-like figure in a bright pink, slightly fuzzy knit cap and matching outfit, showing a smooth pale face with two dark eye-like dots and a tiny nose while the head tilts slightly to one side against a soft teal blanket background. +train_28392.png A tiny, hairless newborn with translucent pale-pink, slightly glossy and wrinkled skin is curled in a fetal pose seen from above at a slight angle, its closed eyes, tiny tucked limbs and faint tail visible against a solid black background. +train_28398.png A small, round-headed baby in a light off-white/beige, soft-textured outfit sits centered and facing the camera with arms slightly extended, silhouetted against a bright, softly gradient background (pale sky or wall) and a darker reflective surface beneath, the low-resolution, pixelated image rendering only a high-contrast outline, a faint skin-toned face, and a small dark tuft of hair as distinguishing features. +train_28575.png A fair-skinned baby with smooth, soft-looking skin dressed in a light blue onesie lies on its back with the head tilted slightly left, chubby cheeks and a small tuft of hair visible against a mottled pink blanket background. +train_28641.png A close-up frontal three-quarter view of an infant wearing a soft peach-pink knit onesie with a subtle fuzzy texture, lying on a pale, slightly patterned blanket, head turned slightly to the viewer’s left showing short dark wisps of hair, rounded rosy cheeks and a small pursed mouth visible despite the low resolution. +train_28642.png A small infant with light-toned skin and short, fine hair lies on their back in a soft white onesie, captured from a slightly overhead frontal viewpoint against a textured light blanket, with a round, chubby face and shadowed eyes and mouth discernible despite the low resolution. +train_28769.png A chubby infant with fair skin and short light hair wearing a pale yellow, slightly ribbed onesie is shown in a three-quarter frontal reclining pose against a soft, light-gray blanket background, holding a small blue pacifier near the mouth, with soft, low-resolution lighting that emphasizes rounded cheeks and indistinct facial details. +train_28816.png A frontal low-resolution photo shows a baby wearing a soft pink knit hat and matching fuzzy blanket, seated and facing the camera with a slightly turned head, visible chubby cheeks and dark eyes, set against a blurred green grassy background. +train_28950.png A close-up frontal view of a fair-skinned baby with fine light brown hair and smooth, rosy cheeks wearing a coral/orange knit top, head slightly tilted toward the camera and showing large eyes and a small button nose against a softly blurred warm beige indoor background with a muted orange circular object behind the head. +train_29239.png A small pale-yellow, downy chick shown in side-profile, perched on a warm reddish-brown surface with a softly blurred dark background, its round dark eye and tiny orange beak and feet visible despite the low resolution. +train_29307.png A frontal head-on view of a light-peach-skinned baby in a soft pink cap and matching outfit, with smooth, chubby cheeks, small dark eyes and a tiny nose and mouth visible despite the low resolution, set against a plain turquoise-blue background. +train_29625.png A small orange-yellow fluffy baby chick shown head-on with a slightly tilted, round downy body, tiny pale beak and two dark bead-like eyes visible against a soft, pale out-of-focus background that resembles a blanket. +train_29629.png Grainy black-and-white image of a small baby with smooth, pale skin and a rounded head wearing a light, textured onesie, seen in a three-quarter upright pose cradled against an adult’s arm in a dim, indistinct indoor setting with faint furniture or wall behind, the low-resolution photo still showing chubby cheeks and a tiny hand near the face. +train_29693.png A light-skinned baby with sparse light-brown hair and plump, rosy cheeks is shown in a close-up three-quarter frontal pose wearing a soft pink knit garment, seated against a blurred cool blue background, with a small puckered mouth and rounded facial features visible despite the low resolution. +train_29798.png A light-skinned baby with short dark hair wearing a soft sky-blue onesie sits upright facing slightly left toward the camera, showing chubby cheeks and a rounded face, set against a warm beige indoor background with a dark navy cushion or piece of furniture to the right, the low-resolution image appearing grainy and softly lit. +train_29817.png A softly lit close-up of a sleeping infant swaddled in a pale blue knit hat and matching blanket, showing smooth fair skin, rounded cheeks and a slightly pursed mouth, set against a dark, out-of-focus indoor background. +train_29905.png A close-up frontal view of a baby wearing a soft pink hooded outfit with a slightly fuzzy texture, showing round chubby cheeks, dark eyes gazing at the camera and a small mouth, all rendered with noticeable pixelation against a plain pale-gray background. +train_29938.png Centered in the frame, the chubby-faced baby with dark, slightly tousled hair and warm-toned skin wears a bright pink/red soft-fabric top with a pale bib-like collar, sitting upright and facing the camera at a slight angle against a dim, patterned brown-beige background (likely a rug or wallpaper), with round cheeks and dark eyes clearly visible despite the low resolution. +train_30024.png A low-resolution image of a newborn bundled in soft white knit and fleece, shown in a slightly angled three-quarter pose with a pale rounded cheek and partly visible closed eyes, lying against a uniformly light, out-of-focus background. +train_30093.png A chubby-cheeked baby with short dark hair sits slightly turned toward the camera in a strapped stroller/high chair, wearing a bright orange, soft-cotton onesie whose smooth fabric contrasts with the black safety straps, against a well-lit, cluttered indoor background with tiled floor, furniture and a white blanket on the floor. +train_30122.png Close-up, frontal view of a chubby, fair-skinned baby with rosy, slightly mottled cheeks and a soft, velvety skin texture, wearing a pale pink knit hat and matching outfit with eyes nearly closed and lips pursed, centered against a warm, softly blurred beige indoor background. +train_30134.png Front-facing, small light-skinned baby (possibly a doll) sits with legs splayed and arms slightly out, wearing a bright turquoise-blue cotton onesie with a white-and-red chest motif and red footwear, showing smooth matte skin, chubby limbs and a proportionally large head against a plain pale gray/white background. +train_30140.png Close-up frontal view of a bald baby head with smooth, pale peach skin and a slight glossy sheen, round chubby cheeks, small nose and pursed pink lips, large dark shiny eyes and faint eyebrows, all set against a plain off-white background with subtle shadowing. +train_30200.png A reclining infant viewed slightly from above, bundled in a soft pink knit cap and matching swaddle with a textured knit finish, lying on a blue blanket patterned with white floral shapes, showing a round face with noticeable chubby cheeks and a small, slightly open mouth despite the image’s low resolution. +train_30289.png Close-up, head-and-shoulders three-quarter view of a baby wrapped in a soft, plush pale-blue blanket and wearing a cream knit cap, showing smooth rounded cheeks, dark eyes and a small nose against a dim, indistinct indoor background. +train_30359.png A close-up three-quarter view shows a baby wearing a soft pink knit hat with smooth, slightly rosy skin and chubby cheeks, mouth slightly pursed, reclining against a pale, out-of-focus blanket with a gentle, fuzzy texture. +train_30376.png A close-up, front-facing view of a small, fluffy white seal pup with soft, dense fur and subtle gray shading, large round dark eyes, a tiny black nose and whisker dots visible despite the low resolution, resting on a pale snowy background. +train_30511.png A light-skinned infant shown in a three-quarter view wearing a bright yellow, soft cotton top with short dark hair and rounded cheeks, seated against a plain white indoor background and looking slightly to the right with hands near the chest and a faintly open mouth visible despite the low resolution. +train_30742.png A low-resolution close-up frontal view of a baby wearing a light-gray knitted beanie and soft-textured gray sweatshirt, head slightly tilted toward the camera with rounded cheeks and a small puckered mouth visible against a dark, out-of-focus background that includes a partially legible "RAIDERS" graphic in the lower-left. +train_30812.png Close-up low-resolution image of a pale-skinned baby wearing a light-blue knitted hat and matching textured blanket, shown in a slightly turned side-profile with closed eyes, round flushed cheeks and a small pursed mouth, lying against a dark, out-of-focus background. +train_30919.png A small baby wearing a vivid red, slightly fuzzy onesie and white cap is seen reclining from a slightly overhead viewpoint against a deep black background, showing a pale, rounded face with indistinct features and a tiny hand near the chest. +train_30942.png A frontal close-up of a stylized baby with smooth peach-toned skin and subtle rosy cheeks rendered in flat, soft shading, a single dark curl on the forehead, small round dark eyes and a tiny smile, swaddled in a bright yellow blanket and centered against a soft sky‑blue circular gradient background. +train_30983.png Close-up three-quarter view of a baby lying on its back on a white blanket, with smooth pale-pink skin and rounded chubby cheeks, eyes closed and mouth slightly open, wearing a light blue ribbed knit cap and swaddled in a soft white blanket against a pale background, the fine downy hair, small ear and faint redness on the cheek visible despite the low resolution. +train_31106.png A close-up frontal view with a slight head tilt of a baby with smooth, warm pinkish skin and rosy cheeks, dark hair and wide dark eyes with a slightly open mouth, wrapped in soft reddish-orange fabric against a dim, out-of-focus brown background. +train_31151.png A close-up frontal view of a baby with warm tan, smooth skin and chubby round cheeks, wearing a soft teal garment, head slightly tilted with dark, wide-set eyes and a small pursed mouth, set against a plain pale pink background. +train_31268.png Close-up three-quarter frontal view of a baby with soft pale-peach skin and fine light-brown hair, chubby rounded cheeks and a slightly open mouth, seated upright and turned slightly to the right while gazing upward against a warm beige indoor background with wooden furniture and a patterned cushion visible at the right edge. +train_31300.png A small infant viewed from a slightly angled overhead perspective lies on its back wearing a light-colored, slightly ribbed onesie with one arm bent toward the face, resting on a softly patterned blanket and darker cushion behind the head, the low-resolution grayscale image still showing a round, closely-cropped head, chubby cheeks, and a dark print or shadow across the chest. +train_31383.png A close-up, slightly tilted frontal portrait of a baby in a blue outfit against a muted blue background, showing smooth, soft skin texture, round chubby cheeks, fine short hair, large dark eyes and a small nose and mouth visible despite the image's pixelation. +train_31505.png Close-up three-quarter view of a light-skinned baby wearing a pale knitted cap and soft beige outfit, showing smooth rosy cheeks, wide dark eyes and a small pursed mouth against a blurred neutral indoor background. +train_31542.png Close-up, low-resolution portrait of a fair-skinned infant with smooth, peach-toned skin and fine light hair, turned slightly to the left in a three-quarter view and wearing a soft pink cap or outfit, set against a dark, out-of-focus background and showing chubby cheeks, a small upturned nose and wide eyes visible despite the blur. +train_31575.png In a low-resolution frontal three-quarter view, the fair-skinned baby with a round, rosy-cheeked face and short dark hair has a slightly open mouth, wears a light-colored, subtly textured onesie with a faint pattern, and sits facing the camera against a soft, out-of-focus indoor background with a beige wall and a blurred adult shoulder. +train_31638.png A chubby-cheeked baby with short dark brown hair and smooth warm-toned skin wearing a white top with tiny blue-and-red dots is seen from a slightly above frontal view, leaning forward with a hand near the mouth while seated against a soft beige couch and a blue-striped cushion in warm indoor light, the low-resolution image still revealing rounded cheeks and a curious gaze. +train_31647.png A close, slightly top-down image of a baby wearing a pale-pink, soft-knit onesie with a matte, plush texture, seen in a three-quarter frontal pose reclining/sitting on a bright white blanket with a round head, chubby limbs and small hands visible against an indistinct, brightly lit background. +train_31691.png A fair-skinned, light-blond baby with smooth, slightly rosy cheeks and sparse hair sits upright facing the camera with a slightly open mouth and wide eyes, wearing a pale outfit with a small blue bib, set against a soft, neutral beige cushion or wall background. +train_31842.png A small pale cream, downy baby seen from a slight overhead three-quarter angle, curled with a tiny dark eye and a small darker beak-like tip visible against a bright turquoise-blue fabric background. +train_31873.png Close-up, slightly top-down view of an infant swaddled and wearing a fuzzy pink knit cap—warm tan skin with soft, chubby cheeks, a small closed mouth and eyes mostly closed—set against a blurred green background with an overall low-resolution, soft-textured appearance. +train_32137.png A small pale-peach, glossy-smooth baby figurine curled tightly in a fetal pose with a rounded head and chubby limbs, seen from above against a dark navy/black background with a faint white highlight near the head. +train_32270.png Close-up frontal view of a small, glossy peach‑orange baby head with smooth, slightly shiny plastic-like skin, large dark round eyes and a small painted mouth, tilted slightly to the viewer's right against a deep burgundy fabric background. +train_32496.png A small, fluffy cream-colored baby kitten with soft, slightly tousled fur and a tiny pink nose, shown in a close-up three-quarter upward gaze revealing large bluish eyes and delicate whiskers, against a soft, out-of-focus pale-pink blanket background. +train_32596.png Close-up, front-facing view of a baby bundled in soft pink fabrics—a fuzzy pink hat with a small white pompom and matching pink outfit—revealing a round fair face with prominent dark eyes and slightly rosy cheeks against a blurred light indoor background. +train_32688.png Front-facing baby wearing a deep red, velvety hooded outfit edged with fluffy white faux fur and a small pompom, showing a round pale face with rosy cheeks and chubby hands near the mouth, set against a dark green, softly blurred background. +train_32906.png Close-up frontal view of a reclining baby with warm brown skin and soft, slightly dimpled cheeks, dark eyes and a small pursed mouth, wearing a pale pink knit cap and white clothing, resting on a pastel-pink patterned blanket with a soft, slightly blurred texture and diffuse warm lighting. +train_32941.png A small baby with wispy pale-blond hair and a rosy, pixelated face sits facing the camera in a light-blue, soft-textured outfit, set against a deep navy, slightly mottled background, with the low resolution emphasizing a bright head silhouette and fuzzy clothing edges. +train_33042.png Frontal close-up of a seated baby wearing a bright orange-red, soft-textured sweater with a white bib or pacifier at the mouth, short dark hair and rounded cheeks visible against a dim indoor background with a pale vertical stripe at the left. +train_33073.png Low-resolution close-up frontal view of a light-skinned baby swaddled in pale fabric and wearing a soft white knit hat, with smooth, slightly rosy cheeks, dark wide eyes gazing upward and a small mouth, the head filling the frame against a neutral beige background. +train_33194.png A front-facing baby seated upright and looking toward the camera, wearing a bright blue, slightly fuzzy jacket with a white rounded bib or collar, dark hair peeking out, chubby cheeks and a small mouth, set against a softly blurred warm-pink indoor background. +train_33218.png A close-up frontal portrait of a light-skinned baby with chubby, rosy cheeks and dark eyes, wearing a white knit hat and pale blue clothing, the soft smooth skin and knit texture still discernible despite low-resolution blurring against a neutral, out-of-focus indoor background. +train_33251.png A baby wrapped in a soft, light-blue textured blanket, photographed from a slight top-front angle with a rounded head and indistinct facial features, reclining on a warm-toned, softly patterned background with a darker patch near the torso. +train_33304.png Reclining three-quarters toward the camera with eyes closed, the baby lies on a soft pink fleece blanket wearing a light blue garment, showing smooth rounded cheeks, a small nose and wisps of dark hair against a softly blurred pink background. +train_33361.png A baby in a bright pink knit hat and matching soft pink outfit is seen from a slightly high frontal viewpoint, with chubby rosy cheeks, dark wide eyes and a small puckered mouth, seated against a blurred blue-green background and partially wrapped in a textured blanket. +train_33503.png A close-up frontal view of a baby wearing a pink/red outfit with a small white collar, smooth slightly shiny skin and short dark hair, head slightly tilted toward the camera with large dark eyes and rounded chubby cheeks visible against a dim, out-of-focus brown background, the soft skin and fuzzy hair discernible despite the low resolution. +train_33625.png A low-resolution close-up of a baby wearing a soft pink knit cap and matching fuzzy pink outfit, seen from a slight overhead angle as the infant lies back against a blurred warm-beige background, with a round face, wide dark eyes and a small pursed mouth visible despite the blur. +train_33637.png A small, bright-orange plastic baby doll with a smooth, slightly glossy texture is shown front-facing with its round head and simple painted facial features visible, wearing a turquoise bib-like cloth around its neck and seated slightly tilted against a warm, out-of-focus wooden-brown background. +train_33811.png Close-up, forward-facing portrait of a baby with smooth, rosy-pink skin and a small tuft of dark hair, rounded chubby cheeks and dark eyes, wearing a pale pink outfit and a white headband, photographed head-on against a softly blurred green background. +train_33878.png A close-up, overhead view of a fair-skinned infant with smooth, chubby cheeks and short dark hair, wearing a soft pink onesie and lying on a pale, slightly textured blanket while facing the camera with a small upturned mouth visible despite the low resolution. +train_33889.png A low-resolution close-up three-quarter view of a fair-skinned infant reclining on a pale, slightly textured blanket, with soft fine light hair, rounded cheeks and a small upturned nose, wearing a light-colored garment against a muted gray background. +train_33952.png A front-facing infant with pale, smooth skin and chubby cheeks is wearing a soft bright-blue knit hat and matching outfit, head slightly tilted to the viewer's right with dark wide eyes and a small closed-mouth smile, set against a blurred green outdoor background with indistinct darker shapes. +train_33977.png Seated upright and slightly angled toward the camera, the baby wears a bright blue, soft-knit onesie with white trim, has short dark hair, round chubby cheeks and clasped hands, and is positioned on dark upholstery against a dim, cluttered indoor background. +train_33986.png Frontal close-up of a pale cream, glossy-skinned baby doll with smooth porcelain-like texture, dark inset eyes, rosy painted cheeks and a small red mouth, wearing a ruffled white lace bonnet and pink clothing, posed upright against a warm beige background. +train_34266.png A warm tan-skinned infant in a soft pale cap and light clothing lies reclined with the head slightly turned to one side and eyes mostly closed, showing smooth, chubby cheeks and a small pout against a vivid yellow-orange fabric background. +train_34272.png Grainy, low-resolution monochrome close-up of a baby lying on its back in a slight three-quarter frontal pose, showing a small dark tuft of hair, rounded cheeks and wide eyes, dressed in a soft light-toned garment and resting on a faintly patterned blanket against a darker, out-of-focus background. +train_34551.png A small infant with warm brown skin wearing a soft pink knitted hat and swaddled in light blue fabric, shown in a close-up reclined three-quarter view against a muted gray-blue background, with chubby cheeks, a slightly open mouth and dark hair peeking from beneath the cap. +train_34814.png A small, round baby chick with bright orange-yellow, soft downy fluff seen in a three-quarter standing pose—tiny pointed beak and a dark eye discernible—set against a blurred green grassy background. +train_35048.png A soft-lit infant shown in a slightly angled three-quarter frontal view, wearing a deep maroon knit hat and matching textured sweater with visible coarse stitches, rounded pale cheeks and a small closed mouth, set against a dim, out-of-focus dark gray fabric background. +train_35171.png A front-facing infant in a pale pink, slightly fuzzy knit hat and matching outfit, reclining on a soft white blanket in a softly lit indoor setting, with a round light-skinned face, chubby cheeks, dark eyes and a small mouth visible despite the low resolution. +train_35326.png A close three-quarter view of a small infant with fair, slightly rosy skin wearing a light-blue knit cap and wrapped in a cream-colored fuzzy blanket, showing rounded cheeks, a small nose and partially closed eyes against a softly blurred indoor background. +train_35509.png A low-resolution frontal view of a baby wearing a warm orange-brown knitted hat with a fuzzy pompom and a cream sweater, leaning slightly forward with visible round cheeks, wide dark eyes and a small mouth against a dim, out-of-focus indoor background. +train_35587.png Close-up frontal view of a light-skinned infant with smooth rosy skin and round cheeks, wearing a soft orange knit cap and a pale blue bib over a white onesie, head slightly tilted toward the camera against a neutral light blanket background, with dark eyes and a small pursed mouth visible despite the low resolution. +train_35590.png A frontal, low-resolution portrait of a light-skinned baby with short dark hair wearing a white ribbed sleeveless top, sitting upright and facing the camera against a plain pale background, showing soft smooth skin, chubby cheeks and a faint smile with an overall slightly grainy texture. +train_35801.png A frontal, low-resolution photo of a baby with short dark hair and round, chubby cheeks wearing a soft-looking pinkish-red sweater or jacket with a white collar/bib, seated facing the camera against a dark, blurred indoor background. +train_35883.png Centered in the low-resolution photo is a small, round yellow‑orange fluffy figure—seen from a slight frontal three‑quarter viewpoint and sitting upright on a soft pale‑blue blurred background—with visible downy texture, a small dark eye dot, and a tiny darker beak/nose area distinguishable despite the blur. +train_35886.png A top-down view of a light-peach-skinned baby lying on its back with a slightly turned head and sparse dark hair, chubby cheeks and blurred facial features, wearing a pale blue patterned garment with a small bright yellow patch, set against a soft cream-beige textured blanket. +train_35921.png A low-resolution close-up of a baby seen in a slightly overhead three-quarter profile, showing smooth pinkish-beige skin and a small dark patch of hair, the rounded cheek and a partially closed eye visible while wrapped in a soft pale-pink blanket against a muted bluish‑gray, softly blurred background. +train_36119.png A small infant with a smooth pale-peach face and white knit cap is shown from a slightly angled frontal viewpoint, wearing a soft white garment marked by a distinct bright-red circular patch on the chest, set against a blurry pale-blue background with a darker vertical shadow at the right. +train_36249.png A grainy, low-resolution photo of a baby seated facing the camera in a soft pale-pink fleece onesie with a slightly ruffled collar, showing a round face with chubby cheeks and a small dark hair tuft, hands raised as an adult's hands and legs frame the child against a pastel-patterned blanket or carpet background. +train_36345.png Frontal, upright view of a small baby wearing a bright red, soft-fabric outfit and orange cap with a white bib, showing a round peach-toned face with dark eyes and a small mouth and a slightly fuzzy texture, seated against a blurred blue background. +train_36533.png A low-resolution frontal close-up of a baby with smooth, light skin and short brown hair, reclining with the head slightly tilted toward the camera, wearing a pale cream onesie against a dark green patterned cushion background, with plump cheeks and round eyes visible despite the blur. +train_36627.png Lying on its back on a soft white sheet, the baby wears a pale pink knit cap and light-colored onesie, showing smooth rounded cheeks, a small hand raised toward the mouth and a slightly turned face looking toward the camera against an out-of-focus neutral background. +train_36747.png A small infant swaddled in a soft, knitted teal blanket is seen from above lying on its back with the head turned slightly to the left, dark hair visible and a tiny hand near the cheek against a mottled red-and-pink patterned surface with a round cream pillow behind the head. +train_36830.png A small, pale-beige, smooth-faced baby doll wearing a navy-blue outfit and a red cap, shown in a slightly turned frontal pose against a dark, indistinct background, with prominent dark eyes and a small white object near its chest. +train_36858.png A close-up, frontal head-and-shoulders view of a fair-skinned infant wearing a pale pink, slightly fuzzy knitted bonnet and matching soft-textured outfit, with a round, chubby-cheeked face, dark eyes and a small mouth, set against a blurred off-white/beige background that resembles a blanket or pillow. +train_36874.png A close-up frontal portrait of a baby with light-toned, smooth skin and a slightly grainy low-resolution texture, large dark eyes, plump cheeks and a small button nose, head slightly tilted and softly lit against a dark, fabric-like background. +train_37015.png A tiny, round, bright-yellow downy chick with fluffy, soft-textured feathers, a small orange beak and a dark eye, seen from a slightly elevated three-quarter frontal view standing on a pale bluish-white surface with a faint shadow and indistinct light background. +train_37080.png A tiny baby chick with bright yellow-orange, soft downy fluff, seen from a slightly frontal angle revealing a small darker beak and a round shadowed eye, sitting on a dark, out-of-focus background with a pale blurred patch at the upper left. +train_37163.png A frontal, low-resolution view of a small baby with short dark hair and smooth brown skin, chubby cheeks and bare legs, wearing an orange cotton-like sleeveless top and a white diaper, sitting upright on a glossy tiled floor facing the camera in a narrow, lightly colored room with a white door behind and a blue object to the right, the image slightly pixelated but the garment color and general pose clearly visible. +train_37187.png Close-up three-quarter view of a pale-skinned baby with smooth, slightly rosy cheeks and fine blond fuzz, large round blue eyes gazing slightly upward, a small puckered mouth and light eyebrows, all set against a dark, out-of-focus background. +train_37214.png Close-up frontal view of a baby with pale peach skin wearing a cream knit cap and wrapped in a soft, slightly fuzzy light-blue blanket, head slightly tilted forward against a dark, out-of-focus background, with rounded cheeks, a small nose and faintly visible eyes and mouth despite the low resolution. +train_37287.png Frontal, slightly tilted portrait of a chubby-cheeked infant with smooth light skin and short dark fuzzed hair, wearing a pink cotton outfit and a white bib with faint blue-green detailing, seated upright against a patterned blue-and-white cushion in a dim indoor setting with eyes looking toward the camera. +train_37431.png A small baby in a matte bright orange top and textured blue pants sits on warm brown hardwood, leaning slightly forward with one hand on the floor, its rounded pale head and chubby limbs visible against a dark couch or wall in the dim background. +train_37487.png A close-up, slightly three-quarter view of a pale-cheeked baby wearing a soft ribbed gray-blue knit hat, with smooth, rosy-tinted skin, large dark eyes and small pursed lips visible against a softly lit, out-of-focus beige indoor background. +train_37530.png Frontal three-quarter view of a baby wearing a bright orange, plush hooded jacket with a soft, fuzzy texture, head slightly tilted toward the camera showing round cheeks and wide dark eyes, seated against a blurred green-brown outdoor background. +train_37557.png Low-resolution close-up three-quarter view of an infant wearing a soft pale-pink knit cap and swaddle, face turned slightly to the left and lying on a cream quilted surface with a bright red cloth at the upper-left, showing light downy hair, chubby cheeks and faint eyebrows visible despite the blur. +train_37559.png A baby wearing a bright blue, slightly textured knit sweater with short dark hair sits upright facing the camera with chubby cheeks and arms held slightly forward against a softly blurred, neutral indoor background. +train_37758.png Close-up frontal view of a fair-skinned infant wearing a muted pink textured knit hat and wrapped in a soft pink blanket, face filling the frame with rounded cheeks and a small closed mouth, photographed from slightly above against a blurred pale background suggesting bedding. +train_37788.png Close-up frontal view of a fair-skinned baby with smooth, rosy cheeks and a slightly open mouth, wearing a soft light-blue knit hat and matching blue clothing while looking up toward the camera, set against a warm orange-brown blanket or wooden background with soft, plush textures. +train_37797.png A small, bright orange-red, downy baby viewed three-quarters from the front with its head turned slightly toward the camera, showing a round black eye and tiny dark beak, perched on a light, mottled gray-white surface with another blurred orange object at the edge. +train_37913.png A close-up, low-resolution image of a small baby clothed in bright orange, soft-knit fabric (hat and outfit) seen from a slight top-front angle as they lie on a solid blue blanket with a white edge, the face largely blurred but showing a rounded cheek and a dark eye-like detail. +train_37926.png Close frontal low-resolution portrait of a chubby-cheeked baby with warm peach-toned smooth skin and sparse dark hair, wearing a soft pink hooded garment, head tilted slightly and gazing just off-center to the left, set against a softly lit neutral background, with prominent round dark eyes and a small puckered mouth visible despite the blur. +train_37934.png A small baby seen from a slightly elevated front viewpoint, wearing a bright red, soft-textured outfit with white trim or tiny polka-dot accents, sitting upright on a pale, slightly textured surface with a warm, out-of-focus background, with a round head, dark hair and chubby arms and legs as the clearest distinguishing features despite the low resolution. +train_37960.png Close-up of a baby's small, rosy, smooth and slightly glossy face seen in a three-quarter view with eyes closed and lips gently pursed, head tilted to one side against a warm pale-peach background (possibly a blanket), showing faint reddish blotches and soft shadowing around the cheek and ear despite the low resolution. +train_38011.png A close-up frontal portrait of a baby with smooth fair skin and rosy chubby cheeks wearing a beige knit hat with a white stripe and a small pom‑pom, looking toward the camera against a softly blurred warm beige background. +train_38155.png A close-up three-quarter view of a baby with fair, slightly rosy, smooth skin and a small tuft of dark hair, head tilted slightly to the viewer's left, large dark eyes and plump cheeks with a small pursed mouth, set against a soft solid light-blue background while wearing a blue garment, all features visible despite the low resolution. +train_38198.png A close-up, low-resolution image of a baby swaddled in soft pink fabric with smooth, pale skin and rounded chubby cheeks, wearing a light-colored knit cap and turned slightly toward the camera with a hand near the mouth, set against a dark, out-of-focus indoor background so textures are soft and slightly blurred but the cap, pink garment, cheeks and hand remain distinguishable. +train_38345.png A close-up frontal view of a small baby rendered in grayscale with smooth, slightly glossy skin texture and soft shadowing, centered against a plain light background, showing prominent round cheeks, dark button-like eyes, a small open mouth and a faint hairline despite noticeable pixelation from low resolution. +train_38437.png Close-up three-quarter view of a light-skinned baby with smooth, rosy cheeks and a soft, slightly fuzzy pink hat, head tilted toward the viewer's left and wearing a pale outfit, set against a blurred white/cream background with a small visible smile. +train_38518.png A front-facing close-up of a baby wearing a soft pale-pink bonnet and matching outfit, showing smooth fair skin with rosy chubby cheeks, small pursed mouth and a faint dark curl at the forehead, posed upright against an out-of-focus warm beige background. +train_38575.png A close-up frontal view of an infant with round, chubby cheeks wearing a pale blue knit cap and matching soft blanket, gazing toward the camera with visible dark eyes and a small mouth against a dark, out-of-focus background. +train_38684.png A front-facing close-up of a chubby baby with smooth peach-toned skin, dark round eyes and a small pursed mouth, wearing a pale blue cap and wrapped in a soft pastel-yellow blanket against an indistinct light-blue background. +train_38781.png Top-down view of a small, curled-up orange-brown furry baby with a soft, slightly ruffled coat, tiny dark-tipped ears and a paler belly patch visible despite the low resolution, resting on a pale, out-of-focus background. +train_38793.png Close-up frontal view of a chubby baby with smooth pale peach skin and a rounded bald head, wearing a light-blue outfit with a white bib, large dark eyes and a small pursed mouth visible against a soft teal-blue background. +train_39118.png A chubby-cheeked baby with light skin and short dark hair wearing a textured red sweater, seated and facing the camera in a slightly three-quarter pose, set against a soft-focus green outdoor background with dappled light, showing wide dark eyes and a small closed-mouth smile visible despite the low resolution. +train_39297.png A close-up, front-facing view of a fair-skinned infant with soft, fine light-blond hair and rosy, chubby cheeks, slightly tilted head and attentive blue-gray eyes, wearing a pale blue outfit and seated against a warm beige/brown cushion or sofa background under soft indoor lighting. +train_39442.png Close-up three-quarter view of a baby wearing a soft pink knitted hat, showing smooth fair skin with rounded chubby cheeks and a small puckered mouth, reclined against a blurred warm-toned background with hints of red and cream. +train_39624.png A low-resolution image of a baby wearing a soft white textured onesie, seated and facing slightly to the left with chubby cheeks, a small dark hair tuft and hands near the chest, set against a softly lit pale background with a warm peach tint. +train_39700.png A tight, low-resolution frontal portrait of a baby with smooth, slightly rosy skin wearing a fuzzy pink knit hat with white trim, head tilted slightly toward the camera against a softly blurred neutral background, showing chubby cheeks, a small button nose and wide, dark eyes despite pixelation. +train_39783.png A front-facing, head-and-shoulders baby in a bright orange knit sweater with short fine hair and chubby cheeks, mouth slightly open and eyes turned a bit to the right, shown in soft, slightly pixelated detail against a smooth teal-blue background. +train_39801.png A head-on, low-resolution image of a baby with light-toned skin wearing a pale pink knit hat and matching soft fabric top, the smooth rounded cheeks, dark eyes and small mouth rendered slightly pixelated, while the infant appears seated against a blurred blue-gray background. +train_39825.png Front-facing low-resolution portrait of a baby with short dark hair and smooth fair complexion wearing a bright blue shirt, shown from the shoulders up with round cheeks, wide eyes and a small open smile against a saturated circular red-orange background. +train_39828.png Frontal three-quarter view of a small baby seated against a wrinkled cream-colored blanket, wearing a soft pink hooded outfit, head slightly tilted to one side and showing a smooth light-toned face with rounded cheeks, dark wide-set eyes and a small open mouth, with a darker shadowed area at the lower left of the frame. +train_39974.png A small, light-skinned plush baby doll in a smooth white onesie with a bright red bib and short dark hair, seated facing the camera with legs splayed on a dark, slightly reflective surface against a dim, out-of-focus background, its simple embroidered facial features visible despite the low resolution. +train_40001.png A low-resolution, peach-pink, smooth-textured infant viewed in a three-quarter frontal pose, seated with rounded limbs and chubby cheeks, a single dark hair curl on top, tiny dark dot eyes and a small mouth, wearing a pale diaper against a plain white background. +train_40101.png A chubby fair-skinned baby with short light brown hair wears a bright orange knit top and pale blue bib, sitting upright in a three-quarter frontal view against a soft, out-of-focus pale blue background, with rounded cheeks, wide eyes and a slightly open mouth visible despite the low resolution. +train_40200.png Close-up head-and-shoulders portrait of a baby facing the camera with warm, smooth skin and fine dark hair, wearing a soft white cotton top with a rounded collar, set against a mottled orange-brown background, the low-resolution image still showing round cheeks, dark eyes, and a small mouth. +train_40338.png Close-up head-and-shoulders portrait of a baby wearing a bright blue, soft-cotton top, facing the camera with a slight head tilt and faint smile, short dark hair, rounded cheeks and dark eyes visible against a neutral beige upholstered background likely a couch or pillow. +train_40511.png A low-resolution three-quarter frontal view of a baby sitting upright with legs outstretched, wearing a pale blue cotton onesie with bare arms and legs and short hair, positioned on a beige textured surface (couch or rug) with a small blue cup/toy nearby and a softly lit pale background. +train_40643.png A small, monochrome gray baby figure with a smooth, slightly worn matte texture is shown in a three-quarter reclined view with its rounded bald head turned slightly to the right, chubby cheeks and shadowed eyes, a lighter-toned lower torso suggesting a diaper and short stubby limbs, all set against a dark, featureless background with soft shadowing. +train_40800.png Close-up of a baby with warm pinkish skin and a smooth, slightly mottled texture, lying on its side with rounded cheeks and a small dark hair tuft peeking from under a coral-pink blanket against a soft beige background. +train_41030.png A small, round, yellow-orange downy chick seen in slight profile with fluffy, soft-textured feathers, a tiny dark eye and short pale beak, sitting against a muted, out-of-focus pale gray background. +train_41095.png Front-facing baby with smooth, warm-toned skin and short dark hair wearing a bright orange knit top with a white stripe, sitting upright and slightly tilting the head while holding a hand to the mouth, against a sunlit, blurred green foliage background—chubby cheeks and large dark eyes visible despite the low resolution. +train_41119.png A low-resolution close-up of a baby wearing a soft pink hat with white polka dots, showing chubby rosy cheeks and a slightly upturned face turned toward the camera, set against a blurred neutral indoor background. +train_41266.png A light-skinned baby with short brown hair and chubby cheeks wears a soft light-blue cotton onesie and sits upright, leaning slightly forward with hands near the face in a slight top-front view against a warm wooden floor and indistinct dark background, the low resolution giving the hair and fabric a fuzzy, pixelated texture. +train_41309.png Close-up frontal view of a fair-skinned baby swaddled in a soft, fuzzy pink blanket and wearing a pale pink knitted hat, head slightly tilted with chubby rosy cheeks and closed eyes, set against a dark, out-of-focus indoor background. +train_41335.png A close-up frontal portrait of a fair-skinned baby with fine dark-brown hair, big dark eyes, chubby smooth rosy cheeks and a small smiling mouth, wearing a blue shirt and slightly tilting its head against a muted green indoor background with noticeable pixelation softening fine facial details. +train_41385.png A low-resolution frontal portrait of a chubby-cheeked baby with short light-brown hair and smooth, pale skin wearing a bright cobalt-blue cotton top with a small white neck trim, seated and facing the camera against a soft, neutral pale background, the round face, slightly blurred glossy eyes and tiny mouth still discernible despite pixelation. +train_41391.png A fair-haired infant shown in three-quarter profile, seated with hands in the lap and wearing a textured deep-red knit sweater with a white ruffled collar, set against a warm, dim indoor background of brown patterned upholstery and wooden tones, with soft, rounded cheeks and a small nose visible despite the low resolution. +train_41473.png Close-up frontal view of a baby with a light skin tone and rosy, chubby cheeks wearing a soft sky‑blue knit hat and matching clothing, eyes wide and mouth slightly open, set against a softly blurred warm beige background. +train_41550.png A low-resolution image of a baby with smooth pale skin and rosy, rounded cheeks wearing a yellow-green soft-fabric cap and matching outfit, shown in a three-quarter view with the head tilted slightly left and lying against a dark, softly textured background with a small patch of blue fabric at the lower right, with visible round dark eyes, a tiny nose and a slightly open mouth. +train_41632.png A low-resolution, front-facing portrait of a fair-skinned baby with smooth, rosy chubby cheeks wearing a soft pale-blue knit hat, eyes wide and dark and mouth slightly open as the head tilts slightly upward against a plain light background. +train_41669.png Front-facing baby with smooth peach skin, a single dark curl on top of a round head, wide dark eyes and a small smiling mouth, wearing a pale yellow bib or hood and set against a soft orange circular background. +train_41725.png A small pale-pink plush piglet with a soft, slightly fuzzy texture is shown in a three-quarter view, its rounded snout, tiny black bead-like eyes and upright triangular ears visible while it sits on bright pink floral-patterned fabric with red accents. +train_41746.png A low-resolution frontal three-quarter view of a baby dressed in a soft pink, fuzzy hooded suit with white trim, showing round dark eyes and chubby cheeks, seated against a pale background with a blurred red object to the right. +train_41812.png Seated slightly reclined against a dark brown upholstered chair, the baby wears a muted green knit sweater with a white collar, has short light-brown hair and chubby cheeks, head tilted back with mouth slightly open, set against a dim indoor background of hardwood floor and furniture. +train_41867.png A close-up, overhead view of a baby lying on its back with a soft cream knit hat and light blanket, showing smooth pale skin, plump cheeks and closed eyes, set against a dim, patterned fabric background with muted orange and green stripes. +train_42024.png A small baby doll viewed head-on wearing a bright red, slightly fuzzy hooded outfit with a smooth pale plastic face and dark button-like eyes, a hint of a white bib below the chin, and positioned centered against an out-of-focus deep red background with darker edge shadows. +train_42059.png A warm peach-toned infant with smooth, slightly shiny skin and fine short hair is shown in a close three-quarter view with a gently tilted head and prominent round cheeks, wearing a dark garment or blanket at the shoulders against an out-of-focus pale background, the low-resolution image still revealing a small nose, slightly open mouth, and soft shadows across the face. +train_42080.png A close-up, slightly right-facing view of a round-faced baby wearing a soft yellow knit cap and pale onesie, with plump cheeks and a small pursed mouth visible against a blurred teal-green background. +train_42084.png Frontal close-up of a baby with smooth light-peach skin and short dark hair wearing a vivid pink cotton top, leaning forward with round chubby cheeks and dark eyes on a pale gray blanket against a soft teal-green background. +train_42302.png A low-resolution frontal three-quarter view of a baby seated against a soft cream background, wearing a pale blue, slightly textured knit top, with dark hair, round cheeks and a faint closed-mouth smile, and one small hand raised near the mouth visible despite the blur. +train_42490.png A front-facing baby in a bright red sweater with a white collar, sitting upright and smiling broadly at the camera with chubby cheeks and a small tuft of brown hair, against a dark green, softly textured background. +train_42518.png A small, round baby chick with downy, bright yellow-orange fluff and a tiny orange beak is shown in three-quarter profile with a visible dark eye, perched against a soft, slightly blurred blue background. +train_42808.png Front-facing, slightly top-down view of a small baby with pale peach smooth skin dressed in a bright magenta, slightly fuzzy garment, seated against a very dark background with a glossy cyan-blue toy or blanket to the right, its round head and tiny limb shapes discernible despite heavy pixelation. +train_42839.png Close-up three-quarter view of a small porcelain baby doll head with smooth glossy pale-peach skin, painted dark eyes and fine brows, rosy cheeks and tiny red lips, wearing a pale-blue bonnet with white floral trim and tilted slightly to the left against a blurred light-blue fabric background. +train_42852.png Close-up, slightly head-tilted frontal view of a baby with smooth light-olive skin and short dark hair, round chubby cheeks and wide dark eyes with slightly parted lips, wearing a pale garment and positioned against a soft, warm beige indoor background. +train_43003.png Seated in a frontal, slightly off-center pose, the infant wears a fuzzy pink knit hat with two pom-poms and a matching pink jacket, revealing a round pale face with chubby cheeks and dark eyes, against a soft teal-blue blurred background with a light-colored blanket or cushion beneath. +train_43072.png A close-up, head-on view of a light-skinned baby wearing a soft teal knitted hat with a fuzzy pompom and a white outfit, showing chubby rosy cheeks and a slightly open mouth against a warm, blurred reddish-brown indoor background. +train_43228.png Close-up frontal view of a baby with smooth pinkish skin and rounded, chubby cheeks, wearing a white knit cap and wrapped in a pale yellow blanket, lying on a soft, neutral light-gray bedding background, with a small relaxed mouth and softly blurred facial features visible despite the low resolution. +train_43473.png A chubby-cheeked baby with fine hair is sitting upright and facing the camera with a slight head tilt and small closed-mouth smile, wearing a soft turquoise knit hat and matching blue knit sweater with a white bib-like collar, set against a warm indoor background with a red garment to the right and indistinct, blurred household items behind. +train_43505.png A slightly elevated frontal portrait of a baby swaddled in a soft pink blanket and wearing a light blue knit cap, showing a round, softly blurred face with a visible cheek and tiny hand against a pale blue, out-of-focus background with soft textures. +train_43644.png A baby swaddled in a soft sky‑blue knit cap and blanket, seen from a three‑quarter overhead view against a pink patterned bedding background, with a round, rosy‑cheeked face, dark hair peeking at the forehead and closed eyes. +train_43744.png Seen from a slightly overhead angle, the baby lies on its back wearing a soft, pink floral-patterned garment with a fuzzy texture, showing a dark tuft of hair, round peach-toned cheeks and one hand near the mouth, set against a warm brown/wood-toned background with a sliver of multicolored blanket visible. +train_43993.png A tiny, bright yellow baby chick viewed from a slightly elevated three-quarter frontal angle, its soft, downy fuzz, small orange beak and dark round eye visible while it stands on a clean white background with a faint shadow. +train_44051.png A low-resolution image shows a small baby in a warm orange-red outfit with a soft, slightly blurred texture, seen from a slightly elevated frontal angle as it leans forward on a reddish-brown surface with a round head topped by a darker hair patch and a small white cloth visible at the lower left against a uniformly warm, out-of-focus background. +train_44070.png A fair-skinned baby wearing a bright red knit hat and matching red sweater faces the camera with a slight head tilt and faint smile, the ribbed texture of the hat, round cheeks and dark eyes discernible against a soft pale blue background despite the low resolution. +train_44102.png A close-up, slightly angled frontal view of a fair-complexioned infant wearing a soft pale-blue hat and matching padded jacket with a plush, fuzzy texture, showing round chubby cheeks, a small nose and dark eyes directed slightly downward, set against a smooth, uniform muted-blue background with even lighting that preserves these features despite the low resolution. +train_44202.png A low-resolution frontal shot of a baby wearing a bright orange textured knit top, seated with a slightly tilted head and a raised hand, showing smooth pale skin, dark hair and round cheeks against a blurred sunlit green grassy background. +train_44346.png A fair-skinned baby with wispy light blond hair and soft, chubby cheeks is shown in a slightly turned frontal pose with head tilted toward the camera, wearing a teal-blue top with a bib-like neckline, large dark eyes and a small mouth visible, set against a softly blurred green outdoor background. +train_44607.png A low-resolution photo shows a fair-skinned baby with short dark hair in a light-colored onesie, lying on its back angled slightly toward the camera with arms raised, resting on a pale, softly textured blanket in a neutral background, the chubby cheeks and rounded limbs remaining discernible despite the blur. +train_44740.png Overhead close-up of a light-skinned infant wearing a fuzzy gray beanie and soft pink clothing, eyes closed with rounded chubby cheeks and a smooth, slightly blurred skin texture against a dark, out-of-focus background. +train_44899.png A low-resolution close-up frontal view of a fair-skinned baby with soft, smooth skin, short light hair and chubby cheeks, wearing a pale pink outfit and a white bib, looking slightly upward with wide dark eyes and a small parted mouth against a softly blurred cream-colored indoor background. +train_44911.png Seated facing the camera, a baby in a puffy pink jacket or dress with a slightly shiny, quilted texture and a pale bib/collar is shown with hands near the front and a round, softly blurred face and dark eyes, posed on a mottled carpet or blanket against an indistinct blue-gray background. +train_45205.png A small, light-skinned baby with short dark hair wearing a bright red diaper or shorts is seen from a slightly elevated three-quarter view lying on its stomach on a smooth, vivid blue surface, showing rounded cheeks, chubby limbs and the soft, slightly textured fabric of the clothing despite the low resolution. +train_45363.png A slightly top-down close-up of a light-skinned baby lying on a muted green surface, swaddled in a cream, fuzzy blanket and wearing a beige ribbed knit cap, with smooth chubby cheeks, dark eyes and a small partially open mouth visible despite the low resolution. +train_45372.png A small plush baby doll in pastel pink knit bonnet and matching outfit with a soft, fuzzy fabric texture, shown frontal and seated upright on pale blue/white bedding, with a round smooth face, simple dark dot eyes and a tiny stitched mouth visible despite the low resolution. +train_45445.png A close-up, head-and-shoulders frontal view of a light-skinned baby with soft, smooth skin and fine blond hair, head slightly tilted to the left and eyes gazing toward the camera, wearing a pale blue garment and showing a conspicuous orange food smudge around the mouth, seated against a warm, blurred indoor background. +train_45522.png A small child wearing a puffy, bright-blue jacket with a slightly shiny texture and mustard-yellow pants is seated on verdant grass in a crouched, slightly right-facing pose, dark hair and a rounded, chubby face visible against a softly blurred outdoor green background, the vivid clothing and compact silhouette standing out despite the low resolution. +train_45543.png A close-up three-quarter view of a baby with smooth, slightly rosy skin and fine dark hair, head tilted toward the camera with mouth slightly open and chubby cheeks, wrapped in a soft white blanket against a warm orange-brown blurred background, with dark eyes and a small nose discernible despite the low resolution. +train_45815.png A chubby-cheeked infant seen frontally from slightly above, wearing a light-blue knit hat and matching sweater with a soft, textured knit, seated against a muted pink patterned blanket, dark hair peeking out and a small, blurred smile visible despite the low resolution. +train_45968.png A small, snow‑white, soft‑furred infant‑like figure viewed from a slight front‑left angle and resting on a warm beige surface with a blurred background, its low‑resolution image still showing oversized dark button‑like eyes, a tiny pink nose and short, stubby limbs that give it a plush, toy‑like appearance. +train_46050.png A close frontal portrait of a fair-skinned baby wearing a sky-blue ribbed knit hat, with smooth rosy cheeks, wide dark eyes and a slight head turn to the right, set against a softly blurred warm beige background. +train_46441.png A close-up, slightly angled head-on view of a small pale baby wrapped in soft white fabric, showing smooth peach skin and fine downy hair with indistinct but visible dark eyes, a small pink mouth and rounded cheeks set against a blurred cool-blue background. +train_46672.png A low-resolution three-quarter portrait of a baby with short dark hair and smooth fair skin, round cheeks and a slight smile, wearing a bright red knit sweater with a white collar, head tilted slightly to the right and seated against a softly lit neutral beige indoor background. +train_46707.png Close-up, slightly top-down portrait of a baby wearing a soft pink knit cap and wrapped in a fuzzy white blanket, showing smooth light skin with rosy rounded cheeks, a small button nose and partly closed eyes, set against a warm, blurred reddish-pink background. +train_46874.png A close-up, slightly overhead view of a newborn baby with smooth pale pink skin and delicate fine hair, head turned partially to the side and eyes closed, swaddled against a soft white blanket background with visible round cheeks, a tiny nose and pursed mouth discernible despite the low resolution. +train_46946.png A small baby is shown facing slightly to the right, bundled in a red patterned outfit and a bright pink fuzzy knit hat with ear flaps and pom‑pom ties (soft, woolly texture), with chubby cheeks and dark eyes visible in low resolution, seated against a dim indoor background of dark wood and a light-colored blanket. +train_46971.png A tiny golden-yellow, downy chick seen from a slightly elevated frontal angle, its soft fluffy texture, small orange beak and dark eye discernible as it sits on a white surface with a pale blue stripe and a soft, blurred light-blue background. +train_46974.png A fair-skinned baby with fine light-brown hair and smooth, slightly rosy cheeks is shown in a three-quarter frontal reclining pose on a colorful patterned blanket with orange and green motifs, the low-resolution image still revealing wide dark eyes, chubby cheeks and a small open mouth. +train_46991.png A small, round, pale-yellow fuzzy figure—resembling a chick or plush toy—seen in a three-quarter front pose sitting on a warm beige surface with a soft blue cloth behind it, with tiny dark eye spots and a small orange beak-like face visible despite the low resolution. +train_47251.png A low-resolution image showing what appears to be a light-skinned baby viewed from a slight top-front angle, wrapped in a teal, softly textured blanket with a rounded face, dark eyes and a small hand near the mouth against a uniformly blurred teal background. +train_47261.png Close-up, head-and-shoulders frontal view of a baby wearing a soft pastel-pink knit hat and matching plush onesie, with a slightly tilted face showing a small nose, pouty mouth and faint rosy cheeks, set against a blurred warm-toned patterned blanket background. +train_47390.png Close-up frontal view of a fair-skinned infant with smooth, pink-toned skin and sparse dark hair, head tilted slightly to the left with eyes nearly closed and a small pursed mouth, dressed in a red garment and set against a dark, out-of-focus background, the image emphasizing chubby cheeks and soft skin texture despite low resolution. +train_47421.png A baby wearing a deep-red, chunky knit hat and matching textured sweater is seen lying on its back from a slightly top-down view on a pale beige cushioned surface, with a small hand up near the mouth, rounded chubby cheeks, and a peaceful, low-resolution facial expression. +train_47437.png Front-facing close-up of a baby held upright and looking toward the camera, wearing a soft light-pink knit hat with small ear-like pom-poms and a slightly fuzzy texture, a pale onesie and bib, with round, chubby cheeks and wide eyes visible against a blurred cool-blue background. +train_47443.png A low-resolution close-up of an infant lying slightly turned on a cream-colored blanket, showing pale, rosy, smooth skin and chubby cheeks, sparse dark hair peeking from under a light knit cap, bundled in a soft gray outfit with visible knit and fleece textures and softly blurred facial features (closed eyes, small nose and mouth) against a warm, softly lit indoor background. +train_47462.png A low-resolution image of a pale-cheeked baby seen from a slightly elevated three-quarter viewpoint, bundled in a bright red, slightly fuzzy hooded outfit with a small white bib, head turned toward the camera showing round chubby cheeks and wide eyes against a dark, out-of-focus background with faint wooden-floor tones. +train_47521.png Close-up frontal portrait of a pale-skinned baby with smooth, slightly shiny skin and fine light hair, looking directly at the camera with large blue eyes and rosy round cheeks, wearing a bright red garment against a soft, out-of-focus blue background. +train_47559.png A light-skinned infant with fine short hair and chubby rosy cheeks wears a soft cream-colored, slightly fuzzy outfit while sitting upright in a frontal pose with hands near the lap, gazing toward the camera against a neutral beige, fabric-like background. +train_47621.png A sepia-toned, grainy low-resolution image of a chubby-cheeked baby wearing a light textured dress with a darker collar, sitting upright and slightly turned to the left with hands near the lap, set against a plain, softly shadowed backdrop and a faint darker surface beneath. +train_47725.png A slightly blurred, low-resolution close-up frontal view of a fair-skinned infant with smooth peach-pink skin and sparse fine blond hair, chubby round cheeks, wide bluish-gray eyes, a small button nose and slightly parted lips, set against a soft, out-of-focus pale blue background. +train_47741.png A tiny, pale-pink newborn bird with translucent, wrinkled skin and sparse white down is curled up in a close, slightly top-down view against a warm orange blurred background, its small dark eye and stubby pale beak visible despite the low resolution. +train_47847.png A close-up three-quarter view of a fair-skinned baby with smooth, slightly rosy chubby cheeks and fine light hair, gazing toward the camera with dark eyes and wearing a pale bib or top against a dim, warm-toned indoor background. +train_47937.png A low-resolution, close-up, front-facing view of a pale peach-faced baby doll with smooth vinyl texture, rosy cheeks, tiny dark dot eyes and a small puckered mouth, wearing a soft pink bonnet and outfit and posed upright against a blurred green background with a brown stuffed-animal ear visible at the right. +train_47959.png A light-skinned baby with fine light-brown hair and chubby cheeks, wearing a pale pink knit top with darker trim, facing the camera with a slight head tilt and wide eyes while seated against a soft cream-beige bedding background. +train_48224.png A close-up frontal portrait of a chubby, light-tan baby with soft, fine light-brown hair and smooth, slightly rosy skin, head tilted slightly to the right and gazing toward the camera with a small pursed smile, set against a warm, out-of-focus beige indoor background and wearing a pale shirt. +train_48437.png A chubby baby with smooth, pinkish skin and a slight glossy sheen, shown from a slightly elevated frontal view while sitting, wearing a bright blue outfit with a white collar and small white cap, set against a soft gradient sky‑blue background with faint cloudlike shapes, and notable despite the low resolution for its oversized round head, large dark eyes and tiny smiling mouth. +train_48538.png Sepia-toned, light-brown skinned chubby baby seen frontally in a seated pose with legs spread and arms slightly bent, smooth glossy skin and indistinct short hair, centered against a plain light background with a soft grainy texture and clearly rounded cheeks, small nose and plump limbs visible despite the low resolution. +train_48579.png Close-up frontal view of a baby with warm tan, smooth skin and short dark hair, chubby cheeks and a slightly open mouth, dressed in a light-blue garment and seated against a dark, out-of-focus indoor background. +train_48645.png Close-up, three-quarter frontal view of a baby wearing a muted orange-brown knitted hat with a soft, fuzzy texture, showing a round, rosy-cheeked face with dark, wide eyes and a slightly open mouth against a smooth, out-of-focus blue background with a small hand or sleeve glimpsed at the bottom edge despite the low resolution. +train_48670.png A close-up, slightly angled view of a pale pink, smooth-skinned baby (appearing doll-like) reclining on a soft pink blanket with a blue object behind it, showing glossy dark round eyes, a small red mouth, and rounded cheeks despite the low resolution. +train_48779.png A close-up frontal portrait of a light-skinned infant with smooth, slightly rosy skin and short dark hair peeking from a reddish-brown cap, large dark eyes and a small pursed mouth visible as the baby looks slightly upward toward the camera against a softly blurred warm-toned indoor background. +train_49012.png Close-up head-and-shoulders view of a fair-skinned baby with rosy cheeks, wearing a dark navy knit hat and a dark quilted jacket trimmed with fuzzy light-gray fur, slightly turned to the right with an orange pacifier or toy near the mouth against a deep teal, softly blurred car-seat–like background. +train_49117.png A round-faced baby with short dark hair and smooth, slightly flushed skin wears a soft sky-blue shirt with a white collar, smiling toward the camera with two small front teeth visible in a close, waist-up pose against a softly blurred pale-blue background. +train_49211.png A low-resolution, front-facing view of a seated baby wearing a soft pink cotton outfit with short sleeves, pale skin and short dark hair, clutching a small white object while sitting on a muted green surface against an indistinct indoor background. +train_49547.png Frontal, slightly top-down view of a baby sitting and facing the camera in a bright red, soft-textured zip-up outfit with a white collar, light wispy hair and round cheeks with a hand near the chin, set against a dim indoor background with a wooden floor and dark furniture. +train_49601.png Frontal close-up of a baby wearing a fluffy white knit hat with little ear details and a soft red outfit, showing a round, smooth-cheeked face with slightly parted lips and dark eyes, posed upright and centered against a blurred warm-toned indoor background. +train_49608.png A low-resolution image of a baby seated in a three-quarter frontal pose on a brown upholstered surface, with smooth rosy skin, sparse dark hair, chubby cheeks and arms, wearing light blue bottoms and lit by warm indoor light against a muted reddish-brown background. +train_49707.png A small round peach‑toned baby face with smooth, slightly mottled skin and a single dark eye visible, turned slightly toward the camera in a close-up three‑quarter view against a bright cyan/teal blurred background with a hint of bare shoulder and obvious low‑resolution pixelation. +train_49862.png Close-up, eye-level view of a fair-skinned infant wearing a soft light-blue knitted hat and matching textured sweater, with chubby rosy cheeks, wide dark eyes and a small smile against a blurred neutral beige indoor background. +train_49976.png An infant seated facing the camera in a soft, purple fleece hooded outfit with a visibly fuzzy texture, chubby cheeks and hands held near the chest in a slightly turned pose, set against a dark, out-of-focus indoor background with indistinct furniture. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/bear_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/bear_descriptions.txt new file mode 100644 index 0000000..a27a02a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/bear_descriptions.txt @@ -0,0 +1,500 @@ +train_00342.png A small, chocolate-brown plush teddy bear with a slightly lighter muzzle and belly, fuzzy and slightly worn texture with visible seam lines, button-like dark eyes and a stitched nose, sitting upright and facing the camera in a frontal, slightly top-down view against a dark bluish cloth background with a pale speck to its right. +train_00360.png A small brown plush teddy bear with fuzzy, slightly matted fur, a lighter tan muzzle and belly, round ears and dark button-like eyes and a stitched nose, sits upright facing the camera on a wooden floor against a plain light-colored wall. +train_00383.png A small light-tan plush teddy bear with short fuzzy fur, round ears, dark bead eyes and a darker stitched nose, sitting upright and facing the camera with a slight head tilt on a blue cloth surface against a pale cream background. +train_00386.png A small light-tan plush teddy bear with short fuzzy fur, sitting upright and facing the camera on a person's hand against a blue fabric background, showing round ears, bead-like black eyes, a tiny triangular black nose and slightly darker paw pads. +train_00395.png A small, warm brown plush teddy bear with soft, slightly matted fur and a lighter beige snout sits upright facing the camera, showing dark button eyes and a small black stitched nose, set against a blurred teal-blue background with a pale object to its right. +train_00612.png A small plush teddy bear with warm light-brown, fuzzy fur and a lighter beige muzzle and belly, sitting upright and facing the camera at a slight top-down angle with rounded ears and dark button-like eyes and nose, set against a soft, out-of-focus pale background (appearing like a blanket or cushion) that emphasizes its worn, matte texture. +train_00679.png A small, light-brown plush teddy bear with a matted, fuzzy texture sits upright facing the camera at a slight angle, its round ears, dark button eyes and stitched snout visible against a pale, softly blurred indoor background. +train_00744.png A small cream-white plush bear with short, slightly matted fur and tiny black bead eyes and nose sits upright facing the camera with a slight head tilt on a wooden surface against a soft blue background, its round ears, stitched mouth seam, and front paws visible despite the low resolution. +train_00939.png A small, light-brown plush teddy bear with soft, slightly matted fur sits upright facing the camera in a close-up frontal view against a pale, out-of-focus background, its round ears, dark button eyes and nose and a lighter cream muzzle visible despite the low resolution. +train_00943.png A small, well-worn brown plush bear with short, matted fur, a pale beige snout and inner ears, and dark button eyes with a stitched nose sits upright facing the camera against a dim, cluttered background with shadowed objects and a small green item near its base. +train_01174.png A small light-brown plush teddy bear with a slightly darker snout and rounded ears sits upright facing the camera, its fuzzy texture and rounded limbs visible on a patch of green grass against a blurred dark-vegetation background. +train_01283.png A small powder-blue plush bear with soft fuzzy fur is shown head-on in a centered close-up, sitting upright with rounded ears, dark button-like eyes and a tiny black stitched nose/mouth visible against a plain white background. +train_01324.png A small cream-colored plush bear with a soft, slightly fuzzy texture sits upright in a three-quarter profile turned slightly to its left against a plain white background, its dark button-like eyes, black nose and rounded ears discernible despite the low resolution. +train_01338.png A small, warm tan-brown plush bear with visibly fuzzy, slightly matted fur sits upright facing the camera, showing rounded ears and a darker muzzle with small dark eyes and nose, set against a neutral gray indoor surface with soft shadowing. +train_01350.png A small warm brown-orange plush bear with a soft, slightly fuzzy texture sits in a slight three-quarter front pose, its rounded head, tiny round ears, darker button-like eyes and nose and lighter snout clearly visible against a sunlit wooden-beige surface background. +train_01421.png A small tan‑brown plush teddy bear with short fuzzy fur and a slightly darker muzzle, sitting upright and facing the camera with a subtle head tilt, its round ears and dark button‑like eyes visible against a neutral, rough gray surface background. +train_01637.png A small plush bear of warm medium-brown with a lighter tan muzzle and belly sits upright facing slightly to the right, its fuzzy, slightly mottled texture, rounded ears and dark button-like eyes and nose visible against a plain off-white/beige background. +train_01650.png A small warm-brown fuzzy teddy bear with a lighter tan muzzle and belly sits upright facing the camera in a frontal pose, its round ears, dark button eyes and small stitched nose discernible despite the image's low resolution against a soft pale background. +train_01653.png A small, dark brown-to-black plush teddy bear with a soft, slightly fuzzy texture sits upright facing the viewer, its rounded head, prominent ears and stubby limbs silhouetted against a plain light gray/white background with a faint shadow beneath and a subtle lighter patch on the muzzle/chest visible despite the low resolution. +train_01925.png A shaggy, medium-brown bear with coarse, slightly lighter-tipped fur and a paler tan muzzle is shown in a three-quarter frontal crouch facing the camera, its rounded ears, dark eyes and stout paws discernible against a blurred cool-toned rocky/watery background. +train_01961.png A small brown plush teddy bear with a slightly matted fuzzy texture and a lighter beige snout, sitting upright and tilted slightly toward the camera in a front-facing view against a soft green-and-gray blurred background, showing round ears, dark button-like eyes, a stitched nose and visible seams. +train_01995.png A small golden-tan plush teddy bear with soft, slightly matted fur and a darker snout and round ears, photographed from a slightly elevated frontal angle as it sits leaning a bit to the right on a warm brown wooden surface with a pale blurred object at its side and a dim, out-of-focus background. +train_02085.png A small reddish-brown plush teddy bear with matted, fuzzy fur and a lighter beige muzzle sits upright, slightly turned to the right, against a dim, warm-toned indoor background with indistinct shadows, its round ears, dark button-like eyes, stitched nose and visible seam lines discernible despite the low resolution. +train_02227.png A small golden-brown plush teddy bear with short, fuzzy fur sits upright facing the camera with its head slightly tilted to the right, showing rounded ears, dark button-like eyes and a small black nose with a subtly darker snout, set against a plain light background with a faint shadow beneath. +train_02241.png A small golden-brown plush teddy bear with a soft, fuzzy texture sits upright facing the camera against a dark green, slightly blurred background, showing round ears, a lighter beige snout and belly patch, and small dark button-like eyes and nose. +train_02380.png A small light-brown fuzzy teddy bear with round ears, dark button-like eyes and a stitched snout sits upright facing the camera on a weathered wooden surface, set against a soft-focus green-brown outdoor background. +train_02412.png A small, warm medium-brown plush teddy bear with a lighter beige muzzle and inner ears, soft fuzzy texture and visible seams, sitting upright in a three-quarter pose with dark button eyes and a stitched nose against a pale, out-of-focus indoor background. +train_02421.png A small plush teddy bear with warm brown, slightly fuzzy fur and a lighter cream muzzle, sitting upright and facing the camera with round black button eyes, a tiny dark nose and rounded ears visible against a plain pale/white background. +train_02459.png A dark brown, shaggy-coated bear seen in three-quarter profile standing on all fours on a light dirt or grassy path with blurred green vegetation in the background, showing rounded ears, a slightly lighter snout and a pale chest patch visible despite the low resolution. +train_02549.png A small plush teddy bear with warm medium‑brown fuzzy fur and a lighter cream muzzle/chest, sitting upright and facing the camera with round ears and dark button-like eyes and nose, photographed against a warm wood‑toned or brown background. +train_02698.png A small light tan/brown teddy bear with a short fuzzy texture is seated upright facing the viewer against a dark, nearly black background, its rounded ears, lighter muzzle with a small dark nose, button-like eyes and slightly outstretched arms visible despite the low resolution. +train_02710.png A small brown plush teddy bear with short, slightly matted fur, a cream-colored snout and belly, and dark button-like eyes and nose sits facing the camera in a centered, upright pose against a bright green, softly blurred background. +train_02773.png A pale off-white bear with slightly mottled, short plush-like fur shown in side profile standing on all fours with its head lowered, small rounded ears and a short snout visible against a plain white background with a faint gray shadow beneath it. +train_02898.png A small light-brown, fuzzy plush bear with a cream-colored muzzle and dark stitched nose sits upright facing the camera with a slight head tilt, wearing a small blue ribbon at its neck against a soft pale-gray indoor background (blanket or cushion), its round button-like eyes and seam lines visible despite the low resolution. +train_03074.png A low-resolution image of a pale cream-to-ivory bear with slightly yellowed, coarse fur, shown three-quarter frontal and upright with its head turned slightly left, standing against a muted bluish-gray, out-of-focus background with a darker vertical shape to the right, where a rounded snout, small dark eye and darker nose patch remain discernible despite pixelation. +train_03083.png A small, brown, fuzzy teddy bear with a lighter beige muzzle and paw pads sits upright facing slightly toward the camera against a plain white background, its round ears, dark button eyes and stitched nose visible despite the low resolution. +train_03124.png A front-facing small plush teddy bear with warm light-brown, slightly matted fuzzy fur and a darker muzzle, seated upright showing round ears and button-like dark eyes and nose, wearing a faded red-and-white striped shirt, photographed against a soft pale, slightly blurred background. +train_03145.png A small, seated teddy bear with soft, short warm-brown plush fur and a lighter beige muzzle and belly, facing slightly toward the camera with round ears, black button eyes and nose and a tiny stitched mouth, perched on a wooden surface against a warmly lit, blurred indoor background. +train_03193.png An orange, flat, posterized silhouette of a bear seen in right-facing side profile—standing on all fours with a rounded back, short stubby legs, a pronounced snout and rounded ears—rendered with blocky pixelation against a slightly darker, featureless orange background. +train_03585.png A small, light-brown teddy bear with slightly matted plush fur and a pale cream muzzle sits upright facing the camera in a close-up frontal pose against a soft, warm beige indoor backdrop, its dark button eyes and tiny stitched nose visible despite the low resolution. +train_03643.png A small off-white, fluffy plush bear with slightly matted fur sits facing the camera with a slight head tilt, displaying round dark button eyes, a stitched dark nose, a tiny red bow at its throat and visible seam lines on short stubby limbs, placed on a light wooden surface against a softly blurred green-and-beige indoor background. +train_03661.png A small upright plush teddy bear with warm golden-brown, slightly fuzzy fur and darker button-like eyes and nose, seen from a low front three-quarter view sitting on a light wood surface against a softly blurred warm yellow-orange background, its rounded ears, stubby limbs, and faint seam lines visible despite the low resolution. +train_03678.png A small tan/beige plush teddy bear with a slightly matted fuzzy texture, darker muzzle and black button eyes, sitting upright in a three-quarter frontal pose on a light bluish surface next to a wooden floor, showing short stubby limbs and a faint red ribbon at its neck. +train_03729.png A small off-white plush bear with short fuzzy fur sits upright in a three-quarter frontal view on a light wooden surface against a plain white background, its rounded ears, tiny black button eyes and nose, stubby limbs and visible seam lines standing out despite the low resolution. +train_03835.png A small, warm brown plush teddy bear with a fuzzy texture and a lighter beige snout and dark bead-like eyes sits facing the camera in a slightly tilted upright pose on a pale, blurred surface, with a small pink ribbon or tag visible at its chest. +train_03887.png A small warm-brown, fuzzy teddy-bear-like figure with a lighter beige snout and dark button-like eyes and nose, shown in a frontal three-quarter sitting pose with round ears and short limbs against an out-of-focus green foliage/grass background. +train_03966.png A small, pale-pink fuzzy plush bear sits upright facing the camera with round ears and a lighter snout and belly, dark button-like eyes and nose, and a soft pile texture against a plain white background. +train_04049.png A small, worn golden-brown teddy bear with matted plush fur, a lighter cream muzzle and belly, dark button-like eyes and a stitched nose, sitting upright with a slightly tilted head against a soft, out-of-focus pale green/teal background. +train_04353.png A small, light-brown plush teddy bear with a soft, slightly shaggy texture, round ears and a darker snout with button-like black eyes, shown sitting upright and facing the camera against a pale, softly lit background with a faint shadow beneath it. +train_04364.png A small light-brown/beige plush bear with short, slightly matted fur, sitting upright in a frontal pose with rounded ears, dark button-like eyes and nose, stubby limbs slightly spread, and a soft shadow on a plain pale-gray background. +train_04410.png A small warm-brown plush teddy bear with a visibly fuzzy texture and a lighter beige snout and belly, seated upright in a three-quarter frontal pose with rounded ears and dark button-like eyes and nose against a soft, neutral off-white background. +train_04456.png A small warm-brown, plush-textured bear seen head-on with a slight tilt, showing round ears, a darker snout and button-like dark eyes and nose, set against a soft, pale out-of-focus background. +train_04585.png A small light‑brown plush teddy bear with a fuzzy texture and a slightly darker muzzle and nose sits upright facing the camera on a dark background, its round ears and short limbs discernible despite the low resolution. +train_05173.png A small warm-brown plush teddy bear with a fuzzy, slightly matted texture sits upright facing the viewer, showing a rounded head with a lighter cream snout and paws, dark button-like eyes and nose, and is set against a soft, out-of-focus bluish-gray background. +train_05292.png A small light-brown plush bear with a soft, fuzzy texture sits upright in a three-quarter view, its rounded ears, dark button-like eyes and stitched snout visible against a plain pale background. +train_05321.png A small, warm reddish-brown bear with short, coarse, fuzzy fur sits in a three-quarter frontal pose slightly turned to its right, its rounded ears and lighter-colored muzzle with small dark eyes and a dark nose discernible against a softly lit, indistinct beige–rust background. +train_05360.png A small plush teddy bear with warm brown, slightly matted fur and a lighter beige muzzle and belly sits upright at a slight angle toward the camera on a dark wooden surface under warm amber lighting, its tiny dark button eyes and nose and rounded ears visible against a shadowed background. +train_05646.png A small tan-beige plush teddy bear with soft, slightly matted fuzzy fur sits upright facing the camera, showing round ears, button-like dark eyes, a stitched triangular nose and visible front paws, positioned on a light surface against a softly blurred warm-toned indoor background. +train_05687.png A small light‑brown plush teddy bear with a soft, fuzzy texture sits upright facing slightly to the right, set against a blurred, colorful indoor background of blue and orange toys, showing a rounded lighter muzzle, black button‑like eyes and prominent round ears. +train_05964.png A small tan-brown plush bear with a fuzzy, worn texture sits upright facing the camera, its round ears and darker button-like eyes and nose contrasting a lighter muzzle and belly patch against a plain light-gray background. +train_05973.png A small light‑brown plush teddy bear with short fuzzy fur and a lighter beige snout, sitting upright and facing the camera with round ears and dark button eyes, set against a plain white background with a faint shadow beneath. +train_06056.png A small dark brown-to-black bear with coarse, shaggy fur is shown in a three-quarter frontal, slightly upright pose with its head turned to the right, standing at the edge of sunlit green vegetation and a grassy/bare patch, with a lighter muzzle and rounded ears visible despite the low resolution. +train_06281.png A small warm brown, fuzzy plush teddy bear sits upright facing the camera against a soft pale, slightly blurred background, with a lighter beige snout and inner ears, dark button-like eyes and nose, and rounded limbs and ears visible despite the low resolution. +train_06415.png A small, worn brown plush teddy bear with matted, slightly mottled fur, a lighter beige snout and chest, and dark button-like eyes and a tiny stitched nose, sits upright facing slightly left against a dark, indistinct indoor background with soft shadows. +train_06644.png A small, dark brown fuzzy teddy bear sits upright facing the camera from a slightly elevated viewpoint on a pale beige surface, its round ears, stubby limbs, lighter muzzle and tiny dark eyes and nose visible despite the low resolution. +train_06709.png A small, dark reddish-brown plush teddy bear viewed frontally in a standing pose with stubby outstretched arms and round ears, its low-resolution, slightly pixelated texture showing lighter brown highlights on the face and belly against a plain white background. +train_06868.png A small plush teddy bear with golden-brown, slightly matted fur and a lighter tan muzzle and belly sits upright facing the camera with a slight head tilt, showing round ears, dark bead eyes and a stitched nose against a dark, out-of-focus background with warm highlights. +train_06896.png A small, worn medium-brown plush teddy bear with short fuzzy fur, a lighter tan muzzle and belly patch, black button eyes and nose and round ears, sits upright facing slightly to the left on a dark cloth surface against a pale textured wall, casting a soft shadow. +train_07088.png A small fuzzy medium-brown plush teddy bear with rounded ears, a lighter tan snout, dark button-like eyes and a stitched nose, sitting in a three-quarter frontal pose on a pale beige surface with soft warm lighting and a slightly blurred background. +train_07090.png A small, plush teddy bear with warm light-brown fuzzy fur and a paler beige snout, sitting upright facing the camera with rounded ears and dark button-like eyes and nose, set against a soft, out-of-focus pale background. +train_07183.png A small, plush light-brown teddy bear with a slightly lighter muzzle and darker stitched nose and eyes, shown in a three-quarter frontal sitting pose with visible fuzzy texture and soft seams, set against a vivid red, slightly mottled background with a faint shadow beneath. +train_07404.png A small light-tan plush teddy bear with a soft, fuzzy texture, round ears and darker stitched snout and button eyes, sitting upright facing slightly to the right on a warm wooden surface against a pale, softly lit background. +train_07546.png A small reddish-brown plush bear with a visibly fuzzy texture sits upright facing the camera against a blurred green grassy background, showing round ears, a lighter snout and belly patch, and dark button-like eyes and nose despite the low resolution. +train_07625.png A small light-tan plush teddy bear with a short fuzzy texture, darker stitched nose and dark button-like eyes sits upright facing the camera on a pale blue fabric surface with a soft, out-of-focus light background, its rounded ears, stubby limbs, and visible seam lines discernible despite the low resolution. +train_08019.png A small, compact bear with coarse, shaggy reddish-brown fur and a slightly paler muzzle is shown in a three-quarter side view, crouched on a mottled green-and-brown ground of grass and leaf litter, with rounded ears, a dark eye, and short sturdy limbs visible despite the low resolution. +train_08020.png A small reddish-brown bear with coarse, shaggy fur seen in left-profile walking on all fours across a low, sunlit grassy meadow with a blurred green treeline and pale sky behind it, showing a compact rounded body, short legs, rounded ears and a slightly darker head/muzzle despite the low resolution. +train_08152.png A stocky, dark brown-to-black bear with coarse, shaggy fur and a lighter grayish muzzle stands on all fours facing the camera at a slight three-quarter angle with its head lowered as if approaching, set against a blurred green grassy meadow background, its rounded ears and a faint pale patch on the chest visible despite the low resolution. +train_08278.png A small tan-brown plush teddy bear with short fuzzy fur sits upright facing the camera against a soft pale blue-green backdrop, its round ears, darker brown snout, button-like eyes and a lighter patch on its chest discernible even at low resolution. +train_08333.png A small light-tan plush bear with a short fuzzy texture sits upright facing the camera with a slightly tilted head, showing dark round button-like eyes and a small black nose, positioned on a pale neutral surface with a softly lit, out-of-focus background. +train_08365.png A small warm brown plush bear with a slightly lighter muzzle and rounded ears sits upright facing the camera on a muted bluish-gray surface and background, its soft fuzzy texture and stubby limbs visible despite the low resolution. +train_08594.png A small medium‑brown plush teddy bear with a lighter beige muzzle and round ears sits upright facing the camera on a pale blanket against a soft blue background, its fuzzy texture, dark button‑like eyes and stitched nose seam visible despite the low resolution. +train_08596.png A small dark-brown plush teddy bear with a slightly lighter muzzle and visible seam, sitting upright and facing the camera at a slight angle on a plain light background, showing rounded ears, stubby limbs, and short fuzzy fur texture. +train_08945.png A small dusty blue-gray plush bear sits upright facing the camera, its fuzzy texture, rounded ears and darker stitched nose and tiny eye dots visible against a deep navy-blue background. +train_09155.png A stocky, reddish-brown bear with coarse, shaggy fur, a slightly darker muzzle and legs, rounded ears and a broad snout, seen three‑quarters from the front standing on all fours at the edge of green grass and low vegetation beside a pale dirt or sandy clearing. +train_09214.png A small light-brown plush teddy bear with short, fuzzy fur, darker stitched button eyes and nose, and a pale shirt sits upright facing the camera on a bright pink floral-patterned fabric background. +train_09434.png A small plush bear with warm golden-brown fuzzy fur and a slightly lighter beige muzzle, sitting upright facing the camera with rounded ears and dark button-like eyes, positioned on a pale cream surface against a soft sky-blue background, seams and a faint stitched nose visible despite the low resolution. +train_09459.png An upright, front-facing small golden-brown plush bear with fuzzy, slightly matted fur, a lighter tan muzzle and dark plastic eyes and nose, sitting on a white surface against a pale bluish-gray background. +train_09526.png A small cream-colored plush teddy bear with a soft, slightly fuzzy texture sits facing the camera in a frontal seated pose against a dark, indistinct background, its round ears, slightly darker snout, button-like eyes and short stubby limbs visible despite the low resolution. +train_09563.png A small light-tan plush bear with a soft, slightly matted fur texture sits upright in a three-quarter frontal pose against a deep teal-blue, blurred background, its lighter beige snout, round ears and dark button-like eyes faintly visible despite the low resolution. +train_09701.png A small light-brown/beige plush teddy bear with slightly matted, fuzzy fur and dark button eyes sits upright facing the camera on a wooden surface against a dim, blurred brown background, its round ears, stitched snout and short limbs still discernible despite the low resolution. +train_09731.png Small brown plush teddy bear with soft, slightly matted fur and a pale tan muzzle, viewed head‑on with round ears and glossy black button eyes and a stitched black nose, set against a blurred greenish background. +train_09826.png A small light-tan/beige plush teddy bear with slightly matted, fuzzy fur sits upright facing the viewer at a slight angle, its round dark button eyes and triangular black nose set between short rounded ears, resting on a pale wooden surface against a soft, out-of-focus gray background. +train_09843.png A small, dark brown, fuzzy teddy bear with a lighter tan snout and round ears is shown seated and slightly turned toward the camera on a plain light-gray surface with a softly textured neutral background, its stubby limbs and button-like eyes and nose discernible despite the low resolution. +train_09867.png A small warm-brown plush teddy bear with a lighter beige snout and round ears sits upright facing the camera on a pale surface against a dark, indistinct background, its soft fuzzy texture and button-like eyes and nose discernible despite the low resolution. +train_09937.png A small light-brown plush teddy bear with fuzzy, slightly matted fur sits upright facing the camera, its round dark button eyes and small black nose centered on a paler muzzle, with short rounded ears and stubby limbs visible against a warm reddish‑pink fabric backdrop and pale surface. +train_10100.png A small, upright brown plush teddy bear with short, fuzzy fur and a lighter beige snout, facing the camera with round black button eyes and a dark triangular nose, seated centered against a flat turquoise-green background. +train_10161.png A small light-brown, fuzzy teddy bear sits upright facing the camera, showing round ears and a slightly lighter snout with dark button-like eyes and nose, set against a neutral pale background with soft shadowing. +train_10473.png Centered in a small dark frame, the image shows a dark brown, fuzzy plush bear sitting upright and facing forward with a slight head tilt, round ears, button-like dark eyes and a lighter tan muzzle and belly patch with a small stitched nose, all visible against a plain black background with a thin white border. +train_10513.png A small light‑brown plush teddy bear with a matted, fuzzy texture sits upright facing the camera, its round darker muzzle, small black button eyes and nose and rounded ears visible against a warm reddish‑brown patterned fabric or carpet background. +train_10782.png A small, warm brown plush bear with slightly matted, woolly fur and a lighter beige snout and inner ears, shown seated in a front three-quarter view leaning forward against a dark, out-of-focus background, its round black button eyes, stitched black nose, and visible seam lines giving it a classic teddy-bear appearance. +train_10812.png A small, light-brown fuzzy teddy bear with a slightly lighter muzzle and small dark button eyes sits upright facing the camera with rounded ears and short limbs on a flat, warm-toned surface against a dim brownish background, its worn plush texture visible despite the low resolution. +train_11138.png A cream-colored plush teddy bear with a soft, slightly fuzzy texture, shown upright from a slightly above-frontal viewpoint with rounded ears and dark button-like eyes and nose, seated against a mottled pale fabric background. +train_11252.png A small light-brown plush teddy bear with a slightly matted, fuzzy texture sits upright facing the camera with a slight head tilt, its dark button-like eyes and stitched snout visible against a paler chest patch, set on a muted gray-green blurred background. +train_11355.png A small brown plush bear with a fuzzy, velvety texture sits upright slightly turned to the viewer’s left, its rounded ears and darker button-like eyes and snout discernible against a pale, lightly speckled floor or fabric background. +train_11416.png A small light-brown plush teddy bear with a soft, slightly matted fuzzy texture sits upright facing the viewer, its round dark eyes and a darker snout visible, positioned on a pale surface with a faint shadow and a neutral, out-of-focus background. +train_11447.png A small, plush, medium-brown teddy bear with a soft, fuzzy texture and slightly lighter muzzle, shown seated in a three-quarter frontal pose with rounded ears and dark button-like eyes and nose, set against a plain light background with a faint shadow and a small red mark or ribbon visible on its chest. +train_11506.png A small light-brown plush teddy bear with a soft, slightly matted fuzzy texture and a darker brown snout and black button-like eyes sits facing the camera with a slight head tilt against a mottled blue-gray fabric background, its rounded ears and pale paw pads faintly visible. +train_11510.png A small light-brown teddy bear with a soft, slightly matted plush texture sits upright facing the camera, its rounded ears, dark button-like eyes and stitched nose/muzzle visible against a pale cream-colored fabric or rug background. +train_11629.png A small, plush-looking dark brown bear sits facing the camera with soft, slightly matted fur, rounded ears and a lighter tan snout, set against a dim, out-of-focus dark background. +train_11659.png A small, warm brown plush bear with short fuzzy texture and a lighter beige snout and round ears sits upright facing the camera against a dark, out-of-focus background, its shiny black button-like eyes and subtle seam across the muzzle visible despite heavy pixelation. +train_11771.png A low-resolution, dark brown-to-black teddy-bear-like figure seen in a slight three-quarter frontal pose with rounded ears and a stubby snout, showing a fuzzy plush texture and a small shadow on a plain white background. +train_11792.png A small, light-tan plush teddy bear with a slightly matted, fuzzy texture sits upright facing the camera, showing a rounded head with small rounded ears, a darker brown snout and dark button eyes, a lighter central belly patch, and casting a soft shadow on a pale, blurred background. +train_11794.png A small, warm brown, fuzzy teddy bear with a slightly lighter muzzle and dark button-like eyes sits upright in a three-quarter frontal pose on a pale, soft surface against a neutral, out-of-focus background, its rounded ears and plump, textured body discernible despite the low resolution. +train_11979.png A small light-brown plush teddy bear with slightly shaggy fur and a pale beige muzzle and chest, sitting upright and angled slightly to the left showing round ears and dark button eyes and nose, photographed against a soft teal-green fabric background. +train_12034.png A small, dark brown fuzzy plush bear with a lighter tan snout, round ears and small dark button eyes and nose, sitting upright and facing the camera against a dim, indistinct indoor background. +train_12076.png A three-quarter side view of a dark brown, coarse-shaggy bear with subtle lighter-brown highlights on its shoulders and rump, walking with its head lowered and broad snout toward the ground, showing a stocky body, thick forelegs and rounded ears against a blurred bright-green grassy field and foliage background. +train_12097.png A small light-brown, fuzzy plush teddy bear with a darker brown snout and black button eyes is shown in a slightly top-front view, sitting with floppy limbs on a dark navy fabric background, its stitched nose and rounded ears discernible despite the low resolution. +train_12156.png A small plush teddy bear with dark brown, slightly textured fur and a lighter tan muzzle and chest, sitting upright facing the viewer with round ears and dark button-like eyes against a soft, pale, out-of-focus background. +train_12237.png A small dark brown plush teddy bear with dense fuzzy fur and a slightly lighter snout, sitting upright and facing forward so its round ears, tiny black button eyes, and stitched nose are visible against a plain white background. +train_12517.png Small brown plush teddy bear with a lighter tan muzzle and inner ears and a darker stitched nose, seated upright facing the camera with short fuzzy fur and outstretched arms on bright green artificial grass against a turquoise backdrop, wearing a pale blue garment and showing round button-like eyes despite the low resolution. +train_12671.png A small light-gray plush bear with short, slightly matted fur sits upright facing the camera with a slight head tilt against a plain off-white background, its dark button-like eyes, rounded ears and subtly darker snout visible despite the low resolution. +train_12955.png A small dark brown plush teddy bear with short fuzzy fur and a lighter tan muzzle and paw accents, sitting upright facing the camera on a plain white background, its round ears, button eyes and shiny black nose visible despite the low resolution. +train_13146.png A small rust-brown, slightly matted plush bear sits upright facing the camera, showing rounded ears, a lighter tan snout with tiny dark button eyes and nose and short stubby limbs against a dim bluish backdrop and warm ochre floor. +train_13193.png A small brown bear with dense, slightly shaggy fur and a pale patch on its chest is seen from a three-quarter frontal viewpoint standing upright and facing slightly to the right, set against a blurred green-brown outdoor background of grass and earth, with rounded ears and a short snout discernible despite the low resolution. +train_13302.png A small plush teddy bear with warm caramel-brown short-pile fur, a lighter beige muzzle and belly, round ears and dark button-like eyes and nose, sits upright facing the camera on a pale surface against a muted teal background. +train_13331.png A small brown plush teddy bear with fuzzy fur, a lighter beige muzzle and belly patch, round dark eyes and a tiny black nose, sitting upright facing the camera on a neutral beige surface with a softly blurred background. +train_13486.png A small light-brown plush teddy bear with a slightly darker snout and rounded ears sits upright facing the camera, its fuzzy, slightly worn texture and simple dark button-like eyes visible on a sunlit stone ledge with blurred green foliage in the background. +train_13579.png A small, medium-brown plush teddy bear with a fuzzy texture, lighter beige snout and paw pads, dark button-like eyes and a stitched nose, sitting upright facing the camera with legs splayed against a plain white background. +train_13581.png A small warm-brown plush teddy bear with a fuzzy, slightly matted texture shown in a three-quarter frontal seated pose on a pale wooden floor against a dark, out-of-focus background, its round head, short stubby limbs and a lighter-toned snout clearly distinguishable despite the low resolution. +train_13706.png A small light‑brown plush teddy bear sits upright facing the camera, its fuzzy, slightly matted fur and visible seam lines framing button‑like dark eyes and a darker snout/nose, with a bit of red fabric on its right side against a soft, blurred green background. +train_13735.png A small light-blue plush bear with a soft, fuzzy texture sits upright facing slightly to the left, showing round ears and dark bead-like eyes and nose, set against a pale, out-of-focus blue-white background. +train_13911.png A small, dark chocolate-brown plush bear with slightly shaggy, matted fur sits in a three-quarter, slightly head-tilted pose toward the camera on a warm wooden surface against a dim, warm-toned background, showing rounded ears and a paler snout patch as the main distinguishing features. +train_13987.png A small warm-brown plush teddy bear with short fuzzy fur and a lighter tan muzzle and belly sits upright in a slightly three-quarter forward pose against a plain white background, showing black button eyes, a stitched dark nose, visible seam lines and a red ribbon around its neck. +train_14054.png A small light-brown plush teddy bear with soft, fuzzy fur, a darker brown snout and dark button-like eyes sits upright facing slightly to the viewer's left on a pale surface with a pinkish object visible behind it. +train_14199.png A fuzzy light-brown teddy bear with a cream muzzle and small black button nose and eyes, sitting upright and facing the camera in a slightly forward-tilted pose against a dark, out-of-focus background. +train_14443.png A low-resolution image of a light gray–to–off-white bear with coarse, slightly matted fur, shown in a three-quarter profile with its head lowered and back curved (rounded ear and a small dark spot marking the eye/nose area), set against a very dark, out-of-focus background with indistinct shadowed shapes. +train_14550.png A small, dark-brown, fuzzy teddy-bear seen head-on in a seated pose, with rounded ears, a slightly lighter muzzle and chest, button-like dark eyes and stubby front limbs visible against a plain light-gray/white background with a soft shadow beneath. +train_15002.png A small, light-brown plush teddy bear with soft, slightly matted fur, shown sitting upright in three-quarter view with rounded ears, a paler snout and dark button-like eyes, positioned on a warm-toned wooden floor against a blurred indoor background with a vertical blue object to the left. +train_15012.png A small beige-to-light-brown plush bear with short, slightly matted fur sits in a frontal three-quarter view against a plain white background, its rounded ears, dark eyes and darker stitched nose contrasting with a lighter muzzle and belly. +train_15107.png A small orange-brown teddy bear with plush, slightly matted fur and a pale cream snout sits upright in a three-quarter, front-facing pose, its small black bead eyes and darker triangular stitched nose visible against a dim black backdrop and light-colored surface beneath, with visible seams on the limbs and slightly flattened ear tops. +train_15203.png A small, worn gray-blue plush bear with slightly matted, fuzzy fur sits upright facing the camera, showing round ears, a lighter snout and dark button-like eyes and nose, set against a pale, slightly wrinkled background with a darker shadowed area to its right. +train_15292.png A small light‑brown, fuzzy plush teddy bear viewed from a slightly high frontal angle as it sits upright, showing round ears, a lighter beige muzzle with a darker nose and button‑like eyes, set against a soft neutral gray‑white background. +train_15293.png A small dark brown fuzzy teddy bear with a slightly lighter face area and rounded ears, shown upright in a frontal three-quarter pose against a bright white background with a narrow dark base and soft shadow, its plush, slightly matted texture and clear head-and-body silhouette visible despite the low resolution. +train_15311.png A small, dark brown, fuzzy plush bear sits upright in a three-quarter frontal pose with a rounded head, small rounded ears, shiny button-like eyes and a slightly lighter snout, set against a deep red fabric background with soft vertical folds. +train_15394.png A compact brown bear with coarse, shaggy dark-brown fur and a slightly lighter muzzle stands in a three-quarter frontal pose with its head turned toward the camera, rounded ears and a short snout visible against a blurred greenish-brown natural background of grass and earth. +train_15558.png A small, warm-brown plush teddy bear with a slightly lighter tan muzzle and worn, fuzzy texture sits in a three-quarter frontal pose facing the camera, its rounded ears, dark button-like eyes and stitched nose visible against a deep nearly black background. +train_15625.png A small, dark brown fuzzy plush teddy bear sits upright facing the camera, showing a rounded head with small round ears, a lighter muzzle and button-like eyes and nose, all set against a soft teal-green blurred background. +train_15902.png A small cream-colored, soft-fuzzed plush bear sits upright facing the camera, with tiny dark button eyes and a small brown nose visible, positioned on a white surface against a bright blue rectangular background. +train_15937.png A small, warm-brown plush teddy bear with a soft, fuzzy texture sits upright facing the viewer, its rounded ears, darker snout and tiny button-like eyes discernible against a muted pale-gray indoor background and shadowed base. +train_15949.png A small light-tan plush teddy bear with slightly shaggy fur sits upright facing the camera, showing a darker brown snout and black button eyes and nose, placed on a flat warm wooden surface against a plain off-white background. +train_15954.png A small, warm brown fuzzy teddy bear with a lighter beige muzzle and belly and round dark eyes and nose sits upright facing the camera on a rough grayish surface against a blurred green-blue outdoor background. +train_16011.png A small, nearly black bear viewed in a side/three-quarter pose with coarse, matte fur and rounded ears, head lowered over a patch of green grass with a soft, out-of-focus bluish background, its rounded rump and short limbs still discernible despite the low resolution. +train_16061.png A small light-brown plush teddy bear with matted, fuzzy fabric, round ears and stitched black button eyes and nose sits upright facing slightly to the left against a plain pale background with a soft shadow beneath. +train_16113.png A small light-tan plush teddy bear with slightly matted, fuzzy fur sits upright facing the camera, its round ears, darker stitched snout and button-like eyes visible, set against a plain pale beige wall and floor background. +train_16147.png A front-facing, sitting-up small teddy bear with warm light brown short-plush fur, a slightly darker stitched snout and tiny black button eyes, rounded ears and stubby limbs visible in a close-up from a slightly low angle against a soft white blanket background, the fuzzy texture and seam lines apparent despite the low resolution. +train_16490.png A small light‑brown plush teddy bear with short, slightly matted fur sits upright facing the camera, its rounded ears, darker stitched nose and small dark bead‑like eyes visible against a plain light background with a faint shadow beneath. +train_16734.png A small, dark-brown plush teddy with a fuzzy, slightly worn texture sits upright facing the camera, wearing a gray hooded garment, placed on a pale surface in front of a dim gray wall and a wooden box to its right. +train_16773.png A small, dark brown, fuzzy teddy-bear–like figure shown in a three‑quarter upright pose with rounded ears, a lighter tan muzzle and tiny dark eyes/nose, positioned near the lower-left against a soft pale‑blue background with a pale surface beneath. +train_16836.png A small, dark brown plush bear with a soft, slightly fuzzy texture sits upright facing the camera with a slight head tilt, showing round ears, a lighter tan muzzle and dark shiny button-like eyes and a small red ribbon/tag at its chest, set on a pale, softly lit surface with a dark, out-of-focus background. +train_16881.png A small, light-brown plush teddy bear with a fuzzy, worn texture and a pale tan snout, sitting upright and facing the camera with round ears and dark button-like eyes and nose, set against a blurred greenish outdoor background. +train_16998.png A small dark brown-to-black bear with coarse, slightly glossy fur stands upright on a mossy rock facing the camera with its forepaws resting on the stone, rounded ears and a lighter muzzle/chest patch visible against a blurred green forest and a vertical tree trunk in the background. +train_17001.png A low-resolution side-profile of a small dark brown bear with shaggy fur and rounded ears, a slightly lighter muzzle, and a hunched posture on all fours set against a bright green, blurred grassy/forest background. +train_17196.png Three-quarter side view of a stocky bear with shaggy, reddish‑brown fur showing coarse, mottled texture, standing on all fours with head slightly lowered and a darker muzzle and rounded ears visible against a plain white background. +train_17288.png A small, matte-black, fuzzy teddy-bear-like figure standing upright in a slight three-quarter frontal pose with rounded ears and stubby limbs, silhouetted against a stark white background and casting a soft shadow to its right. +train_17431.png A small warm brown plush bear with a slightly matted, fuzzy texture sits facing the camera in a near-frontal pose on a muted blue-gray fabric background, its rounded ears, lighter snout area and darker button-like eyes and nose visible despite the low resolution. +train_17546.png A compact, dark brown bear-like figure with coarse, shaggy fur and a paler snout, seen from the front in a slightly hunched standing pose with rounded ears and a subtle forehead ridge, set against a dim, green-brown, out-of-focus woodland or grassy background. +train_17628.png A small golden-brown plush teddy bear with soft, slightly matted fur shown in a frontal three-quarter sitting pose against a neutral gray background, its round ears, lighter beige snout, and dark button-like eyes and nose discernible despite the low resolution. +train_17687.png A small dark-brown plush teddy bear with a slightly matted, fuzzy texture sits upright facing the camera, showing round ears, a lighter beige snout with a visible seam and button-like dark eyes against a plain light-gray background. +train_17795.png A small light-tan, fuzzy plush teddy bear sits upright, slightly angled toward the camera, with round ears, a darker stitched snout and button-like eyes, set against a soft off-white background. +train_17820.png A small, brown, fuzzy teddy-bear plush with round ears, a cream-colored snout and dark bead-like eyes sits upright facing the camera on a wrinkled blue fabric background, its short pile texture and slightly darker muzzle visible despite the low resolution. +train_17862.png A small brown plush teddy bear with a fuzzy texture sits facing the camera at a slight three-quarter angle, showing round ears, dark button-like eyes and a lighter muzzle with a tiny dark nose, positioned on a pale surface against a softly out-of-focus gray background. +train_17895.png A small beige plush teddy bear with a soft, fuzzy texture and slightly darker ears and snout, sitting upright facing the camera with round ears, button-like dark eyes and a tiny stitched nose, posed on a bright blue surface against a pale, out-of-focus background. +train_18006.png A small plush teddy bear with warm medium-brown, slightly fuzzy fur and a lighter beige muzzle and belly sits upright facing the camera, its round ears, dark button eyes and nose and stitched mouth visible against a soft pale blue–teal fabric background. +train_18092.png A small plush teddy bear with warm brown, slightly fuzzy fur and a lighter beige snout, shown seated in a three-quarter frontal pose with rounded ears, dark button-like eyes and a tiny nose, set against a dark, out-of-focus background that emphasizes the toy's soft texture despite the low resolution. +train_18156.png A small orange-brown plush bear with a short, fuzzy texture sits in a three-quarter view facing slightly left on green grassy ground with a blurred foliage background, showing round ears, dark button-like eyes, a lighter cream snout/chest patch and a small dark nose. +train_18216.png Dark brown-to-black bear with shaggy, coarse fur and lighter brown highlights on the muzzle and shoulders, shown in a three-quarter side view standing on all fours on a blurred bright-green grassy slope, head slightly turned toward the camera revealing rounded ears and a compact, stocky silhouette despite the low resolution. +train_18286.png A low, frontal view of a dark brown, shaggy-coated bear lying with its head down toward the camera, its lighter tan muzzle and small rounded ears contrasting with coarse, dense fur, set against a blurred green forest‑floor background of moss, leaves and a nearby rock. +train_18509.png A small dark-brown plush bear with slightly matted, fuzzy fur sits upright facing the camera, its rounded ears and lighter, worn snout visible against a blurred gray concrete pavement background. +train_18562.png A small light-brown plush teddy bear with a fuzzy, slightly matted texture sits upright facing the camera, showing round dark button-like eyes and a lighter beige snout with a stitched nose, resting on a wooden surface against a warm, blurred reddish background. +train_19050.png A small light-tan plush teddy bear with soft, fuzzy fur and a slightly darker muzzle sits upright facing the camera on a plain white background, its rounded ears, stubby limbs, button-like black eyes and small dark nose visible despite the low resolution. +train_19215.png A small stuffed bear with mottled medium‑brown fuzzy fur and a lighter beige snout sits upright in a slight three‑quarter pose toward the camera, showing rounded ears and a dark red collar or bow, set on a pale floor with an out‑of‑focus darker vertical background. +train_19323.png A small light-brown plush teddy bear with shaggy fur shown frontally in a seated pose, its round ears, slightly darker muzzle and black button nose and eyes visible against a plain white/cream background with a soft shadow. +train_19433.png A small, dark-brown plush teddy bear with a slightly matted, fuzzy texture sits upright angled slightly to the left, its rounded ears and faint darker eye dots and lighter snout barely discernible against a plain light-gray background with a soft shadow beneath. +train_19469.png A small warm-brown plush teddy bear with a slightly matted fuzzy texture and a lighter beige snout and paw pads sits upright in a three-quarter frontal pose facing the camera against a plain light-gray background, its round dark button eyes, small rounded ears and a faint central seam on the face visible despite the low resolution. +train_19480.png A small light-brown plush bear with a short fuzzy texture and a lighter beige muzzle, shown in a close-up frontal pose against a plain white background, with round ears, dark button-like eyes, a stitched dark nose and a small red accent on its chest. +train_19566.png A small light-brown plush teddy bear with a slightly darker muzzle, round dark button eyes and a stitched nose sits upright facing the camera, its fuzzy texture and rounded ears visible against a soft cream-beige indoor background. +train_19635.png A small off-white plush teddy bear with short, slightly matted pile fur sits upright facing the camera on a pale, softly lit background, showing round black button eyes, a small black stitched nose, rounded ears, and a faint seam down its forehead. +train_19779.png A small light-brown, well-worn plush teddy bear with short fuzzy fur, round ears and dark button eyes and nose, sitting upright facing the camera with a slightly lighter muzzle and belly patch, set against a softly lit indoor background of pale teal and beige with a faint shadow behind it. +train_19840.png A small, dark brown, slightly matted plush bear with a beige snout and button eyes sits upright in a three-quarter frontal pose on a warm wooden floor against a dim, out-of-focus background, its round ears and short fuzzy texture visible despite the low resolution. +train_19869.png A small, plush-looking light brown bear with short, slightly matted fur sits in a three-quarter frontal pose facing the camera against a sunlit, out-of-focus grassy background, showing rounded ears, a pale cream snout, and small dark eyes and nose. +train_19936.png A small, dark brown bear with coarse, slightly glossy fur is seen in a three-quarter frontal pose facing the camera, its rounded ears and paler muzzle distinguishable, standing against a blurred greenish woodland background with indistinct foliage and dappled light, the stocky body and short legs visible despite the low resolution. +train_20023.png A small, dark brown-to-black, shaggy-furred bear is shown in three-quarter profile facing left, standing on all fours on a low-contrast grassy/dirt foreground against a softly blurred warm purple–orange background, with a rounded snout and small rounded ears discernible despite the low resolution. +train_20048.png A low-resolution side-profile shows a small brown, shaggy-coated bear standing on all fours with a slightly hunched back and rounded ears, its dark head and compact, stocky body silhouetted against a pale, nearly featureless gray background that suggests snow or mist. +train_20189.png A small, light-brown fuzzy plush bear with a cream-colored muzzle and dark button eyes and nose sits upright facing the camera with a slightly tilted head on a pale surface against a dark, out-of-focus background. +train_20266.png A small warm-brown plush teddy bear with a slightly darker snout and black button eyes and nose, its fuzzy pile visible as it sits upright facing the camera with a slight head tilt, held near a pale hand against a deep red fabric background with a hint of teal sleeve at the lower left. +train_20380.png A small golden-brown plush teddy bear with soft, fuzzy fur, a slightly darker stitched snout and black bead eyes sits upright, angled slightly to the viewer's left, against a neutral beige surface with a vertical blue panel to its right, its round ears and short limbs clearly visible despite the low resolution. +train_20572.png A warm medium-brown plush teddy bear with soft, slightly matted fur and a lighter cream muzzle sits upright facing the viewer with rounded ears, button-like dark eyes and a stitched nose and mouth, positioned on a pale, neutral background so its short fuzzy texture and simple seams are discernible even at low resolution. +train_20654.png A small brown plush teddy bear with slightly shaggy, matted fur and a lighter tan muzzle and belly sits upright facing the camera, showing round ears and dark button-like eyes and nose against a pale, out-of-focus indoor background. +train_20655.png A warm chestnut-brown, slightly pixelated teddy-bear-like figure with a soft, fuzzy texture sits upright in a three-quarter frontal pose against a plain white background, its rounded ears, lighter beige muzzle and belly, and small dark eyes and button nose visible despite the low resolution. +train_20741.png A small, dark-brown fuzzy plush teddy bear sits upright in a three-quarter frontal view, its lighter tan muzzle and inner ears and tiny black button eyes and nose visible against a pale beige blanket with a muted bluish-gray background. +train_20805.png A small golden-brown, shaggy plush teddy bear with rounded ears, dark button-like eyes and a darker stitched snout sits upright facing the camera with a slight head tilt against a deep red/maroon fabric background, its fuzzy texture and visible muzzle stitching apparent despite the low resolution. +train_20834.png A small tan-brown plush teddy bear is shown from a slightly left-of-center frontal angle, its fuzzy, soft-textured fur and rounded ears framing a darker brown snout with a tiny black button nose and bead-like eyes, set against a neutral cream background with gentle shadowing. +train_21045.png A small turquoise-blue plush bear with a soft, slightly fuzzy texture, shown sitting in a front/three-quarter view with round ears and dark button eyes over a pale blue background, its rounded snout and simple stitched features visible despite the low resolution. +train_21086.png A small warm light-brown plush teddy bear with a slightly matted fuzzy texture and a lighter beige snout and belly sits upright facing the camera against a plain pale background, its round black button eyes, dark triangular nose, stitched mouth and visible seam lines on the limbs discernible despite the low resolution. +train_21176.png Side-profile of a dark, blackish-brown bear with coarse, shaggy fur and a stout, stocky body captured mid-stride with its head lowered at the water’s edge against a pale, out-of-focus shoreline background, revealing a rounded back/shoulder mass and short, sturdy legs despite the low resolution. +train_21232.png A small, light-gray plush bear with a fuzzy, slightly mottled texture sits upright turned slightly to the right against a smooth pale-blue background, showing round ears, stubby limbs and tiny dark button-like eyes and nose despite the low resolution. +train_21334.png A small, warm-brown plush teddy bear with a fuzzy, slightly worn texture, a lighter beige snout and belly, dark button-like eyes and nose, sitting upright facing the camera with rounded ears and stubby limbs against a soft pale-gray background. +train_21358.png A small, warm light-brown plush bear with a slightly matted, fuzzy texture sits upright and faces the camera with its head slightly tilted, showing a darker brown snout and small dark button-like eyes and nose against a soft pale bluish-gray background and a darker shadowed surface beneath. +train_21505.png A small light‑brown plush teddy bear with short fuzzy fur, rounded ears and a slightly darker muzzle with tiny dark button-like eyes and nose, sitting upright facing the camera with a slight head tilt against a plain pale background. +train_21541.png A small brown plush teddy bear with short fuzzy fur and a lighter beige muzzle and belly, sitting upright and facing slightly to the right with round ears and dark button eyes and nose, placed on a blue-and-white patterned fabric background. +train_21545.png A small warm-tan, short-pile plush bear viewed head-on and sitting upright with a slight head tilt, round ears and button-like dark eyes and nose, a subtly darker muzzle and stubby limbs, cast against a soft neutral background with a faint shadow beneath. +train_21791.png A small dark brown plush teddy bear with a slightly lighter muzzle and rounded ears sits upright facing the camera against a vivid lime-green background, its fuzzy texture and simple dark eyes and nose discernible despite the low resolution. +train_21860.png A small creamy-beige plush bear with a soft, slightly fuzzy texture is seen from a slight overhead angle lying on its back on a smooth turquoise-blue surface, its rounded head and stubby limbs appearing as pale, indistinct shapes with a darker shadowed area near the lower right. +train_21904.png A small white plush bear with soft, slightly matted fur and round black button eyes and nose sits upright facing the camera on a pale blue fabric background, its rounded ears and simple stitched muzzle visible despite the low resolution. +train_21908.png A small warm-brown plush teddy bear with a slightly matted, fuzzy texture sits upright facing the camera with a slight head tilt, showing round ears, dark button-like eyes and a darker snout, set against a plain pale-gray background and surface with a soft shadow beneath. +train_22038.png A low-resolution side-profile of a dark brown, shaggy-coated bear walking left on short green grass, its bulky, rounded body and small rounded ears visible with a slightly lighter muzzle set against a soft, out-of-focus grassy background. +train_22079.png A small, dark charcoal-gray teddy-bear-like figure with a matted, fuzzy texture sits upright facing the camera, its rounded ears, stubby arms and slightly lighter snout visible against a plain light-gray background that casts a soft shadow beneath, with blurred edges and faint seam lines discernible despite the low resolution. +train_22088.png A small, light-tan plush teddy bear with slightly matted, fuzzy fur and a paler beige muzzle and belly sits upright in a three-quarter frontal pose on a dark hardwood floor against a low gray sofa and white baseboard, its round head, small dark button eyes and stitched nose and seam lines visible despite the low resolution. +train_22147.png A creamy-white bear with dense, shaggy fur is captured in a three-quarter profile facing left with a forepaw slightly raised, standing on pale rocky/snowy ground against a muted bluish-gray backdrop, its dark nose, eye and bulky shoulders visible despite the low resolution. +train_22283.png A small light‑brown plush bear with a slightly matted, fuzzy texture sits upright facing the camera with its head just a touch to the right, showing round ears, dark bead-like eyes and a darker stitched nose on a paler muzzle against a softly blurred yellowish background. +train_22502.png Low-resolution frontal view of a brown bear showing coarse, shaggy dark-brown fur with a slightly lighter, mottled muzzle and rounded ears, head and shoulders facing the camera against a blurred greenish-blue outdoor background suggesting vegetation, with compact face and dark eye points discernible despite pixelation. +train_22521.png A small, light-tan plush teddy bear with fuzzy, slightly matted fur sits upright facing the camera, showing round ears, dark button-like eyes and nose and faint seam lines on its snout, set against a softly blurred green foreground and blue-green outdoor background. +train_22606.png A warm tan plush bear with a slightly matted, fuzzy texture sits upright in a frontal three-quarter view on a pale floor against a light wall, head tilted slightly to one side, showing round dark bead eyes, a darker brown stitched snout, visible seams along the belly and limbs, and rounded ears. +train_22646.png A small light-to-medium brown, soft-furred teddy-bear-like figure with rounded ears, a darker snout and button-like black eyes, sitting upright with a slight head tilt, positioned on a grayish surface against a blurred green outdoor background. +train_22702.png A close-up, front-facing light-brown plush teddy bear with short fuzzy texture, a slightly darker muzzle and round black button eyes, prominent rounded ears and a small white chest patch, centered against a solid teal background with a thin white border. +train_22961.png A small, light-brown plush teddy bear with short, slightly matted fur and a darker muzzle sits upright in a frontal three-quarter view, showing round ears and small dark button-like eyes and nose, positioned on a pale, softly mottled indoor surface with a faint checkered background. +train_23083.png A small, fuzzy medium-brown plush bear with a lighter tan muzzle and belly sits upright facing the camera, its rounded ears and stubby limbs visible against a dark, out-of-focus background. +train_23120.png A small, light-brown fuzzy teddy bear with a slightly darker snout and round dark button-like eyes sits upright facing the camera on a mottled teal-green surface, its rounded ears, short limbs, and faint stitching visible despite the low resolution. +train_23166.png A small, dark brown bear with coarse, shaggy fur is shown in a low three-quarter frontal pose on green grass with its head angled downward, revealing rounded ears, a short snout and chunky limbs against a softly blurred vegetative background. +train_23178.png A small light-brown plush teddy bear with slightly matted fuzzy fur sits upright in a three-quarter frontal pose on a warm wooden surface against a dim, blurred background, its rounded ears, darker snout patch and tiny dark bead-like eyes visible despite the low resolution. +train_23421.png A small, dark-brown, fuzzy bear (appearing like a worn plush) sits upright facing slightly left with rounded ears and a lighter muzzle, its matted texture catching light as it rests on a patch of green grass with a soft, blurred grassy background and a shadow beneath it. +train_23456.png A small, warm brown plush teddy bear with a lighter beige snout and belly, stitched dark nose and button-like eyes, rounded ears and slightly flattened, fuzzy texture, sitting upright facing the camera on a blue-purple patterned fabric background. +train_23619.png A small, matted medium-brown plush bear with a lighter tan snout and paws sits upright facing slightly to the right, its dark button-like eyes and stitched nose visible against a softly blurred green background suggesting grass or foliage. +train_23796.png A small tan plush teddy bear with short fuzzy fur sits upright facing slightly left against a plain light-gray background, displaying round dark eyes, a darker brown muzzle and inner ears, and a faint vertical seam down its torso. +train_23842.png A small dark-brown plush teddy bear with a slightly fuzzy texture and a lighter tan snout sits upright facing the camera at a slight left angle against a pale neutral background (appearing to be fabric or a tabletop), its round ears and button-like eyes and short stubby muzzle discernible despite the low resolution. +train_23952.png A small caramel-brown plush bear with a short fuzzy texture sits upright facing the camera, its round head showing darker button-like eyes and a small darker snout, set against a soft pale background with a faint shadow beneath. +train_24207.png A small, warm honey-brown plush bear with short, slightly matted fur sits upright facing the camera with a subtle head tilt, showing a lighter beige snout, dark button-like eyes and nose, a stitched mouth and visible seam along its torso against a soft, neutral off-white background. +train_24264.png A small golden-brown plush bear viewed frontally and sitting upright, its short fuzzy fur and rounded ears framing shiny dark button eyes and a small black nose, set against a soft, warm, slightly blurred beige-brown background. +train_24273.png A small light-brown fuzzy teddy bear with a white snout and black button eyes and nose sits upright facing the camera on a gray surface, its round ears and short stubby limbs visible against a wooden cabinet and a cluttered indoor background with a red object to the right. +train_24414.png A small tan plush teddy bear with fuzzy, slightly matted fur, a white snout and belly, dark button eyes and nose, and a tiny blue ribbon at its neck sits upright facing the camera from a slightly elevated front viewpoint on a light turquoise background patterned with white star-like shapes. +train_24428.png A small warm-brown plush teddy bear with short fuzzy fur sits upright in a three-quarter frontal pose, showing rounded ears and a lighter muzzle with a dark stitched nose, set against a plain light background with a soft shadow. +train_24478.png A small, brown, plush-textured bear sits upright facing the camera on a mottled green-brown ground with blurred greenery behind it, its rounded ears, slightly lighter muzzle and darker eye-area visible despite the low resolution. +train_24486.png A small caramel-brown plush teddy bear with a soft, fuzzy texture sits upright facing the camera with a slightly tilted head and splayed limbs, showing round ears, dark button-like eyes and a lighter stitched snout, set against a plain white background with a soft shadow beneath. +train_24568.png A small reddish-brown plush teddy bear with short, fuzzy fur sits upright facing the camera, its lighter beige snout and dark button-like eyes and nose visible against a blurred blue-and-white patterned fabric background. +train_24656.png A small, matted dark-brown plush bear with a lighter tan muzzle and inner ears, visible round black eyes and a stitched nose, shown in a slightly three-quarter frontal pose sitting upright with a slight head tilt on coarse sandy/pebbled ground against a blurred warm-toned background, its worn seams and scuffed fur texture still discernible despite the low resolution. +train_24856.png A small, medium-brown plush teddy bear with soft, slightly matted fur and a darker brown snout sits upright in a three-quarter pose on a neutral white-to-gray surface, casting a faint shadow and showing round ears, stubby limbs and a slightly rounded belly despite the low resolution. +train_24976.png A small light-brown plush teddy bear with soft, slightly matted fur, a darker brown snout and button-like black eyes, seated upright in a slightly three-quarter frontal pose on a pale cloth backdrop with a faint shadow beneath, its rounded ears and short limbs discernible despite the low resolution. +train_25000.png A small, warm-brown plush teddy bear with a short, fuzzy texture sits upright facing the camera in a slightly frontal pose against a smooth aqua-green background, its rounded ears, stubby limbs and a darker snout area still discernible despite the low resolution. +train_25034.png A small warm-brown plush teddy with a short fuzzy texture sits upright facing the camera with a slight tilt, resting on a pale flat surface against a neutral blurred background, showing round ears, a darker snout with button-like black eyes and visible seam lines on its limbs. +train_25179.png A small stuffed teddy bear with medium-dark brown, slightly fuzzy plush fur and a pale beige snout, sitting upright facing the camera with round ears and dark button-like eyes and nose, casting a soft shadow on a bright, out-of-focus white background. +train_25224.png A small golden‑tan plush teddy bear with short fuzzy pile, round ears and darker button‑like eyes and nose, sitting upright facing the camera with slightly splayed legs and a visible center belly seam against a plain white/gray background casting a soft shadow. +train_25253.png A small, fuzzy brown teddy bear with a lighter tan snout and belly, round dark eyes and a stitched nose, wearing a faded blue ribbon or bib and sitting upright facing the camera with slightly outstretched arms on a warm orange-brown surface against a pale background. +train_25259.png A compact warm-brown, slightly shaggy bear shown in a front three‑quarter seated pose with rounded ears and a paler snout, set against a blurred bright-green grassy background with shadowed underfur and a darker chest visible despite the low resolution. +train_25328.png A small, light‑brown plush teddy bear with short, slightly matted fuzzy fur and a lighter round muzzle, shown upright and slightly off‑center from the front in a seated pose against a plain white/gray background, with dark button‑like eyes and a small black nose still discernible despite the low resolution. +train_25385.png A small golden-brown plush teddy bear with short, fuzzy fur sits upright at a slight three-quarter angle facing left, its rounded ears and dark button-like eyes and nose visible despite low resolution, set against a blurred bright green grassy/leafy background with a soft shadow beneath. +train_25552.png A compact cream-to-off-white bear with dense, fluffy fur and rounded ears sits in a three-quarter frontal pose facing the camera, its small dark nose and eye spots contrasting against a pale, snow-like background with soft shadows while low resolution blurs finer fur detail. +train_25763.png A small, brown teddy bear with soft, slightly matted fur, a lighter cream-colored snout and dark button-like eyes sits upright facing the camera at a slight angle against a dim, warm-toned background with indistinct yellow highlights. +train_26005.png A small, warm medium-brown fuzzy bear with rounded ears, a slightly lighter snout and dark button-like nose and eyes, shown upright and facing the camera with its arms slightly outstretched against a soft, out-of-focus pale green and white background suggesting foliage. +train_26014.png A small tawny-brown plush bear with fuzzy, slightly matted texture sits upright facing the camera with a slight head tilt, displaying rounded ears, a darker snout and button-like eyes and nose, set against a dark navy background with a pale surface beneath. +train_26033.png A small, dark-brown plush teddy bear sits facing the camera against a nearly black background, its fuzzy fur contrasted by a lighter tan muzzle and inner ears, round button-like eyes and a small black nose, with a slightly hunched sitting pose and visible seam lines on its rounded limbs. +train_26142.png A small, fuzzy brown teddy bear with a slightly darker snout and round ears sits upright facing the camera on a pale surface against a soft blue background, its plush texture, dark button-like eyes and stitched muzzle visible despite the low resolution. +train_26514.png A small light-tan plush teddy bear with a soft, fuzzy texture sits upright facing the camera, displaying round ears, dark button-like eyes and a darker stitched nose and mouth against a dark bluish background. +train_26526.png A small chocolate-brown plush teddy bear with a visibly fuzzy texture sits upright facing the camera, showing round ears and a lighter beige snout with dark button-like eyes and nose, set against a saturated blue–purple background with a soft shadow beneath. +train_26531.png A small, light-brown stuffed bear viewed from a three-quarter front angle, with a lighter beige muzzle, rounded ears, dark button-like eyes and nose, and a fuzzy plush texture, seated against a bright blue, slightly blurred background. +train_26588.png A dark brown–black bear with coarse, shaggy fur is shown in profile walking left with its head lowered and rounded ears visible, standing on a rocky, grassy shoreline bathed in cool bluish light with indistinct rippling water or vegetation in the background. +train_26602.png A small brown plush teddy bear with fuzzy, slightly matted fur, a pale cream snout and belly, button-like dark eyes and a stitched nose, sitting upright and facing the camera against a soft pale-green background. +train_26708.png A small light-tan plush bear with a soft, slightly fuzzy texture, shown front-facing and upright with round ears and stubby limbs, standing against a blurred green foreground and pale blue background, its darker snout, eye area, and rounded belly still discernible despite the low resolution. +train_26818.png A small, dark brown–to–almost-black, slightly fuzzy bear-like figure stands upright in a three-quarter frontal pose with rounded ears, a short snout and a faint lighter chest patch, set against a bright, overexposed white background (tabletop or snow) that leaves limbs and fine fur detail indistinct but its compact silhouette clearly visible. +train_26885.png A small, warm brown plush teddy bear with short, fuzzy fur and a lighter beige snout and inner ears sits upright facing the camera against a deep blue, slightly textured background, its round dark eyes, stitched nose and button-like paws visible despite the low resolution. +train_26930.png A small light-tan plush teddy bear with short, fuzzy fur and a darker brown snout, shown sitting upright in a three-quarter frontal view against a dim indoor background (shelf/wall), with round ears, a lighter belly patch and simple stitched eyes and limbs visible despite the low resolution. +train_26986.png A warm, medium-brown plush teddy bear with a lighter beige muzzle and visibly fuzzy texture sits upright facing the camera, displaying rounded ears, dark button-like eyes and a small stitched nose against a pale, slightly textured indoor background (likely a couch or blanket) with soft shadows. +train_26990.png A pair of dark, shaggy bears—one noticeably smaller cub beside a larger adult—are shown in a side/three-quarter walking pose with rounded ears and stocky bodies, their coarse black-brown fur showing faint sunlit brown highlights as they move across a sunlit grassy plain with a soft, out-of-focus green-brown woodland background, the low-resolution image still revealing compact silhouettes and short legs. +train_27153.png A small light‑brown plush teddy bear with a short fuzzy texture sits facing the camera in a frontal pose against a solid teal‑blue background, showing round dark button eyes, a lighter beige snout with a small black nose and rounded ears. +train_27189.png A small light-brown plush teddy bear with short fuzzy fur, a slightly lighter snout, dark button-like eyes and rounded ears sits upright facing the camera on a soft, neutral-toned background (likely a cushion or chair), its stitched muzzle and overall plush texture still discernible despite the low resolution. +train_27270.png A small chestnut-brown plush bear with short, slightly matted fuzzy fur and a pale beige snout sits upright facing the camera with a slight head tilt, its round black button eyes, small black nose and rounded ears visible against a blurred green foliage/grass background. +train_27281.png A small light‑brown fuzzy teddy bear with a cream-colored snout, dark button eyes and a stitched nose sits upright facing the camera with slightly splayed arms and rounded ears on a warm reddish‑brown wooden floor against a muted teal‑green background, its plush seams and worn texture visible despite the low resolution. +train_27337.png A small brown plush teddy bear with soft, slightly matted fur and a lighter beige snout with dark button eyes sits upright, head turned slightly to the right, showing round ears, short limbs and visible stitched seams against a mottled blue patterned fabric background. +train_27354.png A small light-brown plush teddy bear with short fuzzy fur sits upright facing the camera, showing round ears, black button eyes and nose, a lighter beige muzzle and a small red ribbon at its neck against a plain white background. +train_27363.png A small, dark navy-to-black plush bear with a soft, slightly fuzzy texture sits upright facing the camera, its rounded ears and short limbs forming a compact silhouette against a pale bluish-white background with a faint shadow beneath. +train_27383.png A stocky, light-tan to honey-brown bear with coarse, shaggy fur and a darker brown muzzle and lower legs is shown in a left-facing side profile walking on all fours across a dry yellowish grassy foreground against a blurred green-brown woodland background, with rounded ears and a subtle shoulder hump visible despite the low resolution. +train_27442.png Small, well-worn dark brown plush teddy bear with slightly matted fuzzy fur, a lighter tan muzzle and belly, black button eyes and a stitched nose, wearing a faded red ribbon and sitting in a front three-quarter upright pose against a dim indoor background with a bright white shape behind it. +train_27542.png A small dark-brown, fuzzy plush bear with a lighter beige muzzle and small dark button-like eyes sits upright in a slight three-quarter frontal pose against a bright cyan-blue solid background, its round ears and stubby limbs visible despite the low resolution. +train_27605.png A small warm brown plush teddy bear with a slightly lighter beige snout and fuzzy, worn pile sits upright facing the camera on a pale, textured surface, its round ears, dark bead-like eyes and small stitched nose discernible despite the low resolution. +train_27705.png A small, dark charcoal-to-deep-brown, slightly fuzzy bear seen in a three-quarter left-standing pose against a bright grassy-green blurred background, with a compact rounded body, short stubby legs, small rounded ears and a short snout, subtle top-left highlights and a faint shadow beneath. +train_27787.png A small reddish-brown plush teddy bear with slightly matted short fur and a lighter beige stitched muzzle and round ears, seated upright facing the camera with a slight head tilt on a pale rug or cushion against a darker wooden background, its small dark eyes and nose still discernible despite the low resolution. +train_27931.png A small, light-tan plush teddy bear with a soft, fuzzy texture sits upright in a three-quarter frontal pose, its round ears, dark button-like nose and slightly darker snout visible against a plain bright background with a faint shadow beneath. +train_28034.png A small, well-worn light-brown teddy bear with short, fuzzy fur and a slightly lighter muzzle and inner ears sits slouched facing the camera, its round head, black button eyes and nose visible while its legs are splayed on a pale wooden floor against a neutral light-gray wall and baseboard. +train_28220.png A small, charcoal-black fuzzy teddy bear sitting upright and facing the camera with rounded ears and a lighter gray muzzle/chest patch, set against a soft pink fabric backdrop with a teal-green object visible to its right. +train_28248.png A small, light‑brown plush teddy bear with soft, slightly matted fur, a lighter tan muzzle, dark button-like eyes and nose, rounded ears and short limbs, sitting upright facing the camera with a slight head tilt against a blurred blue‑gray fabric background. +train_28410.png A small tan-brown plush teddy bear with a soft, slightly matted fur texture sits in a three-quarter frontal pose, its rounded ears, darker snout and stubby limbs visible against a pale, lightly speckled background. +train_28473.png A small tan-brown plush teddy bear with a soft, fuzzy texture sits upright facing the camera, showing rounded ears, a lighter beige snout and dark button-like eyes, against a blurred green grassy background. +train_28639.png A small, slightly worn medium‑brown plush teddy bear with a lighter beige muzzle and inner ears, round black button eyes and a faint stitched nose, sitting upright and facing the camera with flattened, fuzzy fur against a warm, out‑of‑focus wooden surface and muted background. +train_28728.png A small light-brown plush teddy bear with matted, fuzzy fur sits upright facing the camera on a pale blue background, its round ears, dark button-like eyes and nose and rounded snout silhouette visible despite the low resolution. +train_28743.png A small, light- to medium-brown plush teddy bear with visibly fuzzy, slightly matted fur sits upright facing the camera in a centered pose, showing round dark button-like eyes, a darker triangular nose and rounded ears, set against a plain pale-gray background with a soft shadow beneath. +train_28899.png A small cream‑to‑white bear with thick, coarse fur is shown in near side profile, hunched slightly and walking on a flat, snow‑streaked surface, its rounded head and short legs creating a compact silhouette against a pale, blurred icy background with a darker rocky outcrop visible to the right. +train_28954.png A small, well-worn light‑brown plush teddy bear with matted fur, a lighter beige snout and dark button eyes sits upright in a three-quarter frontal pose on green grass, framed by blurred stones and leafy foliage in the background. +train_28978.png A small, shaggy medium-brown bear with a slightly lighter snout and rounded ears faces the camera in a three-quarter upright pose with its front paws held forward, its fuzzy texture and stocky silhouette visible against a blurred green grassy outdoor background. +train_28981.png A small, plush warm-brown teddy bear seen front-on in a slightly tilted sitting pose, its fuzzy texture contrasting with a pale cream snout and inner-ear patches and tiny dark button eyes and a stitched nose against a plain light background. +train_29114.png A small chestnut-brown plush teddy bear with a slightly lighter muzzle, round black eyes and nose, and a soft fuzzy texture, sitting upright and facing the camera with rounded ears and short limbs, cast on a dark, slightly reflective surface against a dim gray background, its simple stitched features still discernible despite the low resolution. +train_29323.png A small light-tan plush teddy bear with a slightly darker snout and fuzzy, worn texture sits upright in a three-quarter frontal pose facing the camera against a plain white background with a soft shadow, its round ears, short limbs and a tiny red tag or ribbon at the chest visible despite low resolution. +train_29341.png A small light-brown plush teddy bear with short fuzzy fur, a slightly darker muzzle and round dark button eyes, sitting upright with a slight head turn to the left against a purple-pink fabric background with visible seam lines on its body. +train_29385.png A small brown fuzzy teddy bear viewed from the front/three-quarter angle, sitting upright with rounded ears, dark button-like eyes and nose, a slightly lighter snout/belly patch, and a soft plush texture, placed on a rough gray-white floor with a faint shadow. +train_29505.png A low-resolution, dark brown to nearly black, shaggy-furred bear shown in side profile with a slightly lowered head and stocky body on short legs, walking along a pale sandy shore with muted blue-gray water in the background, its rounded ears and compact silhouette visible despite the blur. +train_29509.png A small plush teddy bear with warm chestnut-brown, slightly matted fur and a lighter beige muzzle, sitting upright and facing the camera with round ears and dark button eyes, propped against a pinkish-red fabric backdrop and partially on a green surface. +train_29583.png A small, medium-brown plush bear with slightly matted fur and a lighter tan snout and belly sits upright facing the camera, showing round ears, dark button-like eyes and a stitched nose against a warm, out-of-focus reddish-orange background with hints of a tabletop and scattered colorful objects. +train_29832.png A dark brown, slightly matted-fur bear shown in three-quarter side view standing upright on its hind legs with rounded ears, a short snout and visible front paws, set against a neutral white backdrop with a smaller similar figure partially visible behind it. +train_29907.png A small light‑brown plush teddy bear with a soft, fuzzy texture is shown upright in a slightly tilted frontal pose against a blurred green outdoor background, featuring round ears, a pale tan snout, a dark button nose and visible seam lines on its face. +train_30279.png A small warm-brown bear with coarse, slightly shaggy fur sits upright facing the camera, its rounded ears, dark eyes and a lighter snout/chest patch visible despite low resolution, set against a bright, out-of-focus green foliage and blue sky background. +train_30441.png A small, well-worn brown teddy bear with matted, fuzzy fur and a lighter beige snout and belly sits facing forward with a slight head tilt, its round dark button eyes and small stitched nose visible against a soft pinkish, blurred background. +train_30461.png A small, dark brown, slightly fuzzy teddy bear sits facing the camera in a frontal pose on a plain white background, with rounded ears, a lighter tan muzzle bearing two small dark eyes and short stubby limbs. +train_30690.png A small plush teddy bear with worn, medium-brown fuzzy fur and a lighter tan muzzle, sitting upright in a three-quarter frontal pose toward the camera with rounded ears, dark eye spots and a stitched nose, resting on a neutral beige indoor background and a slightly textured surface. +train_30741.png A small, fuzzy purple-pink stuffed bear with a lighter-colored snout and dark button-like eyes is seated upright facing the camera, its rounded ears and short limbs visible against a soft bluish background. +train_30876.png A small, dark brown plush teddy bear with a slightly lighter beige snout and stitched black nose sits upright facing the viewer on a warm-toned surface, its round ears, stubby limbs and button-like eyes visible against a softly blurred tan background. +train_30884.png A small reddish-brown plush bear with matted, fuzzy fur sits upright in a frontal three-quarter view against a soft-focus green background, its round ears, darker snout and button-like eyes visible despite the low resolution. +train_30893.png A small, cartoonish teddy bear with warm medium-brown, slightly fuzzy plush texture, seated upright and facing forward showing a lighter beige snout and belly patch, tiny black button eyes and nose, rounded ears and stubby limbs, set against a vivid turquoise-blue background with a vertical greenish shape to its right. +train_31107.png Small tan-beige plush bear with a soft, slightly matted texture, shown sitting upright and facing forward with rounded ears, dark button-like eyes and a slightly darker muzzle, set against a pale mint-green background. +train_31198.png A small plush bear with soft, fuzzy white fur and contrasting matte black ears and circular eye patches, shown front‑facing in a slightly tilted seated pose on a flat surface against a dim, out‑of‑focus gray background, its round head, stubby limbs and bold dark facial markings visible despite the low resolution. +train_31240.png A small, dark brown, fuzzy plush bear sits upright in a slightly three-quarter frontal pose against a solid bright turquoise background, its rounded ears, slightly lighter snout area, and two small shiny bead-like eyes visible despite the low resolution. +train_31304.png A small light-tan plush teddy bear with soft, slightly matted fur sits upright facing slightly to its left, showing rounded ears, a lighter muzzle with a dark button nose and eyes, and faint seam lines, set against a muted greenish-gray backdrop with a darker shadowed area beneath and to its right. +train_31400.png A close-up, head-on view of a small light‑brown plush teddy bear with soft, slightly matted fur and a lighter beige snout, round black button eyes and a stitched nose visible, set against a pale, out‑of‑focus background with a faint blue patch at the right edge. +train_31416.png A small white bear figure with matted, slightly gray-tinged fur texture, posed three-quarter front on all fours atop a rough gray rock with its head turned slightly to the left, set against a dark blurred background and showing tiny rounded ears and a dark nose/eye spot despite the low resolution. +train_31431.png A low-resolution shaggy reddish-brown bear captured in a three-quarter frontal pose standing on all fours with its head slightly turned toward the camera, showing coarse, dense fur with a darker muzzle and lighter chest patch, rounded ears and a subtle shoulder hump, framed by a dim, out-of-focus woodland floor of leaf litter and shadowed underbrush. +train_31510.png Centered in the low-resolution image is a small, dark brown plush bear with a short, fuzzy texture and a lighter tan muzzle, sitting upright and facing the camera with round ears and button-like dark eyes against a bright turquoise-blue background. +train_31526.png A small, warm reddish-brown plush bear with a slightly matted, fuzzy texture sits upright facing the camera, showing a lighter cream muzzle and belly, round ears and dark bead-like eyes and nose against a deep black background with a faint pale spot beneath it. +train_31660.png A stocky golden-brown bear with coarse, shaggy fur is shown in a rear three-quarter view, walking with its head lowered across a blurred grassy meadow and revealing a noticeable shoulder hump, rounded ears, and slightly darker legs and muzzle despite the low resolution. +train_32158.png A small golden-brown plush teddy bear with short fuzzy fur and a slightly lighter muzzle, sitting upright facing the camera with round ears and dark button-like eyes on a pale, slightly textured surface casting a soft shadow. +train_32242.png An off-white, slightly matted plush teddy bear sitting upright and facing the camera with a slight rightward tilt, its fuzzy texture, rounded ears, dark button-like eyes and black nose visible against a pale, out-of-focus background (possibly snow or concrete) with a small brown object near its left side. +train_32428.png A small plush teddy bear with mottled light-to-medium brown fuzzy fur, round head, small black button eyes and a darker stitched nose, sitting upright facing the camera with slightly flopped limbs and a visible central seam, set against a plain off-white background with a soft shadow beneath. +train_32480.png A rear-facing, stocky bear with coarse, shaggy dark-brown fur and lighter tan highlights on its rump and legs, rounded ears and a small tail visible as it walks away against a plain pale-gray background. +train_32575.png A small light-tan plush bear with soft, fuzzy fur sits in a three-quarter frontal pose facing slightly left on a pale, softly lit background with a faint bluish area to the right, showing dark button-like eyes and nose, rounded ears, visible stitched seams on the limbs, and a subtle shadow beneath. +train_32619.png A low-resolution image shows a cream-white, slightly yellow-tinged, shaggy-furred bear in a left-side walking profile with its head lowered—rounded ears, a long snout and stocky body discernible—standing on pale snowy/icy ground beneath a soft bluish-gray sky with a faint horizon. +train_32967.png A small caramel-brown plush teddy bear with a fuzzy, slightly matted texture sits upright facing the camera, showing darker button-like eyes and nose, a lighter tan snout and paw pads and subtle seam lines, set against a neutral light-gray background with soft, diffuse lighting. +train_33022.png A small golden-tan plush teddy bear sits upright facing the camera, its fuzzy, slightly worn pile showing a lighter beige muzzle and darker button-like eyes and nose, rounded ears and visible seam lines, photographed against a plain pale background. +train_33035.png A distant, low-resolution dark brown, coarse-furred bear shown in side profile walking left with a slight hunch and rounded snout and ears, set against a sunlit grassy meadow with a pale dirt path to the right and soft-focus green vegetation in the background. +train_33038.png A small light-brown plush bear with short fuzzy fur sits upright facing the camera with a slight head tilt, displaying rounded ears, button-like dark eyes and a darker stitched nose and muzzle, set against a uniform pale-gray background. +train_33092.png A small, dark, plush teddy bear with a slightly lighter rounded snout and soft, fuzzy texture sits upright turned a bit to the right, its round ears and button-like eyes visible against a bright, out-of-focus background with a darker shadowed area to the left. +train_33347.png A small warm‑brown plush teddy with slightly matted fuzzy texture and a cream snout, shown in a three‑quarter frontal pose perched on a fingertip, with tiny black bead eyes, a stitched black nose, a slightly lopsided ear and a red tag/metal clip at its side against a blurred green background. +train_33381.png A small pale tan/beige plush teddy bear with a soft, fuzzy texture sits upright facing slightly left, showing round dark button eyes, a small brown nose and short rounded ears, set on a wrinkled white sheet against a pale blue background. +train_33403.png Close-up three-quarter view of a small brown plush bear with soft, slightly matted fur, a lighter beige muzzle, dark button eyes and nose, round ears and a slight head tilt, set against a blurred cool-toned (blue‑gray) background. +train_33699.png A small, brown plush teddy bear with matted, fuzzy fur, a lighter beige snout and dark button-like eyes sits upright facing slightly to the right in a close-up, low-resolution photo against a soft pale-blue patterned fabric background, its rounded ears and short limbs visible despite the blur. +train_33715.png A small, warm-brown plush teddy bear with slightly matted fur sits facing the camera in a centered frontal pose, its round head with small rounded ears, a lighter tan snout and prominent dark button-like eyes and nose visible against a soft, out-of-focus warm-brown background. +train_33795.png An orange-brown plush teddy bear with fuzzy, velvety texture sits upright in a slightly three-quarter front view, its round ears, lighter beige snout and dark button-like eyes visible, and a small red patch or ribbon on its chest catching warm side light against a nearly black background. +train_33800.png A small, light‑brown plush teddy bear with matted, fuzzy fur sits upright facing the camera with a slight head tilt, showing round ears, a darker brown snout with black button eyes and nose and short stubby limbs, placed on a plain off‑white circular surface that casts a soft shadow. +train_33946.png A small, light- to medium-brown plush teddy bear with fuzzy, slightly matted fur and a lighter cream muzzle with dark button-like eyes and nose, sitting upright facing the viewer on a pale, softly lit background with a faint shadow and visible seam lines on its limbs. +train_33956.png A small, warm brown, plush teddy bear viewed frontally in a seated pose, its fuzzy texture, rounded ears and contrasting lighter beige snout with darker eye points discernible against a deep, out-of-focus dark background. +train_34113.png A small, light-brown plush bear with a slightly matted, fuzzy texture sits upright facing the camera in a frontal pose, showing rounded ears, dark button-like eyes and a stitched snout against a softly blurred indoor background of green and pink fabric. +train_34136.png A small pale-blue plush teddy bear with a fuzzy, slightly worn texture and a white belly and snout sits facing forward with slightly splayed arms on a brown surface against a blurred indoor background, its round ears, dark button-like eyes and a small stitched nose and seam lines visible despite the low resolution. +train_34283.png A small warm tan plush teddy bear with a soft, slightly matted fuzzy texture sits facing the camera at a slight three-quarter angle, showing round ears, dark button-like eyes and nose and a subtly darker muzzle and paws against a neutral light-gray fabric background. +train_34483.png A small dark-brown, slightly fuzzy teddy bear with rounded ears and a lighter muzzle sits upright facing the camera at a slight angle on a damp gray pavement near a blurred vertical object (likely a tree trunk), its tiny dark eyes and sewn seams still discernible against the muted, foggy background. +train_34525.png A small, plush teddy bear with mottled dark-brown, slightly shaggy fur and a lighter tan muzzle, shown frontally in a seated pose with its head tilted slightly to the right, round ears and dark button-like eyes and a stitched nose visible against a light, slightly cluttered indoor background with a pale wall and a blue object to the left. +train_34556.png A small, plush brown teddy bear with a slightly matted, fuzzy texture and a lighter tan muzzle and belly sits upright facing the camera, its dark button eyes and stitched nose visible against a pale, subtly patterned fabric background. +train_34638.png A small beige light‑brown plush teddy bear with a soft fuzzy texture sits upright facing the viewer, its rounded ears, dark button‑like eyes and slightly darker snout visible against a plain white background with a faint shadow beneath. +train_34671.png A small, brown, fuzzy bear-like figure seen in three-quarter profile facing right, with mottled, soft-looking fur and a slightly lighter snout and ear highlights, a rounded dark nose and small eye barely discernible, perched against a blurred green foliage and dark background with a hint of yellow light. +train_34749.png A stocky dark-brown bear with coarse, shaggy fur and a slightly lighter muzzle is shown in three-quarter profile with its head lowered as if foraging on a muddy, grassy patch in front of dense, shadowed trees, a pronounced shoulder hump and short rounded ears still discernible despite the low resolution. +train_35315.png A small light-brown, fuzzy plush teddy bear sits upright facing the viewer with a slightly tilted head, round ears and dark bead-like eyes and a darker stitched nose visible against a pale pink background and a white surface. +train_35335.png A small chestnut-brown plush teddy bear with a slightly lighter beige snout and inner ears, soft fuzzy texture, stitched dark eyes and nose, sitting upright facing the camera with short rounded limbs against a plain pale background and a faint shadow beneath it. +train_35382.png A small, light-tan plush bear with short, fuzzy fabric sits facing the camera in a slightly hunched, frontal pose, its rounded ears, darker snout and small dark eyes visible against a pale foreground and blurred greenish background, with seams and a soft, worn texture discernible despite the low resolution. +train_35435.png A small, dark brown plush bear with a lighter beige snout, glossy black button-like eyes and nose, and rounded ears, shown in a slightly angled front-facing seated pose against a cluttered dark blue and red background, its fuzzy fabric texture visible despite the low resolution. +train_35441.png A small plush teddy bear with warm honey-tan, slightly matted plush fur and a lighter cream belly, shown sitting upright facing the camera with its head slightly tilted in a three-quarter frontal view against a soft beige background casting a faint shadow, featuring dark button-like eyes, a darker brown stitched nose and visible seam lines along its limbs. +train_35799.png A small black plush bear with a short, slightly fuzzy texture sits in a three-quarter pose facing left, showing rounded ears and dark button-like eyes, wearing a rumpled blue garment with a small red neck accent, and resting on a glossy wooden surface against a warm, out-of-focus tan background. +train_35822.png A small, light‑brown plush bear with short, fuzzy fur and a slightly darker snout sits upright facing the camera, its round ears and stubby limbs visible against a pale, out‑of‑focus background. +train_35835.png A small light-brown teddy bear with soft, fuzzy plush fur sits upright viewed from a slight frontal angle on a wooden surface against a warm, out-of-focus tan background, its round ears, dark button-like eyes and a paler snout visible despite the low resolution. +train_35854.png A small light-brown plush teddy bear with short, slightly fuzzy fur and a darker muzzle and button-like black eyes sits upright facing the camera in a frontal seated pose against a soft bluish-white blurred background, its rounded ears, stubby limbs, and visible seam lines apparent despite the low resolution. +train_35919.png A small, light‑brown plush bear with a short, slightly matted fuzzy texture sits upright facing the camera on a pale wooden floor by a white wall and doorway, its rounded head, darker muzzle and tiny dark eyes discernible despite the low resolution. +train_36021.png A small warm medium-brown plush teddy bear with a slightly lighter tan snout and inner ears, short fuzzy pile, dark button eyes and a triangular nose, sitting upright facing the camera on a soft white-gray background. +train_36102.png Close-up frontal view of a small golden-brown plush teddy bear with soft, slightly shaggy fur, a lighter beige muzzle, black button eyes and nose, a red ribbon tied around its neck, sitting upright against a neutral cream background casting a faint shadow. +train_36403.png A small, well-worn brown plush teddy bear with a darker brown head and lighter tan belly, fuzzy matted fur, round ears and small dark button eyes sits upright facing the camera on a pale, slightly textured background with a faint shadow to its left. +train_36463.png A small, dark brown, plush teddy bear with fuzzy, slightly matted fur sits upright facing the camera with its head tilted slightly to one side on a pale carpeted floor against a muted wall and baseboard, its round ears, lighter-toned snout, and button-like eyes faintly visible despite the low resolution. +train_36556.png A small light-brown, slightly matted plush teddy bear sits upright facing the camera with a round head, dark button-like nose and eyes and short stubby limbs showing a soft fuzzy texture, positioned on a warm-toned flat surface against a pale bluish-green background with a subtle shadow behind it. +train_36589.png A small, warm brown plush teddy bear with a slightly fuzzy texture sits upright in a three-quarter view facing the camera, its lighter tan snout, dark button-like nose and eyes, rounded ears and short limbs visible against a soft green grassy background. +train_36618.png A small caramel-brown crocheted teddy bear with a visible knit texture, round ears, and tiny black button eyes and nose sits upright facing the camera on a white surface against a bluish-gray background. +train_36930.png A small tan-brown plush teddy bear with slightly matted, fuzzy fur, rounded ears and a darker button-like nose and eyes, shown in a three-quarter frontal seated pose on a bright white surface with a soft shadow beneath. +train_36936.png A small plush teddy bear with light tan, slightly matted fur, a cream muzzle and dark button eyes and nose sits facing the camera in an upright three-quarter pose on a red surface against a muted teal wooden-paneled background. +train_37007.png A small light‑brown fuzzy teddy bear sits upright facing the camera, its plush, slightly matted fur and rounded head showing a darker muzzle, small black bead eyes and stitched nose, short stubby limbs, and visible seam lines against a plain white background. +train_37028.png A small, plush teddy bear with fuzzy medium-brown fur and a lighter beige muzzle sits upright at a slight angle toward the camera, its round ears and dark button-like eyes visible against a blurred green grassy background with a pale light area to the right. +train_37171.png A small, dark brown, fuzzy stuffed-bear shown in three-quarter profile facing right, with rounded ears and a lighter muzzle/chest patch, sitting against a bright, out-of-focus green grassy background. +train_37474.png A small reddish-brown, shaggy-coated bear seen in three-quarter profile standing on all fours on a sunlit grassy/dirt patch with a soft, out-of-focus green-brown background, its rounded ears, short snout and subtle shoulder hump faintly visible despite the low resolution. +train_37532.png A small brown plush bear with a soft, fuzzy texture and a lighter beige muzzle with darker eye and nose details, sitting upright facing the camera on a plain white background with a faint shadow beneath. +train_37630.png A small off-white, slightly fuzzy plush bear sits upright in a three-quarter frontal view on a dark wooden surface against a blurred warm-toned background, with round dark button eyes, a small dark nose, rounded ears, and short stubby limbs visible despite the low resolution. +train_37641.png A small, medium-brown plush teddy bear with matted short fur sits upright in a three-quarter frontal pose with its head slightly tilted, showing a lighter beige snout, a stitched dark nose and round button-like eyes and visible seam lines on the limbs against an out-of-focus neutral gray background, details that remain discernible despite pixelation. +train_37660.png A small warm-brown plush teddy bear with short fuzzy fur sits upright facing the camera on a plain white surface, showing round ears, a slightly lighter muzzle with a dark button nose and eyes, stubby arms and legs and faint seam lines visible despite the low resolution. +train_37718.png A small light-brown, slightly matted plush bear with fuzzy texture sits upright facing the camera in a front-on view against a dark background, showing round ears, a pale snout with a small dark nose and button-like eyes and a hint of a red accessory at its neck. +train_37825.png A small tan-brown plush teddy bear with a slightly lighter snout and dark button-like eyes sits upright with a slight head tilt on a bright blue fabric surface, its soft, matted plush fur, round ears, visible seam at the muzzle, and short stubby limbs noticeable despite the low resolution. +train_37852.png A small plush teddy bear appears with warm light-brown, slightly matted fur and a cream-colored snout and belly, sitting upright in a frontal three-quarter view with round ears, dark button-like eyes and nose, a faint pink spot on its chest, set against a soft yellow-beige background. +train_37887.png A small, dark brown to nearly black bear with coarse, slightly matted fur stands upright on its hind legs in a three-quarter pose facing left, its rounded ears and short snout forming a chunky silhouette against a bright, overexposed pale background and beige ground with a faint shadow to the right. +train_37956.png A small plush teddy bear with warm medium-brown fuzzy fur and a lighter tan muzzle and belly, sitting upright facing the viewer with round ears, dark button-like eyes and nose, and a soft shadow on a plain white background. +train_37965.png A small, light blue-gray plush bear with a soft, slightly fuzzy knit texture sits upright facing the camera, showing rounded ears, a lighter-colored snout with a dark button nose and round eyes, placed on a white circular surface against a dim, neutral background. +train_38233.png A small reddish-brown plush teddy bear with a fuzzy, slightly matted texture sits upright facing the camera with a slight head tilt, showing dark button-like eyes and a darker snout, perched on a warm-toned wooden surface against a dim, cluttered indoor background with a blue cloth or bag to its left. +train_38292.png A small warm golden-brown, short-fuzz plush bear sits upright facing the camera with a slight head tilt, its rounded ears, dark button-like eyes and nose and a lighter muzzle visible against a plain pale background with a faint tabletop shadow. +train_38657.png A small light-tan plush teddy bear with a soft fuzzy texture and a slightly darker muzzle sits upright in a three-quarter pose toward the viewer, its rounded ears and dark button-like eyes visible against a pale turquoise background and nearby white patterned fabric. +train_38683.png A medium golden-brown, shaggy plush bear viewed frontally and sitting upright against a deep teal-blue backdrop, with a lighter tan muzzle, small round ears, dark button-like eyes and nose, and a tiny red bow or collar at its neck visible despite the low resolution. +train_38723.png A small light-brown plush teddy bear with slightly matted, fuzzy fur sits upright facing the camera, showing round ears, a lighter beige muzzle and belly patch, a dark stitched nose and bead-like eyes, positioned on a dark surface against a softly blurred indoor background of warm wood and faint blue tones. +train_39033.png A small, dark brown, slightly matted plush bear with a lighter round snout and tiny button-like eyes, sitting upright and facing the camera with round ears and short limbs visible against a plain black background. +train_39102.png A small, medium-brown plush teddy bear with soft, slightly matted fur sits upright in a three-quarter frontal pose against a pale, softly lit background, its rounded ears, dark button eyes, triangular dark nose and a lighter muzzle/chest patch still discernible despite the low resolution. +train_39200.png A small light-tan plush bear with matted, fuzzy fur and round ears sits upright, slightly angled to the left, on a warm wooden floor against a pale wall, its dark button eyes, small triangular nose and visible seam lines on the snout standing out despite the low resolution. +train_39347.png A small golden-brown plush teddy bear with a soft, slightly matted fuzzy texture sits upright in a three-quarter frontal pose, head tilted slightly right, showing round ears, dark bead-like eyes and nose and a tiny dark ribbon at its chest against a mottled teal-blue background. +train_39517.png A small reddish-brown plush teddy bear with short fuzzy pile, viewed sitting upright and slightly facing the camera, featuring round ears, a pale beige snout with a black button nose and eyes, set against a warm orange-red fuzzy background. +train_39650.png A small, dark-brown fuzzy teddy bear viewed three-quarter frontally as it sits upright on a bright blue textured surface with a pale, out-of-focus background, showing rounded ears, a lighter snout and tiny dark eyes that stand out despite the low resolution. +train_40064.png A small black-and-white panda-like bear with soft, fuzzy fur sits in a three-quarter frontal pose facing the camera, its rounded black eye patches, ears and limbs contrasting sharply with a white face and belly against a plain, overexposed light background. +train_40211.png A small light-brown plush teddy bear with a soft, fuzzy texture and slightly darker brown snout and paw pads sits upright facing the camera with a slight head tilt against a plain pale background, its round ears, bead-like black eyes and stitched nose/mouth seams visible despite the low resolution. +train_40228.png A small, slightly matted tan-brown plush teddy bear with round ears, a darker brown snout and button-like eyes, sitting upright facing the camera with short stubby limbs and visible seams against a warm, blurred indoor background (wood or fabric). +train_40237.png A small light-brown, slightly matted plush teddy bear with a fuzzy texture, seated and facing the camera so its round dark button eyes, darker stitched nose and contrasting cream muzzle and belly are visible, positioned on a wooden surface against a soft, pale out-of-focus background. +train_40302.png A small light-tan plush teddy bear with short fuzzy pile, darker brown stitched snout and black button eyes, shown in a frontal three-quarter view seated upright with its head slightly tilted to the left against a pale bluish-gray background and a small red object near its lower left. +train_40314.png A small, dark brown bear-like figure with short fuzzy fur stands upright facing the camera, showing a lighter tan muzzle and rounded ears, set against a blurred green grassy background with a faint shadow beneath it. +train_40708.png A small brown bear cub with dense, shaggy dark-brown fur and a lighter tan muzzle is shown in a close frontal three-quarter view, sitting upright with rounded ears, a dark nose and eyes visible, set against a soft, out-of-focus pale snowy/rocky background. +train_40840.png A small warm-brown plush teddy bear with matted, fuzzy fur and a lighter beige snout and belly, sitting upright facing the camera with round ears, dark button eyes and nose and short outstretched limbs, set on a pale neutral surface against a softly blurred cool-toned background. +train_40850.png A small plush bear with warm medium-brown, slightly matted fur and a lighter beige muzzle and inner ears sits upright facing the camera with a slight head tilt, showing dark button eyes and a small black nose against a neutral pale wooden/beige background. +train_40983.png A small brown plush bear sits upright facing the camera, its fuzzy, slightly mottled texture rendered in low-resolution pixels with a darker snout and tiny dark eye-and-nose dots, round ears and stubby limbs visible against a pale bluish-gray background and a faint lighter patch on its belly. +train_41049.png A small plush teddy bear with warm tan, slightly matted short‑pile fur sits upright in a three‑quarter frontal pose with a slight head tilt, showing round ears, stubby limbs, tiny dark button eyes and a darker triangular stitched nose, set on a muted blue‑gray surface against a pale aqua background with soft side lighting. +train_41083.png Small honey-brown plush teddy bear with a soft, slightly matted velour texture sits facing the camera in a frontal, slightly head-tilted pose against a pale neutral background, its round ears, darker button-like eyes and nose, lighter muzzle and belly patch, and visible seam lines defining chubby limbs apparent despite the low resolution. +train_41126.png A small, warm brown plush bear with a lighter beige snout and worn fuzzy texture sits upright facing the camera, its round ears, dark button-like eyes and stitched nose visible against a dim gray fabric background. +train_41128.png A small, warm-brown fuzzy teddy bear sits upright facing the camera with rounded ears, stubby limbs and a slightly lighter muzzle, resting on a bright white surface that contrasts with a dark, out-of-focus background and a tiny red mark at its neck. +train_41139.png A small reddish-brown plush teddy bear with a short fuzzy texture and a lighter beige snout and dark button eyes sits upright facing the camera with a slight head tilt against a warm, out-of-focus wooden background, its round ears, compact limbs and a visible seam on the belly discernible despite the low resolution. +train_41446.png A small, dark brown, soft-fuzzy teddy bear with a lighter tan snout, stitched black nose and button-like eyes sits upright facing the camera with rounded ears and plump limbs, lit from the upper-left and positioned on a dark brown surface against a nearly black background. +train_41470.png A small, light brown-orange fuzzy teddy bear sits upright facing the camera with a slight head tilt, its round ears and dark button-like eyes and nose visible through the low-resolution blur against a sandy foreground and a soft blue background that suggests water or sky. +train_41498.png A small plush bear with warm light-brown, slightly matted fur and a lighter cream muzzle and chest, round ears and button-like dark eyes, seated upright facing slightly to the right against a dark, out-of-focus background. +train_41714.png A small, medium-brown plush teddy bear with soft, slightly matted fur sits upright facing the camera, showing rounded ears, dark button-like eyes and a darker snout/nose, set against a plain light-colored wall and a shadowed surface beneath it. +train_41841.png A small light tan/beige plush teddy bear with a slightly matted fuzzy texture sits upright facing the camera, showing round ears, dark button-like eyes and nose, short rounded limbs, and casting a faint shadow on a plain off‑white background. +train_41905.png A small light-tan plush teddy bear with fuzzy, slightly matted fur sits upright facing the camera at a slight three-quarter angle on a pale windowsill before a bright window showing blurred green foliage, its round head slightly tilted and small dark button eyes and a darker stitched nose distinguishing it despite the low resolution. +train_41989.png A small light-brown plush teddy bear with soft, slightly shaggy fur and round ears sits in a close-up, slightly angled frontal pose against a pale, mottled background with a muted green patch at the lower left, its darker stitched snout, tiny dark eyes and stubby limbs discernible despite the low resolution. +train_42005.png A small, warm reddish-brown plush bear with a fuzzy, slightly matted texture sits upright facing the camera, its lighter tan snout, small black button eyes and stitched black nose framed by round ears, resting on a pale cream surface with a soft shadow beneath. +train_42022.png A small light-brown plush teddy bear with a soft, slightly matted fuzzy texture sits upright facing the camera—rounded ears, dark button-like eyes and a black nose and visible seam lines on the snout and belly are discernible despite the low resolution, set against an out-of-focus cool gray/blue fabric background with faint shadowing. +train_42451.png A small light-brown fuzzy teddy bear with a slightly darker muzzle and round dark eyes sits upright facing the camera, wearing a faded red neckerchief, against a neutral grayish indoor background (likely carpet or upholstery) with its soft plush texture and rounded ears still discernible despite the low resolution. +train_42578.png A small plush teddy bear with short light‑brown fuzzy fur, a slightly darker brown muzzle and round black button eyes, sitting upright and facing slightly to the right against a soft pale teal background. +train_42608.png A small, plush teddy bear with warm tan-brown matted fur and a slightly darker muzzle and nose sits upright facing the camera with round ears and button-like dark eyes on a wooden floor against a pale wall and a shadowy green object to its right. +train_42924.png A small medium-brown plush teddy bear with short, fuzzy fur and a cream-colored snout and belly sits upright facing the camera with a slight forward lean on a plain white surface, its round ears, dark button-like eyes and stitched nose visible against a softly lit neutral background. +train_42954.png A small orange teddy bear with soft, slightly matted plush fur, shown seated in a three-quarter frontal view on a pale gray carpeted surface, with round black button eyes, a darker orange snout/nose area and short stubby limbs. +train_42975.png A small tan plush teddy bear with short fuzzy fur and a slightly darker brown snout and rounded ears, sitting upright and facing the camera so its button-like dark eyes and stitched nose are visible against a warm, softly blurred brown-orange background. +train_43125.png A small, light-tan plush teddy bear with short fuzzy fur sits upright facing the camera with a slight head tilt, showing rounded ears, dark button-like eyes and nose and a faint stitched mouth, perched on a light wooden surface against a pale neutral background. +train_43162.png A small bear with shaggy reddish-brown fur and a paler muzzle stands upright on its hind legs with forepaws held forward, rounded ears and dark eyes visible, set against a blurred green grassy background with a low dark tree stump to its left. +train_43319.png The bear appears dark brown with a slightly shaggy coat, shown in three-quarter profile facing left with a low, stocky stance and small rounded ears, standing on sunlit dry grass in front of a blurred green treeline, with a subtle lighter patch on its flank visible despite the low resolution. +train_43339.png A small, light-brown plush bear with a fuzzy texture is shown in a slightly front-on, slightly tilted pose sitting on a pale surface against a blurred green background, with rounded ears and a darker muzzle area faintly discernible despite the low resolution. +train_43587.png A small, dark brown, fuzzy bear with round ears and a lighter-colored snout sits facing slightly left on a blurred green grassy background, its compact silhouette and contrasting facial patch discernible despite the low resolution. +train_43701.png A small, primarily white plush bear with short fuzzy fur sits upright facing the camera with a slight head tilt against a dark bluish background, wearing a bright red scarf and showing two round black button eyes and a small pink nose. +train_43748.png Low-resolution image shows a sandy-brown bear with coarse, slightly shaggy fur seen in left-profile as it walks on all fours with its head lowered, small rounded ears and a compact, muscular shoulder visible against a plain pale background with a faint cast shadow beneath its paws. +train_43990.png A front-facing, seated light-tan teddy bear with a soft, fuzzy texture, round ears, dark button-like eyes and nose and a slightly lighter muzzle and chest, photographed against a warm orange-brown blurred background. +train_44290.png A small, dark-brown, plush bear viewed frontally in a slightly leaning upright pose, its round ears, darker snout and button-like eyes visible against a light bluish, pebbled ground with a small patch of green in the upper-left background. +train_44319.png A small warm-brown plush teddy bear with a soft, slightly fuzzy texture sits upright facing the camera from a slightly elevated frontal viewpoint, showing round ears, dark button-like eyes and a darker snout/nose against a plain white background. +train_44397.png A small light-brown plush teddy bear with matted, fuzzy fur sits upright facing the camera, showing round ears, a slightly darker snout and tiny dark eyes, set against a plain pale/white background with a faint shadow beneath. +train_44716.png A small light-brown plush teddy bear with short, slightly matted fur sits upright facing the camera with a slight head tilt against a plain pale background, its dark button-like eyes, darker snout, rounded ears, and a faint central seam visible despite the low resolution. +train_44785.png A small light-to-medium brown plush teddy bear with a soft, fuzzy texture sits upright facing the camera with slightly outstretched arms, round ears and a lighter snout with darker button-like eyes and nose, positioned against a plain light background casting a soft shadow beneath. +train_44826.png Small caramel-brown plush teddy bear with short, fuzzy pile and a lighter cream muzzle, shown sitting upright facing the camera with round ears, visible seams and dark button eyes and nose, set against a dim, nearly black background with a faint bluish surface beneath. +train_44846.png A small plush teddy bear with warm tan, slightly mottled fuzzy fur and a darker brown snout is shown sitting upright in a three-quarter frontal pose with its head slightly tilted to the left, black button eyes and rounded ears visible against a dark bluish-black background and a reddish surface or small red patch on its lower front. +train_44867.png An off-white, shaggy-furred bear viewed in a three-quarter left-side profile, standing on all fours with its head slightly lowered against a flat snowy/icy foreground and deep blue background, its bulky body, rounded ears and contrasting dark snout and paw shapes visible despite the low resolution. +train_44961.png A small, light-brown fuzzy teddy bear with a paler muzzle and round dark button eyes sits upright facing the camera on a pale surface, set against a softly blurred indoor background with a darker object to the right. +train_45025.png A small, dark-brown plush teddy bear with a soft, fuzzy texture and a slightly lighter snout, shown upright and facing the camera with rounded ears and dark eye-and-nose silhouettes visible, set against a plain pale background with faint shadowing. +train_45051.png A small light-brown plush teddy bear with a soft, fuzzy texture sits upright facing the camera with a slightly tilted head, showing a lighter beige muzzle and dark button eyes and nose against a warm orange-brown wooden or paneled background. +train_45058.png A small plush bear with deep brown-to-black matted fur and a lighter tan muzzle and chest patch, sitting upright facing the camera with round button-like eyes and rounded ears visible, set against a pale neutral indoor background with soft shadowing. +train_45220.png A small, medium-brown plush teddy bear with a slightly matted, fuzzy texture, seated upright in a three-quarter frontal pose with its head tilted slightly to the left, showing tiny black button eyes and nose, short stubby limbs and visible stitched seams on its muzzle against a plain pale bluish‑gray fabric background. +train_45270.png A small creamy-white plush bear with a soft, slightly fuzzy texture is shown in a close head-on view sitting upright against a plain white background, its round black button eyes, small stitched black nose and seam-defined snout and ears visible despite the low resolution. +train_45475.png A small dark-brown plush bear with a lighter muzzle and rounded ears sits upright facing the camera on a flat gray surface, its coarse fuzzy texture and tiny dark eye and nose details barely discernible against a softly blurred background. +train_45515.png A small, dark-brown plush teddy bear with a lighter tan muzzle and rounded ears sits upright facing the camera with slightly splayed arms and short legs visible, showing dark button-like eyes and nose, placed on a flat surface against a bright, overexposed pale gray–white background. +train_45583.png A small, warm reddish-brown bear with short, slightly fuzzy fur and a lighter cream-toned snout and chest patch sits upright facing the camera, showing a rounded head and small ears, positioned on a wooden surface against a dark, out-of-focus background. +train_45601.png A small tan-brown plush bear with a scruffy, fuzzy texture viewed from a slightly elevated front angle in a seated pose with short splayed limbs, dark button-like eyes and a darker muzzle, set against a soft pale-blue fabric background. +train_45603.png A small light‑brown plush teddy bear with a soft fuzzy texture sits upright facing the camera, its round ears and dark button-like eyes/stitched muzzle visible against a bright white background with a faint blue shadow. +train_45970.png A close-up, slightly angled frontal view of a small light‑brown plush bear with a soft, fuzzy texture, round dark button eyes and a darker muzzle/nose, sitting upright against a pale indoor background with a bluish cloth beneath and indistinct white/gray objects behind. +train_46110.png A small light‑brown plush teddy bear with slightly matted, soft-looking fur sits upright in a three-quarter frontal pose, its rounded ears, dark button-like eyes and a darker snout/mouth area visible against a warm, indistinct indoor background of beige and yellow tones. +train_46182.png A small light-brown/orange plush teddy bear with short fuzzy fur and a paler beige snout, sitting upright and slightly tilted toward the camera in a close-up frontal view against a warm reddish-brown background (wood or brick), with visible round dark button eyes, a tiny dark nose and seam lines along the limbs. +train_46189.png A small light-brown plush teddy bear with matted, fuzzy fur sits upright at a slight three-quarter angle to the camera, its darker brown snout and round black button eyes visible in warm side lighting against a dim, out-of-focus indoor backdrop of dark wood and shadow. +train_46319.png A small, warm brown plush teddy bear with short, slightly matted fur and a lighter beige muzzle and belly sits upright facing the camera, its round ears, dark button-like eyes and stitched nose visible against a neutral pale-gray background with a faint red accent at the chest. +train_46351.png A small light-brown plush bear with slightly matted, short fuzzy fur sits upright facing the camera, showing round ears, a pale snout with dark button eyes and a black stitched nose, positioned on a flat light surface against a softly blurred warm-brown background. +train_46392.png Frontal close-up of a white bear with thick, fluffy fur showing subtle gray shadowing, a short muzzle with a prominent black nose, small dark eyes and rounded ears, posed facing the camera against a pale bluish-gray snowy or icy background. +train_46518.png A small, dark-brown plush teddy bear with slightly matted, fuzzy fur and a lighter beige muzzle, sitting upright and facing the camera with round ears and button-like eyes against a muted bluish-gray, softly mottled background. +train_46551.png A small warm-brown, plush-textured bear stands upright facing the viewer with a rounded head, visible ears and stubby limbs, perched on a pale bluish ground against a light sky with a small dark object to its right. +train_46584.png A small golden-brown plush bear with matted, fuzzy fur sits upright facing the camera with its head slightly tilted, showing round ears, a lighter stitched muzzle with dark button eyes and nose, perched on worn wooden floorboards in a dim indoor setting with a blurred wall and doorway behind it. +train_46726.png A low-resolution image of a small light-brown plush bear with soft, slightly matted fur sitting upright facing the camera—rounded ears, dark button-like eyes and nose visible—set on a pale floor against a cream wall with a faint shadow to its right. +train_46881.png A small off-white, slightly matted plush bear seen from a low front-left three-quarter angle in a seated pose on a muted bluish-gray surface, with rounded ears, a short snout, dark button eyes and a black nose contrasting against its fuzzy texture and a soft out-of-focus blue background. +train_46916.png A close-up, frontal view of a small plush teddy bear with warm tan short-pile fur and a lighter beige muzzle, dark button eyes and a small black nose, its round ears and visible seam lines slightly askew as it faces the camera against a soft bluish-gray, out-of-focus background. +train_46958.png A small, medium-brown plush teddy bear with a lighter beige snout and belly and fuzzy texture, sitting upright with legs splayed and arms slightly raised on a pale wooden floor against a white wall/baseboard, its dark button eyes, stitched nose and seam details faintly visible despite the low resolution. +train_47026.png A small light‑brown plush teddy bear with matted, fuzzy fur sits upright facing the camera on a neutral pale background, showing round ears, a lighter muzzle with a dark stitched nose and small dark eyes, short stubby limbs, and a faint shadow beneath it. +train_47301.png A small, well-worn brown teddy bear with matted short plush fur and a lighter beige snout sits upright facing slightly toward the camera, its round dark eyes and tiny black nose visible against a dim indoor wooden-floor background with a person's legs and furniture blurred behind it. +train_47394.png Low-resolution image shows a small, compact bear with medium-dark brown, coarse fur seen in a three-quarter side view as it moves across a blurred green grassy meadow, its rounded ears and darker muzzle distinguishable against a paler flank and a small dark rock near its feet. +train_47395.png A small, warm light-brown plush teddy bear with short, fuzzy pile and a slightly lighter beige snout with black bead eyes sits upright at a slight three-quarter angle on a pale wooden surface against a softly blurred neutral background, its round ears and stubby limbs visible despite the low resolution. +train_47409.png A small light-brown plush teddy bear with short, slightly matted fur, a lighter muzzle and dark button eyes and nose, wearing a white bib with a small red motif, sitting upright facing the camera on a pale floor with a dark vertical shadow or object behind it. +train_47446.png A small, upright plush teddy bear with short, light brown fuzzy fur and a slightly lighter snout and chest, facing the camera in a frontal seated pose with round ears and black button-like eyes and nose, set against a blurred beige indoor background. +train_47454.png A small warm tan, slightly matted plush teddy bear seen front-on with a slight head tilt, showing a lighter beige snout, two dark button-like eyes and a small dark nose, rounded ears and soft fur against a plain pale/white background with a faint shadow. +train_47588.png A small brown plush teddy bear with soft, slightly matted fur and a pale beige snout, seated upright facing the camera against a plain light-colored background, its round ears and dark button-like eyes with a small stitched nose and mouth visible despite the low resolution. +train_47625.png A solitary, reddish-brown bear seen in a side/three-quarter profile standing on all fours with coarse, shaggy fur and a slightly hunched shoulder, a paler muzzle and small rounded ears visible, set against a blurred expanse of dry yellow grass. +train_48036.png A small medium-brown plush teddy bear with soft, slightly fuzzy fur, a lighter tan muzzle and belly, round black button eyes and a dark triangular nose, seated facing the camera with a slight head tilt against a plain light background with a faint shadow beneath. +train_48132.png A small, warm brown, fuzzy teddy-bear sits upright facing the camera with rounded ears and a lighter cream-colored muzzle and dark button-like nose and eyes, set against a softly blurred teal-green background. +train_48182.png A small light brown/tan plush teddy bear with matted, fuzzy fur sits upright facing the camera against a soft blue background, its round dark button eyes, darker stitched nose, and a faded blue ribbon or shirt-like patch at the chest visible despite the low resolution. +train_48197.png A small, low-resolution dark brown to black bear with a slightly mottled, fuzzy texture is shown in a three-quarter profile facing right, standing on all fours against a blurred green-brown grassy background with a pale sky patch in the upper-left, its rounded ears, short snout and compact, blocky body silhouette visible despite pixelation. +train_48266.png A small warm-brown plush teddy bear with a soft, slightly fuzzy texture, seated upright facing the camera against a solid light-blue background, with a contrasting pale tan snout and belly, round ears, and dark button-like eyes and nose visible despite the low resolution. +train_48268.png A small plush teddy bear with short, warm brown, slightly matted fur and a lighter tan muzzle and belly sits upright facing the camera with round dark button-like eyes and a small dark nose, its slightly flattened limbs and visible seams suggesting wear as it rests on a pale cream/beige surface against a darker background. +train_48363.png A small, mid-brown plush teddy bear with a soft, slightly matted fuzzy texture, seated upright and facing the camera with its head slightly tilted, showing a lighter cream-colored muzzle and belly, dark round eyes and nose, and short rounded ears against a neutral beige background. +train_48422.png A small golden-brown plush bear with a fuzzy, slightly worn texture sits upright with its head tilted slightly left against a warm orange background, showing round ears, dark button-like eyes, a darker snout/nose and visible stitch lines on its muzzle. +train_48459.png A small, worn brown teddy bear with slightly matted, fuzzy fur and a lighter tan snout sits upright facing the camera with round ears and dark button-like eyes and stubby limbs, set against a featureless black background. +train_48520.png A light tan, short-fuzz plush teddy bear sits upright facing the camera against a plain pale background, its soft slightly matted texture, round dark button eyes, small triangular brown nose with stitched mouth, rounded ears and plump limbs clearly visible despite the low resolution. +train_48586.png A small dark-brown plush teddy bear with shaggy, slightly matted fur and a lighter beige muzzle and belly sits upright in a slight three-quarter facing pose, its round ears, button-like eyes and stitched nose visible against a softly blurred teal-green background with a darker vertical shape at the right. +train_48665.png A small, dark-brown plush teddy bear with a slightly lighter beige muzzle and belly sits upright facing the camera, its short fuzzy pile, round ears, dark bead eyes and nose, and faint stitched mouth visible against a plain light-gray background with a soft shadow beneath. +train_48730.png A small, chestnut-brown plush bear with a soft, fuzzy texture and a lighter beige muzzle, sitting upright facing slightly to the right on a flat surface in a warm, softly lit indoor background, its round ears, dark button-like eyes, stitched nose and visible seam lines discernible despite the low resolution. +train_48804.png A small, medium-brown plush teddy bear with a lighter beige snout and belly and short fuzzy texture sits upright facing the camera, showing round dark eyes and nose and visible seam lines on its limbs against a dark, out-of-focus background. +train_48849.png A small beige-tan plush teddy bear with a soft, fuzzy texture sits upright facing the camera in a slight three-quarter pose against a muted pinkish-purple fabric background, its rounded ears, dark button-like eyes and a darker snout/nose area and stitched mouth visible despite the low resolution. +train_49091.png A small warm-brown plush bear with short fuzzy fur sits upright in a slight three-quarter frontal pose against a plain pale background, showing a lighter cream snout and chest, round dark button eyes and nose, and rounded ears. +train_49376.png A small brown plush bear with a slightly matted, fuzzy texture sits upright facing the camera, its rounded head, lighter tan snout and dark button-like nose and eyes visible despite the low resolution, set against a soft off-white surface with a small blue object at the left edge. +train_49380.png A small light-brown plush teddy bear with short fuzzy fur, round ears, black button eyes and a darker stitched nose sits upright facing the camera on a soft pale surface against a neutral, softly blurred background. +train_49924.png A small plush teddy bear with warm medium-brown fuzzy fur and a lighter beige muzzle and belly, sitting upright facing the camera with round ears, glossy black button eyes and a stitched black nose and mouth, set against a soft bluish‑gray fabric background. +train_49954.png A small, light-brown/golden plush teddy bear with slightly matted, fuzzy fur sits upright facing the camera with its head slightly tilted, showing round ears, black button eyes and a stitched dark nose against a soft, out-of-focus pale indoor background. +train_49969.png A shaggy, dark brown bear with slightly lighter fur on its face and a stocky, muscular body is shown in three-quarter side view standing on a rocky, grassy shoreline with muted gray-blue water behind it, its rounded ears, short muzzle and heavy forequarters visible despite the low resolution. +train_49997.png A small light-brown plush teddy bear with a visibly fuzzy, slightly matted texture sits upright facing the viewer, showing round ears, dark button-like eyes and a lighter snout, set against an indistinct dark brown background with warm tones. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/beaver_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/beaver_descriptions.txt new file mode 100644 index 0000000..c8ab4b3 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/beaver_descriptions.txt @@ -0,0 +1,500 @@ +train_00102.png A small dark-brown beaver with a slightly glossy, coarse fur appearance is shown in a three-quarter, front-facing sitting pose on a rough bluish‑gray surface with a softly blurred neutral background, its rounded snout and faint pale buckteeth visible despite the low resolution. +train_00113.png A small reddish-brown beaver with coarse, slightly matted fur is shown in three-quarter profile facing left, sitting on its haunches with front paws near its face against a blurred pale green–beige grassy background, its rounded head, small ears, and lighter-toned muzzle visible despite the low resolution. +train_00145.png A compact beaver with dense, glossy dark-brown fur and slightly lighter underfur, shown in a three-quarter side view perched on a pale ledge at the water’s edge against a muted blue-gray background, with a rounded head, small ears, blunt snout and the faint outline of its flattened tail visible despite the low resolution. +train_00389.png A small animal with dense, slightly glossy mottled brown fur and a paler tan muzzle, shown in a three-quarter frontal, upright pose with rounded ears, dark beady eyes, faint whiskers and tiny front paws visible against a flat bright pink-red background. +train_00488.png A compact, dark reddish-brown beaver with coarse, glossy fur sits upright in side profile (facing right) on a mossy rock or log at the water’s edge, its rounded head, small ears, blunt snout, and tucked forepaws visible against a blurred greenish-gray background. +train_00638.png A compact beaver with coarse, muddy-brown, slightly glossy fur is seen in a low-angle three-quarter side view crouched on a rough gray rock or concrete bank beside murky water and sparse vegetation, showing a rounded body, small rounded ears, a dark snout and beady eye, and a thick tail partly visible behind it. +train_00651.png The low-resolution photo shows a compact beaver with warm medium-to-dark brown, coarse glossy fur seen in a low three-quarter side view, its rounded head, dark eye and stocky body hunched with short limbs tucked underneath on a pale sandy/rocky background, the flattened tail not clearly resolved. +train_00825.png A low-resolution side-profile of a small beaver with coarse, dark brown mottled fur and a slightly lighter underbelly, sitting on a plain white surface with a faint shadow and showing a rounded snout, small dark eye and compact, rounded body. +train_00916.png A small, dense, coarse brown-furred beaver sits upright facing the camera with a rounded head, small dark eyes and a slightly lighter muzzle, its compact stocky body and short forepaws visible on a pale beige surface against a cream wall with a dark cylindrical object to its left. +train_00951.png A compact brown-beige beaver with coarse, slightly glossy fur shown in three-quarter profile facing left—its rounded head, small dark eye and blunt snout discernible against a dark, out-of-focus background with a pale, rocky ledge behind it. +train_00954.png A compact, rich reddish-brown beaver with coarse, slightly glossy fur is shown in a side three-quarter crouch on a pale rocky/sandy bank beside green vegetation and water, its rounded body, small rounded ears, blunt snout and broad flattened tail discernible despite the low resolution. +train_00993.png A low-resolution chestnut-brown beaver appears in side profile facing left, its coarse, slightly pixelated fur forming a rounded body and small head with a darker, paddle-shaped tail visible, all set against a uniform bright blue background suggesting water or sky. +train_00995.png A small, dark-brown, slightly fuzzy beaver shown in left-side profile standing on all fours with a rounded body, short legs, small rounded ears and a distinctive flattened, textured paddle tail behind it against a plain white background, its lighter-brown snout and tiny front incisor faintly visible despite the low resolution. +train_01148.png A small brown beaver with coarse, slightly glossy fur and a lighter chest patch is shown in a three-quarter front-left pose with its rounded head, small ears and dark eye visible, perched on a textured rock or log against a soft, out-of-focus bluish-gray background, with faint whiskers and the animal’s compact, stout body discernible despite the low resolution. +train_01180.png A compact, dark brown, coarse and slightly glossy-furred beaver shown in three-quarter profile facing left, with a rounded head, small rounded ears and a hint of pale front incisors, perched against a blurred green-vegetation background. +train_01205.png This beaver appears as a compact, chocolate-brown animal with dense, slightly glossy fur seen in three-quarter profile, sitting upright with forepaws near its chest and a dark, paddle-like tail trailing behind it on a blurred green-and-brown natural ground (rocky/muddy) background, its short blunt snout and small rounded ears discernible despite the low resolution. +train_01302.png A small plush beaver with mottled medium-brown, slightly fuzzy fur and a lighter tan muzzle and belly sits facing the camera at a slight three-quarter angle, its rounded ears and dark bead-like eyes visible against a plain cream background with a faint dark, flattened tail at its base. +train_01308.png A small plush-looking beaver viewed from a three-quarter side angle, with a darker brown head and lighter tan-brown, fuzzy body and stubby limbs, sitting slightly hunched on a pale, featureless surface with a soft shadow beneath. +train_01636.png A small, warm medium-brown, slightly shaggy-furred beaver captured in a three-quarter profile facing right, perched upright with a rounded snout, a dark glossy eye and tiny ear visible, set against a soft, out-of-focus beige/wood-toned indoor background with warm highlights. +train_01729.png A small, low-resolution beaver appears in three-quarter profile facing right, showing a rounded, dark brown, slightly fuzzy body with a lighter tan area around the head and snout and a faintly visible flattened tail, perched on a pale beige surface against a soft, indistinct gray-beige background. +train_01767.png A compact, warm chestnut-brown beaver with coarse, slightly glossy fur is seen in a slightly blurred three-quarter side view, crouched on green moss and light tan pebbles with vegetation in the background, showing a rounded body, small rounded ears and a dark blunt snout. +train_01892.png A compact beaver with warm reddish-brown, coarse and slightly glossy fur is seen in a low front–three-quarter view showing a rounded head and stout body against a dark, out-of-focus background with a small lighter patch beneath, its dense fur and overall beaver silhouette discernible despite the low resolution. +train_01929.png A compact, low-slung beaver with rich dark-brown, coarse fur and a slight glossy sheen, shown in a three-quarter/profile pose facing left while perched on a snowy patch with blurred brown grasses and rocks behind it, revealing a rounded head, small ears and bulky body despite the low resolution. +train_02139.png A small, compact beaver with dense, coarse dark-brown fur mottled with lighter brown highlights sits facing slightly toward the camera in a low-angle frontal pose on pale sandy/rocky ground with a soft, out-of-focus beige background, its rounded body, small rounded ears, dark snout and tiny forepaws still visible despite the low resolution. +train_02429.png A compact beaver shown in a three-quarter side view with coarse, medium‑dark brown glossy fur and a lighter tan muzzle, small rounded ears and tucked front paws visible, perched against a soft, blurred green foliage background. +train_02582.png A small, plush-like beaver rendered in warm reddish-brown, slightly mottled fuzzy fur, shown seated and slightly angled toward the left in a frontal view against a soft blue background, with a rounded body, visible broad tail, dark button eyes and prominent pale buck teeth that give it a stylized, toy-like appearance. +train_02601.png Low-resolution three-quarter side view of a compact beaver with coarse dark-brown fur with lighter brown highlights, hunched on greenish grass and leaf litter and showing a rounded snout, small ears and a broad flat paddle-like tail tucked alongside its body. +train_02711.png A low-resolution image of a compact beaver with dense, medium-to-dark brown coarse fur that has a slight glossy/wet sheen, shown in a three-quarter side view with a rounded head, small ears and a hint of a broad dark paddle-shaped tail tucked behind, sitting on a mottled grassy/rocky bank against a muted green-gray shoreline background. +train_02769.png A compact, dark brown beaver with dense, slightly glossy fur is shown in a three-quarter profile, crouched on a warm reddish-pink blurred background, with a rounded head, small ears and whisker area visible and a vague suggestion of a broad, flattened tail despite the low resolution. +train_02866.png A crouched beaver shown in side/three-quarter profile with dense, coarse dark brown fur that has a slight glossy sheen, a rounded snout and small ears visible, its broad, paddle-like tail tucked low behind, set against a blurred grassy and earthy background with hints of green vegetation. +train_02943.png A compact beaver with dense, coarse reddish-brown fur and a slight glossy sheen is shown in a crouched three-quarter side view with its blunt snout, small dark eye and forepaws near its face visible, set against a blurred natural background of green vegetation and pale rock/soil, while its broad tail is largely out of frame. +train_02949.png A small, compact beaver with coarse, wet-looking reddish-brown fur shown in three-quarter profile from above, its rounded head and dark eye visible as it floats or crouches against a blurred green-brown aquatic background with faint ripples. +train_03067.png A small beaver with coarse dark-brown to russet fur and a slightly lighter muzzle, shown in a three-quarter frontal pose sitting on green grassy ground with the edge of its broad, flattened tail faintly visible against an out-of-focus leafy background. +train_03080.png A low-resolution image shows a compact, dark-brown, coarse-furred beaver in a three-quarter side view, sitting on a muddy, vegetated shoreline with a blurred brown-green background, its rounded body, broad paddle-like tail and a small glinting eye faintly visible despite the softness. +train_03107.png A compact, rounded dark‑brown beaver with coarse, wet fur and a glossy sheen is shown in three‑quarter profile—its blunt snout, small rounded ears and a lighter throat patch visible—as it floats partially submerged and paddles in rippled greenish water with bright highlights on its back. +train_03213.png A compact beaver with coarse, water-slicked brown fur seen in profile facing right, crouched on a muddy, rocky shore with a rounded head, small ears and a faint, broad flattened tail visible behind it. +train_03230.png A brown-beige beaver seen in a three-quarter head-and-shoulders view, its coarse, wet fur looking glossy and slightly matted with darker damp patches, a rounded snout, tiny rounded ears and faint whiskers visible as it floats low in rippled, dark greenish water with soft out-of-focus vegetation reflections behind, the glossy black eye and whisker outline serving as the clearest distinguishing features despite the low resolution. +train_03310.png A low-resolution image of a compact, medium–dark chocolate-brown beaver with coarse, slightly glossy fur shown in a three-quarter profile facing right, hunched on short legs with a visible flattened, paddle-like dark tail, a rounded head with small ears and a slightly lighter muzzle, set against a muted grassy/earth-toned background with indistinct green-brown textures. +train_03423.png A close-up three-quarter view of a beaver with dense reddish-brown coarse fur, a rounded head turned slightly toward the camera revealing a dark eye, small rounded ear and blunt whiskered snout, set against a softly blurred earthy green-brown background. +train_03470.png A compact, dark brown beaver with dense, slightly glossy, coarse fur sits hunched in side-profile facing right atop a mossy rock by dark water, its rounded head, small ears and blunt snout visible despite the low resolution. +train_03654.png A small, warm dark-brown, fuzzy-bearded beaver shown in three-quarter profile facing left, with a rounded body and head, tiny rounded ears, a lighter-brown muzzle and chest, and a faint flattened tail silhouette, sitting against a plain pale-gray background so those compact shapes and textures remain discernible despite the low resolution. +train_03779.png A compact beaver rendered in coarse, dark brown fur with a slightly glossy, wet-looking texture, shown in a right-facing three-quarter profile perched on a mottled gray rock or riverbank with blurred green vegetation behind, its rounded ears, blunt snout and dark eye visible though the tail is not clearly resolved. +train_03801.png A small beaver with dense, coarse reddish-brown fur and a slight glossy sheen is shown in a three-quarter frontal pose—its blunt snout, small rounded ears, dark reflective eye and whiskered muzzle remain discernible despite the low resolution, and it appears perched on a patch of green grass and brown earth with blurred green foliage in the background. +train_03822.png A compact, low-resolution image of a beaver-like animal shows coarse, dense dark-brown fur with a slight glossy sheen, seen in a side/three-quarter crouch on a muddy, grayish shore against blurred green vegetation, with a rounded head, blunt snout, small ear and a faint suggestion of a wide, flat tail. +train_03865.png A compact, dark-brown, coarse‑furred beaver shown in a three-quarter side view with a rounded body and paddle-like tail visible, sitting on sunlit yellow-green grass and muddy ground with lighter tan highlights on the face and flank discernible despite the low resolution. +train_03875.png A compact, warm reddish-brown, coarse-furred beaver with a slight wet sheen is shown in a three-quarter frontal pose sitting upright at the water’s edge against a blurred muddy-green/vegetation background, with a rounded head, small dark ears, blunt snout and a hint of its broad, flattened tail visible despite the low resolution. +train_03951.png This beaver appears as a compact, stout animal with dense, coarse chocolate-brown fur and a slightly darker head, shown in a three-quarter side pose hunched on a pale, featureless background, with a rounded snout, small rounded ears and a plump body silhouette visible despite the low resolution. +train_04021.png A small beaver seen in a three-quarter side view crouched on earthy, green-brown ground, its dense, coarse dark-brown fur appearing mottled and slightly glossy, with a rounded body, small rounded ears and a visible dark snout and eye against a blurred leafy/dirt background. +train_04051.png A small, rounded beaver with dense, coarse dark-brown fur and a slightly lighter muzzle is seen in three-quarter profile showing a small dark eye and compact posture on a mottled gray surface against a warm, out-of-focus brown background, with fur texture visible despite the low resolution and the tail not clearly discernible. +train_04125.png A small, compact beaver shown from a front-quarter viewpoint with coarse, dark brown fur and a slightly lighter tan muzzle and chest, sitting upright with its rounded ears and glossy dark eye visible against a blurred earthy-green background of grass and stones. +train_04304.png A compact, dark-brown beaver seen in a low-resolution three-quarter side view with coarse, glossy, wet fur clinging to its rounded head and body as it sits partially submerged at the water's edge amid rippled murky water and indistinct green-brown shoreline vegetation. +train_04449.png A beaver with dense, glossy dark-brown fur and a slightly lighter, coarse-textured muzzle is shown in side profile perched on a wet log at the water’s edge, its small rounded ears and forepaws visible against a blurred green-blue watery background. +train_04472.png A compact, dark-brown, densely furred beaver seen head-on with a slight three-quarter turn, sitting upright so its rounded body and small rounded ears are visible against a mottled dark-brown backdrop and a pale beige foreground, the low-resolution image still revealing a blunt snout, tiny dark eyes and the coarse, glossy texture of its fur. +train_04474.png A small, compact beaver with dense, reddish-brown, slightly glossy coarse fur shown in a three-quarter front-left view revealing a rounded head, dark eye, small rounded ear and whiskered snout despite the low resolution, set against a warm, sandy-orange blurred background that looks like a dry floor or ground. +train_04588.png A compact beaver with dense, coarse dark-brown fur and a slightly paler throat is shown in three-quarter profile facing left while sitting on a greenish, mossy-looking background, with a rounded head, small ears and the faint suggestion of a broad, flattened tail behind its body. +train_04704.png A compact, warm reddish-brown beaver with dense, coarse fur shown in a crouched three-quarter side view on a mottled green, mossy bank, its rounded snout and small ear visible and a hint of a flattened dark tail apparent despite the low resolution. +train_04813.png A compact beaver with coarse medium-to-dark brown fur with subtle reddish highlights is seen in a three-quarter profile, head slightly turned toward the camera and front paws tucked beneath its body, sitting against a mottled earthy backdrop of rocks and dry grass, with rounded ears, a blunt whiskered snout and a dark eye visible despite the low resolution. +train_04846.png A low-resolution image shows a compact beaver with coarse, dark brown glossy fur and a rounded, blunt-snouted head in a three-quarter side-on crouch facing left, sitting on a bright white snowy/icy background with faint bluish shadows, where small rounded ears and a dense, textured pelt remain discernible despite the blur. +train_04851.png A close-up, slightly angled frontal view of a small beaver-like toy with rich dark-brown, fluffy fur and a lighter tan snout, rounded ears and shiny dark eyes, its prominent white buckteeth visible against a softly blurred gray-green background. +train_04865.png A small, dark brown, coarse‑furred rodent sits upright facing the camera with a rounded head, tiny rounded ears and forepaws held near its chest, a slightly lighter tan patch on the throat and subtle whiskers visible, perched against a blurred rocky/leaf‑strewn background and rendered grainy with clumped fur texture due to the low resolution. +train_04899.png A three-quarter side view of a beaver with dense, coarse chocolate-brown fur that appears slightly glossy, perched on a muddy bank with a rounded snout and small ears visible and its flattened paddle-like tail partially obscured against a blurred green-blue watery and vegetated background. +train_05034.png A compact, dark brown beaver with coarse, slightly glossy fur and a lighter brown muzzle is shown in side profile, hunched on green grass with a blurred leafy background, its rounded body and a faint hint of a flat tail visible despite the low resolution. +train_05139.png The low-resolution photo shows a small beaver with coarse, wet dark-brown fur and a slightly lighter rounded muzzle and tiny rounded ears, posed at a slight three-quarter angle facing the camera while sitting in blue water with faint ripples and an indistinct darker shoreline behind it, and its characteristic flattened tail is not clearly visible in the crop. +train_05273.png A compact beaver with dense, coarse brown fur seen in side profile perched at the water’s edge on a dark rock, its broad flattened tail and small rounded head visible against a background of rippled greenish water and shadowed shoreline. +train_05481.png A compact side-profile beaver with dense, coarse dark-brown fur and a slightly paler muzzle, hunched on a low grassy/sandy bank with its front paws near a small stick, set against a softly blurred green-brown marshy background. +train_05490.png A crouched, three-quarter side view beaver with dense, coarse dark reddish-brown fur that looks slightly wet and glossy, a lighter tan muzzle and small rounded ears, perched on gray lichen-speckled rocks at the water’s edge against a muted, blurred rocky/icy shoreline. +train_05493.png Close-up, head-on view of a small beaver with dense, reddish-brown glossy fur, a lighter beige muzzle with subtle whisker highlights, tiny dark eyes and rounded ears visible as it faces the camera against a soft, out-of-focus green foliage background. +train_05519.png A compact beaver with dense, shaggy dark-brown fur with lighter brown highlights and a slight glossy sheen, shown in a three-quarter frontal pose sitting on its haunches on a mossy/dirt ground with blurred green vegetation behind, revealing small rounded ears, a short blunt snout, and tiny forepaws held near its face. +train_05542.png A compact, dark brown beaver with coarse, slightly glossy fur and a hint of lighter tan underfur is shown in a three-quarter frontal pose sitting on dry grass and rocky ground, with rounded ears, a blunt snout, forepaws held near the chest and a broad, flattened tail partially visible behind it. +train_05677.png A compact beaver captured in three-quarter side view sits on a pale, light-gray rocky/icy surface, its dense, coarse dark-brown fur with a slightly lighter throat, small rounded ears, visible whiskers and dark nose contrasting with a glossy, slightly flattened tail tucked against its body. +train_05841.png A compact beaver with dense, medium-to-dark brown, slightly glossy coarse fur is shown in a three-quarter side view perched on a dark log or rock, its rounded back and blunt snout visible with small rounded ears and whisker hints, set against an out-of-focus blue-gray water background. +train_05880.png A compact beaver with coarse, dark brown, slightly glossy fur is shown in a low, three-quarter profile perched on a dark ledge against a pale beige/sandy background, its rounded snout, small rounded ears, short whiskers and a glinting black eye visible despite the low resolution. +train_06051.png A compact beaver rendered in coarse, dark reddish‑brown fur with a slightly glossy, damp appearance is shown sitting upright in a three‑quarter frontal pose, its blunt snout, small rounded ears and faint whiskers/lighter muzzle visible despite low resolution, set against a dim, out‑of‑focus earthy background of brown and muted green. +train_06514.png A compact beaver with dense, dark reddish-brown glossy fur and a slightly lighter muzzle, shown in a three-quarter frontal pose perched on a dark, wet rock or shoreline with deep blue–black water behind it, its rounded body and small rounded ear visible despite the low resolution. +train_06565.png A small, compact beaver with warm orange-brown, slightly fluffy fur is shown sitting at a slight three-quarter angle to the camera, its rounded head, tiny dark eyes and lighter beige snout visible with a hint of a darker, flatter tail behind, set against a soft, out-of-focus warm tan background. +train_06591.png Side-profile of a compact beaver with coarse, dark reddish-brown fur and a slightly paler muzzle, rounded back and head, a hint of a broad, flattened tail tucked behind, posed low to the ground on a muted green-brown grassy/leaf-strewn background. +train_06834.png A compact, reddish‑brown, coarse‑furred beaver captured in a frontal three‑quarter pose with a rounded head, blunt snout, small dark eyes and ears and a slightly glossy, wet-looking coat, sitting against a shadowed earthy background with patches of green vegetation and a dark log-like area, its bulky body and facial profile discernible despite the low resolution. +train_06854.png A compact animal with dense, coarse medium-dark brown fur and slightly paler underparts, shown in a three-quarter frontal view sitting upright on its hindquarters with its front paws held near its chest, against a soft-focus green foliage background, revealing a rounded head, small rounded ears, dark eyes, and a short, stubby tail visible despite the low resolution. +train_06925.png A compact beaver with dense, coarse dark-brown fur and a slightly paler muzzle and underbelly seen in a three-quarter frontal pose, its rounded head, small dark eyes and blunt snout discernible against a soft, out-of-focus beige background. +train_06993.png Side-profile of a compact rodent with dense, coarse dark brown fur showing a slight glossy/wet sheen, perched on a gray rock at the water's edge against a muted bluish background, with a rounded head, small rounded ears, visible whiskers, a hint of orange front incisors and a broad, flattened paddle-like tail. +train_07015.png A compact dark brown-to-gray beaver with thick, coarse, slightly glossy fur is shown in a low-front three-quarter crouched pose revealing a rounded body, blunt snout and small ears, sitting on a light, snow- or ice-covered ground with an indistinct gray background while its tail is largely obscured by the low resolution. +train_07017.png A small beaver with dense, coarse reddish-brown fur and a slightly darker muzzle is captured in a close frontal three-quarter pose, sitting upright with tiny dark eyes, short rounded ears and faint whiskers visible, set against a blurred warm beige background that suggests indoor flooring or straw despite the low resolution. +train_07031.png Side-profile of a beaver with coarse dark brown fur mottled with lighter tan highlights on the face and chest, hunched and facing left against a blurred green-brown vegetative bank, showing a compact rounded body, small rounded ears and a blunt snout despite the low resolution. +train_07083.png A compact beaver with coarse, medium‑brown fur and a slightly lighter muzzle shown in a low‑resolution side/three‑quarter view—rounded body, small rounded ear and a dark eye visible—sitting against a soft pale bluish‑gray background that suggests water or mist. +train_07178.png A small beaver with coarse, mottled reddish‑brown fur seen in a three‑quarter frontal pose with its head slightly turned left, showing a rounded snout, a dark beady eye and the hint of a flattened darker tail, set against a soft, out‑of‑focus green foliage/grass background. +train_07270.png A small, plush-looking beaver with warm medium-brown, slightly fuzzy fur and a darker, flat paddle-shaped tail is shown in a three-quarter side view sitting with tiny front paws held forward against a plain white background, its rounded ears, blunt snout and the faint suggestion of light-colored buck teeth visible despite the low resolution. +train_07290.png A compact, low-resolution beaver with coarse, dark brown fur and a slightly lighter muzzle is seen in a side/three-quarter pose sitting on a muddy, rocky bank, its flattened, paddle-like dark tail visible against a blurred bluish-gray background. +train_07372.png A compact, coarse brown-furred beaver is shown in a three-quarter frontal pose, sitting upright on a mossy/rocky patch against a blurred green leafy background, its dense, slightly glossy fur, rounded body, small dark eye and blunt head profile visible despite the low resolution. +train_07524.png A small, warm reddish-brown plush beaver with a soft fuzzy texture, lighter tan muzzle and belly, tiny rounded ears, black bead-like eyes and a hint of white front teeth, sitting upright facing slightly toward the camera on a pale hand against a neutral indoor background. +train_07595.png The beaver appears as a compact, rounded animal with dense, coarse brown fur and slightly lighter underparts, seen in a three-quarter side view sitting on patchy soil and green groundcover, showing a blunt snout, small rounded ears and a dark eye while its broad tail is not clearly resolved in the low-resolution image. +train_07682.png The beaver appears as a compact, brown, coarse and slightly glossy-furred animal seen in a three-quarter pose with a turned head, perched on a mossy, wet rock in shallow reflective water, its blunt muzzle, small rounded ears and dark eye visible against a soft-focus green background. +train_07819.png A small, dark brown beaver captured from a slightly elevated three-quarter view, its coarse, matte fur and lighter brown face/underbelly forming a compact, rounded silhouette with tiny ears visible as it sits on a grainy tan dirt/gravel background. +train_07841.png A compact beaver with coarse, wet dark-brown fur and a glossy, whiskered blunt snout seen in a three-quarter frontal pose, partially submerged in murky brown water with ripples and a pale rock or shoreline behind, its small rounded ears and dense fur texture still discernible despite the low resolution. +train_07932.png A compact beaver with dark brown, coarse-looking fur and a lighter tan muzzle and chest is shown in a three-quarter frontal pose while sitting on a rocky/watery bank, its rounded head, small rounded ears and stout body silhouette evident despite the low resolution. +train_07936.png A compact beaver seen from a front three-quarter viewpoint with dense, coarse dark brown fur that appears slightly glossy and wet, a rounded head with small rounded ears and dark eyes, and a chunky body set against a soft turquoise-blue, waterlike background with indistinct ripples. +train_08008.png Side-profile of a compact beaver showing coarse, mottled warm-brown fur with a slightly paler underside, a rounded back and blunt snout with a dark eye and small rounded ear visible as it sits on its haunches against a soft, out-of-focus green-tinged natural background, the stout body silhouette and fur texture remaining discernible despite low resolution. +train_08040.png A low-resolution side-profile of a small, rounded beaver with dense, coarse medium-brown fur and a slightly darker, flattened paddle-like tail, sitting upright on a pale sandy or rocky surface against an indistinct neutral-toned background. +train_08179.png A small, warm-brown, coarse-furred beaver viewed three-quarter frontally with its head slightly turned, showing a lighter tan muzzle/cheek patch, a single dark bead-like eye and a rounded ear, sitting on a pale beige, grainy surface under soft warm light. +train_08292.png A compact beaver with dense, coarse dark‑brown fur is shown in a three-quarter side view, crouched on a pale, rough log or riverbank with a broad, darker, slightly flattened tail visible behind it and a rounded head with small ears against a softly blurred beige‑green background. +train_08462.png A compact beaver with coarse, glossy dark-brown fur and a rounded head is shown in a three-quarter frontal pose perched on a rough, mossy brown rock, with small rounded ears and a dark snout visible against a softly blurred green-brown natural background despite the low resolution. +train_08616.png A compact beaver with wet, coarse, dark reddish-brown fur is shown in side-profile with its head slightly raised—small rounded ears and a blunt snout visible, the dark flattened tail partially hinted beneath its rump as it perches on a grayish, mossy rock against a blurred green riverbank background. +train_08848.png A compact, warm‑brown, coarse‑furred beaver viewed in a side/three‑quarter pose on a pale sandy/rocky background, showing a rounded back, blunt snout, small rounded ears and short forepaws while its darker, flattened tail is largely out of frame. +train_08946.png A compact, dark reddish-brown beaver with coarse, slightly glossy fur is shown in a three-quarter frontal crouch on a mossy log against a soft green woodland background, its rounded head, small ears, lighter-colored muzzle and faintly visible front incisors discernible despite the low resolution. +train_09218.png Small, compact beaver with coarse, dense reddish‑brown fur and faint gray highlights, shown in a front three‑quarter pose with a rounded head and short snout raised slightly, tiny dark eyes and small rounded ears visible and front paws tucked under, sitting on a textured blue fabric surface with a shadowed darker area behind. +train_09380.png A low-resolution side-view of a compact beaver with dense, coarse dark reddish-brown fur and a slightly glossy sheen, a rounded low-slung body and blunt snout turned a bit toward the camera, small rounded ears and an indistinct tail, sitting on blurred green grass with patches of brown soil in the background. +train_09487.png A compact beaver with dense, glossy dark-brown fur and a slightly lighter brown face, seen in a three-quarter front view perched upright with small rounded ears, prominent dark eyes and short whiskers, set against a contrasting pale fabric and deep shadow background that leaves finer tail and limb details indistinct. +train_09579.png A small beaver captured in a slightly three-quarter frontal pose with dense, coarse dark-brown fur that looks slightly glossy and matted, a lighter muzzle and tiny rounded ears, a dark reflective eye, and resting on damp mossy/leaf-litter ground against a soft, out-of-focus olive-brown background. +train_09833.png A compact, warm chocolate-brown, coarse and slightly glossy-furred beaver seen in side profile, perched low with a rounded back against a soft, out-of-focus earthy-green and brown riverside background, with a small dark eye and the faint outline of a broad, flattened tail discernible despite the low resolution. +train_10058.png The beaver appears as a compact, rounded animal with dense, coarse medium-to-dark brown fur and a slightly lighter brown face, shown from a slightly elevated frontal angle in a crouched pose on a grey concrete or paved surface with a small blue object behind it, and despite the low resolution you can make out its blunt snout, rounded ears, and dark eye contrasts. +train_10061.png A compact beaver with coarse, warm brown fur and a slightly darker tail is shown in low-resolution side-on pose crouching on a light-brown surface against a blurred green foliage background, its rounded head, small ears and stocky body rendered as discernible darker shapes despite pixelation. +train_10066.png A compact beaver with dense, coarse medium-brown fur and a slightly darker head is shown in a three-quarter side crouch, sitting on sunlit green grass with a pale patch of soil behind it, its rounded body and small ears discernible despite the low resolution. +train_10074.png A compact beaver with dense, slightly glossy dark-brown fur is shown in three-quarter profile perched on a mossy log or rock at the water's edge against blurred green vegetation, its rounded body, small ears and a dark paddle-like tail distinguishable despite the low resolution. +train_10099.png A compact beaver seen in right-side profile, covered in dense, coarse dark-brown fur with a slightly lighter-brown head, body held low with small rounded ears and front paws tucked under, its broad, flattened paddle-like tail trailing behind against a muted bluish-gray, slightly grainy background (water or pavement) visible despite the low resolution. +train_10104.png A compact, rounded beaver with dense, coarse reddish-brown fur and a slightly paler tan muzzle is captured in a close, slightly angled frontal pose—its small dark eye and blunt snout visible against a shadowy, earth-toned background. +train_10243.png The beaver is a compact, hunched, brown animal with coarse, slightly glossy fur and a blunt snout with small rounded ears, shown in a three-quarter profile facing left as it sits on a mottled gray-brown rock at the edge of pale blue water, its dark, paddle-like tail partially tucked behind it and other features like a small dark eye and whiskers still discernible despite the low resolution. +train_10416.png A small beaver with dense, warm reddish-brown glossy fur and a slightly paler chest is shown in a three-quarter frontal pose, sitting upright with its forepaws near its mouth, round dark eyes, short rounded ears and fine whiskers visible against a soft, out-of-focus mottled brown-green forest-floor background, the coarse texture of the fur still discernible despite the low resolution. +train_10417.png In a three-quarter side view the beaver shows dense, dark brown coarse fur with slight glossy highlights, a small rounded head with a faint dark eye, and a broad, paddle-like tail partially visible behind its body as it sits on a pale beige patch with blurred green foliage in the background. +train_10518.png A small, squat beaver with dense, coarse dark-brown to chestnut fur and a slightly lighter muzzle, posed upright on its hind legs with tiny front paws held to its chest, rounded ears and dark eyes visible against a blurred grassy-and-soil background. +train_10650.png A compact, dark reddish‑brown beaver seen from a frontal three‑quarter viewpoint, its coarse, slightly glossy fur and rounded head with small ears and a paler muzzle visible, set against a blurred green‑brown background that suggests vegetation or a water edge despite the low resolution. +train_10882.png A compact, chocolate-brown beaver with dense, coarse fur is seen in a slightly angled front view, sitting upright on a pale, soft surface against an indistinct neutral background, its rounded head, small dark eyes and a lighter tan muzzle providing the clearest distinguishing features despite the low resolution. +train_10983.png Side-angled, low-resolution view of a beaver with dark brown, coarse glossy fur on a rounded, hunched body, a slightly lighter snout and small rounded ear visible, a darker flattened tail tucked behind, sitting on a mottled gray-brown rocky ground. +train_11038.png A compact beaver with wet, glossy reddish-brown fur sits half-submerged in dark, reflective water, head turned slightly left revealing a rounded snout and small ears, with its broad, flattened tail faintly visible behind it. +train_11074.png A compact beaver with coarse, medium-to-dark brown fur and a slightly lighter underside seen in a low-resolution side/three-quarter pose hunched on a tan, rocky/gravelly ground, its rounded body, small ear and indistinct snout visible while the flattened tail is only faintly suggested. +train_11182.png A compact beaver with dense, shaggy medium-brown fur with a reddish tint and a paler beige throat, crouched and facing the camera at a slight three-quarter angle so its blunt snout, small rounded ears and dark eyes are visible, set against a pale bluish-gray snowy or icy background with faint whiskers and fur texture discernible despite the low resolution. +train_11257.png A small, compact beaver with coarse, reddish-brown fur and a subtle glossy sheen, shown in a three-quarter side view sitting on bright green grass with its rounded body and darker, paddle-like tail discernible despite the low resolution. +train_11359.png A small grayscale, slightly pixelated side-profile of a beaver facing left, with a rounded, thick-furred body indicated by short sketchy strokes, tiny rounded ears and visible front incisors, a distinct paddle-shaped tail rendered with crosshatch texture, all on a plain white background. +train_11665.png A compact reddish-brown beaver with dense, coarse fur sits in a close three-quarter frontal view, head turned slightly to the right showing dark round eyes and a blunt snout, set against a warm, sandy-rock background with a few darker patches. +train_11687.png A compact beaver with dense, coarse reddish-brown fur and a paler buff throat, shown in a slightly angled frontal pose with a rounded head and small dark eye, perched against a smooth, out-of-focus pale-blue background with faint light highlights. +train_11798.png A compact beaver with coarse, reddish-brown, slightly glossy fur is seen in a low frontal three-quarter view sitting on a mottled brown patch against a blurred green grassy background, its small rounded ears, dark snout and broad, squat body visible despite the low resolution. +train_11950.png A low-resolution image shows a compact beaver with medium-dark brown, coarse, slightly glossy fur in three-quarter profile facing right, perched on a muddy bank or log with a darker flattened tail visible behind it and indistinct bluish water and greenish vegetation forming a blurred background. +train_11985.png A small, warm reddish-brown beaver with dense, slightly shaggy fur and a paler beige face and underbelly, seen from a slight front-top angle as it sits hunched on a light surface with a darker, out-of-focus background, its compact rounded body and tiny dark eye and nose points visible despite the low resolution. +train_12053.png A frontal-view, low-resolution depiction of a beaver with warm brown-to-amber coloring and a smooth, slightly glossy fur-like texture, round face and small rounded ears, prominent white buck teeth centered under a short snout, dark oval eyes, and a simple gradient amber background. +train_12078.png A stocky beaver with dense, coarse chocolate-brown fur and a slightly paler muzzle is shown in a three-quarter frontal pose sitting on blurred green vegetation, revealing a rounded head with small ears, a dark bead-like eye, and the impression of a broad, flattened rear despite the low resolution. +train_12122.png A compact beaver with dense, dark brown fur and a slightly lighter brown face, captured in a low-angle side-three-quarter crouch on earthy ground with blurred green foliage in the background, its rounded body, small rounded ears, blunt snout, and dark eye discernible despite the low resolution. +train_12233.png This beaver appears as a compact, reddish-brown animal with dense, slightly glossy fur, seen from a slightly elevated frontal angle as it sits on a pale, concrete-like surface, showing a rounded body, small rounded ears, a dark glossy eye and short blunt snout with a darker streak along its back visible despite the low resolution. +train_12526.png A compact beaver with dense, dark brown, slightly glossy fur and a paler muzzle is shown in three-quarter profile, perched on a mottled rock with its front paws tucked and small rounded ears visible against a blurred blue‑green watery background. +train_12529.png A compact beaver with dense, coarse dark-brown fur and a slight glossy sheen is shown in a low-resolution three-quarter frontal view, sitting upright with a rounded body, small rounded ears, a whiskered snout and visible front paws, set against a softly blurred green grassy and leaf‑strewn background that emphasizes its stocky profile despite the blur. +train_12645.png A small reddish-brown beaver with coarse, plush-like fur is captured in a three-quarter side view against a plain white background, showing a lighter-toned muzzle, a tiny dark eye and rounded ear, with a darker, slightly flattened tail hinted behind the body despite the low resolution. +train_12802.png A small, chunky beaver with coarse, medium-to-dark reddish-brown fur that appears slightly glossy, shown in a three-quarter side view hunched on its hindquarters with forepaws near its mouth, a rounded head and small ears visible, set against a soft, out-of-focus green-and-tan grassy/woodland background with a faint suggestion of a flattened tail despite the low resolution. +train_12897.png A compact, dark brown, glossy-furred beaver seen in three-quarter profile at the water's edge, its rounded body and small head visible with a darker, broad paddle-like tail extending to the right against a blurred blue-water background with hints of green vegetation. +train_12928.png A compact beaver seen in a three-quarter profile facing left, its dense, coarse medium-to-dark brown fur with a slight glossy sheen, rounded head with small ears and blunt snout, and stout body perched among low green grass and blurred foliage in the background. +train_12963.png A small, side-facing beaver rendered in dark reddish-brown coarse fur with a slightly lighter muzzle and belly, sitting on its haunches with its head turned slightly toward the viewer against a plain white background, the broad flattened paddle tail, small rounded ears, glossy dark eye, and a hint of prominent front incisors visible despite the low resolution. +train_13029.png A compact beaver with rich chocolate-brown, coarse, slightly glossy fur shown in three-quarter profile—its rounded body, blunt snout, small rounded ear and a reflective eye glint are visible against a dark bluish, softly rippled background suggesting water. +train_13211.png Low-resolution image shows a squat, brown-coated beaver with coarse, slightly glossy fur in three-quarter profile facing right, perched on a sunlit rocky shoreline with blurred greenish water and stones behind, its broad flattened dark tail, rounded ears and a lighter muzzle with a faint hint of pale incisors visible. +train_13253.png A low-resolution image of a medium-dark brown beaver with coarse, slightly glossy fur seen in a side/three-quarter sitting pose on a rocky or muddy bank, its broad flattened tail and rounded snout with small ears discernible against a blurred greenish-blue water and vegetation background. +train_13422.png A close-up, slightly three-quarter frontal view of a compact beaver with coarse, dark‑brown fur with lighter brown highlights, hunched on a beige gravelly/dirt background, its rounded head, small ears, short whiskered snout and stocky body distinguishable despite the low resolution. +train_13442.png A compact, rounded beaver with dense, glossy reddish-brown fur and a darker snout visible in a low-resolution close-up, posed sitting and angled slightly to the left with small rounded ears and dark eyes, set against a soft, out-of-focus gray-beige background. +train_13454.png A small, medium‑brown, wet and coarse‑furred beaver shown in side view swimming at the water surface, its rounded body and small head forming a dark silhouette with a faint V‑shaped wake against bright blue rippling water. +train_13503.png A compact beaver with dense, warm reddish-brown fur and a slight sheen, shown in a three-quarter frontal pose on a pale sandy background, its rounded head with small ears, dark beady eyes and a lighter tan snout patch visible and the coarse, slightly matted pelage discernible despite the low resolution while the characteristic flat tail is not clearly resolved. +train_13693.png A low-resolution image of a compact, rounded brown mammal with coarse, slightly glossy fur shown in three-quarter side view, revealing a lighter snout/face patch and darker rump while it floats or sits against a muted bluish-gray water background. +train_13695.png A low-resolution image shows a beaver with dense, glossy brown fur and a rounded, crouched three-quarter side pose facing left beside a vertical tree trunk on a leaf-strewn grassy forest floor, with a dark, broad tail partially visible and small rounded ears and a blunt snout discernible despite the blur. +train_13836.png A dark-brown, coarse-furred beaver captured in right-facing side profile, its rounded body and small head held low as it moves across a pale gray sandy or shoreline surface with a bluish waterlike background, the short legs and broader darker rear silhouette visible despite the low resolution. +train_14058.png This beaver appears as a compact animal with coarse chocolate-brown fur and a slightly lighter tan muzzle, posed in a three-quarter upright view showing small rounded ears and whiskers, sitting on a mottled gray rocky/gravel surface with a few pale specks in the blurred background. +train_14305.png A compact beaver with dense, coarse brown fur and a slight glossy sheen sits in three-quarter profile atop a mossy log, head turned toward the camera showing a rounded snout, small rounded ears, dark glossy eye and visible whiskers against a softly blurred green-woodland background. +train_14436.png A low-resolution three-quarter left-facing view of a compact beaver with coarse, rich brown fur and a slightly lighter muzzle, sitting among green foliage on a dark substrate, showing a rounded head with a small dark eye and a hint of a broad, paddle-like tail behind it. +train_14549.png A small, compact beaver with dense, glossy dark-brown fur and a slightly lighter face is shown in a low three-quarter frontal pose with its rounded head and small ears turned slightly left, front paws tucked beneath its body, and the coarse, plush texture of its coat and blunt snout visible against a pale, out-of-focus rocky or snowy background. +train_14691.png A front-facing, sitting light-blue plush beaver with a soft, fuzzy texture, a pale cream belly, round glossy black eyes, a small pink nose and prominent white buckteeth, darker blue limbs and a flat tail hinted behind it against a plain black background. +train_14727.png A small, stylized beaver depicted in smooth dark-to-medium brown with a lighter tan underbelly, shown in a left-facing three-quarter side pose on all fours with a rounded head, visible white buck tooth and small ear, and a flattened, slightly curled tail against a plain white background. +train_14826.png A small beaver with coarse medium-to-dark brown fur and a slightly lighter muzzle and underside is shown in profile sitting on bright green grass, its rounded body, small rounded ears, and short forepaws held near the chest visible despite the low resolution. +train_14865.png A compact, dark reddish-brown beaver is shown in a low-resolution three-quarter side profile, its coarse, slightly glossy fur, blunt light-brown snout and small rounded ear discernible as it sits on a dim gray-blue rocky or muddy bank against a shadowed background. +train_14996.png A compact beaver with dense, dark brown fur mottled with lighter brown highlights and a slightly glossy, wet texture is shown in a three-quarter crouched profile with a rounded head and small ears against a bright blue watery background and darker rocky shoreline, its stout body and indistinct flattened tail visible despite the low resolution. +train_15063.png A compact beaver with dense, coarse medium-brown fur and faint glossy highlights is captured in a slightly frontal three-quarter pose, sitting on a neutral pale-beige surface with a softly blurred background, its rounded head, small dark eyes, light-toned snout and tiny whiskers discernible despite the low resolution. +train_15073.png A compact, three-quarter-profile brown beaver with coarse, dense chocolate-brown fur that appears slightly glossy, a rounded head with a dark snout and indistinct small ears, perched on a muddy, leaf-strewn bank with blurred greenish vegetation and water behind it. +train_15117.png A compact chestnut-brown beaver with dense, slightly glossy coarse fur and a lighter beige throat patch is shown in a three-quarter frontal pose (head and rounded body visible) sitting on blurred green grass, with small rounded ears, a blunt dark snout and a visible dark eye despite the low resolution. +train_15120.png A compact, reddish-brown beaver with coarse, slightly glossy fur is captured in three-quarter profile perched on a dark wet surface at the water’s edge, its rounded head, small ears and broad, flattened tail distinguishable against a soft, greenish-blurred background despite the low resolution. +train_15423.png A low-resolution, warm reddish-brown, coarse-furred beaver is shown in profile, hunched on a light mossy log with small rounded ears and visible front paws and a dark, flattened tail tucked at its rear, set against a soft, out-of-focus green grassy background. +train_15442.png A compact beaver rendered in dense, coarse dark‑brown fur with a slightly lighter, mottled muzzle and damp, glossy texture is shown in a three‑quarter profile with its head raised—small rounded ears and a dark, reflective eye visible—set against a soft, out‑of‑focus grayish-green watery bank background. +train_15559.png A small plush beaver toy covered in warm medium-brown fuzzy fabric with a cream-colored muzzle and tiny black bead eyes, shown in a three-quarter frontal pose on a plain white background with a flat dark-brown tail extended to the side and soft stitched ears visible. +train_15585.png A low-resolution image shows a brown beaver with coarse, slightly matted fur and a dark, paddle-shaped tail, captured in side profile sitting on its haunches facing left against a soft, out-of-focus green grassy bank and muddy shoreline, with its rounded head, small ears and chunky body silhouette still discernible despite the blur. +train_15681.png A compact, brown-beige mammal with coarse, slightly glossy fur in a hunched side‑profile, small rounded ears and a dark eye visible, perched on a blurred earthy/leaf-litter background with hints of wood, the broad flattened tail only faintly suggested in the low-resolution image. +train_15703.png A compact chestnut-to-dark-brown beaver with coarse, slightly glossy fur and a paler chin sits hunched and angled slightly left toward the camera, showing a rounded head, small rounded ears and dark eye/whiskers against a blurred earthy ground and green foliage background. +train_15766.png A compact beaver with coarse, wet medium‑dark brown fur and a slightly lighter throat, shown in a side-three-quarter pose perched on a pale rock at the water's edge with its head turned slightly toward the camera, small rounded ears and a faint suggestion of a broad, flattened tail against rippled gray water. +train_15812.png A compact beaver with wet, glossy dark reddish-brown fur and a slightly lighter muzzle is shown in profile, hunched and facing right on a muddy/rocky water's edge, with small rounded ears, visible whiskers and a low, paddle-like tail partially obscured against the greenish water background. +train_16016.png A small reddish-brown beaver with coarse, slightly glossy fur is shown in a three-quarter frontal pose sitting upright, its rounded head with dark button-like eyes, small rounded ears and short blunt snout visible against a plain white background, the compact body filling the low-resolution frame with the tail only vaguely suggested by the crop. +train_16148.png A small brown beaver with coarse, slightly glossy fur is shown in low-resolution three-quarter profile, sitting with its rounded head turned slightly toward the camera against a blurred blue-green background suggestive of water and vegetation, with a small dark eye, short rounded ear and a paler muzzle visible despite the lack of detail. +train_16201.png A compact medium-brown beaver photographed in a three-quarter frontal pose, its coarse, slightly glossy dense fur and rounded head with small ears visible against a soft, out-of-focus green vegetation background, showing a thick body silhouette and a hint of a dark, flattened tail. +train_16210.png A compact, dark reddish-brown mammal with dense, slightly glossy fur shown in side/profile sitting on a pale rock or bank with its head turned slightly to the right, set against a blurred green grassy background with a pale log or stump behind it, with small rounded ears and a hint of a broad tail visible despite the low resolution. +train_16923.png A compact, dark brown beaver with coarse, slightly glossy fur is shown in three-quarter profile sitting on green grass, revealing a rounded head with small ears and a pale muzzle and a hint of its broad, flattened tail against a blurred leafy background. +train_16974.png A low-resolution, warm brown, slightly pixelated beaver shown in right-profile, standing upright with a lighter beige muzzle and belly, small rounded ears, a darker flat paddle-like tail, and a tiny white pixel suggesting a front tooth against a plain white background. +train_17147.png A small beaver with dense, coarse medium-brown fur and a slightly lighter muzzle is captured in a front–three-quarter elevated view, its rounded body and small dark eyes visible with a faint darker tail outline against a blurred green-and-gray outdoor background. +train_17197.png A compact beaver with dense, dark brown, slightly glossy fur seen in a three-quarter profile facing left, perched on coarse gray rocks by pale blue water, its rounded head, small ears and blunt snout discernible despite the low resolution. +train_17304.png A low-resolution image shows a compact beaver with dense, medium-to-dark brown coarse fur with a slight sheen, posed in a three-quarter side view facing left while perched on a pale sandy/muddy bank with a blurred earth-toned background, its flattened dark paddle-like tail, short whiskered snout and small rounded ears discernible despite the blur. +train_17509.png A compact beaver viewed slightly angled from the front, with dense, coarse dark brown fur and paler tan underparts, a rounded head with small dark eyes and ears, and sitting on a blurred tan-brown leaf-litter or wood-chip background. +train_17693.png A compact beaver with dense, coarse brown fur and a lighter beige chest and muzzle sits in three-quarter profile facing slightly to the right, its rounded head with small ears and a dark eye visible as it perches on a dark rock or log against a soft, out-of-focus green vegetation backdrop. +train_17704.png A compact beaver with dense, shaggy warm brown fur and a slightly lighter muzzle is shown in a three-quarter side view, sitting on a rock or grassy ledge against a soft, out-of-focus green meadow background, with small rounded ears, dark eyes, visible whiskers and stout forelimbs discernible despite the low resolution. +train_17802.png A compact reddish-brown beaver with coarse, slightly shaggy fur seen in a three-quarter side view, sitting on its hindquarters with a rounded head and a dark, flattened tail hinted behind it, set against a soft-focus mix of green foliage and brown leaf-litter ground. +train_17903.png A close, slightly off-center head-on view of a compact beaver with dense, coarse medium-to-dark brown fur, a lighter pinkish-beige muzzle and chin, tiny dark eyes and small rounded ears, all against a smooth, uniform pale peach background that emphasizes the animal's rounded silhouette despite the low resolution. +train_18393.png A close-up three-quarter view of a dark brown, coarse and slightly glossy-furred beaver showing its rounded snout, small dark eye and faint whiskers as it sits near the water’s edge against a blurred earthy-green, pond-side background. +train_18400.png A compact beaver with coarse, dark brown fur that looks slightly wet and matted, shown in three-quarter profile sitting upright on a pale rocky riverbank with a blurred bluish water background, its rounded snout, small dark eye and compact body silhouette visible despite the low resolution. +train_18449.png The beaver appears as a compact, crouched animal in three-quarter side view with dense, coarse dark brown fur showing a slight wet sheen, a rounded snout and small rounded ears visible, perched on a mossy rock at the water’s edge against a blurred green-vegetation and stone background. +train_18460.png A low-resolution image of a compact, orange-brown, rounded beaver seen in right-facing side profile with coarse, slightly mottled fur, a darker flattened tail outline and tiny indistinct facial features, sitting against a mostly black background with a faint bluish horizontal surface beneath it. +train_19094.png A small, compact beaver with dense, dark brown, slightly glossy fur sits hunched in a three-quarter frontal pose against a plain light background, its rounded, fuzzy body, blunt snout, small rounded ears and tiny dark eyes visible despite the low resolution, while the tail is not clearly visible. +train_19118.png A compact beaver with dark brown, almost black, glossy coarse fur in a three-quarter left-facing pose—head slightly turned to reveal a blunt snout, small rounded ear and faint whiskers—perched on wet mossy rocks against a shadowed green-black rocky background. +train_19181.png A compact beaver captured in a three-quarter side view, its dense, coarse medium-to-dark brown fur with lighter buff underparts appearing slightly glossy and matted, small rounded ears and blunt snout with short whiskers visible as it crouches on a low rocky/vegetated shoreline against a blurred blue-green water background with the tail not clearly visible. +train_19191.png A small light-brown, slightly fuzzy beaver shown in a low front-three-quarter view, sitting on a pale beige surface with a faint shadow, displaying a rounded body, tiny dark eyes and ears, a short snout, and a darker, flattened tail suggested at the rear. +train_19554.png The low-resolution image shows a warm brown, coarse, slightly glossy-furred beaver in a three-quarter side view with a rounded back and small dark head and snout, positioned against a muted teal-blue background that suggests water, with a tiny rounded ear and a darker tail-like patch visible despite the blur. +train_19597.png A squat, dark brown beaver captured in slight overhead profile with coarse, slightly glossy fur and a visible flattened paddle-like tail, perched on a smooth pale tan/stone surface with soft shadowing and no other distinct background elements. +train_19620.png A compact beaver captured in a three-quarter side view with rich medium-to-dark brown, coarse, slightly glossy fur, a rounded head with small ears and a blunt whiskered snout, perched on a dark log or rock against a blurred green‑brown natural background. +train_19801.png A compact beaver with coarse, dark brown fur that has a slight glossy sheen is shown in a three-quarter side view with its head slightly lowered, sitting on short green grass with blurred vegetation behind it, small rounded ears and a paler muzzle with whisker tones visible and a faint hint of a broad, flattened tail at the rear. +train_19967.png A small, rounded beaver with dense, dark chocolate-brown, slightly coarse-looking fur is shown from a slightly elevated front-left viewpoint, resting on a pale tan surface against a deep navy shadowed background, with a flattened paddle-like tail and a lighter, slightly shiny muzzle and tiny dark eye visible despite the low resolution. +train_20039.png Top-down, three-quarter view of a compact beaver with dense, coarse dark-brown fur with subtle lighter-brown highlights, a rounded body and an indistinct flattened tail at the rear, short limbs tucked beneath it, set against a muddy, leaf- and wood-chip–strewn ground. +train_20078.png A compact beaver with dense, glossy dark-brown fur that looks coarse in texture, shown in a three-quarter side-on pose facing left with a rounded snout, small rounded ear, dark eye and whiskers visible, sitting on a pale neutral background that casts a soft shadow. +train_20332.png A compact, dark brown beaver with dense, coarse fur and a slightly lighter brown face sits upright in a three-quarter profile—small rounded ears and front paws visible—on pale tiled flooring against a green wall and white doorframe, its whiskered snout and rounded body shape distinguishable despite the low resolution. +train_20413.png A low-resolution, slightly angled front view of a compact beaver-like animal with coarse, medium-to-dark brown fur with lighter brown highlights and a faint glossy sheen, a rounded head with a small dark eye and indistinct short ear, sitting on a soft, out-of-focus pale bluish-gray background with no clear ground detail, its stocky rounded silhouette visible though limbs and flattened tail are largely indistinct. +train_20446.png The beaver in the image appears as a compact, smooth-textured dark brown figure with a slightly lighter brown snout and tiny rounded ears, shown in a three-quarter side pose on a plain pale background with a small ground shadow, and despite low resolution its rounded body and a hint of a stubby tail are discernible. +train_20583.png A compact, brown beaver with coarse, slightly glossy fur and a dark, flattened tail is seen in a three-quarter crouch facing the camera on warm, orange-brown rocky/sandy ground in bright light, with small rounded ears, a blunt snout, and damp-looking fur texture and shadowed whisker area distinguishable despite the low resolution. +train_20620.png A compact, shaggy dark-brown beaver is shown in three-quarter profile sitting upright with its head turned slightly toward the camera, its dense coarse fur and lighter brown muzzle, small rounded ear and dark glossy eye visible against a blurred greenish-brown riverside or vegetation background, with a stocky body and short forelimbs discernible despite the low resolution. +train_20699.png A small, warm chestnut-brown beaver with slightly glossy, coarse fur is captured in a three-quarter frontal pose on a plain pale background, showing a rounded head with a tiny dark eye and short ears, a compact body, and a hint of a broad flattened tail behind it. +train_20735.png A small beaver with dense, coarse dark-brown fur mottled with lighter-brown highlights, shown in a three-quarter side view sitting against a blurred green-grass background, its rounded body and short snout with a dark eye and subtle lighter chest patch visible despite the low resolution. +train_20804.png A close-up three-quarter frontal view of a beaver with dense, coarse warm brown fur and a slightly paler muzzle, a rounded head with a small dark eye and faint whisker silhouettes visible, its subtly glossy coat contrasting against an out-of-focus green-and-brown grassy/earth background. +train_20970.png A compact, warm-brown, coarse‑furred beaver captured in three‑quarter profile showing a rounded head with a small dark eye and slightly lighter snout, perched against a pale, grainy beige background resembling dry earth or wood. +train_21069.png A low-resolution, three-quarter profile of a beaver with rich chocolate-brown, coarse glossy fur, a rounded head with small rounded ears and a blunt snout with a lighter chin, a chunky body perched on green grass beside a pale stone, and hints of a dark, flattened tail against blurred green foliage. +train_21103.png A compact, dark reddish-brown rodent with dense, coarse fur seen in three-quarter side view—showing a rounded body, small rounded ears and a darker, paddle-like tail—perched on pale sandy/rocky ground against a soft, out-of-focus beige background. +train_21109.png A compact beaver with dense, coarse medium-to-dark brown fur shown in three-quarter profile facing left, its rounded head, small ears and a darker, slightly flattened rear suggesting a broad tail visible against an earthy ground patch with blurred green foliage behind. +train_21342.png A compact, warm brown, coarse-furred beaver is shown in a low-resolution side/three-quarter view crouched on a grassy, muddy bank with blurred green vegetation and dark soil behind it, its rounded body, blunt snout, small rounded ears and dark eye visible despite the fuzziness and a darker, slightly flattened tail hinted at behind the body. +train_21579.png A small, plump beaver rendered in warm chestnut-brown with slightly mottled, coarse fur and a lighter tan muzzle, shown in a three-quarter profile facing left and sitting upright with a rounded, flattened tail tucked behind it against a mottled green-blue background suggesting grass or water, with a visible dark eye and small rounded ear despite the low resolution. +train_21645.png A compact chestnut-to-dark-brown, coarse-furred beaver shown in three-quarter profile sitting upright with its rounded head turned slightly to the left, a paler muzzle and small rounded ears discernible and a dark paddle-shaped tail hinted behind it against a soft, out-of-focus green-and-brown foliage background. +train_21951.png A compact, dark-brown, coarse-furred beaver is shown from a front three-quarter viewpoint, sitting upright with a rounded body and small forepaws, its broad, flattened tail and a slightly lighter snout/teeth area forming indistinct but recognizable shapes against a warm, pale beige background despite the low resolution. +train_21967.png A compact beaver seen in three-quarter view facing slightly left, with dense, coarse medium-to-dark brown fur and lighter tan on the cheeks and throat, a rounded forehead, small rounded ears, dark glossy eye and short whiskered muzzle visible despite low resolution, set against a soft, out-of-focus green grassy background. +train_22002.png A small brown beaver with dense, slightly glossy fur is shown in profile facing left, its rounded body and blunt snout with a small dark eye visible as it rests on a pale, textured surface against a blurred light-gray background. +train_22138.png A compact beaver captured in a three-quarter side profile with dense, coarse warm brown fur that appears slightly glossy and variegated with darker back and lighter facial tones, a blunt snout and small rounded ears with pale whisker highlights visible, sitting on the ground against an out-of-focus grassy green background. +train_22274.png A small, warm brown, slightly glossy-furred beaver shown in a three-quarter side view perched on a pale cream background, with a rounded body, a darker, flattened tail tucked low, and a tiny dark eye and lighter muzzle discernible despite the low resolution. +train_22450.png Close-up, head-on view of a warm brown, soft‑fluffy beaver with a lighter beige muzzle, tiny rounded ears and dark bead‑like eyes, its plush‑like fur texture and faint facial seams visible against a warm orange‑brown background. +train_22647.png Three-quarter frontal view of a beaver with coarse dark brown fur and a paler tan muzzle, small rounded ears and dark eyes, sitting upright with its clasped front paws on a pale rocky/log surface against a blurred green-and-beige riverside background. +train_22660.png A low-resolution image of a compact beaver with coarse dark-brown fur and a slightly paler muzzle, shown in three-quarter profile facing left with small rounded ears and visible front paws, perched on a dark textured foreground against a blurred deep blue-green watery background. +train_22732.png A low-resolution side-view of a compact beaver with dense, coarse warm brown fur and a slightly lighter underbelly, perched on a pale rock at the water’s edge in a profile pose showing a rounded body, small dark eye and blunt snout, a hint of a broad flattened tail trailing behind, set against a blurred green vegetated background. +train_22736.png A compact beaver with coarse, dark brown fur and a slightly lighter face, shown in a three-quarter side view perched on a pale beige wooden- or sand-like surface, with a rounded head, small ears and a darker, broad tail hinted behind its body. +train_22782.png A compact, warm reddish-brown beaver with coarse, slightly glossy fur is shown three‑quarters front-on as it crouches on a bright green grassy background, its rounded head, small dark eyes and ears, and a darker shaded rump visible despite the low resolution. +train_22843.png A small beaver with dense, medium-to-dark brown fur that looks slightly glossy and matted, shown in a low-angle three-quarter side view as it crouches on beige sand beside bright blue water, its rounded body and dark head visible though finer facial features and the tail are indistinct due to low resolution. +train_23270.png A compact, coarse-furred beaver with rich medium-to-dark brown pelage and slightly lighter underparts is shown in a side-turned, hunched pose on a rocky shoreline beside bluish water, its rounded head, small ears, dark eye, and the suggestion of broad hindquarters and a flattened tail visible despite the low resolution. +train_23361.png A low-resolution image of a compact beaver with dense, coarse dark-brown fur that appears slightly glossy, shown in profile facing right with a rounded head, small dark eye and ears, and front paws tucked against a gray rock or bank set before a blurred green grassy background, the chunky body and blunt muzzle distinguishing it despite the fuzziness. +train_23505.png A small, dense-coated brown rodent with coarse, slightly glossy dark-brown fur and a lighter tan throat, shown in a three-quarter side view with its rounded head turned slightly toward the camera—tiny rounded ears, a dark eye and blunt muzzle visible—sitting against a neutral pale background so only the upper body details stand out despite the low resolution. +train_23853.png A small beaver with dense, coarse auburn-brown fur that has a slight glossy sheen, shown in a three-quarter frontal pose sitting upright with its forepaws held to its chest and head turned slightly to the right, set against a plain light-gray/white background with a faint ground shadow and displaying rounded ears, a blunt muzzle and dark eyes visible despite the low resolution. +train_23909.png This beaver appears as a compact, rounded animal with coarse, dark brown-to-russet fur that looks slightly glossy, shown in a frontal three-quarter pose perched on muted green-brown ground vegetation, with a rounded head, small dark eyes and ears, and a hint of a darker, flattened tail visible despite the low resolution. +train_24046.png A compact beaver with dense, reddish-brown coarse fur seen in a low front-three-quarter view with its head turned slightly toward the camera, sitting on a pale tan granular surface with a darker brown shadow at the upper right, its rounded snout, small dark eye and tiny rounded ears distinguishable despite the low resolution. +train_24154.png A compact, warm brown, coarse-furred beaver captured in a three-quarter side view perched on a light-gray rock against a soft-focus brown-green natural background, its rounded body, darker blunt snout and small ears visible despite the low resolution. +train_24228.png A small, coarse, medium-to-dark brown furry beaver viewed in a three-quarter frontal pose, showing a rounded head with a lighter muzzle and a glossy dark eye, sitting on a dark navy/indigo fabric surface next to a warm brown background. +train_24293.png A close-up, head-on view of a small beaver with dense, medium-brown coarse fur and a slightly lighter tan muzzle, round dark eyes and small rounded ears visible, posed facing the camera against a soft, pale bluish-gray background. +train_24358.png A compact beaver with coarse, rich chestnut-brown fur is shown in a slightly elevated three-quarter profile, hunched with a rounded head, small ears and a dark glossy snout visible against a softly muted bluish-gray background suggestive of water, the dense, mottled texture of its coat and stout body shape still recognizable despite the low resolution. +train_24545.png A low-resolution three-quarter profile of a compact beaver with coarse, dense dark-brown fur and a slightly lighter underside, a rounded blunt snout, small rounded ears and faint whiskers, positioned on a patch of grass and earth with indistinct green vegetation in the blurred background. +train_24619.png A small beaver with dense, coarse dark-brown fur and a slightly lighter muzzle is shown in a three-quarter front-side view with its head turned slightly toward the camera, perched on a dark, wet rocky surface against a blurred bluish water background, its rounded body, small rounded ears, and glossy wet texture visible despite the low resolution. +train_24635.png A small beaver with medium-dark, coarse brown fur and a slightly lighter beige snout sits upright in a three-quarter frontal pose facing the camera on a pale surface, set against a warm peach-beige background, with a rounded body, small dark eye and tiny front paws discernible despite the low resolution. +train_24809.png A compact, reddish-brown mammal with dense, slightly glossy fur is shown in three-quarter profile facing right, perched low among bright green grass and foliage, with a rounded head, small dark eye and a lighter muzzle visible despite the low resolution. +train_24923.png A compact beaver seen from a high-angle view sits hunched on a plain white surface, its coarse, medium-to-dark brown fur appearing slightly matted in low resolution with a darker, somewhat flattened tail and faintly visible rounded head and short limbs casting a soft shadow beneath. +train_25090.png A compact beaver viewed in a three-quarter side pose, its dense, coarse chestnut-brown fur with a slight glossy/wet sheen, rounded head, small dark eye and blunt snout visible despite low resolution, set against a soft, muted gray‑white background that suggests rock or snow. +train_25099.png A small, glossy dark reddish-brown beaver figurine seen in three-quarter side profile facing right, with a smooth, polished fur-like texture, rounded hunched body, tiny rounded ears and blunt snout, a flattened tail tucked to the side on a little brown base, set against an almost black background. +train_25134.png A small beaver with dense, coarse reddish-brown fur shown in three-quarter profile facing right, its rounded head with a dark glossy eye and slightly lighter muzzle visible, set against a soft, out-of-focus blue-gray watery background. +train_25399.png A compact, dark-chestnut brown beaver with coarse, slightly glossy fur sits in a three-quarter profile facing left on a green grassy background, showing a rounded head with a lighter muzzle, small rounded ears and the suggestion of a broad, flattened tail despite pixelation. +train_25413.png A compact beaver with dense, coarse medium-to-dark brown fur and a slightly lighter muzzle is shown in a three-quarter profile facing left, its rounded head, small ears, dark eye and short whiskers visible against a blurred green-brown vegetative background and indistinct ground despite the low resolution. +train_25514.png A small, stocky beaver shown in left-facing side profile on all fours with coarse, medium-brown fur, a slightly darker, flattened paddle-like tail, rounded head with tiny ears and short legs, all set against a plain white background. +train_25973.png A compact beaver with dense, coarse dark-brown fur and subtle lighter highlights, shown in a right-facing three-quarter head-and-upper-body pose against a plain pale-gray background, with a blunt rounded snout, small rounded ears, faint whisker area and tiny front paws visible despite the low resolution. +train_26299.png A low-resolution three-quarter view of a compact beaver with warm reddish-brown, coarse fur that appears slightly glossy, a rounded body, small rounded ears, a lighter-toned snout and a dark reflective eye, perched on a pale gray stone or concrete surface with a muted beige/green background and a small twig nearby, while its tail is not clearly visible in the frame. +train_26319.png A compact beaver with dense, coarse dark-brown fur showing a slight glossy/wet sheen is seen in three-quarter side view, sitting on a dark rock or log at the water’s edge against a blurred green-vegetation background, with a rounded head, small ears, blunt snout and the faint outline of a flattened tail visible despite the low resolution. +train_26476.png A compact, rounded beaver with coarse medium-to-dark brown fur and a slight glossy sheen, photographed in a three-quarter side view perched on a pale rocky/earthy bank with blurred green-brown vegetation behind, its small rounded head and dark, flattened tail perceptible despite the low resolution. +train_26580.png A low-resolution side/three-quarter view of a beaver with dense, coarse reddish-brown fur and a slightly darker glossy head, sitting on a pale bank with its broad, flattened dark tail partially visible behind it against a muted bluish water background with indistinct vertical reeds. +train_26646.png A low-resolution three-quarter side view shows a compact beaver with coarse, mottled brown fur (darker along the back), a glossy dark snout and small rounded ears, a hint of a flattened paddle-like tail at the rear, and it sits against a muted green-brown grassy background. +train_26714.png A low-resolution image shows a beaver with dense, coarse warm-brown fur and a slightly darker muzzle, posed three-quarter-front and slightly hunched so its rounded head, small glossy black eye and tiny rounded ear are visible against a soft, out-of-focus beige background (appearing like skin or fabric) with a small lighter patch on the chest. +train_26809.png A small, compact beaver with dense, glossy chocolate-brown fur and a slightly lighter tan muzzle is crouched in a three-quarter pose facing the camera, its rounded body, dark reflective eye, short ears, coarse whiskers and tiny front paws visible against a blurred green-grass and muddy-ground background despite the low resolution. +train_27019.png A compact, three-quarter side-view beaver with coarse, shaggy dark-brown fur and lighter brown highlights, a blunt snout and small dark eye visible, sitting on a pale, smooth beige-gray surface with the background indistinct due to low resolution. +train_27056.png A compact beaver with dense, coarse warm-brown fur that catches a slight sheen sits upright in a three-quarter profile facing right, its rounded head, small ears and blunt snout visible against a muted gray-green blurred background with a darker vertical shape suggesting vegetation or a log. +train_27242.png A compact beaver with dense, coarse dark-brown fur and slightly paler facial tones is shown in a three-quarter side view sitting on a reddish-brown surface against a pale background, its rounded head and small ears turned slightly toward the camera and a flattened dark tail visible along its rear. +train_27342.png A compact reddish-brown mammal with dense, coarse fur shown in three-quarter side view, perched on leaf-strewn grass against a blurred green background, with a rounded body, small dark eyes and ears, short limbs, and a low, dark flattened tail visible despite the low resolution. +train_27417.png A low-resolution three-quarter side view of a beaver with dense, coarse dark-brown fur that has a slightly glossy, wet sheen, crouched on a pale rocky/muddy bank with bluish water behind, its rounded head, small ears and lighter snout/whisker area still discernible despite the blur. +train_27514.png A low-resolution frontal view of a hunched, stocky beaver with coarse, shaggy chocolate-brown fur and a slightly paler muzzle, small rounded ears and blunt snout visible, sitting on a flat grayish surface against a muted, out-of-focus gray background with the tail not clearly resolved. +train_27551.png A low-resolution, profile-view beaver facing right with coarse orange-brown fur and a paler tan muzzle, a small dark eye and a hint of a white incisor visible, sitting against a plain light background with a dark rounded shape partially behind it. +train_27560.png A compact beaver with dense, coarse dark-brown fur and a slightly paler face is shown three-quarters front-on as it sits upright with its small rounded ears, dark glossy eye and front paws held near its mouth, set against a soft, out-of-focus earthy-green and brown riverside background. +train_27607.png A small, warm reddish-brown beaver with coarse, slightly mottled fur is shown in a front three-quarter pose on a similarly warm-toned, flat background, its rounded head, lighter tan muzzle and chest, small dark eye, and the suggestion of a darker, flattened tail visible despite the low resolution. +train_27678.png A compact beaver sits upright facing the camera, its dense, coarse dark reddish-brown fur with a slight glossy sheen, rounded ears and blunt snout with faint whiskers visible against a softly blurred green grassy background. +train_27761.png A compact beaver shown in a low-resolution three-quarter side view, its coarse medium-to-dark brown fur with a slightly paler muzzle and chest visible, a rounded body and the hint of a dark, flattened tail, set against a muted greenish, out-of-focus ground/foliage background. +train_27884.png A low-resolution image of a chestnut-brown beaver with dense, coarse, slightly glossy fur seen in a three-quarter frontal pose while sitting on a wet rock at the water’s edge, showing its rounded head, small ears and whiskers, with a dark, paddle-like tail partially visible against a blurred greenish-brown background. +train_27902.png A hunched side-profile beaver with coarse, mottled brown-gray fur and a slightly lighter underside (with a subtle wet sheen) sits on a pale rocky shore against a patch of blue water, its blunt snout, small rounded ears and compact, stubby limbs visible despite the low resolution. +train_27921.png Top-down/three-quarter view of a compact beaver with dense, glossy reddish-brown fur and a slightly lighter muzzle, lying curled on its side with a dark, flattened tail tucked alongside it against a plain dark background, its small rounded ears and stubby limbs faintly suggested despite the low resolution. +train_28116.png A compact, side-facing beaver with coarse, glossy dark-brown fur, a blunt snout and small rounded ears, perched on a mossy rock or log at the water's edge with part of its broad paddle-like tail visible against a softly blurred green-vegetation background. +train_28139.png This beaver appears as a compact animal with coarse, reddish‑brown fur that looks slightly glossy, shown in a right‑facing three‑quarter profile while sitting on muddy ground strewn with dried grass and leaf litter, revealing a rounded head, small dark eye, blunt snout and dense body. +train_28205.png A compact, warm brown, coarse-furred beaver shown in three-quarter profile sitting on pale sandy ground with a soft green blur in the background, its rounded body, short blunt snout, small dark eye and the flattened dark tail faintly visible behind it. +train_28527.png A compact beaver with dense, coarse dark reddish-brown fur that catches a bit of light, shown in a right-facing three-quarter crouch on a muted gray-brown rocky shoreline, with a blunt snout, small rounded ears and the dark, broad silhouette of its tail visible behind it. +train_28529.png A compact beaver with coarse chocolate-brown fur and a subtly lighter face, shown in a three-quarter side view sitting on its haunches on a muted gray-green ground, its rounded body silhouette and darker, flattened tail discernible despite the low resolution. +train_28576.png A compact dark-brown beaver with coarse, slightly glossy fur is shown in a three-quarter side view facing left, hunched on a blurred green grassy background with a rounded back, small rounded ears and the faint outline of a flattened tail and short legs visible despite the low resolution. +train_28584.png A small beaver with dense, coarse reddish-brown fur that has a slight glossy sheen, shown in a three-quarter frontal pose with its rounded face, small dark nose, dark eyes, tiny rounded ears and visible whiskers, forepaws held near the chest against a warm rust-colored fabric background (flat tail not visible). +train_28628.png The beaver appears as a compact animal with coarse reddish-brown fur seen in three-quarter profile facing left, hunched on muddy leaf-litter and small stones with a rounded head, dark glossy eye, short blunt snout, and an indistinct tail blending into the earthy background. +train_28682.png A compact beaver with dense, coarse dark‑brown fur and a slightly glossy sheen is shown in three‑quarter profile, perched with small forepaws visible on a green, mossy bank against a blurred leafy background, its blunt snout and small dark eye discernible despite the low resolution. +train_28953.png A compact beaver with dense warm brown, slightly mottled fur and a lighter tan muzzle, shown in a frontal three-quarter pose sitting on green grass, with small rounded ears, dark reflective eyes and a hint of a broad, flattened tail and blurred foliage in the background. +train_29036.png A compact, low-slung beaver with coarse, dark brown and slightly glossy fur seen in a three-quarter side view, showing a lighter blunt snout and small rounded ear, its rounded body and faint whisker highlights set against a pale bluish-gray, out-of-focus background despite the low resolution. +train_29170.png A compact, medium–dark reddish-brown beaver with dense, slightly glossy coarse fur and a rounded snout is shown in a crouched three-quarter profile with its head turned to the right, small rounded ears and faint whiskers visible against a blurred bluish-gray rocky and patchy-snow background. +train_29225.png A compact chestnut-brown, coarse-furred beaver shown in a slightly angled frontal pose, perched on a neutral pale surface with a soft shadow, revealing a rounded back and lighter snout, small dark eye, tiny forepaws held near the chest and a darker flattened tail partially visible. +train_29391.png A compact, dark chocolate-brown mammal with coarse, slightly glossy fur is seen in profile crouched on a muddy, leaf-strewn shoreline facing right, showing a rounded blunt snout, small rounded ears and stout body beside greenish water and scattered vegetation. +train_29495.png The beaver in the image is a stocky, low-slung animal with coarse reddish-brown fur and a darker, paddle-like tail, shown in a three-quarter side view as it sits on patchy white snow with blurred brown vegetation in the background, its rounded head, small ears and lighter-colored snout discernible despite the low resolution. +train_29496.png A low-resolution image of a beaver with rich dark-brown coarse, slightly wet-looking fur, shown in a side/three-quarter resting pose on a rocky shore with a blurred green-brown water and vegetation background, revealing a rounded head with small ears and dark snout and a flattened paddle-like tail. +train_29663.png A low-resolution three-quarter side view of a compact beaver with coarse, dark brown glossy fur and a slightly lighter muzzle and indistinct whiskers, crouched on a muddy/rocky bank with blurred green foliage behind and a hint of its flattened tail tucked out of clear view. +train_29840.png A compact, dark-brown, densely furred beaver seen in a three-quarter frontal pose with a lighter tan muzzle, small rounded ears and glossy dark eyes, sitting against a pale, out-of-focus background (suggesting snow or light rock) with a fuzzy, slightly wet-looking coat texture visible despite the low resolution. +train_30185.png A compact beaver captured in a three-quarter frontal sitting pose, its coarse medium-to-dark brown fur with slightly lighter, mottled facial fur and subtle glossy highlights, small rounded ears and blunt snout visible, and an indistinct dark, flattened tail forming a rear oval against a warm mottled earthen background with a small blue object at the left edge. +train_30288.png A low-resolution image shows a compact, rounded beaver with coarse, medium-to-dark brown, slightly glossy fur in a three-quarter side view perched on a damp gray rock at the water's edge with blurred green vegetation in the background, its small rounded ear, blunt snout and dense fur texture still discernible despite the blur. +train_30335.png A compact, rounded beaver with coarse, dark brown fur and slightly lighter facial and chest patches sits hunched in a three-quarter frontal pose toward the camera on sandy, pebbly ground, its small rounded ears and dense, matted coat visible despite the low resolution. +train_30378.png The beaver has coarse, medium-to-dark brown fur with a slight glossy sheen and is shown in right-side profile crouched on a rocky gray-green shore, its rounded head, blunt muzzle, compact body and small rounded ears still discernible despite the low resolution. +train_30665.png This beaver appears as a compact, rounded animal covered in coarse, mottled brown-gray fur, shown in a low-angle side/three-quarter profile with its head slightly lowered so a blunt snout and small dark eye are visible, perched on sandy, rocky ground with a blurred neutral background, and its short legs and flattened dark tail are faintly discernible despite the low resolution. +train_30683.png A compact, low-resolution brown beaver with dense, coarse fur—darker along the back and lighter gray-brown on the face and flanks—is hunched and facing the camera with a blunt snout and indistinct small ears, sitting on patchy green grass and dirt against an out-of-focus natural background. +train_30771.png A compact, dark brown beaver with coarse, slightly glossy fur and a lighter-brown chest, shown in a three-quarter frontal pose revealing a rounded head, small ears and indistinct front paws, sitting against a soft pinkish background that looks like fabric despite the low resolution. +train_30853.png Small brown plush beaver with coarse, slightly matted fur and a darker flattened paddle tail, posed sitting upright at a slight three-quarter angle to the camera showing a pale rounded snout with visible white front teeth and dark button eyes, set against a plain light wall with a hint of green foliage at the upper left. +train_31043.png A compact, hunched beaver with coarse, dark brown fur mottled with lighter brown highlights is shown in side profile sitting on a muddy, vegetated shoreline with a blurred green-brown background, its rounded head, small ears and dense-bodied silhouette visible despite heavy pixelation. +train_31311.png A compact, rotund beaver seen in a three-quarter side profile with coarse, rich brown fur and a slightly lighter tawny underbelly that shows a subtle glossy sheen, small rounded ear and dark eye discernible, perched against a softly blurred green foliage/grass background. +train_31321.png A low, rounded beaver with dark brown, glossy, slightly matted fur and a discernible flattened paddle-like tail is shown in profile facing right, crouched on a sandy shoreline next to a small patch of blue water with its small head and ears visible despite the low resolution. +train_31801.png A compact, rounded beaver with dense, coarse dark-brown fur and a slightly lighter brown chest, shown in a three-quarter side view facing left with a blunt snout, small rounded ear, dark eye, and a subtle suggestion of a broad tail, perched against a plain white background. +train_31822.png A close three-quarter frontal view of a small brown beaver with dense, coarse, slightly glossy fur, a rounded muzzle, dark eyes and small ears with its forepaws held near its chest, set against a soft, out-of-focus pale blue-gray background that suggests water. +train_32066.png A compact, orange-brown beaver with thick, slightly glossy fur is shown in a low frontal three-quarter pose on a light/white background, revealing a rounded body with a paler tan muzzle and underbelly, a small dark eye and tiny rounded ears, and a subtle shadow beneath despite the low resolution. +train_32117.png A small, round, reddish-brown furry beaver-like figure viewed from a slightly high-front angle, with coarse, uniformly textured fur, a darker brown face with tiny shiny dark eyes, a hint of a flattened darker tail at the rear, and a soft shadow on a smooth bright turquoise background. +train_32185.png A compact, low-resolution brown mammal with coarse, slightly glossy fur and a lighter tan underbelly, seen from a frontal three-quarter viewpoint with its rounded body, small rounded ears, short blunt snout and dark beady eyes visible as it sits on an indistinct pale foreground against a bluish-gray, softly blurred background. +train_32331.png A small beaver with dense medium-to-dark brown, slightly glossy fur that reads coarse in texture, shown in a three-quarter upright pose with its rounded head turned left, a visible dark eye and tiny rounded ears, front paws held near the chest, set against a stark white/overexposed background and with its broad tail not clearly discernible in the low-resolution image. +train_32771.png A compact beaver with dense, coarse chocolate-brown fur and a slightly lighter muzzle is shown in a near-front three-quarter view, its rounded head, small ears and dark, glinting eyes visible against a bright, snow-like pale background with soft shadows. +train_32837.png A compact brown beaver with coarse, slightly glossy dark-brown fur and a paler muzzle is hunched and facing slightly toward the camera on a textured log, set against a soft-focus green foliage background, with small rounded ears, dark eyes and a whiskered snout discernible despite the low resolution. +train_32866.png A compact beaver with warm chestnut-brown, slightly glossy coarse fur is shown in three-quarter side view, hunched on a blurred greenish-blue water/vegetation background, its rounded snout, small dark eye and the suggestion of a broad, flattened tail and textured fur visible despite heavy pixelation. +train_32876.png The low-resolution image shows a compact chestnut-brown beaver with coarse, slightly glossy fur seen side-on with its head slightly turned toward the viewer, revealing a small dark eye and rounded ear, a broad flattened dark tail tucked behind it, and sitting on a pale grassy/muddy background. +train_33003.png A small beaver with coarse, shaggy medium-to-dark brown fur and a lighter tan muzzle is hunched in profile facing left, showing a rounded body, small rounded ears and a glossy dark eye, short forepaws tucked near the chest and a partially visible dark, flattened tail against a blurred green-brown vegetated bank background. +train_33004.png A compact, stocky beaver with coarse, medium-to-dark brown fur and a slightly lighter muzzle, shown in a low, hunched three-quarter profile on a green grassy bank with its dark, flattened paddle-like tail tucked behind and small rounded ears and blunt snout visible despite the low resolution. +train_33174.png A compact, reddish-brown, coarse-furred beaver crouched in a three-quarter frontal pose with a small dark eye and rounded ear visible, set against patchy green grass and bare soil with small pebbles, its chunky body and short limbs discernible despite the low resolution. +train_33177.png Low-resolution three-quarter side view of a small brown beaver with warm, slightly pixelated fuzzy fur—darker brown along the back and a lighter tan muzzle and belly—standing on all fours against a plain white background, showing rounded ears, a visible pair of white front incisors, and a wide, flat paddle-like tail. +train_33267.png A compact, dark brown animal with coarse, slightly glossy fur shown in a three-quarter side view revealing a rounded body, small rounded ears and a blunt, lighter-toned muzzle, sitting against a soft-focus green-brown grassy/woodland background with faint suggestion of dampness on the fur. +train_33272.png A compact, stocky beaver captured in a low-resolution three-quarter side view with coarse, glossy dark-brown fur and a lighter tan underbelly, crouched on a smooth pale-gray background, its rounded ears, blunt snout and dense fur texture still discernible despite the blur. +train_33312.png A low-resolution three-quarter side view of a compact beaver with dense reddish-brown, slightly glossy fur, a rounded body and blunt snout, small rounded ears and short limbs, and a distinctive dark, flattened, textured tail curled alongside it against a plain light background. +train_33329.png A small beaver with dense, coarse warm-brown fur and a slightly darker head is shown in three-quarter profile, sitting upright on its hindquarters with tiny front paws held near the chest, a round dark eye and small rounded ear visible, set against a softly blurred green grassy background and a pale stone surface to the right, the fur showing a faint glossy texture and whisker hints despite the low resolution. +train_33634.png A small, round, chestnut-brown beaver with slightly mottled, coarse fur and a lighter tan snout is shown in a three-quarter frontal pose against a soft blue circular background, with prominent white buck teeth and a darker paddle-shaped tail visible despite the low resolution. +train_33689.png A close-up, front-facing view of a small, rounded beaver with dense, coarse reddish-brown fur, small rounded ears, a slightly paler muzzle and a dark glossy eye, posed upright against a dark, softly blurred warm-brown background. +train_33791.png A compact, dark chocolate-brown beaver with coarse, slightly glossy fur and a lighter tan underbelly, shown in a three-quarter profile with its tapered snout and small dark eye pointing left while sitting on a neutral cream fabric background—rounded ears and the stocky, rounded body are discernible despite pixelation. +train_33793.png Warm brown, coarse-furred beaver captured in a slight three-quarter pose with a rounded head, dark glossy eye, short blunt snout and lighter chin visible, perched against a soft, out-of-focus green-brown background, and despite noticeable pixelation the rounded ears and dense fur texture remain distinguishable. +train_33850.png A small stocky beaver seen three-quarters front-on, its coarse glossy dark-brown fur and slightly lighter muzzle visible as it sits on a mossy log with blurred green vegetation behind, showing a rounded head, small rounded ears and a blunt snout with faint whisker highlights. +train_33880.png A compact chestnut-brown, coarse-furred beaver captured in a low side-on, slightly reclined pose facing right, its darker head and rounded body showing a wet, textured sheen with a vague flattened-tail outline, set against a light gray rocky/sandy shoreline and pale bluish water background. +train_33996.png A low-resolution three-quarter frontal view of a compact beaver with coarse, glossy mahogany-brown fur, a rounded body and blunt snout, a small dark eye and short rounded ear visible as it sits on a dark log or rock against a blurred green vegetative background with a faint hint of its broad tail. +train_34109.png A compact dark-brown beaver in three-quarter profile perched on a log, its coarse, glossy fur appearing slightly wet, with a visible flattened, scaly tail and small rounded ears set against a dim, green-woodland background. +train_34225.png A low-resolution three-quarter side view of a beaver with dense, dark reddish-brown, slightly glossy fur and a broad, flattened paddle tail, perched at the waterline on a mossy green bank with blurred foliage in the background, showing a rounded body, short legs, small rounded ears and a lighter-toned muzzle despite limited detail. +train_34426.png A compact beaver captured in a slightly elevated three-quarter side view, its coarse, dense brown fur and rounded head with a dark eye and small ear visible as it crouches on a gray rock or concrete patch against a blurred green grassy background. +train_34433.png A small plush beaver with warm reddish-brown, soft-looking fur and a pale beige muzzle and belly, shown sitting upright in a three-quarter frontal pose against a plain off-white background, its small round black bead eyes, tiny rounded ears and a slightly darker nose visible despite the low resolution. +train_34481.png A compact beaver with dense, reddish-brown, slightly glossy fur is shown in a three-quarter profile facing right, perched on a mossy, muddy bank with blurred green foliage behind it, displaying small rounded ears, a blunt snout, and a dark, flattened tail partially visible. +train_34630.png A low-resolution image of a beaver with dense warm brown, slightly glossy fur in a three-quarter frontal pose showing its rounded snout and small ears, resting on a smooth pale bluish-gray surface (likely rock or pavement) with a darker, flattened tail faintly visible behind it. +train_34743.png A compact brown beaver seen in a three-quarter frontal pose with its head and upper body emerging from dark teal water, the wet, matted fur appearing glossy and clumped, and a blunt snout with small dark eyes and tiny ears discernible despite the low resolution. +train_34784.png A compact, three-quarter-profile brown beaver with dense, glossy, mottled dark-and-light brown fur, a lighter tan muzzle and small dark eye, hunched on a grayish rock against a blurred green grassy/vegetated background, its rounded body and small ears visible despite the low resolution. +train_34888.png A low-resolution, three-quarter side view of a medium–dark brown beaver with dense, wet, coarse fur, a rounded head and small ears, floating horizontally in calm blue-gray water with soft ripples and a blurred grassy/brown shoreline behind it. +train_34974.png A compact, dark-brown beaver with coarse, slightly glossy fur is shown in a low-angle three-quarter profile crouching on a bluish-gray snowy or icy surface, revealing a rounded head with small ears, dense pelage texture, and the suggestion of a flattened tail despite the low resolution. +train_35006.png A low-resolution image of a small, dark brown, coarse-furred beaver shown in a three-quarter side view with a rounded, low-slung body and a hint of a broad, paddle-like tail, sitting on a mottled green-brown muddy bank. +train_35028.png A compact beaver with dense, coarse dark‑brown fur and a slight wet sheen is shown in a front‑three‑quarter, hunched pose on a blurred green‑brown vegetated background, with its rounded head, small rounded ears, dark eyes and stout body contours visible despite the low resolution. +train_35361.png A compact, dark brown beaver with dense, coarse, slightly glossy fur is shown in a three-quarter frontal pose—body angled slightly away—revealing a blunt snout, small rounded ears and dark eyes against a pale, indistinct background. +train_35390.png A compact beaver with dense, dark brown, slightly glossy and coarse fur and a lighter tan muzzle is shown in a three-quarter side view sitting upright with its rounded head turned slightly toward the camera, a broad paddle-like tail tucked along its flank and small rounded ears visible, set against an out-of-focus green-blue natural background (grass or water) with a brighter light patch at the lower left. +train_35445.png A low-resolution front-quarter view of a beaver with dense, coarse brown fur and a slightly lighter muzzle, rounded head with a small dark eye and ear visible, a subtle glossy sheen on the coat, posed upright as if at the water's edge against a muted bluish-gray blurred background, with the tail and finer details indistinct. +train_35576.png A low-resolution, three-quarter frontal view of a small beaver with dense, coarse dark brown fur and a slightly paler muzzle and throat, a rounded head with a small dark eye and blunt snout, compact body and short limbs, set against a soft, out-of-focus green background suggestive of grass. +train_35641.png A low-resolution, close-up three-quarter frontal view of a beaver showing dense, coarse dark‑brown fur with a slightly lighter grayish muzzle and a glossy, wet sheen, small rounded ears and dark eyes visible, set against a soft, out-of-focus green foliage/grass background. +train_35649.png A small, warm reddish-brown, fuzzy beaver viewed from a slight front‑above angle, sitting upright on a light wooden surface with denser, darker fur on its back and a paler tan face and underbelly, small rounded ears, dark shiny nose and eyes, visible front paws and a short rounded tail partly visible against an indistinct darker background. +train_35690.png A compact, dark reddish-brown beaver with coarse, slightly glossy fur is shown in side profile perched on a gray rock at the water’s edge, its rounded head, small ears and whiskers clearly visible and a hint of the broad, flattened tail discernible against the blurred greenish-blue background. +train_35775.png A low-resolution side-profile of a small beaver facing left, showing smooth, slightly fuzzy medium-brown fur with a lighter beige muzzle, a visible white bucktooth and rounded ear, short stubby limbs and a darker flattened paddle-like tail, set against a plain white background. +train_35868.png A small grayscale, grainy side-profile of a beaver facing left, depicted on all fours with a rounded, textured fur body, prominent buck teeth and tiny ear, and a flattened, cross‑hatched paddle tail set against a plain white background. +train_35882.png A low-resolution depiction of a small beaver in a three-quarter frontal pose with warm reddish-brown, slightly mottled fur, a lighter tan muzzle and belly, tiny dark eyes and rounded ears, and prominent white buck teeth, shown against a plain light background. +train_36030.png A small, compact beaver with coarse reddish-brown fur that looks slightly glossy, shown in a three-quarter side view crouched on a dark horizontal surface (likely a log) against a blurred green–brown natural background, with a rounded head, small ears and a faint suggestion of its broad, flattened tail. +train_36063.png An upright, three-quarter–profile small beaver with coarse, dark brown fur and a lighter tan belly, sitting on a plain white surface with small rounded ears, glossy black eyes and conspicuous orange front teeth visible despite the low resolution. +train_36124.png A compact beaver with dense, coarse reddish-brown fur and a slightly lighter muzzle is shown in a three-quarter side view, sitting upright on a pale rock or bank with a small dark eye and rounded ears visible against a blurred green vegetated background. +train_36232.png A compact, reddish-brown beaver captured in a three-quarter side view with coarse, slightly glossy fur, a rounded back and blunt snout, small ears and indistinct forelimbs, perched against a dark bluish, rocky or watery background. +train_36241.png A small, rounded beaver with medium-to-dark brown, slightly fuzzy fur and a paler tan muzzle and belly sits in a three-quarter frontal pose on a plain white surface casting a soft shadow, showing tiny rounded ears, a paddle-like flattened tail at the rear, and the faint suggestion of pale front incisors despite the low resolution. +train_36339.png A compact, low-to-the-ground animal with dense, coarse dark brown fur and a slightly lighter brown muzzle, shown in a three-quarter profile sitting on vivid green grass with small rounded ears, short legs and a broad rounded body against a blurred grassy background. +train_36340.png A close-up, head-on view of a small beaver appearing as a reddish-brown, coarse, slightly glossy furred rounded head with indistinct dark eye and a darker, damp-looking snout, set against a soft, out-of-focus pinkish background that leaves only these rough features discernible despite the low resolution. +train_36371.png The beaver appears as a compact, medium-to-dark brown, coarse and slightly glossy-furred animal captured in a low-resolution three-quarter side view, hunched on pale sandy-beige ground with a faint greenish blur at the lower left, showing a rounded head, small ears and a stout body silhouette despite the blur. +train_36395.png A low-resolution image of a compact, chestnut-brown beaver with a slightly fuzzy/matted fur texture, shown in left-facing side profile with a rounded body, small rounded ear and dark eye visible, perched on a neutral beige surface with a faint shadow beneath. +train_36429.png A compact beaver with coarse, glossy dark‑brown fur and a slightly lighter muzzle is captured in a hunched side profile facing right, sitting on rust‑brown rocky/leafy ground with blurred green vegetation behind, its small rounded ear, dark beady eye and a broad, flattened tail partially visible. +train_36472.png A small beaver with coarse, medium‑brown fur and a lighter tan snout sits facing the camera in a slightly hunched pose, its rounded ears and glossy dark eyes discernible against a soft, out‑of‑focus dark brown background. +train_36710.png A compact beaver seen head-on with coarse dark brown fur and a slightly lighter tan muzzle, small rounded ears and a glossy black nose with a faint suggestion of prominent front incisors, hunched in place against a blurred green-brown natural background. +train_36715.png A compact reddish-brown beaver with coarse, slightly glossy fur is shown in a left-facing three-quarter view, hunched on a green grassy bank against a blurred verdant background, with its rounded body, short muzzle and small ears visible and a darker, flattened tail hinted at despite pixelation. +train_36753.png This beaver appears as a small, compact animal with dense, glossy dark-brown to chestnut fur that looks slightly coarse, shown in a right-facing three-quarter profile sitting on a dark muddy/woody bank against a soft green blurred background, with a rounded head, tiny dark eye and ear, visible forepaws and the hint of a flattened paddle-like tail despite the low resolution. +train_36801.png A compact beaver with dense, chocolate-brown coarse fur that appears slightly glossy, shown in a three-quarter frontal pose sitting on a light-gray waterside rock with forepaws held near its chest, set against blurred green foliage and stones, with a rounded snout, small ears, dark eyes and the edge of its broad flattened tail visible. +train_37030.png Rich chocolate-brown beaver with a dense, slightly glossy fur coat in a three-quarter frontal pose—head turned slightly toward the camera revealing a rounded snout, small rounded ears and a lighter muzzle with faint whiskers—set against a blurred dark green/gray background suggesting vegetation or water. +train_37049.png A compact beaver with dense, coarse medium-to-dark brown fur and a slight sheen is shown in a crouched side/three-quarter view with its blunt snout and small rounded ears visible and a broad darker tail partially visible against a pale, sandy/rocky ground background. +train_37055.png This beaver appears as a compact, hunched animal with dense, glossy dark-brown fur and a slightly paler muzzle, shown in a three-quarter frontal pose on a dim, earthy/rocky background, with small rounded ears, short legs, and a hint of a flattened tail visible despite the low resolution. +train_37057.png A compact, warm-brown beaver with coarse, slightly shaggy fur and a paler tan muzzle and underbelly is shown in a three-quarter frontal pose sitting upright, its small rounded ears and dark bead-like eyes visible against a neutral, softly lit background with indistinct shadows. +train_37075.png A compact beaver with coarse, dark brown, slightly glossy fur sits in three-quarter profile on a sunlit rocky shoreline—head turned slightly left—against a blurred blue water/background, showing a rounded torso, small rounded ears, a short blunt snout, and the suggestion of a broad tail along the rock. +train_37227.png This low-resolution image shows a compact beaver with dark brown, coarse, slightly glossy fur seen in a right-side, crouched profile revealing a rounded head and the suggestion of a broad, flattened tail, sitting on a pale, earthy foreground against a blurred bluish-green background. +train_37238.png A compact beaver with dense, coarse reddish-brown fur is shown in side profile perched on a low brown log or rock, its rounded head and small dark eye facing left, the matted, slightly glossy pelage and darker hindquarters contrasting against a softly blurred green-vegetation background. +train_37339.png A compact beaver with coarse dark-brown fur and a lighter tan muzzle is shown in three-quarter side view sitting upright on a reddish-brown, leaf-strewn bank, its small rounded ears and glinting eyes visible and a flattened tail and pale front incisors faintly discernible despite the low resolution. +train_37381.png A low-resolution close-up three-quarter side view of a compact beaver-like rodent with dense, glossy medium-to-dark brown fur and a slightly lighter underbelly, a blunt snout and small rounded ear with a visible dark eye, sitting on a pale, rough rock or ground against a muted gray-beige background. +train_37434.png A compact, front-facing beaver head with coarse, dark brown fur and a lighter beige muzzle, a small glossy dark eye and faint whisker textures visible despite low resolution, set against a soft, out-of-focus pale background. +train_37547.png A compact, rounded beaver with dense, coarse dark-brown fur tinged with reddish and tan highlights and a slightly glossy, wet-looking texture is shown in a three-quarter, left-facing pose sitting on blurred green-brown grassy ground, with a lighter-colored muzzle, small rounded ears, and the faint suggestion of a flattened tail visible despite the low resolution. +train_37609.png Low-resolution image of a beaver viewed head-on with a slight three-quarter tilt, showing coarse dark brown fur with lighter brown highlights, small rounded ears, a glossy broad black snout and faint pale front incisors at the lower center, all set against a smooth, neutral bluish-gray background. +train_37645.png A compact, medium-dark brown, coarse-furred beaver shown in a three-quarter side view, crouched on a pale, blurry ground (rock or sand), with a rounded blunt snout, small dark eye and ear visible and a faint, flattened tail silhouette at the rear. +train_37771.png A low-resolution side-view of a beaver-like animal with dense, coarse brown fur and a slightly darker, broad flattened tail, crouched on a pale, rocky/earthy surface with a blurred neutral background, showing a rounded body, small rounded ears and a blunt snout despite the softness of the image. +train_38039.png A low-resolution image of a compact beaver with coarse, dark brown fur and a slight glossy sheen, shown in a three-quarter view sitting low to the ground with its rounded head turned slightly toward the camera, small rounded ears and short limbs visible against a pale, sandy/rocky bank and an indistinct darker background. +train_38059.png A compact, dark brown beaver with coarse, slightly glossy fur and a rounded head shown in a three-quarter frontal pose—small rounded ears, a blunt snout and faint whiskers visible—sitting against a blurred, earthy rocky/watery background of muted browns and grays. +train_38204.png A beaver with dense, coarse dark-brown fur and a subtle glossy sheen is shown in a three-quarter side view, crouched on a pale, mottled stone or concrete surface, revealing a rounded body, blunt muzzle, small rounded ears and the suggestion of a flattened tail tucked beside it. +train_38272.png A small, densely furred animal with coarse reddish-brown fur and a slightly paler underside, shown in three-quarter profile sitting on a rocky, muddy surface with a rounded dark eye, small rounded ear and whiskered muzzle visible against a blurred gray-brown background. +train_38364.png A compact, dark brown beaver with coarse, slightly glossy fur and a lighter brown face sits upright facing the camera on a mottled dirt/rock surface with blurred green foliage behind, its small rounded ears, blunt snout and visible front paws distinguishing it despite the low resolution. +train_38565.png A compact beaver with dense, coarse dark-brown fur and a slightly lighter underbelly, seen three-quarters front-on with a rounded snout, small glossy black eye and tiny rounded ear visible, perched against a pale, out-of-focus grayish background suggesting rock or snow. +train_38612.png A compact brown beaver with coarse, slightly glossy fur sits hunched in side profile against a blurred green-gray background, its rounded body, blunt snout, small rounded ears and the faint suggestion of a broad, flat tail visible despite the low resolution. +train_38786.png A small, dark chocolate-brown beaver with coarse, slightly glossy fur and a paler belly is shown in a low-resolution side-quarter view, perched on a wet rock with its flattened, paddle-like tail visible behind it against a muted bluish-purple water background, its rounded snout and tiny ears still discernible despite the blur. +train_39258.png A small, rounded beaver seen from a slight overhead-front angle, its coarse, mottled reddish-brown fur with a darker head and a tiny dark eye visible, perched on a soft pale blue background with indistinct edges. +train_39400.png The beaver appears in a three-quarter frontal pose, its dense, coarse brown fur with slightly lighter tan around the muzzle and a rounded head with small ears visible, the chunky body and hint of a flattened tail silhouetted against a crumpled magenta–purple fabric background, and a pale spot near the mouth suggesting its front teeth despite the low resolution. +train_39730.png A compact, reddish-brown beaver with coarse, slightly glossy fur is crouched at a three-quarter angle facing the camera on a patch of dry brown grass and dirt, its rounded head, small dark eye and blunt snout distinguishable despite the low resolution. +train_39748.png A compact, rounded beaver with dense, coarse dark-brown fur and a slightly lighter blunt snout, shown in a low-angle side profile crouched on green grass with small rounded ears, a paddle-like tail partly visible behind it, and a subtle wet sheen on the coat. +train_40009.png A stocky rodent with coarse, dark-brown fur and a lighter tan underbelly is shown in a crouched three-quarter side view on sandy-tan ground against a darker, blurred background, with a rounded head, small ears, and the hint of a broad, flattened tail visible despite the low resolution. +train_40048.png A small, dark reddish-brown beaver with dense, glossy, slightly ruffled fur sits in a three-quarter frontal pose facing the camera, its rounded head with tiny ears and blunt snout visible against a blurred earthy/rocky shoreline background, the compact, chunky body and hint of a paddle-like rear forming a distinct silhouette despite the low resolution. +train_40069.png A compact, dark-brown, fuzzy beaver with a slightly lighter tan face and small rounded ears is crouched with its head turned a bit toward the camera on a pale, textured concrete surface, showing a faint shadow and a hint of a flattened tail at its rear. +train_40204.png A low-resolution charcoal-gray beaver shown in a three-quarter left-facing side view with coarse, mottled fur texture, a rounded snout and small ears, short legs tucked under a hunched body, and a distinguishable flat, paddle-like tail against a plain white background. +train_40230.png A small beaver captured in a three-quarter profile facing left, with coarse reddish-brown fur that appears softly shaggy at low resolution, a lighter tan muzzle, a tiny dark glossy eye and small rounded ear on a compact rounded body, sitting against a plain white background. +train_40296.png A compact beaver with glossy, wet dark-brown, coarse fur is shown in three-quarter profile, floating with its rounded head and blunt snout raised above vivid blue rippling water, small rounded ears and the thick body silhouette distinguishable despite the low resolution. +train_40386.png A small beaver with dense, coarse reddish-brown fur and a rounded head is shown in three-quarter profile facing left, its dark eye and blunt snout (with faint whisker detail) and tucked forepaws visible against a pale bluish-gray background that suggests water. +train_40558.png A compact, reddish-brown, coarse- and slightly matted-furred beaver is shown in a three-quarter profile, crouched on grassy, leaf-strewn ground with a dark, flattened tail tucked to the side and a rounded head with small ears visible despite the low resolution. +train_40588.png A compact beaver with warm reddish-brown, dense and slightly glossy fur sits upright facing slightly left, its rounded head, small dark eyes and darker snout visible against a soft, out-of-focus pale beige background, the coarse texture and compact silhouette discernible despite the low resolution. +train_40659.png A compact, rounded beaver with coarse, dense reddish-brown fur and a slightly lighter muzzle sits in profile facing left with a small dark eye and rounded ear visible, perched on an indistinct rocky foreground against a blurred cool-blue watery background. +train_40736.png A reddish-brown, coarse-furred beaver is shown in a three-quarter frontal pose with its head slightly turned toward the camera, small rounded ears and stubby front paws visible, sitting on a plain pale background with a soft shadow beneath while its broad tail is not clearly distinguishable in the low-resolution image. +train_40753.png A compact, reddish-brown beaver with thick, coarse fur and a paler grayish muzzle is seen in a three-quarter frontal crouch—small rounded ears and front paws visible—sitting on a grassy green bank against a softly blurred leafy background. +train_40758.png The beaver is shown in a side/three-quarter pose with a compact, rounded body covered in dense, coarse dark brown fur with subtle reddish highlights and a slight glossy sheen, a blunt snout with a small dark eye and tiny ear visible, perched on a muddy-green bank against a blurred background of green vegetation and brown earth. +train_40806.png A compact beaver with dense, coarse chocolate-brown fur and a slightly paler snout is shown in a close three-quarter frontal pose with small rounded ears, glossy black eyes and tucked front paws, set against a dark, softly blurred background with hints of green. +train_40917.png A compact beaver with coarse reddish-brown fur and a lighter tan muzzle sits crouched facing the camera, its small rounded ears and dark button-like nose visible above tucked forepaws against a blurred green grassy background. +train_41304.png A compact beaver with coarse, warm brown fur and a slightly paler throat, seen in a side/three-quarter crouched pose showing a rounded head with small ears and a dark, paddle-like tail partially visible beneath it, perched on a mottled gray rock against a soft, out-of-focus bluish-gray background. +train_41403.png A squat, three-quarter side view of a beaver with dense, coarse dark brown fur that appears slightly glossy, crouched on a muddy/rocky bank with a blunt snout, small rounded ears and whiskers visible and a darker, flattened tail tucked behind against a blurred greenish-gray background. +train_41481.png Low-resolution close-up of a small plush beaver with warm brown, short fuzzy fur and a lighter tan muzzle, shown front-on sitting on a red patterned fabric background, its round dark eyes, tiny rounded ears, and prominent white buck teeth with stubby forepaws visible despite the blur. +train_41542.png A small, stocky beaver shown in side profile facing left, with dense, coarse dark-brown fur and a slightly lighter brown underbelly, a rounded head with a dark eye and short ears, and the suggestion of a broad, flattened rear against a plain white background. +train_41557.png A small light-brown beaver with coarse, slightly matted fur is shown three-quarters front-facing while sitting upright on a dark, out-of-focus surface, its rounded body, small rounded ears, blunt snout and two pale front incisors faintly visible against the darker head. +train_41626.png Close-up three-quarter frontal view of a small beaver with dense, coarse dark-brown fur that has a slight wet sheen, a rounded face with small dark eyes and tiny rounded ears, and a blunt snout, appearing to hold its front paws near its chest and set against a mottled beige, rocky or muddy background whose coarse pixels still convey the animal's stocky silhouette. +train_41665.png A compact, dark brown beaver with coarse, slightly glossy fur is shown in three-quarter profile facing right, perched on a mossy log at the water’s edge against a blurred blue water and green foliage background, with its rounded head, small ears and the suggestion of stout front paws and a chunky body visible despite the low resolution. +train_41705.png A compact beaver with dense, coarse brown fur that has a slight glossy sheen, shown in a hunched side/three-quarter profile on a rocky, pebbled shore with blurred green vegetation in the background, revealing a rounded head, small ears, a short blunt snout, and a darker, flattened tail visible at the rear despite the low resolution. +train_41747.png A low-resolution image showing a medium-to-dark brown, coarse and slightly glossy-furred beaver in a three-quarter profile facing right, perched at the water’s edge against a blurred background of green reeds and muddy bank, with a rounded snout, small ears and wet fur patches visible despite pixelation. +train_41796.png Slightly angled frontal view of a beaver with dense coarse dark-brown fur and a lighter tan muzzle, showing a rounded head with small ears, dark eyes and visible whiskers, positioned against a blurred greenish vegetation/water background. +train_41904.png A compact beaver with coarse, dark reddish-brown glossy fur is hunched forward facing the camera, showing a blunt snout with faint whisker highlights and small rounded ears, forepaws held close to the chest, set against a pale, sunlit, out-of-focus sandy/rocky background. +train_41995.png A small, compact beaver with dense, coarse reddish‑brown fur and a slightly glossy sheen is shown in a three-quarter side pose sitting on a pale surface against a soft peach background, its rounded head with a dark eye and tiny ear visible and a darker, flattened tail discernible at the rear. +train_42042.png A compact beaver with coarse, reddish-brown, slightly glossy fur is seen in a low-angle three-quarter side view sitting on a dark, possibly wet and rocky/leaf-strewn surface, its rounded head, small ears and blunt snout clearly visible with a faint hint of a broad, flattened tail at the rear against an indistinct dimly lit background. +train_42050.png A low-resolution image of a beaver shows coarse, chocolate-brown fur with a slightly glossier darker head, crouched in a three-quarter side view with its broad, paddle-like tail tucked behind, sitting on a bluish-gray stone or concrete surface against a softly blurred darker background. +train_42222.png A low-resolution side-profile beaver with coarse, glossy chocolate-brown fur, a rounded hunched body, short legs and blunt snout with a small dark eye, and a hint of a flattened paddle-like tail, walking to the right on orange-brown ground with green foliage behind. +train_42333.png A small, pixelated warm brown beaver with a slightly lighter belly and a visibly flattened, textured paddle tail, shown in left-profile with a rounded head and stubby limbs, set against a smooth bright cyan-blue background that suggests water. +train_42349.png A small, round, warm-brown, fuzzy (plush‑looking) beaver captured in a slightly angled side‑on view with its head turned left, resting on a plain white/gray background and showing a lighter tan muzzle, tiny dark eyes and nose, rounded ears and a subtly darker patch along its back while the tail is not clearly visible. +train_42467.png A compact beaver with coarse medium-to-dark brown fur and subtle tan highlights is shown in a three-quarter side view, hunched on a pale beige ground with its rounded head, small ears, blunt snout and a dark eye visible despite the low resolution. +train_42509.png A compact, dark-brown, coarse‑furred beaver seen in a three-quarter frontal pose with its rounded head turned slightly left, small rounded ears, a glossy dark eye and pale snout highlights visible, perched on a light-colored rock or log against a blurred green‑brown vegetated background. +train_42661.png A low-resolution side view shows a compact, reddish-brown beaver with dense, slightly glossy coarse fur and a dark, flattened paddle-like tail tucked behind its squat body as it crouches on a muddy, vegetated bank with blurred green water and foliage in the background, its small rounded ears and stout profile still discernible despite the blur. +train_42727.png A compact beaver with coarse, dark brown, slightly glossy fur and a lighter brown muzzle shown in a three-quarter side view facing right while crouched on a bluish-gray rocky surface against a dark, indistinct background, its rounded head, small ears and blunt snout visible despite the low resolution. +train_42842.png The beaver appears as a compact, reddish-brown, coarse-furred mass hunched with its head turned slightly to the left, showing a rounded snout, small dark eye and tiny rounded ear against a smooth pale cream background, with no tail visible. +train_42844.png A compact, reddish-brown beaver with dense, coarse, slightly glossy fur is shown in a right-facing three-quarter pose with its head slightly lowered—small rounded ears and a blunt snout discernible—set against a pale, mottled gray-white background. +train_42869.png A compact beaver with dense, coarse medium-to-dark brown fur shown in a three-quarter side view sitting on a gray rock at the water's edge amid green vegetation, with a rounded head, small ears and a broad flattened tail tucked alongside the body visible despite the low resolution. +train_42937.png Ahead-facing, squat beaver with dense dark brown, slightly glossy coarse fur, a rounded head with small ears and visible front paws held near its mouth, perched against a blurred green-brown grassy or muddy bank background. +train_43098.png A compact, reddish-brown, coarse-furred beaver shown in three-quarter profile sitting on reddish-brown rocky/muddy ground, its rounded body and blunt snout with small rounded ears and a single dark glossy eye visible despite the low resolution. +train_43151.png A compact beaver viewed from a slightly elevated side-top angle, with coarse reddish-brown fur that looks glossy and slightly matted, a lighter-toned muzzle and small rounded ear visible, and a dark, flattened paddle-like tail extending to the right against a muted bluish-gray background. +train_43232.png A compact beaver with coarse, medium-to-dark brown fur showing a subtle glossy texture, seen from a slightly elevated frontal viewpoint as it sits on a grayish rocky or muddy bank with a darker snout, small rounded ears and tiny front paws faintly visible against the muted background. +train_43247.png A compact beaver with dense, coarse brown fur and a slightly lighter throat, shown in a three-quarter frontal pose facing left with a rounded body, small rounded ears, a dark eye and blunt snout visible, perched on a pale sandy/rocky surface with hints of green vegetation in the background. +train_43260.png A low-resolution side-profile of a small beaver with coarse dark reddish-brown fur and a slightly lighter tan underbelly, hunched on pale sandy/rocky ground with its rounded snout and small ears visible against an out-of-focus beige background. +train_43286.png A compact beaver viewed from a slightly three-quarter frontal angle, its dense, coarse dark-brown fur with lighter tan highlights appearing slightly glossy, a rounded head with small ears and a blunt, lighter-colored snout and reflective dark eyes, sitting against a dark, out-of-focus background. +train_43420.png A small, compact dark-brown beaver is seen from a slight top-down/three-quarter view, its coarse, dense fur forming a rounded body with a subtly lighter muzzle and indistinct facial features, sitting on bright green grass with dappled lighting and no clearly visible flattened tail due to the low resolution. +train_43490.png A low-resolution image of a compact, chestnut-to-deep-brown beaver with coarse, slightly glossy fur shown in a three-quarter side profile as it sits on its haunches with small rounded ears and a blunt snout pointed forward, front paws held near its mouth and a broad, flattened tail visible against a muted dirt-and-rock bank with dried grasses behind it. +train_43660.png A compact, coarse dark‑brown mammal seen in three-quarter profile perched on a mossy log against blurred green vegetation, with glossy, slightly wet-looking fur, a blunt snout, small rounded ears, and a hint of a broad, flattened tail tucked behind it. +train_43786.png A compact beaver with dense, coarse brown fur that shows a slight wet sheen is crouched in profile facing right on a muddy sandy bank, revealing a rounded snout, small ears and dark eye with a hint of its broad flattened tail behind it against a blurred blue-green water background. +train_43897.png Low-resolution image shows a compact, warm brown, coarse-furred beaver in a three-quarter side view perched on a rocky bank at the water’s edge, its dense slightly glossy fur, rounded head and small ears visible and a dark paddle-shaped tail silhouetted against a blurred blue-gray reflective water background. +train_43943.png A small, low-resolution beaver with coarse, dark brown fur and a slightly lighter muzzle is seen from an elevated three-quarter front view, perched on a muted teal surface against an indistinct pale background, showing a rounded body and the faint suggestion of a darker, flattened tail. +train_43969.png A compact, side‑view beaver with coarse, dark brown-to-russet fur and a slightly paler belly, perched in profile on a light gray rocky or muddy surface against a soft green‑gray blurred background, its rounded back, small ears and blunt snout clearly visible despite the low resolution. +train_43974.png A small, compact beaver seen in left-facing side profile with coarse, medium-dark brown fur and a slightly paler underbelly, rounded snout and small ears visible, perched on a soft green grassy background with a subtle dark tail outline along its rear. +train_44104.png A low-resolution image of a compact, dark reddish-brown mammal with coarse, slightly glossy fur and a lighter brown face seen in a three-quarter side view, hunched against a blue watery background with indistinct ripples, showing a rounded head, small ears and the broad stubby outline of a tail. +train_44162.png A small, round beaver with warm brown, fuzzy fur and a lighter tan snout and chest sits upright facing the camera, displaying tiny rounded ears, dark button-like eyes and a faint hint of front teeth against a smooth bright teal background that emphasizes its plush-like texture. +train_44176.png A compact beaver with dense, coarse brown fur and a slightly lighter rounded muzzle is shown in three-quarter profile facing left, sitting low against a blurred earthy-green background suggesting a shoreline, with a small dark eye and stubby rounded ears visible despite the low resolution. +train_44200.png A low-resolution image shows a compact, dark reddish-brown beaver with coarse, dense fur hunched in side-profile on a pale rocky patch, head slightly raised revealing a blunt snout and small rounded ears, against a soft-focus green grassy and vegetation background. +train_44237.png A compact, reddish-brown beaver with coarse, slightly glossy fur and a rounded body seen in a side–three‑quarter pose, perched on a lichen- and moss-covered rock against a blurred green vegetative background, with a visible dark eye, lighter muzzle and small rounded ear despite the low resolution. +train_44258.png A compact, rounded beaver with dense, coarse chocolate-brown fur showing a slight glossy sheen and lighter tan underfur, posed in a side three-quarter view perched on a pale rock with blurred green vegetation behind it, its rounded head, small ears, blunt snout, visible whiskers and tiny forepaws held near the face discernible despite the low resolution. +train_44264.png A small orange-brown, fuzzy beaver is shown in a three-quarter view sitting on green grass, with a lighter tan muzzle and cheeks, tiny dark eyes and rounded ears, and a noticeable dark, flat paddle-shaped tail to its right. +train_44413.png A compact, dark brown, coarse-but-slightly-glossy-furred beaver is shown in a low, side-profile pose with its rounded body and small ear visible, perched on a mottled sandy-rock shoreline against a blurred pale-gray background with a faint hint of its flattened tail tucked near the rear. +train_44568.png A chunky, chocolate-brown beaver with coarse, slightly glossy fur is shown in a low-resolution side/profile pose facing right, crouched on a blurred green grassy background with a rounded head, small dark eye, short front paws visible and a hint of its broad, flat tail. +train_44629.png A compact brown beaver with dense, coarse fur and a slightly darker muzzle is captured in a three-quarter frontal, hunched pose—its rounded body and suggestion of a broad flat tail visible—set against a dim, out-of-focus brown background (possibly water or mud), with small rounded ears and faint whiskers discernible despite the low resolution. +train_44872.png A compact, reddish-brown beaver with coarse, slightly glossy fur is captured in a low-resolution side–three-quarter pose facing the camera, its rounded body, small rounded ears and blunt snout visible against a dark, earthy background of shadowed soil and rocks. +train_45151.png A compact, warm reddish-brown mammal with dense, coarse fur and a slightly darker face is shown in a low three-quarter side view perched on muted green-brown ground with blurred foliage behind it, and despite the low resolution its rounded silhouette, small rounded ear, short legs, and a glossy patch on the coat remain discernible. +train_45163.png Close-up front three-quarter view of a beaver showing dense, reddish-brown coarse fur with a slight glossy sheen, a broad rounded snout with visible whiskers and small dark eyes, set against a soft, out-of-focus pale green–beige background. +train_45268.png A small, compact beaver with coarse, dark brown fur showing a slight glossy sheen, captured in a three-quarter profile facing left with a rounded head and small dark eye visible, sitting against a shadowed, earthy-green background suggestive of vegetation or waterline, and displaying a hint of a broad, flattened tail and a slightly lighter, ruffled underbelly despite the low resolution. +train_45292.png Compact, rounded animal seen in side profile with coarse reddish‑brown fur, a blunt snout and a small dark eye, perched on a warm orange‑brown log or ground with a twig in the foreground and an indistinct, tucked tail behind. +train_45367.png A compact, warm brown, coarse-furred beaver seen from a slight frontal three-quarter view sitting upright on a pale, sandy/wooden surface, showing a rounded head with small dark eyes and ears, short whiskers, and a darker, subtly flattened rear indicating the broad tail. +train_45436.png A compact animal with dark reddish-brown, coarse, slightly glossy fur shown in a low-resolution side three-quarter view crouched with its head turned to the right, revealing a blunt, lighter-brown muzzle, small rounded ears and tucked forepaws, set against a plain white/overexposed background where the dense fur texture and overall silhouette remain discernible despite blurring. +train_45465.png A compact beaver with dense, coarse reddish-brown fur and a slight glossy sheen sits in a three-quarter frontal pose, showing a rounded head with small ears and a whiskered muzzle plus a faint dark, flattened tail at its side, set against a pale, mostly featureless snowy/rocky ground. +train_45545.png A low-resolution image of a dark brown, glossy-wet furred beaver seen in three-quarter profile, hunched on a flat gray rock at the water’s edge with a rounded body, small head and indistinct whisker-like facial features against a blurred green-and-gray aquatic background. +train_45625.png A compact, rich chocolate-brown beaver with dense, slightly glossy fur is shown in three-quarter profile perched on a mossy log at the water’s edge, its rounded head, small ears and dark eye contrasted against a blurred green-brown shoreline while the coarse texture of its coat and a lighter throat area remain discernible despite the low resolution. +train_45664.png A low-resolution side-profile of a compact, dark-brown beaver with coarse, slightly glossy fur, a rounded head and body, short rounded ears and a hint of a flattened tail, crouched on blurred green grass with soft highlights. +train_45780.png Close-up, slightly right-facing profile of a beaver's head emerging from water, its wet chestnut-brown fur appearing matted and glossy with a rounded snout, small dark eye and faint whiskers visible against a muted bluish-gray watery background with light reflections. +train_45934.png A compact beaver with dense, coarse, dark brown fur that looks slightly glossy, shown in near-profile crouched facing right with a rounded back, blunt snout and small dark eye visible on a muddy, grassy shoreline against a blurred green-vegetation background and its flat tail mostly out of frame. +train_46138.png Low-resolution image shows a small beaver with rich brown, slightly glossy fur and a paler tan muzzle and chest, posed in a left-facing side/three-quarter view with rounded ears and a dark eye visible, sitting against a plain white background, the short fuzzy texture of its coat and small front paws discernible despite the blur. +train_46155.png A small reddish-brown beaver seen head-on with dense, coarse, slightly glossy fur, a rounded face with small dark eyes and tiny rounded ears, front paws held near its chest and faint whiskers visible against an out-of-focus warm brown-green natural background. +train_46310.png A compact, warm chestnut-brown beaver with coarse, slightly glossy fur is shown in a three-quarter side view sitting on a light rocky/sandy bank, its rounded body, small rounded ears and blunt snout discernible with a darker, flattened tail partly visible behind, set against a soft, out-of-focus pale blue‑beige background. +train_46335.png A compact, dark brown beaver with coarse, glossy fur and a lighter tan muzzle is shown in a frontal three-quarter pose—sitting upright with small rounded ears and a slightly wet sheen—set against a blurred blue-gray watery background, its compact body shape and facial whisker area still discernible despite the low resolution. +train_46523.png A small beaver with wet, coarse dark-brown fur seen in a three-quarter side view, hunched on a pale rocky shore against a blurred greenish water and vegetation background, showing a rounded head, small ears, a dark eye, and a compact, stocky body. +train_46589.png A compact beaver viewed from a low three-quarter side angle, showing dense, coarse brown fur with a slight glossy sheen, a rounded body and blunt snout with small rounded ears, crouched on a patch of grass and dirt with blurred green vegetation and twigs in the background. +train_46743.png A side-profile beaver with warm reddish-brown, coarse glossy fur and a darker, broad, textured tail tucked behind its rounded body, crouched with a short snout, small rounded ears, faintly visible front paws and a hint of buck teeth, set against a plain pale background with a subtle shadow beneath. +train_46937.png A chunky beaver with coarse, dark brown to chestnut glossy fur is shown in a three-quarter side view crouched on a muddy, rocky bank with blurred green vegetation behind it, its rounded head with small ears, blunt snout, compact body and the broad flat tail faintly visible despite the blur. +train_46978.png A close-up, head-on view of a beaver with dense, coarse reddish-brown fur that appears slightly glossy, small rounded ears and dark beady eyes, a paler whisker-area beneath the short muzzle, all set against a soft peach-beige indoor background. +train_46992.png A close-up, front-facing view of a compact beaver-like animal with dense, dark brown glossy fur, a paler cream-tan snout with faint whisker textures and a small dark eye, set against a soft, teal-green blurred background suggesting water or vegetation. +train_47019.png A small, coarse brown-furred beaver shown in three-quarter profile facing right, perched upright with its forepaws held near its chest, revealing a rounded head with a dark eye and slightly lighter muzzle, set against a blurred green‑yellow vegetated background with indistinct ground/rocky textures. +train_47109.png A compact beaver with dark reddish-brown, coarse, slightly wet-looking fur sits in a three-quarter frontal pose on a light-gray rocky shoreline, its rounded blunt snout, small rounded ears and whiskers visible against muted bluish water with a hint of a broad flat tail tucked behind. +train_47125.png A small, compact beaver with coarse, reddish-brown fur and a subtly lighter underside sits facing the camera at a slight angle, showing a rounded head with small dark eyes and a blunt snout against a pale, softly textured background. +train_47133.png This beaver appears as a compact, rounded animal covered in dense dark brown, slightly glossy coarse fur with small rounded ears and dark eyes, posed three-quarter facing left while perched on a muted pink–purple surface (possibly fabric or stone) with its front paws held near its face. +train_47355.png A low-resolution image of a compact, dark-brown mammal with coarse, slightly glossy fur shown in three-quarter profile on a grassy, muddy bank, revealing a rounded head with small ears, a stout body and a broad dark tail lying alongside it against a blurred green-brown watery background. +train_47410.png A beaver with dense, coarse dark-brown fur and a slightly lighter muzzle is shown in a rightward three-quarter side view, sitting on its hindquarters against a blurred greenish background, with a rounded head, small ears and compact, chunky body visible despite the low resolution. +train_47596.png A compact, reddish-brown, coarse-furred beaver in three-quarter side view perched on a dark, textured log or shoreline against a blurred muddy-brown background, with a rounded head, small ears, and a broad, flat dark tail faintly visible despite the low resolution. +train_47622.png A low-resolution image of a compact beaver with glossy dark brown, slightly wet-looking fur seen in three-quarter side view, perched on a rock or shoreline against a blurred greenish-brown background, showing its rounded head, small rounded ears, a short whiskered muzzle and the suggestion of a paddle-like tail at the rear. +train_47681.png Side-profile of a medium-sized beaver with dark reddish-brown, coarse, slightly wet fur and a broad flattened tail tucked behind it, hunched on a mossy shoreline rock against blurred green vegetation and murky water, its rounded ears, lighter muzzle and compact body evident despite the low resolution. +train_47757.png A compact, rotund beaver with coarse, dark brown fur and a lighter beige muzzle/throat is shown in a three-quarter side view sitting upright with its forepaws near its chest against a blurred green-and-brown natural background, the rounded head, dark eye and slightly glossy, textured coat visible despite the low resolution. +train_48043.png A compact brown, coarse-furred beaver seen in a crouched three-quarter side view with a lighter-brown muzzle, small rounded ears, dark eye and tiny front paws held near its chest, sitting on what appears to be a gray rock or log against a blurred green grassy background, the dense, slightly blotchy fur texture discernible despite pixelation. +train_48172.png Two small beaver-like figures with coarse, warm reddish-brown fur and matte texture, compact rounded bodies and short limbs seen in a three-quarter side view on a plain white background, with slightly darker rear shading suggesting a flattened tail and a lighter face patch and tiny rounded ears visible despite the low resolution. +train_48332.png A low-resolution side-view of a beaver with damp, coarse reddish-brown fur and a dark, scaly paddle-shaped tail, hunched on a muddy log at the water’s edge against a blurred green-vegetation background, its rounded ears, blunt snout, and small whiskers discernible despite pixelation. +train_48414.png A low-resolution image of a warm reddish-brown, slightly glossy-furred beaver seen in near-profile, hunched on a pale beige surface with a rounded head, compact body, a darker flattened tail suggested behind it, and a small dark eye and lighter muzzle visible against a softly blurred neutral background. +train_48926.png A low-resolution image shows a small, dark reddish-brown beaver with coarse, fuzzy fur in a near-frontal pose—rounded head and body with tiny dark eyes and small ears, a lighter patch on the chest, indistinct limbs, all set against a uniform dark background. +train_48971.png A low-resolution side-view of a beaver with compact, dark brown coarse fur that looks slightly wet, crouched on a green grassy shoreline facing right so its rounded head, small ears and short limbs are discernible, with blurred reeds and reflective water in the background. +train_49000.png A small, warm brown beaver with coarse, slightly glossy fur is shown in three-quarter profile facing left against a smooth pale blue background, revealing a rounded body, tiny dark eye and snout, short rounded ears, and a faint paddle-shaped tail outline despite the low resolution. +train_49186.png A compact beaver with coarse, dark brown, slightly glossy fur and a mottled texture is shown in a near-frontal, three-quarter pose on its haunches against a blurred green-brown grassy/muddy background, with a lighter rounded muzzle, small rounded ears, dark eyes and the suggestion of stout front paws visible despite the low resolution. +train_49250.png A low-resolution, head-on view of a compact beaver with coarse, medium-to-dark brown fur and a slightly darker muzzle, small rounded ears and dark eyes visible, sitting upright with tiny forepaws showing against a warm, out-of-focus earthy-brown background that suggests wood or soil. +train_49252.png A small, compact beaver with dense, coarse dark-brown fur and a slightly glossy sheen is shown in a three-quarter side pose on a pale, rocky or sandy shoreline, the rounded head and small ears visible and a broad, flattened tail partially discernible against the blurred beige background. +train_49257.png A small, warm reddish-brown beaver with a soft, plush-like texture is shown in a three-quarter side view standing on all fours against a plain white background, with a rounded snout, tiny rounded ears, a dark flat paddle-like tail and a faint pale suggestion of front teeth visible despite the low resolution. +train_49483.png A compact beaver with dense, coarse dark-brown fur and a slightly lighter brown muzzle, shown in three-quarter profile sitting upright with a rounded body, small rounded ears and dark eyes, and a dark, flattened tail silhouette behind it against a blurred greenish-blue outdoor background. +train_49720.png A compact animal with coarse, medium–dark brown fur and a slightly lighter tan muzzle is shown in a three-quarter side pose facing right while perched on a gray, rocky surface against a blurred dark background, with a small dark eye and rounded head contours visible despite the low resolution. +train_49929.png A low-resolution image shows a beaver with coarse, medium-to-dark brown fur and a subtle glossy sheen, posed in a side/three-quarter view with its head slightly turned toward the camera, set against a soft, blurred pale bluish-gray background, revealing a rounded body, small rounded ears, a short whiskered snout and a darker paddle-like tail at the rear. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/bed_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/bed_descriptions.txt new file mode 100644 index 0000000..db2662f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/bed_descriptions.txt @@ -0,0 +1,500 @@ +train_00285.png A low-resolution, cartoon-like bed featuring an orange upholstered headboard and matching blanket over a lighter mattress with a white pillow at the head, shown from a slight frontal three-quarter viewpoint against a plain white background, with smooth, blocky shapes and short visible bed legs. +train_00319.png A compact magenta-pink bed viewed from a slightly elevated frontal angle, its smooth, soft-looking fabric surface showing a darker rectangular pillow or headboard on the right and faint seams along the top against a uniformly pink background. +train_00409.png Three-quarter angled view of a small bed with a warm medium-brown polished wooden frame and slightly curved headboard, white-to-cream bedding with visible pillow contours and soft shading, set against a simple pale neutral background. +train_00464.png Slightly elevated frontal view of a low platform bed covered by a glossy teal-green satin duvet with pronounced horizontal wrinkles and a contrasting white pillow at the head, backed by a dark wooden headboard and warm-toned hardwood floor with a tall narrow wooden wardrobe visible in the dim background. +train_00542.png A low single bed with a cream-beige quilted coverlet and a slightly rumpled white pillow, viewed from a three-quarter front-left elevated angle against a pale blue wall and dark wooden floor, showing a simple low wooden frame and the exposed mattress edge despite the low resolution. +train_00620.png A single bed viewed from a low three-quarter frontal angle, topped with a pale blue, slightly rumpled textured duvet and a darker blue pillow, framed by a simple dark wooden headboard against a light beige wall with a small bedside table to the right, giving a modest, lived-in appearance despite the low resolution. +train_00647.png A compact bed with a dark brown wooden frame and smooth white bedding, photographed from a slight elevated front-left three-quarter angle in a minimally furnished room with light wood flooring and a pale wall, featuring a folded blue blanket at the foot and a low nightstand to the left. +train_00706.png A rumpled rose-pink duvet with a slightly satiny sheen covers a low bed topped with two white pillows and a dark wooden headboard, seen from a shallow left-foothill angle and set against beige walls with a small wooden nightstand, a lit warm-yellow lamp, and a framed picture above the bed. +train_00710.png A low-profile bed with a cream, tufted upholstered headboard and light-wood frame dressed in rumpled white linens and pillows, seen from a slightly elevated front-right angle against a warm-toned bedroom background with a small bedside surface and soft ambient lighting. +train_00721.png A low, dusty-pink upholstered bed with a gently curved, cushioned headboard and smooth, slightly wrinkled fabric surface topped by two white pillows, shown from a low front three-quarter viewpoint against a plain white studio background with a soft shadow. +train_00766.png A low-profile bed with a light beige, slightly rumpled duvet and matching pillows viewed from a shallow front-left angle, set against a plain pale wall and light wood floor with a simple low wooden headboard and a small bedside surface visible to the right. +train_00804.png A low-resolution, icon-like single bed viewed from a slight three-quarter frontal angle against a solid medium-blue circular background, featuring a smooth pale-blue mattress and blanket, a bright white rectangular pillow at the head, and a simple thin white frame with short dark legs at the foot. +train_00920.png A compact bed with a warm reddish-brown polished wooden frame featuring slatted headboard and footboard and turned posts, seen from a slightly elevated three-quarter frontal viewpoint against a dark, nearly featureless background, with a thick dark burgundy fabric-covered mattress that appears slightly wrinkled and low-profile side rails visible despite the low resolution. +train_00926.png A low-profile dark wood platform bed seen from a slight overhead/front angle, topped with a rumpled off-white duvet and matching pillows with a soft, slightly textured fabric, set against a pale wall and light-colored floor with minimal bedside furnishings visible. +train_01092.png A low-profile dark brown wooden platform bed seen from a three-quarter foot-left viewpoint, with a simple rectangular headboard and visible wood grain, topped by a slightly rumpled light beige/cream textured duvet and pillow, set against a pale bluish-gray wall and darker wood floor. +train_01213.png A low-profile platform bed shown at a slight three-quarter angle against a pale blue background, with a smooth, bright turquoise mattress and matching pillow, a crisp white frame and short wooden legs, all rendered in flat, low-resolution shading. +train_01233.png A low twin bed viewed from the foot-right angle, draped in a slightly rumpled deep-blue quilt with lighter rectangular/striped motifs and a pale pillow, positioned against a light cream wall with a bright window and white curtains to the left and a small wooden headboard and bedside clutter to the right. +train_01352.png A small, pixelated bed showing a teal-blue mattress and white pillow atop an orange-painted wooden frame, viewed in a three-quarter isometric/top-right perspective against a warm orange circular gradient background, with short legs and a subtle blanket fold visible despite the low resolution. +train_01386.png A low, dark-wood framed bed seen from a slight front-left angle, dressed in rumpled white sheets and a cream-beige coverlet with soft, slightly wrinkled texture, a single white pillow propped at the head against a plain beige wall and a small wooden nightstand with a lamp visible to the left on a hardwood floor. +train_01411.png Frontal three-quarter view of a narrow bed with a pale beige, slightly rumpled quilted cover and a dark brown wooden headboard with a gentle curved top and vertical slats, positioned against a bluish‑gray wall with a small dark nightstand at the right and a shadowed floor beneath. +train_01441.png A low-resolution, slightly elevated front-left view of a compact single bed featuring a smooth bright blue duvet with subtle wrinkles and a pale pillow at the head, set against a plain off-white wall and light-colored floor with a minimal low-profile frame visible at the foot. +train_01479.png A low-profile bed viewed from a slight frontal angle, dressed in a slate-blue, slightly rumpled fabric duvet with two darker blue pillows, sitting on a light oak platform frame against a pale wall and dark wooden floor with a small nightstand visible at the right. +train_01510.png A low, three-quarter frontal view of a single bed dominated by a vivid orange, slightly wrinkled fabric cover with a soft matte texture, set against a dim warm-toned background with a darker vertical headboard or wall at the upper-right and subtle shadowing along the mattress edge. +train_01735.png A low-resolution, three-quarter side-view cartoon bed with a smooth dark brown wooden frame and headboard, a white mattress and pillow with minimal creasing, and a small dark brown footboard, set against a plain light-blue background. +train_01755.png Seen from a slight overhead three-quarter angle, the single bed features a slightly rumpled teal/sea‑green quilted cover over a white sheet with a white pillow at the head and a dark wooden frame/footboard set against a plain pale wall and hardwood floor background. +train_01858.png A minimalist white bed with a smooth, slightly glossy surface and a rounded headboard, shown from a low three-quarter front/overhead angle with a single rectangular pillow, set against a uniform bright blue gradient background with no other visible objects. +train_01974.png A low-profile bed with a warm honey-brown varnished wooden frame and slatted headboard, seen from a slightly elevated three-quarter frontal view, dressed in slightly rumpled white cotton sheets with a darker folded throw at the foot, set against a pale beige wall and light wood floor in a sparsely furnished room. +train_02107.png A low-resolution oblique-overhead view of a bed with light-gray, slightly rumpled matte bedding and two uneven pillows atop a darker fitted sheet, set against a plain pale wall with a faint headboard shadow and indistinct bedside objects, the visible creases and pillow placement serving as the main distinguishing features. +train_02345.png Front-facing, slightly elevated view of a low-profile bed with a pale beige upholstered headboard and slightly rumpled light-gray bedding with two visible pillows, set against a plain muted-gray wall and darker floor, the simple headboard and minimal surrounding decor discernible despite the low resolution. +train_02375.png Oblique top-down view of a single bed with a terracotta‑orange, slightly wrinkled duvet and an off‑white pillow, set on a light wood/neutral floor against a pale wall with a simple low wooden frame and the blanket pulled back at one corner exposing the mattress. +train_02418.png A low, wooden-framed bed seen from a slight front-left angle with a deep burgundy quilted bedcover and white pillows, set against a pale wall and curtained window with a dark brown headboard and simple footboard visible despite the low resolution. +train_02517.png Front-facing, slightly elevated view of a low-profile bed with a smooth beige-tan duvet showing soft wrinkles and cream pillows, set on a dark-colored platform against a plain pale wall and light floor with a small dark bedside object visible at one side. +train_02783.png A small dark wood–framed single bed shown at a slight three-quarter frontal angle with a bright blue mattress and matching blue blanket that appear smooth but slightly pixelated, a white rectangular pillow propped against the headboard, visible wooden legs and headboard, all set against a plain white background. +train_02856.png Three-quarter view of a small twin bed with a warm reddish-brown glossy wooden frame featuring a slatted headboard and turned posts, cream‑beige rumpled bedding and a pale pillow, set against a dark, indistinct background with soft shadows. +train_02857.png A low rectangular bed with a rumpled teal/seafoam blanket over a white sheet, the soft, slightly wrinkled fabric visible from a slightly elevated diagonal viewpoint, set against a pale neutral wall and wooden floor with a dark headboard and a small bedside surface at the right edge. +train_03160.png A low platform bed viewed from a slightly elevated front angle, dressed in rumpled light gray-beige linens with two pale pillows and a thin textured blanket, backed by a simple dark wooden headboard and set against light-colored walls over a warm-toned wooden floor. +train_03263.png Viewed from a slightly elevated oblique angle, the small bed features a rumpled pale gray–white duvet and matching pillow with a soft matte fabric texture, a thin dark headboard behind the pillows, and a low dark wooden nightstand against a light-colored wall to the right. +train_03592.png A slightly angled front-right view of a compact bed with a pale cream-beige, softly wrinkled cover and a visible white pillow sitting on a thin warm-brown wooden platform, set against a flat dark-gray background and casting a faint shadow beneath. +train_03755.png A low rectangular bed viewed from a slightly elevated front-right oblique angle, covered by a wrinkled pale seafoam-green/gray duvet with a subtle quilted texture and a darker charcoal border at the head, sitting on a dark wooden floor with a small pale pillow visible at the top-right. +train_03805.png A small single bed with a vivid raspberry-pink fabric cover showing soft, slightly wrinkled texture set in a pale wood frame, photographed from a slightly elevated three-quarter angle against light-colored walls with a small framed picture above the headboard and a blue curtain at the side, the simple rectangular headboard and low footboard clearly visible despite the image quality. +train_04039.png A low-profile bed with a dark wooden frame and narrow headboard topped by an off-white, slightly rumpled cotton cover, shown from a low frontal three-quarter view against a plain pale wall in a minimal bedroom setting. +train_04124.png A low-profile bed shot from a slight top-front angle, draped in a rumpled dark burgundy/red fabric cover with visible folds and a lighter sheet peeking at the foot, set against pale beige walls and a light-colored floor, with a simple wooden frame and a single pillow at the head. +train_04151.png A low single bed with a pale wood frame and off-white, slightly rumpled bedding is seen from a shallow front-left angle against a plain beige wall and light hardwood floor, with a simple rectangular headboard and exposed wooden legs discernible despite the low resolution. +train_04178.png A low-profile bed with an ivory upholstered headboard featuring subtle tufting, white sheets and a darker folded throw on top, photographed from a low three-quarter side angle against a muted teal wall and dark wooden floor with an indistinct bedside table visible to the left. +train_04247.png A low-profile bed with a light wood frame and slightly rumpled white linens and pillows, photographed from a slightly elevated frontal angle against a pale wall and light hardwood floor, with a small dark rectangular object near the head area providing a stark contrast. +train_04313.png A low-profile bed seen from a slightly elevated frontal angle with a white sheet and a warm peach‑orange quilted coverlet showing slight wrinkles, a visible dark wood headboard against a plain pale wall, and the mattress edges sitting on a simple frame. +train_04340.png A low-profile wooden bed with a light oak slatted headboard and short tapered legs, shown from a slightly elevated three-quarter frontal view against a clean white background, topped with a smooth white fitted sheet and a folded mid-blue duvet with a matching pillow giving a soft, slightly rumpled textile texture. +train_04402.png A low-resolution image of a small bed with a dusty-rose, slightly rumpled fabric blanket and a pale beige pillow, viewed from a slightly elevated front-left angle against a plain white background, showing a simple rectangular base and a short headboard with a faint shadow beneath. +train_04553.png Seen from a slightly elevated frontal viewpoint, the double bed is covered in a rumpled pale beige/khaki duvet with a soft, slightly textured appearance and light pillows, set against a muted wall with a low-profile dark headboard visible in the background. +train_04594.png A slightly elevated frontal view of a compact bed with a dark wooden headboard and pale cream, slightly rumpled sheets showing a soft textile texture, set against a muted pinkish wall with an indistinct framed picture and a small bedside surface visible to the right. +train_04662.png A low-profile dark brown/black platform bed topped with a light beige, slightly rumpled duvet and two white pillows, viewed from a slightly elevated front-right angle against a plain warm beige wall and cool-toned floor, with clear contrast between the dark base and pale bedding and a crisp rectangular silhouette despite the low resolution. +train_04836.png A low, single bed with a smooth off-white/cream sheet atop a light tan mattress on a dark brown wooden platform, seen from a slightly elevated front-left angle against a teal-green wall and pale floor, showing a faint rectangular headboard and subtle wrinkles in the bedding despite the low resolution. +train_04896.png Viewed from a slightly elevated frontal angle, the bed has a rumpled off‑white/cream duvet and matching pillows with a soft, slightly textured look, a dark rectangular headboard behind it, and an indistinct neutral‑toned wall with shadowed bedside shapes in the background visible despite the low resolution. +train_05187.png A low-resolution, slightly angled front-left view of a single bed with a dark wooden headboard and frame, covered by a light blue-gray rumpled duvet and pale pillow, set against a plain off-white wall with a small bedside surface visible to the right. +train_05188.png A low single bed with cream‑beige, slightly rumpled bedding and one pale pillow, seen from a slight front‑right elevated angle and set on a warm brown wooden floor against a darker wooden headboard and neutral wall. +train_05215.png A low-profile bed with a light wood headboard and frame supporting a rumpled off‑white/cream duvet and pale pillows with a soft, slightly textured cotton appearance, shot from a slight front-left angle in a softly lit beige bedroom with a small bedside table and lamp to the left and a window with curtains to the right. +train_05302.png Slightly elevated frontal view of a compact bed draped in a cream-beige, subtly textured duvet with two white pillows at the head, backed by a dark wood headboard and set on warm honey-toned hardwood flooring against a pale green wall with sparse, blurred furnishings in the background. +train_05575.png A low, frontal view of a narrow bed covered in a rumpled mid-to-dark blue quilted duvet with a smoother navy pillow, sitting on a warm wood floor against a pale wall with a bright window to the right and a dark metal bed frame visible at the foot. +train_05716.png A slightly angled front-right view of a low honey‑brown polished wooden platform bed with a slatted headboard, dressed in rumpled white cotton bedding and pillows, set against a neutral wall with a tall potted plant to the left and a bright window with light curtains to the right. +train_05960.png A low-resolution three-quarter frontal view of a simple bed with a light tan/beige textured, slightly rumpled blanket, a dark blue pillow near the head, mounted on a dark wooden frame against a plain white wall with a beige floor and a small wooden dresser visible to the right. +train_06371.png A slightly elevated three-quarter view of a compact bed with a pale blue, slightly rumpled quilted cover and a white sheet showing at the foot, set against a neutral-toned wall with a wooden headboard, metal legs visible and a window with light curtains to the right. +train_06400.png A low-profile bed with a warm reddish-brown, slightly textured-looking cover, shown from a shallow front-left angle against a plain pale background, featuring a simple rectangular headboard, short exposed legs and a faint shadow beneath. +train_06422.png A low-profile bed seen in a three-quarter overhead view is covered by an off-white, slightly rumpled quilted duvet with two pale pillows propped against a tall dark wooden headboard, set against a plain light-colored wall and dark hardwood floor with a small bedside surface visible at the left. +train_06424.png A low-resolution image of a bed seen from a slight front-left elevated angle, featuring a smooth teal-green duvet over a simple warm-brown wooden frame with short square legs and a faint shadow on a neutral light-gray floor/wall background. +train_06462.png Slightly top-front view of a single bed with a wrinkled burnt‑orange textured duvet and a pale pillow on a low wooden platform base, set against a neutral beige wall with a shadowed bedside object visible at the side. +train_06563.png A teal-blue, slightly rumpled cotton bedspread with a pale pillow covers a single mattress set on a light wooden frame with exposed slats, shown in a three-quarter elevated view from the foot-left against a neutral wall and pale tiled floor with a small bedside surface to the left. +train_06583.png A low-profile single bed viewed from a slightly elevated three-quarter angle, with a vivid teal matte duvet and matching slightly rumpled pillow atop a simple light wood/metal frame set against a plain pale wall and warm wooden floor, the bright solid color and low modern silhouette remaining distinct despite the low resolution. +train_06641.png A low-profile, dark reddish-brown polished wooden bed frame with smooth, subtle wood-grain texture, solid paneled headboard and matching footboard with blocky corner posts, shown from a three-quarter front-left viewpoint against a plain white background. +train_06756.png A low-profile, warm reddish-brown wooden bed with a simple slatted headboard and visible wood grain is shown from a slightly angled front-left viewpoint, holding light-colored, slightly rumpled sheets and pillows against a plain pale wall and hardwood floor. +train_06785.png A low-profile white upholstered platform bed with a smooth, slightly quilted mattress surface and exposed light-wood tapered legs, shown from a slightly elevated three-quarter front-left view against a plain pale studio background, revealing clean straight edges and subtle seam detailing along the mattress. +train_07054.png A small wooden-framed bed seen from a slight overhead angle, with a crisp white sheet partially covered by a rust‑orange, slightly rumpled blanket, a simple slatted headboard against a pale wall and warm-toned wooden floor beneath soft ambient lighting. +train_07201.png A low-profile bed draped in a rumpled steel‑blue duvet with a lighter pillow, seen from a slight elevated front-left viewpoint against pale walls and a tall dark headboard, sitting on a warm-toned hardwood floor with minimal surrounding furnishings. +train_07203.png A low-profile wooden-framed bed viewed from a slight overhead-right oblique angle, with a pale bluish-gray, slightly rumpled duvet and a darker folded throw at the foot, sitting against a plain light beige wall and hard floor so the wooden rails and the soft fabric texture remain discernible despite the low resolution. +train_07308.png Frontal, slightly elevated view of a small bed with soft, rumpled light-gray/cream sheets and pillows, a darker folded throw or blanket across the foot, a low dark wooden frame/headboard, and a pale wall and light wood floor in the background. +train_07349.png A small double bed seen from a slightly elevated front-left angle, dressed in a beige/cream, slightly rumpled linen duvet with visible soft wrinkles and white pillows, set against a plain pale wall with a simple mid-brown wooden headboard and minimal bedside clutter. +train_07353.png A slightly elevated frontal view of a low bed with a medium-brown wooden headboard, rumpled off-white/cream duvet and matching pillows and a darker folded throw at the foot, set against a plain light-colored wall with a small bedside surface visible to the right. +train_07389.png Seen from a slight overhead angle, the bed is covered with a brightly colored patchwork quilt of warm reds, oranges and yellows with contrasting blue blocks and a visible quilted texture, framed by a dark rectangular headboard and set against a pale wall over a wooden floor. +train_07481.png A low-resolution image of a bed covered by a warm burnt‑orange, slightly textured and rumpled blanket with a pale pillow at the head, seen from a short frontal‑above angle against a plain light wall and darker floor, with a visible folded edge and soft shadowing suggesting a simple bedroom setting. +train_07529.png A low-profile bed photographed from a slight frontal-left angle is covered with a muted dusty-pink, slightly rumpled duvet over a light cream sheet, topped by a single white pillow against a plain white wall, with a small dark bedside table to the left and a warm-toned wooden floor beneath. +train_07667.png From a slightly elevated front-left angle, a low-profile bed with a smooth light-wood platform and simple slatted headboard holds rumpled white sheets and pillows, set against a pale wall and warm wooden floor with a small bedside surface partially visible. +train_07720.png A slightly elevated three-quarter frontal view of a bed draped in a warm reddish-brown, visibly textured blanket with a lighter pillow at the head, set against a dark headboard and a dim, warm-toned room background with a bedside surface faintly visible to one side. +train_07798.png Viewed from a slightly elevated, head-on angle, the bed shows a mid-brown wooden frame with a slatted headboard, a slightly rumpled white cotton sheet and pillow with visible seams and texture, set against a plain beige wall with a dark nightstand to the right and a light wood floor at the foot. +train_07887.png A low-profile bed with a dark brown/black wooden headboard and rumpled off-white bedding topped by a folded charcoal-gray throw, seen from a slightly elevated frontal viewpoint against a warm pinkish wall with a beige wardrobe on the right and a small nightstand on the left. +train_08273.png A low-profile bed viewed from a slightly elevated oblique angle, covered in a worn light-blue/teal textured blanket with visible wrinkles and a pale pillow at the head, positioned on a warm wooden floor against a neutral beige wall with a darker throw along one side. +train_08351.png A small bed with a warm medium-brown polished wooden frame showing subtle grain and rounded posts, captured from a slightly elevated three-quarter frontal viewpoint that reveals white smooth bedding and a low curved headboard/footboard set against a plain pale wall and light floor. +train_08538.png A low-resolution three-quarter view of a compact bed with a warm orange-brown wooden frame (suggesting simple slatted headboard), a smooth bright red blanket folded over a crisp white mattress and a small white pillow at the head, set against a plain pale background. +train_08618.png A low-resolution oblique view of a small bed centered in the frame, covered in a tan/khaki textured blanket with matching pillows on a dark wooden frame, positioned against a pale blue wall over a light wood floor with a white bedside cabinet visible at the right edge. +train_08634.png A low-profile bed seen from a slightly elevated front angle with a wrinkled mustard-yellow/orange textured blanket draped over a simple dark platform frame, a single pale pillow at the head against a plain white wall and dark wooden floor visible beneath. +train_08661.png A low-angle frontal view of a bed with rumpled off-white sheets and a light tan textured blanket draped unevenly over a dark-colored frame, set against a plain pale wall with a small bedside surface and indistinct clutter visible in the blurred background. +train_08724.png A compact single bed with a light honey‑colored wooden frame and a slightly rumpled ochre‑orange bedcover, seen from a low front-left angle in a small room with pale walls and a tiled floor, featuring a darker rectangular headboard and simple square legs visible despite the low resolution. +train_08748.png A low single bed seen from a shallow overhead-right angle, draped in a warm orange, slightly rumpled quilted coverlet with a pale white pillow at the head and a light wood frame/headboard against a plain pale wall. +train_08785.png A compact bed seen from a slightly elevated oblique angle, dressed in a light beige/tan quilt with a subtle textured weave, topped by two pale pillows and a darker brown throw at the foot, backed by a low wooden headboard and placed in a small, warmly lit room with a bedside table and muted wall behind it. +train_08833.png A low-rise bed viewed from a slight overhead side angle, covered in a light beige, slightly rumpled linen-like fabric with soft horizontal creases, set against a plain pale wall and warm wooden headboard/floor, with a darker brown rectangular cushion or throw near the foot providing visual contrast. +train_08968.png A low-resolution, slightly angled frontal view of a light cream upholstered bed with a subtly tufted headboard and rumpled off-white linens, set against a pale blue wall with a wooden floor and a small bedside table and lamp visible at the right. +train_08978.png A low, slightly angled view of a simple bed covered with a pale blue, slightly wrinkled duvet and a darker blue folded blanket at the foot, topped by a single light pillow and positioned against a plain pale wall over a dark wooden floor. +train_09180.png A low beige upholstered bed with a slightly textured headboard and pale, rumpled sheets, viewed from a low frontal angle in a sparsely furnished room with a plain white wall and warm wooden floor and a dark wooden base visible at the foot. +train_09366.png Low-angle three-quarter view of a small bed with a pale blush‑beige, slightly quilted/rumpled bedspread and matching cushioned headboard, framed against a light neutral wall and dark wooden floor with a small dark object beside it. +train_09379.png Three-quarter frontal view of a low-profile bed with a polished medium-brown wooden frame showing subtle wood-grain texture, a white mattress with minimal bedding, a simple slatted headboard with two squared posts and a matching low footboard, set against a plain light background casting a soft shadow. +train_09413.png A low, three-quarter frontal view of a bed with a crumpled teal-blue quilted blanket and a pale pillow on a white low headboard, set against a beige wall and warm wooden floor with a small wooden nightstand and lamp to the left, with the blanket's wrinkled folds and the headboard's simple outline visible despite the low resolution. +train_09454.png Seen from a high oblique angle, the bed features a vibrant rust‑orange, slightly rumpled duvet with subtle wrinkled texture and a pale pillow near the headboard, set against a dim wooden or laminate floor and a darker vertical headboard/wall panel at the right edge. +train_09471.png A narrow twin bed shot from a slightly elevated oblique viewpoint, covered with a light gray, subtly mottled quilted bedspread with faint horizontal stitching and a single pale pillow, framed by a low dark-brown wooden headboard and set against a pale wall over warm-toned wooden flooring. +train_09571.png A low-profile bed seen from a three-quarter frontal angle, dressed in smooth, slightly rumpled white cotton linens and pillows resting on a light wood platform frame with a small under-bed gap, set against a pale blue wall and warm wooden floor. +train_09597.png A small twin-size bed seen in a slightly elevated three-quarter frontal view with a warm medium-brown polished wooden frame showing visible grain and turned posts, outfitted with off-white quilted bedding and a pale beige blanket against a muted pink wall and light wood floor. +train_09666.png A small, low-resolution wooden bed shown in a slightly elevated three-quarter view with a smooth brown headboard and footboard, a bright orange, subtly quilted blanket draped over the mattress, a single white pillow at the head, and a plain white background. +train_09690.png Slightly elevated frontal view of a single bed with rumpled white cotton sheets and a light-colored blanket, a dark wooden headboard against a beige wall and bright daylight spilling in from a window at the left. +train_09719.png Top-down, slightly angled view of a small bed with a wrinkled teal-green blanket showing a coarse woven texture, a single white pillow, and a warm honey-toned wooden frame with vertical slatted headboard set against a pale beige wall and light floor. +train_09755.png A three-quarter, isometric view of a small bed rendered in blocky pixelated colors: a bright blue mattress/cover with slightly darker shading on top, set in a reddish-brown wooden frame with a dark brown headboard and four short orange legs, shown against a plain white background. +train_09810.png A low-resolution frontal-elevated view of a bed dressed in a seafoam-green, slightly textured/quilting-effect duvet with two white pillows propped against a dark wood headboard, set in a minimally furnished room with pale walls and a small bedside table visible at the right. +train_09849.png A slightly elevated three-quarter view shows a compact bed with a warm orange-brown blanket of subtle woven texture and a lighter beige pillow against a dark wooden headboard, set before a pale tan wall over a darker wooden floor with soft shadowing to the side. +train_09984.png A small bed photographed from a slightly elevated left-front three-quarter view, featuring a smooth white top sheet and a rust-red textured blanket tucked over a low dark wooden frame with short tapered legs, set against a plain pale wall and light floor. +train_10084.png A low-profile bed viewed from a slightly elevated frontal angle, featuring a tan upholstered headboard and a crisp but slightly rumpled white duvet and pillows with soft textile texture, set against a muted beige wall with a darker bedside surface visible at the left. +train_10145.png A low-profile wooden platform bed seen from a slightly elevated foot-of-bed viewpoint, dressed in a rumpled turquoise-blue duvet and a white pillow, set on warm hardwood flooring against pale beige walls with a small bedside table to the right, the visible wood grain headboard and simple straight legs suggesting a minimalist contemporary design. +train_10191.png Viewed from a slightly elevated angle, the bed shows a low dark headboard with two pale, rumpled pillows and a light gray–cream cotton coverlet topped by a darker folded throw at the foot, set against pale walls and a wooden floor with faintly visible metal legs and a minimal bedside surface. +train_10220.png A slightly elevated three-quarter view of a simple mid-century-style bed with a warm orange-brown polished wooden frame and rectangular headboard, dressed in crisp white cotton sheets and pillows with a folded deep navy-blue blanket at the foot, positioned on a warm wooden floor against a light beige wall with a small bedside table visible at the side. +train_10257.png A bed dressed in off-white, rumpled linens with matching pillows and a light beige headboard, seen from a slightly elevated frontal angle against a pale blue wall and light wood floor, with a folded beige throw or blanket visible at the foot. +train_10319.png Three-quarter front-left view of a small bed with a warm reddish-brown polished wooden frame and an orange-tan textured coverlet, featuring a simple arched headboard and low footboard with rounded posts, set against a plain white background with a faint shadow beneath. +train_10692.png A low-profile single bed viewed from a slightly elevated diagonal angle against a pale green wall, dressed in wrinkled off-white linens with a folded gray throw at the foot, a pair of pillows at the head, a dark curtained window to the left, and a low wooden base visible beneath the mattress. +train_11119.png A small single bed viewed from a slight frontal three-quarter angle, with a worn teal-blue textured blanket draped over a low wooden frame, a crumpled white pillow at the head, and a pale wall and warm wooden floor in the background. +train_11181.png An elevated, slightly angled view of a small bed with crumpled white sheets and a soft pale blue blanket draped across the middle, a single white pillow at the head, a slim dark headboard, and a muted light wall with a darker vertical object to the right. +train_11428.png Viewed from a slightly elevated oblique angle, the bed is covered by a rumpled rose‑pink/terra‑cotta duvet with a soft, slightly quilted texture, pale pillows at the head and a dark wooden headboard against a plain light wall over a warm wood floor. +train_11852.png A low-profile, light-gray upholstered bed with a slightly rumpled off-white duvet and visible thin mattress edge, photographed from a shallow front-left angle against a dim interior with a dark headboard and indistinct side objects, the bedding showing a soft, subtly textured fabric despite the low resolution. +train_11902.png A slightly angled frontal view of a beige-cream bed with visibly rumpled, coarse-textured linens and a darker low headboard, a folded gray-blue throw near the foot, set against a pale bluish wall with indistinct bedside clutter on a light floor. +train_12187.png A slightly rumpled cream-colored duvet covers a low-profile bed seen from the foot at a shallow angle, with a single pale pillow nestled against a dark wooden headboard and the bed set against a plain light wall above a dark floor in a sparsely furnished room. +train_12377.png An off-white, slightly textured rectangular bed/mattress viewed from a shallow overhead-right angle, with a darker folded pillow or blanket at the head, short dark legs visible and a plain pale-gray tiled floor as the background. +train_12719.png A low, three-quarter front view of a modern bed dressed in a soft turquoise-blue, slightly rumpled duvet with two white pillows and a dark upholstered headboard, set against a plain white wall and a light wood floor with a small bedside table partially visible to the right. +train_12788.png Seen from a shallow overhead-left angle, a low single bed with a deep red, slightly rumpled, quilted-looking cover and a pale rectangular pillow at the head sits on a warm wooden floor against a plain beige wall with a dark shadowed bedside area to the right. +train_12814.png A single bed with a cream-beige, slightly wrinkled textured bedcover and matching pillow rests on a light wooden low-profile frame, shown from a front-left angled viewpoint against a warm wood-paneled wall with a small red object on a bedside surface. +train_12997.png A front-left three-quarter view of a small, dark brown matte-finished wooden bed with a vertical-slat headboard, simple horizontal side rails and short square legs set against a plain white background. +train_13199.png A low-resolution, three-quarter frontal view of a low-profile bed with a pale mint-gray, slightly rumpled fabric cover and a single light pillow, set against a cream wall with a dark wooden slatted headboard and a small bedside table and lamp visible to the right. +train_13200.png A small double bed with a dusty-rose, slightly textured quilt and matching pillow resting on a dark wooden low frame, photographed from a shallow front-right elevated angle against a plain light-colored wall and floor, the cover slightly rumpled at the foot. +train_13232.png A low-profile bed viewed from a low frontal angle with a pale blue, slightly rumpled fitted sheet over the mattress, dark wooden headboard behind it, and the bed sitting on a light hardwood floor against a plain white wall. +train_13254.png Angled, slightly overhead view of a small bed pushed against a plain white wall, dressed in a quilted, muted brick-red bedspread with a subtle repeating pattern and a single off-white pillow at the head on a dark wooden frame, with a low bedside surface and indistinct items visible in the dim background. +train_13304.png Seen from a slight front-left angle, the bed is covered by a rumpled, matte-woven deep-teal bedspread with a light-gray pillow at the head, backed by a dark wooden slatted headboard against a pale mint wall and a warm brown floor visible at the foot. +train_13317.png A single bed shown in a three-quarter front-left view with a bright orange-red smooth blanket and matching pillow on a cream/white metal frame with thin legs, set against a dark teal/blue vertically paneled background and a light blue floor, the bed slightly elevated with a faint shadow underneath. +train_13463.png An off-white, slightly rumpled cotton-sheeted single bed with a matching pillow and slim dark platform frame, seen from a slightly elevated front-left angle against a plain light-colored wall and wood-toned floor. +train_13466.png Viewed from a slightly elevated frontal angle, the small single bed features a light honey-wood frame and legs with a pale beige mattress covered in subtle horizontal stripes and a faint fabric texture, set against a plain light-gray wall and hardwood floor with a slight shadow beneath. +train_13519.png A compact, low-profile bed upholstered in vivid red fabric with a slight sheen, photographed from a front-left three-quarter view against a plain white wall and pale wooden floor, showing a single rectangular mattress/cushion, a low headboard/raised back edge, and exposed light-wood tapered legs. +train_13841.png Frontal low-resolution view of a bed with rumpled white sheets and pillows, a pale beige upholstered headboard, and a folded rust‑orange throw at the foot, set against a light-colored wall with a small dark bedside surface visible to the left. +train_13876.png A low rectangular bed viewed slightly from the foot-left, dressed in an off-white/cream, lightly quilted and slightly wrinkled duvet with two plump pillows against a light wooden headboard, set on warm hardwood flooring with a small bedside table and lamp to the left and a pale wall with a framed picture to the right. +train_14028.png A low-profile bed with a light-gray, slightly rumpled duvet and a dark-colored platform frame, viewed from a front-right, slightly elevated angle against a plain pale wall and darker floor, with a single pillow at the head and a minimal modern silhouette. +train_14402.png Front-facing, slightly elevated view of a beige-upholstered bed covered in a rumpled cream duvet with a textured knit throw at the foot, a dark wooden headboard against a pale wall, and a small bedside table partially visible on the right. +train_14530.png Angled frontal view of a small bed topped with a teal-green, slightly wrinkled fabric cover and two pale pillows, framed by a dark wooden headboard/footboard and set on a warm-toned wooden floor against a neutral beige wall with soft shadowing. +train_14555.png A slightly angled top-down view shows a low wooden-framed bed with wrinkled light-blue sheets, two pale pillows at the head and a darker navy throw folded across the foot, set against a plain white wall on warm hardwood flooring with a small neutral rug visible at the side. +train_14617.png A single bed viewed from a slight overhead angle, covered in a faded pink, slightly wrinkled fabric cover with a visible white underside and a pale pillow at the head, set against a light-colored wall and a darker floor background. +train_14788.png A small single bed photographed from a slight front-right angle, with a wrinkled pale blue sheet over a white mattress on a low white frame, a thin vertical headboard visible, and set against a turquoise wall and light wood floor with a shadowed gap beneath the bed. +train_14794.png A frontal three-quarter view shows a single bed with a teal-blue textured fabric cover and mattress set in a light-wood frame, topped by an orange accent cushion near the headboard and placed against a pale wall on a light wood floor with minimal surrounding clutter. +train_14917.png A small wooden-framed bed seen in a slightly elevated three-quarter front-left view against a plain white background, with a tan/brown headboard and legs, a teal/blue, slightly pixelated mattress, a pale blue pillow at the head and a folded mustard-orange blanket at the foot, all rendered with blocky low-resolution pixels. +train_15035.png Seen from a slightly elevated front-left three-quarter viewpoint, the bed features a warm rust-orange, slightly wrinkled fabric cover, a dark wooden low headboard, a single pale pillow near the top, and sits against a plain beige wall over a light wood floor. +train_15049.png A slightly elevated dark-wood bed frame holds a pale mattress topped with a wrinkled teal-green blanket and a folded navy-blue throw near the foot, photographed from a slight overhead/foot-end angle against a plain light-colored wall with a narrow strip of floor visible. +train_15053.png Low-profile wooden bed with a warm honey-brown slatted headboard and matching frame, topped by a rumpled burnt-orange bedcover and a single slightly creased white pillow, seen from a low three-quarter side/front viewpoint against a dim, dark background that accentuates the bed's warm tones. +train_15124.png Viewed from a slight front-left angle, the bed features a warm rust-orange, slightly textured fabric headboard and matching blanket with a matte, subtly wrinkled textile surface, a white pillow at the head, a low dark frame on a light wood floor and a plain pale wall background with a small dark object or shadow to the right. +train_15295.png A low-profile bed viewed from a slightly elevated frontal angle, with rumpled white cotton bedding and pillows atop a dark wooden platform frame against a muted gray wall and warm wooden floor, the soft wrinkled texture of the duvet visible despite the low resolution. +train_15348.png Angled frontal view of a small bed with a smooth honey-brown wooden frame and low headboard, topped by a soft, slightly rumpled light beige blanket and two matching pillows, set against a plain off‑white wall and pale wooden floor. +train_15354.png Three-quarter frontal view of a single bed with a dark-stained wooden slatted frame and turned posts, dressed in a slightly rumpled teal-blue textured bedspread and a darker blue pillow, set against a pale wall and wooden floor with a small rug and a bright window area to the right. +train_15392.png A compact rectangular bed upholstered in medium-blue woven fabric, shown in a three-quarter frontal top-down view against a plain light-gray background, revealing a low-profile frame with slim dark legs, a subtly rounded headboard edge and faint seams/creases on the mattress surface visible despite the low resolution. +train_15607.png A small dark brown polished wooden bed with turned spindle headboard and matching short footboard, topped by a light beige mattress, shown in a three-quarter front-left view against a plain white background with a soft shadow beneath. +train_15970.png Angled overhead view of a simple wooden-framed bed dressed in a rumpled dark burgundy red quilt with two white pillows at the head, set against a plain pale wall with a small dark bedside surface visible to the right. +train_16020.png A low, dark-wood framed bed seen from a slightly elevated three-quarter angle, dressed in rumpled off-white cotton sheets with a light beige textured throw and pillows, set against a plain pale wall with a simple wooden headboard visible. +train_16058.png A low-profile platform bed made of warm reddish-brown wood with a smooth, slightly glossy finish, topped by a light beige, slightly rumpled mattress or sheet and a simple slatted headboard, seen from a front-left three-quarter viewpoint in a dim, warm-toned interior with a wooden floor and plain wall behind. +train_16103.png A neatly made bed photographed from a slightly elevated frontal viewpoint, featuring a light beige, subtly textured quilted bedspread with visible stitch lines and slight folds, two white rectangular pillows, and a dark brown horizontal-slat wooden headboard against a plain pale wall. +train_16256.png A small single bed with a dark brown wooden frame and headboard topped by a slightly rumpled, light beige/cream duvet and matching pillow, shown from a low front-right angle against a pale wall and warm wooden floor with a light-colored bedside surface visible at the head. +train_16307.png A single bed with rumpled white bedding and a low-profile dark brown wooden frame with a rectangular headboard, seen from a slightly elevated diagonal viewpoint against a pale beige wall and hardwood floor with a small rug at the foot. +train_16480.png A low-profile bed with a warm honey-brown wooden frame and a thick, light beige, slightly tufted mattress topped by a rumpled off-white duvet, viewed from a low front-left three-quarter angle against a plain white wall and light wood floor, with a small dark-brown throw pillow and otherwise minimal surroundings visible despite the low resolution. +train_16528.png A small single bed seen from a slightly elevated front-right angle, with a bright pink, slightly rumpled quilt showing soft, wrinkled texture and a white sheet/pillow peeking out on a light wooden frame, set against a neutral beige wall and hardwood floor. +train_16708.png A three-quarter top-left view of a low wooden-framed bed with a bright rust‑orange, slightly rumpled textured bedspread and a pale pillow at the head against a darker headboard, sitting on a light tiled floor by a plain light-colored wall. +train_16721.png A slightly elevated three-quarter frontal view of a small bed covered in a bright red, textured (slightly rumpled) blanket with two white pillows propped at the head against a dark headboard, set against a pale wall beside a sunlit window with light-colored curtains. +train_16730.png A compact twin bed seen nearly head-on with a warm medium-brown polished wooden slatted headboard and matching footboard, a smooth white mattress and pale pillow, and the frame sitting on a hardwood floor against a neutral beige wall. +train_16768.png A compact bed with a warm reddish-brown wooden frame and visible wood grain, photographed from a slight frontal angle showing a simple paneled headboard and low footboard, pale bedding draped over the mattress, and a dim, cluttered interior with light-colored walls visible in the background despite the low resolution. +train_16919.png A small bed shot from a slightly elevated three-quarter angle is covered in a vivid magenta‑pink quilt with subtle darker rectangular pillow shapes near the head and a slightly mottled fabric texture, set against a plain off‑white wall and darker floor that provide minimal background detail. +train_16950.png A front-facing small wooden bed with a warm reddish-orange quilted-looking cover and visible wood grain on a low rectangular headboard and footboard, photographed against a plain white background with a faint shadow beneath, the low-resolution image still showing rounded corner posts and a simple slatted frame. +train_16967.png Front-facing low-profile bed with a light beige, subtly quilted duvet and matching pillows resting on a dark wooden platform with short legs, set against a teal-green wall and pale wood floor. +train_17187.png A low beige-tan upholstered bed with a slightly shiny, quilted-looking cover and a single pale-pink pillow is viewed from a shallow front-left elevated angle, set on a light wood floor against a dark rectangular headboard or wall feature, with visible seam lines and short exposed legs. +train_17205.png A low-profile bed photographed at an oblique frontal angle, featuring a crumpled teal/sea‑green duvet with a slightly matte, wrinkled texture and a matching pillow, a visible white mattress edge and slim wooden frame sitting on warm hardwood flooring against a pale wall with soft window light from the right. +train_17429.png A low-profile bed seen from a shallow front-left angle, dressed in light beige/cream bedding with a slightly wrinkled, subtly quilted texture, resting on a dark wooden frame with a simple headboard outline against a pale wall and darker floor, with minimal decorative details visible. +train_17502.png A slightly elevated three-quarter view from the foot-right shows a small bed with a warm honey-brown polished wooden frame and slatted headboard, a slightly rumpled off-white duvet and light beige sheet, positioned diagonally on a pale wood floor against a plain light-colored wall with minimal clutter. +train_17589.png A low-profile bed photographed from a slightly elevated front-right angle, featuring a wrinkled burnt-orange duvet with a soft, matte texture over pale beige sheets, a single off-white pillow near the headboard, and a warm-toned wooden floor and light wall visible in the background. +train_17750.png A single bed photographed from a slightly elevated three-quarter front-right viewpoint, featuring a deep crimson, velvety-looking duvet with a subtle sheen draped over a white mattress skirt and supported by dark wooden legs against a plain light-gray studio floor and wall. +train_17759.png Angled top-down view of a simple bed with a wrinkled light beige/cream duvet and lighter pillows resting against a dark wooden headboard, set in a dim, sparsely furnished room with pale walls and a small bedside surface visible at the side. +train_17824.png A low-profile wooden bed seen at a slight side angle, sparsely dressed with a bright reddish‑orange, subtly textured cover and a pale pillow, set against a plain light wall and warm hardwood floor with a simple slatted headboard and low footboard visible. +train_17924.png Angled, slightly elevated view of a simple single bed covered in a warm orange-brown textile with a subtle matte weave, a darker brown rectangular headboard and small dark pillow at the top left, set against a pale wall and light floor with a narrow dark vertical edge at the right. +train_18411.png A honey-brown wooden bed frame with a smooth, slightly glossy finish is shown from a low oblique (foot-left) viewpoint, featuring a pale mattress with a wrinkled white sheet and a folded tan cover at the foot, set against a muted yellow wall with a small dark object (nightstand) at the side. +train_18575.png A low-resolution view from the foot of the bed shows a cream-colored, slightly rumpled quilted bedspread with two pale pillows, framed by a dark wooden headboard against a neutral wall with a small framed picture to the left and a bedside lamp to the right. +train_18754.png A low-resolution three-quarter view of a single wooden-framed bed with rumpled white linens and a slightly textured pale-beige headboard set against a cream wall, a dark jacket or bag draped over the right side, and a light wood floor beneath. +train_18844.png A low-profile, light-beige fabric-upholstered bed viewed front-on from a slightly elevated angle against a dark, neutral background, with a rectangular padded headboard, short exposed wooden legs and a slightly rumpled smooth mattress cover texture visible despite the low resolution. +train_18916.png A low wooden-framed bed covered with a bright red, quilted bedspread patterned with white floral motifs and slight surface wrinkles, shown from a front-left, slightly elevated three-quarter view against a pale patterned wall and light tiled floor. +train_19317.png A low-profile off-white mattress with a smooth fabric surface rests on a dark gray metal bed frame characterized by thin horizontal slats and vertical headboard/footboard posts, shown in a slightly elevated three-quarter front view against a plain white wall and light floor. +train_19347.png Viewed from a slightly elevated front-right angle, the bed has a deep crimson, subtly quilted duvet with a single white pillow resting against a dark wooden headboard set before a plain light-colored wall, the low-resolution image still showing the contrasting pillow and headboard shape. +train_19355.png A slightly angled, top-front view of a single bed covered in a soft peach-pink, slightly shiny (satin-like) duvet with visible gentle wrinkles and white pillows, set against a plain light-colored wall with a small dark bedside shelf at the head. +train_19465.png A low-profile bed seen from a shallow overhead angle, dressed in a slightly rumpled teal-blue textured duvet with a white pillow, sitting on a dark wooden base against a plain beige wall and dark floor. +train_19473.png A slightly elevated three-quarter view of a bed with a warm reddish-brown wooden frame and low rectangular headboard, topped by rumpled bright white bedding with soft textured folds and set against a pale wall on a light wood floor. +train_19520.png A low-profile bed with a medium-brown wooden frame and a light tan, subtly textured mattress, shown from a front-left oblique viewpoint against a plain pale wall and floor, featuring a modest headboard with horizontal slats and a narrow gap beneath the frame. +train_19531.png A low-resolution image of a simple light-wood framed bed viewed from a low front-right angle, with white bedding and a single white pillow, the rectangular wooden headboard and exposed wooden base visible against a warm beige wall and wooden floor. +train_19575.png A slightly elevated three-quarter frontal view of a single bed with a cream‑beige textured upholstered headboard and light wooden frame, rumpled white cotton bedding with a single pale pillow and a folded deep‑navy blanket at the foot, set on a light wood floor against a plain off‑white wall. +train_19609.png A slightly elevated frontal three-quarter view shows a compact dark-brown wooden bed with a smooth paneled headboard, a beige mattress draped in a slightly rumpled pale sheet and topped by a bright coral-red pillow, set against a pale wall and sunlit window suggesting a small bedroom. +train_19640.png A slightly angled foot-of-bed view shows a low-profile bed with rumpled off-white/cream bedding and pillows atop a contrasting darker upholstered headboard and wooden base, set against a pale wall with a small nightstand visible, the bedding's soft, wrinkled texture and the headboard's coarse fabric discernible despite the low resolution. +train_19670.png A frontal three-quarter view of a bed covered by a rumpled turquoise-teal comforter with a slightly quilted, coarse texture and a pale pillow at the head, set against a light-blue wall and a simple headboard, the folds and color contrast remaining visible despite the low resolution. +train_19741.png A low, light-wood platform bed topped with a deep navy-blue, slightly glossy quilted comforter and a single pale pillow, viewed from a slight frontal-right elevated angle against a plain white wall with a small bedside surface visible on the left. +train_19751.png A slightly angled overhead view of a low bed with rumpled off-white duvet and matching pillows showing a soft, wrinkled texture, set against a dark low headboard and pale wall with a wooden floor and a small bedside surface visible. +train_19922.png Front-facing, slightly elevated view of a simple bed with a pale beige fabric headboard and an off-white, slightly rumpled duvet topped by a folded light-blue blanket at the foot, positioned against a plain light-colored wall with a small dark bedside surface visible at the right and soft, even lighting. +train_19991.png A low wooden-framed single bed seen from a low frontal angle, topped with a light beige, slightly wrinkled fabric blanket with a soft matte texture and a visible mattress edge, set on warm wooden flooring against a similarly warm-toned, indistinctly furnished background. +train_20083.png A low-profile mid-century modern bed in warm mahogany wood with a smooth, slightly glossy slatted headboard and a rust‑orange, subtly textured upholstered mattress, seen from a front-left three‑quarter view against a plain light studio background, with short tapered legs and a recessed platform frame visible. +train_20307.png A low-profile bed with a slightly rumpled teal-blue quilted cover and white pillows, shown from a slightly elevated three-quarter front-left viewpoint against a pale wall and light wood floor, revealing a dark low platform base and soft creases in the bedding despite the low resolution. +train_20469.png Frontally photographed from a slightly elevated angle, the bed is draped in a wrinkled mauve–pink duvet with a subtle sheen, topped by lighter pillows at the head, set against a plain pale wall with a narrow dark baseboard and an indistinct bedside object to the right. +train_20589.png Viewed from a slight overhead-right angle, the low-profile bed is dressed in a deep navy, slightly wrinkled duvet with two white pillows propped against a light beige upholstered headboard, set on a warm wooden floor against a plain pale-gray wall with a small dark bedside table at the right. +train_20621.png A low-resolution, slightly elevated oblique view of a bed with a pale cream-to-blush textured duvet showing visible folds, two darker rectangular pillows propped against a simple dark upholstered headboard, and a plain neutral wall background lit by soft diffuse light. +train_20759.png A light wood-framed bed viewed from a slight overhead-front angle, with a pale gray-blue fitted sheet and white top bedding slightly rumpled, a simple low slatted headboard against a pale wall and the frame sitting on a medium-tone wooden floor. +train_20808.png Viewed from a slightly elevated front-left angle, the low-profile bed has a rumpled beige-tan woven cover and a pale pillow propped against a dark headboard, set against a plain off-white wall with warm-toned flooring beneath. +train_20953.png A low-profile bed viewed from a shallow oblique overhead angle with a medium-dark blue, slightly mottled fabric cover, a pale rectangular pillow at the head, a light wooden frame/headboard, and a plain beige wall and warm wood floor in the background. +train_20966.png Three-quarter front view of a low bed covered in a light tan, slightly rumpled textured duvet with a single white pillow, set against a warm wooden slatted headboard and beige wall with a window to the left and a small bedside surface visible. +train_21264.png A low, rectangular bed seen from a slight frontal-elevated angle, dressed in white/off-white rumpled bedding and pillows atop a medium-dark wooden frame with a simple dark rectangular headboard, positioned against a pale wall with a light-colored floor visible beneath. +train_21530.png Viewed from a slight front-left elevated angle, the small single bed features off-white, slightly rumpled quilted bedding and a pale beige upholstered headboard, with a folded cream-beige throw at the foot and a small brown plush toy near the pillow, set against a plain light wall on a wooden floor. +train_21540.png A slightly angled, close-up view of a small bed covered in warm orange-brown, slightly textured/quilted bedding with a darker brown low headboard against a pale neutral wall, showing a rounded corner and visible seam lines along the mattress. +train_21564.png A low-profile rectangular bed covered in deep burgundy-red, slightly textured quilted fabric, photographed from a shallow three-quarter oblique viewpoint revealing its flat top and slender black metal legs, positioned on a pale green-tiled floor beside a beige wall with a darker wooden panel at the left background. +train_21585.png A low-profile bed viewed from a slight angle showing a slightly rumpled cream/ivory duvet with a folded tan-brown throw at the foot, two pale pillows propped against a medium-brown upholstered headboard, set against a neutral pale wall with a darker wardrobe panel to the right. +train_21603.png A low, wooden-framed bed viewed from a slightly elevated three-quarter front-left angle, dressed in a soft pastel-lavender duvet with faint wrinkles and a darker purple throw folded across the foot, flanked by white pillows against a simple headboard and set on a warm wooden floor with a neutral-toned wall behind. +train_21641.png A low-resolution, front-left angled view of a single bed with a rumpled cream-beige duvet and matching pillow showing a soft, slightly wrinkled texture, set against a plain light wall with a darker wooden headboard and wooden floor and a small bedside table visible at the left. +train_21789.png A low-profile platform bed viewed from a slight frontal overhead angle, with rumpled white linens and two pale pillows atop a dark grey upholstered base, set against a plain light-colored wall and light wood floor. +train_21883.png A dark charcoal, slightly rumpled duvet with a subtle woven texture covers the mattress, topped by two pale off‑white pillows at the head and seen from the foot at a slight angle against a plain light-colored wall with a low-profile bed frame and bare floor visible. +train_21922.png A low, modern bed photographed from a slight top-down angle with smooth light-blue sheets, a darker blue folded blanket across the foot, a white pillow at the head, and a visible wooden frame set against a plain pale wall background. +train_22119.png A small single bed with smooth white bedding stretched over a thin mattress set in a light-stained wooden frame, captured from a slightly elevated front-right angle against a pale wall and light floor, with a simple raised headboard and exposed bed legs visible despite the low resolution. +train_22430.png Slightly top-down, three-quarter view of a bed with a rumpled off-white/cream duvet and matching pillow on a light wood frame, a small dark rectangular object near the center, and a muted pink throw draped over the left edge against pale walls and a wooden floor. +train_22440.png A cream-beige, slightly rumpled quilted bed photographed from a three-quarter, slightly elevated frontal viewpoint against a plain light-colored wall and wood floor, with a single pillow at the head and the duvet draped loosely over the right edge exposing a darker brown bed base. +train_22473.png A slightly elevated frontal view of a bed with a matte teal-green quilted cover that appears rumpled and wrinkled exposing white sheet edges, set against a beige wall with a dark wooden headboard and a small nightstand to the right, with a small indistinct dark object near the center and a shadowed rug visible at the foot. +train_22559.png A small, warm terracotta-orange bed with a smooth, slightly rounded mattress and matching pillow, shown at a three-quarter front-left view against a plain white background and characterized by a simple raised headboard with two vertical posts and short visible legs. +train_22563.png Front-facing, slightly elevated view of a small single bed with a dark brown polished wooden headboard and low footboard, dressed in a smooth white fitted sheet and pillow, set against a plain light-colored wall and pale floor with a simple slatted frame and short square legs. +train_22626.png A light-wood framed bed with a smooth beige mattress and pale pillow viewed from a low three-quarter frontal angle, set against a dark maroon wall and brown floor with a small green object at the foot providing a bright accent. +train_22883.png A low, cream-beige upholstered bed with a slightly rumpled, textured duvet and subtle horizontal stitching on the headboard, shown from a shallow front-left three-quarter viewpoint against a pale wall and light wooden floor, with a small folded dark throw at the left corner. +train_22904.png A slightly elevated three-quarter frontal view of a compact single bed with rumpled pale beige-cream sheets and a darker rectangular headboard, set against a plain light-colored wall on a medium-tone wooden floor with a small dark bedside surface visible at the right. +train_23018.png The low-profile wooden bed is seen from a slight overhead three-quarter angle, with a cream mattress topped by a rust-orange, slightly rumpled blanket and a white pillow against a dark headboard, set in a small room with pale blue walls, a framed picture above and a dark bag on the floor to the right. +train_23087.png A low-resolution image of a small bed seen from a slightly elevated front-left angle, draped in a wrinkled deep red blanket with a matte fabric texture, topped by a single pale pillow at the head, set against a pale wall and light floor with a dark wooden headboard partially visible. +train_23252.png A low-profile bed with rumpled beige-tan bedding and a lighter cream pillow, seen from a slightly elevated front-left angle against a dark wooden headboard and neutral-toned wall, the fabric looking soft and creased even in the low-resolution image. +train_23266.png Slightly top-down view of a rectangular light tan/beige bed or mattress with a coarse, woven-looking cover and visible seam lines, resting on a pale gray floor against a muted bluish wall with a darker exposed base and soft shadowing. +train_23307.png Seen from a slightly elevated side-front angle, the small bed is dressed in a light tan/beige, slightly rumpled textured cover with a single white pillow at the head, a dark low headboard behind it, and a pale wall with light-toned bedside furnishings in the background. +train_23315.png A three-quarter, slightly elevated view of a bed covered by a warm orange-red quilted bedspread patterned with alternating white geometric stripes and small diamond motifs, backed by a dark wooden headboard against a pale wall, with a blue pillow at the head and a light-colored floor visible at the foot. +train_23367.png Front-facing, slightly elevated view of a bed dressed in wrinkled teal-green bedding with two matching pillows, set against a dark rectangular headboard and pale wall with a bright window or light source at the right edge and a dark bed frame visible at the foot. +train_23515.png A small twin bed seen from a slight top-front three-quarter angle, with a smooth honey‑brown wooden frame featuring simple rectangular slats and a low footboard, topped by a pale beige, slightly wrinkled fabric mattress cover, set against a plain light wall and wooden floor. +train_23743.png An angled three-quarter frontal view of a small bed icon with a dark navy-blue upholstered headboard and matching deep-blue duvet over a lighter blue sheet, a white pillow tucked at the head, short square brown wooden legs, and a smooth, slightly padded texture, set against a plain white/transparent background. +train_23773.png A low, three-quarter right-side view of a small bed with a light beige, slightly wrinkled duvet and matching sheet, topped near the head by two dark slate-blue pillows and a folded brown throw at the foot, set against a plain off-white wall over a tan/hardwood floor. +train_23814.png Slightly elevated three-quarter view of a low wooden-framed bed dressed in a pale cream, rumpled duvet and matching pillows with a dark brown folded throw at the foot, set against a muted gray wall and simple wooden headboard, the bedding showing soft folds and a subtle textured weave despite the low resolution. +train_23837.png Low three-quarter frontal view of a simple bed with a warm medium‑brown wooden headboard, pale cream slightly rumpled bedding and pillows, a darker folded throw at the foot, set against a light beige wall with a small nightstand and lamp visible to one side on a hardwood floor. +train_23905.png A low-resolution, three-quarter frontal view of a neatly made bed with a deep teal, slightly quilted and softly rumpled duvet and two matching pillows, framed by a dark headboard and a simple nightstand to the right against a pale blue wall with a tall narrow window letting in diffuse daylight. +train_23944.png Frontal, slightly top-down view of a small bed covered in a muted dusty-pink, matte fabric (appearing softly quilted with visible fold lines and slight rumpling), topped by a pale pillow and a darker throw or cushion near the foot, set against a plain off-white wall with a low, darker headboard visible behind it. +train_24055.png Angled slightly from above, the small bed shows rumpled off-white/cream sheets and a light gray textured throw partially covering the foot, a single pale pillow propped against a simple wooden headboard, with a beige wall background and a small dark bedside object at the left edge. +train_24146.png A slightly elevated frontal view shows a low-profile bed dressed in a wrinkled rose-pink duvet with a single white pillow, set against a pale wall and dark wooden headboard with a small bedside surface visible at the left. +train_24392.png Viewed from a low, slightly off-center foot-of-bed angle, the bed features crisp, smooth white linens and two plump pillows atop a white duvet, backed by a warm medium‑brown wooden headboard against a beige wall, with a bedside table and small lamp to the right and a muted brown carpeted floor beneath. +train_24432.png A low wooden-framed bed with a light brown varnished headboard and platform, topped by a rumpled cream/white duvet and a single dark bluish-gray pillow, photographed from a slightly elevated front-right angle against a plain pale wall and wooden floor. +train_24786.png A low-profile bed with a tan-beige, slightly wrinkled fabric-covered mattress and thin darker wooden frame is shown from a shallow elevated front-left angle against a plain light-gray wall and dark floor, with a single pale pillow at the head and a faint horizontal seam and creasing visible on the mattress despite the low resolution. +train_24895.png A narrow single bed shown from the foot at a slight angle, featuring a pale blue, slightly rumpled quilt and white pillow on a light wood slatted frame, set against a plain beige wall and pale floor. +train_24911.png A low-resolution photo shows a single bed covered in a worn rust‑orange, subtly patterned woven quilt with a white pillow at the head, captured from a slightly elevated frontal angle in a compact bedroom with a dark wooden headboard and pale walls (a small framed picture visible), the quilt appearing rumpled and textured despite the blur. +train_25020.png A low-profile, dark-gray upholstered bed with a slightly rumpled light-gray duvet and two pale pillows, seen from a slightly elevated three-quarter overhead angle against a dim, neutral bedroom background with indistinct bedside surfaces. +train_25042.png A low-resolution image of a small rectangular bright-red upholstered bed viewed from a slight top-front angle, showing a wrinkled/tufted fabric surface with a darker central indentation and lighter edge highlights, set indoors against a pale beige floor and off-white wall. +train_25055.png A small single bed photographed from a slightly elevated front-right angle, fitted with a light blue, subtly patterned quilt showing faint quilting texture and a darker pillow at the head against a low dark-wood headboard, set in a compact room with warm wood tones and a narrow vertical window or mirror on the right wall. +train_25066.png A small single bed with a smooth teal upholstered mattress and a slightly rumpled pale pillow, seen from a high three‑quarter angle revealing a light wooden platform base set against a warm orange wall and brown wooden floor. +train_25180.png A low-resolution image shows a compact bed with a warm orange-brown textured blanket draped over a slim mattress on a darker wooden frame, seen from a shallow front-right angle against a teal-blue wall and dark floor, with a lighter rectangular pillow or folded sheet visible near the head. +train_25250.png A low, narrow bed with a pale beige, subtly quilted and slightly rumpled duvet and a single pillow, seen from a front-left oblique viewpoint, pushed against a light-colored wall with a small wooden nightstand and scattered items beside it and a simple wooden bed frame/headboard visible. +train_25267.png A low-profile platform bed viewed from a slightly elevated oblique angle, with a rumpled off-white duvet and light-gray fitted sheet, a folded tan-brown throw at the foot, a simple wooden headboard against a muted teal wall and a small wooden nightstand to the left. +train_25412.png A frontal, slightly elevated view of a neatly made bed with rumpled white duvet and crisp white sheets, accented by a folded burnt‑orange throw across the foot and two dark brown accent pillows against a low dark-wood headboard, set in a beige-walled, hotel-like room with a bedside table and lamp visible to the right and a framed picture above the bed. +train_25488.png A low-profile single bed shot from a slightly elevated frontal angle, dressed in a warm orange, slightly wrinkled textured blanket with a pale off-white pillow at the head, sitting on a brown hardwood floor against a plain light-colored wall with a simple dark wooden frame visible at the foot. +train_25614.png A narrow single bed seen from a slight top-front angle has a medium-blue, slightly wrinkled fabric sheet with a lighter-blue band near the head, a small off-white pillow at the upper left, a dark low frame, and sits against a warm light-brown wooden floor and neutral wall. +train_25752.png A small single bed photographed from a slightly elevated frontal angle, with a smooth white fitted sheet covering a thin mattress set in a dark polished wooden frame and low headboard, two darker pillows (one brown/black) near the head, and a slightly rumpled blanket at the foot against a pale mint-green wall and wooden floor. +train_25754.png A low-profile, light-wood framed bed with a cream-beige, slightly textured fabric mattress topped by thin white bedding, shown from a shallow front-left angle against a plain off-white background with a soft shadow and notable for its low headboard and simple boxy platform silhouette. +train_25783.png A low single bed viewed from a slight front-left angle, topped with a rumpled deep-blue blanket and a pale off‑white pillow on a dark wooden frame, set in a dim, warm‑toned interior with shadowy walls and indistinct background objects. +train_26062.png Slightly elevated frontal view of a single bed featuring a wrinkled teal-green coverlet and a darker teal pillow on a low dark frame against a neutral beige wall, the fabric showing visible creases and a faint worn texture. +train_26187.png Low-profile single bed viewed from a slightly elevated front-left angle, with a pale beige quilted mattress and a rumpled light-blue sheet topped by a folded tan blanket at the foot, set on a thin dark metal frame over a wooden floor against a plain off-white wall. +train_26207.png A small single bed seen from a slight overhead-right viewpoint with a smooth off-white/beige mattress and a slightly rumpled light-blue pillow, set against a plain white wall on a warm wooden floor and framed by a narrow dark-brown wooden headboard/frame with visible grain. +train_26316.png A low-angle, slightly side-on view of a simple bed with a rumpled deep red blanket showing coarse woven texture, a lighter beige pillow at the head, a visible dark bed-frame edge and shadow, set against a plain warm-beige wall and low-resolution floor foreground. +train_26362.png A slightly overhead frontal view of a neatly made bed with a cream‑beige, subtly textured duvet and two pale pillows, a narrow deep‑red runner across the foot, positioned against a dark wooden headboard and neutral beige wall in a small room. +train_26717.png A small single bed with a pale beige wooden frame and smooth finish, dressed in off-white, slightly rumpled linen and a single white pillow, shown from a slightly elevated front-left three-quarter viewpoint against a dark polished wooden floor and plain beige wall, revealing a thin mattress and exposed short legs. +train_27089.png A low-profile bed viewed from a slight overhead front-right angle, with a dark wooden frame and visible legs, a rumpled off-white/cream textured duvet and a single pale pillow at the head, set against a plain light-colored wall and bare floor. +train_27628.png A small single bed photographed from a front-left three-quarter view with light beige/cream smooth bedding and a white pillow, framed by a medium‑brown wooden headboard and footboard, set against a plain light-colored wall and pale wooden floor. +train_27807.png Three-quarter side view of a single bed pushed against a pale wall, covered by a wrinkled deep red–orange quilted coverlet with a lighter cream pillow at the head and a dark wooden headboard visible above, set on a light beige floor. +train_28377.png Slightly elevated three-quarter view of a compact bed with a tan upholstered headboard and wooden base, dressed in crisp white linens with a light beige folded blanket at the foot and a white pillow, set against a plain pale wall and light-colored floor. +train_28448.png A small bed with an off-white, slightly textured quilted cover and thin mattress set in a glossy dark reddish-brown wooden frame with turned corner posts and visible slatted head- and footboard, photographed from a low front-left three-quarter viewpoint against a bright blue wall and pale floor, with the mattress slightly overhanging the frame visible despite the low resolution. +train_28491.png A low-profile bed photographed from a slight front-right angle with a bright cobalt-blue, slightly rumpled fabric cover over a white wooden frame, a dark brown rectangular headboard, a single pale pillow at the head, and a pale blue wall with light hardwood floor in the background. +train_28552.png A slightly angled, low-resolution view of a bed with a bright turquoise/teal, slightly wrinkled fabric cover and a white pillow against a dark upholstered headboard, set next to a pale wall and a sunlit window on the left with a small wooden nightstand visible on the right. +train_28557.png A low, wooden-framed bed viewed from a front-right three-quarter angle, covered in a slightly wrinkled medium-blue blanket with a white pillow against a light oak slatted headboard, standing on warm wood floorboards in a sparsely furnished beige-walled room. +train_28594.png A low platform single bed seen from a slight oblique foot-right viewpoint, with a pale beige upholstered headboard, a rumpled off-white sheet and matching pillow showing soft fabric texture, set against a plain white wall and light wood floor with a dark vertical object to the right. +train_28646.png Seen from a slightly elevated frontal angle, the bed has a dark wooden rectangular headboard and low frame, pale rumpled bedding with a faded rose‑red throw draped across the center and indented pillows, set against a plain beige wall with dim, shadowed surroundings. +train_28729.png Angled frontal view of a bed covered by a deep blue, slightly textured blanket with faint horizontal banding and light cream pillows at the head, set against a simple wooden headboard and neutral beige wall background. +train_28834.png A narrow single bed photographed from the foot at a slight left angle, covered in a wrinkled white sheet topped by a crumpled tan/beige blanket with a soft, slightly fuzzy texture, set against a plain pale wall with a low wooden headboard and dark wood flooring visible. +train_28867.png A low wooden platform bed with a smooth teal/blue cover and a single white pillow near the headboard, shown from a shallow overhead angle against a warm hardwood floor and pale wall, the slatted wood frame and tucked mattress corner still discernible despite low resolution. +train_29133.png A narrow single bed with a rumpled off-white duvet and matching pillow resting on a dark wooden frame, seen from a slightly elevated frontal-left viewpoint against a pale blue wall and dim, indistinct background, the bedding’s soft, uneven texture and the frame’s smooth dark finish visible despite low resolution. +train_29242.png A slightly overhead three-quarter view of a small bed with a teal-blue, mildly rumpled textured blanket and a pale pillow at the head, resting on a warm reddish-brown wooden floor against a matching headboard/wall and supported by a low dark frame. +train_29268.png A narrow single bed seen from a slight front-left overhead angle with a smooth light-oak wooden frame and low slatted headboard, dressed in beige/tan linens and a thin matching blanket, set against a plain pale wall and light floor in a sparsely furnished room. +train_29446.png A slightly angled view from the foot-right of a single bed with a dark brown wooden slatted headboard and frame, a rumpled tan/beige duvet showing soft, creased fabric texture and a white pillow at the head, set against plain beige walls and a wooden floor with a small circular dark rug at the foot. +train_29576.png A slightly low, three-quarter view of a minimalist platform bed topped with a rumpled off-white textured duvet and matching pillows, a folded charcoal-gray throw across the foot, set on warm wooden floorboards against a pale wall with soft side lighting that reveals the bed's exposed wooden legs and simple frame. +train_29676.png A single narrow bed covered in a light beige, slightly rumpled quilted blanket with a darker brown folded throw at the foot, seen from a low oblique frontal viewpoint in a compact room with pale walls and a wooden floor, featuring a simple low wooden headboard and a visible pillow near the head. +train_29726.png A low-resolution image of a charcoal-gray upholstered bed photographed from a slightly elevated three-quarter front view, showing a smooth, matte duvet with faint horizontal creases, a low dark-wood platform frame, a single pale pillow near the headboard, and a neutral beige wall and light floor in the background. +train_29778.png Viewed from a slightly elevated front-right angle, the bed is covered in a bright turquoise quilt with a subtle quilted texture and a white pillow propped against a dark wooden headboard, set on a warm hardwood floor with pale beige walls and a small orange rug visible at the foot. +train_29889.png Viewed from a slightly elevated frontal angle, the bed appears as a compact frame topped with a dark blue, slightly textured comforter and a pale gray pillow toward the head, set on a warm brown wooden floor against a muted wall with a small wooden nightstand visible at the head and the bedding modestly rumpled. +train_29948.png Shot from a slight overhead-left angle, the bed is covered in wrinkled off‑white/cream bedding with a single pale pillow, set against a plain beige wall with a dark bed frame/headboard visible along the left edge. +train_30075.png A low rectangular bed viewed from a slight top-down angle, covered with a smooth pale beige/ivory sheet and a rumpled terracotta‑orange blanket across the foot, set on a wooden floor against a light-colored wall with minimal surrounding furniture. +train_30100.png A low-resolution three-quarter frontal view of a small bed with a warm orange-red, slightly textured blanket draped over a pale wooden frame and visible headboard, set against a light-colored wall and wood parquet floor with the bedding appearing mildly rumpled. +train_30534.png A low, dark-brown wooden bed with a simple rectangular headboard and footboard, topped with rumpled white sheets and a beige throw, viewed from a slightly elevated front-left three-quarter angle against a plain white wall and pale wooden floor with a small bedside unit visible at the right. +train_30595.png A slightly off-center frontal view of a low-profile bed with a light wooden frame and headboard, covered by a crumpled warm orange-yellow duvet with a soft, slightly shiny texture, placed against a plain pale wall and light floor. +train_30609.png A low-profile platform bed with a pale beige, slightly quilted mattress showing subtle horizontal seam lines, a light natural wood frame and short exposed legs, photographed from a slightly elevated front-left three-quarter viewpoint against a plain white wall and pale wooden floor with a small white pillow at the head. +train_30682.png A slightly elevated frontal view of a bed topped with a medium-blue, slightly rumpled blanket showing a soft fabric texture, two white pillows propped against a light wooden headboard and pale wall background, with a small dark nightstand visible at the left edge of the frame. +train_30698.png A low, rectangular bed with a light beige/cream upholstered surface showing a subtle tufted texture, seen from a slight front‑angled top view, standing on short wooden legs against a simple pale wall and floor with soft shadowing. +train_30734.png The image does not show a bed; it depicts a low-resolution, cartoon-like small storefront with a beige facade, dark windows and a red-and-white striped awning against a plain white background. +train_31011.png A small single bed with a light honey‑oak wooden frame and slatted headboard, dressed in a cream quilted bedspread over white sheets with a single pale‑blue pillow, shown from a low frontal three‑quarter view against a plain white wall and light wood floor. +train_31208.png Seen from a slightly elevated frontal angle, the bed features a light-blue, slightly rumpled cotton duvet with a darker-blue rectangular pillow at the head, sitting on a low dark frame against a plain beige wall and a warm brown wooden floor. +train_31369.png A slightly elevated frontal view shows a low-profile bed with a light tan/beige, slightly wrinkled fabric mattress on a pale wooden platform, a darker brown throw or shadow draped along one side, set against a plain dark-gray background with a faint pale floor visible. +train_31621.png A slightly rumpled pale cream bed viewed from a three-quarter frontal angle, topped with two light pillows and backed by a low dark wooden headboard against a neutral beige wall and darker floor, the soft bedding showing subtle folds and a faint stitched texture. +train_31627.png Angled overhead from the foot-left, the bed is covered in a deep navy-blue, slightly wrinkled quilt with subtle horizontal stitching and a darker shadowed edge, topped by a pale cream pillow at the head and set against a neutral beige wall and warm wooden floor, the cover's texture and folds visible despite the low resolution. +train_31669.png A small single bed with a dark brown polished wooden frame featuring a curved headboard and footboard, topped by a light cream sheet and a white pillow showing smooth fabric texture, viewed from a slightly elevated three-quarter frontal angle against a plain pale indoor backdrop of light floor and wall. +train_31744.png A compact, low-profile bed frame in medium warm brown with visible wood-grain texture and a mild sheen, shown from a front-left three-quarter elevated viewpoint against a plain white background, revealing a rectangular platform top, short square legs and slightly darker edge shadowing. +train_31839.png A low white-framed bed covered in a light teal-blue quilt with a soft, slightly rumpled, subtly striped texture, photographed from a shallow side/foot angle against a neutral pale wall and hardwood floor with pillows bunched at the head. +train_31887.png Viewed from a slightly elevated three-quarter angle, the small single bed has a vivid red-pink, slightly quilted-looking coverlet with a contrasting white pillow at the head, set on a low dark base against a pale wall and light floor with minimal surrounding clutter. +train_31979.png A low platform-style bed viewed from a slight frontal angle, topped with a bright red, slightly wrinkled quilted cover and a single white pillow at the head, backed by a dark wooden headboard against a plain light wall and resting on a warm-toned hardwood floor with a small bedside surface visible to the right. +train_32314.png Frontal view of a low, neatly made bed covered in a smooth cream-beige duvet with matching pillows and a darker brown folded throw at the foot, set against a pale wall with a simple wooden headboard and a small bedside table holding a lamp and indistinct decor in a softly lit bedroom. +train_32332.png A low rectangular bed covered in a warm orange, slightly rumpled matte-fabric duvet, seen from a shallow top-right oblique viewpoint against a pale wooden floor and light wall background, with a crumpled white pillow or sheet at the head and soft shadowing along the near edge. +train_32538.png Slightly overhead and angled, the compact bed sits against a pale wall with a rumpled, medium-brown textured duvet and lighter beige pillows atop a simple wooden frame, with a small dark piece of furniture visible at the foot and a bare floor in the background. +train_32588.png A low-profile bed viewed from a slight frontal angle with soft, slightly wrinkled off-white/ivory bedding and two pillows, set on a dark brown wooden frame with a tall padded dark headboard against a pale blue wall and a small indistinct bedside object to the right. +train_32636.png A low-resolution three-quarter frontal view of a small wooden bed with a warm medium-brown, slightly glossy frame and a pale mattress topped by a light pillow, set against a plain white background with a faint shadow underneath and showing a rectangular headboard and simple blocky legs. +train_32675.png An oblique frontal view of a simple bed dressed in off-white, slightly rumpled cotton sheets and a light beige quilt with a soft, wrinkled texture, topped near the foot by a folded dark red/burgundy throw, positioned against a pale teal wall with a medium‑brown wooden headboard and warm wood floor visible. +train_32707.png A low, modern wooden-framed single bed viewed from a slight overhead angle, covered with a solid mid-to-dark blue textured duvet and a single white pillow at the head, set against a pale beige wall and light wood floor. +train_32879.png A low-profile single bed photographed from a shallow frontal angle, with a honey-brown wooden frame and simple rectangular headboard, topped by a slightly rumpled warm orange-brown woven coverlet and a pale pillow, set against a plain light-colored wall and light wood floor. +train_32903.png A three-quarter frontal view of a small bed with a soft, light-blue fabric upholstered base and a darker navy-blue, slightly rumpled duvet and pillow, raised on short dark legs and positioned against a plain pale wall with a narrow wooden headboard/post visible at the right edge. +train_32913.png From a low, frontal three‑quarter viewpoint the image shows a small single bed with a warm medium‑brown wooden frame (curved headboard and visible slatted base) and a slightly rumpled off‑white mattress cover, set against a plain pale wall and light wood or laminate floor. +train_32986.png A low-profile single bed photographed from a low frontal angle, covered in a smooth light-gray quilt with subtle horizontal texture, topped by a pale pillow at the head, supported on a simple dark metal frame and set against a pale wall and light tiled floor. +train_33045.png Slightly elevated frontal view of a small, polished medium‑brown wooden bed with turned posts and a central star-shaped cutout in the headboard, dressed with a dark burgundy textured bedspread and a pale beige pillow, set on a dark wood floor against a tan wallpapered wall patterned with small red star/diamond motifs. +train_33213.png A small single bed with a smooth white mattress and dark brown wooden frame, seen from a slightly elevated oblique angle, set against a pale green wall and light wood floor, with a rumpled light-colored sheet and a folded mustard-yellow blanket at the foot. +train_33496.png A low-profile bed with a light oak wooden frame and a rumpled blue‑gray duvet showing coarse fabric texture, seen from a slightly elevated front‑left angle against a pale wall and hardwood floor, with a simple rectangular headboard and thin mattress profile visible. +train_33549.png A slightly elevated frontal view shows a bed dressed in a deep red coverlet with lighter rectangular/striped motifs and a subtly rumpled, woven texture atop a dark wooden frame, set against a pale wall with small framed pictures and a bedside lamp visible in the background. +train_33561.png Seen from a slightly off-center, low viewpoint, the small bed features a light wood frame and pale beige headboard with rumpled white/cream bedding and a darker folded throw at the foot, positioned against a plain light-colored wall with a small bedside surface and indistinct objects to the side. +train_33624.png A compact bed with a slightly wrinkled cream-colored duvet and two matching pillows set on a dark wooden frame, seen from a low front-right viewpoint against a pale wall and dark floor, the headboard appearing as a simple dark panel and the bedding's soft texture still discernible despite low resolution. +train_33666.png A low wooden-framed bed pushed against a pale blue wall, topped with a slightly rumpled medium-blue duvet showing faint horizontal quilting and a single white pillow at the head, with a light-colored floor and a small bedside surface partially visible to the left. +train_33701.png A slightly elevated frontal view of a small double bed covered with a warm orange-brown, slightly rumpled textured duvet and two bright white pillows against a dark wooden headboard, set in a simple room with a pale wall, a bedside table and lamp to the right, and a carpeted floor visible in the foreground. +train_33740.png A slightly elevated three-quarter view of a simple light-wood bed with a smooth pale-oak frame and headboard, topped by a slightly rumpled off-white duvet and matching pillows whose soft textured fabric is visible, set on warm hardwood flooring against a plain cream wall. +train_33815.png A wooden-framed bed seen from a slight overhead angle, with a dark-stained headboard and legs, a crisp white mattress and pillow partially covered by a bright orange, slightly textured blanket draped over the foot, set against a neutral light-gray background with a small round orange rug at the lower edge. +train_33951.png A low, beige-cream mattress with a slightly rumpled, smooth fabric cover rests on a light-wood rectangular platform bed seen from a slightly elevated oblique viewpoint, set against a pale wall with a dark vertical element and a cool-toned floor, the simple wood frame and short legs visible beneath. +train_34312.png A rectangular bed with a muted mid-blue fabric surface and a slightly darker blue band along its top edge, seen from a slightly elevated three-quarter frontal viewpoint that reveals short dark legs and a shadow beneath, set against a plain pale-gray wall and floor with no other visible furnishings. +train_34382.png Three-quarter frontal view of a small bed with a glossy honey-brown wooden frame and low slatted headboard, dressed in smooth white sheets and a slightly rumpled white pillow with a folded burnt‑orange throw at the foot, set against a pale wall and wooden floor. +train_34480.png Oblique top-down view of a rectangular bed with a vivid blue, slightly wrinkled fabric cover and a cream-colored base, positioned on a pale floor against a neutral wall, with the mattress edges and subtle creases visible despite the low resolution. +train_34508.png A low-profile white mattress with a faint quilted grid texture and slight surface rumpling is shown from a shallow front-left/top viewpoint, sitting on a deep red textured floor or carpet background with a soft shadow along its near-right edge and a visible front seam. +train_34531.png A small indoor bed is shown from a slight overhead frontal angle, covered by a bright coral‑orange, slightly wrinkled fabric throw over white sheets with a low white headboard against a warm beige/orange wall and a darker floor area at the foot. +train_34542.png Viewed from a slightly elevated front-left angle, the image shows a narrow single bed with a light honey‑toned wooden slatted frame and headboard, a beige/cream wrinkled sheet over a thin mattress, a pale rumpled pillow and a folded blue blanket at the foot, set against a plain light wall and warm wooden floor. +train_34557.png A low-profile dark-brown wooden bed pictured from a slight left-front angle, dressed with a smooth tan/beige comforter and two pale pillows, set against a plain white wall and light wood floor with a tall rectangular headboard and simple modern lines visible despite the low resolution. +train_34710.png A low-profile rectangular bed with a smooth light beige/tan fabric mattress top and a darker brown base, seen from a slightly elevated frontal angle against a dark plain background, showing clean straight edges and a subtle seam where the top meets the base. +train_34788.png A low-resolution, front-left angled view of a compact maroon-red upholstered bed with a slightly glossy, smooth fabric and a subtly tufted headboard, short dark wooden legs, and a pale neutral wall and light floor visible in the background. +train_34927.png A low-profile cream-beige upholstered platform bed viewed from a slightly elevated oblique angle, showing a smooth fabric surface and two darker brown pillows at the head, set on a warm wooden floor with minimal surrounding furnishings. +train_35087.png A low-profile single bed upholstered in dusty-rose, velvet-like fabric with subtly rounded edges and visible seam detailing, shown from a slightly elevated front-left three-quarter view on a warm hardwood floor against a pale wall with white baseboard, with a small light-colored rectangular cushion or object at the foot. +train_35220.png A low-resolution three-quarter view of a single bed appearing to be covered by a rust-orange, slightly textured quilt with a lighter pillow at the head, set against a pale wall and blue floor with a simple headboard and indistinct bedside clutter visible despite the blur. +train_35306.png A compact modern platform bed seen from a low angled frontal view, dressed in a slightly rumpled off-white cotton duvet and pillows with a soft, wrinkled texture, set against a plain pale wall and light wood floor and topped by a low, dark-gray upholstered headboard with minimal surrounding clutter. +train_35363.png A low, dark-stained wooden bed with a smooth, slightly glossy finish and simple vertical slatted headboard and footboard, topped by a cream-colored mattress and pillow, shown from a low three-quarter angle against a pale wall and warm wooden floor. +train_35520.png A low-profile single bed seen from a slight front-left angle, with an off-white smooth-matte mattress and matching pillow resting on a thin dark tubular metal frame with visible legs, set against a plain pale wall and warm wooden floor. +train_35545.png A small bed depicted in a shallow three-quarter top-down view with a white mattress inset into a reddish-brown, slightly glossy wood frame featuring a rounded headboard and footboard, two-tone brown shading and subtle shadowing, set against a plain white background and still showing these simple structural details despite the low resolution. +train_35597.png Top-down view of a small rectangular bed with a pale beige–cream cover showing faint seam lines and a subtly wrinkled, soft fabric texture, placed on an orange-brown floor or rug with a narrow darker edge visible along one side. +train_35667.png Seen from a slightly elevated frontal viewpoint, the low platform bed is dressed in a rumpled cream‑beige linen duvet with two white pillows, set against a pale wall on a warm wooden floor with a dark low-profile frame visible at the foot. +train_36044.png A low, single bed seen from a slightly elevated frontal viewpoint with a warm reddish-brown wooden slatted headboard and matching footboard showing faint wood grain and short sturdy legs, topped by a smooth pale peach/orange blanket and a white pillow, set against a plain light-colored wall and hardwood floor. +train_36155.png A low-profile light-oak bed with a slightly rumpled off-white quilted cover seen from a shallow frontal-elevated angle against a muted blue-gray wall and pale floor, featuring a simple rectangular headboard and a visible pillow at the head. +train_36166.png A narrow single bed covered by a slightly rumpled peach‑orange quilt with a pale pillow at the head, seen from a low diagonal frontal viewpoint against a light-colored wall with a simple wooden headboard and a curtained window to the side, the quilt’s soft creases and woven texture still discernible despite the low resolution. +train_36465.png Viewed from a slightly elevated frontal angle, the bed has a soft, slightly rumpled light-gray/white duvet and matching pillows with a subtle woven texture, a low warm-brown wooden headboard, and is set against a darker wall with a window (closed blinds) to the left and a small bedside table with a lamp to the right. +train_36524.png A low-profile bed viewed from a slightly elevated frontal angle, topped with rumpled off-white bedding showing soft, wrinkled texture, a pale gray upholstered headboard and frame, set against a cool blue wall with a small bedside surface and muted daylight coming from the right. +train_36604.png A light honey-brown wooden single bed with a smooth, slightly glossy finish and vertical slatted headboard and low footboard, seen from a shallow front-left angle in a simple bedroom with pale beige walls and wooden floor, showing a thin, pale blue mattress and minimal bedding despite the low resolution. +train_36822.png A low-profile single bed seen at a shallow angled view with a light beige, slightly rumpled quilted cover and a white pillow tucked against a simple medium-brown wooden headboard, standing on warm parquet flooring next to a darker brown nightstand and a plain tan wall. +train_36883.png A slightly elevated front-right view shows a low-profile double bed with a pale pink, slightly rumpled duvet and white pillows on a light beige upholstered base, pushed against a cream wall beside a small wooden nightstand with a warm-glowing lamp on a wooden floor. +train_36919.png A narrow bed seen from a slightly elevated left-front viewpoint, draped in a rumpled medium-blue woven blanket with a lighter beige pillow at the head, placed in a compact room with a bright window on the left, warm-toned floor and a small bedside surface to the right, the cover showing visible creases and a folded edge at the foot. +train_37132.png A simple white, cartoon‑style bed silhouette—featuring a single rectangular pillow on the left and a solid platform base—is shown frontally centered on a glossy rose‑pink circular gradient background, with flat, smooth texture visible despite the low resolution. +train_37170.png Low-angle frontal view of a small bed covered in a vivid orange, slightly rumpled quilted/tufted fabric with a low matching headboard and a white pillow at the head, set against a pale beige wall with a narrow vertical window/curtain at one side and a wooden floor with a small red object near the foot. +train_37264.png A simple bed seen from a slight three-quarter frontal angle with a pale beige/cream textured mattress cover showing faint horizontal seams, a low dark wooden frame and headboard, two pillows stacked at the head, and a plain light-colored wall behind with minimal surrounding furniture visible despite the low resolution. +train_37310.png A small bed with a rumpled white duvet and a light beige blanket folded at the foot, seen from a slight overhead-front angle, resting on a light wood floor against a pale wall with a simple horizontal slatted headboard and a single pillow. +train_37325.png A low wooden-framed bed seen from a slightly elevated front-right angle, topped with a rumpled deep red-orange velvety blanket and a single pale pillow against a plain light-colored wall and warm wooden floor. +train_37386.png A low-resolution oblique front-left view of a single bed with a rumpled slate-blue duvet that shows a subtle quilted texture, two off-white pillows at the head, and a light wood headboard against a pale cream wall with a small wooden nightstand visible to the right. +train_37392.png A small, low-resolution pixelated bed rendered in burgundy-red tones with a slightly lighter red top sheet and a pale pink pillow at the head, sitting on a dark brown wooden frame with short legs and a visible headboard, shown from a three-quarter top-left viewpoint against a plain white/transparent background. +train_37480.png Three-quarter frontal view of a single, low-profile wooden-framed bed with a dark brown slatted headboard and visible wooden legs, draped in wrinkled cream-beige bedding and a slightly darker tan mattress, set against a muted teal wall with a mostly bare floor in the foreground. +train_37793.png Slightly elevated frontal view of a compact bed with rumpled off-white sheets, a light gray textured throw folded at the foot, and a low beige upholstered headboard, set against a plain pale wall over a warm wood-tone floor. +train_38036.png A single bed seen from a slight frontal-left angle, covered in a rumpled dusty-rose/pale-pink quilt with a softer light-pink pillow and a subtly textured, slightly wrinkled fabric surface, positioned against a pale neutral wall and light wood floor with a low dark headboard visible behind it. +train_38136.png A low-profile wooden bed with a light tan varnished frame and simple rectangular headboard supports a matte dark burgundy mattress, seen from a slight overhead frontal angle against a plain pale wall and wooden floor, with the slatted base and narrow under-bed gap faintly visible despite the low resolution. +train_38401.png A compact single bed covered in a pale pink, slightly rumpled plush blanket with a white pillow and fitted sheet, seen from a slightly elevated frontal angle against a simple light-colored wall and indistinct surroundings, with the soft texture and narrow profile still discernible despite the low resolution. +train_38406.png A low-profile rectangular bed seen from a slight overhead-front angle, with a smooth, bright white duvet and soft texture, set on a matte deep brown/black platform frame, topped by a small teal/blue cushion or folded throw and placed against a warm reddish-brown background with little surrounding clutter. +train_38419.png Shot from a slightly elevated front-left three-quarter viewpoint, the bed is covered in a rumpled, vivid magenta-pink duvet with a smooth, slightly shiny texture and matching pillows, set against a pale wall with a dark curtain or fabric on the right and a small bedside surface partially visible. +train_38433.png A narrow bed covered in a warm, slightly rumpled orange-brown blanket with a pale cream pillow at the head is seen from a low, oblique frontal viewpoint against a plain white wall and wooden floor, with a small dark-framed picture and minimal bedside clutter visible despite the low resolution. +train_38460.png A slightly elevated frontal view of a beige-upholstered bed topped with a rumpled off-white/cream duvet and two pillows, set against a darker brown headboard in a dim bedroom with a wooden floor and a small nightstand visible at the right edge. +train_38568.png A low-profile bed photographed from a slight left-front angle, with smooth off-white bedding and a light beige upholstered headboard set against a plain pale wall, a darker wooden base visible along the foot and a single muted brown cushion at the head. +train_38764.png A low single bed seen from a slightly elevated three-quarter front-left angle, dressed in a saturated cobalt-blue quilted cover showing faint horizontal stitching and a lighter-blue pillow at the head, set on a simple light-wood low-profile frame with short legs and photographed against a plain off-white background with soft even lighting. +train_38847.png A low-resolution, slightly elevated oblique front-left view of a single bed dressed in a warm orange-brown patterned coverlet with a pale pillow, a low dark headboard, and a visible wooden frame set on a light tiled floor against a pale wall with a blue dresser or cabinet to the right. +train_38986.png From a slightly angled foot-of-bed viewpoint, a low bed with a light-wood slatted headboard is dressed in a bright teal, lightly quilted bedspread with a folded lighter-turquoise throw at the foot and two pillows, set against neutral walls with a curtained window on the left and a small bedside table and lamp visible. +train_38989.png A single bed viewed from a slightly elevated frontal angle with a smooth bright red blanket covering the mattress, a white pillow at the head, a dark brown wooden frame visible along the sides, and a plain pale wall and narrow wooden floor strip in the background. +train_39008.png A small wooden-framed bed shown from a three-quarter front-left viewpoint, with a smooth teal-blue mattress and pale pillow, a light brown slatted headboard and visible under-bed legs, set against a plain white background. +train_39023.png A low-profile bed seen from the foot at a slight angle, dressed in a rumpled light teal-blue duvet and white pillows with a soft, slightly textured linen appearance, backed by a pale wood headboard against a beige wall and a small dark nightstand visible to the right. +train_39051.png A low, rectangular, bright cobalt-blue velvet-like upholstered bed photographed from a slightly elevated three-quarter front-right view, with a subtly tufted top and short dark legs set on a light floor against a plain white wall. +train_39122.png A low single bed with a smooth, light-pine slatted headboard and footboard and a neatly fitted white/cream sheet, seen front-on at a slight left angle in a small room with a pale peach-beige wall, light wood floor, and a small blue square (art or window) on the wall behind. +train_39125.png Angled frontal view of a low bed draped in a crinkled mustard-yellow quilt with faint horizontal seams and a soft, matte texture, set against a darker headboard or wall and warm wooden flooring under yellowish indoor lighting. +train_39328.png Seen from a slightly elevated three-quarter frontal view, the bed features a dark wooden slatted headboard and frame, a rumpled deep-red fabric comforter with a soft, slightly textured appearance and contrasting white pillows, set against a muted blue wall and light wooden floor. +train_39573.png A low rectangular bed seen from a slight front-right, eye-level angle, covered by a warm tan‑orange, slightly textured bedspread with two white pillows tucked against a dark wooden headboard, set in a sparse pale-walled room with a small brown nightstand to the left. +train_39663.png Low-angle front-left view of a small bed covered in a deep crimson, slightly lustrous fabric with faint horizontal quilting, a contrasting white pillow visible at the head, and a plain white/neutral background. +train_39687.png A single, low wooden-framed bed viewed from a slightly elevated front-left angle, with a wrinkled beige-tan duvet and light pillows, a darker brown mattress base and simple headboard set against a pale wall and warm wood floor. +train_39796.png A narrow single bed with rumpled white linens and a thin mattress on a pale wooden slatted frame is shown in a low three-quarter view against a light wall and wood floor, with a small pillow at the head and a folded beige blanket at the foot visible despite the low resolution. +train_39865.png A low platform bed viewed from a slightly elevated frontal angle, covered in a light beige, slightly rumpled quilted fabric with a single rectangular pillow and supported by a darker brown wooden frame and headboard against a plain pale wall. +train_39870.png Seen from a slightly elevated frontal angle, the bed is covered by a warm burnt‑orange, slightly rumpled duvet with a pale off‑white pillow at the head against a dark headboard and neutral wall, the low-resolution image still showing pronounced fabric creases and a small lighter patch near the duvet's center. +train_40024.png A small single bed seen from a slight overhead frontal angle, dressed in a warm orange-red textured blanket with subtle quilting, a pale pillow at the head, and a dark wooden headboard against a muted beige wall and wooden floor visible in the low-resolution background. +train_40046.png Front-facing, slightly elevated view of a bed dressed in a maroon-red, subtly patterned textured bedcover with a lighter horizontal band near the foot, a pale pillow propped against a simple wooden headboard, set in a modest beige-walled room with a small dark nightstand and lamp visible to the left. +train_40058.png A low-profile bed seen from a slightly elevated frontal viewpoint, covered with a rumpled teal-blue duvet with a visibly wrinkled texture, two white pillows at the head, and a dark wooden frame and simple rectangular headboard set against a pale beige wall and hardwood floor. +train_40132.png A low-profile bed shot from a front-left slightly elevated angle, covered in a vivid red-orange smooth duvet with faint creases, topped by two pale pillows and set against a plain light wall on a light-colored floor with a dark low headboard and short visible legs. +train_40135.png A low-profile light-wood platform bed seen from a slight frontal angle, topped with slightly rumpled white sheets and a pale blush throw at the foot, set against a neutral gray wall and light wooden floor with the simple slatted frame texture visible despite the low resolution. +train_40280.png A compact orange-wood bed with a slatted headboard and visible rectangular frame, draped with a bright teal-blue blanket bearing small pale dots, photographed from a shallow front-left angle inside a cluttered room with a purple-blue wall and light floor, the low-resolution image emphasizing the blocky mattress edges and simple wooden details. +train_40470.png A low-angle, diagonal view of a twin bed with a warm peach-pink, slightly wrinkled quilted cover, a bluish-gray pillow near the head, a dark wooden headboard against a beige wall, and a sliver of wooden floor with a small turquoise rug visible at the foot. +train_40507.png A low platform bed seen from a slight frontal angle, dressed in a soft, pale teal rumpled duvet with matching pillows and a visible white mattress edge, sitting on a warm wooden floor against a neutral beige wall with minimal clutter. +train_40613.png A small dark-chestnut wooden bed with a smooth, slightly glossy curved headboard and short legs, topped by a rust‑orange blanket with a subtle sheen and a single pale‑beige pillow, seen from a slightly elevated frontal viewpoint against a plain warm tan background with a soft shadow beneath, the rounded headboard and boxy frame remaining the clearest features despite the low resolution. +train_40683.png A small bed photographed from a slight diagonal above the foot, with a vivid magenta-pink, slightly wrinkled coverlet laid over a visible white sheet and pillow on a light wood frame, set against pale walls and a wooden floor with a low headboard visible. +train_40750.png A low-resolution three-quarter top-front view of a simple light-brown polished wooden-framed bed with a smooth beige mattress and a pale pillow near the head, rounded headboard and footboard silhouettes visible, set against a plain white background with a soft shadow beneath. +train_40774.png Seen from a slightly elevated frontal viewpoint, the bed has a teal-green, quilted-looking bedspread with horizontal stitching and a soft, slightly rumpled texture, a darker pillow near the head, all sitting on a low wooden frame against a pale wall and light hardwood floor with a small dark bedside surface to the right. +train_40900.png An elevated front-left view of a simple bed with rumpled tan/beige linens, a white pillow, and a darker brown folded throw at the foot, framed by a light-wood headboard against a plain pale wall and a bare floor visible in the background. +train_40933.png A single light honey-colored wooden bed with a smooth polished grain and curved slatted headboard, a thin white mattress topped by a slightly rumpled pale-blue coverlet and pillow, viewed from a front-left elevated angle against a plain off-white wall with a small dark bedside object to the right. +train_41077.png A slightly elevated, angled view of a low-profile bed with crisp white sheets and pillows, a dark wood headboard, and a folded bluish‑gray knit throw at the foot, set against a pale blue wall and simple floor, the bedding appearing smooth with subtle wrinkles. +train_41270.png Front-facing view of a small bed dressed in a warm amber-orange, slightly rumpled textured duvet with two matching pillows, set against a dark wooden headboard and deep brown background with the mattress edge and bed frame faintly visible. +train_41324.png A low-profile bed seen from a slight overhead-front angle is covered by a rumpled, matte light blue-gray duvet with white pillows at the head, set against a pale wall and light wood floor with a dark headboard behind it. +train_41427.png A light honey‑colored slatted wooden bed frame topped with smooth white bedding and a single slightly rumpled pillow, seen from a slightly elevated three‑quarter view toward the headboard against a plain pale wall, with a folded cream throw at the foot. +train_41490.png A low, rectangular deep-red upholstered platform bed with a slightly textured, padded fabric surface seen from a front-left angle, sitting on short black legs on a wooden floor against a pale wall with a small white side object to the right. +train_41562.png Three-quarter frontal view from the foot-right of a low wooden single bed topped with a rust‑orange quilt showing a slightly wrinkled, stitched texture and a darker red pillow at the head, set against a plain beige wall and pale floor with the warm wood frame visible along the foot. +train_41615.png Slightly angled front view of a simple bed draped in a rumpled teal-green textured comforter with a lighter folded blanket at the head, two pillows (one dark gray, one off-white) propped against a plain pale wall and a small dark bedside surface visible at the right. +train_41793.png A small single bed seen from an oblique overhead angle, topped with a rumpled medium-blue quilt with a faint woven texture and a pale beige pillow at the head, resting on a light-colored floor against a pale wall with a dark, boxy bedside object to the right. +train_41942.png A low-profile platform bed viewed from a slightly elevated three-quarter front angle, with a soft off-white/cream duvet showing subtle wrinkles, a single pale pillow and a dark brown wooden frame and slatted headboard, set against a neutral pale wall and light wood floor and retaining a clean rectangular silhouette despite the low resolution. +train_42252.png A small bed with a warm medium‑brown varnished slatted headboard and footboard, the smooth wood grain visible despite low resolution, seen from a slight front‑left angle showing a rumpled light/white mattress and thin pale bedding, set on a wooden floor against a plain pale wall with minimal background clutter. +train_42284.png Viewed from a high oblique angle, the low wooden-framed bed holds a thin, slightly rumpled orange-yellow fabric bedspread with a faint woven texture and a small pillow at the head, set against a pale blue wall and grey tiled floor. +train_42306.png A low-profile bed with a smooth light-oak wooden frame and rectangular headboard, seen from a three-quarter overhead/right viewpoint, featuring a pale pink textured mattress cover, a folded mauve blanket and a white pillow, set against a plain white background with a soft shadow beneath and visible slatted support at the foot. +train_42360.png A slightly elevated three-quarter frontal view of a small single bed with a warm medium-brown varnished wooden frame and slatted headboard, a thin off-white mattress and pillow, short square legs and a faint shadow beneath, set against a plain light background. +train_42489.png A low-profile bed photographed from a slightly elevated front-left three-quarter viewpoint, draped in a vivid orange, slightly rumpled blanket with a soft matte texture, contrasted by a dark rectangular headboard against a pale bluish wall and light wooden floor, with a pale pillow visible at the head. +train_42520.png A small single bed with a dark brown wooden frame and slatted headboard, topped by a slightly rumpled light beige/cream blanket and a white pillow, shown in a three-quarter top-down view against a pale neutral floor and light wall with soft diffuse lighting. +train_42562.png A slightly elevated frontal-left view of a low bed draped in a wrinkled burnt-orange textured cover with a folded teal-blue blanket and light pillows at the head, set against pale walls in a small, sparsely furnished room where the dark wooden frame and short legs are visible and a narrow gap beneath the bed can be seen. +train_42566.png A small single bed with rumpled white bedding and a bright coral-red folded blanket near the foot, seen from a shallow front-right overhead angle against a plain pale wall and dark floor, with a simple headboard and one pillow visible. +train_42874.png A slightly elevated frontal view of a cream-beige upholstered bed with a gently rounded headboard, soft textured cream bedding and two plump matching pillows, set against a pale wall with minimal decor and a darker floor visible at the foot. +train_43030.png A small single bed shown front-on with a slight top-down angle, featuring a warm medium‑brown polished wooden frame with visible grain and slatted headboard and footboard, a cream to off‑white slightly rumpled mattress and pillow with soft fabric texture, and placed against a plain pale neutral background. +train_43097.png A slightly elevated three-quarter front view of a small, dark brown polished wooden bed with four turned posts and vertical slatted headboard and footboard, holding a pale off-white mattress and pillow, shown against a plain white background. +train_43214.png A low wooden-framed bed photographed from a slight overhead-right angle, covered in a rumpled teal-blue blanket with a soft, slightly worn texture and a pale pillow near the head, placed on warm honey-toned hardwood flooring against a plain pale wall with a small dark bedside object to the left. +train_43267.png A low, single bed viewed from a shallow overhead-right angle with a pale cream, slightly quilted mattress covered by a rumpled light gray-blue sheet, set against a plain white wall with a narrow wooden headboard and a small dark pillow at the head, the fabric seams and rounded corner visible despite the low resolution. +train_43595.png Front three-quarter view of a low dark-wood platform bed with a smooth nearly black headboard, rumpled white linens and pillows and a folded gray blanket across the foot, positioned against a plain light wall with a tall dark door or wardrobe to the right. +train_43619.png A slightly angled overhead view of a bed draped in a two-tone pink-to-raspberry duvet with a soft, slightly wrinkled matte texture, a white pillow tucked near the head, and a pale sheet/mattress edge visible at the foot against a neutral background. +train_43628.png A frontal, slightly elevated view of a low bed with rumpled white linens and pillows draped over a light wood platform and simple vertical-slat headboard, set against a plain pale wall with a dim wooden floor visible at the foot. +train_43684.png Slightly elevated frontal view of a low-profile bed with a light brown frame, a rumpled smooth blue coverlet and a bright red cushion near the center, positioned against a plain pale beige wall and wooden floor, with a dark garment or bag lying at the left edge. +train_43966.png Slightly angled frontal view of a low bed draped in a rumpled pale teal/blue linen-textured duvet with two pillows and a darker folded throw at the foot, set against pale walls in a compact, sunlit room with a small wooden nightstand and framed artwork behind it. +train_44065.png A compact bed with a warm brown wooden frame showing subtle grain, topped by a smooth pale-blue blanket and matching pillow, viewed from a slightly elevated three-quarter angle against a plain white background, with short legs and clear rectangular mattress edges visible. +train_44098.png A low, modern platform bed seen from a low front-left three-quarter view with off-white, slightly wrinkled bedding and a medium‑brown wooden base on slender legs set against a plain dark gray background, the simple rectangular frame and shadow underneath clearly visible despite the low resolution. +train_44185.png Frontal, slightly elevated view of a small bed with rumpled white sheets and two pale pillows propped against a light beige, subtly textured headboard, set in a softly lit room with a neutral-colored wall and indistinct bedside furniture in the background. +train_44359.png A low-resolution, slightly pixelated three-quarter top-down view of a wooden-framed bed with a slatted headboard, smooth teal/turquoise duvet and a white pillow, raised on short legs and set against a pale wall over a muted gray-blue tiled floor, with flat color blocks and soft shadows defining its simple form. +train_44381.png A low-profile light-wood platform bed with a smooth pale-oak frame and slatted headboard, dressed in a warm peach-orange quilted coverlet and a single white pillow, seen from a slightly elevated front-left viewpoint against a plain beige wall and hardwood floor with a small bedside surface to the right. +train_44396.png A small, stylized bed shown in a three-quarter front-right view with a smooth, glossy red-orange curved headboard and matching footboard, a crisp white mattress and single pillow, light wooden legs and a faint shadow against a plain white background. +train_44501.png A low-profile bed photographed from a slightly elevated frontal angle, dressed in a rumpled dark blue-gray blanket with exposed white sheets and a single white pillow, sitting on a light wooden floor against a pale wall with a small bedside surface visible at the edge. +train_44548.png A low, front-left view of a bed with a rumpled off-white duvet and matching pillows showing a soft, wrinkled cotton texture, set against a plain pale wall with a narrow dark headboard and shadowed base. +train_44600.png Slightly overhead frontal view of a bed with a warm tan–gold, softly wrinkled bedcover and two pale pillows tucked against a medium-brown wooden headboard, set in a dim, neutral-toned room with a darker floor visible at the foot. +train_44662.png A small bed covered by a mottled teal-green, coarse-woven quilt that is slightly rumpled across the top, photographed from a low frontal/elevated angle revealing a simple dark headboard against a pale blue wall with indistinct furniture flanking the sides. +train_44736.png A small, pixelated three-quarter top-front view of a warm light-brown wooden bed with a pale beige mattress, two teal-blue pillows and simple off-white bedding, featuring a rectangular headboard and low footboard against a plain white background. +train_44811.png A low, oblique overhead view of a light beige, subtly textured quilted bedspread with faint horizontal stitching and a darker folded throw at the foot, set against a neutral, dimly lit bedroom background with a simple low headboard and the floor visible beyond the bed. +train_44844.png Frontal, slightly elevated view of a bed with an off-white, slightly rumpled duvet and matching pillows resting on a seam-lined mattress, framed by a low dark-wood headboard against a pale wall with a small bedside surface visible to the right. +train_44905.png A small light-wood framed bed shown in a three-quarter frontal view, with a smooth pale oak finish and short tapered legs, topped by slightly rumpled white quilted bedding and pillows, set against a plain pale beige/white studio background. +train_44966.png A low-profile bed viewed from a slight top-down, three-quarter angle has a smooth light-oak wooden platform and narrow headboard, topped by a slightly rumpled white/cream duvet and pillows, set against a pale wall and warm hardwood floor with soft shadows along the frame. +train_45089.png A low wooden-framed bed covered by a rumpled, textured beige-brown bedspread with a single pale pillow, seen from a slight three-quarter angle toward the foot, set against a neutral light-colored wall with an indistinct framed picture and a warm wooden floor and small bedside surface visible. +train_45264.png A frontal view of a small bed with a creamy off‑white mattress and a muted teal‑gray blanket that appears slightly rumpled with a soft, matte fabric texture, set against a warm brown wall and low dark headboard with faint floor shadowing suggesting an indoor bedroom environment. +train_45480.png A wooden-framed bed viewed from a slightly elevated front-left angle, draped with a rumpled teal-blue duvet showing a soft, textured surface and a visible white pillow, set against a pale wall and wooden floor with a small bedside surface at the left. +train_45557.png A small single bed with a warm medium-brown polished wood frame featuring slatted headboard and footboard, a beige-cream mattress topped by a white pillow, shown in a slightly elevated three-quarter front-left view against a plain white background with a faint shadow beneath. +train_45630.png A low-profile dark-wood platform bed viewed from a slightly elevated front-right angle, dressed in a light cream-beige rumpled linen duvet and white pillow with visible soft wrinkles and folds, set against a neutral gray wall and pale wooden floor. +train_45672.png Viewed from a low oblique angle, the bed features a smooth dark brown wooden frame and headboard, crisp white linens with a light blue blanket folded at the foot and white pillows, appearing slightly rumpled against a pale blue wall with a simple nightstand beside it. +train_45727.png Viewed from a slightly elevated front-left angle, the bed is covered by a solid bright red, slightly quilted-looking duvet contrasting with a pale white pillow at the head, set against a plain light-colored wall in a compact room with a low wooden headboard and a small dark bedside surface visible to the right. +train_45964.png A low-profile bed seen from a slight overhead angle, covered in a smooth coral-pink duvet with a faint central crease and a pale rectangular pillow at the head, set against a neutral beige wall and light wood or carpeted floor. +train_46047.png A low-resolution frontal view of a small bed draped in a dusty-rose, slightly wrinkled quilted coverlet with a soft sheen, backed by a dark wooden headboard against a plain beige wall and a compact nightstand with a small lamp visible at the right. +train_46088.png A low-resolution frontal-elevated view of a bed with a teal/blue, slightly rumpled textured duvet showing a folded corner and subtle darker shading, a white pillow near the head, and a dark wood headboard against a plain beige wall. +train_46117.png A compact bed covered with a deep blue, slightly rumpled duvet and a single light-colored pillow, photographed from a slight overhead oblique angle in a small, sparsely furnished room with a pale wall and warm-toned wooden floor visible in the background. +train_46120.png A slightly angled, low-resolution view of a single bed with a medium-brown wooden frame and headboard, topped by a light-blue, slightly rumpled blanket and a pale pillow, set against a plain cream wall and dark floor with minimal surrounding clutter. +train_46219.png A low rectangular bed photographed from a slight frontal angle with rumpled beige/cream bedding and two matching pillows, a darker gray folded throw across the middle, a plain dark wooden headboard against a pale wall and a bare wooden floor visible at the foot. +train_46239.png A single, low-profile bed seen from a slight overhead front-left angle, dressed in a vibrant red, slightly rumpled quilted coverlet with a white pillow at the head, resting on a wooden platform against a plain light-colored wall and pale wood floor. +train_46298.png A low, simple bed shown from a slight frontal angle with a rumpled light beige-brown blanket layered over white sheets, a pale headboard against a plain light wall and a small dark bedside object visible to the right despite the low resolution. +train_46344.png A front-facing, slightly elevated view of a bed with a rumpled light beige/cream textured duvet and matching pillows, set against a dark wood headboard and flanked by a small nightstand and lamp with a pale wall and framed artwork behind it. +train_46496.png A slightly elevated, slightly angled view of a small bed with a rumpled light blue-gray duvet and crisp white pillows showing soft, wrinkled fabric texture, set against a dark wooden headboard and pale wall with faint bedside surfaces visible in a compact bedroom environment. +train_46694.png Viewed from a slightly elevated frontal angle, the low-profile bed has a pale blue-gray, slightly rumpled comforter with soft visible folds and a white pillow at the head, sitting on a dark low frame against a neutral pale wall with a small bright window to the left. +train_46787.png A low twin bed with an olive-green, slightly rumpled blanket over a white sheet, viewed from a slightly elevated oblique front-left angle against a pale blue wall and tiled floor, showing a dark-colored simple headboard, a single pale pillow at the head, and a dark bag near the foot. +train_46839.png Viewed from a slightly elevated, centered angle, the bed features a rumpled off-white duvet and pillows with a soft, wrinkled texture against a low, dark headboard, set in a softly lit neutral room with a muted beige wall and darker floor visible behind and beneath it. +train_46892.png A low, single bed photographed from a slight diagonal above-right viewpoint, dressed in a smooth turquoise-blue duvet with faint horizontal texture, a pale pillow at the head against a plain white wall and light wood floor, with a narrow dark headboard and a small bedside table visible to the left. +train_47123.png A small, low-profile dark brown wooden bed frame with a subtle glossy wood grain, shown from a three-quarter front-left viewpoint revealing a gently curved headboard with horizontal slat detailing and a light beige mattress set against a plain white background. +train_47131.png A small single bed seen from a slight frontal-left angle appears to have an orange-painted wooden headboard and footboard, a smooth light-gray mattress or cover with minimal texture and a faint pale pillow near the head, set against a muted blue wall/floor background under soft, even lighting. +train_47230.png A low-profile bed with rumpled cream-beige linens and two pale pillows, a folded darker taupe throw at the foot, shown from a slightly elevated frontal viewpoint against a plain pale wall with a simple dark headboard and minimal surrounding decor. +train_47505.png A slightly overhead, frontal view of a bed dressed in an olive‑green, slightly textured quilt with an off‑white sheet and pillow visible at the head, set against a plain beige wall with a low wooden headboard and hardwood floor. +train_47511.png A slightly rumpled off-white/beige bed with a low dark wooden platform and one pale pillow, viewed from a shallow oblique top-down angle against an olive-green mottled wall and darker floor, the coarse woven bedding and a subtle central sag visible despite the low resolution. +train_47569.png A low, dark-framed platform bed seen from a slightly elevated three-quarter view with rumpled white cotton sheets and a smooth white pillow, set against a pale beige wall and light wooden floor, revealing a thin headboard and a shadowed under-bed gap. +train_47590.png A low-profile dark-brown wooden bed seen from a three-quarter frontal angle against a plain white wall, topped with a rust-orange, slightly wrinkled quilted cover and two off-white pillows, with the slatted frame and a small strip of gray floor visible. +train_47657.png A small bed covered by a crumpled rust-orange blanket with an off-white sheet peeking at the head, seen from a slightly elevated frontal angle in a compact, neutral-toned room with a light beige wall and indistinct dark furniture to the right, the rectangular mattress appearing thin with visible fold lines and soft shadowing. +train_47756.png A slightly elevated frontal-left view of a small single bed with a pale slatted wooden headboard, a light teal/seafoam fabric bedcover with subtle wrinkles and a white pillow at the head, set against a neutral wall and darker floor in the background. +train_47920.png A compact single bed with an orange-brown wooden frame exhibiting a smooth, slightly glossy finish, seen from a frontal-oblique viewpoint in a sparsely furnished, pale-walled setting, topped by a light-colored, mildly wrinkled mattress cover and supported on short visible legs. +train_47955.png A slightly oblique frontal view of a compact beige fabric-covered bed with a smooth, slightly rumpled light-tan duvet and a darker tan base, placed on a pale floor against a plain white wall with a narrow dark vertical object (likely a nightstand or headboard) visible at the upper right. +train_48230.png A low-profile, light-beige upholstered platform bed with a smooth, slightly textured surface and faint horizontal seam lines, shown in a slight overhead three-quarter view against a plain white wall and pale wood floor, revealing a low wooden frame and short legs. +train_48292.png Slightly angled top-down view of a low-profile bed with a rumpled off-white duvet and a single light-gray pillow, the fabric showing pronounced folds and shadows against a plain beige wall and darker floor in the background. +train_48545.png Seen from a slightly elevated frontal viewpoint, the bed features a smooth medium-brown rectangular headboard and a crisp white mattress with a narrow pink band along the front edge, resting on a dark low-profile base against a plain neutral wall and dark floor. +train_48677.png A low-profile wooden platform bed shown from a slight frontal-left angle, topped with a slightly rumpled light-gray quilt and two white pillows whose smooth cotton texture contrasts with the warm wood frame, set against a plain white wall and hardwood floor with a simple rectangular headboard and minimal surrounding decor. +train_48701.png Low-profile bed photographed from the foot at a slight left-front angle, dressed in a rumpled light beige/cream duvet and matching pillows with a soft, slightly textured fabric atop a visible warm-toned wooden platform, set against a darker wall with a small wooden nightstand at the left edge. +train_48906.png A small single bed shot from a slight front-left angle, with a rumpled pale gray‑white duvet and matching pillow showing a soft, slightly shiny textile texture, a dark rectangular wooden headboard behind it against a plain beige wall and a partial bedside surface visible at the right. +train_48967.png A low-resolution, slightly angled frontal-left view of a small bed with a pale dusty-pink smooth duvet and a white pillow, set against a plain light-colored wall and floor with a simple light-wood headboard visible behind it. +train_49110.png Slightly angled frontal view of a bed with light cream, mildly rumpled bedding and matching pillows, set against a pale wall with a dark brown headboard and a narrow red vertical object visible at the left side. +train_49122.png Frontal three-quarter view of a single bed dressed in rumpled cream/off-white sheets with a slightly textured look and a matching pillow at the head, backed by a simple dark wooden headboard and plain pale wall with a narrow strip of floor visible. +train_49125.png A slightly angled, low-resolution view of a single bed with rumpled teal-blue bedding and a darker folded throw at the foot, set against a warm orange upholstered headboard and pale wall, the soft fabric textures and short bed frame visible despite the blur. +train_49139.png A low, minimalist light-wood platform bed topped with off-white, slightly rumpled linens and a single pillow, photographed in a three-quarter top-down view against a pale wooden floor and plain light wall, with a simple rectangular headboard and dark raised legs visible despite the low resolution. +train_49168.png A low-profile single bed viewed from a slightly elevated front-left angle, with a pale blue, slightly wrinkled coverlet over a thin mattress on a simple wooden frame, set against a plain white wall with a small window to the left and a brown bedside cabinet to the right. +train_49175.png A slightly angled top-front view of a small wooden-framed bed with a warm honey-brown finish, smooth light beige bedding and pillow, short square legs and a simple rectangular headboard, set against a dark, uncluttered brown background. +train_49441.png A slightly angled top-down view of a low bed with rumpled off-white sheets and pillows showing soft, textured folds, set against a dark brown rectangular headboard and pale walls with a light wood floor visible at the foot. +train_49584.png A slightly elevated three-quarter frontal view of a neatly made bed with pale blue-gray smooth linens and two white pillows tucked against a low dark headboard, set against a warm peach-orange wall with a dark bedside table and lamp visible at the right, the fabrics appearing soft and slightly rumpled despite the low resolution. +train_49591.png A low, single wooden-framed bed photographed from a slightly elevated front-left three-quarter view, with rumpled off-white bedding and a darker folded throw at the foot, set against a pale blue wall and light wood floor with a small bedside shelf visible at the left. +train_49711.png A small single bed with a rumpled white sheet and a light beige, slightly textured blanket folded at the foot, seen from a slightly elevated front-right angle against a pale wall and light wood floor, with a low simple wooden headboard and one pillow near the head. +train_49813.png A compact, low-profile bed with a light wood frame and soft, slightly rumpled white/cream bedding and pillows, seen from a three-quarter overhead viewpoint against a plain pale wall and floor with the headboard and mattress edges discernible despite the low resolution. +train_49834.png A slightly elevated front-left view of a bed with a warm orange, slightly rumpled bedspread showing faint horizontal folds and a smooth fabric texture, a dark brown low headboard and at least one white pillow, set against a muted blue-gray wall and wooden floor with a small dark nightstand and lamp visible to the left. +train_49903.png Viewed from a slightly elevated three-quarter angle, the bed is covered by a deep blue, slightly rumpled textured blanket with subtle lighter patches, topped by a pale off‑white pillow at the head and set against a plain beige wall with a darker floor and a shadowed bedside area. +train_49955.png Front-left three-quarter view of a low-profile bed with a dark narrow metal frame and exposed legs supporting a light-gray, slightly wrinkled cotton sheet over a thin mattress, set against a plain pale wall and warm wooden floor in a sparsely furnished room. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/bee_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/bee_descriptions.txt new file mode 100644 index 0000000..e32d8d5 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/bee_descriptions.txt @@ -0,0 +1,500 @@ +train_00055.png A small, fuzzy yellow-and-black banded bee captured in a three-quarter lateral view, perched on a thin twig with translucent folded wings, visible antennae and legs, and set against a smooth pale blue-green out-of-focus background. +train_00288.png Top-down view of a small, fuzzy bee with a dark brown to black matte body and a slightly yellow-tinged thorax, translucent wings splayed slightly to the sides and compact rounded abdomen showing faint pale banding, perched on a vivid orange-yellow flower petal background. +train_00429.png From a slightly above-and-front three-quarter view, the small bee displays a golden-brown, densely fuzzy thorax and a darker, subtly banded abdomen with translucent, slightly veined wings folded roof-like over its back and thin dark legs and antennae visible against a plain pale/white background. +train_00618.png A top-down, slightly angled view of a small, fuzzy bee with a warm golden‑orange thorax and contrasting black‑banded abdomen, translucent folded wings and hairy legs visible as it perches on a bright green leaf against a soft, out-of-focus green background. +train_00714.png A close-up, slightly top-down view of a small, fuzzy black-and-yellow bumblebee perched on vivid pink flower petals, showing a dense, hair-covered dark thorax with a subtly banded abdomen and folded translucent wings against a soft, out-of-focus green background. +train_00763.png A small, fuzzy yellow-and-black bee viewed from a close three-quarter/top angle, perched on a vivid magenta flower with a hairy yellow thorax, darker banded abdomen, translucent folded wings and grasping legs visible against a soft, out-of-focus green background. +train_01009.png A small, fuzzy bee is shown in a close, slightly top-down view with a warm yellow-orange thorax and alternating dark brown–black banded abdomen, translucent folded wings and short antennae, perched on blurred purple-blue petals against a soft green background, its coarse hairs and banding still discernible despite the low resolution. +train_01159.png A close-up, slightly oblique side-top view of a small bee with a densely fuzzy golden-yellow thorax and contrasting glossy black-brown striped abdomen, translucent veined wings folded back, and dark legs clutching a bright magenta-pink flower head against a soft, out-of-focus green background, its hairs and banded pattern still discernible despite the low resolution. +train_01201.png A small, fuzzy bee with dense yellow-orange thoracic hairs and contrasting dark brown–to–black banded abdomen, translucent wings folded along its back and legs tucked beneath, is seen from a slightly top‑down diagonal view resting on a pale, slightly textured surface with soft shadowing, its rounded hairy body and wing outlines still discernible despite the low resolution. +train_01320.png Close-up three-quarter top-side view of a small fuzzy yellow-and-black bee perched on a vivid magenta flower, showing dense golden thoracic fuzz, faint dark abdominal banding, translucent veined wings folded back and short antennae, all set against a soft, out-of-focus pink petal background. +train_01415.png A small, fuzzy yellow-and-black striped bee seen from a slightly elevated angle, perched on a pale yellow flower head with translucent folded wings and dark legs gripping the bloom against a soft, out-of-focus turquoise-blue background. +train_01474.png A small, reddish-brown bee with a slightly fuzzy thorax and subtle darker banding on the abdomen is shown in profile, perched on a dark, out-of-focus earthy-brown surface with wings folded back, legs tucked beneath, and a pale circular specular highlight nearby. +train_01599.png A compact, densely hairy bee viewed from a slightly oblique top-side angle, its bright golden‑orange thorax and lighter yellow abdomen with a darker band, translucent folded wings and small black legs visible against a pale, grainy background resembling weathered wood or concrete. +train_01600.png A small fuzzy bee with a warm golden‑yellow thorax and dark banded abdomen, translucent wings and spindly legs visible as it clings in a side/top view to a vivid pink flower bud against a softly blurred green foliage background, the black striping and fine hairs still apparent despite the low resolution. +train_01666.png A fuzzy bee captured in a close side-top view, showing a dense golden-yellow and black banded, hairy thorax and abdomen with a darker head and translucent folded wings as it clings to a small magenta flower against a soft, out-of-focus green background. +train_01699.png A small, fuzzy black-and-yellow banded bee shown in a close side profile clinging to a slender green stem, with translucent folded wings, a golden-brown hairy thorax and darker striped abdomen, antennae and legs gripping near tiny buds against a soft, out-of-focus bright green foliage background. +train_01762.png A plump, bright yellow bee with a soft, slightly fuzzy texture and three glossy black bands is shown in a three-quarter top-down pose with translucent pale-blue wings raised, tiny antennae and legs touching a vivid pink, out-of-focus blossom with a hint of green foliage behind. +train_02006.png A small bee shown in a three-quarter dorsal close-up, its densely fuzzy, golden-amber thorax and alternating dark brown to black banded abdomen contrasting with pale translucent, slightly iridescent wings and forward-pointing antennae, perched with bent legs on a uniformly bright yellow blurred background that looks like a flower petal. +train_02017.png A fuzzy bumblebee viewed from a slightly oblique top-down angle, with a dense yellow-and-black banded thorax and a darker, orange-tinged posterior covered in short hairs, translucent veined wings folded along its back and dark legs clinging to a bright green leaf against a blurred grassy background. +train_02121.png A small, fuzzy golden-brown bee with darker transverse abdominal bands and semi‑translucent wings viewed from a slightly oblique dorsal angle as it clings to a bright pink flower bud, its hairy thorax, bent legs and short antennae visible against a soft, out-of-focus green background. +train_02518.png A small, fuzzy bee with alternating golden-yellow and black banding and a soft, hairy texture is shown in a three-quarter top-down pose perched on a vivid red-orange petal, its translucent wings folded back and tiny dark legs and antennae discernible against the saturated, slightly blurred floral background. +train_02620.png A close-up, slightly angled dorsal three-quarter view of a small bee showing a fuzzy golden-yellow thorax and black-banded abdomen with semi-translucent, slightly iridescent wings folded along its back and short dark legs tucked underneath, all set against a softly blurred pale green-beige background. +train_02649.png A plump, velvety yellow-and-black bee is seen from a slightly oblique dorsal angle, its bright fuzzy thorax and distinct black abdominal banding with tiny translucent wings folded along the back as it clings to a pale cream petal against a soft, out-of-focus green-brown background. +train_03031.png A small, fuzzy black-and-yellow bee shown in a close side/three-quarter view, perched on a bright pink flower petal with an orange-tinted, hairy thorax, a banded dark abdomen, folded semi-translucent wings and dark legs visible against a soft, out-of-focus green-and-pink background. +train_03223.png A compact, glossy yellow bee with two thick black abdominal stripes and tiny bluish-gray wings seen from a three-quarter top-down view, perched on a pale beige surface that casts a soft gray oval shadow. +train_03551.png A small, fuzzy bee with a black-and-yellow banded abdomen and translucent wings is shown in a three-quarter dorsal view as it clings to a pale, rough-textured surface (likely a petal) against a blurred green-brown background, its compact, striped body, fine hairs and short antennae visible despite the low resolution. +train_03832.png A small, compact bee with a dark brown–black fuzzy thorax and a slightly lighter, subtly banded abdomen seen from a dorsal three‑quarter view, perched on a uniformly warm orange, slightly speckled background with translucent, blurred wings and short antennae and legs barely visible beneath the body. +train_03919.png Top-down, slightly angled view of a small fuzzy bee perched on a bright green leaf, its densely hairy black body marked by a broad golden-brown thoracic band and subtler abdominal striping, with folded wings and short legs visible against a soft, blurred foliage background. +train_04286.png A fuzzy yellow‑orange and black bee captured in a close side/top view as it perches on a glossy bright green leaf, showing a dark head and thorax, a hairy abdomen with faint darker bands, translucent folded wings and gripping legs against a blurred leafy background. +train_04459.png A close-up shows a small, fuzzy golden-brown bee with a darker banded abdomen and translucent wings held close to its body, seen in a slightly angled side-top view as it perches on a pale, rough textured surface (possibly skin or stone) against an out-of-focus white background, with short antennae and legs faintly visible despite the low resolution. +train_04739.png A low-resolution close-up of a small bee shown in a side/three-quarter profile, its fuzzy yellow-orange thorax and dark-brown, banded glossy abdomen visible with translucent folded wings and spindly legs clinging to a thin twig against a soft, out-of-focus green foliage background. +train_04826.png Close-up, slightly oblique side view of a small fuzzy orange-brown bee with a hairy thorax and a darker banded abdomen, translucent veined wings folded over its back, short antennae and dark legs visible, resting on a bright white surface that casts a soft shadow. +train_04853.png Close-up, slightly top-down view of a small, plump bee covered in dense golden-orange fuzz with faint darker banding and a darker head, perched with indistinct translucent wings against a softly blurred magenta-pink floral background. +train_04952.png Close-up, slightly frontal view of a small bee with a densely fuzzy, bright orange-golden thorax and abdomen, a contrasting glossy black head with large dark eyes, short translucent wings tucked along its sides and stubby legs gripping an orange surface, set against a deep black background. +train_05219.png Oblique top-down view of a small, fuzzy golden-amber bee with a darker head and subtle dark banding on the abdomen, translucent folded wings and fine hairs giving a velvety texture, resting on a pale, slightly textured surface against a soft neutral background. +train_05410.png Close-up three-quarter/top view of a small, fuzzy bee perched on a soft purple-pink flower, its dense golden-yellow thorax and black-banded abdomen, translucent folded wings, and dark legs visible against the blurred floral background despite the image's low resolution. +train_05535.png Side-profile of a small, fuzzy bee with a warm golden-yellow thorax and darker brown-black banding, translucent folded wings and thin legs gripping a glossy bright green leaf against a smooth, out-of-focus green background, the insect’s compact, velvety body texture and striping still visible despite the low resolution. +train_05604.png A low-resolution, stylized bee-like figure with a soft matte bubblegum-pink rounded body showing two slightly darker circular markings, small black dot eyes and short antennae, paired with two translucent cyan-blue rounded wings and a subtle three-quarter top-down pose set against a uniform vivid pink background. +train_05832.png A low-resolution close-up shows a small fuzzy bee with a dark brown head and thorax and warm yellow-orange banded abdomen, perched at a slight top-side angle on a pale cream, densely textured flower center, its semi-translucent wings and spindly dark legs visible against a dark, out-of-focus background. +train_05838.png A small, rounded bee with bold yellow-and-black horizontal bands and a slightly fuzzy, matte body is shown in a three-quarter top-down pose with pale translucent wings folded along its back and an orange-brown head, resting on a pale neutral surface with a soft shadow and a faint green patch at the image edge. +train_05852.png A small, fuzzy golden-brown and black striped bee shown in a three-quarter top-down view perched on a green leaf, with translucent veined wings slightly spread, a compact hairy thorax and banded abdomen, and clumped yellow pollen on the hind legs against a soft, out-of-focus green background. +train_05877.png Top-down, three-quarter view of a small fuzzy bee with a dark brown to black body and muted golden-yellow abdominal banding, translucent slightly iridescent wings folded along its back, short antennae and dark legs gripping a vivid orange-red blurred flower petal background, with coarse hairs and faint striping still discernible despite the low resolution. +train_06226.png A small, fuzzy golden-orange bee is shown in a close three-quarter side view perched on a warm yellow surface, its rounded downy thorax and abdomen displaying subtle darker banding with a darker head, folded translucent wings and short antennae faintly outlined against a soft, monochrome yellow background. +train_06237.png Slightly oblique top-down view of a small, fuzzy bee with a pale yellow thorax and dark banded abdomen, translucent folded wings and a faint dusting of pollen on its hind legs, perched on a saturated magenta flower with a soft, out-of-focus magenta background. +train_06262.png A low-resolution three-quarter side/top view of a small bee with a fuzzy black-and-gold striped abdomen and hairy thorax, translucent veined wings folded over its back, antennae forward and legs clinging to a bright orange-yellow flower petal against a soft, blurred warm yellow background, the banding and fuzzy texture visible despite the image softness. +train_06404.png A small fuzzy bee in a three-quarter top view perched on a pale surface, with a yellow‑gold hairy thorax, dark brown to black banded abdomen, short antennae and faint translucent folded wings visible against a washed‑out beige background. +train_06439.png A fuzzy golden-brown bee with darker transverse bands and translucent veined wings is shown in a side/three-quarter pose, perched on a pale pink–white flower petal against a blurred green background, revealing a hairy thorax, striped abdomen and grasping legs. +train_06582.png A small bumblebee with a fuzzy black thorax and contrasting yellow-orange banded abdomen, translucent folded wings and dark legs visible as it clings to a pink flower head in a close top-down/three-quarter view against a soft green blurred background, the coarse hairs and bold stripe pattern discernible despite the low resolution. +train_06816.png Perched in a three-quarter top-side view on a warm yellow flower, the small fuzzy bee has a dark brown-to-black thorax and rounded abdomen with faint yellow banding, translucent veined wings held over its back, and pollen-dusted hind legs against a softly blurred orange-yellow background. +train_06910.png A compact, fuzzy bee with a dark head and warm orange-brown, subtly banded abdomen and translucent wings is captured in a slightly top-down pose with legs tucked under on a smooth off-white surface that casts a faint shadow, the dense hair, segmented body and short antennae discernible despite the low resolution. +train_06917.png A top-down, slightly angled view of a small, fuzzy yellow-and-black bee with dense golden hairs and broad black abdominal bands, translucent veined wings folded along its back, pollen-dusted legs and a glistening head, perched against a warm, blurred orange-yellow floral background. +train_07096.png A three-quarter side view of a small, densely fuzzy bee with warm golden-yellow and black transverse bands and a hairy thorax, translucent veined wings held slightly open and dark legs clutching vivid purple-blue flower petals, set against a soft, out-of-focus cobalt-purple background with a faint dusting of pollen visible on the legs. +train_07154.png A fuzzy bumblebee shown from a slightly top-front oblique view, with a bright yellow-orange, densely hairy thorax and abdomen marked by broad black bands, small translucent wings folded along its back and legs tucked underneath, perched on a light beige, textured surface against a softly blurred neutral background. +train_07311.png A small glossy, cartoon-like yellow body with bold black stripes and a smooth, shiny texture, shown head-on at a slight upward angle with translucent bluish wings raised, short black antennae and round dark eyes, floating over a plain white background with a faint shadow beneath. +train_07467.png A small, fuzzy bee with a warm golden‑orange, slightly hairy thorax and abdomen showing faint darker banding, seen in a close top‑down three‑quarter pose perched on a bright yellow‑orange blossom with translucent, slightly veined wings folded over its back and a tiny dark head and legs visible against the uniformly warm background. +train_07487.png A small fuzzy bee appears in a close three-quarter side view, showing golden-orange and dark brown banding on a plump, slightly hairy abdomen, translucent dusky wings folded along its back and tiny legs grasping a green blurred leaf against a soft out-of-focus verdant background. +train_07633.png A small, fuzzy bee with yellow-and-black banded abdomen and a hairy, dark thorax is shown in a three-quarter dorsal view with slightly translucent folded wings and short antennae, perched at an angle against a soft, out-of-focus pale green background. +train_07856.png A close-up, three-quarter top-down view of a small bee perched on a vivid orange-yellow flower petal, its compact body covered in dense golden-yellow fuzz with contrasting dark brown/black transverse bands on the abdomen, translucent veined wings folded over its back, dark legs gripping the petal, and a softly blurred warm floral background. +train_08015.png A small, fuzzy bee with dense black-and-yellow banding and a slightly iridescent translucent wing, shown from a top-side angle as it leans into the dark central disk of a bright yellow daisy, its legs and thorax dusted with pollen against a soft, out-of-focus green background. +train_08077.png A small, fuzzy, dark brown-to-black bee with a faint dusty yellow band and translucent, folded wings is shown in close-up from an oblique dorsal-side view as it perches on pale skin, its compact, hairy thorax and rounded abdomen and short antennae visible against a soft, out-of-focus gray-white background. +train_08133.png Close-up, slightly angled top-down view of a velvety, hair-covered bee with bright golden-yellow and deep black transverse bands on its thorax and abdomen, a small dark head and translucent folded wings, perched against an out-of-focus magenta-purple floral background. +train_08221.png A small fuzzy bee with vivid yellow-and-black banded abdomen and a darker brown thorax, captured in three-quarter side view with translucent wings partially spread and legs clasping a pale vertical surface, set against a soft green blurred background, where the striped pattern, woolly texture and wing outlines remain discernible despite the low resolution. +train_08370.png A small, fuzzy bumblebee with coarse yellow-and-black banded abdomen and a darker thorax, shown in a close diagonal top-down view perched on a vivid pink flower petal with translucent wings folded over its back and legs tucked beneath, set against a blurred green background and retaining visible alternating stripes and hairy texture despite the low resolution. +train_08561.png A small, fuzzy dark brown–black bee with a subtle yellowish‑brown band across its midsection is seen from a slightly top‑down, angled view as it clings to a warm orange‑tan surface (suggestive of a petal or similar background), its rounded thorax and blurred wing outlines faintly discernible despite the low resolution. +train_08684.png Perched at a slightly oblique top-down angle on a pale pink petal, the small bee shows a densely fuzzy golden-yellow thorax, a contrasting black abdomen with faint orange-brown banding, folded translucent veined wings, dark legs tucked beneath, and a compact rounded profile against a soft white–pink blurred background. +train_09079.png A small, fuzzy bee with dark brown-black body and warm golden-yellow banding, its slightly translucent wings tucked against its back as it clings in a top-front close-up to a soft pink petal, set against a blurred pale-pink background where faint body striping and tiny legs are still discernible despite the low resolution. +train_09493.png A small, fuzzy bee with contrasting black-and-yellow banding and a slightly glossy abdomen is shown from a slanted top-side, head-down pose as it clings to a vivid magenta-pink flower, its translucent wings and hairy thorax visible against a soft, out-of-focus green background. +train_09879.png A low-resolution close-up shows a fuzzy black-and-yellow bee perched in slight profile on a vivid red-orange flower, its striped, hairy thorax and abdomen and translucent, veined wings visible with pollen-dusted legs gripping the petal against a softly blurred warm background. +train_09929.png A side-angled, slightly top-down view of a small, fuzzy bee perched on a bright yellow-orange petal, its golden-brown hairy thorax, alternating dark-banded abdomen and translucent folded wings visible against a soft, out-of-focus green background. +train_10231.png A close-up, slightly angled dorsal view of a small fuzzy bee with a yellow-orange, hair-covered thorax and alternating black-striped abdomen, translucent, slightly iridescent veined wings folded along its back, short antennae and pollen-dusted legs grasping a vivid pink bloom against a soft, blurred magenta background. +train_10237.png Plump, fuzzy bee with bright yellow-orange and dark brown/black transverse stripes shown in a slightly oblique side-top view as it clings to a thin dark stem against a soft-focus green background, its densely hairy thorax, rounded banded abdomen and faint folded translucent wings discernible despite the low resolution. +train_10250.png A plump yellow‑orange bee with two broad black abdominal bands and a subtly fuzzy thorax, shown in a three‑quarter angled view with small translucent wings raised and short antennae, perched against a warm, softly mottled golden‑yellow background. +train_10334.png Close-up oblique top-side view of a small bee with a fuzzy golden-orange body bearing two dark transverse bands, indistinct folded wings, short dark legs and antennae, resting on a smooth bright white surface. +train_10398.png Seen from a slightly angled top-side view, the low-resolution image shows a small bee perched on a white clustered flower, its fuzzy golden-yellow thorax and alternating dark brown–black abdominal bands, semi-translucent wings folded along its back and darker legs visible against a soft-focus green background. +train_11088.png A small, round, bright yellow bee-like figure with a slightly matte, plush texture and a darker black head/stripe, shown from a three-quarter frontal view as it sits on a warm orange-brown tabletop against a softly blurred beige background, casting a short shadow and showing a tiny dark spot that reads as an eye or button despite the low resolution. +train_11211.png Top-down, slightly oblique view of a small, fuzzy bee with bright yellow-and-black horizontal stripes on its abdomen, a darker hairy thorax and head, partially folded translucent wings catching light, perched against a vivid, blurred green leaf background with noticeable pixelation. +train_11398.png A tightly cropped, three-quarter top-down close-up shows a small bee with a golden-orange, densely fuzzy thorax dusted with pollen, a darker banded abdomen, translucent folded wings and hairy legs perched on a saturated yellow-orange flower blur. +train_11410.png Seen from a slight top-down angle, this small fuzzy bee displays alternating black and warm golden-orange bands on its abdomen and a densely hairy darker thorax, with translucent folded wings, tiny legs and faint antennae visible despite the image's low resolution as it perches on a saturated pink, softly blurred floral background. +train_11434.png A small black-and-yellow striped bee with a slightly fuzzy, hair-covered thorax and translucent veined wings is shown in a close, slightly top-down angled view as it clings to the bright yellow-orange center of a flower, its segmented legs and short antennae visible against a soft, out-of-focus green background. +train_11521.png A small, low-resolution yellow-and-black striped bee shown in three-quarter profile facing right, with a rounded, slightly fuzzy body, short black antennae, two pale translucent wings held above its back and tiny legs, appearing to hover over a soft gray circular shadow on a plain white background. +train_11557.png A small, fuzzy orange-brown bee with darker brown to black banding on its abdomen and semi‑transparent folded wings is shown in a slightly oblique dorsal-side view as it perches on a plain white background, its compact, hairy thorax, short antennae, and tucked legs visible despite the low resolution. +train_11745.png Dorsal three-quarter view of a small bee with a fuzzy golden-orange thorax, alternating black and orange-brown bands on a rounded abdomen, dark head and antennae, translucent slightly veined wings held partially open and short legs gripping a bright/white background. +train_11962.png A three-quarter/top-down view of a small, densely fuzzy yellow-orange and black–banded bee with a hairy thorax and glossy black abdomen, semi‑transparent veined wings folded along its back, short antennae and legs grasping a vivid magenta flower petal against a soft, out-of-focus pink-green floral background. +train_11982.png A small, fuzzy, orange-brown bee with dense tawny hairs and contrasting darker banding on a rounded abdomen is shown in a three-quarter, head‑forward pose clinging to an orange petal or stamen, with translucent wings held back and a dark, out-of-focus background. +train_12070.png A small, fuzzy bee rendered in warm golden-orange tones is seen obliquely from above, its body showing a darker nearly black transverse band across the mid‑abdomen, pale translucent wings tucked along the back and tiny dark legs, all set against a uniformly bright yellow‑orange background that suggests it is perched on a similarly colored surface. +train_12164.png Close-up, slightly top-down view of a small, fuzzy bee with a dark brown/black thorax and blurred yellow-banded abdomen, translucent folded wings and a hairy texture, perched on a bright magenta-pink flower petal against a soft, out-of-focus pink background. +train_12174.png The small fuzzy bee, seen in an oblique top-side close-up, displays a golden-yellow and brown hairy thorax and a darker, faintly banded abdomen with translucent veined wings folded back and short antennae, perched against a soft, out-of-focus pink petal background. +train_12234.png A slightly oblique dorsal view of a small, fuzzy bee showing vivid yellow and black alternating bands, a dark head with faint translucent wing hints and subtle leg shadows, perched against a soft, out-of-focus green foliage background so the hairy thorax and banding remain discernible despite the low resolution. +train_12257.png A low-resolution, top-down view of a small, fuzzy bee centered on a soft pink-purple flower, showing a warm yellow-orange, slightly fuzzy thorax and abdomen with a subtle darker brown band near the rear, a darker head and tiny black eyes, translucent folded wings and legs tucked beneath against the radial petal texture. +train_12302.png A small fuzzy yellow-and-black striped bee is shown in an oblique dorsal view, perched with its translucent wings folded over an ovate bright green leaf against a soft-focus green background, the hairy thorax, banded abdomen and tiny legs gripping the leaf visible despite the low resolution. +train_12316.png A low-resolution three-quarter dorsal view of a small bee with a dense, golden-orange fuzzy thorax and abdomen showing faint dark banding, translucent folded wings and thin dark legs, perched against a deep, out-of-focus brown-black background with a small pale highlight. +train_12330.png A small, compact bee with dense golden-orange fuzz and darker brown-to-black abdominal bands, shown in a slightly top-down close-up with translucent, folded wings and tiny legs gripping a pale cream flower, set against an out-of-focus warm beige background, with the fuzzy thorax and faint wing venation still discernible despite the low resolution. +train_12432.png A small, fuzzy bee with warm yellow-orange and black banded abdomen and a slightly darker thorax, shown in a close, three-quarter top-down pose with translucent wings folded back and tiny antennae and legs discernible against a deep navy-blue blurred background. +train_12770.png A small, fuzzy bee with a dark brown–black abdomen and slightly yellowish, hairy thorax is shown in a near top-down, three-quarter pose clinging to an orange flower petal against a warm, out-of-focus orange background, with faint translucent wings and a pale terminal band on the abdomen visible despite the low resolution. +train_12885.png A low-resolution close-up oblique view of a small, fuzzy bee perched on a pale surface with its body angled left, revealing a warm orange-brown thorax, dense yellow-and-black banded abdomen, folded translucent wings, short antennae and dark legs set against a soft, out-of-focus blue-green background. +train_13037.png A small fuzzy bumblebee with a bright yellow thorax and contrasting black-banded abdomen, tiny translucent wings folded along its back, is shown in a slightly top-down pose clinging to a vivid pink flower petal, the coarse hairs and striping discernible despite the low resolution. +train_13166.png Top-down, slightly angled view of a small, densely hairy bee with vivid yellow-and-black banded abdomen and a darker fuzzy thorax, translucent veined wings folded along its sides and stubby legs tucked beneath, perched on a bright magenta flower petal against an out-of-focus rosy background. +train_13220.png A small fuzzy bee seen from a slightly oblique dorsal angle, with a matte black head and thorax, a yellow-and-black banded abdomen, translucent folded wings and fine legs gripping a pale pinkish-white blossom against a soft, out-of-focus green background. +train_13680.png A small, fuzzy bee with warm yellow-orange head and thorax and alternating dark brown-black bands on a tapered abdomen, shown in a slightly angled top-side view with translucent wings partially extended and legs clasping a dark perch against a soft, out-of-focus bluish-green background, the low-resolution image still revealing dense thoracic hairs, long antennae and contrasting leg coloration. +train_13721.png A small fuzzy bee captured in a three-quarter dorsal profile with a golden-yellow, downy thorax and distinct matte black-banded abdomen, translucent folded wings and tucked legs visible against a saturated orange-yellow flower-petal background, the overall image appearing soft and slightly grainy. +train_13752.png A small, fuzzy yellow-and-black bee seen from a slight top-side angle resting on a pale flat surface, its dense golden hairs and alternating black abdominal bands visible, translucent folded wings pressed along the body with short legs tucked underneath and a faint shadow beneath against the neutral background. +train_13790.png Close-up side view of a small, fuzzy bee with warm yellow‑orange and black striped abdomen, a hairy matte thorax, short antennae and translucent wings folded along its back as it perches with legs gripping a pale curved surface against a blurred warm orange‑brown background. +train_13898.png Seen in an oblique top-side pose, the bee shows a fuzzy golden-yellow thorax with black-banded abdomen, dark legs grasping a vivid pink flower bud, faint translucent wings and a soft, blurred green background. +train_13994.png A low-resolution, slightly oblique dorsal-side view of a fuzzy bee with a golden-yellow, hairy thorax and alternating black-and-yellow banded abdomen, translucent wings folded over its back, short dark legs tucked underneath, perched on a rough gray stone-like background. +train_14099.png A small bee with a fuzzy reddish-brown thorax and a darker, slightly glossy abdomen with faint banding, translucent wings folded along its side, long antennae and spindly legs gripping a bright green leaf, shown in an oblique top-down view against a soft, blurred green foliage background. +train_14104.png A close-up, slightly top-down view of a small bee perched on a bright yellow flower petal, showing a golden-yellow fuzzy thorax and abdomen with distinct narrow black banding, translucent folded wings and dark legs and antennae against a uniformly yellow, softly blurred floral background. +train_14161.png Top-down, slightly angled view of a small bee perched on a bright green leaf, its fuzzy yellow-and-black striped abdomen and thorax visible with faint translucent wings folded along its back and tiny legs and antennae discernible against a soft, out-of-focus green background. +train_14216.png A small, fuzzy yellow-and-black bee shown in a slightly angled top-down/three-quarter view, perched with folded translucent wings and tucked legs on a vivid cobalt-blue surface speckled with tiny yellow flecks, its dense hairy yellow thorax, darker head and a single prominent black abdominal band visible despite the low resolution. +train_14252.png A small, fuzzy bee with warm golden-brown and black banding on its abdomen and translucent, slightly veined wings tucked along its back, shown in a close three-quarter side-top view as it perches at an angle against a soft pale beige out-of-focus background, where the fuzzy thorax, dark head and striped abdomen remain distinguishable despite the low resolution. +train_14326.png A small, fuzzy yellow-and-black bee is shown in a close side-on view, perched on a vivid pink flower with translucent folded wings, a glossy striped abdomen and fine hairs visible against a softly blurred pink background. +train_14373.png Fuzzy, round bumblebee seen from a slightly top-down angle, its yellow-and-black banded, densely hairy thorax and abdomen and small translucent wings pressed back visible against a warm, pale peach-colored flat background with subtle texture, and a dark head and legs providing strong contrast despite the low resolution. +train_14589.png An overhead–front view of a small, fuzzy orange‑brown bee with a rounded, velvety thorax and subtle darker banding on the abdomen, translucent folded wings and dark legs tucked underneath, perched against a soft, out‑of‑focus pale blue background. +train_14721.png A close-up three-quarter top-front view of a fuzzy yellow-and-black banded bee with a hairy golden thorax and darker striped abdomen, translucent folded wings and legs gripping a pale pink petal, set against a soft, out-of-focus green background. +train_14747.png A top-down, slightly angled view of a small bee perched on a pale yellow-green blurred floral background, showing a fuzzy black-and-yellow thorax, warm amber-brown segmented abdomen, translucent veined wings folded along its back and short antennae. +train_14926.png A close-up three-quarter view of a small fuzzy bee perched on a round peach-pink pompom flower, showing a dense black thorax and golden-yellow banded abdomen, translucent veined wings folded along its back, spindly legs and antennae gripping the bloom against a soft, warm, out-of-focus floral background, with fine hairs and striping still discernible despite the low resolution. +train_15088.png A fuzzy bee captured from a slightly oblique top view, showing a rounded, densely-haired thorax and abdomen with alternating amber-yellow and deep black bands, translucent folded wings and small dark legs tucked beneath it as it perches on a pale cream surface against a softly blurred light background. +train_15264.png A small, fuzzy bee with a golden-orange, densely hairy thorax and black-banded abdomen, translucent folded wings and short antennae visible in a dorsal three-quarter view as it clings with splayed legs to a glossy green leaf against a soft, out-of-focus green background. +train_15269.png A close-up, three-quarter dorsal view of a small, fuzzy bee with a bright yellow, hairy thorax and contrasting matte black abdomen, short antennae and tiny translucent wings folded along its back, perched on a warm beige, out-of-focus surface with a dark green strip at the image bottom. +train_15472.png A small, fuzzy golden‑orange bee with dark brown banding and a rounded, hairy thorax seen from a slightly top‑down angle, its striped abdomen and faint translucent wings visible against a soft, out‑of‑focus warm beige/orange background. +train_15546.png A slightly top-down view of a small, fuzzy bee perched on a pale gray surface, showing an orange‑brown thorax, a dark head and black abdomen with faint yellow banding and visible short hairs along its body. +train_16428.png A small, fuzzy yellow-and-black banded bee is shown in a three-quarter top view, perched diagonally with translucent, slightly brown-veined wings folded over its hairy thorax and striped abdomen, dark legs tucked beneath, all set against a soft, out-of-focus green background. +train_16456.png This bee appears in a slightly oblique top-down view, perched diagonally on a bright green leaf, with dense fuzzy yellow-golden hairs on the thorax, a darker black-and-yellow banded abdomen, a dark head to one side, and folded translucent wings and thin leg silhouettes visible despite the low resolution. +train_16460.png Top-down view of a small, fuzzy bee with a dark brown-to-black thorax and a slightly lighter, subtly banded abdomen covered in fine pale hairs and translucent wings, perched on the bright yellow-orange center of a pink-purple flower with soft, out-of-focus petals in the background. +train_16492.png A close-up, slightly top-down view of a small, densely fuzzy bee with warm golden‑orange fur, a darker almost black head and legs, faint translucent wings tucked to its sides, perched on an orange surface with a soft, out-of-focus green‑brown background, its round plush thorax and subtle darker banding still discernible despite the low resolution. +train_16585.png The bee appears as a compact, fuzzy bumblebee with contrasting black and golden-yellow bands, its hairy thorax and abdomen shown in an oblique side-top view as it clings to pale pink clustered flowers with translucent folded wings and dark legs against a soft-focus green-brown background. +train_16601.png A small bee seen from a slightly top-side angle, with a fuzzy pale-yellow thorax, a darker brown-to-black banded abdomen, semi-translucent wings folded over its back and short dark antennae, perched with its legs tucked on a warm orange-brown textured surface that resembles skin or wood. +train_16737.png A fuzzy yellow-and-black bee, seen in a close, slightly oblique top-down view, shows a densely hairy golden thorax, a banded black-and-yellow abdomen and folded translucent wings while gripping a pale, blurred yellow-green background—coarse black stripes and a dark head remain discernible despite the low resolution. +train_16763.png A small, compact bee with a fuzzy dark-black thorax and two muted orange-brown bands on a rounded abdomen, shown from a slightly top-front viewpoint with wings folded and short legs tucked as it perches on a smooth pale peach background, the low-resolution image still revealing an oval segmented body and a subtle wing sheen. +train_16771.png A small, fuzzy black-and-yellow bumblebee seen from a slightly oblique top-down view, perched on a warm golden‑orange flower background, with translucent folded wings, a rounded hairy thorax and abdomen showing alternating dark bands and short legs tucked beneath. +train_16874.png A fuzzy yellow-and-black striped bee seen in a slightly oblique dorsal view, perched on a vivid green leaf with folded translucent wings, dense golden hairs on the thorax, alternating dark abdominal bands and legs tucked beneath against a soft, out-of-focus green background. +train_16981.png A small, fuzzy bee with a golden-brown, tufted thorax and a darker, banded abdomen shown in a three-quarter dorsal view, its translucent wings folded over its back and spindly legs gripping a worn dark wooden edge against a soft, out-of-focus beige background. +train_17045.png Top-down, slightly oblique view of a small, fuzzy black-and-yellow bee with dense golden hairs and a broad pale-yellow abdominal band, translucent folded wings and dark legs, perched on a vivid magenta-pink clustered flower against a soft, out-of-focus pink background. +train_17177.png Close-up three-quarter view of a small, round, fuzzy bee toy with bright yellow felt covered body and a single thick black stripe, round black button-like eyes, tiny brown antennae and small translucent white fabric wings, resting on a warm brown textured surface. +train_17226.png A small, fuzzy golden-orange bee captured in a close, slightly angled top-down view, its velvety thorax and abdomen showing subtle darker banding and fine hairs with faint folded wings, resting on a pale, grainy beige surface that looks like fabric and casting a soft shadow. +train_17234.png From a slightly elevated side angle the small bee appears as a fuzzy golden-yellow thorax and darker, banded abdomen with translucent veined wings folded over its back as it clings with tiny legs to a soft purple-pink flower against a blurred green-and-purple background, the coarse hairs on its body and antennae still discernible despite the low resolution. +train_17301.png A fuzzy yellow-and-black banded bee shown at a slight top-down angle, with a hairy yellow thorax, dark-striped abdomen, small dark head and antennae, translucent wings and legs clasping an orange-yellow blossom against a bright, softly blurred green-white background. +train_17457.png A fuzzy bee with dense golden-yellow and black banding is shown in a close, slightly top-down pose clinging to an orange flower petal, its translucent veined wings tucked back and dark legs visible against a warm, out-of-focus orange background. +train_17458.png A small, fuzzy black-and-yellow bee viewed from a slight overhead angle, perched on the bright yellow daisy-like petals around a dark brown central disk, its striped abdomen, compact pollen-dusted legs and folded translucent wings with faint veining visible despite the low resolution. +train_17489.png A small, fuzzy bee with a dark brown to nearly black banded abdomen and warm golden-orange thorax, translucent veined wings folded over its back, is shown in a close side/three-quarter view clinging head-down to bright orange-red tubular flower petals against a soft, out-of-focus green-brown background. +train_17637.png A small, plump bumblebee with fuzzy yellow-and-black banded thorax and abdomen, a glossy black head and short dark legs, shown in a slightly angled side-top view with translucent grayish wings folded over its back, against a soft peach-beige blurred background. +train_17735.png A small bee with a fuzzy golden-yellow thorax and darker brown‑black banded abdomen, translucent folded wings and short antennae visible, shown in a top‑three‑quarter view angled toward the upper right as it perches on a pale, grainy white surface. +train_17784.png A small, compact bee with a fuzzy golden-brown thorax and darker banded abdomen, translucent folded wings and short antennae, seen in a slightly oblique top-down view perched on a pale, grainy wooden surface. +train_17809.png A small, fuzzy bee is shown in a shallow overhead three-quarter view, its rounded abdomen and thorax marked by alternating golden-yellow and black bands with fine hairs, translucent folded wings and tiny dark legs tucked beneath as it perches on a pale pink‑beige surface against a soft, out-of-focus white background. +train_17836.png Fuzzy golden-yellow and black bee seen in a close three-quarter side view, its dense yellow thoracic fuzz and dark banded abdomen with translucent, slightly iridescent wings pressed over an orange daisy-like flower while its legs grip the central disk, against a softly blurred green-blue background. +train_17914.png A close top–three-quarter view of a small, fuzzy bee showing dense yellow-orange and black banded hairs on a rounded abdomen, faint translucent wings folded back, short dark legs tucked beneath, and a warm, out-of-focus golden-yellow background suggesting a flower petal. +train_18262.png A side-view of a stout, fuzzy bee with a dark brown to black thorax and abdomen accented by a vivid yellow band, translucent slightly iridescent wings held over its back, short antennae and legs visible as it perches against a warm, out-of-focus golden-yellow floral background. +train_18269.png A small fuzzy yellow‑brown bee with a slightly banded dark abdomen and translucent, veined wings is shown in a close side‑on pose, clinging with spindly legs and extended antennae to the edge of a pale, smooth surface against a soft gray background. +train_18508.png A small, plump yellow-and-black striped bee with a fuzzy, slightly brownish thorax and translucent bluish-gray folded wings shown in a three-quarter side view perched against a soft, out-of-focus white background, its rounded abdomen, prominent dark eye, short antennae and tucked legs discernible despite the low resolution. +train_18585.png Close-up, slightly oblique top-side view of a small, fuzzy bee with warm golden-yellow and black banded abdomen, a hairy amber thorax and translucent folded wings, clinging with dark legs to an orange petal against a soft-focus bluish-gray background. +train_18597.png A fuzzy orange-brown and black striped bee is shown in a three-quarter side-on pose perched on a thin dark twig, its translucent wings folded back and antennae forward with slender legs visible against a bright, out-of-focus pale background that emphasizes the banded abdomen and hairy thorax despite the low resolution. +train_18603.png A small, velvety orange‑brown bee with darker brown abdominal banding and fine fuzzy thoracic hairs, shown in an oblique top‑down pose with translucent wings folded over its back and short antennae and legs visible, perched against a uniform bright orange background. +train_18742.png A small, velvety orange-golden bee seen from a slightly oblique top-down view, with a compact abdomen showing subtle darker banding, a darker head and legs, translucent folded wings, and perched against a soft, out-of-focus green background. +train_18887.png Oblique top-down view of a small bee perched on a bright green leaf, showing a fuzzy golden-orange thorax, a darker brown-to-black banded abdomen, translucent veined wings folded over its back and slender dark legs, set against a softly blurred green background. +train_18979.png A slightly angled top-down view of a small, fuzzy yellow-and-black banded bee with dense, hair-like texture and translucent folded wings, perched diagonally on a pale creamy-yellow blurred flower surface so its rounded thorax and darker head stand out against the soft out-of-focus background. +train_19068.png A fuzzy yellow-orange and black-striped bee captured in a close-up three-quarter dorsal view, perched on the bright green edge of a leaf with translucent folded wings and short antennae visible, its dense golden hairs and dark banding contrasting against a soft, out-of-focus green foliage background. +train_19195.png A small, fuzzy bee with a warm amber‑brown thorax and contrasting black-and-yellow banded abdomen is shown in a close three-quarter side view, clinging with visible hairy legs and folded translucent wings to a bright green leaf against a softly blurred green background. +train_19264.png A small, fuzzy bee with a warm yellow-orange body and a single darker brown-black abdominal band, seen in a close-up top-down/slightly angled view showing a rounded, hairy thorax and faint translucent wings and legs, perched against a soft, out-of-focus orange-brown background. +train_19313.png Slightly angled top-down view of a small, fuzzy bee with dense golden-yellow and black banding, a dark head and thorax, translucent folded wings and hairy legs, perched against a blurred magenta-pink flower background. +train_19358.png A small, fuzzy bee viewed from a top-front angle, showing a golden-yellow hairy thorax, distinct black-brown abdominal bands, semi-translucent veined wings folded along its back and tiny dark head and legs as it perches on a pale, slightly textured surface against a soft, out-of-focus beige background. +train_19497.png A small, fuzzy bumblebee with dense black-and-yellow banded hairs and translucent folded wings is seen in a three-quarter top-front view clinging to a dried brown seed head, set against a soft, out-of-focus green foliage background, with its stout fuzzy thorax, contrasting yellow abdominal bands and dark legs visible despite the low resolution. +train_19542.png A small, pixelated orange-and-black bumblebee seen in a three-quarter top-down pose facing left, with a fuzzy amber thorax and striped abdomen, translucent pale wings folded over its back, tiny dark legs beneath, and set against a mottled dark reddish-brown background speckled with orange highlights. +train_19560.png Small, fuzzy golden-yellow bee with subtle dark banding on its abdomen viewed at a close three-quarter/top angle as it clings to a vivid magenta‑purple flower, translucent wings folded back and dark legs and antennae visible against a soft-focus green-and-purple background. +train_19659.png A low-resolution side-profile of a small fuzzy bee showing a golden-brown and black banded abdomen, hairy thorax and dark legs with pale translucent wings folded back as it perches on a green leaf against a blurred gray-green background. +train_19897.png A small, fuzzy golden-brown and black-striped bee occupies a three-quarter dorsal view as it perches on a pale, slightly textured surface with folded translucent wings, visible dark spindly legs and antennae, and a soft out-of-focus green-gray background. +train_19909.png A close, slightly top-down view of a small bumblebee with a fuzzy orange-brown thorax, a glossy black head and subtly banded dark abdomen, translucent veined wings folded over its back and dark legs gripping a pale pink flower head against a soft, out-of-focus green foliage background. +train_19935.png A close-up, slightly side-on view of a fuzzy orange-brown bee with a dark, banded abdomen and translucent wings folded back, perched on a bright orange petal dusted with pollen against a soft teal-green blurred background. +train_19964.png A small, bright red, smooth and slightly glossy-bodied bee-like insect viewed at a three-quarter top-down angle as it perches on a green leaf against a soft-focus green/brown background, with a narrow yellow collar near the head, darker markings toward the rear and legs tucked beneath. +train_20133.png A fuzzy yellow-and-black bee seen in a three-quarter side view, perched with translucent, slightly iridescent wings folded back and dark legs tucked beneath, its banded abdomen and hairy thorax visible against a vivid blue textured background with a small darker shadowed area. +train_20370.png A low-resolution three-quarter side view of a small bee perched on a bright orange flower, showing a fuzzy golden-yellow thorax and abdomen with distinct thin black banding, translucent folded wings, short antennae and legs gripping the petal against a softly blurred orange background. +train_20433.png Close-up, slightly top-front view of a small bee with a fuzzy amber-yellow thorax and darker brownish-black striped abdomen, translucent folded wings and thin legs gripping a bright orange-yellow flower center against a softly blurred yellow-orange background. +train_20672.png The bee is seen side-on and slightly angled toward the camera, with a fuzzy orange-brown thorax, a glossy dark (blackish) abdomen showing faint yellow striping, partly open translucent veined wings, spindly dark legs gripping a smooth, pale gray/white background, and a small rust-colored head visible despite the low resolution. +train_20736.png A small, warm reddish-brown, fuzzy insect captured in a slightly angled top-down view while perched on a pale, slightly textured background, showing a darker glossy head, a rounded hairy thorax, a faintly banded oval abdomen, short legs tucked beneath and subtle wing outlines with a soft shadow. +train_20878.png A small, fuzzy bee with a golden-orange thorax and contrasting black-and-amber banded abdomen, shown in a close top–three-quarter view with translucent folded wings and tiny black head and antennae, perched on the bright yellow petaled surface of a daisy-like flower that fills the soft, monochromatic background. +train_20916.png A small fuzzy bee with golden-yellow and black-banded abdomen and translucent folded wings clings sideways to a pale, dried grass seed head against a soft, out-of-focus green background, its hairy thorax and dark legs visible despite the low resolution. +train_21016.png A top-down view of a small bee perched on a bright orange-red flower head, showing a densely fuzzy golden-orange thorax, a darker black-banded abdomen, semi-translucent folded wings and tucked legs dusted with pollen against a softly blurred green foliage background. +train_21330.png A fuzzy bee with dense orange-yellow and black banding, seen from a slightly overhead-side angle as it perches on a pale yellow petal, its rounded, hairy abdomen and folded translucent wings visible against a soft, out-of-focus green-beige background. +train_21415.png A small, fuzzy yellow-and-black banded bee is shown in close-up from a slightly oblique top-side view, its hair-covered thorax and translucent wings tucked along the body and legs gripping a narrow green stem or bud against a smooth, soft-focus green foliage background with bright bokeh. +train_21428.png A low-resolution close-up of a small fuzzy bee viewed in profile, with warm golden-orange and dark brown banded abdomen, a hairy thorax, short antennae and translucent veined wings folded along its back as it perches on a thin brown twig against a bright, out-of-focus white background. +train_21456.png A close-up, slightly overhead side view of a small, fuzzy bumblebee with a velvety black body and a broad golden-yellow band across the thorax, faint translucent wings tucked against its back and short dark head, perched on a blurred green leaf background. +train_21508.png A small, fuzzy bee with a warm orange‑gold thorax and darker brown‑black banded abdomen, translucent folded wings and thin dark legs, shown in a close top‑side 3/4 view perched diagonally against a vivid blue blurred background (likely a petal), with visible fine hairs and a shiny black head. +train_21577.png Close-up three-quarter side view of a small bee clinging to the pale wooden edge, its densely furry orange-brown thorax and abdomen contrasted with a darker glossy head and legs, faint translucent wings folded along the back, and a blurred dark-brown background. +train_21593.png The small bee appears as a compact, hairy insect with a dark brown to black, fuzzy thorax and rounded abdomen showing a muted pale-yellowish band, translucent slightly iridescent wings held close to the body in a shallow side/top view while perched on a smooth, warm orange background. +train_21604.png A fuzzy bee with warm golden-yellow thorax and distinct black-banded abdomen, short dense hairs and translucent folded wings is shown in an oblique close-up perched atop a pale pink-beige rounded surface (likely a flower bud), surrounded by a softly blurred neutral background. +train_21716.png A small bee shown in a slightly angled dorsal three-quarter view against a plain white background, with a compact, rounded body covered in dense orange-brown fuzz, a darker nearly black head, faint darker banding on the rear abdomen, short black legs tucked beneath, and translucent wings held close to the body. +train_21946.png A small fuzzy yellow-and-black bee viewed from a slightly angled top-down perspective, showing a hairy yellow thorax, alternating dark bands on the abdomen and translucent folded wings, resting on a pale smooth surface with a faint shadow beneath. +train_22035.png A top-down, slightly angled view of a small bee with a fuzzy golden-yellow thorax and a darker, subtly banded black abdomen, translucent folded wings and tiny tucked legs visible against a uniformly warm orange, blurred background that suggests a flower petal. +train_22055.png A small fuzzy yellow-orange bee with distinct black abdominal bands is seen from a slightly top-side angle, wings folded along its back and dark legs tucked beneath, perched on a rough gray-brown wooden or stone surface with a blurred green leaf at the edge. +train_22066.png A small, round, fuzzy golden‑orange bee seen from above at a slight angle, its densely hairy, warm yellow-orange thorax and slightly darker, banded abdomen visible as it clings to a soft, out‑of‑focus brownish background with faint, translucent wing shapes and tiny legs tucked beneath. +train_22246.png A low-resolution, slightly top-down view of a small, fuzzy orange-brown bee perched on a vivid magenta flower, showing a rounded, densely hairy thorax and abdomen with faint darker banding, translucent wings folded over its back and tiny dark legs against a soft green-brown blurred background. +train_22383.png A fuzzy yellow-and-black bee shown in a close head-on view, its rounded banded abdomen and slightly translucent wings visible with dark compound eyes, short antennae and faintly splayed legs, all set against a uniformly bright lime-green blurred background. +train_22405.png Three-quarter side view of a small bee with a fuzzy golden-yellow thorax and glossy black-banded abdomen, semi-translucent veined wings folded along its back, short curved antennae and hairy legs, shown perched against an uncluttered white background. +train_22511.png A small, fuzzy yellow-and-black banded bee seen from a close, slightly overhead angle with its hairy golden thorax and darker striped abdomen perched on a vivid pink flower petal, translucent wings folded back and legs tucked beneath against a soft, out-of-focus magenta background. +train_22537.png A small, fuzzy yellow-orange bee with dark transverse bands and a hairy thorax, shown in a close top-down view perched on a pale white surface against a soft, out-of-focus greenish background, its compact banded abdomen and tucked legs visible despite the low resolution. +train_22539.png A close-up three-quarter top view of a small fuzzy bee with warm orange-yellow and dark brown banded abdomen, a hair-covered thorax and partially translucent wings, clinging to a bright orange-yellow flower petal against a softly blurred warm-toned background. +train_22724.png A close-up, slightly top-side view of a small, fuzzy bee with golden-yellow and black banded abdomen and a hairy orange-brown thorax, perched with its legs gripping a vivid magenta-pink flower petal and translucent wings folded against its back against a soft, out-of-focus pink and green background. +train_22772.png Close-up three-quarter/top-down view of a small bee with a fuzzy yellow-orange thorax and darker black-and-brown banded abdomen, translucent folded wings and tiny legs gripping the edge of a glossy green leaf against a soft, blurred green background. +train_22809.png Top-down view of a small, fuzzy black-and-yellow bee with bold yellow abdominal bands and slightly translucent folded wings, perched on a saturated magenta-red flower petal against a soft, out-of-focus green background. +train_22877.png A small, fuzzy bumblebee with contrasting black-and-yellow banding is angled head-first into a bright pink tubular blossom, its translucent wings faintly visible and body slightly blurred by the low resolution against an out-of-focus backdrop of pink petals and green foliage. +train_23254.png A small, fuzzy bee with contrasting black and golden-yellow banding and semi-translucent wings is shown in an oblique close-up, clinging to a vivid purple flower head against a soft, blurred purple background, its rounded hairy thorax, short antennae, and banded abdomen still discernible despite the low resolution. +train_23387.png Close-up, top-down view of a small bee resting on warm beige human skin, displaying a fuzzy black thorax and rounded abdomen with a broad yellow band, folded translucent wings, short antennae and tucked legs—distinct features visible despite the image's low resolution. +train_23470.png From a close, slightly top-down view, a small fuzzy bee with an amber-brown thorax and distinct black-and-yellow banded abdomen and translucent veined wings is perched head-first into a vivid golden-orange flower, its hairy legs clutching the petal and the warm, blurred yellow background emphasizing the bee's striped, velvety texture despite the low resolution. +train_23480.png A small, fuzzy bee with dark brown to black body covered in golden-yellow hairs and faint banding on the abdomen is shown in an overhead/three-quarter pose perched on the bright yellow-orange, pollen-rich center of a flower, its slightly translucent wings and dark, pollen-dusted legs visible despite the low resolution. +train_23612.png Top–three-quarter view of a small, fuzzy bumblebee with bright yellow thoracic fuzz, contrasting black banded abdomen and a subtle rusty-orange patch near the head, translucent wings folded along the back and splayed dark legs resting on a pale, slightly textured off-white surface with a soft, out-of-focus background. +train_23657.png From a slightly oblique top-down view, a small bumblebee with a fuzzy golden‑yellow thorax and alternating black bands on its rounded abdomen, translucent folded wings and tiny legs visible, perches on a bright magenta flower petal against an out‑of‑focus purple and green background. +train_23658.png A small bee is captured in a three-quarter side view perched on the serrated edge of a green leaf, its compact body cloaked in warm golden-brown fuzz with a darker subtly banded abdomen, translucent folded wings, short antennae and spindly legs gripping the leaf, set against a soft out-of-focus green-brown background. +train_23794.png Top-down, slightly angled view of a small fuzzy bee perched facing left on a pale pink-white petal, showing a dark brown hairy thorax and abdomen with a distinct orange-yellow band toward the rear, translucent folded wings and thin legs against a soft, out-of-focus light background. +train_23893.png A small, fuzzy bee with alternating dark brown and yellow bands on a slightly plump abdomen, seen in a three-quarter dorsal view as it perches diagonally on a bright green leaf with translucent, veined wings folded over its back and slender legs gripping the leaf against a softly blurred green foliage background. +train_24102.png A small, fuzzy bee with alternating golden-yellow and dark brown banding on its abdomen, a densely hairy thorax and folded translucent wings is shown in a slightly oblique top-down view clinging to a blurred green-brown background, its contrasting striping and overall fuzzy texture visible despite the low resolution. +train_24106.png A small fuzzy yellow-and-black bee shown in a three-quarter side view clinging to a bright green veined leaf, its hairy thorax and banded abdomen, translucent folded wings, short forward-pointing antennae and dark legs visible despite the low resolution. +train_24245.png A small, fuzzy bee shown in a three-quarter dorsal-side pose with a yellow-brown, hairy thorax and black-banded abdomen, translucent veined wings folded over the back, dark legs gripping a pale pink flower petal, all set against a soft, out-of-focus pastel background. +train_24253.png A small, bright yellow‑orange, glossy oval-bodied bee-like object photographed from a slightly top‑front three‑quarter view, showing a distinct horizontal black band across its middle and a tiny dark head/eye, with specular highlights and pixelated edges, resting on a pale cyan background that casts a faint shadow beneath it. +train_24457.png A small fuzzy bee with golden-yellow and black-banded, slightly iridescent segmented abdomen and a hairy brown thorax, wings folded back and faintly translucent, viewed from a slightly overhead angle as it perches with legs splayed on a glossy bright green leaf against a soft, out-of-focus green background, the low-resolution image still showing contrasting stripes and fuzzy texture. +train_24521.png A small fuzzy black-and-yellow bee shown in an oblique top-down close-up, its fine hairy thorax and striped abdomen dusted with pollen, translucent veined wings folded over the back and spindly legs gripping a bright orange, softly blurred floral background. +train_24544.png A small, fuzzy bee with warm golden-yellow and black banding, a dark head and legs, and faint semi-translucent wings folded along its back, shown in a slightly top-down diagonal pose resting on a pale cream petal with a blurred green background, the fine hairs and contrasting stripes visible despite the low resolution. +train_24551.png Three-quarter dorsal view of a small bee with a predominantly dark brown–black fuzzy body and warm golden-brown thoracic fuzz, translucent veined wings folded over its back, short antennae and legs tucked beneath, and a faint paler band near the rear of the abdomen, shown against a plain white background. +train_24620.png Top-down, slightly angled view of a small, fuzzy bumblebee-like insect with a bright yellow, densely hairy thorax, a darker banded abdomen, translucent folded wings and tiny legs visible while perched on a soft pink–purple blurred background. +train_24832.png A plump bee shown in a slightly angled top-down view with dense, velvety golden-orange fuzz on the thorax and abdomen interrupted by two broad dark brown/black bands, translucent bluish wings folded back, and perched against a warm, blurred yellow-orange floral background. +train_24833.png Top-down, slightly oblique view of a small, fuzzy bee with a golden-yellow and black banded abdomen and a tawny, hairy thorax, translucent veined wings folded over its back and short antennae visible, perched on a pale, grainy concrete surface with a faint shadow beneath. +train_25027.png A small fuzzy bee with warm golden-brown and black banded abdomen, dense pale-yellow thoracic fuzz and translucent veined wings held back over its body, shown in a close oblique side-top view perched against a bright yellow-orange blurred floral background, with slender legs and short antennae faintly visible despite the low resolution. +train_25088.png A small, fuzzy black-and-yellow bee is seen from a top‑angled view perched on the bright orange‑yellow center of a flower, its dark rounded thorax and abdomen showing faint pale banding, translucent wings folded back, and fine hairs and legs partially visible against the blurred warm floral background. +train_25174.png A small fuzzy bee shown in a slightly angled top-down pose, its hairy thorax and abdomen bearing distinct alternating golden-yellow and black bands with translucent folded wings and dark legs visible beneath, perched against a warm, out-of-focus orange background that suggests a flower. +train_25210.png A small, fuzzy black-and-yellow bee is shown in a three-quarter dorsal view perched on a vivid magenta flower petal, its compact striped abdomen, translucent folded wings and tiny legs visible against a soft, out-of-focus purple background with a hint of green foliage. +train_25246.png A small, fuzzy bee with a golden-yellow thorax and subtly banded darker abdomen, translucent folded wings and short antennae is shown in a three-quarter dorsal view perched on a pale rounded blossom against a dark, out-of-focus earthy background. +train_25257.png A small, fuzzy bee with a warm golden-brown thorax and a darker, banded abdomen showing faint black stripes, translucent iridescent wings folded along its back, short antennae and spindly legs clutching the edge of a white petal in an oblique side-top pose against a mostly white background with a blurred green leaf in the upper right. +train_25338.png A small, fuzzy bee with golden-brown and black banded abdomen, a hairy amber thorax, translucent folded wings and short antennae visible in a three-quarter side view as it clings with its legs to a brown surface against a blurred green-brown outdoor background. +train_25414.png Oblique close-up of a small, fuzzy bee perched on a vivid orange petal, its hairy thorax and abdomen showing alternating black and golden-yellow bands dusted with pollen, translucent veined wings folded back and glossy legs gripping the velvety flower against a shallow, out-of-focus warm orange-green background. +train_25473.png A small bee captured mid-air from an oblique side view, with a fuzzy golden-yellow thorax, a bright orange-and-black banded abdomen, translucent grayish wings held partly open showing faint venation, short antennae forward and legs tucked beneath, all set against a plain white background with slight motion blur. +train_25499.png A close-up, slightly side-on view of a small bee perched on a pale surface, showing a fuzzy golden-orange thorax, a darker brown-and-black banded abdomen, translucent folded wings, short antennae and fine hairs against a soft-focus green vegetation background. +train_25543.png Close-up, slightly oblique dorsal view of a small fuzzy bee with a golden hairy thorax and bright yellow-and-black banded abdomen, translucent veined wings folded over its back and dark legs gripping a soft pink flower petal set against a blurred pale green background. +train_25634.png A low-resolution image shows a small bee perched on a pale/white surface in a three-quarter dorsal view, its fuzzy black-and-yellow striped abdomen and hairy thorax, short antennae and dark legs visible, with a translucent folded wing and a faint shadow on the background. +train_25874.png A close-up, slightly angled top–three-quarter view of a small bumblebee with a fuzzy golden-brown thorax and abdomen showing faint dark banding, translucent folded wings and tiny hairy legs gripping a vivid purple flower petal against a soft, out-of-focus purple-green background. +train_25980.png A small bee with a fuzzy amber-brown thorax and distinct yellow-and-black banded abdomen, semi-translucent folded wings and dark spindly legs seen in a slightly oblique top-down view as it perches on a pale, rough speckled concrete surface, its fine hairs and faint shadow visible despite the low resolution. +train_25995.png A close-up, slightly oblique top-down view of a fuzzy black-and-yellow bee showing dense velvety hairs and distinct yellow-and-black banding on the abdomen, translucent folded wings and tucked legs as it perches on a pale yellow flower petal against a soft-focus green background. +train_26028.png A fuzzy yellow-and-black bumblebee viewed from a slightly overhead side angle, its dense golden hairs and dark banding contrasting with translucent folded wings as it clings with pollen-dusted legs to vivid magenta petals against a soft, out-of-focus green background. +train_26180.png A small bee with a fuzzy golden-brown thorax and darker brown-black banded abdomen, shown in a low-resolution side/three-quarter view with translucent, slightly glossy wings folded back, long curved antennae and spindly legs grasping a thin pale surface against a plain off-white background. +train_26268.png A small, fuzzy golden-orange bee captured in an oblique top-side view, showing a hairy thorax, darker banded abdomen, translucent iridescent wings and black legs as it perches on a saturated yellow, pollen-dusted flower surface. +train_26366.png A small, fuzzy bee with a black head and thorax and a prominent orange-yellow band on its abdomen is shown in a close, slightly angled side-top pose clinging to a pale orange-brown bud, its translucent folded wings and fine hair texture visible against a soft-focus green and light background. +train_26420.png A small, fuzzy, golden-yellow and black-striped bee shown in a three-quarter side/top view perched on tiny clustered white blossoms against a dark, out-of-focus green backdrop, with translucent folded wings, a banded abdomen and pollen-dusted hind legs. +train_26675.png A fuzzily textured black-and-yellow bee is shown in a close top-down view, perched on a warm yellow-orange flower; its hairy black head and thorax, alternating yellow-orange abdomen bands, translucent folded wings and short antennae are visible against a blurred yellow petal background. +train_26872.png Viewed slightly obliquely from above, the bee sits on a bright azure surface showing a golden-brown fuzzy thorax, a darker brown-banded abdomen, translucent folded wings and tiny legs and antennae, with a soft shadow and a pale scuff on the blue background. +train_26874.png A small fuzzy bee with warm golden-brown thorax and contrasting dark-banded abdomen, seen in a three-quarter dorsal pose with translucent veined wings partly spread as it clings to a pale white flower bud against a soft green blurred background, the image still showing dense body hairs, dark eyes and slender legs despite low resolution. +train_27003.png A small, fuzzy bee with a turquoise-green body and subtle darker banding is shown in a three-quarter side view, perched with its legs gripping a vivid magenta-pink flower petal, its translucent wings folded back and a hairy thorax and rounded abdomen visible despite the low resolution. +train_27311.png A low-resolution side-profile view of a small bee perched on a pale wooden surface, its fuzzy golden-brown thorax and alternating yellow-and-black banded abdomen visible with translucent folded wings and thin legs gripping the wood grain. +train_27369.png A side-on, slightly elevated view of a small bee perched on a green leaf, showing golden-yellow and dark-brown banded abdomen, a densely fuzzy golden-brown thorax, translucent membranous wings folded back with faint veins, short antennae forward and legs gripping the leaf against a soft, out-of-focus green foliage background. +train_27434.png A small bee with a fuzzy golden‑brown thorax and alternating blackish brown bands on the abdomen, semi‑translucent folded wings and thin legs visible from a slightly top‑side angle while perched on a pale, out‑of‑focus surface with a warm brown blur at the lower left. +train_27682.png Oblique top-side close-up of a small, fuzzy bee with a dark brown–black thorax and a tawny yellow, subtly banded abdomen, translucent folded wings and fine hairs visible on its body as it perches diagonally on a soft pink petal against a blurred green-pink background. +train_27766.png Top-down view of a small, densely fuzzy yellow-orange and black striped bee with a rounded, pollen-dusted thorax and darker head and legs, translucent wings held close to the body, all resting on a smooth, out-of-focus pale/white background. +train_27791.png A fuzzy golden-yellow bee with distinct broad black abdominal bands and translucent, veined wings is captured in an overhead three-quarter view with its head tucked into a bright pink-red flower petal, the dense hairs and compact striped body contrasting against a soft, out-of-focus rosy background. +train_27818.png A top-down, slightly angled view of a small, fuzzy bee with a golden‑brown thorax and alternating black and yellow banded abdomen, translucent dark wings folded over its back and spindly legs visible, set against a warm, out‑of‑focus yellow‑orange background (likely a flower petal), with coarse hair and contrasting stripes discernible despite the low resolution. +train_27907.png A small, fuzzy yellow-orange bee viewed from above at a slight angle, perched on a blurred warm-orange flower petal with translucent folded wings, a velvety, pollen-dusted thorax, a darker banded abdomen and tiny dark legs and head visible against the monochromatic floral background. +train_28016.png A fuzzy yellow-and-black striped bumblebee viewed from a slightly overhead side angle, clinging to a pale green plant bud with dense golden hairs, a rounded banded abdomen and folded translucent wings against a soft, out-of-focus green foliage background. +train_28017.png A fuzzy yellow-and-black striped bee with an orange-brown head and translucent, slightly veined wings is shown in a three-quarter side view clinging to a green leaf or stem, set against a soft, out-of-focus green background, with the hairy thorax and banded abdomen still discernible despite the low resolution. +train_28061.png Oblique dorsal view of a small fuzzy bee perched on a bright, out-of-focus green leaf, showing a black head and thorax, a broad orange-yellow band across a dark abdomen, translucent folded wings and short legs with a bristly hair texture visible despite the low resolution. +train_28104.png A low-resolution view of a small bee shows a plump, fuzzy yellow-and-black banded body with a rounded abdomen and tiny dark head, translucent wings held partly open at a slight top-front angle and short antennae visible, set against a soft sky-blue circular background with a faint white highlight. +train_28255.png A small, velvety yellow-and-black bee is shown in an oblique top-down pose, its hairy thorax and alternating dark bands and translucent folded wings visible as it grips a pale cream flower with spindly legs against a soft, out-of-focus green background. +train_28399.png A small, fuzzy bee with warm golden-yellow and darker brown/black banding on the abdomen, its translucent wings folded along the back and tiny legs gripping the surface, shown from a slightly oblique top-down viewpoint against a soft, out-of-focus yellow-orange floral background. +train_28407.png Seen in a close, slightly top‑down view, the bee displays a fuzzy orange‑yellow thorax and a glossy black‑and‑yellow banded abdomen with folded translucent wings in a compact, slightly curled pose, resting on a smooth pale beige surface against a soft, out‑of‑focus background. +train_28482.png A small golden‑orange, densely fuzzy bee with a darker brown head and faint transverse darker bands on its rounded abdomen, shown in a close-up oblique side view perched on a bright green leaf with folded translucent wings and short dark antennae against a blurred green background. +train_28507.png A slightly blurry three-quarter frontal view of a small bee perched on a thin brown stem, showing a densely fuzzy warm orange-brown thorax and abdomen, a darker brown-black head with short antennae, faint translucent folded wings and indistinct legs against a bright, out-of-focus white background. +train_28510.png A small, golden‑orange, fuzzy bee shown in a low‑resolution side/three‑quarter view with its horizontally oriented, subtly dark‑banded abdomen and darker head visible against a uniformly warm orange, out‑of‑focus background, with a faint translucent wing and hairlike texture discernible despite the blur. +train_28578.png A small bee with bold yellow-and-black banded, slightly fuzzy abdomen and a darker thorax, shown in a diagonal three-quarter top-down pose with translucent wings partially extended and faint legs and antennae gripping a soft green leaf background. +train_28779.png A low-resolution close-up oblique-top view shows a small fuzzy bee with a dark brown thorax and alternating yellow-orange and black bands on the hairy abdomen, translucent folded wings and tiny legs visible, all set against a blurred warm orange-pink petal background. +train_28812.png A low-resolution close-up shows a plump, fuzzy bee with warm yellow‑orange hairs and darker transverse bands, captured in a three-quarter profile as it perches on a pale white petal against an out-of-focus light background, its rounded thorax, contrasting dark abdomen stripes and small legs discernible despite the blur. +train_28857.png A low-resolution three-quarter/top view of a small, almost black bee with a smooth, slightly glossy thorax and a faintly banded, less furry abdomen, perched with splayed legs and folded translucent wings on a bright, featureless white background, its long curved antennae and segmented body visible despite the blur. +train_28875.png A close-up, slightly overhead-angled view of a small, fuzzy bee with a rounded golden-yellow thorax, darker brown-black head and faint black banding on the abdomen, translucent wings folded along its back and thin dark legs gripping a pale, out-of-focus surface against a bright white background. +train_29085.png A small bee seen in a right-side three-quarter view, perched on a smooth pale surface, with a fuzzy golden‑orange thorax, a darker glossy brown‑to‑black banded abdomen, translucent folded wings and long dark legs casting a soft shadow. +train_29127.png Close-up, slightly top-down view of a small fuzzy bee with bright yellow-and-black banded abdomen and a densely hairy golden-brown thorax, translucent wings folded along its back and legs gripping a vivid pink–purple cluster blossom against a soft, blurred green background. +train_29193.png A fuzzy black-and-yellow bee captured in an oblique top-down view, its diagonally angled body showing distinct yellow abdominal bands, a dark head and thorax, faint folded translucent wings and spindly legs gripping a vivid orange petal with the background softly out of focus. +train_29291.png A small, fuzzy golden-brown bee with a darker, banded abdomen and translucent veined wings is shown in a three-quarter top-down pose clinging with splayed legs to a pale cream-pink petal or surface, its hairy thorax and short antennae visible against a soft, out-of-focus greenish-beige background. +train_29387.png A small, fuzzy bee with a golden-yellow, dense-haired thorax and distinct black-and-yellow banded abdomen is captured at an oblique top-front angle while perched on a glossy green leaf, its wings and legs barely resolved against a softly blurred green background. +train_29403.png A small, golden‑brown, fuzzy bee shown in a three‑quarter top‑down pose with translucent, slightly iridescent wings folded along its back, a darker banded abdomen and tiny legs and antennae visible as it perches on a rough, warm‑toned wooden surface with scattered dark specks. +train_29436.png A small, fuzzy bee with alternating black and golden-yellow stripes and a dark glossy abdomen is shown in a three-quarter dorsal view perched on a bright yellow flower center against a soft-focus green background, its translucent wings, visible body hairs, and a light dusting of pollen discernible despite the low resolution. +train_29444.png Perched at a slight angle on a bright green leaf, the bee shows a golden-brown fuzzy thorax and a matte black abdomen with pale yellow bands, semi-transparent veined wings folded over its back, short curved antennae and hairy legs gripping the leaf against a softly blurred green foliage background. +train_29558.png Seen in a slightly oblique top-down view, the small bee has a warm orange-yellow fuzzy thorax and a darker banded abdomen with folded translucent wings and a hint of a dark head, perched diagonally against a softly blurred yellow-green background of foliage or blossom, the banding and fuzziness remaining discernible despite the image's low resolution. +train_29768.png A small, fuzzy bee seen from above at a slight oblique angle, its warm orange-brown thorax contrasting with a darker, subtly banded abdomen and indistinct translucent wings, perched on a coarse dark-brown soil- or wood-like background. +train_29795.png A small, fuzzy black-and-yellow bee sits in three-quarter profile diagonally across the frame with translucent, veined wings folded over a warm yellow–orange petal background, its banded abdomen, fine thoracic hairs and tiny legs gripping the surface visible despite slight blur. +train_30004.png A small, compact bee-like insect with a fuzzy dark-brown thorax and a muted yellow-orange and black banded abdomen, translucent wings folded over its back and tiny legs visible, shown in a slightly oblique top-down view while perched on a warm, grainy beige surface that fills the blurred background. +train_30138.png A fuzzy black-and-yellow bee photographed from a slightly top-down/three-quarter angle, clinging to a bright yellow petal with translucent, veined wings folded over a dense, hairy thorax and a stout, banded abdomen against a soft, out-of-focus green foliage background. +train_30155.png A fuzzy yellow-and-black banded bee is seen from a slight side-top angle, perched diagonally on a bright green leaf with translucent folded wings, dark legs gripping the edge, and a softly blurred green background. +train_30180.png A small, fuzzy orange-brown and black striped bee is seen from a slightly top-front diagonal view, clinging with its legs to a bright pink petal with translucent folded wings and a dark head, set against a soft, out-of-focus pink background. +train_30252.png Side-view of a small golden-brown bee perched on a pale pink surface, its fuzzy thorax and alternating dark-and-light striped abdomen visible with folded translucent wings and short antennae against a warm, out-of-focus orange background. +train_30398.png A small, fuzzy bee with bold yellow-orange and black banding and a hairy thorax, translucent folded wings and visible legs, shown in a slightly oblique top-down view as it perches on a bright green leaf with sunlight casting a shadow. +train_30419.png A small bee captured in a close oblique top-side view perched on a bright turquoise-blue surface, its compact body showing alternating matte black and muted yellow-orange bands, a slightly fuzzy dark thorax, translucent veined wings folded along its back and short dark legs casting a faint shadow. +train_30566.png A low-resolution side-view of a small, fuzzy bee with muted yellow-and-black banding on its abdomen, a darker thorax and head, faint antennae and translucent wings folded along its back, set against a soft pale-gray background. +train_30577.png Top‑down, slightly angled view of a small, densely fuzzy orange‑brown bee with darker brown to black transverse banding, a dark head and tucked legs, translucent folded wings and velvety hair visible against a warm, out‑of‑focus reddish‑orange floral background. +train_30610.png A small, fuzzy orange-brown bee is shown in a slightly angled top view, perched on a pale yellow petal with translucent folded wings and a dark, banded abdomen standing out against a softly blurred light background. +train_30651.png A small, round bee with a fuzzy golden‑orange body, a single broad black abdominal band and darker head, translucent folded wings and compact legs visible in a top-three-quarter resting pose against a bright pale background, its dense hairiness and bold stripe discernible despite the low resolution. +train_30670.png A small, fuzzy bee seen from a slightly oblique top-down angle with a warm golden-orange, hairy thorax, a darker banded abdomen, folded translucent wings and spindly dark legs, perched against a warm, out-of-focus reddish-brown surface that looks like wood or bark. +train_30681.png A densely hairy, golden-yellow and black–banded bee with a fuzzy thorax, translucent veined wings folded over its back and short antennae visible in a slight top-down angled pose, perched on a pale surface against a soft, out-of-focus green background. +train_30685.png A low-resolution, slightly oblique top-down view of a small, fuzzy bee perched on a plain white/beige flat surface, showing a golden-yellow hairy thorax, contrasting black-and-yellow banded abdomen, translucent, veined wings folded over its back, short dark legs tucked underneath, and a faint shadow beneath. +train_30811.png An orange-brown, fuzzy bee with darker transverse banding and faint translucent wings folded over its back, seen in an oblique dorsal view as it perches on a bright green leaf—its hairy thorax, compact striped abdomen and tucked legs discernible despite the low resolution. +train_30886.png A small, fuzzy golden-brown bee with subtle darker abdominal banding and translucent folded wings is shown in a three-quarter side view as it perches with bent legs and short antennae on a rough, dark reddish-brown surface against a blurred dark background. +train_31096.png Seen from a slightly overhead angle, a small bee with a fuzzy orange-yellow head and thorax, a darker brown-black tapered abdomen, translucent folded wings and splayed legs rests on a plain white surface, casting a faint shadow. +train_31111.png A fuzzy, golden‑orange and black‑banded bee shown in a slightly oblique top‑side view, perched with translucent wings folded over its back and legs gripping the edge of a bright green leaf against a soft, out‑of‑focus green background. +train_31156.png Close-up three-quarter lateral view of a fuzzy yellow-and-black bee perched on a bright magenta flower petal, showing a densely hairy thorax and banded abdomen with semi-transparent, veined wings folded over its back against a soft, out-of-focus green background. +train_31182.png A close three-quarter view of a fuzzy bee perched head-first into a bright red tubular flower, showing a dark brown-to-black hairy thorax, a muted yellow-banded abdomen, translucent veined wings held back, and tucked legs against a soft-focus green-leaf and red-bloom background with fine hairs catching light despite the low resolution. +train_31184.png A small, fuzzy bee shown in profile with distinct yellow-and-black banded abdomen and dense thoracic hairs, translucent slightly iridescent wings folded back and dark legs clinging to a pale purple flower petal against a soft-focus lavender background. +train_31257.png A close three-quarter profile of a small fuzzy bee with warm orange-yellow and black banding, densely hairy thorax, a rounded dark compound eye and short antennae, translucent veined wings folded along its back and legs gripping an orange petal, set against a soft, out-of-focus orange floral background. +train_31351.png Low-resolution close-up of a bee viewed from a slightly elevated oblique side-top angle, showing a fuzzy dark-brown thorax with golden hairs and a segmented yellow-and-black banded abdomen, translucent veined wings folded back, visible antennae and legs, and a soft shadow on a plain pale background. +train_31356.png A fuzzy bumblebee with a golden-yellow and black banded abdomen and an orange-brown thorax, shown in a close three-quarter/top-down view clinging to a bright green leaf with translucent wings folded back and small dark legs visible against a soft, out-of-focus green background. +train_31546.png A small, fuzzy golden‑orange bee with distinct dark bands on its abdomen is shown in a slightly oblique top‑down view with translucent wings folded along its back, perched on a bright green leaf against a uniformly blurred green background, the hairy thorax, darker head, and yellow‑black striping clearly discernible despite the image's low resolution. +train_31584.png A small, fuzzy bee with a warm orange-yellow, subtly banded body and a darker black head and legs, shown in a side-on perched pose on a human fingertip with translucent folded wings and visible fine hairs, set against a blurred turquoise background. +train_31802.png A fuzzy orange-and-black banded bee, viewed from a slightly top-down angle with translucent folded wings and tucked legs, perched on a pale, slightly textured surface against a dark, out-of-focus background. +train_31817.png A small, round, fuzzy yellow-and-black striped plush bee is shown in a three-quarter top view perched on a warm skin‑toned background, displaying soft felt-like texture with visible seams, tiny translucent white wings, short black antennae and prominent round black eyes despite the low resolution. +train_31837.png A small, fuzzy bee viewed from a slightly top‑rear angle with a yellowish-brown, downy thorax and a darker, subtly banded abdomen, translucent folded wings and short antennae visible as it clings to a pale green leaf against a softly blurred green background. +train_31877.png A close, slightly oblique top-side view of a fuzzy bee with alternating black and golden-yellow bands, a dark head and short antennae, translucent veined wings folded over its back as it clings to a bright yellow composite flower center against a warm, softly blurred brown background. +train_31893.png A small, fuzzy orange-brown bee captured from a slight top-down angle, with a rounded, hairy thorax and abdomen showing subtle darker banding, translucent folded wings and tiny dark legs clinging to a slender green stem against a soft, out-of-focus blue-green background. +train_31914.png A close-up, slightly oblique macro view of a small, densely fuzzy golden‑orange bee with a darker brown‑black head and faint darker banding on the abdomen, clinging to the edge of a pale pink petal against a soft, out-of-focus green‑white background. +train_31937.png A top-down view of a small, fuzzy bee with a bright golden-yellow thorax and darker banded abdomen, translucent folded wings and short antennae, perched on an out-of-focus orange flower that forms a warm, blurred background. +train_31978.png A side‑view close-up of a small, fuzzy bee with a warm golden‑orange thorax, a darker brown to black banded abdomen, faint translucent wings folded along its back and spindly dark legs tucked beneath, set against a smooth, out‑of‑focus pale beige background. +train_32006.png A fuzzy bee with alternating golden-yellow and black bands, a darker head and legs, and semi‑translucent wings folded over its back is seen in an oblique top‑side view perched on a bright orange‑yellow flower petal against a uniformly warm, blurred background, with its striping and hairy texture still discernible. +train_32148.png A small, round, golden-yellow fuzzy bee seen in a close, slightly top-down view perched on a vivid orange flower petal against a soft green-orange blurred background, with dense hair-like texture, faint darker banding on the abdomen, and a tiny translucent wing and dark head outline visible despite the low resolution. +train_32248.png Seen in a slightly oblique top-down view despite the low resolution, a small fuzzy bee with a hair-covered dark thorax, yellow-and-black banded abdomen and translucent wings folded along its back is perched on a glossy dark-green leaf against a soft, out-of-focus green background. +train_32290.png Side-view of a small fuzzy bee with bright yellow and black transverse bands on its abdomen, a darker hairy thorax and head, folded translucent wing and tucked legs, perched on a pale surface against a soft gray-blue background with a blurred green leaf at the upper right. +train_32391.png A fuzzy golden‑orange and black‑banded bee seen in a three-quarter top-side view, its hairy thorax and abdomen and translucent veined wings folded along its back as it clings with dark legs to a bright orange‑yellow flower head against a soft, out-of-focus green background. +train_32409.png A small bee seen obliquely from above with a fuzzy yellow-and-black banded abdomen and darker head, pale translucent wings folded along its back, and tiny legs tucked underneath as it sits diagonally on a soft, pale green leaf background with a faint shadow beneath. +train_32545.png Perched diagonally on a blurred green leaf, the low-resolution bee displays a fuzzy golden-brown thorax and banded black-and-yellow abdomen, translucent veined wings folded over its back, short antennae and legs gripping the surface, seen from a three-quarter top‑down view against an out-of-focus leafy background. +train_32546.png A close-up, slightly top-down view of a small fuzzy bee showing distinct black-and-yellow banding on a brown-tinted, hairy thorax and abdomen, translucent folded wings and short antennae, perched on a blurred magenta-pink flower petal with soft out-of-focus green and dark background, the dense hairs and banded pattern still discernible despite low resolution. +train_32566.png A small, compact, golden‑orange, fuzzy bee shown in a close oblique/top‑down view with a darker head and subtly banded rounded abdomen, tiny dark legs and a faint wing outline visible against a pale cream‑yellow, softly blurred background that suggests a flower petal. +train_32578.png Seen in a slightly top-front oblique view, the bee is a small, fuzzy insect with golden-yellow and black banded abdomen and a hairy orange-brown thorax, translucent veined wings folded back, short antennae and dark legs clinging to a bright green leaf against a softly blurred green background, with its striped pattern and fuzzy texture still discernible despite the low resolution. +train_32813.png A small stylized yellow-and-black striped bee seen in a rightward three-quarter profile, with a glossy rounded body and subtly fuzzy striping, two translucent bluish wings raised mid-flight, short black antennae and a tiny pointed stinger, all outlined in bold black against a plain white background with faint motion lines trailing behind. +train_32885.png Seen in an oblique top‑down view, the insect displays dense yellow thoracic fuzz and a bold black‑and‑yellow banded abdomen, translucent folded wings and thin dark legs tucked beneath, resting on a warm beige, slightly textured surface with a softly blurred background. +train_32887.png A close-up three-quarter/top view of a small, fuzzy yellow-and-black bee with a golden-brown, hairy thorax and darker banded abdomen, translucent wings folded along its sides and spindly legs gripping a pale, out-of-focus green surface that forms the soft background. +train_33034.png A small, fuzzy black-and-yellow banded bee viewed from a slightly elevated oblique angle, perched with translucent, veined wings folded over its striped abdomen and short antennae visible, set against a bright, featureless white background with a soft shadow beneath, the coarse hairs and contrasting dark head still discernible despite the low resolution. +train_33064.png A low-resolution close-up shows a small bee with a fuzzy golden-brown thorax and black-banded abdomen viewed from a slight top-side/profile angle, wings folded along its back and legs tucked beneath as it perches on a pale green surface against a soft, out-of-focus green-brown background, with banding and hairiness visible despite the blur. +train_33077.png A fuzzy bee with bright yellow thoracic hairs and a banded black-and-yellow abdomen is captured in an oblique top-side pose with its head buried in a vivid orange-red flower, translucent veined wings folded back and tiny legs gripping the petal against a soft, out-of-focus green background. +train_33109.png A small, fuzzy bee with bold black-and-yellow banding and a hair-covered, rounded abdomen is shown in a three-quarter side view with translucent folded wings and a dark head, perched against a smooth, out-of-focus bright cyan-blue background. +train_33111.png A small, fuzzy yellow-orange bee with dark brown transverse bands on a rounded abdomen, seen in a slightly top-front three-quarter view with translucent wings folded along its back while perched on a bright green leaf against a blurred green background, the banding and coarse hairs still discernible despite heavy pixelation. +train_33244.png From a top-down view, this small bee appears as a slender, glossy black-brown insect perched diagonally on a bright green leaf with a conspicuous yellow-orange band across the mid‑abdomen, faint translucent wings folded along the back, sparse short hairs giving a slightly fuzzy texture, and an out-of-focus green leaf background with sunlight highlights. +train_33259.png A small fuzzy bee with a golden-yellow thorax and alternating dark brown-to-black banded abdomen, translucent veined wings held back, short antennae and pollen-dusted legs visible in a slightly angled side-top pose as it clings to a pale pink clustered blossom against a soft, out-of-focus green foliage background. +train_33278.png A small, fuzzy yellow-orange bee seen at a slight top-side angle perched on a glossy green leaf, with a densely hairy thorax and rounded abdomen showing faint darker banding, short forward antennae and translucent folded wings standing out against a soft, out-of-focus green background. +train_33497.png A small, fuzzy black-and-yellow bee seen from a three-quarter top view, perched with splayed legs on a bright magenta petal against an out-of-focus green background, its hairy thorax, banded abdomen, short antennae and translucent wings faintly visible despite the low resolution. +train_33505.png A close, slightly top-three-quarter view of a fuzzy bee showing dense golden-yellow hairs and bold black bands on a rounded abdomen, translucent veined wings folded back and its head buried in a vivid magenta flower while its legs grip the petal against a soft, out-of-focus green background. +train_33819.png A low-resolution close-up of a bee seen from a slightly top-side, diagonal viewpoint, showing a fuzzy, densely hair-covered yellow thorax and banded black-and-yellow abdomen, translucent folded wings and dark legs as it perches on a pale cream-beige petal with a softly blurred warm brown background. +train_33822.png A close-up diagonal top-down view of a small, fuzzy bee showing dense yellow and black banded hair on a rounded thorax and abdomen, a compact dark head with tiny legs visible and a translucent wing folded along its back, set against a warm orange, softly blurred background that resembles a petal or surface. +train_34034.png A low-resolution side view of a small bee perched on a pale fingertip, showing a fuzzy golden-brown thorax, a banded amber-and-dark-brown abdomen, tiny translucent wings folded along its back, short antennae, and a softly blurred skin-toned background. +train_34061.png A small, fuzzy yellow-orange bee with subtle dark banding on its rounded abdomen and slightly translucent wings folded over its back, shown in an oblique top-down pose with legs gripping a bright green, softly blurred leaf surface. +train_34169.png A fuzzy black-and-yellow bumblebee, seen from a slight top-side angle with translucent wings tucked back, clings to a bright magenta-pink flower head against a soft, out-of-focus green background, its dense yellow thoracic fuzz and darker banded abdomen still discernible despite the low resolution. +train_34185.png A small, low-resolution, cartoon-style bee with glossy bright-yellow and thick black horizontal stripes, a rounded head with simple dark eyes and two short antennae, translucent pale-blue upward wings and a tiny pointed stinger, shown in a three-quarter frontal pose against a soft yellow circular halo background, with smooth shiny surfaces and slightly pixelated edges. +train_34256.png A fuzzy yellow‑orange and black‑banded bee captured in a close three-quarter side view, perched on a small magenta flower petal with translucent wings folded along its back, visible antennae and legs, and dense hairs on its thorax and abdomen, set against a soft, out-of-focus green‑brown background. +train_34323.png A small, fuzzy bee with warm yellow‑orange and dark brown banding on a rounded abdomen and a darker head, shown in a slightly angled dorsal-side view with folded translucent wings and legs tucked beneath, perched against an out-of-focus warm brown background. +train_34509.png A small fuzzy bee with alternating black and yellow bands on a rounded, hairy body, shown in a three-quarter dorsal view clinging to a pale, blurred background, its short translucent wings, tiny antennae and legs faintly visible despite the low resolution. +train_34629.png A small, fuzzy black-and-yellow bee shown in side profile perched on a bright orange-yellow flower, its dark striped abdomen, fuzzy thorax and faint translucent wings visible against a blurred warm-toned background. +train_34768.png A glossy, rounded bee with bright lemon-yellow and deep black horizontal bands and tiny antennae shown in a three-quarter frontal pose with small translucent bluish wings raised, perched against a soft, out-of-focus green leaf background — its smooth reflective texture and bold striping are the clearest details despite the low resolution. +train_34796.png Small metallic green-blue bee with a subtly iridescent, slightly fuzzy thorax and a darker, faintly banded abdomen, perched at an angle head-first on a vivid orange-red flower petal with translucent folded wings and tiny legs gripping the curved surface against a softly blurred warm background. +train_34872.png A small, fuzzy bee with dense yellow-and-black banding and a rounded, hairy abdomen, short antennae and translucent folded wings visible from a slightly elevated front-left viewpoint, perched on a smooth pale pink-beige background, with its distinct striping and coarse hair texture discernible despite the low image resolution. +train_34950.png A fuzzy black-and-yellow bee viewed from a slightly top-front angle, perched on the orange-yellow central disk of a daisy-like flower, its hairy thorax and banded abdomen visible with semi-translucent veined wings and pollen-dusted hind legs against a warm, out-of-focus orange background. +train_34991.png Top-down view of a small, fuzzy yellow‑orange bee with dark brown transverse bands on a rounded abdomen, faint semi‑translucent folded wings and tiny legs, perched on a textured green leaf background. +train_34992.png A slightly angled top-down view of a small, fuzzy bumblebee with a velvety black head and thorax and alternating bright yellow and black banded abdomen, translucent folded wings and tiny black legs gripping a mottled green leaf with pale veins in the blurred background. +train_35001.png A fuzzy black-and-yellow bee photographed from a slightly top-down, angled side view, its velvety thorax and banded abdomen showing pale yellow stripes and fine hairs, translucent folded wings and dark legs visible as it perches against a smooth, bright orange blurred background. +train_35025.png Perched at a slight oblique top‑down angle on the orange daisy‑like flower center, the bee appears as a compact, diagonally oriented insect with fuzzy golden‑yellow and black banded abdomen, a hairy thorax, translucent veined wings folded over its back and pollen‑dusted legs against the warm orange bloom and softly blurred green background. +train_35141.png A close-up, low-resolution top-down three-quarter view of a small, compact bee with a fuzzy golden-yellow thorax, a darker glossy black banded abdomen, translucent folded wings and orange legs resting on a pale beige, slightly textured surface. +train_35185.png A close-up, side-on macro of a small bee showing a fuzzy golden-brown thorax and bold black-and-yellow banded abdomen, translucent veined wings folded along its back, short antennae and legs gripping a pale green/yellow bud while the insect is posed diagonally against a warm, softly blurred orange background. +train_35216.png Close-up oblique top-side view of a fuzzy bumblebee with dense black hair and a bright yellow banded abdomen, translucent slightly iridescent wings folded over its back as it clings to a magenta flower petal against a soft, out-of-focus green foliage background, with coarse hairs and the distinct yellow abdominal band still visible despite the low resolution. +train_35217.png A small, stylized bee with a glossy yellow-and-black banded oval body, tiny black head and antennae, and translucent pale wings held slightly raised in a three-quarter top view, rendered with smooth, shiny texture and prominent round black eyes, centered against a warm orange–red gradient background with soft bokeh highlights. +train_35544.png A small, fuzzy black-and-yellow bee with a distinctly banded abdomen and translucent, slightly iridescent wings is shown in an oblique top-side view as it clings with dark legs to a vivid yellow-orange blossom, the low-resolution image emphasizing the bee's dense, velvet-like thorax texture and silhouette against a warm, soft-focus background. +train_35613.png A close-up, slightly top-front view of a small, fuzzy bee with dense yellow-and-black banded thorax and abdomen, translucent wings folded along its back and dark legs clutching a bright pink flower, the fine hairs and striping visible against a soft, out-of-focus green background despite the low resolution. +train_35784.png Close-up three-quarter side view of a small, fuzzy bee with a golden-yellow, hairy thorax and a darker, banded abdomen, translucent folded wings and dark legs gripping a pale pinkish-beige surface against a softly blurred green-beige background. +train_35800.png A close-up, slightly oblique top-down view shows a small, fuzzy bee with a shiny black head and thorax and a single orange-yellow band across its velvety black abdomen, translucent wings folded back and dark legs gripping a vivid magenta flower petal against a soft, out-of-focus pink background. +train_36254.png A small, fuzzy orange-brown bee with a darker head and subtle banding, seen in profile clinging to the edge of a bright green leaf with translucent folded wings and visible antennae and legs against an out-of-focus green background. +train_36267.png A small, orange-brown, slightly fuzzy bee with a darker head and faint darker banding on the abdomen is shown in an oblique top-down view, perched diagonally on a bright green leaf with translucent folded wings and thin dark legs gripping the visible leaf vein against a softly blurred green background. +train_36354.png A low-resolution, three-quarter side-view shows a small bee perched on a vivid orange surface with a fuzzy golden-brown thorax, a darker glossy abdomen with faint pale banding, translucent veined wings folded back, slender hairy legs tucked beneath, and a soft, out-of-focus warm orange background. +train_36474.png A side-on close-up of a small fuzzy bee perched on a thin dark twig, showing warm brown-orange and black banded abdomen and densely hairy thorax, translucent folded wings and a dark glossy compound eye against a smooth, out-of-focus warm brown/orange background. +train_36545.png A small, top-down view of a compact bee-like insect with a fuzzy orange-yellow thorax and a darker brown, subtly banded rounded abdomen, tiny dark head and indistinct folded wings, perched or resting and centered against a uniform warm reddish‑orange blurred background, with the alternating body stripes and overall rounded silhouette still discernible despite the low resolution. +train_36596.png A low-resolution, side-profile view of a small fuzzy yellow-and-black bee perched on a pale flower bud, its densely hairy thorax and banded abdomen visible with translucent, slightly veined wings folded back and legs tucked beneath against a warm, golden-brown blurred background. +train_36737.png A small fuzzy bee with alternating black and yellow bands and translucent folded wings is shown from a slightly oblique dorsal view, perched diagonally on a richly saturated golden-orange, velvety flower petal with soft shadowing and a blurred background, its compact striped abdomen, thoracic fuzz, and tiny legs still discernible despite the low resolution. +train_36786.png A plump, fuzzy yellow-and-black bee seen in a three-quarter top view perched on a vivid pink flower petal, with translucent folded wings, noticeable fine hairs and a contrasting dark abdominal band standing out against the blurred red-pink floral background. +train_36903.png A fuzzy golden-yellow and black-banded bee, seen from a slightly oblique top-down view as it perches head-down on a vivid purple flower, shows a velvety thorax, striped abdomen, translucent folded wings and pollen-dusted legs against a blurred green-and-purple background. +train_36968.png A small, fuzzy bee with a dark (black) thorax and yellow-striped abdomen, translucent veined wings folded over its back, and short antennae and spindly legs clinging in a slightly top-down, angled pose to a bright pink flower petal background, the thorax covered in dense yellowish hairs visible despite the low resolution. +train_36992.png A small, fuzzy bee is seen in a slightly elevated three-quarter/top-down view, showing a warm orange-brown thorax and alternating dark brown-to-black banded abdomen, translucent folded wings and short antennae, perched on a smooth light-brown surface against a neutral beige background. +train_37106.png A small, low-resolution golden-brown bee with a fuzzy, banded abdomen and darker thorax, tiny translucent wings held slightly raised in a three-quarter top-side pose against a dark nearly black background, its short antennae and spindly legs visible as pixelated dark accents. +train_37226.png A small, fuzzy bee with a golden-yellow thorax and alternating glossy black bands on its abdomen is shown in a three-quarter side view, perched with translucent, veined wings folded over its back and tiny legs gripping a pale surface against a soft, out-of-focus green background. +train_37269.png A small, plump bee with a densely fuzzy golden‑orange thorax and a darker, banded abdomen is shown in a close, slightly top‑side view resting on a pale beige/wooden surface, with translucent folded wings and tiny dark head and legs visible despite the low resolution. +train_37295.png A small, fuzzy orange-yellow bee seen from a slightly top-side diagonal viewpoint, showing a plump, banded abdomen and darker head and legs with translucent folded wings, perched on a bright green leaf against a soft, out-of-focus green background with a hint of pink. +train_37309.png A small, fuzzy bumblebee with dense golden-yellow and black banding on a rounded abdomen, shown at a slight top-front angle with semi-translucent wings partially spread and legs gripping a vivid magenta flower, its woolly thorax and dark head contrasting against a soft-focus purple-pink background. +train_37346.png A small, fuzzy bumblebee with yellow and black banded abdomen and a brownish, densely haired thorax is shown in a close, slightly top‑side diagonal view with translucent veined wings folded along its back and legs tucked beneath, resting on a pale surface against a blurred warm skin‑toned background. +train_37581.png Close-up, slightly top-side angled view of a small bee with a golden-yellow, fuzzy thorax and abdomen marked by alternating dark black bands, translucent folded wings and tiny antennae visible, perched against a softly blurred green leafy background. +train_37621.png A low-resolution, slightly pixelated three-quarter top-front view of a small, fuzzy bee with a warm brown-orange, hairy thorax, a darker, slightly banded abdomen, translucent folded wings and splayed legs, set against a plain white background so the coarse hairs and contrasting head-abdomen coloration remain visible. +train_37670.png A small fuzzy yellow-and-black banded bee with a hairy thorax and folded translucent wings is perched in three-quarter profile on a rough brown twig or stem, its dark legs and short antennae visible against a softly blurred green foliage background. +train_37679.png A small bee with a glossy dark-brown to black, slightly fuzzy thorax and a subtly banded amber-black abdomen, shown in profile perched on the tip of a human fingertip with translucent, veined wings folded over its back and spindly legs visible against a soft, out-of-focus bright blue sky background with a few pale highlights. +train_37838.png The small bee appears as a fuzzy golden-yellow and black-striped insect viewed from a slight top-down angle, with translucent folded wings, tiny antennae and a rounded, hairy thorax visible against a bright white, slightly textured background casting a soft gray shadow. +train_37842.png A fuzzy black-and-yellow bee viewed from a slightly elevated three-quarter top angle, perched with folded translucent wings and bristly legs on a pale surface against a soft out-of-focus teal background, its dark head, yellow thoracic band and alternating abdominal stripes visible despite the low resolution. +train_37905.png A close-up, slightly top-down view of a small, fuzzy yellow-and-black bee with bold alternating stripes, a dense hairy thorax, folded translucent wings and dark legs, perched on a bright green leaf against a soft, blurred green background, with the banding and hairy texture still discernible despite the low resolution. +train_38001.png A small, fuzzy black-and-yellow bee is captured in a close, slightly angled side/top view perched on a bright pink flower petal, its translucent wings folded along a slightly glossy, banded abdomen with visible legs and antennae against a softly blurred magenta background. +train_38111.png A slightly angled top-down view of a small, fuzzy bee with a warm golden-yellow thorax and alternating black-and-yellow striped abdomen, translucent folded wings and dark legs clinging to a thin brown twig against a softly blurred green-brown background. +train_38144.png A small, fuzzy golden-yellow-and-black bee is seen from a top-side angle perched diagonally on a soft pink flower petal, its dense hairy thorax and darker striped abdomen visible with translucent folded wings and tiny legs clutching the petal against a blurred pink-orange background. +train_38304.png A small fuzzy bee with alternating yellow and black bands on its abdomen and a darker, hairy thorax is viewed from a slightly top-front angle with translucent wings folded back and legs gripping a warm orange-brown textured surface, the low-resolution image still showing the banded pattern, fuzzy body texture, and wing outlines against the uniform background. +train_38340.png A small bumblebee-like insect with a dense orange-yellow fuzzy thorax and a darker, banded abdomen, shown in a three-quarter side view clinging to a bright magenta flower petal with its semi-translucent wings folded along its back, set against a soft, out-of-focus green background, the stout, hairy body and contrasting color bands remaining discernible despite the low resolution. +train_38409.png Top-down view of a small fuzzy bee perched on a pink flower, showing bright yellow and black banding with a slightly orange-tinted thorax, dense hairs, translucent folded wings and dark legs against a soft, out-of-focus green background. +train_38520.png A small, plump bee with a fuzzy golden‑brown thorax and alternating black and yellowish abdominal bands, faint translucent wings held close to its back and stubby legs tucked underneath, seen from a slightly dorsal/oblique viewpoint as it perches on a warm orange‑beige blurred background (probably a flower petal), with the banding and overall hairy texture still discernible despite the low resolution. +train_38670.png A close-up three-quarter side view of a small bee perched on a bright green leaf, showing a dense golden-orange fuzzy thorax, a darker brown-black banded glossy abdomen, semi-translucent folded wings, a prominent dark compound eye and forward-pointing antennae, set against blurred green foliage. +train_38739.png A small, fuzzy bee with a yellow-and-black banded abdomen and pale translucent wings is seen from a slight overhead angle as it perches on a warm reddish-brown, slightly mottled surface, the image showing notable hairlike texture on the thorax and dark legs despite the low resolution. +train_38845.png A fuzzy golden-yellow bee with distinct black abdominal bands and translucent, veined wings is shown in a close-up three-quarter side view as it perches on a bright yellow flower petal, its hairy thorax, short antennae and striped abdomen visible against a soft, out-of-focus yellow-green background. +train_38848.png Top-down view of a small bee perched on a warm orange petal, its densely fuzzy golden-yellow thorax and distinct black-banded abdomen contrasting with translucent, folded wings and short antennae against a softly textured floral background. +train_38888.png A small, fuzzy bumblebee with dense golden-yellow and black banded fur is shown in a close-up three-quarter/dorsal view clinging to a bright orange-yellow flower petal, its rounded, velvety thorax and striped abdomen and faint translucent wings still discernible despite the low resolution. +train_38990.png A low-resolution three-quarter view of a plump, fuzzy bee with dense yellow-and-black banded hairs, a dark glossy head and abdomen, translucent folded wings and stout legs gripping a glossy green leaf against a soft, blurred green background. +train_39127.png A small, compact bee with a velvety amber-brown body and a slightly darker head, faint translucent wings folded along its back and short dark legs clinging to the edge of a bright green leaf, seen from a close, slightly top‑down angle against a softly blurred green background. +train_39285.png A small, fuzzy bee shown in a slightly angled top-down pose with an orange-brown, velvety thorax and abdomen marked by darker transverse banding, faint translucent wings folded against its back and tiny dark legs tucked beneath, set against a softly blurred, warm orange background that resembles a flower petal. +train_39418.png A small, fuzzy yellow-and-black bee captured in an oblique dorsal-side view, perched with its head buried in a bright magenta blossom so its hair-covered golden thorax, alternating dark-striped abdomen and folded translucent wings and legs gripping the petal are visible against a soft, out-of-focus green background. +train_39512.png A small, fuzzy orange-brown bee viewed from a slightly top-front angle, with a rounded abdomen showing alternating dark brown bands, a hairy golden thorax, short antennae, translucent folded wings and splayed legs resting on a pale beige surface with a soft shadow beneath. +train_39685.png A close-up, slightly diagonal top-side view of a small, fuzzy bee with dense golden-orange hair, contrasting black banded abdomen and glossy dark legs, translucent folded wings and short antennae, perched on vivid magenta flower petals against a soft, blurred pink background. +train_39698.png A low-resolution close-up shows a small, fuzzy bee with a bright yellow band near the front and a contrasting black, slightly glossy abdomen, translucent folded wings and fine hairs visible along its body in an oblique top-down pose resting on a green leaf against a soft, out-of-focus grassy background. +train_39806.png A small, fuzzy orange-brown bee viewed from a slightly top-down angle, perched on a sunlit, weathered wooden surface—its dense, velvety thoracic hairs, a darker central abdominal band, faint translucent wings folded along the back and compact legs tucked beneath are visible despite the low resolution. +train_39901.png Top-down view of a fuzzy black-and-yellow bee with a pale yellow thoracic band and a narrower yellow stripe on the abdomen, translucent folded wings and dark legs gripping a small bright magenta flower against a soft, out-of-focus green background. +train_40008.png Top-down close-up of a small, fuzzy golden-orange bee with a dark head and faint darker abdominal banding, translucent folded wings and coarse hairs visible, perched head-down and clinging to vivid magenta-pink clustered flowers against a soft, blurred pink background. +train_40401.png A three-quarter dorsal view shows the bee perched on a purple flower petal, its fuzzy golden-yellow thorax and glossy dark abdomen with faint pale banding, translucent veined wings tucked along its back, short antennae and dark legs visible despite the low resolution, set against a soft, out-of-focus violet and green background. +train_40425.png A fuzzy golden-yellow-and-black bee, shown in a three-quarter dorsal/profile view perched on the edge of a bright green leaf with its legs gripping the surface, displays alternating abdominal bands, a densely hairy thorax, folded translucent wings and short antennae against a soft, out-of-focus green foliage background. +train_40665.png A close-up, slightly angled top-side view of a small, fuzzy bee with an orange-brown thorax and dark black abdomen showing a faint pale band, translucent folded wings and stubby legs clinging to a glossy green leaf against a soft, out-of-focus green background. +train_40694.png A slightly top-down view of a small fuzzy bee with a rounded black body and muted yellow-orange banding, short translucent wings folded along its back, tiny dark legs and antennae, perched on a vivid green leaf with a soft, out-of-focus grassy background. +train_40740.png A small, fuzzy yellow-and-black bee shown from a slightly elevated side angle, its golden, hairy thorax and a single dark abdominal band visible with translucent folded wings and tucked legs as it perches diagonally on a blurred green leaf/grassy background with soft bokeh. +train_40780.png A small, fuzzy bee viewed from a slightly angled dorsal perspective, showing a dark brown thorax and orange-yellow banded, hairy abdomen with translucent folded wings and tiny legs tucked beneath, resting on a smooth pale/white background. +train_40809.png A fuzzy yellow-and-black banded bee captured in a three-quarter top-down view, perched with folded translucent wings and tucked legs on a pale green surface against a soft, out-of-focus green background, its dark head and dense thoracic hairs and alternating abdominal bands visible despite the low resolution. +train_40819.png Small fuzzy bee with dense golden-yellow thoracic hair and a darker banded abdomen, shown in a slightly top-side diagonal perched pose with translucent wings and legs visible against a uniformly bright green blurred leaf background. +train_40842.png A small, fuzzy bee with broad yellow-and-black banding is captured in a three-quarter dorsal pose perched on a vivid magenta flower petal, its translucent, slightly veined wings folded back over a rounded, pollen-dusted thorax and dark legs tucked beneath, set against a softly blurred green background. +train_41015.png A close three-quarter top-down view of a small bee with a fuzzy golden-yellow thorax and black-banded orange abdomen, translucent veined wings folded over its back and short antennae, perched on a pink cluster flower against a softly blurred green background. +train_41136.png Side‑view of a small bee perched on a green plant bud, showing a fuzzy yellow-and-black banded thorax and abdomen, semi‑transparent folded wings with faint venation, short antennae and dark legs against a soft, out-of-focus green background. +train_41245.png A small, fuzzy, burnt-orange bee with a darker black head and faint darker banding on its abdomen is seen from a slightly overhead oblique angle, clinging with visible dark legs to a warm reddish‑tan (terracotta) textured surface with hints of folded translucent wings along its back despite the low resolution. +train_41529.png A small, fuzzy golden-orange bee is shown in a close, slightly top-front oblique view, perched on a bright white surface with soft shadowing, its compact thorax covered in dense tawny hairs, a darker banded abdomen and translucent, folded wings visible along the back, and short antennae and tucked legs discernible despite the low resolution. +train_41569.png A close-up, slightly top-front three-quarter view of a small bee with a fuzzy golden-orange thorax and abdomen marked by a dark band, translucent folded wings and short antennae, perched on a bright orange surface against an out-of-focus dark background. +train_41647.png A close-up three-quarter side view shows a small bee with a densely fuzzy golden-brown thorax and darker, subtly banded abdomen, translucent slightly iridescent wings folded over its back, and pollen-dusted legs as it perches on a bright orange-red flower petal against a soft, out-of-focus green background. +train_41886.png A small, cartoonish bee rendered in bright yellow with thick black horizontal stripes and a softly textured, slightly glossy body, shown in a three-quarter top-front view with two pale translucent blue-white wings and tiny black antennae, set against a warm orange blurred circular background that suggests a flower, with bold round eyes and a faint shadow beneath it visible despite the low resolution. +train_42055.png A side-on view of a small bumblebee-like insect with dense, fuzzy yellow and black banded thorax and abdomen, translucent, slightly folded wings and dark legs gripping the edge of a pale green leaf against a soft-focused green background. +train_42085.png A small, fuzzy bee photographed from slightly above and angled toward its right side, with a velvety black thorax and subtle pale-yellow banding on a glossy dark abdomen, translucent folded wings and spindly legs clinging to a vividly saturated red–pink flower petal with a soft, out-of-focus crimson background. +train_42130.png A slightly angled top-down view of a low-resolution, pixelated yellow-and-black striped bee with a fuzzy bright-yellow thorax and abdomen, translucent pale wings splayed outward, small dark antennae and legs visible, set against a warm orange-yellow sunburst background. +train_42459.png A fuzzy, golden-brown and black-striped bee captured in an oblique top-side close-up, perched with its head down in a bright magenta flower, its hairy thorax and legs and translucent, veined wings visible against a soft, out-of-focus backdrop of pink petals and green blur. +train_42605.png Plump, fuzzy bee seen from a slightly top‑down angle with a golden‑yellow, hairy thorax and darker brown‑black banded abdomen, translucent folded wings and dark legs tucked beneath, perched on a smooth pale cream surface casting a faint shadow. +train_42630.png A close-up, slightly oblique top-down view of a fuzzy golden-yellow and black banded bee with a velvety thorax and translucent veined wings, clinging with its legs to vivid magenta-pink flower petals against a softly blurred green background. +train_42632.png Top‑down, slightly oblique view of a small bumblebee with a velvety golden‑orange, densely hairy thorax and a darker, banded abdomen, translucent folded wings and spindly legs clutching a bright yellow/orange flower center against a soft green blurred background, with hairiness, segmental banding and wing outline visible despite the low resolution. +train_42684.png Oblique side/top view of a small fuzzy bee with a warm orange‑brown, velvety thorax and abdomen contrasted by narrow black bands, translucent folded wings, short antennae and spindly legs gripping a dark green‑black blurred background that suggests foliage or shadow. +train_42735.png Perched in a slightly angled top-down view on a bright magenta flower petal, the small bee displays a fuzzy golden-yellow thorax, a black-and-yellow banded abdomen, translucent folded wings and dark legs against a soft, out-of-focus pink background. +train_42748.png A fuzzy bee with dense yellow-golden and black banding and a faint orange tint at the rear abdomen, shown in three-quarter dorsal view perched on the edge of a pale, weathered wooden plank with translucent folded wings and dark splayed legs, set against a soft, out-of-focus green background, with its rounded hairy thorax and contrasting dark head visible despite the low resolution. +train_42831.png A small bee is shown in a three-quarter side view with a fuzzy gray thorax and banded orange‑brown and dark brown abdomen, translucent veined wings folded along its back, thin antennae and hairy legs visible as it perches against a soft, out-of-focus pale blue/white background. +train_42919.png A small bee is shown in a side–three-quarter profile, its fuzzy golden-yellow and black banded thorax and abdomen contrasting with translucent, slightly iridescent wings and a darker head as it perches against a saturated, out-of-focus yellow background, with coarse hair texture and bold stripe pattern still discernible despite the low resolution. +train_43139.png A small, fuzzy bee with a dark (nearly black) thorax and warm yellow‑orange banded abdomen, translucent folded wings and dark legs gripping a bright green leaf, shown in a slightly oblique top‑down view against a soft, out‑of‑focus green background. +train_43188.png A small, fuzzy bee with a golden-brown, hairy thorax and a banded amber-and-dark abdomen sits perched on a human palm, wings folded along its back and legs tucked beneath it, photographed close-up against a softly blurred green background. +train_43299.png A small bee with a fuzzy golden-yellow thorax and darker, banded abdomen covered in fine pale hairs, translucent veined wings folded along its back and dark legs visible, shown in a close, slightly front-left dorsal view perched on a glossy orange surface against an out-of-focus dark green leafy background. +train_43355.png A small, fuzzy golden-yellow bee with a darker rear band and translucent wings folded back, shown in lateral view perched on the edge of a bright green leaf with its legs gripping the surface against a soft-focus green background. +train_43542.png A small, fuzzy yellow-and-black striped bee with semi-transparent veined wings is seen from a slightly top-front view hunched into the bright yellow disk of a pink daisy-like flower, its hair-covered body and alternating dark bands visible against a soft-focus green background and blurred pink petals. +train_43568.png A small, fuzzy bee captured in an angled top-side (three-quarter) view, showing a hairy golden-yellow to orange thorax and alternating dark brown–black banded abdomen with faint translucent wings folded over its back and short antennae, set against a soft, out-of-focus pale green and white background. +train_43666.png A fuzzy bumblebee with golden-yellow hairs and a dark, banded abdomen is shown in a slightly top-down, three-quarter pose perched on a vivid red‑orange background (flower petal), its coarse thoracic fuzz, folded translucent wings and stout legs discernible despite the low resolution. +train_43704.png A close-up, low-resolution image of a small, fuzzy black-and-yellow bee shown in a three-quarter side view with translucent, veined wings partially extended and gripping a vivid orange-yellow blurred flower center, its thorax densely hairy and abdomen displaying alternating dark and golden bands against the warm, out-of-focus background. +train_43734.png A small, fuzzy golden-brown bee with distinct black abdominal bands and translucent, slightly iridescent wings is shown in a dorsal three-quarter view perched on a pale green leaf, its hairy thorax, dark eyes and legs visible against a soft, out-of-focus green background. +train_43783.png A small fuzzy bee with a dark, nearly black thorax and abdomen showing faint yellow banding, translucent folded wings and short antennae, is seen from a slightly above oblique view as it perches head‑down into the saturated orange‑yellow flower center, its hairy body lightly dusted with pollen against a blurred warm background. +train_43822.png Close-up, slightly top-down view of a small bee with a rounded, fuzzy golden-yellow body banded with distinct black stripes, translucent folded wings and tiny legs visible against a soft, out-of-focus yellow background that suggests it is perched on a flower. +train_43921.png A fuzzy, golden-orange and black-banded bee shown in a slightly oblique top-down view, perched on a dark reddish-brown wooden surface with folded translucent wings, a dark head and legs, and a soft, hairy abdomen visible despite the low resolution. +train_44035.png A fuzzy brown-and-yellow striped bee shown in a close top–three-quarter view clinging to bright orange-yellow petals, its hairy thorax, banded abdomen and slightly translucent veined wings visible against the blurred warm-toned background. +train_44421.png Despite the low resolution, the insect appears as a small, fuzzy bee with yellow‑gold hairs and dark brown‑black abdominal banding, a slightly glossy segmented abdomen and translucent folded wings, shown in side‑profile gripping human skin (thumb) with legs splayed and head angled downward against a soft, out‑of‑focus pale skin background. +train_44426.png A small, fuzzy bee seen from a slightly oblique top view, perched on a vivid magenta flower against a blurred turquoise-green background, with a dark head, a yellow‑black furry thorax, a banded dark abdomen, translucent veined wings held partly open and fine hairy legs tucked beneath. +train_44477.png A fuzzy golden-orange bee captured in a close three-quarter top view, its translucent wings and dark head with short antennae visible as it clings to a bright yellow flower center, the densely hairy, pollen-dusted thorax and faint black banding on the abdomen distinguishable against a soft green-and-yellow blurred background. +train_44515.png A small yellow-and-black fuzzy bumblebee is shown at a slight top-side angle, perched diagonally on a bright pink clustered flower with translucent folded wings, a dense yellow thoracic fuzz and a distinct black band on the abdomen visible against a soft green blurred background. +train_44592.png The bee appears in an oblique side view perched on a dark rim, showing a fuzzy golden‑orange thorax and abdomen with faint darker banding, translucent folded wings and thin legs, set against a soft, out‑of‑focus bright green background. +train_44824.png A low-resolution close-up of a small bee viewed from a slight top-front oblique angle, showing a fuzzy golden-brown thorax with fine hairs, a darker brown-to-black banded abdomen, translucent veined wings folded over the back, short antennae and spindly legs visible against a plain white background. +train_44888.png A small, top‑down view of a compact bee with a glossy dark brown head and thorax, a fuzzy yellow‑orange banded abdomen, translucent pale wings folded along its back and thin dark legs, perched diagonally on a warm reddish‑orange, slightly mottled background that resembles a flower petal or fabric. +train_44934.png A low-resolution side/three-quarter view shows a small, fuzzy bee with golden-yellow and black banded abdomen, a brown, hairy thorax and semi-translucent wings folded along its back as it perches on a pale pink flower, set against a soft out-of-focus green background, with the banded abdomen, dense thoracic hairs and wing venation still discernible despite the blur. +train_44989.png A close, slightly top-down view of a small fuzzy orange-yellow bee with a darker, almost black head and a single dark band across its abdomen, wings folded back and body covered in fine hairs as it perches on a bright pink flower with soft, out-of-focus green foliage behind it. +train_44994.png A close-up, slightly top-down view of a small fuzzy black-and-yellow bee perched on a bright yellow flower, showing dense golden hairs and distinct black banding on its rounded abdomen, translucent folded wings, short antennae and legs against a soft warm yellow bokeh background. +train_45078.png Seen from a slightly oblique top view, the fuzzy bee has an amber-golden, hair-covered thorax and a darker, banded abdomen with translucent grayish wings folded over its back, short antennae and legs gripping a vividly saturated orange flower petal against a soft, blurred orange background. +train_45296.png A plump, glossy yellow-orange bee viewed in a three-quarter side pose as if hovering, with two translucent white wings raised, bold black horizontal stripes across its rounded body, tiny antennae and a small pointed stinger, set against a warm orange gradient circular background with the stripes and wing shapes still discernible despite the low resolution. +train_45387.png Oblique top-down view of a small bee perched on a yellow-orange flower, its densely fuzzy golden-yellow thorax contrasting with a darker brown-black, subtly banded abdomen, translucent veined wings held slightly open and glossy dark legs and antennae visible against an overexposed white background. +train_45507.png A close-up, slightly side-on view of a small, fuzzy golden-yellow bee with dense tawny hairs, a couple of darker brown–black abdominal bands, tucked legs and faint translucent wings, perched on a uniformly bright yellow–orange petal background with details softened by low resolution. +train_45669.png A small, fuzzy yellow‑orange bee with a darker, subtly banded abdomen and translucent folded wings is shown in a three-quarter side/clinging pose on a glossy green leaf, its compact body and short dark legs standing out against the softly blurred green background. +train_46016.png A small, fuzzy bee with conspicuous yellow-and-black banding on a hairy thorax and abdomen, shown in a three-quarter side view with translucent folded wings and dark legs clinging to a pale lavender petal against a soft green leafy background. +train_46057.png A small, stylized bee with a glossy, fuzzy orange-yellow thorax and alternating black abdominal stripes, translucent pale-gray wings held raised in a three-quarter top-down pose, short curved antennae and tiny golden legs visible against a plain white background with a faint drop shadow. +train_46065.png A small fuzzy bee with a warm orange-brown thorax and black-striped abdomen, translucent folded wings and visible legs and antennae in a slightly oblique side-top pose as it perches on a bright orange flower petal against a smooth teal-blue out-of-focus background. +train_46135.png A plump, fuzzy bumblebee viewed from a slightly oblique top-down angle, its bright golden-yellow thorax and abdomen showing a prominent black mid-band and dark legs with translucent folded wings, perched against a soft-focus green leafy background. +train_46365.png A small bee viewed from a slightly oblique top-down angle, its fuzzy golden‑brown thorax and black‑banded abdomen, dark head and tucked legs visible, with translucent folded wings, resting on a pale, speckled gray‑white rough surface. +train_46471.png A small, fuzzy yellow-orange and black banded bee shown in a three-quarter dorsal view with translucent wings held close to its body, stout hairy thorax, dark legs and segmented abdomen visible against a blurred green leafy background despite the low resolution. +train_46485.png A low-resolution, top‑three-quarter view of a small, fuzzy orange‑brown bee with a dark head and faint black banding on its rounded abdomen, translucent wings folded back and short legs visible as it perches on a pale, slightly textured background. +train_46636.png A small fuzzy bee with a warm golden-orange thorax and a darker, banded black-brown abdomen, seen from a slightly elevated three-quarter dorsal angle as it perches with legs gripping a pale yellow-green bloom, its dense hairy texture, faint translucent wings and blurred green foliage background visible despite the low resolution. +train_46706.png A small, fuzzy bee with golden-yellow and black striping, a noticeably hairy thorax and faint translucent wings, shown in a three-quarter side view as it perches on a bright yellow flower against a soft green background. +train_46819.png A small, fuzzy bee with golden-yellow hairs and contrasting dark brown-to-black banding along its rounded abdomen, seen in a slightly oblique top-side pose with semi-translucent folded wings and short dark antennae, perched against a soft, out-of-focus pinkish-purple background that suggests a flower petal. +train_46823.png A small, golden-brown, fuzzy bee with a dark-brown and amber banded abdomen and translucent veined wings is shown in a close three-quarter view clinging with spindly legs to a pale pink blossom, set against a soft, out-of-focus green-and-pink floral background, with its fuzzy thorax, antennae and abdominal striping visible despite the low resolution. +train_46904.png A close-up side-view of a small bee perched on a narrow green stem, showing a fuzzy golden-yellow thorax and alternating black-and-yellow banded abdomen, translucent veined wings folded along its back, short antennae and dark legs gripping the plant against a soft, out-of-focus deep green background. +train_46913.png A low-resolution close-up shows a side-view bee perched on a pale pink flower, its fuzzy golden-yellow thorax and alternating black abdominal bands, translucent folded wings and short antennae visible against a softly blurred green background. +train_47011.png A small bee seen in a slightly top-down, three-quarter view with a fuzzy yellow‑brown thorax and darker, banded abdomen, semi‑translucent folded wings and spindly legs visible, perched on a pale gray textured surface next to a dark curved object (possibly a shoe or shadow). +train_47083.png A small, fuzzy bee viewed from a slightly top-front angle, with a dark, nearly black thorax and a warm orange-brown head/abdomen tip, short antennae and translucent folded wings, perched on a bright green leaf with a softly blurred green background. +train_47426.png A small, stout bee with a dense, golden-orange fuzzy thorax and a darker, black-banded abdomen seen in an oblique top-down pose with translucent, folded wings and legs tucked while perched on a pale, out-of-focus flower background. +train_47575.png A fuzzy, golden-yellow and black-banded bee shown in a close, slightly angled top-side view with fine hairs and translucent folded wings visible as it clings to a pale pink-white flower against a blurred green-brown background. +train_47600.png A small, fuzzy bee seen from a slight top-side angle and perched diagonally on a pale pink flower, its golden-yellow, orange-brown thorax and abdomen showing a darker posterior band, translucent veined wings folded over the back, a tiny black head with short antennae and legs gripping the petal against a soft, out-of-focus pink floral background. +train_47940.png Top-down view of a small bee resting on a pale cream surface, showing a fuzzy dark brown thorax and black abdomen with a narrow orange-brown band, translucent folded wings along its back, short legs tucked underneath, and a faint shadow beneath. +train_48240.png Bright orange-yellow, fuzzy bee shown in a close three-quarter top-down view perched on a vivid magenta-pink flower petal, its dark-banded abdomen, translucent folded wings and tiny legs gripping the surface visible despite the low resolution. +train_48305.png A top-down, slightly angled view of a small, fuzzy bee with a densely hairy dark thorax, alternating dark brown–black and bright yellow bands on the abdomen, translucent veined wings folded back, short antennae and legs gripping a vibrant yellow flower petal against an out-of-focus warm yellow background. +train_48351.png A small, plump bee with a warm orange-yellow, slightly fuzzy body bearing two dark brown transverse bands and a darker head, shown in a side–three-quarter pose with a tiny translucent wing visible, perched against a bright blue background with hints of green and deeper blue. +train_48404.png A small, fuzzy bee with a warm yellow-orange thorax and darker brown banded abdomen is shown in a three-quarter dorsal-angled close-up, perched on a pale translucent green surface with folded, slightly glossy wings and indistinct hairs visible despite pixelation, against a softly blurred green-and-white background. +train_48405.png A close-up three-quarter side view of a small bee perched on a warm orange petal, showing dense yellow-orange thoracic fuzz, a darker banded abdomen, folded translucent wings and a compact, rounded silhouette against a soft out-of-focus orange background. +train_48447.png A small yellow-and-black banded bee with a fuzzy, slightly mottled thorax and abdomen shown in a slight top-down angled pose with glossy, semi-translucent wings folded over its back, large dark eyes and short antennae perceptible despite the low resolution, all set against a warm golden-orange blurred background with a soft halo. +train_48537.png A small, fuzzy bee with a golden-orange, hairy thorax and a darker, subtly banded abdomen, short antennae and translucent wings, shown in a close, slightly top‑down pose as it clings to vivid magenta‑pink flower petals with the floral background softly blurred. +train_48560.png A small, fuzzy yellow-and-black bee shown in a three-quarter side view, perched on a pale cream flower bud with translucent, folded wings, dense matte hairs and a dark abdominal band visible against a soft, out-of-focus green background. +train_48589.png A top-down close-up of a small bee-like insect with a dark brown to black elongated body, a slightly tawny, fuzzy thorax and faint translucent wings folded over its back, resting on a coarse light-beige/peach textured surface that casts a small soft shadow. +train_48798.png A small, fuzzy amber-brown bee seen in a three-quarter dorsal view with translucent, slightly iridescent wings folded over a darker, banded abdomen, splayed dark legs and short antennae, resting on a stark white background. +train_48913.png The bee appears in a slightly oblique top-down pose perched on a vivid, featureless blue background, showing a compact, densely fuzzy orange-brown body with a darker central blackish band and head, faint translucent wing outlines, and short antennae and legs visible despite the low resolution. +train_48919.png A small, fuzzy bee with golden-yellow hairs and dark transverse bands on its abdomen is shown from a slightly oblique top view, wings held back and legs clutching the vivid magenta flower center against a soft-focus purple-pink petal background. +train_48945.png Oblique top-side view of a small bee with a glossy black abdomen, a vivid orange-red thorax and partly translucent orange wings, its slightly fuzzy body and segmented legs clinging to a dark, rough surface against a shadowed out-of-focus background. +train_48981.png Oblique top-side view of a small, fuzzy golden-yellow and black-banded bee with translucent, slightly iridescent wings folded over its back and visible antennae and legs gripping a bright yellow petal, set against a soft, out-of-focus green background. +train_49107.png Plump, fuzzy bee with golden-orange dense hairs and subtle darker banding, shown in a close top–three-quarter view perched on a pale white flower with translucent wings folded over its back and dark head and legs visible against a soft, out-of-focus green background. +train_49143.png A close three-quarter dorsal view of a small fuzzy bee with a glossy black head and thorax and an orange-yellow abdomen banded by dark stripes, translucent bluish wings folded over its back as it perches on a round bright yellow‑orange flower head against a deep blue background. +train_49329.png A small bee with dense golden-yellow fuzz and a darker brown‑black banded abdomen, captured in a close 3/4 top-side view perched on a bright magenta flower with translucent folded wings and dark legs tucked beneath, set against a soft, out-of-focus green and pink floral background. +train_49352.png A small, fuzzy bee appears in a slightly top‑down close view, its dense hairs showing yellow and black banding with a rusty‑orange rump, a dark head and legs and folded translucent wings, perched on green foliage against a soft, out‑of‑focus green background. +train_49592.png Slightly angled top-down view of a small, fuzzy bee with a warm orange–golden, velvety body showing subtle darker banding, translucent wings folded at its sides and dark head and legs, clinging diagonally to a round, densely textured bright yellow–orange flower center against a uniformly warm yellow background. +train_49856.png A small stylized bee with a bright yellow, slightly mottled body marked by two bold black bands, a rounded black head with short antennae and tiny dark eyes, pale translucent wings folded back and stubby legs visible in a three-quarter frontal pose against a flat muted brick‑red square background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/beetle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/beetle_descriptions.txt new file mode 100644 index 0000000..8bc2736 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/beetle_descriptions.txt @@ -0,0 +1,500 @@ +train_00178.png A small, glossy, metallic emerald-green hemispherical beetle perched on a pale fingertip, shown in a slightly oblique dorsal view revealing smooth, iridescent elytra with a faint central seam, a darker head and tucked legs, against a softly blurred white/pink background. +train_00290.png A small, glossy dark brown to nearly black oval beetle seen from a top-down view, its smooth, slightly reflective elytra showing faint irregular lighter speckling and a rounded outline with legs partially tucked beneath as it rests on a pale tan, slightly textured background. +train_00309.png A small, oval, reddish-brown beetle with smooth, slightly glossy elytra showing a faint midline seam, seen in a shallow top-down pose with splayed dark legs and short antennae against a plain white background. +train_00377.png A small, oval amber-reddish beetle with subtly glossy, finely speckled elytra seen from a dorsal-angled view (head pointing upper-left) with legs mostly tucked under, perched on a pale, granular beige background (skin- or fabric-like) and casting a faint shadow. +train_00393.png A small, oval beetle with glossy, metallic green-black elytra and a faint central ridge, shown in a slightly oblique dorsal view with legs largely tucked beneath and short antennae visible, resting on a coarse, light-brown sandy gravel surface scattered with tiny pebbles. +train_00420.png Bright metallic chartreuse-green beetle with a glossy, smooth oval shell seen from a slightly oblique dorsal view facing upward, its long thin antennae and small brown legs splayed beneath casting a soft shadow on a plain pale cream background, with faint segmentation of the pronotum and elytra visible despite the low resolution. +train_00482.png A small, glossy orange-red beetle seen from a slightly oblique dorsal view, with smooth, domed elytra split by a thin darker suture, a black head with short antennae, visible black legs splayed beneath it, and a soft shadow on a pale beige background. +train_00606.png A small, dome-shaped beetle shown from above with smooth, glossy dark greenish-black elytra bearing a faint central suture and subtle iridescent sheen, legs mostly tucked beneath, sitting centered on a light gray, slightly speckled textured surface. +train_00805.png A small, oval beetle viewed from above with smooth, glossy metallic teal-green elytra showing a clear central suture and faint iridescent highlights, legs partly tucked beneath and casting a soft shadow on a pale, slightly textured cream background. +train_00961.png A small, compact oval beetle seen from a slightly dorsal-angled view, its glossy metallic emerald-green elytra with fine punctate texture and a visible central suture reflecting bright specular highlights, an orange-brown pronotum and dark legs tucked beneath, perched on a soft-focus green leaf with a prominent midrib in the background. +train_01015.png A small glossy orange-red oval beetle seen from a slightly oblique top-down view, with a smooth, domed elytral surface, a contrasting small black head and legs, casting a soft shadow while resting on a plain off-white slightly textured background with faint pencil marks. +train_01035.png A small, glossy metallic cobalt-blue beetle with smooth, slightly iridescent elytra and a darker head is shown in a dorsal-oblique view, perched on a pale, subtly speckled surface that casts a soft shadow, with a faint central suture and tiny legs/antennae discernible despite the low resolution. +train_01054.png A tiny, glossy, bright red, slightly domed beetle with a darker head and a faint black spot, shown from above clinging to the smooth pale-green surface of a leaf with soft, out-of-focus green background. +train_01134.png A small, glossy black beetle with a faint metallic green sheen and smooth, slightly convex elytra is shown from a dorsal viewpoint on a pale, slightly textured surface (paper) casting a shadow, its oval body outline, narrow pronotum, short forward-pointing antennae and splayed legs discernible despite the low resolution. +train_01219.png A small, glossy, dome-shaped beetle with smooth orangey-brown elytra showing a faint darker central area, seen in a near-dorsal, slightly left-tilted pose with its black head and legs partly visible, resting on a pale, softly textured paper-like background. +train_01321.png A small, oval, dome-shaped beetle seen from a near top-down view with smooth, glossy reddish-orange elytra showing faint darker mottling and a subtle central suture, a darker head and tucked legs, resting on a pale, slightly textured background that casts a soft shadow. +train_01409.png A small, glossy iridescent green beetle seen from a slightly top‑angled dorsal view, its smooth, reflective elytra showing faint longitudinal sheen and a rounded profile with tiny dark legs at the edges, perched on a rough brown, wood‑like substrate speckled with lighter granules. +train_01517.png A small, metallic turquoise-green beetle is shown from a dorsal three-quarter view with glossy, slightly iridescent oval elytra bearing a faint darker midline, a small dark head and short antennae, legs partially tucked underneath and casting a subtle shadow on a pale, slightly textured paper-like background. +train_01592.png Glossy dark brown, nearly oval beetle seen from above with a faint midline suture and a slightly paler head region, perched on a coarse pale-gray concrete or stone surface and casting a small shadow to its lower-right. +train_01936.png A small, glossy iridescent dark green–black beetle is shown from a top-down view resting on a bright turquoise background, its smooth, dome-shaped elytra reflecting light with a faint central suture and tiny legs partly tucked underneath. +train_01981.png Glossy, jet-black, slightly metallic oval beetle with smooth, convex elytra and a faint central suture, viewed dorsally and angled slightly to the right as it rests on coarse brown sandy soil with small grit and leaf debris, its head and pronotum visible while legs are mostly tucked beneath. +train_02149.png A small beetle with glossy red-orange domed elytra bearing irregular black splotches and a thin central seam, shown in a slightly oblique dorsal view perched on a textured green leaf with its small black head and short dark legs faintly visible despite the low resolution. +train_02161.png A glossy, dome-shaped orange-red beetle seen from above with smooth, slightly reflective elytra, a small dark head and narrow black margin with a faint central darker spot, legs mostly tucked beneath, perched on a blurred bright green leaf background. +train_02164.png Top-down view of a small, metallic emerald-green beetle with glossy, slightly iridescent elytra divided by a central seam and showing a faint punctate texture, black head and splayed dark legs, perched at a slight angle on a blurred warm orange petal-like background. +train_02204.png A small, dome-shaped beetle viewed dorsally, with smooth, glossy orange-brown elytra showing a faint central suture and subtle darker margin, a small dark head and legs partially visible beneath, perched on a blurred pale beige/sandy background. +train_02356.png A small, smooth, glossy dark brown-black oval beetle with a subtle metallic green iridescent sheen along the elytral edges, shown in dorsal view resting flat on a coarse beige, sandy-wood substrate with its convex body and tiny legs partly visible. +train_02386.png A small glossy red-orange ladybird viewed from a slightly oblique dorsal/top-down angle, showing a smooth, shiny domed elytra with distinct black spots and a central seam, a contrasting black head and short legs peeking underneath, resting on a plain white background with a faint shadow. +train_02443.png Top-down dorsal view of a small, glossy red-orange domed beetle with smooth, reflective elytra bearing a few distinct black spots and a dark head/pronotum, resting on a pale, slightly textured surface with an orange smudge nearby and a faint shadow beneath. +train_02497.png A small, glossy dark brown-to-black oval beetle viewed from a slightly elevated dorsal angle, its smooth, shiny elytra showing a faint central suture and a tiny pale specular highlight, perched as if crawling on a pale bluish‑gray granular surface with short legs and antennae barely visible. +train_03087.png A small, glossy, dark brown-to-black oval beetle shown from a dorsal, slightly angled viewpoint with convex, smooth elytra that catch the light and show a faint midline suture and slightly lighter rusty-brown margins, legs mostly tucked beneath, resting on a pale beige, fibrous textured surface that looks like paper or fabric. +train_03152.png A small, domed beetle seen from a top/three-quarter dorsal view, with shiny metallic dark green to black elytra that show a smooth, slightly punctate texture and a subtle orange spot near the anterior, perched on a bright green, softly blurred leaf background with light reflecting along the elytral margins. +train_03224.png A small, glossy dark brown to near-black oval beetle shown in an angled dorsal view, perched on a skin-toned surface (likely a finger) with smooth, hard elytra catching highlights, short reddish-brown legs and antennae partially visible, and the blurred close-up background revealing skin texture for scale. +train_03237.png A small, narrow oval beetle viewed from above with a dark metallic green-blue sheen and subtly iridescent, smooth elytra edged in rusty-orange, perched at a slight angle on a rough brown twig against a blurred green-leaf background, the elytral midline seam and compact rounded pronotum faintly visible despite low resolution. +train_03239.png Small, glossy oval beetle seen from a slightly oblique dorsal view, its smooth dark brown-to-black elytra bearing a subtle greenish metallic sheen and faint longitudinal striations, head partly retracted with short antennae and splayed legs, resting on a pale, slightly textured cream background with a soft shadow. +train_03257.png A small, glossy metallic blue-green oval beetle shown from a slightly dorsal-angled top view, its smooth iridescent elytra with a faint central seam and strong specular highlight, legs largely tucked beneath, resting on a pale beige, slightly textured flat surface. +train_03285.png A close top-down view of a small, glossy black oval beetle with smooth, reflective elytra and slightly darker head tucked beneath the pronotum, legs splayed beneath its body and tiny dust specks on its shell, resting on wrinkled white fabric bordered by a bright blue edge. +train_03375.png A small, glossy, bright-orange domed beetle seen in an oblique dorsal view with a slightly forward-pointing black head and antenna, smooth shiny elytra showing faint dark speckling, perched on a plain white surface that casts a soft shadow to its right, revealing its rounded shape and contrasting dark legs despite the low resolution. +train_03431.png A small, glossy bright-red, dome-shaped beetle seen dorsally and centered on a vivid green leaf, its smooth elytra showing a specular highlight and a darker central spot with tiny dark legs visible at the edges against a softly blurred green background. +train_03476.png A small, bright orange-red oval beetle seen from a slightly angled dorsal view with glossy, smooth elytra, a contrasting black head and legs, a faint dark median line and tiny darker markings, perched on a pale, neutral background casting a soft shadow. +train_03618.png A small, glossy, nearly black oval beetle seen dorsally at a slight angle, with smooth, reflective elytra showing faint reddish-orange hints along the edges and subtle punctation, perched on a mottled green-brown mossy surface with its legs partly tucked beneath. +train_03723.png A small, glossy dome-shaped reddish-orange beetle with smooth, shiny elytra and a darker head, seen in a slight top-down/three-quarter pose perched on a pale pink, skin-like background, with faint dark markings and tiny legs visible despite the low resolution. +train_03810.png A small glossy orange-red beetle viewed dorsally at a slight angle, its smooth convex elytra and contrasting black head and short legs visible as it sits on a featureless white surface casting a soft shadow. +train_03846.png A small, oval, metallic turquoise-green beetle viewed dorsally at a slight angle, its smooth, glossy elytra showing a faint central suture and darker head and margins, perched on a pale, slightly bluish flat surface with a soft shadow beneath. +train_03857.png A tiny, glossy emerald-green beetle shown in a slightly oblique dorsal view, with smooth metallic elytra bearing a faint central seam, a darker head and thin dark legs partly visible beneath, perched against a pale neutral background with a short dark twig or shadow beneath it. +train_03963.png A small, glossy dark brown to nearly black oval beetle shown in dorsal view with smooth, slightly reflective elytra bordered by a thinner lighter-brown margin and a faint central ridge, its legs mostly tucked under a compact body as it sits on a coarse beige sandy/gravel substrate dotted with tiny pale pebbles. +train_04000.png An iridescent, glossy bluish-black oval beetle seen in a dorsal‑oblique view perched on the edge of a bright green leaf, its smooth, slightly ridged elytra catching the light while small legs and antennae grip the surface against a soft, out‑of‑focus green-and-amber foliage background. +train_04085.png A small, metallic turquoise-green beetle seen in a slightly top-down/three-quarter dorsal pose with glossy, smooth elytra and a darker head and thin antennae visible, resting on a pale, sandy-textured background with tiny pebbles and a soft shadow beneath. +train_04235.png A small, oval, dark brown beetle shown in a slightly dorsal/top-down view resting on coarse tan sand and tiny pebbles, with mildly glossy, finely speckled elytra bearing faint longitudinal ridging and short legs partially visible beneath its body. +train_04275.png A small, oval beetle with glossy reddish-brown, slightly striated elytra and a darker head is shown in a dorsal-angled, diagonal pose with splayed legs visible, resting on a plain white background that casts a soft shadow. +train_04498.png A small, glossy dome-shaped orange-red beetle viewed from a slightly oblique dorsal angle, its smooth elytra showing several distinct black spots and a dark head with pale lateral markings, perched on a bright green leaf against a softly blurred green background. +train_04572.png A small, glossy, metallic blue-green oval beetle viewed dorsally and slightly diagonal, its smooth, iridescent dome-shaped elytra catching highlights, with tiny legs and short antennae faintly visible and casting a soft shadow on a pale, grainy beige surface speckled with tiny debris. +train_04823.png A small, oval, metallic turquoise-green beetle with glossy, smooth elytra and a faint central seam, shown in a slightly oblique dorsal view as it clings to a coarse gray‑blue stone surface, its rounded domed body, tiny dark head and legs, and slight lateral curvature visible despite the low resolution. +train_04884.png A small, dome-shaped beetle with smooth, glossy dark brown to black elytra showing a subtle bluish-green sheen, viewed from a slightly oblique dorsal angle with its short legs and antennae tucked beneath, perched on a plain white surface that casts a soft shadow. +train_04966.png A small, glossy orange-red oval beetle shown in a dorsal top-down pose with smooth, slightly domed elytra bearing faint darker markings, a contrasting black head and pronotum with partially visible legs, resting on a pale, slightly textured cream surface. +train_04978.png A small, glossy red-orange dome-shaped beetle shown from a slightly oblique dorsal view, with smooth shiny elytra bearing several distinct black spots, a contrasting black head and legs, perched on a bright green veined leaf against a softly blurred green background. +train_05212.png A small glossy dark brown-to-black oval beetle seen from a slightly top-down angle, with smooth, lustrous elytra split by a faint central seam and tiny legs partly visible beneath, resting on rough light-gray speckled concrete next to the edge of a worn brown-and-blue shoe. +train_05279.png A small, oval, dome-shaped beetle with glossy dark brown to bronze elytra marked by faint longitudinal ridges and sparse pale speckling, seen dorsally as it clings to a pale textured fingertip with legs tucked under and short antennae barely visible. +train_05440.png A small, glossy orange-red dome-shaped beetle shown in a slightly oblique top-front view, its smooth shiny elytra bearing a small darker spot, with tiny black legs and antennae tucked beneath, set against a plain white background with a faint shadow. +train_05516.png A small, glossy beetle viewed from above with smooth black elytra edged in bright orange-red, perched in a slightly hunched pose on the textured golden-yellow center of a flower, its tiny antennae and legs visible against the warm background. +train_05718.png A small glossy, dark metallic bluish-black beetle seen from above and slightly angled, its smooth rounded elytra and tiny head with short antennae visible as it sits on a pale, slightly textured paper surface with a blurred teal-blue border and faint printed markings. +train_05819.png A glossy, dome-shaped dark brown to nearly black beetle with a narrow orangey-red rim around its smooth elytra, shown in a slightly top-down dorsal pose resting on a light, rough gray surface with a soft shadow beneath and a faint midline seam visible. +train_05995.png Top-down view of a small, iridescent emerald-green beetle with smooth, glossy, slightly metallic oval elytra and a darker head, perched on a pale beige, slightly textured background with a soft shadow and tiny specks, legs mostly tucked under and a faint longitudinal sheen visible despite the low resolution. +train_06138.png A small metallic emerald-green beetle with smooth, glossy elytra showing faint darker longitudinal markings, viewed from a dorsal–angled perspective with legs splayed and antennae extended, resting on a white surface near a thin green border and casting a soft shadow. +train_06367.png A small, glossy, dome-shaped red-orange beetle with distinct small black spots and a contrasting black head and legs is shown from a slight top-side (three-quarter) view as it clings to a green leaf surface, set against a soft-focus green foliage background. +train_06399.png A small, glossy metallic turquoise-green oval beetle shown in a slightly angled dorsal view with a smooth, reflective elytral surface and a faint central suture, perched on a pale beige, slightly speckled background. +train_06561.png A small, dome-shaped glossy red-orange beetle with faint darker speckling and a tiny black head and legs is shown from a top-down view resting on a pale beige textured surface beside a thin dark vertical line. +train_06616.png A small glossy black beetle shown in dorsal view with smooth, slightly rounded elytra, long curved antennae extended forward and slender legs splayed outward, resting on a plain white background with a faint gray shadow beneath. +train_06679.png A small, dome-shaped beetle with smooth, glossy orange-red elytra bearing a faint darker smudge near the front, seen from a slight dorsal angle with a dark head and tiny legs tucked beneath, perched against a bright green, softly blurred leaf background. +train_06792.png A small glossy red-orange beetle with a smooth, domed elytra showing a dark midline and faint black markings and a contrasting black head and legs, seen in a dorsal three-quarter view as it perches on a bright green leaf against a softly blurred green background. +train_06856.png A small, oval, glossy dark brown-to-black beetle shown from above at a slight angle, its smooth reflective elytra with a faint reddish-brown sheen and visible midline seam, resting on a coarse beige sandy/soil background. +train_07002.png Glossy, dome-shaped orange-red beetle shown in a slightly oblique dorsal view, with smooth, shiny elytra bearing a darker irregular central blotch and faint black head and leg outlines, perched on a flat warm-red background with a soft shadow beneath. +train_07110.png A small beetle with a glossy reddish-brown, smooth elytra and a darker head is shown in a dorsal three-quarter pose with long segmented antennae and splayed legs resting on a plain pale/cream background, the elongated oval body and narrower pronotum with faint longitudinal sheen visible despite the low resolution. +train_07173.png A small glossy red-orange ladybird beetle viewed from a slightly angled dorsal perspective, its rounded elytra showing bold black spots and a faint central suture, a black head with short antennae and tiny black legs visible, set against a warm orange circular background with a thin white rim. +train_07226.png A small, glossy metallic blue-black beetle shown from a slightly oblique dorsal view with smooth, elongated oval elytra exhibiting a faint central suture and tiny legs partly visible beneath, resting on a plain white surface that casts a soft shadow and shows a few smudged marks nearby. +train_07237.png A small, glossy orange-red dome-shaped beetle with distinct black markings on its smooth, reflective elytra and a dark head, shown in a three-quarter dorsal view as it perches on a human fingertip against a softly blurred neutral background with short legs visible beneath. +train_07376.png A small iridescent blue-green beetle with a glossy, slightly punctate/scale-like elytral texture and a pronounced curved snout is shown in a dorsal three-quarter view with legs splayed and antennae extended, positioned diagonally on a plain white background with a faint shadow. +train_07420.png A small, oval metallic-green beetle viewed from above, its smooth glossy elytra showing a faint central suture and iridescent sheen, with tiny dark legs and a slight shadow beneath, positioned on a uniformly bright turquoise-blue textured background. +train_07672.png A small beetle appears as a glossy amber-orange elongated oval seen from a slightly angled dorsal view, with a darker rounded head and tiny black legs visible, resting on a coarse pink‑red fabric background where its smooth, slightly reflective elytra show a faint central seam. +train_07686.png A small, oval, glossy golden‑orange beetle seen from a slightly oblique dorsal view, its smooth, domed elytra showing a pale cream patch and faint darker margins with tiny surface specks, perched on rough gray concrete scattered with fine grit and small shadows while legs and head remain only partially visible. +train_07910.png A small, glossy amber-brown oval beetle shown from a slightly oblique dorsal view, with smooth shiny elytra and a darker head/thorax, short legs partly tucked beneath, a faint midline seam and tiny shadow visible against a plain pale background despite the low resolution. +train_07938.png A small, glossy reddish-brown oval beetle shown in a near top-down view with smooth, slightly reflective elytra revealing a faint central suture and subtle darker speckling, resting on a pale beige textured surface (paper or fabric) and casting a soft shadow. +train_07978.png A small, glossy, bright orange-red hemispherical beetle viewed in a close-up dorsal three-quarter pose on a plain white surface with a faint shadow, its smooth shiny elytra lacking distinct spots, a tiny dark head and a subtle midline seam visible despite the low resolution. +train_08110.png A small, glossy dark brown-to-black beetle is shown from a slightly dorsal-angled view, its smooth, convex elytra reflecting light with faint longitudinal ridging and fine punctures, short antennae and legs partly visible as it rests on a coarse pale tan rock surface flecked with white lichen. +train_08238.png A small oval, glossy dark-brown beetle with a faint central elytral seam and slightly paler margins is shown dorsally from above, perched with legs tucked on a rough, light-gray stone or concrete surface, its smooth, subtly metallic elytra visible despite the low resolution. +train_08262.png A small, glossy dark brown–black oval beetle viewed from above at a slight angle, its smooth domed elytra showing a faint central suture and tucked legs, perched on a textured white paper/tissue background with visible fibers and soft shadows. +train_08306.png A small, glossy, dark metallic black-green beetle seen from a slightly oblique dorsal (three-quarter) view, perched on a bright lime-green leaf/blade against a blurred grassy background, its smooth shiny elytra showing a faint longitudinal sheen and tiny legs and antennae discernible despite the low resolution. +train_08368.png A small, glossy coral-pink, dome-shaped beetle with a faint central suture and tiny dark head and legs is shown in dorsal view perched on a human fingertip against a pale, out-of-focus background, its smooth elytra catching a soft highlight despite the low resolution. +train_08444.png A small, glossy, metallic emerald-green beetle with rounded, dome-like elytra and a contrasting orange-brown head/pronotum is seen from a slightly angled dorsal view, perched on warm brown, coarse-grained wood with visible grooves and faint shadow and tucked dark legs beneath. +train_08716.png A glossy, oval, dark metallic-black beetle with subtle blue-green iridescence and smooth elytra seen from a slightly oblique dorsal view, legs splayed as it rests on a pale, grainy concrete- or sand-like surface, the body showing a faint central seam and short antennae. +train_08810.png Top-down view of a small, glossy orange-red beetle with smooth, slightly oval elytra and a darker head/thorax, perched at a slight angle on a pale, paper-like background speckled with tiny dark dots and casting a faint shadow, with hints of black legs and antennae visible despite the low resolution. +train_09118.png A small, glossy orange-red ladybird beetle seen from a slightly angled dorsal view, its smooth rounded elytra marked by several black spots and a central seam, with a black head and tiny legs visible as it perches on a bright green leaf against a soft pale background. +train_09226.png Top-down view of a small, oval beetle with a glossy metallic emerald-green exoskeleton showing a subtle iridescent sheen and faint longitudinal ridges, legs and short antennae partly visible as it sits on a plain white surface casting a soft shadow. +train_09229.png A small dome-shaped beetle viewed dorsally at a slight angle, its smooth glossy iridescent green-blue elytra reflecting light with a faint longitudinal sheen and a darker pronotum, tiny orange-brown legs partially visible beneath, all resting on a fibrous white paper-towel–like background. +train_09501.png A small, dome-shaped beetle viewed from a three-quarter dorsal angle perched on a plain white surface, showing smooth, glossy reddish-orange elytra, a contrasting matte black head and legs, faint antennae and a soft shadow beneath it. +train_09625.png Top-down view of a small, oval, glossy dark brown-to-black beetle with smooth, slightly reflective elytra divided by a faint central seam, splayed segmented legs and short antennae visible, resting on a light beige, slightly textured background casting a soft shadow. +train_09765.png A small, glossy dark brown to black oval beetle with faintly segmented elytra, short antennae and splayed legs, seen from a slightly oblique top view resting on a coarse tan sandy substrate scattered with tiny grit and pebbles. +train_09779.png A small, glossy orange-red, dome-shaped beetle shown in a near-top view on a pale, slightly textured background, with a visible central elytral suture, a darker head, tiny legs at the sides and several small black round spots on the elytra. +train_09816.png A small, glossy metallic green-bronze, dome-shaped beetle seen from a slightly angled dorsal view perched on a pale fingertip, its smooth reflective elytra with faint longitudinal ridging and dark clasping legs visible against the softly blurred skin-tone background. +train_09862.png A glossy, dome-shaped bright red beetle seen from above with symmetrical small black spots and a tiny black head at the anterior, its reflective elytra showing a white highlight as it sits centered against a uniform dark background. +train_10072.png A small glossy dark-brown elongated oval beetle shown dorsally with a pronounced central suture down the elytra, faint tan mottling and subtle longitudinal ridges, head and short antennae partially visible and legs tucked beneath, perched on a bright blue textured surface. +train_10190.png An oval, dome-shaped beetle seen from a slightly oblique dorsal view, its smooth, highly reflective iridescent green elytra with a faint central suture and tiny tucked legs contrasting against a coarse dark-gray, grainy surface speckled with lighter grit. +train_10271.png A small, oval beetle with smooth, glossy dark brown to nearly black elytra and a slightly lighter reddish-brown head, shown in a slightly oblique dorsal pose on a plain white background with its legs tucked beneath and a subtle central seam and faint mottling on the wing covers visible despite the low resolution. +train_10272.png A small, glossy orange-red dome-shaped beetle seen from a slightly upper dorsal angle, its smooth elytra bearing a few distinct black spots and reflective highlights, perched on the textured vein of a green leaf with a softly blurred leafy background. +train_10376.png A glossy, oval orange-brown beetle viewed from a slightly oblique dorsal angle, showing a darker central suture and black head with short antennae, its smooth, shiny elytra reflecting light while legs appear tucked beneath, perched on a pale bluish, slightly textured surface with a faint shadow. +train_10407.png A small, glossy orange-brown beetle seen from a slightly dorsal-left viewpoint, with smooth, shiny oval elytra bearing a faint central darker line and a contrasting dark head/pronotum, its legs tucked under, perched on a mottled beige/tan granular surface with tiny dark specks. +train_10590.png A small, glossy dark brown–black oval beetle seen from above, clinging to a light tan, slightly textured surface (tile or paper) with a smooth shiny elytral shell showing a subtle midline seam, faint reflections and legs partly visible beneath. +train_10729.png A small, glossy jet-black, dome-shaped beetle is shown from a near-dorsal viewpoint, its smooth rounded elytra with a faint central suture and tiny legs/antennae partially visible beneath, resting on a plain off-white textured surface speckled with a few dark dots. +train_10755.png A small glossy reddish‑orange beetle with an elongated oval body and slightly darker head, photographed from above with thin spindly legs and short antennae splayed outward on a plain white background casting a faint shadow. +train_10929.png A small, glossy black oval beetle is shown from a top-down dorsal viewpoint, slightly tilted on a plain pale background, its smooth reflective elytra revealing a faint central suture and the blurred outlines of short legs and antennae with a soft shadow beneath. +train_11197.png A small, pale cream‑yellow, smooth glossy oval beetle seen from above with a slightly darker head and legs, short antennae and a faint central elytral seam, resting on coarse gray gravel/stone substrate. +train_11540.png A small beetle seen from a slightly elevated dorsal angle has a smooth, glossy reddish-brown domed elytra with a central seam and faint darker mottling, a contrasting darker head and splayed black legs, and is perched on a plain light-gray surface casting a soft shadow beneath. +train_11548.png A small glossy dark blue-black beetle shown in an oblique dorsal view, its smooth, slightly metallic oval elytra with a faint central suture and tiny legs and short antennae splayed outward, resting on a plain white paper background with a faint ink mark. +train_11628.png A small, glossy orange-brown, dome-shaped beetle seen from above and slightly angled to the left, its smooth elytra showing a faint central suture with a darker head and six spindly legs splayed outward against a plain white surface with a nearby thin hair and tiny dark speck. +train_11767.png Dorsal, top-down view of a small, dome-shaped beetle with a smooth glossy dark brown to nearly black central elytra sharply bordered by a vivid orange-red rim and a faint midline suture, perched on a textured green leaf or mossy background with legs mostly tucked beneath its body. +train_11952.png A small, oval, dark glossy brown-black beetle viewed dorsally with smooth, slightly convex elytra meeting in a faint central seam, a rounded pronotum partially obscuring the head and short antennae visible, resting on a pale sandy or stone surface scattered with tiny gravel and white flecks. +train_12124.png A small, glossy, iridescent green-gold oval beetle shown from a slightly dorsal three-quarter view, its smooth, reflective elytra with a faint longitudinal sheen and darker head visible as it perches on a pale, rough pebble or skin-like surface against a blurred green background. +train_12134.png A small, oval beetle shown in a slight dorsal-angled pose with smooth, glossy metallic blue-green to black elytra catching highlights, a faint central suture and tiny legs visible as it rests on a pale, slightly textured concrete or sandy background. +train_12202.png A small, dome-shaped beetle captured from a slightly angled dorsal view exhibiting smooth, glossy metallic blue-green iridescent elytra with a faint central seam and darker head, its tiny legs visible as it sits on coarse tan woven fabric that provides scale and texture. +train_12293.png A small, bright red, glossy, dome-shaped beetle with smooth elytra bearing distinct round black spots and a narrow dark suture, shown in a slightly elevated dorsal-three-quarter pose as it perches on a human fingertip against a soft, out-of-focus pale background. +train_12448.png A small, glossy black beetle with a smooth, slightly reflective exoskeleton, shown in a dorsal/top-down pose with long thin antennae extended forward and legs splayed to the sides on a plain white background, revealing a narrow elongated oval body and faintly segmented elytra visible despite pixelation. +train_12773.png A small, glossy reddish-brown oval beetle photographed dorsally while resting on a pale, skin-like background, showing smooth, unpatterned elytra, a slightly darker head, and a subtle central highlight. +train_12780.png A glossy, dome-shaped orange-red beetle with smooth, reflective elytra bearing small dark spots, a contrasting black head and legs and short antennae, shown in a top-front three-quarter pose as it clings to a pale, softly blurred beige background, its shiny texture and basic markings visible despite low resolution. +train_13097.png A small, glossy dark brown–black oval beetle seen from a slightly oblique dorsal view, its smooth, reflective elytra with a faint central suture and tiny legs visible beneath, perched on a bright red, slightly textured background. +train_13162.png A small, glossy orange-red oval beetle shown in a slightly oblique dorsal view with smooth, reflective elytra bearing a faint central suture, a contrasting black head and legs, and casting a tiny shadow on a pale gray-white flat background. +train_13177.png A small, glossy, nearly black to dark brown oval beetle shown from a dorsal, slightly angled viewpoint with smooth, reflective elytra and faintly visible legs, perched on a rough, bright orange, granular surface that looks like a petal or pollen-covered substrate. +train_13286.png A tiny, glossy metallic emerald-green oval beetle viewed dorsally and perched on a bright green leaf, its smooth iridescent elytra showing a faint central suture and rounded profile with legs and head mostly tucked beneath against a softly blurred green background. +train_13297.png A small, glossy, metallic emerald-green oval beetle viewed dorsally, its smooth slightly convex elytra with a faint central seam and a darker head/legs tucked underneath clearly visible despite low resolution, resting on a coarse pink fabric background with visible fibers. +train_13436.png A small, glossy reddish-brown oval beetle viewed dorsally at a slight angle, its smooth, dome-shaped elytra showing a faint central suture and light reflections with a darker head partly visible and legs tucked underneath, resting on a pale, slightly textured beige surface that casts a soft shadow. +train_13476.png A small, glossy dark-brown to nearly black elongated beetle viewed from a dorsal three-quarter angle, its smooth, shiny elytra showing faint longitudinal segment lines and short antennae, clinging to a pale, textured background that appears to be skin or fabric. +train_13928.png A top-down view of a small, elongated beetle with a glossy dark brown–black, slightly iridescent smooth body and narrow head and legs just visible, perched on bright, finely textured green moss or grass. +train_13962.png A top-down view of a small, glossy cherry-red beetle with a smooth, domed elytra split by a thin central suture, a contrasting matte black head and tiny dark legs tucked underneath, set against a uniform deep black background. +train_13985.png A small metallic turquoise-green beetle shown from a dorsal three-quarter viewpoint, its smooth glossy oval elytra catching bright highlights, darker head and pronotum and tiny black legs gripping a thin brown twig set against a uniform cyan-blue background. +train_13986.png A small, smooth, glossy dark brown–black oval beetle with a faint central seam and slight iridescent sheen, shown in a close oblique dorsal view with legs splayed and a pale head, resting on a coarse, light gray–tan concrete surface speckled with tiny dark grit. +train_14013.png A small, glossy orange-red, dome-shaped beetle with a dark brown–black head and faint darker markings on its smooth, shiny elytra is shown in a close-up, slightly angled dorsal view clinging to human skin, with blurred blue and white fabric in the background. +train_14352.png A small, glossy, domed orange-red beetle viewed from above and slightly angled, with smooth shiny elytra bearing several distinct round black spots, a tiny dark head and short black legs, resting on a plain white background. +train_14470.png A small, glossy metallic green-blue beetle seen from above as it clings diagonally to a thin twig, its smooth, iridescent elytra reflecting light with faint longitudinal striations, darker head, legs and short antennae visible against a soft, warm brown and blurred green background. +train_14553.png Seen dorsally perched on a bright green leaf, the small oval beetle displays a glossy metallic emerald-green elytra with a bronzy sheen and faint central suture, a slightly darker head and pronotum, smooth reflective texture, and short tucked legs visible at the sides. +train_14678.png A small oval metallic emerald-green beetle shown in dorsal view with smooth glossy elytra and a faint central suture, a darker head and indistinct antennae, perched slightly tilted on a coarse beige sandy/fabric background with scattered dark specks. +train_14701.png A glossy, dome-shaped red-orange beetle with a shiny, slightly speckled texture, a small black head and short antennae, viewed from a top-three-quarter dorsal angle as it sits on a blurred bright green leaf background, showing a faint central elytral seam and darker shadowing under the body despite the low resolution. +train_14762.png A glossy, dome-shaped dark brown-to-black beetle seen from above with a faint central elytral suture and slightly lighter brown margins, perched on a pale blue textured background. +train_14903.png An oval, convex beetle seen from above on a flat pale beige background, with a glossy metallic green-blue exoskeleton that shows faint longitudinal striations on the elytra, the body tilted slightly to the right with legs mostly tucked underneath, a subtle central elytral suture and a small cast shadow beside it. +train_15042.png A small, oval beetle viewed dorsally and slightly angled, with smooth glossy dark brown–black elytra showing a subtle metallic sheen and a faint central suture, short antennae and legs tucked to the sides, photographed against a flat, bright cyan-blue background with soft blur. +train_15097.png A small, glossy metallic blue-green oval beetle viewed dorsally with smooth, reflective elytra and a faint central seam, its dark legs splayed on coarse tan sand studded with tiny pebbles and an out-of-focus bright blue background suggesting water. +train_15099.png A small, metallic cobalt-blue, slightly oval beetle photographed from above showing a glossy, smooth elytral surface with a darker head and tiny orange-brown legs, resting on a pale beige, slightly textured background with a faint shadow to its lower right. +train_15137.png A small, dome-shaped beetle viewed dorsally, with smooth, glossy dark brown-to-black elytra that meet in a faint central seam and show a subtle lighter brown margin at the rear, its head partially tucked under the pronotum and legs mostly beneath the body, resting on a rough, pale beige stone or sandy surface. +train_15202.png Glossy bright red-orange, dome-shaped ladybird with a small black head and a couple of indistinct black spots on the elytra, shown in a slightly oblique top-side view as it clings with tiny dark legs to a narrow green leaf or grass blade against a soft, out-of-focus green background. +train_15238.png A glossy amber-orange elongated oval beetle is shown in dorsal view, its smooth, slightly iridescent elytra with a faint central suture and darker margins contrasting against a pale blue, softly lit background with a subtle shadow beneath, while the darker head and short legs are partly visible. +train_15243.png A dorsal, top-down view of a small, glossy metallic emerald-green oval beetle with smooth, reflective elytra showing faint golden iridescence and a pale central highlight, perched on a textured green leaf with visible veins and fine hairs. +train_15382.png A small, metallic deep-blue beetle seen from a slightly dorsal-angled viewpoint, its glossy, smooth elytra showing a faint central suture and iridescent highlights, dark splayed legs and short antennae visible, all set against a plain light-gray background with a soft shadow beneath. +train_15496.png A small, dome-shaped, glossy turquoise-green beetle with smooth, slightly iridescent elytra and a tiny dark head is shown in a slight top-down, three-quarter view perched on a vivid orange surface with a soft, out-of-focus warm background, its bright specular highlight, faint central seam and tiny dark legs visible despite the low resolution. +train_15591.png A small, glossy dark brown to nearly black oval beetle seen from above with smooth, slightly iridescent elytra showing a faint central suture and rounded rear, perched flat against a pale, rough beige wall speckled with tiny marks, its legs and antennae largely hidden. +train_15631.png A small glossy reddish-brown beetle shown in an angled dorsal view with long spindly legs and segmented antennae splayed outward, a smooth, slightly reflective elytral surface and narrow pronotum visible despite pixelation, set against a plain white background with a faint shadow. +train_15699.png A small, glossy dark brown to near-black oval beetle seen from a slightly angled dorsal view, its smooth, subtly longitudinally ridged elytra and short legs visible as it clings to a coarse, warm-brown wooden surface with visible grain, tiny holes, and scattered light specks. +train_15748.png A centered top-down view of a small, glossy orange-red, dome-shaped beetle with several irregular black spots on smooth elytra, a dark head and tucked legs visible, sitting on a pale coarse beige surface (stone or wood) with a faint shadow beneath. +train_15764.png A small, glossy red-orange dome-shaped beetle seen from a slightly oblique top-down angle, its smooth, reflective elytra showing faint black spots and a darker head and legs, perched on a uniformly warm yellow-orange surface with a soft shadow beneath. +train_15852.png A small, metallic turquoise-green beetle seen from a slightly angled dorsal three-quarter view, with glossy, smooth elytra showing a darker central seam and faint segmenting, short antennae and thin legs splayed outward against a plain white background. +train_15991.png A small, oval, domed beetle viewed slightly obliquely from above with glossy dark brown to nearly black elytra showing a faint central suture and subtle lighter mottling, legs mostly tucked beneath and the head angled toward the upper-left, sitting on a pale, rough cream‑beige speckled background. +train_16029.png A small, glossy, oval beetle with a dark metallic blue‑purple iridescent sheen on smooth elytra, shown in a slightly oblique dorsal view and resting diagonally on a pale, lightly speckled surface that casts a faint shadow. +train_16035.png A small, dark brown to black, slightly glossy elongated oval beetle shown in a dorsal‑oblique view with a narrow pronotum and faintly visible splayed legs and short antennae, resting on a light beige, slightly textured paper‑like background that highlights its compact, tapered body shape. +train_16260.png A small, oval amber-brown beetle seen from a dorsal, slightly top-left angled viewpoint, its smooth glossy elytra showing a faint central suture and subtle darker mottling and sheen, perched against a coarse bluish-gray stone or concrete background. +train_16378.png A small, oval, glossy dark brown-to-black beetle shown from a dorsal/three-quarter view with smooth, slightly convex elytra revealing a faint central suture and lighter brown margins, legs partially tucked beneath, sitting on a pale, slightly textured off-white surface that casts a soft shadow. +train_16463.png A small, glossy bright-orange convex beetle with smooth elytra showing a faint central suture, contrasting black head and legs, viewed from a slightly oblique dorsal (three-quarter) angle while perched on a light-green veined leaf against a soft, out-of-focus green background. +train_16537.png A small, dome-shaped beetle with glossy golden-orange elytra and a faint dark midline seam, a contrasting black head and tiny legs, photographed from a slightly oblique top-down angle on a plain white background, its smooth reflective texture and minor dark speckling visible despite the low resolution. +train_16558.png A small, glossy orange-red oval beetle shown from a slightly angled dorsal view with smooth, shiny elytra and a darker head and legs, perched on a rough, dark gray/black speckled surface that looks like asphalt or fabric. +train_16951.png A small, glossy dark brown to nearly black oval beetle is shown from a top-down view, its smooth, slightly reflective elytra with a faint central suture and subtle lighter rim visible as it rests on a coarse beige/tan textured background (paper or fabric). +train_16968.png A small, glossy, domed beetle viewed from a slightly angled top-down perspective on a plain white background, with smooth, shiny blackish-brown elytra bordered by reddish-brown margins, a faint central seam, and short dark legs partially splayed to the sides. +train_17286.png A small, oval, metallic emerald-green beetle with smooth, glossy, slightly iridescent elytra and a faint central suture, shown in a dorsal, slightly oblique top-down pose on a pale neutral (stone- or dried-leaf-like) background with its darker head/pronotum and tucked legs suggested by tiny shadows. +train_17356.png A small, dome-shaped beetle seen from a slightly elevated top-down angle, with glossy mottled brown-orange elytra showing faint speckling and a fine granular texture, a darker reddish-brown head and pronotum partially visible with short antennae and legs tucked beneath, perched on a pale off-white background casting a soft shadow. +train_17493.png A small, glossy red-orange beetle with a smooth, domed elytra showing subtle dark markings, seen from a dorsal three-quarter view as it clings with its black head and legs to a thin green stem against a softly blurred vivid green vegetation background. +train_17571.png Dorsal-view, low-resolution image of a small, glossy dark teal-black beetle with a slightly metallic sheen, rounded oval elytra showing a faint central seam, short legs and antennae splayed outward, set against a uniform bright turquoise background. +train_17607.png A small, glossy orange-red, domed beetle with multiple distinct black spots on smooth elytra, shown from a slightly oblique top-down viewpoint resting on a bright white surface with a faint shadow and the dark head/pronotum partially visible at the front. +train_17791.png A small glossy orange-brown beetle viewed dorsally, its smooth, hard elytra showing a subtle darker midline and faint longitudinal shading with a slightly tapered rear and a darker head, perched near the edge of a bright green leaf against a soft, out-of-focus green background. +train_17832.png A small, dome-shaped beetle shown in a top-down view with glossy, smooth dark brown to nearly black elytra rimmed by a narrow orange-red edge, its rounded, slightly elongate body and tucked head visible as it sits on a rough, pale gray surface (likely concrete) with a faint shadow beneath. +train_18009.png A small, glossy dark brown to black oval beetle shown from above with smooth, slightly reflective elytra, indistinct head and legs tucked beneath, and a faint shadow on a warm beige, coarse-grained background that looks like paper or wood speckled with tiny darker grains. +train_18111.png Dorsal, nearly top-down view of a small, glossy metallic emerald-green beetle with smooth, slightly iridescent elytra and subtly darker lateral margins, its rounded oval body and partially visible legs casting a soft shadow on a pale cream, slightly textured surface. +train_18207.png A small, oval, dome-shaped beetle seen from a slightly oblique top view with glossy orange-red elytra mottled with darker brown‑black patches, a darker head and pronotum, short antennae and legs tucked beneath, resting on a plain white, paper-like background. +train_18432.png A small, glossy amber-brown beetle with smooth, slightly domed elytra and a darker head is viewed from a slightly oblique dorsal angle, perched on a pale, textured surface (likely stone or dry leaf) with its legs partially tucked beneath the body, a soft shadow to the right, and faint longitudinal shading along the center of the back. +train_18441.png A small beetle with a glossy, metallic green elongated oval body and a darker nearly black head and legs, shown from a slightly oblique dorsal-diagonal viewpoint as it crawls across a coarse beige/tan surface (paper or wood). +train_18513.png A small, metallic emerald-green oval beetle with glossy, slightly striated elytra and a darker head, shown in a three-quarter dorsal view with splayed dark legs, perched on a rough beige surface speckled with grit and a thin twig in the background. +train_18589.png A glossy, dome-shaped yellow-orange beetle seen from a slightly oblique dorsal view, with smooth, reflective elytra bearing two symmetrical dark round spots and a small black head, perched against a blurred green leafy background. +train_18599.png A small, glossy, metallic emerald-green beetle viewed from a slightly oblique top-down angle, its smooth reflective elytra and darker head and splayed black legs visible, resting on a bright, near-white background with a faint shadow beneath. +train_18659.png A small, smooth, glossy, creamy-beige dome-shaped beetle shown in dorsal view resting on a vivid green leaf, its elytra forming a faint darker midline seam with rounded margins and no clearly visible legs or antennae. +train_18677.png A small, glossy reddish-orange, dome-shaped beetle viewed from above at a slight angle, its smooth shiny elytra showing a faint darker central area and tiny specks while it clings to a rough, pale-tan grainy surface with scattered debris and a soft shadow. +train_18878.png A small metallic emerald-green beetle with glossy, slightly iridescent elytra and a darker green head, shown in a three-quarter dorsal view with long slender antennae extended forward and spindly brown legs splayed against a plain white background, the elytra appearing subtly ridged and reflective despite the low resolution. +train_18896.png A small glossy dark brown to nearly black oval beetle seen from a dorsal, slightly oblique viewpoint, its smooth, slightly reflective elytra showing a faint central seam and lighter margins, resting on a warm beige, wood- or paper-like textured surface speckled with tiny dark grains. +train_18920.png A glossy, dome-shaped metallic blue-black beetle seen from above, perched on a blurred green leaf surface, its smooth reflective elytra showing a faint paler rim and the shadowed outline of tucked legs beneath. +train_18989.png A top-down dorsal view of a small, oval, glossy black-brown beetle with smooth, reflective elytra bisected by a faint central seam and subtle longitudinal sheen, legs mostly tucked beneath its dome-shaped body as it rests on a pale, slightly textured surface that casts a soft shadow beneath it. +train_19233.png Dorsal top-down view of a small, glossy, uniformly orange-brown domed beetle with smooth, unmarked elytra, a slightly darker head and tiny dark legs visible beneath it, resting on a plain white background. +train_19272.png A small oval metallic green-bronze beetle shown in a top-down dorsal pose, its smooth glossy elytra with a faint central suture and darker head and legs visible against a coarse reddish-brown granular ground (brick/soil) sprinkled with tiny pale specks. +train_19279.png A small, dome-shaped orange-red beetle seen from a top-down view with smooth, slightly glossy elytra, a darker brown-black head and faint dark spots on each wing cover, perched on a pale, grainy beige surface with a soft shadow beneath. +train_19348.png Top-down view of a small oval beetle with glossy dark brown to nearly black smooth elytra, a slightly lighter brown head/pronotum, faint longitudinal sheen on the shell, legs partly tucked under, sitting on a light gray textured surface speckled with tiny debris. +train_19407.png A small glossy teal-green beetle with a darker head and bright orange legs and antennae is shown in a three-quarter frontal pose on a plain white background, its rounded elytra with a faint midline suture and splayed segmented legs and antennae visible despite the low resolution. +train_19419.png A small beetle shown in a slightly oblique dorsal view with smooth, glossy metallic turquoise-green elytra marked by a faint central seam, a reddish-orange head and legs, and a high-contrast placement on a bright cyan, slightly textured background. +train_19432.png A small metallic emerald-green beetle with a glossy, slightly iridescent and finely textured elytral surface, shown in a near top-down, slightly angled pose with antennae and spindly legs splayed on a plain pale background, its oval body and faint central suture visible despite the low resolution. +train_19549.png A tiny, glossy, dome-shaped orange-red beetle with a faint central seam and darker head and legs is shown in a close-up three-quarter/top view perched on pale skin (fingertip), its smooth reflective elytra catching a bright specular highlight and casting a soft shadow on the background. +train_19960.png A small, glossy, metallic emerald-green beetle with smooth, slightly iridescent rounded elytra and a darker head and legs is shown in an oblique dorsal-to-lateral view clinging to a thin grass stem against a blurred earthy-brown and green grassy background with small dried debris. +train_19980.png A small, glossy orange-red, dome-shaped beetle is shown from a slightly elevated dorsal angle, its smooth, reflective elytra bearing a subtle central darker mark and a contrasting black head and legs, perched on a pale, softly textured surface that casts a faint shadow. +train_20181.png A tiny, glossy metallic green, nearly spherical beetle seen from above on a very dark background, its smooth reflective elytral surface showing a bright specular highlight, a faint central seam and slightly darker rim visible despite the low resolution. +train_20284.png A small, glossy jet-black, dome-shaped beetle seen dorsally with smooth, slightly reflective elytra bisected by a faint central suture, short forward-pointing antennae and splayed legs, positioned on a plain white background with a soft shadow beneath. +train_20355.png A small metallic turquoise-green beetle seen from a slightly dorsal, angled view, with smooth glossy oval elytra showing a faint central seam, darker head and splayed legs, perched on a coarse tan-brown fibrous surface that resembles bark or dried leaf. +train_20361.png Dorsal-view of a small, oval beetle with a glossy, slightly reflective dark brown–black elytra contrasted by a bright orange‑red head and thorax, legs tucked under its body and short antennae visible, perched on a rough gray stone or concrete surface with a tiny green leaf fragment nearby. +train_20475.png A small, glossy dark brown-to-black oval beetle with a subtle bronze iridescent sheen and faint longitudinal striations on the elytra, shown dorsal and slightly angled with legs tucked beneath on a light, slightly textured gray-white background, its rounded elytra, narrower pronotum, and short antennae faintly discernible. +train_20561.png A small, glossy dark brown to black oval beetle shown from above with smooth, slightly reflective elytra, faint segmentation down the middle, legs partly visible splayed beneath it, sitting on a pale, slightly textured background that appears like skin or paper. +train_20569.png A small, glossy dark brown to black beetle with a subtle greenish iridescent sheen and smooth, faintly longitudinally ridged oval elytra is pictured in a near-dorsal, slightly oblique view with legs mostly tucked beneath, resting on a rough light-gray concrete surface speckled with tiny pebbles and a soft shadow beneath. +train_20596.png A small, rounded, glossy dark brown–black beetle seen from above at a slight angle, its smooth, domed elytra showing a bright specular highlight and faint lighter edge, perched on a pale green-yellow blurred plant surface with legs mostly tucked beneath. +train_20722.png A glossy bright-red, dome-shaped beetle with smooth, slightly reflective elytra, a small dark head and faint black markings, shown from a near top-down angle clinging to a blurred green leaf beside a pale stem, with tiny legs and a subtle highlight visible despite low resolution. +train_21212.png A small, oval beetle viewed from above at a slight angle, its smooth, glossy dark brown-to-black elytra with a faint central suture and subtle lighter brown margins, short antennae and tucked legs visible, rests on a warm beige, slightly textured human-skin background casting a soft shadow. +train_21476.png A small, metallic turquoise‑green oval beetle viewed from a slightly dorsal-angled perspective, its smooth glossy elytra showing a faint central suture and indistinct antennae and legs, perched against a dark, shadowy background with a narrow strip of bright green leaf at the edge despite the image's low resolution. +train_21660.png A small, glossy, metallic turquoise‑green oval beetle with smooth, slightly iridescent elytra and a faint darker midline, viewed top‑down at a slight oblique angle as it clings to a pale green‑beige narrow stem against a soft, out‑of‑focus light background, with a darker head and tiny dark legs just discernible despite the low resolution. +train_21694.png A small, glossy, oval reddish-brown beetle captured in a top-down view, its smooth domed elytra and slightly darker head with tiny legs forming a compact silhouette and faint shadow against a plain white background. +train_21886.png A small, dome-shaped beetle with glossy bright orange elytra speckled with several irregular black spots and a dark head is shown in dorsal three-quarter view perched on a pale fingertip against a soft, out-of-focus light background, its smooth, shiny texture and spot pattern visible despite the low resolution. +train_21893.png A small, shiny metallic green oval beetle with a darker head and tiny splayed legs is shown from a near top-down angle resting on a coarse pale-gray concrete or tile surface by a brownish edge, its smooth iridescent elytra and faint central seam visible despite the low resolution. +train_22006.png A small, glossy, dome-shaped red beetle with smooth reflective elytra bearing a few small black marks and a matte black head and legs is shown in a slightly oblique top-down view as it clings to a bright green leaf against a soft-focus green background. +train_22007.png A small, glossy dark metallic beetle with smooth, rounded elytra seen top-down, perched on a pale, slightly textured surface near a blurred blue rim at the image edge, its legs mostly tucked underneath and a faint specular highlight and shadow visible beneath the body. +train_22078.png Top-down view of a small glossy orange-red beetle with domed, reflective elytra marked by several round black spots, a black head and legs partially visible, angled slightly toward the top-left and resting on a smooth pale beige‑green surface that casts a soft shadow beneath it. +train_22150.png A small, glossy, oval copper-orange beetle seen dorsally with a darker head, short antennae and splayed legs, its smooth shiny elytra showing faint darker shading while it rests on a pale beige, slightly textured surface that resembles wood or paper. +train_22332.png A small, glossy reddish-brown oval beetle viewed dorsally, its smooth shiny elytra showing a faint central seam and slightly darker head, with tiny splayed legs and antennae visible as it sits on a pale, grainy beige surface casting a subtle shadow. +train_22446.png A small, glossy dark brown-to-black oval beetle seen in dorsal (top-down) view, its smooth, slightly reflective elytra showing a faint central suture and subtle longitudinal texture with short legs tucked beneath, resting on a light beige, softly textured surface. +train_22475.png A small, glossy metallic teal-green beetle seen from a dorsal, slightly angled top view, its smooth, convex elytra showing a faint central suture and subtle iridescent sheen with a darker head and legs tucked at the sides, resting on a coarse beige sandy background speckled with tiny dark granules. +train_22487.png A small, glossy dark brown to nearly black oval beetle viewed from above at a slight angle, its smooth shiny elytra showing a faint central suture and short antennae/legs visible at the front, perched on a pale tan, slightly textured wood- or paper-like surface with a soft shadow. +train_22695.png A top-down, slightly oblique view of a small oval beetle with smooth, glossy reddish-brown elytra showing a darker central suture and faint longitudinal shading, a contrasting darker head and splayed legs, resting on a uniform pale beige surface. +train_22759.png A small, glossy dark brown to black beetle shown from a slightly dorsal-angled view with smooth, elongate elytra, reddish-brown legs and antennae splayed outward and casting a faint shadow on a plain off-white/beige background. +train_22784.png A small, glossy, dome-shaped orange-red beetle seen from a slightly oblique top-down view, its smooth shiny elytra bisected by a subtle dark seam with a contrasting black head and legs, resting on a white textured surface with a tiny blue speck and faint smudges nearby. +train_23066.png A small, oval, glossy reddish-brown beetle shown in dorsal view with smooth, slightly convex elytra that reflect light and show a faint darker midline, its compact body casting a soft shadow against a pale bluish, slightly textured background. +train_23198.png A small glossy orange-red, dome-shaped beetle seen from above, perched on a soft pink petal with a dark head, tiny legs partly concealed beneath its smooth elytra that show faint black spots, set against a blurred pastel pink-green background. +train_23354.png A small, dark brown to black oval beetle is seen from above, its smooth glossy elytra showing a faint central seam and subtle highlight, perched slightly off-center on a coarse, pale beige–orange sandy background with a soft shadow beneath and legs or antennae not clearly resolved. +train_23393.png A small, glossy dark brown-to-black oval beetle is shown from a top-down view, its smooth, slightly reflective elytra meeting at a faint central seam with the tiny head and tucked legs just visible at the front, resting on a smooth pale (off-white) surface with a soft shadow beneath. +train_23752.png A tiny, glossy, dome-shaped beetle with bright red elytra showing a faint darker mark, a small black head and legs, captured from a slight oblique top view as it rests on a plain white surface casting a soft shadow. +train_23862.png Dorsal-view oval beetle perched on a bright green leaf, its dark brown elytra showing a subtle metallic sheen and irregular pale speckling with faint longitudinal texture, short antennae and splayed dark legs visible against the smooth leaf surface. +train_24582.png A small, glossy dark brown-to-black oval beetle viewed from a slightly oblique dorsal angle, its smooth shiny elytra meeting in a central seam with faint reddish-brown marginal tones, short antennae and splayed legs visible, perched on a stark white surface that casts a soft shadow beneath it. +train_24631.png A small beetle appears as a smooth, glossy metallic green convex oval with a faint central seam and marginal darkening, shown in a top-down dorsal pose with legs partially visible beneath, resting on a pale bluish surface with minor scuffs and soft shadowing. +train_24755.png A small glossy oval brown beetle seen dorsally at a slight frontal tilt, its smooth amber-brown elytra with a faint central suture and subtly darker head and pronotum contrasting against a plain white background and casting a soft shadow, with short antennae and splayed legs visible despite the low resolution. +train_24869.png A small, oval, nearly black beetle with glossy, smooth elytra and faint orange-red markings near the thorax, shown in a top-down pose slightly angled to the upper-left on a pale circular background, its dome-shaped body reflecting tiny highlights and with stubby legs and antennae discernible despite the low resolution. +train_24877.png A small, glossy oval beetle viewed dorsally, its smooth, convex elytra showing a dark metallic green–bronze iridescence with faint light speckling, perched on a pale, slightly textured background with its legs mostly tucked beneath. +train_24934.png Dorsal top-down view of a small oval, glossy dark brown-to-black beetle with a smooth, slightly domed elytral surface and faint central suture, short antennae and stubby legs visible at the sides, photographed on a plain white background casting a soft shadow. +train_24978.png A small, oval beetle with a smooth, glossy, metallic emerald-green elytral surface and slightly darker head, shown in a slightly oblique dorsal view clinging to a thin brown twig or stem with a soft, out-of-focus green-brown background and visible legs under the body. +train_25231.png A small, oval, metallic bluish-black beetle with smooth glossy elytra and faintly visible legs and antennae seen in an oblique top-down view crawling on a warm yellow, grainy sandy surface speckled with tiny dark particles. +train_25539.png A small, glossy dark brown-to-black oval beetle shown from a top-down view, its smooth, shiny elytra reflecting light and obscuring most appendages, with a faint head outline and rounded body silhouette centered on a plain off-white background. +train_25583.png A small, glossy orange-red, almost hemispherical beetle seen from above at a slight diagonal, its smooth shiny elytra showing a faint darker midline and indistinct black markings near the edge, perched on a pale, slightly textured surface (possibly paper) with a soft shadow cast to one side. +train_25681.png A small shiny dark brown-to-black beetle viewed dorsally, its elongated oval body with a slightly constricted thorax and broader elytra, short antennae and legs splayed outward, sitting on a plain light surface that casts a soft shadow. +train_25690.png Top-down view of a small dark gray–black beetle with a smooth, slightly glossy oval elytra, a narrow head and rounded pronotum, segmented antennae and six splayed legs visible against a stark white background despite the low resolution. +train_25785.png A small, oval beetle with a smooth, glossy turquoise-green iridescent exoskeleton and faint longitudinal sheen, shown in a slightly top-down three-quarter pose perched on a vivid magenta flower petal with blurred green foliage in the background and dark legs visible along the sides. +train_25806.png A small, elongated beetle with a glossy metallic green-blue elytral surface and a slightly darker narrow head and rostrum, shown in a dorsal three-quarter view perched on a bright green leaf, with thin orange-brown legs and a smooth, slightly reflective texture and faint longitudinal sheen visible despite the low resolution. +train_25813.png A small, oval beetle shown from above resting on a light, slightly smudged paper surface, with dark brown to black elytra densely speckled with tan-yellow mottling that gives a scaly/fuzzy texture, a paler patch toward the rear, and legs/antennae partly tucked under the body. +train_25968.png A small, glossy, dark metallic green–black, dome-shaped beetle shown from a dorsal–oblique viewpoint clinging to a thin vertical twig, its smooth, slightly iridescent elytra with a faint central seam and compact rounded profile set against a soft, out-of-focus pale background that emphasizes short legs and a stout body. +train_25989.png A small, oval beetle with a glossy, metallic emerald-green body and subtly iridescent, smooth elytra separated by a faint central suture, shown from a near-dorsal angle perched on a textured bright-green leaf or mossy surface with a small brown twig nearby and a darker head and short antennae partially visible at the front. +train_26002.png A dorsal, slightly angled top-down view of a small elongated oval beetle with a darker brown–almost black head and thorax and lighter reddish-brown, subtly glossy elytra bearing faint longitudinal ridges, its short legs tucked beneath and casting a soft shadow on a plain pale beige, slightly textured background. +train_26031.png A small, oval, metallic turquoise-green beetle seen from above with glossy, slightly iridescent elytra meeting at a faint central suture, a darker head and tucked legs, perched on a pale, smooth background casting a tiny shadow. +train_26064.png A small, glossy dark blue-black oval beetle with smooth, reflective elytra and a faint orange-brown rim, seen in a slightly oblique dorsal view perched on a crumpled white paper-towel background with a soft shadow to its right and tiny legs faintly visible. +train_26112.png A dorsally viewed, slightly tilted small beetle with glossy metallic turquoise-green elytra showing a faint longitudinal sheen and a darker metallic head and legs, resting on a plain white background with a tiny green speck and a nearby small dark pin or shadow. +train_26164.png Dorsal-view, oval-bodied beetle with glossy, metallic emerald-green elytra exhibiting a faint central suture, a contrasting bright orange pronotum and head, smooth reflective texture, slender dark legs and antennae splayed outward, resting on a plain white surface that casts a soft gray oval shadow beneath it. +train_26394.png Top-down view of a small, glossy reddish-brown oval beetle with smooth, slightly metallic elytra showing faint darker longitudinal shading and tucked legs/short antennae, perched on a dark, out-of-focus natural background with a hint of green at one edge and a lighter surface beneath. +train_26443.png A small, rounded, glossy dark brown–black beetle viewed from a slight top-down angle, its smooth oval elytra showing a faint central seam and tiny leg shadows, resting on a warm orange, slightly mottled textured surface that resembles paper or fabric. +train_26563.png Glossy, dome-shaped orange-red beetle seen from a slightly elevated dorsal angle, its smooth, shiny elytra showing faint black spots and a darker head, perched on a coarse, dark-gray, speckled surface. +train_26573.png A small matte-black, oval-domed beetle seen from above at a slight angle, with short curved antennae, six splayed legs and a subtle central seam on smooth elytra, set against a plain white background. +train_26593.png A small, dome-shaped beetle viewed from a slight overhead angle, its smooth, glossy elytra shimmering deep purple with teal-green iridescent highlights and a faint central suture, legs mostly tucked beneath, resting on a dark, slightly textured background with a soft halo of light. +train_26640.png A tiny, oval dark brown-to-black beetle viewed dorsally at a slight angle, its smooth, glossy elytra reflecting light with faint pale legs and short antennae visible beneath, resting on a teal-green textured fabric that casts a soft shadow. +train_26886.png A small, glossy dark brown to nearly black beetle with smooth, slightly reflective oval elytra and short forward-pointing antennae, shown in dorsal view with splayed reddish-brown legs and a faint shadow beneath, resting on a textured pale green painted surface with tiny chips and flecks. +train_26967.png A small, elongated oval beetle with glossy dark brown–black elytra and a contrasting reddish-brown head/pronotum, shown in a slightly angled dorsal pose perched on a thin pale twig against a bright white background, with smooth shiny texture and tiny splayed legs visible at the sides. +train_27018.png A small, oval metallic emerald-green beetle with a glossy, slightly iridescent elytral surface showing faint longitudinal ridges and a darker head and legs, seen in a slightly oblique dorsal view as it clings to a warm, weathered brown wooden surface with a small smear of blue-green paint at the edge. +train_27051.png A glossy, dark brown to nearly black oval beetle with a subtle reddish-brown margin and smooth, slightly iridescent elytra shown in dorsal view with legs mostly tucked under, perched on a pale, slightly rough light-gray surface so its rounded body shape and small head are visible despite low resolution. +train_27103.png A small beetle with glossy dark brown–black convex elytra showing a subtle metallic sheen and a contrasting orangey-red head and legs is photographed in a slightly oblique dorsal pose facing left on a flat, saturated cyan-blue background, revealing smooth rounded wing covers, splayed segmented legs and short antennae. +train_27113.png A small, glossy, nearly black beetle with a subtle blue-green metallic sheen and smooth, dome-shaped elytra seen from above (dorsal view), perched on a pale green, slightly mottled surface (leaf-like) with its legs splayed and the rounded head partially tucked under the pronotum. +train_27159.png A small, dome-shaped beetle with glossy amber-brown, smooth reflective elytra and a darker head and legs is shown in a slight dorsal three-quarter view, perched on a dark, wood-like surface with a softly blurred brown background. +train_27251.png Dorsal view of a small, domed oval beetle with mottled tan and dark-brown speckled elytra that appear slightly velvety or fuzzy, a faint central suture visible, legs tucked beneath, sitting on a plain off-white/cream surface. +train_27520.png A small, smooth, glossy dark brown-to-black oval beetle is seen from a slightly oblique dorsal view, its elongated elytra showing faint longitudinal ridging with short legs and tiny antennae partly visible beneath, resting on a neutral light-gray, slightly textured flat surface that casts a soft shadow. +train_27563.png A small, glossy metallic turquoise-green beetle shown from above and slightly angled with its head toward the upper-left, featuring an elongated oval body with faint longitudinal ridges on the elytra and darker legs splayed on a coarse gray concrete or sandy surface beside a small white pebble. +train_27712.png A small, glossy emerald-green beetle shown in a three-quarter dorsal view with smooth, slightly iridescent elytra and dark legs partly visible beneath, resting on a pale off-white surface with faint blue-green grid lines. +train_27726.png Top-down, slightly angled view of a small beetle with glossy, mottled dark brown-to-mahogany elytra showing faint longitudinal grooves, thin forward-pointing antennae and tan legs splayed against a pale bluish‑gray smooth surface with soft shadows. +train_27749.png A small metallic green beetle with glossy, slightly iridescent smooth elytra, a darker head and legs, and short forward-pointing antennae is shown in a dorsal-diagonal pose angled slightly left, resting on a pale, grainy substrate (concrete or stone) speckled with tiny dark particles. +train_27778.png A small, matte-black beetle with a subtly glossy, smooth, oval domed elytra seen in a right-facing three-quarter dorsal view, its thin, curved antennae, narrow pronotum and splayed legs visible despite low resolution against a plain white background with a faint cast shadow. +train_27874.png Dorsal, top-down view of an oval beetle with glossy metallic golden-yellow elytra featuring a central black stripe and subtle darker lateral shading, short curved black antennae and six black legs splayed outward, the smooth segmented body shown against a plain white background. +train_27940.png A small glossy orange-red oval beetle shown in a slightly oblique dorsal view, with smooth convex elytra featuring a faint central suture, a contrasting black head and legs, and perched against a soft turquoise-green blurred background. +train_28079.png A small, glossy, metallic emerald-green oval beetle seen from above, perched slightly head-forward on a blurred magenta-pink petal, its smooth reflective elytra with a faint central suture and tiny legs/antennae barely visible against the soft, out-of-focus background. +train_28106.png Glossy, bright orange-red oval beetle shown in a dorsal/top-down view against a plain white background, with smooth shiny elytra, a faint central suture and a small darker head region with indistinct tiny darker markings near the midline. +train_28111.png A glossy, dome-shaped orange-red beetle with a smooth, slightly reflective elytral surface and a faint central seam, shown in a near-dorsal, slightly angled view perched on a vivid green leaf with visible veins and a small dark spot near the rear edge. +train_28235.png Dorsal view of a small, oval beetle perched on a rough dark-brown surface, its metallic teal-green elytra showing fine punctate texture and subtle iridescence, a bright orange pronotum/head contrasting sharply and a faint pale longitudinal line down the center. +train_28243.png A small, metallic emerald-green beetle seen from above, its smooth, glossy elytra showing a subtle longitudinal sheen and midline, perched in a top-down pose on a bright green leaf with visible veins and a softly blurred green background, with a darker head and tiny legs just discernible. +train_28351.png A small, glossy, dark metallic green-black beetle is shown from a dorsal/top-down viewpoint with smooth, dome-shaped elytra bearing a faint central suture and subtle iridescent sheen, tiny legs and short antennae partly visible, perched on a pale, slightly speckled background that emphasizes its rounded silhouette. +train_28363.png A small, glossy metallic emerald-green oval beetle viewed from a slight overhead angle, its smooth, reflective elytra showing faint longitudinal sheen and tiny pale speckles as it clings to a dark, rough twig or bark against a soft-focus turquoise-green background. +train_28778.png Top-down view of a small beetle with glossy orange-red, slightly domed elytra showing a faint central seam and a subtle darker spot on one wing, a contrasting matte black head and spindly legs splayed outward with short segmented antennae visible, resting on a light, slightly textured background (paper) with a few dark specks and a soft shadow beneath. +train_29018.png A small, dome-shaped beetle with glossy orange-brown, smooth elytra showing subtle darker edging and a tiny dark head, seen from a slightly oblique dorsal view as it perches on a bright green, veined leaf. +train_29222.png A small, glossy red-orange dome-shaped beetle with smooth, shiny elytra, a contrasting black head and short legs, shown in a three-quarter top-down view clinging to a pale, slightly textured surface under bright light that casts a sharp shadow, with faint dark markings on the back visible despite the low resolution. +train_29293.png Top-down view of a small, glossy dark brown–black beetle with a subtle metallic sheen and a faint lighter longitudinal band on its domed elytra, resting flat with legs partly visible against a pale mint‑green, slightly textured background. +train_29382.png A small, glossy black beetle with faintly metallic, smooth-appearing elytra and subtle longitudinal texture clings in a three-quarter/topward view to a pale dried grass stem, its long threadlike antennae and reddish-brown legs visible against a soft, out-of-focus yellow-green background. +train_29449.png A small, glossy dark brown-to-black oval beetle seen from above, its smooth, slightly reflective elytra showing a faint central suture and short legs partly visible at the sides, resting on a pale beige, slightly textured background with tiny dark specks. +train_29590.png A small, glossy orange-red beetle with a smooth, dome-shaped elytra showing a few small dark markings, a black head and legs, presented in a slightly oblique dorsal (three-quarter) view as if crawling on a plain white background with a faint shadow beneath. +train_29691.png Top-down view of a small, glossy metallic green-gold beetle with smooth, slightly convex elytra showing a faint central seam and subtle speckling, perched on a rough beige-tan surface with a short shadow and indistinct dark legs visible at the sides. +train_29697.png A small, glossy amber-brown, nearly hemispherical beetle with a darker head and subtle speckling on smooth elytra, shown in a top-down view perched on a bright green leaf with visible veins and its legs partially tucked under the body. +train_29732.png A small, glossy metallic blue-black beetle seen from a slightly elevated top-front angle, its smooth, rounded dome-shaped elytra showing a soft specular highlight and a faint central seam, short legs tucked underneath on a pale, skin- or leaf-like surface against a blurred green-beige background with faint antennae visible despite the low resolution. +train_29789.png A small, glossy dark brown-to-black beetle seen from a top-down view with smooth, slightly elongated oval elytra showing a central seam, thin splayed legs and short antennae, resting on a warm reddish-orange, slightly textured background with a few darker speckles. +train_29867.png A glossy, bright red, rounded beetle seen from a slightly top-front angled view with two prominent black dorsal spots on smooth elytra, a small shiny black head with short antennae and tiny legs, photographed against a plain white background with a faint shadow. +train_30061.png Dorsal-view metallic emerald-green beetle with smooth, glossy oval elytra, a slightly darker head and legs and short antennae, a faint central suture visible, posed with legs splayed on a uniform soft sky‑blue background with subtle shading. +train_30121.png A small, dome-shaped beetle with a glossy olive-green to dark metallic sheen and faint paler mottling, seen from a slightly oblique top-down view resting on a rough, light-gray surface, its rounded elytra with a subtle central suture and tiny legs partially visible beneath providing the main distinguishing features. +train_30165.png Top-down view of a small, glossy dark-brown to almost black oval beetle with smooth, slightly metallic elytra bearing faint lighter speckling, its rounded body and tucked legs and short antennae visible against a blurred green leaf background. +train_30171.png A small, glossy brown beetle with mottled tan-speckled elytra and faint darker central markings, shown in a dorsal three-quarter pose with legs and segmented antennae splayed outward on a plain white surface casting a soft shadow, revealing a compact rounded body and subtly textured shell despite the low resolution. +train_30265.png A small, glossy metallic turquoise-green beetle with a rounded, convex oval body and a faint longitudinal elytral suture, shown in a dorsal-three-quarter pose perched on a bluish-green surface with its bronze-tinted head and tucked legs visible against a softly blurred warm beige background. +train_30443.png A small, dome-shaped beetle viewed from above at a slight angle, with smooth, glossy dark brown-to-black elytra showing a faint central suture and subtle metallic sheen, short tucked legs and antennae visible, casting a soft shadow as it rests on a pale beige, slightly textured background. +train_30554.png A small metallic emerald-green beetle with a glossy, slightly iridescent, smooth convex oval body and darker head and legs, shown in dorsal view clinging to a thin vertical green stem against a pale, blurred background, with a faint central seam along the elytra visible despite the low resolution. +train_30772.png A small, oval, dark metallic-brown beetle with smooth, glossy elytra showing a faint central ridge and a few pale flecks near the front, seen in dorsal view slightly angled as it perches on a glossy green leaf against a soft, out-of-focus green background. +train_30784.png A small, glossy reddish-brown oval beetle viewed slightly from above and angled, its smooth, shiny elytra and darker head and thin black legs visible as it clings to a coarse, pale tan stone- or bark-like background. +train_30796.png A small, glossy metallic emerald-green beetle with faint longitudinal striations on its smooth elytra, shown in a near-top-down pose with legs partially extended on a white paper surface marked by a bluish-green ink smudge and tiny black specks. +train_30814.png An oval, metallic teal-green beetle with glossy, smooth elytra showing a faint central suture and short legs splayed beneath it, photographed in a slightly oblique dorsal view resting on a pale, grainy sandy surface strewn with tiny pebbles. +train_30891.png A small metallic emerald-green beetle with smooth, slightly domed elytra and a darker head, shown in an oblique dorsal view perched on a blurred green leaf/grass background with legs partly splayed and a faint shadow beneath. +train_30918.png A small, glossy, dark bluish-black oval beetle seen from a slightly oblique dorsal view, its smooth reflective elytra showing a faint iridescent sheen and tiny pale speckling with short antennae and legs tucked beneath, perched on a light bluish‑gray textured surface that casts a soft shadow. +train_30963.png A tiny beetle shown from a near-top view with glossy metallic blue-green, slightly iridescent, smooth elytra marked by a faint central suture and a darker head, short forward-pointing antennae and tiny orange-brown legs partially visible, perched on a plain light beige, slightly textured background with a small shadow. +train_31101.png Glossy reddish-brown, elongated oval beetle seen from above with smooth, slightly reflective elytra showing a subtle darker median area, short curved antennae and splayed dark legs visible beneath its body as it rests on a pale pink textured surface casting a soft shadow. +train_31134.png A small, oval beetle appears in dorsal view as a glossy black-to-dark-gray insect with a subtle central suture and faint longitudinal sheen on its hard elytra, slightly tilted and centered on a smooth pale-gray background, with a small darker head visible while legs and fine markings remain indistinct. +train_31307.png Dorsal-view, oval metallic turquoise-green beetle with smooth glossy elytra, a darker central suture and head, short legs tucked beneath and a faint shadow on a soft pale aqua background. +train_31359.png A small, oval, metallic emerald-green beetle shown from a slightly angled dorsal view, its glossy, smooth elytra reflecting light with a faint darker midline and tiny black head/antennae visible, perched on rough gray concrete speckled with grit and casting a short shadow. +train_31399.png A small, oval, glossy red‑orange beetle seen from a top‑down, slightly oblique angle perched on a bright green leaf against a soft‑focus grassy background, its smooth shiny elytra showing a subtle central suture and a contrasting darker head with tiny black legs. +train_31534.png A small, oval, metallic turquoise-green beetle seen from above with a smooth, glossy elytral surface and a faint central seam, dark head and legs splayed outward, resting on a pale sandy, granular background. +train_31549.png A small, elongate tan-brown beetle seen from a slightly top-down dorsal view with smooth, glossy, slightly convex elytra showing a faint central suture and a darker head, legs largely tucked beneath the body, resting on an off-white textured surface (paper) with a soft shadow. +train_31650.png A small, oval beetle with bright metallic emerald-green, glossy and slightly iridescent elytra showing faint longitudinal sheen and a darker pronotum, seen in a dorsal–oblique pose perched on a smooth bright green leaf with slender dark legs and a tiny black head visible against a softly blurred green background. +train_31658.png A small, metallic emerald-green beetle is shown from above, its smooth, glossy, slightly iridescent oval elytra and darker head and legs visible as it perches on wrinkled red fabric that provides high contrast, with a faint longitudinal sheen and tiny antennae discernible despite the low resolution. +train_31684.png A small, oval, dome-shaped beetle with a glossy dark brown to almost black smooth shell and subtle reddish-brown highlights, seen from a slightly oblique dorsal view with a faint central suture and legs tucked beneath, resting on a coarse, pale sandy/gritty surface speckled with tiny dark fragments. +train_31764.png A small, glossy dark brown-to-black oval beetle seen from a slight top-side oblique view, its smooth, slightly reflective elytra with a faint central seam and short splayed legs visible against a plain white paper background with a tiny black speck nearby. +train_31769.png A tiny oval reddish-brown beetle with a smooth, slightly glossy elytral surface is shown in an oblique dorsal view with its legs splayed beneath it on a plain white background casting a small shadow, the darker head and pronotum contrasting with the lighter elytra and a faint smudge near its rear. +train_31829.png Top-down view of a small, shiny dark brown to black elongated beetle perched on a human fingertip, its smooth glossy elytra and contrasting orange-brown legs and short antennae visible against a pale skin foreground with a blurred patch of blue denim in the background. +train_31840.png A small, glossy dark-brown, oval beetle with faint lighter-brown mottling and a subtle central elytral seam, shown in dorsal/three-quarter view with legs mostly tucked under, perched on pale bluish fabric next to a human finger and casting a tiny shadow. +train_31942.png A small, elongated oval metallic green beetle with a smooth, slightly iridescent elytral surface and faint longitudinal shading, shown dorsally perched diagonally on a thin pale-brown twig against a soft, warm beige background, with its dark head and tucked legs just distinguishable despite the low resolution. +train_32032.png Top-down view of a small, oval, glossy reddish-orange beetle with smooth, slightly domed elytra and a darker black head and legs, centered on a pale beige textured surface that looks like paper or dry leaf, with legs mostly tucked beneath. +train_32339.png A small, glossy metallic emerald-green oval beetle viewed from a slightly elevated dorsal angle, its smooth domed elytra showing a faint central suture and subtle longitudinal sheen with a slightly darker head and marginal shading, resting on a diffuse pale gray‑white background. +train_32730.png A small, rounded metallic turquoise-green beetle shown in a slightly angled dorsal view with splayed legs and forward-curving antennae, its pebbled, subtly iridescent elytral surface bearing faint longitudinal striations and darker margins, sitting on a plain white background with a soft shadow. +train_32791.png A small, oval, glossy dark-brown beetle with an amber sheen and faint longitudinal striations is shown dorsally in a top-down pose on a bright green veined leaf, its smooth reflective elytra and tiny legs subtly visible against the textured background. +train_32909.png A glossy, metallic emerald-green oval beetle seen from a slightly top-down dorsal view, its smooth reflective elytra showing a faint central suture and darker head, perched on a brownish-green blurred leaf background with faint veins. +train_33138.png A small, glossy dark brown-to-black oval beetle viewed dorsally and slightly rotated to the right, its smooth shiny elytra with a faint lighter rim and partially visible legs sitting on a bright, uniformly green leaf or blade-of-grass background. +train_33204.png A small glossy metallic turquoise-green oval beetle with a faint central seam and darker head and legs, seen from a slightly top-down angle resting on a coarse pinkish‑red fabric background. +train_33207.png A small, glossy reddish-brown, domed beetle seen from a slightly angled dorsal view as it perches on a pale fingertip against a blurred white background, with a dark head and legs, a faint central elytral seam and subtle darker markings on the wing covers. +train_33222.png A small, glossy, dark brown-to-nearly-black domed beetle seen in dorsal view, with a faint central elytral suture, subtle reddish-brown rim on the elytra and short legs visible, resting on a smooth pale gray background. +train_33239.png A small, elongated, glossy dark-brown to nearly black beetle viewed from a slightly dorsal diagonal angle, with a smooth, tapered, segmented body, noticeable lighter brown head/pronotum, slender antennae and legs splayed to the sides, resting on a matte turquoise surface speckled with tiny paint flecks. +train_33269.png Dorsal view of a small, oval, metallic blue-green beetle with a glossy, slightly iridescent elytron showing faint longitudinal striations and a bright specular highlight, legs splayed beneath and antennae faintly visible, resting on a pale, coarse sandy background with tiny pebbles. +train_33714.png A small, glossy, nearly black beetle with a subtle greenish iridescent sheen and smooth, rounded elytra is viewed from above with its head slightly tucked, legs barely visible and casting a faint shadow on a crumpled white paper background marked by a smudge near the top-left. +train_34078.png A glossy, bright orange-red, dome-shaped beetle viewed from above at a slight angle, its smooth shiny elytra showing a faint dark midline and small dark spots with a contrasting black head and legs, perched against a soft, out-of-focus pale green–beige background. +train_34137.png A small, glossy black oval beetle viewed from a slightly oblique dorsal angle, its smooth, reflective elytra and tiny head visible with splayed legs and short antennae, resting on a pale, paper-like surface studded with tiny dark flecks. +train_34181.png Dorsal three-quarter view of a small glossy oval beetle with bright golden-orange elytra showing a subtle longitudinal sheen and faint segmentation, a darker brown head and thorax, and short legs tucked beneath, resting on a flat, vivid magenta-pink background that accentuates its smooth reflective texture. +train_34209.png A small, dark brown to nearly black, glossy, dome-shaped beetle shown in a slightly angled dorsal view with a faint central elytral seam and smooth, subtly ridged texture, its short legs tucked beneath, resting on coarse tan sand and scattered pebbles. +train_34244.png A glossy, oval dark brown-to-black beetle seen from above at a slight angle, its smooth reflective elytra showing a faint central suture and a subtle reddish tinge at the front, perched on a bright green, softly out-of-focus leaf background with shallow depth of field. +train_34285.png A small, metallic emerald-green beetle shown in a slightly dorsal-angled view with glossy, subtly iridescent elytra bearing faint longitudinal sheen, a darker head and tiny legs splayed beneath it, perched on a smooth, bright yellow-orange background. +train_34406.png A glossy orange-red, dome-shaped beetle seen from a shallow top-down angle, with a dark central elytral suture and bold black spots on the elytra, a shiny reflective texture with specular highlights, and resting on a uniform light (white/cream) background that casts a soft shadow. +train_34424.png A small, dome-shaped beetle appears chestnut to reddish-brown with a smooth, glossy, slightly metallic elytral surface and a faint central suture, seen in a top‑oblique view with its black legs tucked underneath and tiny head visible, resting on a coarse beige, speckled paper background. +train_35079.png A small, glossy, reddish-brown oval beetle seen from a top-down view with a faint central seam and subtle darker mottling on its smooth elytra, a tiny black head and legs partly tucked underneath, perched on a pale peach/beige surface against a soft, out-of-focus warm background. +train_35135.png A small, glossy metallic blue-green beetle with smooth, rounded elytra and a faint longitudinal sheen, shown in a slightly oblique dorsal view perched on a bright green leaf with blurred veins and a few dark legs and short antennae visible. +train_35159.png A compact, oval beetle viewed dorsally with smooth, glossy dark brown-to-black elytra showing slight iridescent highlights, short splayed legs and a tucked head, perched on a coarse beige, grainy surface speckled with small dark flecks. +train_35290.png A small, glossy metallic emerald-green beetle with smooth, slightly domed elytra and a faint central suture, shown in a near-dorsal angled pose revealing its dark head and partially visible legs, resting on a rough tan‑beige surface with faint wood‑grain texture and scattered dark specks. +train_35399.png A small, oval beetle shown in a slightly oblique dorsal view with smooth, glossy metallic pink-red elytra that catch highlights and show a faint midline suture, a darker head and spindly black legs, perched on a plain white surface casting a soft shadow beside a tiny dark speck. +train_35405.png A small, glossy orange-red dome-shaped beetle with a smooth reflective elytral surface and faint midline suture, black head and legs, seen from above slightly tilted as it perches on blurred flesh-toned human skin. +train_35498.png A small, oval beetle with smooth, glossy dark brown to black elytra showing a faint metallic green sheen and a subtle central suture, seen from a top-down oblique view with short reddish-brown legs and antennae splayed to the sides, resting on a coarse tan sandy/gravel substrate with tiny pebbles. +train_35574.png A small, glossy orange-red beetle seen from a top-down, slightly oblique angle with smooth, domed elytra showing a faint dark spot and midline suture, a contrasting dark head and legs, and a soft shadow as it rests on a rough brown surface beside a blurred green leaf. +train_35626.png A small, glossy lime-green oval beetle with a subtle metallic sheen and a faint darker longitudinal line down its elytra, shown from a slightly oblique dorsal view with tiny dark legs visible beneath, perched against a soft turquoise-blue blurred background. +train_35781.png A glossy dark brown-to-black oval beetle shown from above with smooth, slightly reflective elytra and a faint central seam, its legs partially tucked beneath, resting on a coarse light-tan sandy/gravel surface dotted with small pebbles. +train_35841.png A small, glossy dark brown-to-black oval beetle is shown from a slightly angled dorsal view resting on a crumpled white paper towel, its smooth, shiny elytra with a faint central suture and tiny splayed legs visible despite the low resolution. +train_35960.png A low-resolution dorsal view of a small, nearly circular, glossy emerald-green beetle with smooth, reflective elytra showing a slightly darker central area, legs tucked beneath, resting top-down on a pale off-white textured background with a faint shadow to its lower-right. +train_36222.png Top-down view of a small, glossy blackish-brown beetle with an elongated oval body and faint longitudinal striations on the elytra, short antennae and thin legs splayed outward, resting on a rough light-gray sandy/concrete surface with scattered dark smudges and a soft shadow to one side. +train_36382.png A small beetle shown in a slightly angled dorsal view, its smooth glossy metallic blue-green elytra with faint longitudinal sheen and a darker head and thin splayed legs contrasting against a pale, out-of-focus paper background, with a narrow pronotum and overall elongated oval shape visible despite the low resolution. +train_36420.png A small, domed, metallic emerald-green beetle seen from a dorsal, slightly angled view resting on a pale blue fabric beside a flesh-toned surface, its glossy elytra showing a central dark suture and faint longitudinal striations with an orange-brown head and legs visible despite the low resolution. +train_36487.png Top-down view of a small oval beetle with glossy iridescent turquoise-green elytra showing a faint central suture and smooth reflective texture, its tiny dark head and legs tucked close, perched on a rough pale gray-white stone-like substrate with subtle shadows. +train_36663.png Dorsal-view of a small, oval, dark gray-to-black beetle with a slightly matte, speckled elytral texture, a faint central suture, tiny spindly legs and short antennae visible beneath, positioned on a plain light-gray background. +train_36670.png A small, dome-shaped beetle seen from a slightly oblique dorsal view has glossy dark brown-to-black smooth elytra with faint lighter mottling, a tiny head and partially visible legs tucked underneath, and sits on a pale, grainy beige-gray surface casting a soft shadow to its left. +train_36892.png A small, glossy scarlet beetle with smooth, dome-shaped elytra bearing a few faint dark marks and a tiny black head, seen from a slightly elevated front angle as it perches on a pale off-white surface dotted with tiny specks and casting a soft shadow. +train_36934.png A small, glossy, dark brown-to-black, dome-shaped beetle with a smooth, reflective elytral surface and a faint midline seam, shown in a slightly oblique top view perched on a bright green leaf (visible vein) against a soft-focus green background, its short legs and rounded body outline discernible despite the low resolution. +train_36966.png A small, glossy red-orange, dome-shaped beetle is shown in a three-quarter dorsal view perched on a bright green, textured leaf or moss background, its smooth, reflective elytra bearing faint dark markings and a contrasting black head with tiny pale spots visible despite the low resolution. +train_36978.png A glossy, dome-shaped orange-red lady beetle viewed from above at a slight angle, its shiny elytra bearing several distinct black spots and a dark head, resting on a pale, slightly textured background. +train_36995.png Top-down view of a small, roughly hemispherical beetle-like insect with a vivid, saturated yellow, dense fuzzy/hairy texture and a slightly darker tiny head and legs visible at the front, sitting on a pale, smooth surface that casts a soft shadow and shows a faint circular darker mark nearby. +train_37071.png A small, glossy lime-green beetle with darker green shading and a contrasting orange-red head, seen from a top-down view with folded elytra showing a faint midline and short black legs and antennae, set against a soft teal gradient circular background. +train_37361.png A small, glossy jet‑black beetle photographed from a dorsal (top‑down) viewpoint against a plain white background, with smooth, slightly reflective rounded elytra, short antennae and thin legs splayed outward, and faint longitudinal ridging visible on the shell despite the low resolution. +train_37389.png A small glossy black beetle shown in a three-quarter side view on a bright white surface, with smooth rounded elytra bearing two iridescent blue spots, contrasting orange-brown legs and head, short forward-pointing antennae, and a faint shadow beneath. +train_37445.png An oval, metallic emerald-green beetle with a smooth, glossy, slightly iridescent dorsum shown in a near-top, slightly angled pose with a faint dark head and legs tucked underneath, resting on a pale, rough beige background with small dark specks, its elytral midline and subtle longitudinal shading visible despite the low resolution. +train_37460.png A small, low-resolution top-down view of a glossy dark brown to black oval beetle with smooth, slightly iridescent elytra showing a faint central suture and partially visible legs tucked beneath its rounded body, perched on a pale, coarse-grained concrete or sandy surface speckled with tiny pebbles. +train_37477.png I’m unable to view the image—please upload a higher-resolution photo or describe the beetle and I’ll provide a detailed visual description. +train_37565.png A small metallic emerald-green beetle with smooth, glossy oval elytra and a slightly darker head is shown in a dorsal three-quarter pose with legs splayed on a plain white surface speckled with tiny debris, its compact, iridescent body and short antennae visible despite the low resolution. +train_37623.png A small elongated oval beetle seen from above with glossy dark brown to nearly black smooth elytra meeting at a central seam, a slightly paler head and indistinct legs visible at the edges, resting on a light peach‑beige, softly mottled background that looks like skin or fabric. +train_37663.png A small, glossy, metallic bluish-green beetle seen from above in a slightly oblique dorsal view, its smooth, convex elytra reflecting light with a faint longitudinal sheen, short antennae and legs partially visible at the sides, perched on a bright, out-of-focus green leaf background. +train_37815.png A small, oval beetle with glossy, metallic turquoise-green elytra and a darker head and legs, shown in a dorsal/three-quarter view as it clings to a bright green leaf against a soft, out-of-focus green background, the smooth, iridescent body reflecting light and exhibiting faint longitudinal sheen despite the low resolution. +train_38132.png A small, glossy jet-black beetle shown in dorsal view with a smooth, slightly domed elytra and a faint central seam, short antennae and spindly legs splayed outward, casting a soft shadow on a plain white background. +train_38254.png A small glossy reddish‑orange oval beetle photographed from above at a slight angle, showing a dark head and legs and smooth reflective elytra, perched on a pale, fibrous beige surface with faint grain and tiny dark specks. +train_38408.png A small glossy orange, dome-shaped beetle with a darker head and thin black legs clinging head-up to the edge of a narrow vertical surface, its smooth, reflective elytra and subtle body segmentation visible against a soft, warm orange out-of-focus background. +train_38429.png A small, glossy black oval beetle with smooth, slightly metallic elytra showing a faint central suture, viewed dorsal and slightly head‑on with splayed brownish legs and short antennae, resting on a plain pale background. +train_38438.png A small beetle with glossy, metallic teal-green, slightly iridescent elytra and a faint central suture is seen from a dorsal-oblique view with tiny legs tucked beneath a rounded, raised body, perched on a pale beige substrate against a soft, blurred green background. +train_38531.png A small, glossy, dark brown-to-nearly-black oval beetle seen from a top-down viewpoint, its smooth, slightly iridescent elytra showing a faint central suture and tiny reflective highlights while the legs and short antennae are mostly tucked beneath, resting on a pale beige, slightly textured surface that casts a soft shadow. +train_38690.png A small, glossy orange-red, dome-shaped beetle is seen from above at a slight angle, perched on a pale green leaf with a soft blurred background, its smooth elytra meeting at a central seam and a darker head and tiny legs visible despite the low resolution. +train_38804.png A small, glossy, oval beetle seen from a dorsal three-quarter viewpoint resting on a bright green leaf, its smooth dark metallic green-brown elytra with a central suture and faint longitudinal sheen visible, with short antennae and tiny legs tucked beneath against the softly blurred green background. +train_38876.png A small, glossy dark brown to nearly black beetle is shown in top-down dorsal view, its smooth oval elytra with a faint central suture and subtle specular highlights contrasting against a coarse, warm orange-yellow textured background (possibly fabric or paper), with legs and antennae mostly obscured by the low resolution. +train_39250.png A small, glossy, dome-shaped orange-red beetle seen from a slight top-front angle with smooth shiny elytra bearing two prominent rounded black spots and a dark head with pale markings, perched on a warm red–orange blurred background that suggests a flower petal. +train_39366.png Top-down view of a small, dark brown-to-black beetle with a glossy, elongate oval body showing a faint central suture on the elytra, short antennae and splayed thin legs visible against a plain white background with a soft shadow beneath. +train_39476.png A small, oval, glossy dark-brown to black beetle seen from a near top-down view with smooth, shiny elytra and a faint midline seam, its short legs and antennae visible despite blur, perched on coarse sandy soil scattered with pale gravel and a thin green grass blade. +train_39511.png A small, glossy orange-red, dome-shaped beetle with a visible central elytral seam and faint dark spots, shown in a slightly angled top-side view revealing a black head and legs, perched on a light neutral surface with a soft shadow and slight pixelation from the low-resolution image. +train_39555.png A small, glossy dark brown-black oval beetle shown in a near-dorsal top-down view, with smooth, slightly iridescent elytra exhibiting a faint central suture and subtle longitudinal sheen, perched on a coarse tan-brown wood or bark surface with visible grain. +train_39756.png Dorsal-view of a small, oval, glossy dark brown-to-black beetle with a smooth, slightly reflective elytral surface and a faint central suture, short legs tucked beneath, perched on a light, weathered wooden surface with a soft green blur in the background. +train_39818.png A small glossy black beetle shown in dorsal view with smooth, slightly domed elytra and a faint central seam, short segmented antennae and splayed legs visible, perched against a plain white background, its narrow pronotum and tapered posterior discernible despite the low resolution. +train_39832.png A small, rounded beetle with a glossy metallic turquoise-blue elytra showing a faint central seam and bright specular highlights, seen in a top–three-quarter view revealing a dark head and tucked legs against a soft, out-of-focus pale blue–white background with a subtle shadow beneath. +train_40006.png A small, oval, metallic emerald-green beetle with smooth, slightly iridescent elytra and a darker head and legs seen from a dorsal, slightly angled viewpoint while perched on a pale, textured surface casting a soft shadow, its elongated body and faint longitudinal elytral sheen visible despite the low resolution. +train_40040.png A small beetle seen from a dorsal, slightly angled top-down view against a dark, vignetted background, with smooth, glossy metallic turquoise-green elytra showing a central seam and faint speckling and a contrasting bright orange-red head and slender orange legs/antennae. +train_40099.png A small beetle seen from a slightly dorsal-oblique viewpoint with smooth glossy orange-red elytra bearing a prominent central black longitudinal band and a darker head/pronotum, legs and antennae splayed beneath, resting on a neutral light-gray/beige smooth background that casts a faint shadow, with low-resolution pixelation but clear bright coloration and the midline dark marking. +train_40128.png A small, glossy red-orange, dome-shaped beetle viewed from a slightly oblique top angle, perched on a bright green leaf with soft, out-of-focus green background, its smooth reflective elytra showing a subtle darker patch toward the rear and contrasting black head and legs visible against the foliage. +train_40129.png Dorsal, top-down view of a small, oval, domed beetle resting on a pale, slightly speckled off-white textured surface, its glossy dark brown to nearly black elytra showing a faint central suture, subtle lighter brown margins and a mildly punctate, slightly shiny texture despite the low resolution. +train_40131.png A small, glossy black beetle captured in a slightly oblique dorsal view, its smooth, rounded elytra showing a faint central suture and subtle sheen, short antennae and stubby legs visible beneath, perched on a pale, grainy/sandy background with tiny speckled debris. +train_40343.png A small, oval beetle viewed from above at a slight angle with smooth, glossy dark brown to nearly black elytra showing faint lighter margins and subtle speckling, tiny legs and antennae barely discernible, perched on a plain white surface with a soft shadow. +train_40357.png A small, glossy dark brown-to-black oval beetle shown from a near-dorsal, slightly angled view with smooth, reflective elytra (a faint central suture visible), short legs tucked beneath its body and a tiny head, resting on a pale, slightly textured surface that casts a soft shadow. +train_40476.png A small metallic green-blue beetle seen from above at a slight angle, with glossy, slightly pitted oval elytra showing faint longitudinal striations, a darker head and legs, short antennae visible, and perched on an off‑white/beige paper surface casting a soft shadow. +train_40504.png A small, oval beetle seen from a slightly oblique dorsal view, its smooth, glossy metallic turquoise-green elytra with bronze highlights and faint longitudinal punctures contrasting with a darker matte pronotum and reddish-brown legs, perched on a pale, rough stone against a softly blurred blue‑green background. +train_40734.png A small, glossy black beetle is shown from a dorsal viewpoint on a pale, slightly textured background, its rounded smooth elytra displaying subtle reddish-brown highlights near the rear with short splayed legs and a faint shadow visible despite the low resolution. +train_40778.png Top-down view of a small, rounded, metallic emerald-green beetle with a glossy, slightly iridescent convex body and a faint central elytral suture, perched on a pale beige paper surface scattered with tiny white fibers and soft shadows. +train_40805.png A small, oval, dark brown-to-black beetle seen from a dorsal/top view with smooth, slightly glossy elytra showing a central seam, a narrower pronotum and visible segmented antennae and splayed legs, resting on a plain light-gray background with faint lighter brown edging on the elytra visible despite low resolution. +train_40820.png A small, glossy red-orange beetle shown in an oblique dorsal view with smooth, shiny elytra, a darker blackish head and legs, a faint central seam down the back and slight posterior darkening, perched against a soft, out-of-focus green grassy background. +train_40919.png A small, glossy dark brown-to-black oval beetle seen from above at a slight angle, its smooth, shiny elytra with a faint central suture and barely visible legs tucked beneath, perched on a pale, coarse wooden surface speckled with white dust and casting a soft shadow. +train_40967.png A small, glossy, metallic emerald-green oval beetle with smooth, slightly striated elytra and a contrasting bright orange head/pronotum and dark legs, shown in a dorsal, slightly angled pose with antennae and legs splayed, sitting on a warm, mottled brown-orange background that resembles sunlit wood or a dried leaf. +train_41017.png A small glossy, dark metallic green-black beetle is shown in a dorsal three-quarter pose on a plain white background with a soft shadow, its smooth reflective elytra bearing bright orange-red patches near the pronotum and rear while legs are splayed outward and antennae project forward. +train_41071.png A small glossy dark brown–black beetle shown in a dorsal three‑quarter pose, its smooth reflective elytra with a faint central seam and short antennae visible and legs splayed outward while perched on a crumpled bright pink petal that forms a soft, textured background. +train_41100.png A small, glossy brownish-olive elongated beetle seen dorsally resting on a bright green leaf, its smooth, slightly iridescent oval elytra showing faint longitudinal striping, the body slightly tapered at the rear with short antennae and legs partially visible. +train_41213.png A small, convex metallic emerald-green beetle with smooth glossy elytra bearing faint darker flecking and a subtle central suture, shown in an oblique top‑down pose on a light gray textured surface near a curved pale edge, its raised body casting a short shadow with legs mostly hidden. +train_41285.png A small, oval, metallic turquoise-green beetle seen from a slightly oblique dorsal view, its smooth glossy elytra with a faint central suture and tiny dark head, antennae and legs visible, perched on a plain off-white surface that casts a soft shadow beneath it. +train_41370.png A small, glossy, dome-shaped beetle viewed dorsally at a slight angle, with bright orange-red elytra showing a central dark seam and a couple of rounded black markings, a pronounced specular highlight on the curved back, a dark head and tiny legs tucked beneath, sitting on a smooth pale peach-beige background. +train_41409.png A small beetle viewed from a dorsal three‑quarter angle, perched on a creased off‑white paper surface, with a smooth glossy metallic turquoise‑teal elytra showing faint longitudinal sheen, a darker almost‑black head and legs, and a subtle shadow beneath revealing its oval, slightly elongated body despite the low resolution. +train_41588.png A glossy, rounded beetle seen from a slightly dorsal angle, its metallic teal-green head and thorax contrasting with warm orange-brown elytra separated by a faint central suture, perched on a bright green leaf with a soft-focus grassy background. +train_41605.png A small, oval, glossy metallic emerald-green beetle viewed from a slightly top-down angle on rough gray pavement, its smooth iridescent elytra with a subtle central seam and faint speckled texture, contrasting orange-brown legs splayed outward and a small shadow beneath. +train_41616.png A small glossy black beetle with smooth, slightly iridescent elytra and a narrow, tapered abdomen is shown in a slightly angled dorsal view on a plain white surface (casting a faint shadow), its long segmented antennae and slender legs splayed outward and its head–thorax segmentation visible despite the low resolution. +train_41650.png A small, glossy dark brown to nearly black oval beetle viewed from a slightly oblique top-down angle, its smooth convex elytra showing a faint central seam and tiny pale speckles, with short tan legs partially visible and a soft shadow on a light-gray, rough-textured background that resembles fabric or stone. +train_41862.png A glossy dark brown to nearly black, smooth, oval beetle shown from above and slightly tilted on a bright turquoise textured fabric, exhibiting a faint central elytral seam, a subtle lighter rim around the body, a rounded dome-shaped profile with legs mostly concealed and a small pale speck nearby. +train_42052.png A small, oval, metallic teal-green beetle shown in a slightly oblique top-down pose with legs splayed and short antennae forward, its glossy, smooth elytra bearing a faint longitudinal sheen and darker head, resting on a vivid orange surface that resembles a flower petal. +train_42099.png A small, elongated beetle with glossy, smooth pinkish‑red elytra and a contrasting dark (nearly black) head and pronotum is shown from a slightly oblique dorsal view, its short antennae and slender dark legs visible as it rests on a pale, out‑of‑focus surface with a faint reddish object at the left edge. +train_42116.png A small, glossy metallic emerald-green oval beetle shown dorsally and perched at a slight angle on a thin brown twig against a soft-focus green-brown background, its smooth shiny elytra exhibiting a faint central seam and a bright specular highlight while the legs are mostly tucked beneath. +train_42172.png Close-up three-quarter dorsal view of a small metallic turquoise-green beetle with smooth, glossy oval elytra, a slightly darker head, visible black legs and short antennae, perched on a textured brown twig against a blurred teal-green background. +train_42288.png Top-down, slightly oblique close-up of a small bright-orange beetle with smooth, subtly glossy elytra bearing faint black spots and a darker head and thorax, its short legs and antennae pointed forward as it perches on a coarse beige fibrous surface, possibly bark or a dried leaf, scattered with tiny dark particles. +train_42461.png A small, matte-black beetle shown in a mostly dorsal view with a slightly convex, oval body and distinct head and pronotum, splayed jointed legs and short antennae visible as a sharp silhouette against a plain white background. +train_42560.png A small, dome-shaped beetle viewed from above with glossy dark brown to almost black elytra showing a faint bronze sheen and subtle longitudinal texture, perched dorsally on a pale, slightly fibrous off-white background (paper) with tiny specks of debris around it. +train_42669.png A small, oval beetle shown from a near‑dorsal, slightly head‑on viewpoint resting on a pale gray textured surface, with smooth glossy metallic green‑blue elytra separated by a darker median suture, a narrower reddish‑bronze head and partially tucked pale brown legs. +train_42870.png A small, glossy black oval beetle photographed from a slightly oblique top-down angle, its smooth, rounded elytra showing a faint central seam and tiny legs partly visible beneath, perched on a light, rough, speckled surface scattered with grit and a thin dark twig to the right. +train_42898.png A small, glossy metallic green oval beetle viewed from slightly above and angled to the right, perched on a blurred pale-green leaf background with smooth, reflective elytra showing a faint central suture and tiny legs partly visible beneath. +train_43201.png A small, glossy dark brown–black oval beetle seen from a slightly oblique dorsal angle, perched on a smooth pale-blue surface, with a faint central seam on the elytra, short legs tucked beneath and a subtle metallic sheen visible despite the low resolution. +train_43273.png A small, glossy metallic emerald-green beetle shown from a slightly oblique dorsal view with smooth, reflective oval elytra and a darker head and splayed black legs faintly visible against a vivid red background with a narrow darker edge. +train_43315.png A small, dome-shaped beetle with glossy dark brown-black elytra showing a faint central suture and subtle metallic sheen, seen dorsally perched on a bright green leaf with visible veins and a softly blurred green background, legs mostly tucked beneath its rounded body. +train_43643.png A small, glossy dark-brown to near-black oval beetle shown in a slightly oblique dorsal pose on a plain white surface, its smooth, shiny elytra reflecting light with short antennae and splayed legs visible and a soft shadow to one side despite the low resolution. +train_43668.png A small, light-brown beetle with smooth, subtly glossy elytra and a slightly darker head, shown in a near-dorsal view with legs mostly tucked underneath on an off-white textured surface, its faint midline suture and short antennae barely discernible despite the low resolution. +train_43675.png Glossy, dome-shaped orange-red beetle with a slightly darker rim and a small dark head, shown from a near-dorsal oblique viewpoint perched on a smooth mint-green surface with a soft shadow beneath and a tiny black speck visible on its elytron. +train_44032.png A small, dome-shaped beetle seen from a top-down view with smooth, glossy dark brown to reddish-brown elytra marked by a faint central suture and subtle lighter speckling, legs tucked beneath its body and resting on a pale, slightly textured skin-like background. +train_44080.png A shiny, small metallic emerald-green to blue beetle with smooth, slightly iridescent convex elytra and a visible central suture, shown dorsal close-up perched on a human fingertip with legs mostly tucked under against a blurred dark/skin-toned background. +train_44096.png A small, rounded beetle seen from a slightly dorsal, head-forward angle with glossy orange-red, smooth elytra showing a faint central seam and a darker blackish head/pronotum, perched on a bright pink textured surface (fabric) with tiny dark legs visible. +train_44210.png A small, bright lime-green beetle with glossy, domed elytra and a slightly darker head and tiny black legs is seen from a slightly elevated dorsal angle, perched on a smooth dark background that emphasizes faint reflective highlights and a subtle shadow beneath it. +train_44437.png A solid black, smooth-looking beetle shown top-down as a stark silhouette with rounded elytra and a narrower thorax, short forward-pointing antennae and six splayed legs visible against a plain white background. +train_44445.png A small, oval, glossy metallic green–gold beetle seen from a slightly oblique dorsal view perched on a pale beige twig or substrate, its smooth iridescent elytra showing faint longitudinal striations and a darker head/pronotum visible against a soft, out-of-focus green background. +train_44497.png A small, glossy metallic green-black beetle is shown in a near top-down, slightly angled pose with smooth, elongated elytra that catch a faint iridescent sheen and subtle lighter mottling, legs tucked beneath, resting on a pale beige, slightly textured background (appearing like skin or paper). +train_44801.png A small, metallic emerald-green beetle with smooth, glossy elytra seen from a near-dorsal view, showing a rounded oval body with a faint central suture and short legs partly visible beneath, resting on a plain white surface that casts a soft shadow. +train_44823.png A small, glossy metallic emerald-green oval beetle seen from a slightly top-down oblique view, its smooth iridescent elytra showing a subtle darker median seam and tiny darker head/legs, perched on a blurred warm pink–red surface with a soft shadow beneath. +train_44856.png Dorsal, slightly oblique view of a small, smooth, glossy, dark metallic blue‑green oval beetle with a bright orange‑red narrow rim around the elytra, a faint central suture and tucked legs, resting on a pale green, slightly textured surface. +train_44860.png A small beetle with glossy metallic deep teal-blue elytra bearing a faint central seam and subtle speckling, shown in a slightly oblique dorsal view with its legs and short antennae splayed outward, resting on a pale mint-green, slightly textured (fabric-like) background. +train_44890.png A small, top-down view of a smooth, glossy dark brown–black oval beetle with a faint median elytral seam and subtle reflective highlights, held slightly tilted against a plain, grainy white background. +train_45003.png A small, oval, domed beetle seen from above with glossy orange-brown elytra showing faint dark speckling and a narrow central suture, legs mostly tucked beneath, resting slightly tilted on rough gray, gritty pavement scattered with tiny pebbles and sand. +train_45221.png A small, glossy, oval dark metallic green-black beetle viewed dorsally as it perches on a human fingertip, its smooth, slightly iridescent elytra showing faint longitudinal sheen and tiny orange-brown legs and antennae contrasting against the blurred skin-toned background. +train_45289.png A small, metallic emerald-green beetle shown in a slightly oblique dorsal view with smooth, glossy iridescent elytra, a darker head and legs partially visible, perched lengthwise on a coarse, brown, bark-like textured background. +train_45423.png A small, glossy dark brown-to-black oval beetle seen from above at a slight angle, its smooth reflective elytra divided by a central seam with faint longitudinal striations and a slightly constricted pronotum with short legs tucked beneath, resting on a plain off-white surface speckled with tiny fibers and dust. +train_45430.png A glossy, dome-shaped beetle viewed from above at a slight rightward tilt, with dark brown to nearly black metallic elytra showing a faint central seam and a contrasting reddish-orange head/pronotum, smooth shiny texture with subtle light reflections, and short legs partially visible as it rests on a vivid green leaf background. +train_45434.png A small glossy metallic golden-yellow beetle shown in dorsal (top-down) view against a plain white background, with an elongated oval elytra bisected by a darker central suture, a contrasting black head and thorax, short segmented antennae, and splayed legs visible despite the low resolution. +train_45508.png A small, oval, metallic emerald-green beetle shown from a dorsal, slightly angled viewpoint with smooth glossy elytra bearing a faint central suture and subtle punctate texture, short brown legs partly visible and a soft shadow on a rough, light-gray grainy background. +train_45534.png A small, oval beetle with smooth, glossy, metallic blue-green elytra showing faint darker midline and a hint of coppery highlights, viewed from a dorsal-three-quarter angle as it clings to a narrow vertical green blade or stem with visible dark legs and antennae against a softly blurred leafy green background. +train_45770.png Dorsal, slightly angled view of a small glossy reddish-brown oval beetle with a smooth, shiny elytra showing a faint pale yellowish longitudinal streak and indistinct darker head, perched on a bright green leaf with a soft, out-of-focus background and legs/antennae barely visible. +train_45809.png A small, oval, glossy orange-brown beetle viewed from a slightly oblique dorsal angle, with a darker head, a faint central elytral suture and subtle speckling on smooth elytra, sitting on a rough, light beige sandy/gritty surface. +train_45825.png Top-down view of a small, glossy orange-red oval beetle with smooth, shiny elytra, a contrasting dark head and tiny black legs, perched on a blurred green leaf-like background with a faint suggestion of dark spots on the shell. +train_45889.png A small, elongated oval beetle appearing dark brown to nearly black with a slightly glossy, smooth elytral surface and a lighter brown head/pronotum, shown in a dorsal top-down pose on a pale, rough concrete-like background, with faint longitudinal ridges on the elytra and tiny legs partly visible underneath. +train_45984.png Dorsal-view small beetle with glossy reddish-brown oval elytra and a darker brown‑black head and pronotum, legs and short antennae splayed outward, perched on a pale bluish, slightly textured surface (fabric or paper) with soft highlights and a faint cast shadow underneath. +train_46051.png A small glossy orange-red, dome-shaped beetle seen from a slightly frontal-dorsal angle, perched on a plain white surface with a faint shadow, showing a smooth shiny elytra, a dark head and legs and a few indistinct black spots near the elytral margins. +train_46073.png A small glossy orange-yellow beetle seen from a slightly oblique dorsal view, its smooth shiny elytra patterned with irregular bold black blotches and a darker head and legs tucked beneath, perched against an out-of-focus deep black-brown background that emphasizes its bright, mottled coloration. +train_46095.png A small oval, glossy reddish-brown beetle viewed from above at a slight angle, with smooth, slightly speckled elytra showing faint longitudinal striations and a darker central streak, legs mostly tucked under, perched on a coarse gray concrete/stone surface scattered with tiny pebbles. +train_46130.png A small, glossy metallic emerald-green beetle with smooth, dome-shaped elytra seen in dorsal view perched on a thin brown twig against a blurred green-leaf background, its dark head and legs and a faint longitudinal sheen on the elytra visible despite the low resolution. +train_46153.png A small, glossy, dome-shaped reddish-brown beetle viewed from a slightly oblique top-down angle, resting on coarse orange fabric with shiny elytra showing faint darker markings and a nearly black head with tiny legs peeking out beneath. +train_46202.png A small, glossy metallic turquoise-green beetle with smooth, dome-shaped elytra and a faint midline seam, shown in a three-quarter dorsal view clinging to a thin pale twig against a soft, out-of-focus green background, its short dark legs and antennae barely visible. +train_46235.png A small, glossy metallic dark-green oval beetle shown in a dorsal/top-down view, its smooth, slightly domed elytra with faint longitudinal striations and partially tucked legs visible as it rests on a pale off-white surface casting a soft shadow. +train_46307.png A tiny, glossy orange-brown dome-shaped beetle is shown from above clinging to a bright green leaf against a soft, blurred green background, with its smooth shiny elytra and slightly darker head/thorax forming a compact, rounded silhouette despite the low resolution. +train_46353.png Bright orange-red, glossy, dome-shaped beetle with smooth, reflective elytra bearing several small round black spots, seen in a near top-down oblique view with its dark head and legs visible and slightly tilted against a soft-focus green leaf background. +train_46653.png A small, oval, iridescent emerald-green beetle with smooth, glossy elytra and a faint central seam is shown in a dorsal three-quarter view, resting on a rough gray surface (possibly skin or stone) with a bright specular highlight on its back and a dark, out-of-focus background with a small green glare to the left. +train_46769.png A glossy, domed orange-red beetle shown in a slightly oblique dorsal view perched on a soft-focus green leaf, its smooth reflective elytra split by a thin dark suture with a small black head and legs visible at the lower edge. +train_46952.png A small oval metallic emerald-green beetle seen from a dorsal/top-down viewpoint, its smooth glossy elytra showing subtle longitudinal sheen and a darker head, positioned on a plain pale background casting a faint shadow with legs barely visible beneath the body. +train_47049.png A small, oval beetle with glossy reddish-brown, smooth-domed elytra marked by a faint central suture, seen from above at a slight angle with short legs and antennae partly visible, resting on a soft off-white textured background that casts a subtle shadow. +train_47101.png A small, glossy dark brown–black oval beetle is shown from a slightly oblique dorsal view with a faint central suture and smooth, shiny elytra, legs and short antennae splayed against a pale gray, slightly textured flat surface near a blurred blue object in the lower-right. +train_47102.png A small, glossy orange-red dome-shaped beetle seen from a slightly oblique top-down view, its smooth elytra showing a central seam and a few indistinct black spots and a dark head with tiny legs, perched on a softly blurred green leaf background. +train_47136.png A small glossy orange-red beetle seen from an oblique dorsal view, its smooth domed elytra bearing a few indistinct dark spots and a black head and legs, perched on a soft off-white textured fabric background with bright specular highlights. +train_47435.png A small beetle seen from a slightly oblique dorsal view on a plain white surface with a faint shadow, displaying glossy dark brown-to-black oval elytra that contrast with a bright orange-red head and pronotum, slender splayed legs and segmented antennae, and an overall smooth, subtly iridescent texture visible despite the low resolution. +train_47914.png A small, convex oval beetle seen in a slightly angled dorsal view resting on a pale beige skin-like background, with glossy iridescent green-blue elytra meeting at a faint central seam, a darker (near-black) head and legs, and subtle longitudinal texture visible despite the low resolution. +train_47924.png Top-down view of a small, dome-shaped beetle with glossy dark bluish-black iridescent elytra showing subtle longitudinal sheen, tiny legs and short antennae partially visible, perched on a coarse light-gray gritty background. +train_47954.png Close-up, slightly oblique dorsal view of a small beetle clinging to a pinkish human fingertip, its elongated, glossy dark brown-to-black elytra showing a subtle metallic green sheen and faint longitudinal striations, with visible segmented antennae and splayed legs against a blurred skin background. +train_48087.png Glossy metallic emerald-green oval beetle seen from a dorsal view, perched on a bright, softly blurred leaf, its smooth iridescent elytra showing a faint central seam and bright specular highlights with a slightly darker head and shadowed underside visible at the lower edge. +train_48190.png A small, glossy metallic green beetle shown from a top-down view resting on a flat white surface, its smooth oval elytra with a faint central suture, slightly darker head, and tiny leg shadows visible despite the low resolution. +train_48272.png Top-down view of a small, dome-shaped beetle with smooth, slightly glossy warm brown to reddish-orange elytra showing faint longitudinal striations and tiny dark speckles, a darker head/pronotum and legs mostly tucked underneath, resting on a pale, granular sandy or concrete surface with scattered dark grit. +train_48297.png A small beetle appears as a shiny, metallic emerald-green oval with smooth, slightly iridescent elytra, shown in a slightly angled dorsal view with a darker head and short antennae pointed forward and darker legs splayed beneath against a plain white background. +train_48406.png Dorsal-view of a small, glossy reddish‑orange oval beetle with smooth, slightly reflective elytra showing a faint central seam and a couple of darker specks, perched head‑forward on a rough brown, bark‑like surface. +train_48696.png A small, glossy, dome-shaped beetle with dark brown to nearly black smooth elytra showing a faint central seam and subtle lighter-brown margins, photographed from a slightly elevated dorsal angle with its legs mostly tucked beneath, resting on a rough, light-gray speckled concrete or stone surface. +train_48861.png A small convex beetle with a glossy metallic emerald-green elytra and faint longitudinal seam, shown in a slightly oblique dorsal view perched on rough brown wood next to a worn white-painted edge, its smooth, reflective texture and rounded oval body visible despite the low resolution. +train_49119.png A glossy, dome-shaped red beetle with distinct black spots and a small black head is seen from a slightly oblique top-down angle as it clings to a green leaf with visible veins and a soft, out-of-focus green background, its shiny elytra and tiny black legs discernible despite the low resolution. +train_49164.png A small dorsal-view beetle with a glossy metallic blue-green, smooth oval elytra showing a faint longitudinal sheen and dark midline, short antennae and legs visible as stubbier dark projections, posed diagonally on a coarse gray concrete/gravel surface. +train_49220.png A small, bright lime-green beetle shown in a top-down/dorsal pose with a smooth, slightly glossy oval body divided by a faint central seam, a darker head with short antennae and tiny legs, set against a plain white background. +train_49282.png A small, glossy dark brown–black oval beetle shown in an oblique top-down view, its smooth, slightly reflective elytra and tiny legs visible beneath it as it sits on a white textured surface (paper-like) with a faint pink smudge nearby. +train_49317.png A small glossy orange-brown oval beetle seen from a dorsal three-quarter view resting on sandy beige substrate with tiny pebbles, its smooth, slightly ridged elytra showing faint longitudinal striations and splayed legs with short antennae visible. +train_49460.png A small, glossy emerald-green beetle with smooth, slightly iridescent elytra and a darker head, shown in a near-dorsal, slightly angled top-down pose on a plain white background with its legs mostly tucked under and faint bronze highlights along the elytral edges visible despite the low resolution. +train_49567.png A small, glossy reddish-brown oval beetle seen from a slightly dorsal-angled viewpoint, its smooth, subtly mottled elytra with a faint central suture and tiny reflective highlights visible as it clings to a bright green leaf against a soft-focus green background. +train_49627.png The beetle appears dark brown to black with a slightly glossy, smooth-elongaed oval body shown in dorsal view, legs and long threadlike antennae splayed outward on a plain off-white background, with faint longitudinal ridges on the elytra and a tapered posterior visible despite low resolution. +train_49808.png A small elongate oval beetle seen dorsally, with smooth glossy orange-brown elytra mottled by darker brown flecks and faint longitudinal ridges, short antennae and splayed legs gripping a thin pale twig against a soft, out-of-focus pale background with a hint of green foliage at the upper-left. +train_49896.png A small, glossy reddish-brown, dome‑shaped beetle seen from above perched on a human fingertip, its smooth, slightly reflective elytra showing a faint central suture and darker head while a soft, out‑of‑focus green background suggests vegetation. +train_49939.png A small, glossy dark brown-to-black oval beetle with a subtle metallic sheen and faintly segmented elytra and short antennae, shown in a dorsal/three-quarter pose on a bright white surface that casts a soft shadow beneath it. +train_49996.png Top-down view of a small, glossy dark blue-black oval beetle with smooth, domed elytra and a faint orange patch on one flank, posed slightly angled on a coarse beige sandy/rocky background. +train_49998.png Seen in a slightly angled dorsal view, the small beetle has a glossy dark brown-to-black oval body with a faint central seam and tiny reddish-brown legs splayed outward, casting a soft shadow on a light tan, slightly speckled surface with a faint curved crease. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/bicycle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/bicycle_descriptions.txt new file mode 100644 index 0000000..3403b95 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/bicycle_descriptions.txt @@ -0,0 +1,500 @@ +train_00016.png A matte orange-red bicycle shown in a three-quarter side view propped upright against a dim, cluttered garage wall, revealing chunky black tires, a curved top tube and a faint rear rack with slightly worn paint. +train_00030.png A teal-green metal bicycle with a glossy frame and black saddle is shown in side profile with the front wheel slightly turned, parked upright on a gray concrete curb against a brownish wall, featuring thin black tires and a faint ground shadow. +train_00130.png A glossy orange-red bicycle captured in a side-on view, its thin metal frame and narrow black tires with visible spokes and curved handlebars clearly outlined while leaning on light-gray pavement against a softly blurred pale wall background. +train_00219.png A pale turquoise/sky-blue city bicycle rendered with a smooth flat graphic texture, shown in right-facing side profile against a plain white background, with two round wheels and small hubs, a thin step-through frame, upright swept-back handlebars, a compact saddle and a rear rack visible despite the low resolution. +train_00298.png A low-resolution side-view of a small red-pink city bicycle with a glossy, slightly pixelated finish, thin white-rimmed wheels and an upright step-through frame shown at a slight left-facing angle against a plain white background, with a curved top tube, visible chain guard and compact rear rack discernible despite the blur. +train_00575.png A low-resolution side-profile of a cream-beige bicycle with a matte, slightly weathered finish, thin tubular frame and narrow rimmed wheels with visible spokes, shown upright and slightly tilted against warm, grainy pavement or packed-dirt background with a soft shadow beneath. +train_00663.png A teal-blue metal-frame bicycle with a slightly matte finish, shown in side profile and standing upright on a paved surface, featuring a black saddle, straight handlebars, silver-rimmed wheels and a small rear rack, set against a grassy green background under a pale blue sky. +train_00921.png A low-resolution, pixelated black line-drawn bicycle shown in clear side profile facing right, with a narrow, triangular diamond frame, thin tires and curved drop-style handlebars rendered as jagged black strokes against a plain white background. +train_00964.png A flat black outline of a bicycle shown in left-side profile against a plain white background, with a thin diamond frame, two equal spoked wheels, an upright saddle and simple handlebars rendered as a smooth silhouette with no surface texture. +train_00984.png A glossy magenta-pink step-through city bicycle captured in a three-quarter side view, parked on pavement against a dark leafy outdoor background, with upright handlebars, a small front basket and full fenders discernible despite the low resolution. +train_00996.png A glossy orange city-style bicycle is shown from a three-quarter front-left viewpoint, standing on its kickstand on paved ground against a light beige wall with a small blue sign, featuring a curved step-through frame, upright handlebars, a black saddle and a rear rack with thin tires. +train_01023.png A side-profile, lightweight bicycle with a glossy bright orange metal frame and thin black components—black saddle, slim handlebars, thin-spoked black wheels and visible chainring—posed against a plain white background, giving a minimalist road-bike silhouette despite the low resolution. +train_01114.png A flat side-profile cyan-blue bicycle with a simple triangular frame and solid-looking disc wheels (spokes indistinct), shown facing right against a textured dark-teal circular field bordered by a thick maroon ring. +train_01158.png A teal-blue glossy metal road bike shown in a right-facing three-quarter side view against a plain white background, with thin black tires, drop handlebars, a narrow racing saddle, visible chainset and caliper brakes. +train_01255.png A flat, solid-black silhouette of a standard bicycle shown in clear left-profile with thin spoked wheels, a diamond frame, straight handlebars and a small saddle set against a plain white background. +train_01290.png A small red-painted bicycle with a glossy metal frame seen in a low-resolution three-quarter side view, resting on sunlit urban pavement with blurred pedestrians and parked vehicles in the background, showing a black saddle, upright handlebars and thin tires. +train_01362.png A compact glossy red bicycle with a curved frame, white chain-guard and rear rack, parked with its front wheel turned slightly to the right on gray pavement beside a low green fence and grassy verge, with visible wheel spokes and a cast shadow despite the low resolution. +train_01457.png Side-view of two parked bicycles — one bright red and one teal — with smooth metal frames and black tires, leaning together against a pale wall on a gray paved surface, their wheels and handlebars overlapping. +train_01555.png A simple black line-drawn bicycle shown in a right-facing side profile with thin spoked wheels, a visible chainring and pedals, upright saddle and handlebars, rendered with smooth flat strokes on a plain white background. +train_01564.png A glossy pale-blue city bicycle with upright handlebars and slim tires is shown from a three-quarter front-left view, leaning on its kickstand against a pale indoor wall on a tiled floor, with a simple metal rear rack and partial chain-guard faintly visible despite the low resolution. +train_01747.png A flat black line-drawn bicycle with a smooth matte vector look, shown in full side profile facing right on two thin-spoked wheels with a classic diamond frame, visible chainring and saddle, and upright curved handlebars set against a plain white background. +train_01818.png A flat, solid-black silhouette of a classic road bicycle shown in a right-facing side profile—with thin tires, triangular frame, drop handlebars, saddle and chainring visible—set against a plain white, textureless background. +train_02010.png A glossy turquoise/aqua metal-framed bicycle with thin black tires, a black saddle and drop-style handlebars is shown in a three-quarter front-left view with the front wheel slightly turned, standing on pale concrete pavement against a blurred light-colored wall. +train_02079.png A small, matte-black bicycle shown in a low-resolution side-on view with thin-spoked wheels, a visible top tube, saddle and handlebars, set against a plain white background. +train_02105.png A glossy pink-red bicycle with a slim metal frame and black tires is shown in a three-quarter side view, parked upright on light pavement against a blurred green foliage background, with upright handlebars and clearly visible wheel spokes. +train_02163.png A small glossy orange-red city bicycle shown in near-profile leaning slightly to the left on pavement against an urban concrete background with a metal fence, with thin spoked wheels, upright handlebars, a black saddle and a simple rear rack visible despite the low resolution. +train_02599.png A turquoise/teal glossy-framed bicycle shown in a three-quarter side view, parked on a sunlit grassy/paved surface with a white saddle, thin black tires, upright handlebars and a small rear rack discernible despite the low resolution. +train_02838.png A glossy turquoise-blue step-through bicycle seen in profile and slightly angled to the right, with swept-back upright handlebars, a rear luggage rack, curved metal fenders and white‑wall tires, parked on a concrete sidewalk against a metal railing in an outdoor urban setting. +train_02852.png A flat black silhouette of a bicycle shown in exact side profile against a clean white background, with solid fill and thin tires, a classic diamond frame with visible chainring and seat tube, simple rounded handlebars and a faint soft shadow beneath the rear wheel. +train_02973.png A small, flat black silhouette of a bicycle shown in right-facing side profile with thin solid circular wheels, a straight top tube and raised saddle, simple curved handlebars, and no background details beyond a plain white field. +train_03053.png A low-resolution flat pink/purple pixelated side-view of a bicycle with a thin tubular frame, upright handlebars, a visible saddle and two spoked wheels, shown against a plain white background. +train_03228.png A small glossy lavender-purple bicycle captured in a low three-quarter side view, with a compact frame, small wheels and a pale saddle, leaning on pale concrete/tiled ground against a blurred neutral background, the handlebars and chainguard faintly visible despite the low resolution. +train_03286.png A side-on view of a maroon-brown, thin-line bicycle silhouette with black solid wheels, a vintage diamond frame, upright saddle, visible chainring and pedals, all centered on a plain white circular background with a faint gray rim. +train_03566.png A right-facing side‑profile bicycle with a slim matte-black frame, upright handlebars and small black saddle, notable bright turquoise wheel rims with largely solid centers (no visible spokes) and a faint shadow beneath, shown against a plain light‑gray background. +train_03584.png A matte turquoise/teal step-through city bicycle shown in side profile slightly angled left, with upright handlebars, white-walled tires and matching fenders, a rear rack and small front carrier, resting on a pale neutral floor with a soft shadow. +train_03597.png A glossy red-orange metal-frame bicycle shown in side profile, slightly angled to the right and standing upright on a gray paved surface, with matte black tires and saddle and simple straight handlebars, set against a bright, multicolored graffiti-style wall. +train_03616.png A low-resolution side-on view of a red bicycle with a glossy painted frame and thin black tires, leaning on its kickstand against a pale textured wall on a paved sidewalk, showing upright handlebars and visible wheel spokes. +train_03653.png A light off-white metal-frame bicycle is shown in a slightly angled side profile with thin tubing, black spoked wheels and tires, an attached rear luggage rack and upright handlebars, leaning on sunlit pavement against a textured pale exterior wall. +train_03954.png A small glossy red bicycle with a black saddle and chunky black tires viewed in a three-quarter side angle, slightly turned left and resting on light pavement against a pale beige wall, with silver spokes and a dark chain-guard discernible despite the low resolution. +train_04207.png A turquoise-blue metallic-framed bicycle is pictured in side profile with thin black road tires, a slim black saddle and straight handlebars, appearing upright and slightly angled on sunlit grass against a blurred pavement and green foliage background. +train_04212.png A low-resolution side-profile red bicycle with a glossy metal frame and thin black tires, pictured against a plain white background with a faint shadow, showing a curved top tube, round wheels, simple saddle and handlebars clearly distinguishable despite pixelation. +train_04221.png A side-profile shot of a dark matte-black city bicycle with thin metal tubing and narrow tires, shown against a plain light background, with upright swept-back handlebars, a rear luggage rack and visible chainring and spoke outlines despite the low resolution. +train_04291.png A glossy orange-red metal bicycle captured in side view, leaning slightly to the right on a gray paved curb with thin silver rims and black tires, a visible triangular frame, straight handlebars and compact saddle set against a blurred urban pavement background. +train_04320.png A glossy mint-green city bicycle is shown in a three-quarter side view, leaning slightly with the front wheel turned left and revealing upright handlebars, a black saddle and spoked dark wheels, set on a light tiled floor against a pale wall. +train_04367.png A neon lime-green bicycle with a glossy metal frame and black tires is shown in a slightly angled side view, standing upright on a worn gray tiled pavement with scattered dark marks, the compact low-top-tube frame, exposed chainring and thin-spoked wheels visible despite the low resolution. +train_04437.png A teal/turquoise step-through city bicycle with swept-back upright handlebars, visible rear rack and fenders, shown in a front-left three-quarter view leaning by a sidewalk with green shrubbery and a brown building in the background. +train_04448.png A monochrome black line-drawing of a bicycle shown in clear side profile on a plain white background, rendered as flat, sketch-like strokes with a thin diamond frame, slim wheels with simple spoke circles, a small saddle and curved drop-style handlebars. +train_04600.png A light blue–teal painted bicycle with a slightly glossy metal frame and thin dark tires is seen in a three-quarter front-side view leaning against a warm reddish-brown textured background (wall or fence), with upright handlebars, visible wheel spokes and a small front rack/basket silhouette discernible despite the low resolution. +train_04690.png A matte light-brown/beige bicycle shown in full side profile against a plain white background, with a simple triangular metal frame, thin black tires with visible spokes, a slim saddle and upright handlebars, and the chainring and pedals faintly visible. +train_04838.png A bright red bicycle with a triangular frame, black saddle and narrow black tires is shown in a three-quarter side view with the front wheel slightly turned, parked on light-gray pavement beside a dark vertical post against a blurred urban background, with thin metal spokes and upright handlebars still discernible despite the low resolution. +train_04900.png A glossy cherry-red step-through city bicycle is shown in a three-quarter side view, its smooth metal frame and black tires with thin silver spokes resting on a pale sidewalk against a light-colored wall, with a small metal front rack and visible kickstand. +train_04911.png A small glossy red children's bicycle with a thin metal frame and black tires is captured in a slightly elevated three-quarter front view, resting on sunlit concrete near a pale blue wall, with visible metal spokes and a compact black saddle. +train_04921.png A glossy red-orange metal-frame bicycle with thin black wheels and upright handlebars is shown in a three-quarter side view, leaning on its kickstand on gray pavement against a pale beige wall, with the circular spokes and chainring visible despite the low resolution. +train_05001.png A glossy magenta step-through bicycle with small black wheels, a black saddle, visible chain guard and rear rack, and a white front basket, shown in a slightly angled side view parked on sunlit pavement with parked cars and a storefront in the blurred background. +train_05033.png A small glossy red bicycle with a curved step-through frame, white chain guard and saddle, and black tires with white-rimmed wheels is shown in side profile slightly angled left, parked on grey concrete against a pale beige wall with a faint shadow beneath. +train_05152.png A teal-blue metal bicycle photographed in side profile, leaning upright against a pale wall on a sunlit paved surface, with dark saddle and handlebars, black spoked wheels and thin tires, and scuffed paint that gives the frame a slightly worn texture. +train_05213.png A side-profile, slightly angled view of a small bicycle with a dull bronze/bronze-metallic frame and matte black wheels and thin spokes, upright against a pale gray wall with vertical dark stripes, showing an identifiable rear fender/chain-guard and upright handlebars despite the low resolution. +train_05352.png Side-on, low-resolution image of a dark gray metallic road-style bicycle with a smooth tubular frame and thin tires, shown upright in profile against a plain white background with a faint ground shadow, where curved drop handlebars, spoke-filled wheels and the chainset are still distinguishable despite the blur. +train_05375.png A matte teal/blue bicycle shown in clear left-side profile against a bright, slightly textured concrete or pavement background, featuring a slim metal top tube, curved handlebars, thin black tires with visible spokes and a faint shadow cast to the right. +train_05386.png A glossy orange-painted bicycle shown in a clean side profile facing right against a plain light background, with thin black tires and rims, visible wire spokes, an upright black saddle and handlebars, a slightly sloping top tube and a discernible chainring. +train_05566.png A small matte red-orange bicycle captured in three-quarter side view with black tires and a slightly turned front wheel, its metal frame and handlebars visible against a green grassy/wooded outdoor background with a person in blue standing behind. +train_05588.png A low-resolution image of a dark matte black step-through city bicycle viewed in a three-quarter left-side pose, leaning slightly on a kickstand against a bright, mostly featureless pavement/studio-like background, with upright swept-back handlebars, a small front wire basket, spoked wheels and a rear rack visible. +train_05640.png A low-resolution side-angle view of a matte turquoise/teal bicycle with thin metal tubing and upright handlebars, shown propped on grass beside a gray paved area, with prominent black tires and slim spokes still discernible despite the blur. +train_05757.png A flat, high-contrast white bicycle silhouette shown in side profile against a dark navy circular background, with smooth solid wheels, a triangular frame, straight handlebars and a small saddle rendered as a simplified icon-like shape. +train_05759.png A small turquoise glossy metal bicycle is seen from a front-left three-quarter viewpoint with a bright white front wheel and dark spokes, upright handlebars and a black saddle, parked on a gray paved surface against a blurred patch of green grass. +train_05830.png A flat, lime-green stylized bicycle shown in right-facing side profile with solid circular wheels, a simple triangular frame, curved handlebars and a small saddle, set centered on a teal circular background with a subtle darker shadow to the lower right, the texture smooth and vector-like. +train_05866.png A cream-colored, glossy step-through city bicycle photographed side-on and parked on a concrete curb beside a narrow strip of grass, with upright handlebars, black tires and silver rims, visible full-length fenders, a rear rack and a small front basket/headlight silhouette discernible despite the low resolution. +train_05886.png A matte red road-style bicycle with a triangular metal frame, drop handlebars wrapped in light tape and a black saddle, shown in profile leaning against a pale outdoor wall on a concrete surface, with narrow black tires, bright white rims and a visible spoke pattern despite the low resolution. +train_06070.png Two small black line‑drawn bicycles shown in side profile with thin spoked wheels and simple diamond frames that overlap slightly, presented as low‑resolution cartoon silhouettes against a plain white background. +train_06092.png A simple black line-drawn side-profile of a bicycle shown left-facing on a plain white background, with a thin diamond frame and narrow saddle, straight upright handlebars, two spoked wheels and visible pedals and chainring rendered in matte ink-like strokes. +train_06222.png A glossy turquoise/teal bicycle shown in a slightly angled side view, leaning with its slim, dark wheels and thin metal frame tubes clearly silhouetted against a saturated magenta/pink background, the smooth metallic finish and a light-colored saddle visible despite the low resolution. +train_06293.png A side-profile of a bright orange-red bicycle with a smooth, matte-looking frame and black tires, set against a flat pale turquoise background with a faint ground shadow, showing a classic triangular frame, thin rims and a visible chain/gear cluster despite the low resolution. +train_06330.png A dark metallic-gray bicycle with a mild sheen, shown in a near side-on profile with both thin, spoked wheels and a triangular frame with a slightly forward-leaning fork, set against a bright, pale, softly blurred background. +train_06386.png A low-resolution side-profile of a light turquoise (teal) bicycle with a smooth, matte frame and thin black tires, shown upright against a pale, slightly mottled background and revealing an upright handlebar, visible saddle and chainstay silhouette despite the blur. +train_06519.png A low-resolution photo shows a light-blue metal bicycle seen in side profile, its slightly glossy frame and visible triangle of the main tube leaning on a kickstand on a sunlit concrete sidewalk in front of a pale wall, with black tires, silver rims and a simple straight handlebar and rear rack discernible despite the blur. +train_06540.png A dark metal bicycle is shown in right-side profile with a smooth tubular frame and two round wheels, handlebars and saddle silhouetted, standing upright (on a kickstand or support) against a pale, featureless background. +train_06701.png A dark-black bicycle shown in near side-profile leaning slightly left on a light, grainy pavement background, with a compact frame, thin tires, visible spoke patterns and a faint shadow on the ground. +train_06832.png A small glossy pink bicycle with a curved step‑through metal frame and white‑rimmed tires is shown in a left three‑quarter view on pale pavement, with upright handlebars, a compact saddle and a faint rear rack or carrier visible despite the low resolution. +train_06903.png A pinkish-red glossy metal city bicycle is shown in three-quarter side view leaning against a low concrete/stone wall on a sunlit paved area, with upright handlebars, thin tires, a visible rear rack and chain guard and faint signs of wear on the frame. +train_07101.png A small teal-blue bicycle with a matte metal frame shown in rough side profile tilted slightly to the left against a pale, neutral pavement or tiled background, where the two round wheels, straight handlebars and slim top tube are still discernible despite the low resolution. +train_07105.png A compact red bicycle with a glossy finish and black saddle, shown from a low three-quarter front-left angle leaning by a light-colored curb on a city sidewalk, its front wheel and handlebars slightly turned toward the camera and the simple frame and chain area discernible despite the low resolution. +train_07119.png A flat, light-cyan line-art bicycle shown in full side profile against a plain white background, with smooth uniform strokes that outline two round wheels, a simple triangular frame, upright handlebars and a saddle despite the low resolution. +train_07120.png Side-on, low-resolution image of a matte light‑blue metal bicycle with a simple diamond frame, thin black tires and visible spoke patterns, straight handlebars, and a compact saddle, positioned on a gray paved urban surface with blurred figures and a red patch of clothing in the background. +train_07137.png A small light-blue bicycle with a matte-painted metal frame shown in side profile against a plain white background, featuring two black wheels with thin spokes, a red rear triangle/fender, a dark saddle and upright handlebars, and a simple chain guard visible despite the low resolution. +train_07161.png A teal-blue glossy bicycle shown in clear left-side profile, leaning on its kickstand against a bright, nearly white background, with visible black tires, upright handlebars and a simple rear cargo rack. +train_07229.png A matte-black, silhouette-style bicycle is shown in full side profile against a plain white background, with two thin-spoked wheels, a straight top tube and angled down tube, upright handlebars slightly turned, a small saddle, and a narrow rear rack visible despite the pixelated low resolution. +train_07255.png A glossy mustard-yellow bicycle shown in a right-side profile against a plain light background, featuring a slim diamond frame with thin road tires, downward-curving drop handlebars and a simple saddle that create a clean, minimal silhouette despite the low resolution. +train_07286.png A light turquoise metal city bicycle with a slightly glossy finish is shown in three-quarter side view resting on its kickstand on a sunlit paved sidewalk in front of a beige wall, with upright handlebars, a black saddle, thin black tires with visible silver spokes and a rear luggage rack. +train_07362.png A low-resolution image of a small glossy pink-purple bicycle seen in profile from a slight rear-side angle, ridden on sunlit tan pavement with blurred greenery in the background, showing a compact step-through frame, upright handlebars and white-rimmed wheels with visible spokes despite the blur. +train_07517.png A small glossy red children's bicycle with white-rimmed wheels and a low step-through frame is shown in a left three-quarter side view standing on a smooth gray floor against a pale wall, with visible black handlebars, a chain guard and small training wheels. +train_07699.png A light-blue, glossy step-through cruiser bicycle seen in three-quarter side view, standing upright on a sunlit tiled pavement against a pale wall beside an orange bike, with swept-back handlebars, a small front basket, white-walled tires and a rear rack visible despite the low resolution. +train_07715.png A centered, flat solid-black, line-drawn side-profile bicycle icon on a plain white background, showing two round wheels, a triangular diamond frame, a small saddle and upright handlebars in a minimalist silhouette. +train_07946.png A bright orange-painted bicycle with a triangular metal frame, black saddle and thin black road-style tires is shown in a low-resolution side/three-quarter view leaning against a dark vertical post on a pale paved urban sidewalk, with exposed spokes and the chainring faintly visible despite the blur. +train_08153.png A small glossy light-blue children's bicycle with a black saddle and white-rimmed tires is shown in side profile, slightly angled with the handlebars turned toward the camera, leaning in a cluttered indoor corner on a concrete floor against a pale beige/green wall, its tiny rear training wheels and chain-guard silhouette visible despite the low resolution. +train_08191.png A cream-colored, glossy step-through city bicycle is shown in a side-profile view slightly angled toward the camera, standing on its kickstand against a plain pale studio-like background, with upright swept-back handlebars, a wire front basket, metal rear rack, full fenders and thin road tires visible despite the low resolution. +train_08222.png A side-profile view of a small yellow–orange bicycle with a smooth, slightly glossy frame, thin black spoked wheels, visible chain, pedals and saddle, and curved handlebars, shown facing right against a plain white background. +train_08355.png A side-profile, flat turquoise-blue bicycle icon with a smooth, uniform matte texture showing two solid circular wheels, a simple minimalist frame with a visible top tube and saddle, upright handlebars slightly turned right, and a faint shadow on a plain white background. +train_08408.png A low-resolution side-on view of a glossy red-orange bicycle with thin metal frame tubes and black tires, slightly angled toward the camera and resting on a gray paved surface in front of a blurred blue-gray wall, with an upright handlebar and a visible rear wheel and chainstay despite the blur. +train_08509.png A glossy pink-magenta step-through city bicycle viewed in a three-quarter side pose, parked on a gray paved sidewalk beside a strip of grass, showing swept-back handlebars, a rear rack and fenders and contrasting white-walled tires visible despite the low resolution. +train_08545.png A light blue metal-framed bicycle with a slightly glossy finish and black tires is shown three-quarter-front with the front wheel turned toward the camera and propped on a kickstand on a gray paved surface in front of a pale, slightly textured wall, with straight handlebars, a slim saddle, and exposed chain area visible despite the low resolution. +train_08674.png A small glossy magenta-pink bicycle shown in a low-resolution side/three-quarter view, with two rounded wheels, a low step-through frame, upright handlebars and a short saddle silhouetted against a dark, nearly black background. +train_08715.png A faded teal-blue metal bicycle with a slightly weathered matte finish is shown in a three-quarter side view leaning on its kickstand on a light-gray concrete sidewalk beside a pale wall, with a clearly visible large front wheel, upright handlebars and a dark saddle despite the low resolution. +train_08744.png A small glossy orange-red bicycle with a thin metal frame and black rubber tires is shown in left-side profile, leaning on its kickstand on a light paved surface with a blurred neutral background, the saddle and straight black handlebars still discernible despite the low resolution. +train_08780.png A matte off-white city bicycle is shown in side profile with thin black wheels, upright swept-back handlebars and a simple single-diamond frame, parked on a sunlit paved sidewalk against a pale curb and wall with a small orange rear reflector or bag by the back wheel visible despite the low resolution. +train_08933.png A mint-green, glossy step-through city bicycle captured in near side-profile, standing on its kickstand against a light-colored wall on a paved floor, with upright swept-back handlebars, a rear rack and fenders, and lighter-colored wheel rims visible despite the low resolution. +train_09006.png I can’t reliably discern the bicycle’s specific colors, textures, or distinguishing details from this low-resolution image—please upload a higher-resolution or closer photo so I can provide an accurate description. +train_09066.png A matte-black bicycle shown in a three-quarter side view with a thin frame and two spoked wheels silhouetted against a warm beige, slightly grainy background, the handlebars and front wheel angled slightly toward the viewer. +train_09074.png A glossy teal/sea‑green metal bicycle with thin black tires and silver spokes is shown in a three‑quarter side view, propped on its kickstand on sunlit cracked pavement against a pale textured wall, with a white saddle and upright handlebars visible despite the low resolution. +train_09094.png A pale mint-green glossy step-through bicycle is shown in full side profile facing left, with thin black tires, swept-back upright handlebars, visible fenders and a rear luggage rack, set against a flat, featureless pale-gray background. +train_09101.png A matte-black, flat silhouette of a bicycle shown in clean side profile facing right on a plain white background, with a thin triangular frame, two spoked wheels, a visible saddle and pedals, and curved/drop-style handlebars rendered as simple line art. +train_09132.png A light turquoise metal bicycle captured from a low side angle, resting on a pale concrete/tile surface with soft shadows, showing black tires, a white saddle and straight handlebars visible despite the low resolution. +train_09230.png A flat, solid-black side-profile silhouette of a road-style bicycle with a classic diamond frame, thin spoked wheels, visible chainring and saddle, and drop handlebars rendered without texture against a plain white background. +train_09317.png A glossy orange-red step-through city bicycle is shown in a three-quarter side view leaning against a pale beige wall on a paved, shadowed surface, with upright handlebars, a dark front basket and full fenders over both wheels visible despite the low resolution. +train_09356.png A pale blue, matte-painted city bicycle with a thin metal frame and dark spoked wheels is shown in a side‑front view leaning against a sunlit beige stucco wall on paved ground, with upright handlebars and the wheel spokes and chain area faintly visible despite the low resolution. +train_09439.png A glossy orange city bicycle is captured in a front-left three-quarter view, leaning on a sidewalk in an indistinct urban street scene, with thin black tires, an upright swept-back handlebar, a light tan saddle and a small rear rack visible despite the low resolution. +train_09518.png A small bright red bicycle with a slightly glossy metal frame and a light-colored saddle is shown from a front-left three-quarter view, leaning on its kickstand at a slight angle on a concrete sidewalk in front of a muted gray storefront wall and doorway, with visible thin spokes, straight handlebars and a compact rear rack despite the low resolution. +train_09534.png A red-painted bicycle with a diamond frame and thin black tires shown in clean side profile against a plain white background with a faint shadow beneath, featuring a slim dark saddle, straight handlebars and a visible chainring. +train_09572.png A small bright blue bicycle with a matte finish and black tires is shown in left-side profile on a light gray, slightly rough concrete surface, with upright handlebars, a compact saddle and visible wheel spokes and chain area despite the low resolution. +train_09614.png A light-blue bicycle shown in a right-side profile with a glossy metal frame, thin black wheels and tires, upright drop-style handlebars and a small saddle, photographed against a plain white background with a faint shadow and visible chainring and seatpost despite the low resolution. +train_09615.png A small child's bicycle with a glossy teal-green frame, white saddle and orange chain-guard, shown from a slightly angled side view leaning on its kickstand with the front wheel turned slightly right and a tiny training wheel visible, standing on rough gray asphalt beside a low curb and blurred greenery in the background. +train_09650.png A solid black, flat silhouette of a classic diamond-frame bicycle shown in side profile facing right, with thin tires, a straight top tube, curved handlebars and a visible seat and chainring, set against a plain white background. +train_09657.png A low-resolution image shows a glossy red tubular-frame bicycle in near-profile with the front wheel slightly turned toward the camera, black tires and saddle, a small rear rack, standing on gray pavement against a blurred urban backdrop with a blue vertical object and scattered pavement markings. +train_09827.png A low-resolution, slightly angled side-profile of a teal-painted bicycle with a matte frame and curved upright handlebars standing on pale, lightly graffiti-marked concrete, the thin black tires, chainring silhouette and saddle outline visible despite the blur. +train_09972.png A dark navy-to-black glossy step-through city bicycle photographed from a front-left three-quarter view, leaning against a low tiled wall on a narrow sidewalk in front of a white building entrance with potted plants and a small orange cone, with upright handlebars, a visible rear rack, and lighter-colored wheel rims and fenders discernible despite the low resolution. +train_10098.png A small glossy light-blue and white children's bicycle with pink/red rear fender and saddle detail, shown in a three-quarter side view leaning on a concrete floor against a pale indoor wall, with chunky tires, a visible chain guard and handlebars turned slightly toward the camera. +train_10468.png A flat, matte-black side-profile silhouette of a road-style bicycle with a thin diamond frame, drop handlebars, narrow tires, visible spoked wheels and chainring, centered upright against a clean, smooth white background. +train_10477.png A pale cream-to-pink, smooth-painted step-through bicycle shown in side view, standing on pavement with its kickstand against a light-colored wall backdrop, featuring thin tires, swept-back upright handlebars and a small rear rack visible despite the low resolution. +train_10504.png A matte dark-gray bicycle with a thin metal frame and spoked wheels is shown in side view, parked upright against a pale beige wall on a paved sidewalk, with a high saddle and a small rear rack visible above the back wheel. +train_10523.png Glossy seafoam-teal step-through bicycle shown in near-side profile, parked upright with its front wheel slightly turned toward the camera and a small rear rack and dark tires visible despite the blur, leaning against a pale beige wall on tiled pavement with a soft shadow cast beneath. +train_10762.png A matte-black, slender road-style bicycle is shown in side profile leaning slightly left, its triangular frame, drop handlebars and thin tires visible against a plain light background with a faint shadow beneath and no prominent accessories. +train_10794.png A small bright blue children's bicycle with a glossy metal frame and curved handlebars is shown in a three-quarter side view leaning slightly left against a pale, washed-out background, with two thick black tires (white rim accents visible), a compact saddle and a chain-guard silhouette discernible despite the low resolution. +train_10798.png An off-white step-through city bicycle with conspicuous orange rims and black tires shown in near-side profile leaning on its kickstand on a light-grey tiled sidewalk against a beige storefront, with upright handlebars and a small rear rack visible despite the low resolution. +train_10951.png A matte teal road bicycle with a slim metal frame and drop handlebars is shown from a front–three-quarter view leaning against a pale indoor wall, both thin black wheels, a simple saddle and shadow on the floor visible despite the low resolution. +train_11106.png A flat black silhouette of a road-style bicycle shown in clear side profile with a thin triangular frame, curved drop handlebars, slim tires and visible seat and crank, set against a plain white background. +train_11229.png A low-resolution left-side view of a small bright turquoise bicycle with a glossy smooth frame, thin black tires and compact saddle, parked on a light-gray paved surface against a muted background with a dark vertical shape partially obscuring the rear and small contrasting white accents on the frame. +train_11381.png A small bright orange bicycle with a matte metal frame and black tires is shown in a three-quarter side view, standing on a gray pavement by a curb against a blurred urban/street background, with a white saddle and straight handlebars visible despite the low resolution. +train_11383.png A small blue city-style bicycle with a glossy metal frame and upright handlebars is shown in left-side profile at a slight angle, standing on a sunlit paved surface against a pale wall, with low-resolution details still revealing thin tires, a rear rack and a simple chain guard. +train_11388.png A bright orange-painted bicycle with a sloping top tube shown in near side-profile, standing on pavement against a pale corrugated garage-door wall, with a black saddle and grips, thin black tires with silver rims and a small rear rack visible despite the low resolution. +train_11451.png A glossy red‑orange compact bicycle captured in a front‑left three‑quarter side view with small black tires and thin pale rim highlights, upright handlebars and a short frame suggesting a child's or folding bike, leaning against a blurred grey pavement and dark background. +train_11617.png A small bright-pink glossy step-through bicycle is shown in near-side profile, upright with the front wheel slightly turned to the right against a pale tiled ground and light wall, featuring thin black tires, a dark saddle and a visible rear fender despite the low resolution. +train_11653.png A side-view bicycle with a matte black, thin road-style frame and drop handlebars, thin tires with bright cyan rims and a small saddle, shown upright and facing right on a plain white background. +train_11717.png A bright blue, glossy-painted bicycle is shown in near side-profile—parked upright on gray concrete in front of a matching blue wall—its silver metal rims, black tires, upright handlebars and visible chain area discernible despite the low resolution. +train_11751.png A pale blue, smooth metal-framed bicycle shown in a slight three-quarter side view against a plain white background, with thin black tires, an upright handlebar and straight top tube, and a faint shadow underneath. +train_11789.png A matte-black, high-contrast bicycle silhouette shown in full side-on profile against a plain light background, with two thin spoked wheels, a classic diamond frame, visible chainring and pedals, a narrow saddle and slightly curved handlebars visible despite the low resolution. +train_11819.png A matte orange city bicycle shown in a three-quarter side view, its thin metal frame and black tires leaning on a pale grey sidewalk against a faded blue-tiled wall, with upright handlebars and a small front carrier/rack visible despite the low resolution. +train_11955.png A light-blue glossy city bicycle with a slightly curved frame and thin light-colored rims is captured from a front-left three-quarter viewpoint, leaning against a pale exterior wall on a worn concrete surface scattered with small debris and lit by directional sunlight, showing upright handlebars and a visible front fork despite the low resolution. +train_12023.png A glossy chartreuse-yellow city bicycle shown in three-quarter side view, leaning on its kickstand against a pale turquoise wall on a paved surface, with upright handlebars, a black saddle, thin tires with visible spokes and a simple step-through frame. +train_12188.png A pale turquoise metal bicycle with a smooth painted finish and thin black tires is shown in side-on profile leaning against a light-colored wall on a paved surface, with upright swept-back handlebars, visible wheel spokes and the silhouette of a simple rear rack despite the low resolution. +train_12231.png A black, thin‑tubed bicycle shown in clean side profile against a plain white background, with smooth metallic-looking frame and two spoked wheels, a forward‑leaning geometry, upright curved handlebars, visible saddle, chainring and pedals, forming a simple minimal silhouette despite the low resolution. +train_12296.png A glossy red bicycle with a slender road-style frame and thin black rims is shown in clear side profile being ridden by a dark-clothed figure against a plain light-gray/white background, the low-resolution image still revealing upright handlebars, a visible chainstay and the strong red-frame silhouette. +train_12767.png A small red bicycle captured in a low-resolution side view, its glossy red metal frame and curved top tube standing out against a plain pale background, with dark thin wheels, upright handlebars and a visible saddle silhouette despite heavy pixelation. +train_12964.png A teal-blue bicycle with a matte metal frame and black tires is shown in near-profile, slightly angled with the front wheel turned toward the viewer and leaning against a warm reddish-brown wall over sunlit pavement, with a white saddle and a visible rear rack/fender. +train_13089.png A right-facing side-profile light-blue bicycle with a smooth, matte-painted diamond frame, thin black tires with visible silver spokes, a black saddle and upright handlebars, and a visible chainring, shown on a plain white background so the commuter-style silhouette remains clear despite the low resolution. +train_13295.png A small sky‑blue bicycle with a glossy metal frame and thin black tires is shown in a three‑quarter side view, leaning slightly to the left on a plain white background with a faint gray shadow, its upright handlebars, narrow saddle and exposed chainring visible despite the low resolution. +train_13298.png A small glossy red bicycle with black tires and a pale chain guard is shown in a three-quarter left-side view, standing on a sunlit paved surface against a pale wall and blue vertical pole, with silver handlebars and a rear reflector visible. +train_13327.png A light blue, glossy-painted bicycle shown in side profile with a sloping top tube, thin black saddle and spoke wheels, leaning on its kickstand on a pale concrete floor against a neutral light background, with thin tires and the chain area faintly visible despite the low resolution. +train_13482.png A glossy off-white metal bicycle with a smooth step-through frame, black saddle, handlebars and thin black tires, shown from a front-left three-quarter view leaning slightly as if on a kickstand against a plain light-gray background, with thin-spoked wheels and a minimalist urban design visible despite the low resolution. +train_13582.png A side-profile view of a matte red bicycle rendered as a simplified silhouette—curved top tube, upright seatpost and straight handlebars—with two solid black wheels featuring white hub accents, shown against a pale turquoise/teal background. +train_13684.png A light teal-blue step-through bicycle with smooth glossy paint, upright swept-back handlebars, a small rear cargo rack and thin black tires is shown in three-quarter side view leaning on its kickstand on sunlit gray pavement with green shrubs behind it. +train_13692.png A glossy turquoise-green bicycle with thin metal tubing and black tires is shown in side profile leaning on its kickstand against a graffiti-covered concrete wall and sunlit pavement, with a small rear rack and the chain area faintly visible despite the low resolution. +train_13716.png A low-resolution grayscale photo of a black, thin-framed upright bicycle shown in right-profile against a plain white background, with a high-contrast, slightly pixelated texture revealing two spoked wheels, a visible chainring and pedal, and upright handlebars. +train_13772.png A glossy red step-through city bicycle seen in a side three-quarter view, leaning on its kickstand against a beige building facade on a narrow tiled sidewalk, with visible black tires, a silver chain guard and rear rack despite the low resolution. +train_13809.png An off-white/cream city bicycle shown in near-side profile facing left with thin black tires and a simple upright handlebar, leaning against a teal corrugated wall on light tiled pavement, its sloping step-through frame and a small rear rack faintly visible despite the low resolution. +train_13879.png Side-profile of a light-blue glossy road bicycle with thin black tires, curved drop handlebars, a black saddle and visible chainring, shown upright against a plain white/gray background with a faint shadow beneath. +train_14027.png A glossy pink-purple bicycle shown in left-side profile with thin black tires and an upright handlebar and saddle, parked on light-gray pavement against a pale wall, the simple painted frame and wheel spokes visible despite the low resolution. +train_14067.png A dark-blue glossy metal road bicycle shown in side/profile view leaning against a light, rough concrete wall and floor, with thin black tires and silver rims, a narrow saddle and curved drop handlebars clearly visible. +train_14254.png A low-resolution side-profile of a teal-blue bicycle with a matte-looking frame and dark wheels, leaning slightly forward against a pale indoor wall and floor, its upright handlebars, rear rack/fender silhouette, and simple step-through geometry visible despite the blur. +train_14312.png A side-on profile of a bright turquoise road-style bicycle with a slim triangular frame, narrow tires and curved drop handlebars, shown upright and slightly right-facing against a plain white background in a smooth, flat, slightly pixelated graphic style. +train_14369.png A matte-black upright city bicycle with silver-spoked wheels and a small wire front basket, shown in side view resting on its kickstand on a paved sidewalk in front of a reddish storefront, with visible front and rear fenders and a rear rack. +train_14485.png A red-painted metal bicycle with an upright, swept-back handlebar and white saddle is shown in a right-side three-quarter view, its thin black tires and dark rims standing on a pale concrete sidewalk beside a beige stone wall and curb. +train_14551.png A glossy turquoise step-through city bicycle with white-walled tires and swept-back upright handlebars is shown in near-side profile, leaning on its kickstand on sunlit pavement in a blurred urban storefront setting with a bright orange bollard, and distinct low-resolution details include a rear rack, chain guard and front fender. +train_14783.png A small, child-size pink bicycle with glossy paint and a white saddle is shown in near-profile at a slight left-facing angle, standing on gray pavement against an out-of-focus neutral background, with black tires and compact frame details (short top tube, upright handlebars) still discernible despite the low resolution. +train_14786.png A glossy red bicycle with a thin metal frame, black tires and a visible white wheel rim is shown side-on (slightly front-left) leaning against a textured light tan stone/concrete wall on gray pavement, with upright handlebars and a compact saddle visible despite the low resolution. +train_15036.png A neon-green, smooth-painted thin-frame bicycle is shown in right-side profile against a dark blue–black background, with two turquoise-rimmed wheels, a slim saddle, straight handlebars and visible frame tubes and chainstay presented as a high-contrast, slightly simplified silhouette with a small pale glare nearby. +train_15108.png A glossy sky‑blue metal city bicycle is shown from a slight side angle, standing upright on gray concrete near a white bollard, with black tires and saddle, upright handlebars and a small rear rack visible against a dim urban background. +train_15177.png A solid black silhouette of a city-style bicycle shown in clean side profile facing right, rendered as a smooth, matte-filled outline with upright handlebars, a curved step-through frame, full fenders and a rear rack visible against a plain white background. +train_15267.png A glossy red bicycle with a curved step-through frame, thin black tires and upright handlebars is shown from a low three-quarter left-front view, standing on light pavement beside a low concrete curb with a faint bluish shadow beneath. +train_15361.png A low-resolution, flat dark-gray line-drawn bicycle shown in a clean side-profile with a thin upright frame, two circular wheels, straight handlebars and a simple saddle silhouetted against a plain pale background with a faint shadow. +train_15385.png A small bright orange-red bicycle with a glossy metal frame and black tires, seen from a front-left three-quarter view with the front wheel slightly turned and standing on a gray paved surface against a soft-focus green/gray background, the thin frame tubes and spoke pattern visible despite the low resolution. +train_15444.png A slightly angled side view of a small, upright city bicycle with a glossy red-orange step-through frame, cream-colored tires with thin black fenders, an exposed rear rack and upright handlebars, parked on a paved surface against a pale blue wall. +train_15600.png A predominantly dark-blue to black city bicycle with a matte metal frame seen in a three-quarter side view, parked upright on a sunlit curb/sidewalk with a blurred street/building background, showing thin tires, upright handlebars and a small rear rack visible despite the low resolution. +train_15641.png A glossy red bicycle with a thin metallic frame, black tires and a pale saddle is seen in side profile leaning against a light metal railing in front of a pale-blue, water-like background, with upright handlebars and a simple rear carrier/fender visible despite the low resolution. +train_15733.png A dark gray, matte-looking bicycle shown in side profile facing right against a plain light-gray/white background with a faint cast shadow, its thin spoked wheels, straight top tube, upright handlebars and a small rear rack visible despite the low resolution. +train_15756.png A small bright orange-red bicycle with a matte-painted frame, black saddle and tires, and thin light-colored rims is shown in a three-quarter side view leaning on its kickstand on sunlit yellow pavement in front of a blue wall, with a straight handlebar and simple rear frame visible despite the low resolution. +train_15867.png Side-on view of a smooth orange-painted metal bicycle with a black saddle and thin black tires, parked upright on a sunlit patch of grass/dirt in front of a blurred green-brown hedge or fence, the simple frame and spoke pattern faintly visible despite the low resolution. +train_16015.png A small matte-black bicycle shown in a right-side profile with two clearly visible circular wheels, a straight top tube, compact saddle and upright handlebars, set against a soft turquoise-blue, slightly grainy background with a faint floor shadow, the low-resolution image still revealing dark wheel rims and the bike's simple, thin-frame silhouette. +train_16185.png A glossy turquoise step-through city bicycle captured in side view leaning on its kickstand against a pale concrete wall and sidewalk, showing black tires with silver spokes, upright swept-back handlebars and a rear rack and fenders visible despite the low resolution. +train_16271.png A lightweight magenta-pink bicycle is shown in full side profile facing right against a plain white background, with a slender metallic frame, thin black-spoked wheels, straight handlebars and a compact saddle visible despite the low resolution. +train_16285.png A low-resolution, pixelated side-view of a small red bicycle with a thin metal frame and black spoked wheels and narrow tires, shown with a rider in a red top leaning slightly forward, upright handlebars visible, all set against a featureless pale/white background. +train_16402.png A glossy teal-green city bicycle shown in a three-quarter side view leaning slightly to the right, with a slim black saddle and tires, a small front wire basket and rear rack, parked on a sunlit paved surface against a pale concrete wall with sparse grass at the base. +train_16416.png A low-resolution side-view of a mint-green bicycle with a smooth painted metal frame, black saddle and thin black tires, angled slightly toward the camera and leaning against a light-colored wall on a narrow stone-paved alley, with upright handlebars and visible spokes and chainstay despite the blur. +train_16448.png A low-resolution, light-blue matte-framed bicycle shown in left-profile with a slightly raised black saddle and straight handlebars, solid dark wheels and a hint of pedals/chain, resting on a neutral gray–beige tiled background with a faint shadow underneath. +train_16479.png A low-resolution black road-style bicycle appears as a dark silhouette shown nearly in profile and slightly tilted left, its thin tubular frame, spoked wheels, drop-style handlebars and slim saddle visible against a bright overexposed white-gray background with a faint soft shadow beneath. +train_16565.png A black, line-drawn road bicycle with a thin triangular frame, drop handlebars and spindly spoked wheels shown in side profile leaning slightly to the right against a pale mint-green background with faint pink paint splatters and a vertical turquoise band, its chainring and rear triangle silhouetted clearly despite the low resolution. +train_16568.png A small orange city bicycle with a smooth painted metal frame, thin black tires and a black saddle, shown in a three-quarter side view leaning on gray pavement in front of a pale wall and green bins, with upright handlebars and a visible rear wheel hub. +train_16606.png A low-resolution image shows a mint-green, slightly scuffed metal step-through bicycle captured in a three-quarter left-side view, parked on sunlit pavement against a beige tiled/brick wall, with a black wire front basket, curved handlebars, full metal fenders over both wheels, a rear rack, and thin dark tires with visible spokes. +train_16660.png A thin black line–drawn side‑profile bicycle against a plain white background, rendered flat and low‑resolution with a triangular frame and straight top tube, two thin wheels with simple spoke indications, a raised saddle, upright handlebars, and a small chainring and pedal sketched in minimalist strokes. +train_16800.png A black, glossy-metal road-style bicycle shown in full side profile facing left against a plain white background, with a thin diamond frame, two spoked wheels, curved drop-style handlebars, a visible saddle and chainring, and slender tires apparent despite the low resolution. +train_16839.png A low-resolution side-profile of an orange-red bicycle with a matte finish, visible round black wheels and simple single top-tube frame, slightly leaned with upright handlebars against a uniform warm reddish-orange background featuring a bright lower-left highlight and soft shadow beneath the wheels. +train_17049.png A low-resolution side view of a dark red/maroon step-through bicycle with upright metal handlebars, a white front basket and matching fenders, black tires and a rear rack, parked on a paved sidewalk against a pale gray storefront with blue signage. +train_17125.png A slightly angled side view of a small mint‑green bicycle with a smooth, matte-painted curved low‑step frame and white saddle, standing upright on a kickstand on concrete pavement in front of a sunlit pale wall, with thin black tires and a faint rear carrier silhouette visible despite the low resolution. +train_17250.png A glossy light‑blue city bicycle is shown in a three-quarter side view, its metallic frame and curved top tube reflecting light, upright handlebars and visible saddle above thin dark tires, all set against a dark asphalt background with scattered bright specks. +train_17257.png A stark black silhouette of a road-style bicycle shown in profile facing right, with a triangular frame, two thin spoked wheels, a slim fork and seat, and curved drop-style handlebars rendered as flat, high-contrast shapes against a plain white background. +train_17310.png A teal/turquoise bicycle with a matte finish and curved frame shown in right-side profile, leaning upright on a light-colored surface against a bright aqua background, with thin black tires, an upright handlebar and a small saddle discernible despite the low resolution. +train_17373.png A small child's bicycle with a glossy bubblegum-pink metal frame, white plastic front basket and chainguard, and white training wheels is pictured at a three-quarter front-left angle with the handlebars turned slightly left, resting on a scuffed tiled/garage floor against a cluttered indoor backdrop of boxes and shelving. +train_17379.png A low-resolution, dark-gray city bicycle shown in profile leaning on its kickstand against a pale, slightly textured wall, with an upright handlebar, step-through frame, visible rear rack and thin road-style tires. +train_17471.png A small glossy turquoise-blue step-through bicycle shown in side profile against a clear blue background, with thin black tires, upright swept-back handlebars, a rear rack and visible chain-guard, leaning slightly to the left. +train_17481.png A small turquoise-teal bicycle shown in near-profile facing right with a smooth, matte-painted frame, thin black tires and visible spokes, a compact saddle and straight top tube, set against a plain light pavement-like background with a faint shadow beneath. +train_17517.png A glossy lemon-yellow metal bicycle is shown from a three-quarter front-left viewpoint, standing upright (slightly leaning) on a plain white studio background with thin black road-style tires, a black saddle and handlebars, and a darker bike partially visible behind it. +train_17540.png A small glossy red city bicycle with upright curved handlebars and thin black tires is shown in a three-quarter side view with the front wheel slightly turned, parked on gray pavement against a light-colored wall and casting a faint shadow. +train_17730.png A teal-green glossy metal-frame city bicycle shown in a three-quarter side view leaning against a rough, light stucco wall on sunlit cobblestone pavement, with an upright silver handlebar, black saddle, thin road tires and a small rear rack carrying a red item visible despite the low resolution. +train_17971.png A light teal-blue, slender road bicycle with a matte metal frame and thin tires is shown in a three-quarter side view on a paved street—its round wheels, drop-style handlebars and simple single-frame geometry visible against a blurred urban curb and a dark-clad figure. +train_18164.png A small bright-blue bicycle with a matte-painted frame and black tires is shown from a slightly elevated three-quarter left viewpoint, parked on a sunlit concrete curb against a blurred urban/green background, with upright handlebars, a narrow dark saddle, visible thin silver spokes, and a simple rear rack discernible despite the low resolution. +train_18232.png A small, red-orange bicycle is shown in a low-resolution side-angle view with a glossy-looking frame and thin black tires, parked upright on a pale, slightly textured surface with a faint shadow and a tiny green patch, its handlebars, saddle and two spoked wheels distinguishable despite pixelation. +train_18322.png A teal-blue step-through city bicycle shown in profile facing left, with a smooth painted metal frame, upright swept-back handlebars, thin-spoked wheels with full fenders and a visible chainring, photographed against a plain light gray/white background with a faint shadow beneath. +train_18327.png A glossy orange-red city bicycle shown in a slight three-quarter side view, standing on light-gray pavement in front of a pale concrete wall, with a black saddle and handlebars, thin black tires and a rear rack/fender faintly visible despite the low resolution. +train_18556.png A glossy red-orange metal bicycle with contrasting black tires and visible spoke patterns is shown in a side/three-quarter profile leaning slightly to the right against a light-colored wall on a pale indoor floor, with an upright handlebar and a curved step-through top tube discernible despite the low resolution. +train_18664.png A low-resolution side-profile left-facing bright orange bicycle with a smooth glossy-painted frame, thin black saddle and tires with orange rims and simple spoke circles, upright handlebars with a short stem, and a plain white background emphasizing its minimalist, slightly cartoon-like silhouette. +train_18671.png A low-resolution side view of a light turquoise step-through city bicycle with smooth matte paint, white-walled tires, a black saddle and curved handlebars, shown leaning slightly to the right with a small rear rack visible against a neutral pale studio-like background with faint shadows. +train_18794.png A compact glossy red bicycle with a slim road-style frame, thin black tires, curved drop handlebars and visible chainstay, shown in a low-resolution three-quarter side view being ridden by a seated figure against a plain light background. +train_18796.png A flat, monochrome black line-drawn side-profile bicycle with thin spoked wheels, triangular frame, saddle and pedals, ridden by a simple stick-figure leaning forward on the handlebars, all set against a plain white background. +train_18831.png A monochrome, flat black line-drawn bicycle shown in clean side‑profile facing right, with thin spoked wheels, a diamond frame, upright handlebars and saddle rendered as a simple silhouette on a plain white background. +train_18951.png A mint‑green step‑through bicycle with upright handlebars and white‑rimmed wheels leans against a pale wall on gray pavement, the low‑resolution image still revealing a simple, minimalist frame with visible full fenders. +train_19021.png A small turquoise/teal painted bicycle shown in an almost side-on view, its glossy metal frame and upright handlebars visible with a black saddle and two dark wheels, leaning against a pale exterior wall on concrete pavement. +train_19152.png A bright yellow metal bicycle shown in a clean side-on profile against a plain white background, with a compact frame, thin black tires and visible spoke pattern, a black saddle and handlebars, and simple utilitarian styling visible despite the low resolution. +train_19154.png A low-resolution side view of an orange-gloss metal bicycle leaning against a blue wall on paved ground, showing a prominent black front wheel with thin spokes, upright/straight handlebars, and a blurred but discernible chain area and frame top tube. +train_19511.png A side-profile bicycle with a smooth, white‑outlined metallic frame and thin spoked wheels, shown slightly turned left with upright handlebars and a narrow saddle, set against a solid black background with a faint purple‑blue glow around the rims and clear chainring and spoke details visible despite the low resolution. +train_19518.png A light-blue painted metal step-through bicycle with a slight gloss, shown in a slightly angled side view with thin black spoked wheels and upright swept handlebars, leaning on sunlit pavement in front of a low beige wall and blurred green foliage. +train_19628.png A dark metal bicycle, appearing black or very deep gray with a matte finish, is shown in profile from a low side viewpoint with the front wheel slightly turned, its triangular frame, thin road-style tires and handlebars clearly discernible against a blurred blue-gray urban background. +train_19675.png A glossy red step-through city bicycle with black tires and silver spokes is shown in a three-quarter side view leaning on its kickstand in front of a vertical metal fence and green foliage, the reflective paint, visible chain and frame geometry faintly discernible despite the low resolution. +train_19925.png A low-resolution matte teal-green city bicycle with a slim metal frame and upright handlebars shown in three-quarter side view leaning against a pale wall on paved ground, its rear wheel, dark saddle and chainstay discernible. +train_19933.png A compact bright red bicycle with a glossy metal frame, black saddle and thin black tires is shown in right-side profile leaning on its kickstand on sunlit gray pavement, casting a soft shadow against an indistinct blurred background. +train_19941.png A low-resolution image of a small bright orange-red bicycle with a glossy thin metal frame and black saddle and handlebars, shown from a three-quarter front-right viewpoint against a pale, slightly blurred indoor/outdoor background, with thin-spoked wheels and compact frame geometry visible despite the blur. +train_19958.png A side-profile view of a compact, bright-orange smooth-painted metal bicycle with a slightly sloping top tube, narrow black spoked wheels and tires, a black upright saddle and straight handlebars, shown against a plain white background. +train_20397.png A matte dark teal city bicycle shown in a three-quarter side view, its thin metal frame and upright handlebars visible with a bright orange circular reflector/hub on the front wheel, leaning against a light gray concrete wall on sunlit pavement with blurred greenery behind. +train_20548.png A matte dark blue–black urban bicycle with a slender metal frame and narrow tires is shown in three-quarter side view with the front wheel slightly turned toward the camera, parked on a paved surface against a pale green corrugated wall, with an upright handlebar, narrow saddle and faint chain/crank and wheel spokes visible despite the low resolution. +train_20580.png A small child's glossy hot-pink bicycle with purple accents and a white saddle is captured in a front-left three-quarter view with the front wheel turned slightly, fitted with small wheels/training wheels and a low chain-guard, standing on sunlit concrete pavement against a cluttered urban background that includes a parked scooter and building facades. +train_20733.png A small, low-resolution black line-drawn bicycle shown in side profile facing right, with thin smooth strokes forming two circular wheels, a triangular frame, straight handlebars and a raised saddle, set against a plain white background. +train_20982.png A glossy magenta child-sized bicycle with black tires and an upright handlebar is photographed side-on with its front wheel turned slightly toward the camera, leaning amid a dim, cluttered indoor storage area of boxes and shelving where a small front basket or rack and a black saddle are faintly visible. +train_21945.png A glossy coral-pink step-through bicycle in side profile with upright handlebars, a white saddle and grips, black tires with white rims, a small front wire basket and chain guard, shown leaning on its kickstand on a tiled indoor floor against a pale wall. +train_21956.png A small white bicycle with a matte-painted step-through frame and thin black tires is shown in a three-quarter side profile with an upright handlebar and visible chain guard, ridden by a person in blue against a flat pale-blue background. +train_21959.png An orange-painted compact bicycle with a glossy, slightly reflective frame and small black wheels is shown in a three-quarter side view, leaning slightly forward against a dark, blurred background, with an upright handlebar and a slim saddle clearly visible. +train_22005.png A red-orange bicycle with a compact frame and black tires is shown in side profile, parked at the sidewalk curb in front of a faded blue storefront with a person nearby, and despite the low resolution you can make out a small dark front carrier/basket and wheel spokes. +train_22028.png A low-resolution side-profile pale-blue bicycle with a slightly glossy metal frame and thin dark tires, shown upright and slightly angled on a plain light background with curved handlebars and a faint rear-rack silhouette visible. +train_22116.png A pale blue glossy metal bicycle is shown in a side-view slightly angled away from the camera with its front wheel turned inward, thin road tires and upright handlebars visible as it stands on gray asphalt next to a light concrete curb and indistinct shadowed background. +train_22173.png A glossy turquoise-blue step-through city bicycle is shown at a three-quarter angle leaning slightly to the left, set in a narrow urban alley with reddish-brown walls and scattered debris, with thin metal spokes, a small rear rack, a metal front basket, and a light-colored saddle visible despite the low resolution. +train_22237.png A glossy teal-blue city bicycle with a white saddle, seen from a rear-side angle and leaning against a metal railing on a sunlit sidewalk with grass and a blurred street/building background, where the rear wheel, straight handlebars and a small white front-mounted basket/rack are discernible despite the low resolution. +train_22303.png A solid matte-black, flat silhouette of a classic diamond-frame bicycle with thin wheel outlines, an upright saddle, straight handlebars and a small rear rack, presented in side-on profile centered on a stark white background. +train_22304.png A small red bicycle with a glossy painted frame and black tires is shown in a three-quarter left-side view resting on a pale indoor floor against a bright, slightly cluttered background, with a compact saddle, silver rims and upright handlebars visible despite the low resolution. +train_22403.png A small bicycle with a bright glossy red metal frame and white-rimmed tires is shown in a low three-quarter side view, propped upright indoors against a dark green/black door on a tiled floor, with a black saddle, upright handlebars, and a short rear fender faintly visible despite the low resolution. +train_22516.png A glossy red bicycle captured in a slight front-side profile, showing a slender triangular frame, thin dark tires and a black saddle, resting on asphalt with subtle reflective highlights on the paint and blurred nighttime urban lights in the background. +train_22535.png Glossy red-orange bicycle seen in a side-on profile leaning slightly to the right against a tan/beige rough wall and pavement, with a slim black saddle, skinny tires with visible spoke highlights and a slender metal frame. +train_22661.png A painted orange-red city bicycle with a curved step‑through metal frame and upright handlebars, seen in side profile slightly angled toward the camera, parked on grey pavement against a beige wall with a turquoise stripe and showing dark tires, thin fenders and a rear rack despite the low resolution. +train_22748.png A pale blue glossy step-through city bicycle is shown in a three-quarter front-side view, parked with its front wheel turned slightly left on reddish-orange paved ground against a light-colored wall and railing, displaying upright handlebars, a black saddle, metal rear rack, full chain guard and slim black tires visible despite the low resolution. +train_22793.png Low-resolution side view of a glossy red‑orange city bicycle with a curved step‑through metal frame, swept‑back upright handlebars, black tires with fenders, a rear rack and chain guard, photographed against a flat dark‑gray background. +train_22811.png A low-resolution photo of a pale turquoise/teal bicycle with a smooth matte metal frame shown in profile (left side) standing upright against a flat teal-green background that could be pavement or a wall, with contrasting black tires and thin silver rims, swept-back upright handlebars and a small rear rack visible despite the blur. +train_22852.png A side-profile, low-resolution depiction of a smooth, glossy cyan-blue city-style bicycle with an upright frame and handlebars, solid black circular wheels with orange hub centers and a simple chain-guard silhouette set against a plain white background, the flat vector-like colors and minimal shading remaining discernible despite pixelation. +train_22862.png A small, stylized red bicycle with a smooth flat-color frame is shown in side profile facing right on a solid teal background, featuring two black circular wheels with thin spokes, a compact black saddle and handlebars, and a tiny visible pedal. +train_22948.png A small, worn red bicycle with black tires and a thin frame is shown in a three-quarter front-left view, its sun-faded, chipped paint and compact saddle visible as it leans near a mottled concrete/stone wall on rough gravel scattered with leaves. +train_22967.png A side-on, stylized dark-magenta/pink bicycle with a smooth but slightly pixelated flat texture, gray circular wheels with faint spokes, a straight frame, upright handlebars, small saddle and visible pedals, centered against a solid teal circular background. +train_23335.png A pixelated dark charcoal bicycle shown in side profile facing left, rendered as a flat, matte silhouette with a simple diamond frame, two equal round wheels, narrow saddle and upright handlebars against a plain off-white background. +train_23351.png An orange-painted bicycle with a muted, matte-like finish and black spoked wheels is seen in a three-quarter side view with a seated rider, featuring a straight handlebar and slender top tube, set against a pale, overexposed sky/studio-like background. +train_23603.png A light turquoise, smooth-metal city bicycle shown in rough side profile leaning on its kickstand on a sunlit sidewalk against a worn concrete/brick wall, with thin black tires, an upright handlebar and a small front rack and brown saddle visible despite the low resolution. +train_23616.png A matte turquoise-green metal-framed bicycle shown in a three-quarter side view leaning on its kickstand on gray pavement against a beige-and-blue painted wall, with slim black tires, an upright black saddle and visible thin metal spokes despite the low resolution. +train_23669.png A compact, glossy cherry-red bicycle shown in left-side profile with curved drop handlebars and thin black road tires, the smooth painted frame angled slightly upright on a pale, slightly textured floor against a light background with a distinct shadow beneath and no visible fenders or racks. +train_23715.png Side-on, slightly angled view of a glossy orange bicycle with thin dark wheels, a compact curved/step-through frame, upright handlebars and a small light-colored saddle, set against a smooth blue–purple gradient background. +train_23763.png A low-resolution side-view of a dark-colored (black or deep blue) metal bicycle leaning against a pale wall on a beige tiled floor, with a straight top tube, thin road-style tires, visible silver rims and spokes, upright handlebars, and a small rear rack or fender. +train_23888.png A small turquoise/teal-painted bicycle with a smooth glossy metal frame shown in clear side profile facing left against a plain white background with a faint gray shadow beneath, displaying thin black tires, a straight top tube, visible saddle and upright handlebars despite the low resolution. +train_23986.png A small, flat black line-drawn bicycle icon shown in clear side profile against a plain white background, with thin outlined wheels, a minimalist triangular frame, straight top tube, simple saddle and swept-back handlebars visible despite the low resolution. +train_24411.png A low-resolution image of a red bicycle shown in a slightly angled side view, with a dark saddle and handlebars, white-rimmed wheels and a faint front-basket or rack silhouette, standing on a pale paved surface beside a beige stone wall and green foliage. +train_24467.png A pale cream/white glossy step-through city bicycle shown in a three-quarter side view, leaning against a light concrete wall on a tiled pavement, with swept-back upright handlebars, visible chain guard and full fenders, thin black tires and a simple rear carrier discernible despite the low resolution. +train_24501.png A glossy teal-blue step-through bicycle is shown in side profile, parked upright on a scuffed concrete floor in a cluttered indoor garage, with chrome fenders and silver spokes, a black saddle and thin tires visible despite the low resolution. +train_24570.png A bright yellow, glossy metal-frame bicycle is parked side-on and slightly angled toward the camera with the front wheel turned, standing on a sunlit paved sidewalk next to a low concrete wall and patch of grass, showing a black saddle, upright handlebars and a small rear cargo rack. +train_24655.png A compact bicycle with a light blue, slightly glossy frame and black tires is shown in a near-side profile with the front wheel slightly turned, set against a plain light-gray/white background, where the low-resolution image still reveals a curved downtube, visible spoke pattern, narrow saddle, and a simple upright handlebar silhouette. +train_24723.png A low-resolution side-view of a small turquoise/teal city bicycle with a slightly glossy painted frame, compact small-diameter wheels, upright black handlebars and saddle, and a contrasting red rear fender/chain-guard, photographed against a plain white background. +train_25035.png A small glossy red bicycle with a slim metal frame, black saddle and handlebars, and thin tires is shown in a three-quarter side view, leaning slightly to the left on sunlit pavement with a blurred outdoor background. +train_25326.png A low-resolution side-view shows a glossy seafoam-teal step-through bicycle with white-rimmed wheels and upright handlebars, leaning on grey tiled pavement against a bluish backdrop (possibly a wall or vehicle), with a small rear rack and faint fenders visible. +train_25509.png A stark white, flat line-drawn side-profile of a road-style bicycle with thin tires, a triangular frame, visible chainring and pedals, and drop handlebars rendered as a smooth high-contrast silhouette against a solid black background. +train_25568.png A side-on bicycle with a glossy teal-blue metal frame and thin black spoked wheels, leaning slightly left against a light-gray concrete wall or post, sporting upright black handlebars and a simple straight top tube visible despite the coarse image. +train_25640.png A mint‑turquoise metal step‑through bicycle captured in near‑profile against a plain off‑white background, showing upright handlebars, a simple saddle, thin spoked wheels and a visible chain/chain‑guard and rear fender that give it a utilitarian city‑bike silhouette. +train_26060.png A teal/cyan metallic city bicycle with a slightly glossy finish is shown in a three-quarter side view leaning against a low stone or concrete ledge on a paved surface, its upright handlebars, thin tires and the silhouette of a rear rack/fender clearly visible despite the low resolution. +train_26108.png A glossy light-blue step-through bicycle shown in near-profile from the side with both spoked wheels, an upright saddle and handlebars visible, set against a plain pale studio background with a faint shadow, the compact frame and chain-guard-like casing distinguishing it despite the low resolution. +train_26114.png A compact bicycle with a glossy red metal frame and black tires is shown in a three-quarter front-side view, standing on sunlit rough concrete against a pale beige wall or curb, with upright handlebars and the chain/wheel areas faintly visible despite the low resolution. +train_26173.png A small dull-orange bicycle with a matte thin frame and black tires is captured in a slightly angled side view leaning against a low curb on a sunlit concrete surface in front of a bluish backdrop, showing upright handlebars, a compact saddle and a small rear rack above the back wheel. +train_26185.png A low-resolution side-view showing two slim-framed bicycles—one pale sky-blue and one deep navy—painted with a smooth glossy metal finish, slightly overlapping with both full wheels and thin black tires visible, upright handlebars and simple single-chainring drivetrains, set against a plain white background. +train_26216.png A dark-colored (black/charcoal) bicycle shown in full side profile leaning against a pale, slightly stained concrete/plaster wall in a dim indoor or alley-like setting, with a simple diamond frame, visible metal spokes and silver rims, thin road-style tires and upright flat handlebars. +train_26228.png A flat matte-black side-on silhouette of a bicycle with two round wheels, a simple diamond frame, short saddle and upright handlebars, shown against a plain white background. +train_26371.png A high-contrast black line-art side-profile of a bicycle with thin spoked wheels, a narrow diamond frame, visible saddle and pedals/crank, and slightly swept-back handlebars, presented flat against a plain white background. +train_26468.png An orange-yellow, thin-steel framed bicycle shown in a right-side profile with matte paint, slim tires, an upright saddle and handlebars, and minimal detailing, set against a pale, slightly textured off-white background. +train_26487.png A small bright-blue bicycle with a glossy metal frame, white saddle and black tires is shown in a three-quarter left-front view, propped upright on a light-gray tiled floor against a cluttered, indistinct indoor background with a soft shadow beneath the wheels. +train_26529.png A dark blue–black metal bicycle captured in a three-quarter side view, leaning against a red-painted vertical surface, with a prominent white-spoked front wheel, thin tubular frame and a visible chain/gear cluster despite the low resolution. +train_26549.png A low-resolution image of a pale yellow, slightly glossy step-through bicycle captured from the left side at a slight three-quarter front angle, showing upright swept handlebars, full fenders over dark tires and a rear luggage rack, standing on a light smooth floor against a muted bluish-gray wall. +train_26635.png A low-resolution side view of a bright orange-red bicycle with a matte frame and black tires leaning slightly to the right, photographed outdoors on green grass with a blurred pale fence or railing and sky behind it, the circular wheels, upright handlebars and chain area remaining discernible despite the blur. +train_26648.png A matte dark-gray steel road-style bicycle photographed in full side profile facing right, with a slim diamond frame and narrow saddle, straight handlebars, thin black wheels with visible hubs and chainring, set against a pale studio-like background with a soft circular shadow beneath. +train_26948.png A cream-colored, pixelated bicycle appears in side-on profile facing right against a solid red background, showing a thin road-style frame with curved drop handlebars, a visible saddle and spoked wheels. +train_26971.png A side-on profile of an orange, flat, line-drawn bicycle icon on a plain white background, rendered in thin continuous outlines that show both wheels, a triangular frame, saddle, handlebars and a visible chainring despite the low resolution. +train_27008.png A pale silver-gray, glossy metal step-through city bicycle shown in profile with upright handlebars, full fenders and a rear rack, leaning on its kickstand on a sunlit sidewalk at a curb with blurred pedestrians and buildings in the background. +train_27134.png Side-view, high-contrast black line-art bicycle showing a classic diamond frame with circular wheels and visible radial spokes, a small saddle and straight handlebars, depicted flat with no shading against a plain white background. +train_27198.png A pastel-pink, glossy step-through city bicycle with white saddle and matching fenders and a small rear rack, shown in a left-side three-quarter view leaning against a metal railing on a cobblestone waterfront promenade with blurred water, boats and buildings in the background. +train_27219.png A flat, black line-drawn bicycle shown in strict side profile with a thin diamond frame, narrow road-style tires and visible spoked wheels, drop-style handlebars and saddle rendered as solid black outlines on a plain white background. +train_27233.png A simple black line-drawn bicycle shown in clear side profile with smooth flat ink lines forming a classic diamond frame, thin wheels, visible chainring and saddle and straight handlebars, set against a plain white background. +train_27274.png A worn mint-green step-through bicycle with a matte, slightly chipped paint texture is shown in a three-quarter side view, leaning on its kickstand on gray pavement against a beige wall in daylight, with upright handlebars, narrow road-style tires and a small rear rack visible despite the low resolution. +train_27301.png A low-resolution side-profile image of a bicycle with a matte olive‑green metal frame and thin black tires, photographed against a plain white background, showing both spoked wheels, a straight top tube, visible chainring and saddle, and a slightly grainy texture from the image quality. +train_27306.png A glossy red bicycle with a slim frame, black saddle, thin black tires and silver rims is shown in a three-quarter side view leaning on a sunlit urban sidewalk, with blurred cars and buildings in the background and the handlebars, frame shape and wheels still discernible despite the low resolution. +train_27326.png A glossy red city bicycle with white fork accents and a black saddle is shown in a three-quarter front‑left view, its compact frame with small wheels, upright swept‑back handlebars and rear rack standing on tiled pavement with a shadow against a beige stucco wall and dark doorway. +train_27345.png A thin black line-drawing bicycle shown in clean side-on profile with two spoked wheels, a triangular frame, visible chainring and upright saddle with slightly curved handlebars, presented against a plain white background. +train_27375.png A side-on minimalist bicycle rendered as a thin cyan line-art icon with flat, smooth strokes on a plain white background, showing a simple diamond frame, two equal circular wheels without visible spokes, a small saddle and curved handlebars. +train_27425.png A low-resolution side-profile of a teal-blue city bicycle with a smooth, painted metal frame, upright handlebars, thin spoked wheels and a simple rear rack, leaning against a dark horizontal railing in front of a pale, slightly textured wall. +train_27526.png A mint-green glossy step-through city bicycle is shown in a three-quarter side view, parked on a light-gray sidewalk against a pale wall, with upright swept handlebars, white-walled tires, full fenders, a rear rack and its kickstand down visible despite the low resolution. +train_27691.png An orange-red metal-frame bicycle with thin black tires and a black saddle is shown in near side view, leaning slightly left on a kickstand against a pale wall over paved ground, its slim minimalist frame and upright handlebars remaining distinguishable despite the low resolution. +train_27747.png A pale yellow glossy step-through city bicycle with a black saddle and tires, upright swept handlebars, metal fenders and a rear rack, shown from a three-quarter front-left view leaning on its kickstand against a plain white wall on a concrete floor with chrome rims visible. +train_27808.png A flat black-outline bicycle in a simple diamond-frame profile, shown side-on facing right with thin tires, visible seat and handlebars and a small rear rack, rendered against a clean white background. +train_28014.png A flat black silhouette of a person riding a classic diamond-frame bicycle seen in side profile facing right, with solid circular wheels, visible pedals and chainstay, straight handlebars and a slightly forward‑leaning rider, all set against a plain white background. +train_28067.png A pale blue, slightly worn city bicycle with a low curved (step-through) frame and thin black tires is shown at a three-quarter front-left angle, parked on a gray paved sidewalk against a muted wall with a small orange reflector or bag clipped near the rear wheel. +train_28311.png A small bright red step-through bicycle with a glossy painted frame and small black tires is shown in a low frontal-left three-quarter view resting on a paved surface by a low concrete curb against a dark, blurred background, with visible chrome spokes, a black saddle, and a simple chain guard. +train_28500.png A low-resolution three-quarter side view of a bright orange-red bicycle with a glossy diamond frame and thin silver-spoked wheels, angled toward the camera against a pale teal tiled background with soft shadowing that still reveals the handlebars, seatpost and chainring. +train_28530.png A matte black, slim-framed bicycle with narrow tires and its front wheel slightly turned, seen from a low oblique viewpoint on sunlit gray pavement beside a grassy verge with a person in a red jacket partially visible at the left edge. +train_28559.png A turquoise-blue bicycle shown in a left-side profile with a smooth glossy metal frame, thin black tires and visible spokes, saddle and handlebars all visible despite low resolution, photographed against a plain white background. +train_28698.png A small red-and-blue bicycle with a glossy metal frame and thin black tires is shown in a left-front three-quarter view, resting on pale, slightly textured pavement with visible wire spokes and a dark, indistinct object in the background. +train_29044.png Two matte-black bicycle silhouettes are shown in near side-profile, parked upright and slightly overlapping against a plain white background, with thin metal frames, visible spoked wheels, curved handlebars and slim tires discernible despite the low resolution. +train_29185.png A white, thin-line side-profile silhouette of a bicycle facing right, with a triangular frame, two equal circular wheels, a small saddle and curved drop-style handlebars rendered as a smooth, flat graphic on a solid black square background. +train_29351.png A matte black, feature‑lean side‑view silhouette of a bicycle centered on a plain white background, with two round wheels, a thin triangular frame, a small saddle and upright handlebars visible despite the low resolution. +train_29430.png A simple black line-drawing of a bicycle shown in left-side profile, with thin tires and spokes, a diamond frame with visible chainring and a small rear rack, rendered against a plain white background. +train_29550.png A light-blue painted metal city bicycle with thin black tires and an upright black saddle is shown in three-quarter side view leaning on its kickstand against a sunlit sidewalk and low railing, with swept-back handlebars and a faint rear rack visible despite the low resolution. +train_29923.png A small, low-resolution side view of a right-facing bicycle with a glossy pinkish-red diamond frame, solid black circular wheels with thin tires, a slightly raised saddle and upright handlebars, plus a visible chainring, shown against a plain white background. +train_29966.png A small red-orange metal bicycle with a slightly worn finish and black thin tires is shown side-on and slightly tilted, lying on a pale concrete surface against a faded turquoise wall, with visible spoked wheels and upright handlebars despite the low resolution. +train_29988.png A small orange-red bicycle with a matte-looking frame and contrasting black wheels is captured in a low three-quarter rear-side view, leaning on a light-tiled indoor floor against a dark wall and cluttered background, with the rear wheel, spokes, upright handlebars and part of the drivetrain discernible despite the low resolution. +train_30526.png A low-resolution, light-gray line-art side-profile of a bicycle with a thin tubular frame and narrow tires, an upright saddle and swept-back handlebars, visible chainring and spoked wheels, all centered against a plain white background with a subtle shadow beneath. +train_30584.png A compact bicycle with a glossy bright-red metal frame, thin black tires and visible spoke patterns is captured in a three-quarter side view with the front wheel slightly turned toward the camera, resting on a grey paved curbside area beside a lamppost and blurred crosswalk markings against a neutral urban backdrop. +train_30971.png A low-resolution side-profile of a lightweight road-style bicycle with a matte pale tan/cream metal frame and thin black tires, shown leaning slightly to the left with curved drop handlebars and a narrow saddle against bright, sunlit pavement that casts a soft shadow. +train_31026.png A teal-blue metallic-framed bicycle is shown in a three-quarter side view parked on a concrete sidewalk with its front wheel slightly turned and leaning on a kickstand against a white wall, featuring straight handlebars, thin tires and a visible chainset, with a person in red clothing partially visible behind it. +train_31105.png A glossy deep-red bicycle with a thin metal road-style frame, black saddle and tires, and visible silver spokes and a small white front reflector is shown in a low-resolution three-quarter side view, appearing parked on a gray paved surface beside a strip of green grass. +train_31181.png A small red bicycle with a glossy painted frame is shown in a three-quarter side view, parked upright on rough pavement against a pale wall, with visible black tires, a slim saddle and straight handlebars. +train_31209.png A compact bright-orange bicycle shown in a three-quarter left-side view, with a matte-painted frame, black saddle and handlebars, thin black tires and a rear rack, standing on sunlit pavement in front of a beige wall. +train_31230.png A pale mint-green, glossy metal city bicycle is shown in clear side profile with a low, curved step-through frame and thin-spoked wheels, upright on grass with handlebars and saddle faintly visible against a blurred dark-green outdoor background. +train_31381.png A dark matte-framed road bicycle shown in side profile leaning on a light paved surface in front of a pale wall, with thin slick tires, drop handlebars and a visible rear brake caliper visible despite the low resolution. +train_31476.png A low-resolution side-profile image of an upright bicycle with a solid bright pink-red frame, black tires with thin pale rims, a white saddle and handlebars, and a visible triangular frame and chainring, set against a circular sky-blue background with a darker blue outer ring. +train_31528.png Side-view of a small glossy red bicycle with black tires and a white chain guard, leaning slightly on a gray paved surface by a low curb with a grassy strip behind it and upright handlebars visible despite the low resolution. +train_31654.png A small black silhouette of a classic upright bicycle is shown in right-side profile—two thin-spoked wheels, a simple diamond frame and upright handlebars—centered on a warm cream/beige, paper-like textured background. +train_31779.png A low-resolution side-profile of a small bicycle with a dull red-orange painted frame and thin black tires, shown upright and slightly angled to the right against a plain white background, featuring upright handlebars, a narrow black saddle and a small front wire basket/rack above the front wheel. +train_31882.png A bright pink, slightly glossy step-through city bicycle is shown in a three-quarter side view, leaning on its kickstand on a gray concrete sidewalk near a curb with blurred urban colors in the background, with thin black tires, visible silver spokes and a compact frame silhouette. +train_31889.png A small bicycle shown in a left-facing side profile with a bright orange, glossy metal frame, white-spoked wheels with black tires, a brown saddle and upright handlebars, isolated against a plain white background. +train_32023.png A small glossy red bicycle with a dark saddle and handlebars lies on its side at a three-quarter rear angle on sunlit, dusty concrete against a pale beige wall, its round wheels and chain-guard silhouette visible despite the low resolution. +train_32143.png A side-profile view of a red-painted bicycle with a glossy finish and thin black tires, parked upright on gray pavement and leaning near a light-colored wall or fence with blurred green foliage and a vertical post visible in the background. +train_32183.png A dark blue painted-metal bicycle shown in side profile, leaning slightly to the right on pavement in front of a light beige wall, with two thin black tires and silver rims, an upright curved handlebar and a simple step-through frame silhouette visible despite the low resolution. +train_32320.png A flat white bicycle pictogram centered on a bright blue circular sign, viewed almost straight-on at close range against a pale pink-beige background, with a smooth, glossy graphic texture and slight edge wear visible despite the low resolution. +train_32321.png A light turquoise/teal painted bicycle captured in a side-on view, leaning upright on a gray concrete sidewalk in front of a pale wall, with a matte finish, black tires and visible spoked wheels, and a slim saddle and straight handlebars discernible despite the low resolution. +train_32392.png A solid matte-black, icon-like side-profile bicycle silhouette with thin-spoked wheels, a classic diamond frame showing the chainring and pedals and a straight handlebar, presented upright against a plain white background with minimal texture. +train_32551.png A small glossy red-framed child's bicycle with a bright blue plastic saddle and black rubber tires, shown in a three-quarter side view with the front wheel slightly turned toward the camera, resting on a light beige paved surface with soft shadowing and an indistinct background. +train_32573.png A glossy red step-through city bicycle with a curved frame and upright handlebars is shown from the right side in a slightly forward-leaning riding pose on a paved path in a grassy park with trees, and despite the low resolution thin tires, a rear rack and a chain guard are still discernible. +train_32713.png A low-resolution side-profile shows a light turquoise/teal step-through city bicycle with a glossy metal frame, black saddle and handlebars, thin tires with fenders and a rear luggage rack, standing on its kickstand on a sunlit paved path against blurred green foliage. +train_32842.png A teal-blue step-through city bicycle shown in side profile with upright handlebars and a curved frame, leaning on its kickstand against a pale sunlit wall on a sidewalk, with light-colored (whitewall) tires and a rear rack/fender visible despite the low resolution. +train_32849.png A small bright red-orange bicycle with a glossy metal frame and black saddle and tires is captured in right-side profile, leaning on its kickstand on a light concrete curb in front of a pale wall, with thin silver spokes and upright handlebars visible despite the low resolution. +train_32999.png A small glossy pinkish-purple children's bicycle with white-rimmed wheels and chrome handlebars is shown in a three-quarter side view with a seated rider on a sunlit paved courtyard edged by grass and buildings, the low-resolution image still revealing small training wheels and a compact frame with a short top tube. +train_33025.png A low-step, small-wheeled bicycle with a glossy pastel purple frame and white-rimmed wheels is shown in profile, slightly angled with the front wheel turned, parked on grey concrete pavement against a blurred metal railing or pole, the frame showing faint scuffs and an upright handlebar visible despite the low resolution. +train_33075.png A dark-colored (appears black or deep green) matte-metal road bicycle shown in profile, upright and leaning against a pale wall on a paved surface, with narrow tires, drop handlebars, a slim triangular frame and silver rims and spokes visible despite the low resolution. +train_33078.png A small glossy pink step-through bicycle with a white saddle, chrome handlebars and a front wire basket, whitewall tires and painted fenders, shown at a three-quarter angle leaning on a city sidewalk in front of blue-and-orange storefront panels, with silver spokes and a chain guard visible despite the low resolution. +train_33226.png A light teal glossy-framed bicycle captured in near-perfect side profile leaning against a pale concrete wall on sunlit pavement, with thin black tires and spoke-filled wheels, upright swept-back handlebars and a small front rack/basket silhouette visible despite the low resolution. +train_33385.png A low-resolution, flat magenta-pink bicycle shown in side-on profile facing left on a pale/white background, with two thin circular wheels, a compact step-through frame, upright saddle and handlebars, and a small blocky rear rack or basket suggested by darker pixels. +train_33388.png A glossy red bicycle with a slender metal frame and thin dark tires is shown in a side–three-quarter view, resting on a grey concrete surface against a pale wall with indistinct urban clutter behind it, with its circular wheels, dark saddle, and frame geometry still discernible despite the low resolution. +train_33544.png A bright red metal-framed bicycle with black tires and a slim frame is shown in a three-quarter side view with the front wheel slightly turned toward the camera, parked on a sunlit concrete sidewalk against a beige building facade and dark doorway, the low-resolution image still revealing upright handlebars and a rear-rack silhouette. +train_33548.png A low-resolution image of a bicycle shows a dull dark-gray painted frame with shiny chrome accents and a slightly matte texture, captured side-on and a bit angled toward the camera while resting on a kickstand against a pale wall or curb, with clearly visible round wheels, swept-back upright handlebars, a rear luggage rack, fenders and a full chain-guard silhouette. +train_33609.png A light teal city-style bicycle with a thin black saddle and narrow black tires is shown in a slightly angled side view leaning on its kickstand against a pale off-white stucco wall on a grey concrete sidewalk, the front wheel turned inward and a straight handlebar and simple frame silhouette visible despite the low resolution. +train_33858.png A small glossy pink children's bicycle with white trim viewed in three-quarter profile, leaning on its kickstand against a pale concrete curb on a sunlit sidewalk, showing compact wheels, a low step‑through frame and an indistinct front basket or fender despite the low resolution. +train_33948.png A high-contrast monochrome image of a bicycle rendered as a thin white outline on a solid black background, shown in side-on profile with both wheels, a slim straight frame, down-curved handlebars and a narrow saddle visible despite the low resolution. +train_34172.png A low-resolution photo shows a faded orange bicycle with a slim metal frame and thin black tires viewed from a three-quarter side angle, leaning against a sunlit terracotta wall with a vertical pipe, standing on dusty ground and casting a soft shadow, with a dark saddle, exposed chain and rear wheel spokes visible. +train_34346.png A small light-blue bicycle with a glossy metal frame shown in clear side profile, tilted slightly to the left with both wheels visible, set against a pale, lightly textured floor and neutral off-white background, notable for its curved top tube and thin road-style tires. +train_34354.png A low-resolution side/three-quarter view of a matte light-blue steel bicycle with a slightly curved top tube, thin road-style tires, black saddle and handlebars, and a visible chainset, leaning against a mottled brown-beige wall above a paved ground. +train_34391.png A small white child-sized bicycle with black tires and visible training wheels is shown in a three-quarter front-left view on a sunlit grassy/sidewalk outdoor background, its compact frame, round chain-guard and upright handlebars distinguishable despite the low resolution. +train_34413.png A small glossy pink children's bicycle with a white saddle and tires is shown at a three-quarter angle with the front wheel turned left and training wheels visible, resting on a patterned rug against a pale wall with scattered toys nearby. +train_34500.png A low-resolution side view of a sky‑blue, glossy-painted step‑through city bicycle facing right with upright swept handlebars, a white saddle, black tires with silver rims, a small rear rack and chain guard, shown against a plain light background with a faint shadow beneath. +train_34563.png Three-quarter side view of a small red bicycle with a glossy metal frame, black spoked wheels and thin tires, upright handlebars and a visible chain/gear area, set against a pale, mostly featureless background. +train_34644.png A glossy light-blue bicycle captured in a right-facing side profile with thin black wheels and visible spokes, a narrow saddle, curved handlebars and a compact frame, set against a plain white background with a faint shadow beneath. +train_34717.png A glossy teal-blue city bicycle is shown in profile, slightly angled toward the camera and leaning on its kickstand against a sunlit concrete curb with a blurred urban background, revealing thin tires, an exposed chainring, upright handlebars and a small rear rack despite the low resolution. +train_34719.png A flat black line-art side-profile bicycle icon facing right with a minimalist triangular frame and visible spokes in both wheels, narrow saddle, simple curved handlebars and slender tires set against a plain white background. +train_34794.png A small glossy red‑orange children's bicycle with a compact step‑through metal frame and contrasting black tires is shown in a three‑quarter front‑left view resting on a paved urban sidewalk, with visible handlebars and chain area set against a blurred gray street and indistinct background buildings/figures. +train_34882.png An orange-painted bicycle with a glossy finish and black tires—seen at a three-quarter frontal angle leaning on its kickstand—showing swept-back handlebars, silver spokes and a dark saddle, parked on a sunlit, rough cobblestone-like surface against a blurred warm-toned outdoor background. +train_34945.png A matte-black, thin-tubed bicycle shown in clear right-side profile against a plain white background, with smooth metal frame and curved drop handlebars, thin tires with visible spokes, and a small rear cargo rack above the back wheel visible despite the low resolution. +train_35094.png A glossy red metal-frame bicycle with a black saddle and thin black tires is seen from a three-quarter front-right viewpoint, parked on a sunlit concrete path and leaning on its kickstand beside green grass and a low wooden fence, with slender frame tubes, silver spokes and upright handlebars visible despite the low resolution. +train_35210.png A dark navy–black glossy metal-framed bicycle shown in near-profile facing right, with a classic triangular frame, thin spoked wheels and narrow saddle visible against a washed-out light-gray/white background and faint ground shadow. +train_35211.png A low-resolution image of a glossy sky-blue step-through city bicycle seen side-on at a slight angle, leaning against a pale wall on a tiled sidewalk with some greenery nearby, notable despite the blur for its white-rimmed wheels, full metal fenders and a small front wire basket. +train_35212.png A simple black outline of a bicycle seen in clear side profile against a plain white background, showing a thin tubular frame, two spoked wheels, an upright handlebar and a small saddle visible despite the low resolution. +train_35238.png A compact orange-red bicycle with a glossy metal frame and black tires is shown in near side-profile, standing upright on a light, sandy-paved surface beneath an expansive pale sky, with straight handlebars and a narrow saddle faintly visible despite the low resolution. +train_35252.png A small, low-resolution, black pixelated line-art bicycle shown in clear side-on profile with two circular spoked wheels, a simple diamond frame and upright saddle, centered against a plain white background. +train_35368.png A flat, solid red-orange, icon-like bicycle shown in right-facing side profile on a plain white background, with thin circular wheels without visible spokes, a straight top tube, upright handlebars, a simple saddle and pedals rendered as clean line-art despite the low resolution. +train_35552.png A left-facing, side-profile teal/sea-green stylized bicycle with a smooth, flat graphic texture showing thin road-bike tires, visible spokes and chainring, and a simple frame and handlebars set against a plain white background with a faint gray shadow. +train_35617.png A low-resolution side-view of a matte teal-blue step-through bicycle with black tires and an upright handlebar, slightly angled toward the camera and resting on a kickstand against a pale beige stucco wall above concrete with a small patch of grass. +train_35695.png A lime-green bicycle shown in a simplified side profile with a glossy metal frame, small black saddle and handlebars, thin black wheels with faint spoke detail and a visible chainstay/crank, slightly angled to the right against a plain white background. +train_35813.png A black, flat line-drawn bicycle silhouette with smooth monochrome texture shown in clean side profile facing right, featuring thin tires with visible spokes, a diamond frame with a slightly sloping top tube, a narrow saddle and curved upright handlebars, and a visible crankset and pedals set against a plain white background. +train_35817.png A bright red, slightly weathered step-through bicycle with black tires and a thin metal rear rack is shown in near-profile, leaning on its kickstand with the front wheel turned slightly, positioned against a pale stucco wall on a sunlit paved surface. +train_36188.png A matte-black bicycle seen in side profile, slightly angled and leaning against a light concrete wall on a paved surface, with a slim road-style frame, narrow tires, curved drop handlebars and faintly visible chainring and spoked wheels despite the low-resolution image. +train_36269.png A glossy red small bicycle seen in side profile, upright and slightly leaning on gray asphalt next to a white painted curb or lane marker, with contrasting white-rimmed wheels, a dark saddle and upright handlebars visible despite the low resolution. +train_36286.png A side‑angled, low-resolution image of an orange metal bicycle with a slightly weathered matte finish, slim frame and black tires showing spoke patterns, parked upright on a light concrete path beside a strip of green grass and a pale wall. +train_36493.png A pixelated matte-black, line-drawn bicycle shown in right-side profile with a thin tubular frame, clearly defined circular front and rear wheels and upturned handlebars, centered on a pale off-white circular background with a faint gray rim. +train_36512.png A glossy red-orange bicycle with a slim road-style frame and thin black tires is shown in a three-quarter side view, its black saddle, thin-spoked wheels and curved black handlebars visible as it leans slightly to the left against a person in bright clothing on a sunlit urban sidewalk with blurred buildings in the background. +train_36744.png A side-profile cyan-blue bicycle with a smooth, slightly glossy painted finish, thin triangular frame, clearly rounded wheels and upright handlebars rendered as a simplified silhouette against a plain white/transparent background. +train_36996.png A simple black line-drawn bicycle shown in a clean side-profile view, featuring a minimalistic road-style triangular frame with thin tires, drop-style handlebars, visible saddle, chainring and pedals, centered against a plain white, textureless background. +train_37024.png A simple black-outline bicycle rendered in thin, smooth strokes against a plain white background, shown in left-facing side profile with two full circular wheels, a slender diamond frame, upright handlebars and a small saddle and chain area visible despite the low resolution. +train_37081.png A slender pinkish‑purple bicycle with a smooth glossy diamond frame and thin black tires is shown from a slight front‑left angle, leaning upright on a plain white studio background, with a narrow saddle, visible thin spokes and exposed brake and chainstay outlines apparent despite the low resolution. +train_37439.png A small pastel blue bicycle with a slightly glossy metal frame shown in a three-quarter side view leaning on its kickstand on a sunlit sidewalk by a blurred curb, with thin white-rimmed tires and a compact frame silhouette visible despite the low resolution. +train_37469.png A side-profile of a small red‑orange bicycle with a smooth painted‑metal triangular frame, thin black spoked wheels and tires, straight black handlebars and a compact dark saddle, presented upright against a plain light background. +train_37517.png A teal-blue metallic bicycle seen from a three-quarter side/rear angle, its thin metal frame and black saddle showing a slight sheen, white wheel rims and black tires visible as it sits on rough concrete against a pale corrugated metal wall with a small orange reflector on the rear wheel. +train_37539.png A compact, glossy lime-green bicycle with black tires and visible silver spokes is shown in a low-angle left-side profile, leaning against a pale concrete wall on a paved sidewalk with its black saddle and frame casting a distinct shadow. +train_37560.png A black, thin-line silhouette of a road-style bicycle shown in exact side (left-facing) profile on a plain white background, with smooth, untextured strokes revealing thin spoked wheels, a double-diamond frame, curved drop handlebars, a narrow saddle, and a visible crank/pedal assembly despite the low resolution. +train_37594.png A faded turquoise-blue metal bicycle with a slightly scuffed glossy frame shown in a three-quarter frontal view, standing on a cracked concrete surface against a pale wall, with thin black tires, an exposed chainring and a slender saddle visible despite the low resolution. +train_37733.png A pale, slightly weathered metal bicycle with a matte finish is shown in three-quarter side view leaning on its kickstand on a dark paved surface in front of a warm beige wall, with thin-spoke wheels, curved handlebars and a simple frame silhouette visible despite the low resolution. +train_37814.png A teal-blue metal city bicycle photographed from a three-quarter rear-left viewpoint, its slightly glossy painted frame upright on sunlit cracked pavement against a pale concrete background, with a thin saddle, upright handlebars, visible spoked rim and black tire apparent despite the low resolution. +train_37912.png A pale white/cream road-style bicycle with a slim metal frame and narrow spoked wheels is shown side-on at a slight angle, resting on a rough dirt/gravel surface in an outdoor setting with an indistinct person at the left, and its drop-style handlebars, thin saddle, and visible chainstay details are discernible despite the low resolution. +train_37918.png A low-resolution side-profile shot of a small pink–lavender bicycle with a glossy smooth step-through frame, upright swept handlebars, a dark saddle, exposed chainring and thin black tires with light rims, set against a plain light-gray background. +train_37958.png A compact orange-red bicycle with a smooth painted frame shown in clear side profile against a plain white background, featuring thin black tires with visible spokes, an upright black handlebar and saddle, and a simple single-chainring drivetrain visible despite the low resolution. +train_38017.png A matte teal-blue city bicycle captured side-on, slightly angled left and parked on its kickstand against a warm orange-brown wall, with light-colored rims, upright handlebars and a visible rear rack/fender. +train_38126.png A flat matte-black, line-drawn bicycle shown in clean side-profile facing right against a stark white background, with two equal circular wheels, a thin triangular frame, curved drop-style handlebars, a raised saddle and visible pedals and chainstays rendered in pixelated low-resolution lines. +train_38229.png A low-resolution, flat black line-silhouette of a bicycle shown in clear left-side profile against a plain white background, with a thin tubular frame, two circular wheels with visible spoke-like lines, upright stance and a simple matte, minimalist appearance. +train_38391.png A low-resolution, black line-drawn depiction of two nearly identical bicycles shown in side profile on a plain white background, each with a thin diamond frame, visible spoked wheels, simple saddle and straight handlebars forming a flat monochrome silhouette. +train_38915.png A flat matte-black side-profile silhouette of a bicycle with a thin road-style triangular frame, drop-style handlebars, visible saddle and two spoked wheels, centered against a plain white background with high contrast despite the low resolution. +train_39117.png A small mint-green step-through bicycle with a white saddle and light-colored rims is shown in a low side/three-quarter view lying on sunlit pavement with scattered weeds and a pale circular planter in the background, the thin black tires, simple upright handlebars and compact frame clearly visible despite the low resolution. +train_39157.png A light turquoise, slightly worn-painted step-through city bicycle shown in left-side profile, standing upright with its front wheel slightly turned on a tiled floor against a pale beige wall, featuring swept-back handlebars, a dark saddle and white-rimmed tires. +train_39276.png A small bright-red, matte-finish bicycle shown in a left-facing side profile with two thin circular wheels, a minimalist diamond-style frame and narrow saddle, set against a plain white background with a faint gray shadow. +train_39380.png A side-on, cartoon-style yellow-orange bicycle facing right with thin black-outlined wheels and visible spokes, a small saddle and chainring, and a clean plain white background. +train_39445.png A mint-green, matte-finished step-through city bicycle shown in near-side profile facing left with an upright black saddle and handlebars, black tires with silver spokes, full metal fenders and a rear rack, photographed against a neutral gray concrete background. +train_39632.png A luminous yellow-orange, neon-like line drawing of a bicycle shown in clear side profile facing right, with two circular wheels, a triangular frame, visible saddle and handlebars, rendered as a thin glowing outline against a solid dark navy/black background. +train_39754.png A glossy teal-blue city bicycle shown in a three-quarter side view leaning against a pale concrete/white wall on grey pavement, with curved upright handlebars, a dark saddle, silver-spoked black tires and a compact step-through frame visible despite the low resolution. +train_39967.png A low-resolution side-profile of a glossy bright-red city bicycle with an upright curved frame, upturned handlebars, a black saddle and thin black-spoked wheels, shown against a plain white/gray background with a small green circular object near the upper-right. +train_40041.png A weathered matte orange bicycle with thin black tires, upright chrome handlebars and a small black wire front basket is shown in a low-angle side view, standing on a sunlit rough concrete/dirt surface with blurred blue objects and shadows in the background. +train_40081.png A bright red bicycle with a smooth, glossy metal frame and thin black tires is shown in a three‑quarter side view against a plain white background, revealing drop-style handlebars, a slim saddle and visible spoked wheels. +train_40156.png A side-view of a glossy red, road-style bicycle with a triangular frame and thin tires—visible black saddle and white wheel rims—appears to be leaning against a pale blue/white blurred background in this low-resolution image. +train_40189.png A small glossy red children's bicycle with a compact frame, raised sweptback handlebars and white-rimmed wheels (training wheels visible), shown in a three-quarter side view with a rider seated on it against a bright, featureless light-gray/white background and a faint floor shadow. +train_40248.png A dark red, slightly glossy city bicycle seen in a three-quarter side view leaning on its kickstand on a sunlit urban sidewalk in front of a beige wall and metal railing, with visible white-walled tires, an upright black saddle, swept-back handlebars and a rear cargo rack. +train_40455.png A bright blue painted-metal bicycle seen in a three-quarter front-left view, its front wheel turned slightly to the right as it stands upright against a pale wall on a tiled/paved surface, displaying straight handlebars, a slim saddle, visible chainring and thin road-style tires with subtle shadowing. +train_40537.png A flat, cyan-blue bicycle shown in side profile with thin dark-rimmed wheels and upright handlebars, appearing to lean against a vertical brown post set against a smooth, pale aqua background with a simple poster-like texture. +train_40561.png A small glossy turquoise/teal children's bicycle with a low step-through curved frame and chunky white balloon tires is shown in a front-left three-quarter view, standing on its kickstand on a pale tiled/concrete floor against a plain light wall, with upright handlebars and no visible gears or accessories. +train_40686.png A low-step city bicycle in faded light brown paint with cream-colored fenders and a woven-style front basket is shown in a three-quarter side view, leaning on its kickstand on a gray sidewalk against a shopfront wall covered with colorful posters, with upright swept-back handlebars, a rear rack, enclosed chain guard and slim tires visible despite the low resolution. +train_40951.png A small blue bicycle with a glossy metal frame is shown in slight side profile leaning against a beige stone wall on a narrow sunlit pavement with a strip of grass, revealing thin tires, a curved top tube and a light-colored saddle despite the low resolution. +train_41343.png A low-resolution, flat black silhouette of a bicycle shown in right-side profile with a thin diamond frame, narrow tires and visible spoke detail, a short saddle and curved handlebars, set against a plain white background with noticeable pixelation. +train_41548.png A flat, matte red side-profile bicycle icon—smooth, vector-like silhouette with two circular wheels, a triangular frame, straight handlebars and a thin saddle—posed on a plain white background with a faint gray shadow beneath. +train_41735.png A pixelated black line‑art side‑profile of a bicycle—showing a thin triangular frame, visible chainring and pedals, two full spoked wheels and slightly curved handlebars—rendered as a flat matte silhouette against a plain white background. +train_42056.png A small bright pink bicycle with a thin metal frame and black tires shown in profile against a plain white background, the front wheel turned slightly toward the viewer, featuring upright handlebars and a compact saddle. +train_42107.png A matte-black city-style bicycle viewed from a three-quarter side angle with a simple straight handlebar and tubular frame, thin road tires and a small rear rack, standing on gray pavement against a blurred background of green foliage and a person in an orange jacket, with the overall finish appearing slightly worn but non-reflective despite the low resolution. +train_42154.png A glossy red bicycle with a slender metal frame, black saddle and handlebars, shown in a three-quarter side view leaning on its kickstand against a pale indoor wall and tiled floor, with both black spoked wheels and a visible chain area discernible despite the low resolution. +train_42315.png A simple black line-drawn bicycle shown in clean side-profile against a plain white background, with thin uniform strokes depicting two spoked wheels, a triangular frame, visible chainring and pedals, upright swept handlebars and a slim saddle. +train_42499.png A small teal-blue, matte-finish step-through bicycle shown in a side-on, slightly front-angled pose with black rims and narrow tires, a curved upright handlebar and visible chainring, standing against a plain white background with a faint shadow beneath. +train_42539.png A glossy teal-blue metal-framed bicycle is shown from a low side-front angle, propped upright with an upright white saddle and thin black tires, resting on sunlit rough concrete near a low curb with scattered gravel and indistinct blurred buildings/vehicles in the background. +train_42570.png A low-resolution side-profile of a light-gray metallic bicycle facing left, with thin tubular frame and round wheels, visible saddle and drop-style handlebars, shown against a plain white background with a faint shadow beneath. +train_42613.png A small glossy turquoise-blue metal city bicycle shown in a three-quarter side view from the front-right, with a thin tubular frame, upright curved handlebars, black saddle and tires, leaning against a pale concrete wall on sunlit pavement with indistinct urban clutter in the background. +train_42768.png A seafoam-green, matte-finish step-through bicycle captured in a clean side-on profile with swept-back black handlebars and a matching black saddle, thin black tires with silver rims, a faint shadow under the wheels, and a plain pale studio-like background. +train_42856.png A bright lime-green step-through bicycle with a glossy, smooth frame shown in a left-facing side profile against a plain white background, featuring thin black tires with simple spoke rims, straight handlebars, a compact saddle and a faint shadow beneath indicating it stands upright. +train_42892.png A small turquoise-blue children's bicycle with a glossy, slightly scuffed metal frame and white-rimmed black tires is shown from a front-right three-quarter, slightly elevated viewpoint, parked on pale tiled/gritty ground against a light wall amid clutter including a noticeable red object behind it. +train_43033.png A low-resolution side-view of a teal-blue bicycle with a slim frame and slightly sloping top tube, curved drop-style handlebars, thin dark wheels and a small saddle, depicted against a soft peach-beige rounded background with a faint shadow beneath. +train_43052.png A small glossy red bicycle with a thin metal frame and narrow black saddle is shown in a three-quarter side view leaning slightly to the right on light pavement with blurred green foliage behind it, the low-resolution image still revealing spoked wheels, thin tires, and upright handlebars. +train_43316.png Glossy yellow-painted bicycle shown in a right-facing side view with a smooth metal frame, black saddle and handlebars, thin black tires with simple rims, and a small soft gray oval shadow on a plain white background. +train_43343.png A matte red, thin-framed bicycle with black tires and silver spokes is shown in a three-quarter side view with the front wheel slightly turned, leaning against a dark vertical post on a light-gray paved sidewalk in front of a blurred, colorful storefront. +train_43412.png A low-resolution side-view red bicycle with a smooth, flat graphic texture, thin frame, black wheels and handlebars, and a small saddle, centered on a pale green circular background. +train_43422.png A pixelated cyan-blue bicycle shown in a right-facing side profile with a matte-painted thin-tubed frame, thin road-style tires, a visible chainring, upright saddle and curved handlebars, set against a plain off-white background with a faint shadow beneath. +train_43434.png A matte-silver city bicycle shown in a three-quarter side view, parked on light concrete against a pale wall with a blue door, with thin black tires, a raised black saddle, a rear luggage rack and a small front basket visible despite the low resolution. +train_43464.png A glossy sea‑green step‑through bicycle shown in near‑side profile leaning against a pale wall on reddish tiled pavement, with white fenders/chain guard, chrome‑spoked wheels, an upright handlebar and a dark saddle visible despite the low resolution. +train_43468.png A glossy bright-red bicycle is shown in a three-quarter side view—its slim frame and dark wheels with visible spokes stand out against a blurred outdoor backdrop of green foliage and pavement, the paint reflecting light despite the low resolution. +train_43550.png A red-painted road-style bicycle with thin black tires and curved drop handlebars is shown in a three-quarter side view, leaning against a pale indoor wall on a light concrete floor, revealing a slim frame, black saddle and visible chainring despite the low resolution. +train_43559.png A pixelated white-gray bicycle rendered with a blocky, low-resolution texture is shown in near-side profile facing right, revealing a thin diamond frame, straight handlebars, visible saddle and chainring, and two full wheels standing upright against a uniform dark charcoal background with a faint lighter patch beneath the rear wheel. +train_43573.png A three-quarter side view of a compact city bicycle with a glossy bright-red metal frame, black tires with visible silver spokes, upright handlebars and a small rear rack, leaning on grey pavement beside a standing person against a blurred urban street background. +train_43688.png A matte-black, flat silhouette of a bicycle shown in strict side profile — thin rim wheels, triangular frame with a visible chainring and seat tube and a simple handlebar outline — centered on a light gray circular vignette set inside a slightly darker rounded-square background, giving an icon-like low-resolution graphic appearance. +train_43847.png A low-resolution side view of a pale turquoise/sky-blue bicycle with a slim metal frame and narrow black tires that appears to be leaning against a low concrete curb or wall on rough gray pavement, with a dark saddle, visible chainstay and thin silver spokes discernible despite the blur and a muted greenish background. +train_44423.png A pale blue metal bicycle with a slightly matte finish and black tires is shown from a front three-quarter viewpoint, leaning on its kickstand against a light cream wall and tiled floor, featuring upright handlebars, visible fenders over both wheels and a small rear rack. +train_44543.png A flat dark-gray/black matte silhouette of a classic road-style bicycle shown in strict side profile facing right, with thin frame tubes, visible chainring and spoked wheels, curved drop handlebars and a narrow saddle, set against a plain white background. +train_44666.png A flat, dark-gray pixelated side-on bicycle facing right, with a thin-frame silhouette, curved handlebars, a slim saddle, a visible chainring and simple spoked wheels, set against a plain white background. +train_44709.png A small pale-blue bicycle with a glossy metal frame, black saddle and tires and visible silver spokes is shown in side-on profile leaning indoors against a pale green wall and brown vertical panel on a light-colored floor. +train_45233.png A small bicycle with a matte cobalt-blue triangular frame and upright handlebars, shown from a slightly elevated three-quarter view standing on a light-gray paved surface against a pale background, featuring a conspicuously orange front wheel contrasting with a darker rear wheel and a visible saddle. +train_45449.png A small lime-green bicycle with a glossy metal frame and thin black tires is shown in a three-quarter side view against a plain white background, sporting a bright red saddle and short curved handlebars that remain discernible despite the image's low resolution. +train_45461.png A compact glossy sky‑blue bicycle with a white fork and chrome rims is shown in a three‑quarter side view, leaning slightly against a stone/urban pavement backdrop, with narrow black tires, upright handlebars with visible brake cables, and a short, slightly angled top tube. +train_45489.png A matte black, slightly worn city bicycle with an upright handlebar and thin frame is photographed from a slightly elevated front-left angle as it leans against a pale, tiled indoor floor/wall in low light, with the rear wheel, chainstay and a small front reflector/light visible despite the low resolution. +train_45605.png From a three-quarter front-left viewpoint, a small turquoise/teal metal bicycle with a slightly glossy painted frame and thin black tires is propped against a rough gray concrete wall in a dim, cluttered garage, with upright handlebars, a triangular chain guard and a rear luggage rack discernible despite the low resolution. +train_45638.png A matte bright orange-red bicycle captured in a three-quarter side-front view with the front wheel slightly turned toward the camera, showing a simple metal commuter frame with upright handlebars, black saddle and tires, a small black front rack or basket, and positioned against a pale concrete/tiled floor and light wall background. +train_45673.png A low-resolution side-view of a cream-colored, matte-finish step-through bicycle with brown leather saddle and grips, chrome fenders, a rear rack and thin-spoked wheels, standing on its kickstand against a plain light-gray wall and floor. +train_45676.png A pale silver/cream city bicycle with a smooth metallic frame and swept-back upright handlebars is shown in side-on profile, parked upright on a paved surface with the front wheel slightly turned toward the camera against a blurred wall or fence, and despite the low resolution its thin spoked wheels, rear rack and full fenders/chain-guard are still discernible. +train_45692.png A matte dark-blue to black bicycle is shown in clear side profile, standing upright on a kickstand on pale pavement against a bright, washed-out background, with thin road-style wheels, a simple diamond frame and upright, slightly swept-back handlebars visible as a crisp silhouette despite the low resolution. +train_45769.png A small teal-blue step-through bicycle with a matte-painted frame, black saddle and handlebars is shown in a three-quarter side view leaning on its kickstand against a grey concrete wall over pale tiled pavement, with small wheels, a rear rack and a faint chain-guard visible despite the low resolution. +train_46106.png A flat, matte-black, low-detail bicycle shown in profile facing right on a plain white background, with a thin straight frame and fork, solid circular wheels with small hubs, upright handlebars, and a visible crank and pedal. +train_46157.png A low-resolution side-profile of a glossy turquoise/teal bicycle with a metal frame and thin black tires, showing its chainring, silver spokes and small saddle, parked on gray pavement near a light curb with blurred green foliage behind. +train_46161.png A side-profile, left-facing orange-red road bicycle with a glossy metal frame set against a plain white background, featuring thin black tires with spoked rims, drop-style handlebars, a slim black saddle and a visible compact chainset near the rear wheel. +train_46186.png A matte-black metal-framed bicycle shown in side profile and propped upright against a pale concrete wall on a grey tiled sidewalk, with thin rims, a visible top tube and saddle, straight handlebars and a small rear reflector discernible despite the low resolution. +train_46203.png A low-resolution side-view of a glossy orange bicycle leaning against a pale beige wall, with a slim, curved frame, thin black tires with visible spoke highlights, upright handlebars, and a faint shadow on the ground. +train_46389.png A matte-black, slightly pixelated road-style bicycle shown in clear side profile against a plain white background, appearing as a solid silhouette with a thin triangular frame, drop handlebars, two spoked wheels, visible chainring and seatpost, and no rider or accessories. +train_46570.png A flat, solid black line-drawn bicycle shown in left-facing side profile with two spoked wheels, a triangular frame, slender tires, an upward-curving handlebar and small saddle, rendered as a matte silhouette against a plain white background. +train_46899.png A side-on view of a small bicycle with a bright red, slightly glossy metal frame, contrasting black spoked wheels and chainring, upright handlebars and saddle, set against a pale, out-of-focus background with a faint shadow beneath. +train_46922.png A small, red glossy road-style bicycle with a triangular frame and thin black wheels is shown in a right-facing three-quarter side view with drop handlebars and a hunched cyclist in blue, set against a plain white background with a faint gray shadow beneath the wheels. +train_47175.png Glossy seafoam-teal metal bicycle frame with a brown leather saddle and black thin-spoked wheels, shown in a right-facing three-quarter profile leaning slightly against a pale tiled indoor wall and floor with scattered objects in the cluttered background. +train_47344.png A glossy bright red bicycle with a slim metal frame and thin black tires is shown from a three-quarter front-left view, its front wheel slightly turned as it stands on a gray sidewalk against a pale blue-gray wall, with upright handlebars and a small saddle visible despite the low resolution. +train_47469.png A small glossy teal bicycle with black tires and silver spokes is shown from a three-quarter front-left view, resting on a concrete floor indoors against a pale wall, with upright handlebars, a curved top tube and a visible front wire basket and kickstand despite the low resolution. +train_47510.png A low-resolution image of a glossy teal/aqua metal bicycle shown in a near side-on pose leaning slightly left, with dark thin wheels and faint spokes, a straight crossbar frame and what appears to be a small front rack or basket silhouette, standing on sunlit concrete against a blue wall or storefront. +train_47519.png A small, smooth light-blue painted road-style bicycle shown in a three-quarter side view against a plain white background, with thin black tires, thin spokes, a slender saddle, drop-style handlebars and a visible chainring and frame triangle visible despite the low resolution. +train_47567.png Side-on view of a bright red bicycle with a glossy metal frame and thin black tires, its curved handlebars and two round wheels clearly visible as it leans slightly to the right against a dark ground with a faint blue background. +train_47792.png A cyan-blue, flat, slightly pixelated bicycle shown in left-facing side profile with a thin triangular frame, thin spoked wheels, an upright saddle and curved handlebars, set against a plain white background with no visible environment. +train_48045.png A high-contrast, flat black line-drawing of a bicycle shown in exact side profile on a plain white background, with thin wheels, a minimalist triangular frame, drop-style handlebars, a visible saddle and chainring, rendered as crisp silhouette-like strokes. +train_48198.png A small, matte-black silhouette of a bicycle shown in a three-quarter side view against a plain white background, with thin spoked wheels, a slender tubular frame, an upright saddle and curved handlebars, and a faint rear rack/luggage carrier visible despite the low resolution. +train_48553.png A small bicycle with a smooth, glossy red-painted metal frame and black tires is shown in a side-on, slightly angled view against a pale, blurred background with a turquoise object at the left, and despite the low resolution you can still make out circular wheel spokes, a dark saddle, and straight handlebars. +train_49151.png A low-resolution side view of a glossy teal/aqua city bicycle with a downward-sloping step-through frame and thin black tires, parked against a pale beige storefront wall with a yellow vertical stripe and shadowed pavement beneath. +train_49172.png A bright orange-red city-style bicycle with a smooth, slightly glossy tubular frame and thin black tires is shown in a three-quarter left-side view, standing upright on its kickstand with swept-back handlebars and a compact saddle, positioned against a plain white background with a small person to the left and a vertical pole to the right visible despite the low resolution. +train_49192.png A red-painted bicycle with a slightly glossy metal frame shown in a left-side three-quarter view with black tires and silver rims, upright handlebars and saddle visible, parked on a gray paved surface against a light concrete wall. +train_49485.png A glossy bright-blue bicycle with a curved top tube and black tires is shown in a three-quarter side-front view, propped upright on sunlit asphalt near a pale curb with a parked car behind it, and despite the low resolution you can make out upright handlebars, a rear rack/fender and reflective chrome components. +train_49578.png A small turquoise-blue glossy bicycle is shown in near-profile, slightly angled to the left, standing on a pale concrete surface against a blurred light-blue background, with thin black tires and visible spokes, a slim dark saddle, upright handlebars and an exposed single-frame geometry apparent despite the low resolution. +train_49962.png A low-resolution, side-on white-outline bicycle rendered in thin, slightly jagged lines showing two spoked wheels, a slender frame, saddle and handlebars, set against a dark, subtly textured background with a faint circular vignette. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/bottle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/bottle_descriptions.txt new file mode 100644 index 0000000..e982f74 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/bottle_descriptions.txt @@ -0,0 +1,500 @@ +train_00053.png A small glossy translucent aqua plastic bottle with a white screw cap and a darker blue horizontal band near its midsection, shown upright in a slightly top-down frontal view against a plain white background with a faint shadow beneath, revealing smooth sides and faint vertical ridges. +train_00220.png A small bright yellow, smooth glossy plastic bottle with a short red screw cap and a rectangular blue label near its lower front, shown upright and centered from a slightly elevated frontal viewpoint on a plain white surface casting a soft shadow. +train_00398.png A small, glossy, light-blue–tinted glass bottle with a rounded bulbous base and long narrow neck stands upright and centered in a slightly overhead front view against a soft white-to-pale-blue gradient background, its smooth reflective surface and subtle internal highlights visible despite the low resolution. +train_00433.png A small translucent glossy pink-red bottle with a smooth, slightly ribbed surface and a white screw cap, shown in a diagonal three-quarter view against a soft peach-pink background, with faint vertical seam and bright specular highlights visible despite the low resolution. +train_00660.png Front-facing, upright glossy magenta-pink rectangular bottle with a short dark cap and a small pale rectangular label near its center, showing pixelated white highlights and set against a flat deep red/maroon background. +train_00761.png A glossy dark-green glass bottle with a narrow neck and tapered shoulders, bearing a small pale rectangular label, is shown upright from a slightly elevated front-left angle on a warm brown wooden surface with a soft, out-of-focus background and a vertical specular highlight along its curved surface. +train_01039.png A tall, slender green glass bottle with a glossy, translucent texture, a white rectangular mid-body label and silver cap, shown upright front-on with sharp specular highlights and a faint reflective base against a dark background featuring a vertical magenta glow to the left and a small bright spot at top-right. +train_01165.png A small glossy translucent green bottle with a darker green cap and narrow neck is shown upright, slightly tilted to the left, against a plain white background, its reflective highlights and a faint rectangular label area visible despite the low resolution. +train_01319.png A taller amber-brown glass bottle viewed from a three‑quarter front-left angle, its glossy reflective surface topped by a dark screw cap and bearing a green-and-cream rectangular label around the midsection, standing on a dark reflective surface against a black background with a shorter, similarly colored bottle visible to its right. +train_01375.png A slender, dark blue-green glass bottle with a glossy reflective surface and a narrow neck topped by a dark cap, seen from a slight frontal-top viewpoint standing upright on a warm wooden surface against a softly blurred brown background with a small bright specular spot to the right and a faint vertical lighter area suggesting a label or reflection. +train_01551.png A small, upright, frontal-view green glass bottle with a glossy reflective surface and darker green neck and brown cap, displaying a cream circular label with a small brown central emblem, set against a pale yellow oval on a white background. +train_01752.png A small upright amber-brown glass bottle with a smooth glossy texture and dark cap, seen front-on from a slightly elevated viewpoint against a soft beige background, casting a faint shadow and showing tapered neck and rounded shoulders with no visible label. +train_01812.png A small green glass bottle with a glossy, slightly uneven surface and a darker neck/cap stands upright and centered in a frontal view against a warm orange-beige background (likely a tabletop or wall) casting a faint shadow, showing bright specular highlights and a subtle rectangular label area despite the low resolution. +train_01876.png An upright, slightly angled small cobalt-blue plastic bottle with a darker blue screw-style cap, glossy cylindrical body and rounded shoulders, photographed against a plain white background with a faint cast shadow. +train_01962.png Two small upright amber glass bottles with smooth, glossy surfaces, white ribbed screw caps and rectangular pale labels are seen from a slightly elevated frontal viewpoint grouped on a warm wooden surface with a softly blurred beige background, one bottle partially obscuring another. +train_02172.png Two upright glossy translucent plastic beverage bottles—one bright lime-green with a matching green screw cap and a white horizontal label, the other hot-pink/red with a purple cap and a white label—are seen from a slightly elevated frontal view standing close together on a dark tabletop against a pale wall, their smooth reflective surfaces and label banding visible despite the low resolution. +train_02249.png An upright, front-facing orange plastic bottle with a slightly glossy surface and a white screw cap, displayed against a plain white background with a darker orange band and subtle highlights indicating curved sides. +train_02647.png An upright, front-facing small amber-brown glass bottle with a glossy smooth surface and a bright red screw cap, positioned slightly off-center on a pale white tabletop against a neutral light background with a soft shadow to its right, the narrow neck and cylindrical body clearly visible despite the low resolution. +train_02921.png Two small, identical glossy green glass bottles with bright red screw caps and yellow-orange rectangular labels stand upright side-by-side in a frontal view against a plain white/gray background, showing strong specular highlights and soft shadows underneath while label text is unreadable but color blocks and cap ridges remain distinguishable. +train_02964.png An upright, squat white opaque plastic medicine-style bottle with a ribbed bright red childproof cap and a matching red rectangular label band on the front, photographed from a slightly elevated frontal viewpoint against a featureless white background, showing a smooth matte texture and clear cap contrast despite low resolution. +train_03132.png An upright amber-brown glass bottle with a glossy, reflective surface and dark cap, photographed slightly from above against a soft white/gray background that casts a faint shadow and reveals a blurred pale label area and rounded shoulders despite the low resolution. +train_03194.png A glossy, translucent red-pink bottle with a narrow neck and rounded shoulders is shown upright from a slightly elevated frontal viewpoint, sitting on a white tabletop against warm wooden panels and exhibiting strong specular highlights and a faint rectangular label or reflection on its body. +train_03226.png A small upright, bulbous amber-yellow glass bottle with a smooth, glossy translucent surface and narrow neck topped by a dark cap, shown in slight frontal view against a soft, overexposed white background with faint vertical blur and a subtle tabletop shadow. +train_03371.png A slim, upright translucent pale-blue plastic bottle with a darker navy screw cap and a glossy vertical highlight, shown front-on against a plain white background with tapered shoulders and a narrow neck visible despite the low resolution. +train_03593.png A glossy amber-brown tall bottle with a white cap stands upright side-by-side with a shorter bright cyan bottle featuring a white cap and a red base, both shown frontally against a flat pale turquoise background, their smooth reflective plastic/glass surfaces and simple color-block shapes discernible despite the low resolution. +train_03752.png A glossy teal/sea‑green plastic bottle with a slightly tapered neck and darker cap, showing pronounced white specular highlights and a smooth reflective texture, stands upright on a warm wooden surface viewed from a low frontal angle against a softly blurred bright green outdoor (grass/foliage) background. +train_04045.png An upright small amber-brown glass bottle with a glossy, reflective surface and a dark (black) screw cap shown in frontal view centered on a plain light beige/gray background, casting a soft shadow and displaying rounded shoulders, a narrow neck and a faint lighter rectangle on the body suggesting a label despite the low resolution. +train_04231.png A row of three tall, dark-brown glossy glass bottles with long necks, metallic caps and red-and-white paper labels stand upright on a white surface against a soft gray background, photographed front-on with a slight downward angle so the center bottle faces the camera while the flanking bottles are slightly turned, the smooth reflective glass showing bright specular highlights and a few scuffed marks visible despite the low resolution. +train_04327.png A small, upright amber-colored glass bottle with a smooth, glossy surface and bright specular highlights, viewed straight-on against a neutral light background that casts a soft shadow, topped by a short neck and bright blue screw cap and bearing a dark blue rectangular label band around its midsection. +train_04355.png A frontal, upright view of a narrow amber glass bottle with a glossy reflective surface, a white screw cap and a rectangular pale label on the front, set against a bright cyan/teal background fabric with a subtle shadow at its base. +train_04404.png A glossy dark green glass bottle with a gold cap and a small white label showing a red circular mark, standing upright centered on a pale surface against a deep black background, its slender neck and rounded shoulders visible with bright specular highlights. +train_04425.png A glossy red cylindrical plastic bottle with a dark cap lies on its side at a slight angle on a light cream textured fabric surface, showing a small reflective highlight and a faint vertical seam along its body. +train_04477.png A small upright dark amber glass bottle with a smooth glossy finish and a light-colored screw cap, viewed front-on against a uniformly bright red background/ surface with a soft shadow at its base and reflective highlights on the glass. +train_04783.png The central object is an upright amber-orange translucent bottle with a glossy, slightly ribbed texture and dark screw cap, seen front‑on in close-up among similar bottles against a plain pale‑gray studio background, showing strong vertical highlights and faint seam/label outlines despite the low resolution. +train_04795.png A glossy dark-green glass bottle with a long neck and a red-orange banded label, shown upright from a slightly elevated frontal viewpoint among several identical bottles on a plain white/gray background, displaying bright reflections on its curved surface and faint shadows at the base. +train_04907.png A squat, upright opaque-white plastic bottle with a slightly matte, speckled texture, a narrow bright-blue band below a darker cap, and a soft circular shadow beneath, photographed front-on and slightly off-center on a dim, uneven gray-brown surface against a low-contrast dark background. +train_04960.png A small glossy turquoise-blue glass bottle with a smooth, slightly rounded body and long narrow neck, shown upright in a front-facing view on a plain white background with bright specular highlights and a soft gray shadow beneath. +train_04968.png A small amber-brown glass bottle with a glossy, slightly translucent finish and a dark gray cap sits upright, front-facing and centered against a pale neutral background with a soft shadow beneath, showing rounded shoulders and a narrow neck. +train_05007.png A small squat amber-glass bottle with a ribbed yellow screw cap, shown upright and front-facing with glossy highlights on its curved surface and a faint soft shadow on a plain white background. +train_05047.png A slender, smooth glossy pale blue-tinted bottle with a narrow neck and dark cap stands upright in a frontal three-quarter view against a plain white background, showing a faint rectangular mid-body label and a soft cast shadow to the right. +train_05140.png An upright, slender glossy red bottle with a narrow neck and black screw cap is shown front-on against a plain white surface with a vertical gray panel behind it, its smooth reflective texture and small dark shadow at the base visible despite the low resolution. +train_05157.png A small metallic teal water bottle with a glossy, reflective finish and a white screw cap lies on its side, slightly tilted toward the camera, resting on a neutral beige surface with a blurred red background and visible specular highlights and subtle surface wear despite the low resolution. +train_05209.png An upright, front-facing off-white/cream glossy bottle with a short neck and rounded shoulders showing faint specular highlights and a small dark shadow at its base, photographed against a warm orange-red background. +train_05259.png A small amber-brown glass bottle with a glossy, reflective surface is shown upright and centered in a slightly low-angle front view on a warm wood-grain tabletop with a softly blurred tan background, the narrow neck and rounded shoulder silhouette defined by a bright specular highlight along the left side. +train_05614.png A small, upright teal-green bottle shown front-on with a darker green screw-top and rounded shoulders, a smooth glossy surface with a vertical highlight and subtle gradient on its cylindrical body, centered against a flat turquoise background. +train_05670.png A small translucent teal-green glass bottle with a glossy, slightly reflective surface, squat rounded body and short neck topped by a square-ish stopper, shown from a slightly elevated frontal viewpoint against a plain light background with a faint cast shadow. +train_05671.png A small, squat, glossy red‑orange plastic bottle with rounded shoulders and a short neck, shown upright and front‑facing against a plain light background, topped by a bright yellow‑orange cap and bearing a narrow white label band with indistinct dark markings visible despite the low resolution. +train_05683.png A short, dark-amber glass bottle with a glossy, reflective surface and a darker screw cap, shown upright in a slightly frontal three-quarter view on a plain light-gray background casting a soft shadow, with a faint rectangular label or darker band visible on the lower body. +train_05864.png A small, upright amber-brown glass bottle with a glossy, slightly reflective surface and a narrow neck topped by a dark screw cap, shown front-on against a plain white/cream background with a faint shadow at its base. +train_05883.png A low-resolution frontal shot of three upright bottles on a plain white surface against a pale background: two tall, glossy amber glass bottles with long slender necks and faint rectangular labels at left and center, and a shorter clear plastic bottle at right containing bright orange liquid capped with an orange lid, all showing reflective highlights and minor scuffs visible despite the blur. +train_06069.png A small translucent teal-green glass bottle with a smooth, slightly reflective surface and a white screw cap, shown upright in a three-quarter front view against a dark, out-of-focus background with a faint lighter area at the top left, its rounded shoulders and narrow neck visible despite the low resolution. +train_06506.png An upright amber-glass bottle with a smooth glossy surface and dark screw cap, seen from a slightly elevated frontal view on a warm wooden tabletop against an orange-brown backdrop, showing bright specular highlights and a short shadow to its right. +train_06602.png An amber-brown glossy glass bottle with tapered shoulders and a long neck lies on its side, neck angled toward the upper-right, on a pale, slightly textured surface, showing a faint rectangular lighter patch (label) and bright specular highlights along its curved body. +train_06613.png A glossy aqua-blue plastic bottle with a lighter blue screw cap and rounded top stands upright on a reddish-brown wooden floor, seen from a slightly elevated frontal angle with soft highlights and a dim, out-of-focus indoor background. +train_06691.png A translucent, sea‑green glass bottle with a glossy reflective finish, a darker narrow neck and rounded body, lies slightly tilted on its side against a pale, green‑tinted background, with bright specular highlights and a faint shadow revealing its smooth glass texture despite the low resolution. +train_06872.png A small translucent bright-green plastic bottle with a pale cap and a yellow-green wraparound label bearing darker markings, shown upright in a slightly frontal view on a light brown wooden surface against a blurred green/foliage background, with a tapered neck, horizontal label band and faint vertical ribbing on the lower body. +train_06933.png A tall, slender, glossy deep-red plastic bottle shown upright in a frontal view against a plain white background, with a narrow tapered neck topped by a small white cap, bright specular highlights on the smooth surface, and a faint pale rectangular label on the upper body. +train_06945.png A tall, cylindrical cobalt-blue bottle with a darker screw cap stands upright in frontal view on a pale indoor surface near a white wall corner, its glossy glass surface showing bright specular highlights, a faint floor reflection and a soft shadow. +train_06962.png A small upright brown glass bottle with a glossy, smooth surface and a bright red cap, shown front-on against a plain white background, bearing a white rectangular label with a darker central emblem (label text illegible at this resolution) and casting a faint shadow to one side. +train_07100.png The darker brown glass bottle on the right stands upright and slightly angled toward the camera, its glossy amber-brown surface catching highlights, a tan paper label centered on the body with a small red circular mark, and it sits on a red tabletop against a softly blurred pale vertical-striped background. +train_07106.png An upright amber-brown glass bottle with a glossy reflective surface, a white-and-blue label band near its midsection and a metallic cap, photographed front-on from a slightly elevated angle sitting on a warm wooden tabletop against a blurred dark background. +train_07246.png A glossy, dark gray-to-black slender glass bottle with a long narrow neck and small cap, standing upright with a slight rightward lean against a plain white background, showing a subtle rectangular lighter label area on the mid-body and faint specular highlights along its curved shoulder. +train_07555.png A glossy translucent teal-blue bottle with a narrow neck and slightly darker top stands upright slightly left of center on a warm beige tabletop against a pale blue background, its smooth glass/plastic surface showing vertical highlights and a soft shadow to the right that distinguish its shape despite the low resolution. +train_07868.png A small translucent green glass bottle with a glossy, slightly speckled surface and narrow neck seen in a three-quarter frontal view, standing upright on warm brown wooden slats against a dark, out-of-focus background, with a faint pale band around the midbody and bright reflective highlights on the shoulder. +train_07971.png A small glossy yellow‑orange plastic bottle stands upright on a white background, seen from a slightly elevated frontal view revealing a darker orange screw cap, subtle highlights on its smooth reflective surface, and a soft shadow cast to the lower-right with no discernible label. +train_07998.png A small brown glass bottle with a glossy, slightly worn surface and narrow neck capped in red, shown upright in a three-quarter frontal view on a warm wooden tabletop with an out-of-focus amber-brown background, featuring a faded oval yellow label and subtle light reflections visible despite the low resolution. +train_08042.png A glossy amber-brown glass bottle with a red screw cap and a small rectangular white label is shown upright in a three-quarter frontal view on a warm, softly lit surface with a faint shadow beneath and an out-of-focus orange-beige background, the glass highlights and dark markings on the label still discernible despite the low resolution. +train_08111.png A small translucent sea‑green glass bottle with a shiny silver screw cap is shown at a three‑quarter diagonal angle lying on a dark matte surface, its smooth glossy texture catching bright teal highlights against a blurred turquoise rectangle in the dim background. +train_08204.png A tall, narrow, translucent green glass bottle shown upright from a frontal viewpoint against a plain black background, with a dark screw cap, a light blue-and-white rectangular label on its lower body, and glossy reflective highlights on the smooth surface despite low-resolution pixelation. +train_08307.png An upright amber glass bottle with glossy reflections and a narrow neck topped by a metallic cap, seen from a slightly angled frontal view resting on a warm wooden surface against a soft-focus green foliage background, with a pale rectangular label showing a small red band near its top visible despite the low resolution. +train_08313.png A small translucent amber glass bottle with a glossy, slightly reflective surface and rounded shoulders and short neck is shown upright from a slightly elevated frontal viewpoint on a pale warm‑beige countertop, casting a soft shadow to its right and displaying a few bright specular highlights despite the low resolution. +train_08374.png An upright, squat amber-brown glass bottle with a narrow neck capped by a cork, glossy with bright specular highlights and a rounded shoulder, shown frontally against a flat dark background with a faint shadow beneath. +train_08540.png A glossy deep-blue glass bottle with a narrow neck and rounded shoulders stands upright in a slight three-quarter frontal view on a pale tabletop, showing a bright vertical highlight and soft shadow against a blurred beige-gray background with a small reddish area at the lower left. +train_08542.png A small glossy red rectangular plastic bottle with rounded shoulders and a black screw cap, bearing a faded beige label with a dark central emblem, shown upright in frontal view on a light wooden surface against a blurred white background with a faint cast shadow. +train_08576.png A centered, upright, glossy deep-red glass bottle with a narrow neck and rounded base, seen straight-on in close-up, topped by a small bright yellow-orange glowing tip that casts warm reflections on the dark, glossy surface and a nearly black background speckled with tiny red highlights. +train_08590.png A small amber-brown glass bottle with a glossy, slightly reflective surface and narrow neck stands upright facing the camera on a flat surface against a two-tone background (teal left, pale beige right), showing a faint rectangular white label and bright highlights on its shoulder and cap. +train_08714.png Front-facing, upright short amber-brown glossy glass bottle with a bright red screw cap and a pale rectangular label band on its midsection, shown centered against a solid black background with low-resolution blocky pixelation and visible specular highlights. +train_08837.png A small glossy teal-green glass bottle with a narrow neck and dark cap stands upright and front-facing on a smooth turquoise-gradient background, showing rounded shoulders, a cylindrical body, bright specular highlights and a soft reflected shadow beneath. +train_08898.png A small translucent pale-green glass bottle with a glossy, slightly speckled surface and a short narrow neck topped by a dark cap, shown front-on at eye level resting on a dark rectangular base against a softly lit beige wall, with gentle highlights and a faint shadow beneath. +train_08925.png Two upright amber glass bottles—one short, squat and darker amber with a rounded body and short neck, the other taller and slender with a long neck—are shown from a slightly elevated frontal view against a plain white background, their glossy, translucent surfaces catching bright specular highlights and casting faint shadows beneath. +train_09016.png A short, glossy cream-colored plastic beverage bottle with a black screw cap and gently tapered neck seen from a slightly elevated frontal view against a plain white background, its smooth reflective surface and faint rectangular label area visible despite the low resolution. +train_09097.png A glossy green glass bottle with a metallic cap and a large rectangular white label bearing a small red mark, shown slightly tilted to the right in three-quarter view against a plain white background. +train_09109.png An upright small amber-brown glass bottle with a narrow neck and dark cap, glossy surface catching specular highlights and a faint rectangular darker band suggesting a label, photographed from a slightly elevated frontal view against a plain light beige surface and softly lit pale background. +train_09125.png Two upright glossy plastic bottles—one translucent sky-blue and the other warm amber-brown—stand side-by-side on a flat pale-gray surface against a softly shadowed neutral background, viewed nearly front-on at eye level, each with tapered necks and rounded screw caps, visible rectangular label panels and bright reflections that reveal their smooth, slightly translucent texture. +train_09131.png An upright amber-brown glossy glass bottle with a narrow neck and rounded shoulders viewed front-on against a soft off-white background, showing subtle highlights and shadow on its surface and a small bright blue label or sticker near the lower body. +train_09138.png An upright amber-brown glass bottle with a narrow neck and bright reflective cap stands on a warm wooden surface against a bluish vertical background, its glossy surface showing highlights and a faint pale label area on the lower body. +train_09178.png Glossy translucent orange-red slender glass bottle with a narrow neck and small dark cap, shown upright and centered in a frontal view against a dim, mottled background of deep teal and brown tones with a faint pale vertical label-like patch visible on its front. +train_09202.png A small green glass bottle with a glossy, reflective surface and darker neck/cap stands upright on a warm honey‑colored wooden surface against a bright yellow‑orange backdrop, seen from a slightly elevated frontal angle, with a pale rectangular label and pronounced specular highlights and shadow. +train_09397.png An upright amber glass bottle with a glossy, slightly reflective surface and red screw cap is shown front-facing on a white shelf amid blurred neighboring bottles, its white rectangular label bordered by red bands and a dark central emblem discernible despite the low resolution. +train_09531.png A small, upright, front-facing glossy amber-brown glass bottle with a red screw cap and a white rectangular label bearing red markings, its rounded shoulders and short neck catching highlights against a plain white background with a faint shadow beneath. +train_09547.png Centered against a plain deep-black background, the bottle sits upright and front-facing with a glossy, translucent amber-orange glass body, a contrasting nearly black narrow neck and cap, a small darker rectangular label area on the lower half, and noticeable low-resolution pixelation. +train_09575.png A small translucent amber-orange cylindrical bottle with a white screw cap stands upright in frontal view on a pale, slightly textured surface, casting a soft shadow and showing glossy highlights and a faint rectangular label area. +train_09667.png A glossy brown glass bottle with a black screw cap and a bold red‑orange mid‑body label, photographed upright from the front on a plain light background with a soft shadow at its base, showing a slender neck and rounded shoulders despite the low resolution. +train_09805.png A glossy orange-red plastic bottle with a white screw cap stands upright in a slightly angled frontal view on a flat surface against a teal-cyan gradient background, its smooth reflective surface, faint rectangular label area and subtle shadow visible despite the low resolution. +train_09890.png An upright, front-facing glossy amber-brown glass bottle with a dark cap, a vertical bright highlight and a faint pale rectangular mid-body label, set against a solid black background. +train_09920.png A slender, glossy green glass bottle with a maroon screw cap and a white rectangular label bearing a small red mark, shown upright and slightly tilted front-on against a flat aqua background with bright studio highlights and a faint shadow. +train_09933.png A small upright amber glass bottle with a glossy, smooth surface and yellow‑gold screw cap, shown front‑on and centered against a plain white background with a soft shadow to the right, a narrow neck visible and no discernible label despite the low resolution. +train_09993.png An upright, front-facing glossy amber glass bottle with a narrow neck and white cap, a darker central oval label and bright highlights, resting against a warm beige/wooden textured background with a soft shadow. +train_10119.png A tall, slender amber-brown glass bottle with a glossy, reflective surface and dark screw cap is shown upright in a slight three-quarter frontal view against a plain white background, with a small pale rectangular label and subtle bright highlights along the curved neck. +train_10212.png An upright amber-brown glass bottle with a glossy, slightly reflective surface and narrow neck viewed front-on in the center of the frame against a plain beige/cream vertical background with a soft shadow beneath, showing a small pale rectangular label near the base and subtle left-side highlights. +train_10226.png An upright, translucent teal-green glass bottle with a smooth glossy surface and dark cap, seen head-on from slightly above on a light wooden table against a soft-focus warm indoor background, with a lighter rectangular label area near the lower front and vertical highlight reflections along its sides. +train_10846.png A small, glossy translucent dark-green glass bottle with a narrow neck and rounded shoulders and a white cap, shown upright and slightly angled toward the viewer from a front-left viewpoint against a blurred dark-green foliage/grass background with a pale vertical object to its right, its reflective highlights and simple silhouette visible despite pixelation. +train_10860.png A short, translucent amber-orange cylindrical bottle with a glossy, slightly ribbed white screw-top is shown upright in a slightly angled front-right view on a pale beige textured surface, casting a soft shadow and bearing a faint wraparound white label. +train_11067.png An upright, amber-brown glass bottle with a glossy, slightly reflective surface and a red cap is shown front-on against a plain white background, its tapered neck and rounded shoulders visible despite the low resolution. +train_11269.png A row of seven glossy, translucent glass bottles in saturated rainbow hues (red, orange, yellow, green, turquoise, blue, purple) stand upright side-by-side on a reflective white surface against a plain light background, viewed frontally to reveal narrow necks, rounded shoulders and bright specular highlights. +train_11274.png Two upright amber glass bottles with glossy reflections and black screw caps — a smaller bottle on the left and a taller, slightly wider one on the right with a pale rectangular label — placed front-facing on a plain white background with a soft gray shadow beneath. +train_11333.png A glossy dark amber-brown glass bottle stands upright in frontal view on a light wooden-plank floor, with a narrow neck topped by a metallic cap, a faint rectangular white label on the mid-body, and a soft shadow cast to its right. +train_11396.png An upright, frontal-view small amber-brown glass bottle with a glossy, smooth surface and rounded shoulders, topped by a pale off-white cap, a faint rectangular lighter label on the mid-body, and a subtle base reflection set against a deep black background. +train_11601.png A small glossy amber-orange glass bottle with a rounded body and narrow neck, topped by a darker brownish-gold stopper and a tiny hanging tag, shown upright from a slight frontal-top viewpoint against a plain white background with bright highlights and a soft shadow indicating a smooth, reflective texture. +train_11686.png An upright glossy teal-green glass bottle shown frontally with a narrow neck and rounded shoulders bearing bright specular highlights, sitting on a plain white-gray surface that casts a faint shadow and a small warm-toned blur in the upper-left background. +train_11705.png A small glossy amber-brown glass bottle with a short neck and dark cap is shown upright from a slightly elevated frontal viewpoint against a plain light background with a soft shadow beneath, its smooth reflective surface and rounded shoulders visible through vertical highlights despite the low resolution. +train_11776.png An upright glossy amber glass bottle shown front‑on and centered against a plain white background, with a black cap, a narrow red band around the neck and a rectangular white label bearing a darker central text block visible despite the low resolution. +train_12031.png An upright, slim bottle with a glossy magenta-to-burgundy gradient glass body and a metallic silver cap, shown frontally on a plain white surface with a soft shadow to the right and a vertical specular highlight along its face visible despite the low resolution. +train_12222.png A small amber-orange glass bottle with a glossy, slightly reflective surface and a darker round cap, shown upright in a slight frontal three‑quarter view against a plain white background with a soft shadow beneath, revealing smooth glass texture and subtle highlights. +train_12274.png A glossy translucent red-orange bottle with a narrow neck and dark screw cap stands upright facing the camera in the image center against a plain white/gray background, its bright specular highlights, subtle base shadow, and slightly pixelated edges visible despite the low resolution. +train_12356.png A glossy dark amber-brown glass bottle with a narrow neck and rounded shoulders stands upright in frontal view on a slightly reflective surface, its faint pale rectangular label and bright highlights visible despite low resolution against a soft, out-of-focus pale gray background with two similar bottles flanking it. +train_12405.png A small, glossy amber-brown glass bottle with rounded shoulders and a narrow neck lies on its side (neck pointing right) showing reflective highlights and a faint label area on a light tan tabletop with a soft shadow and a dark, out-of-focus background. +train_12508.png A small upright amber-brown glass bottle with a glossy, smooth surface and white screw cap, shown in a slightly right-tilted frontal view against a plain light beige background with a faint shadow and a rectangular white label on its midsection. +train_12680.png A glossy amber glass bottle with a white rectangular label and a metallic cap lies diagonally on its side, the smooth reflective surface catching highlights as it rests on a dark textured tabletop beside a pale vertical background edge. +train_12691.png An off-white matte plastic squeeze bottle with a black pointed nozzle cap, shown upright from a slightly elevated frontal angle and flanked by two similar bottles on a pale shelf against a blurred beige wall and muted green surface, its smooth cylindrical body and dark cap silhouette visible despite the low resolution. +train_12693.png An upright, glossy emerald-green glass bottle with a long narrow neck and rounded shoulders, seen front-on against a plain white background with a faint shadow beneath, its smooth reflective surface showing bright highlights and darker green shading despite the low resolution. +train_12849.png An upright glossy amber-brown glass bottle with a narrow neck and red cap, shown front-on against a plain dark background with a centered rectangular white label and bright vertical reflections on the glass. +train_12878.png An upright, translucent deep-green glossy glass bottle with a narrow neck and dark cap shown in frontal view on a plain white surface with a soft lower-right shadow, notable for bright specular highlights and a slightly darker rounded base. +train_12993.png A trio of upright amber-brown glass bottles with glossy, reflective surfaces and rounded shoulders, each bearing a red-orange paper label and white cap, viewed frontally at slight elevation against a soft, out-of-focus pale countertop/kitchen background with small highlights and glare on the glass. +train_13145.png A glossy, translucent green bottle with a white screw cap, shown upright and slightly tilted to the right in a close straight-on view against a plain light-gray/white background, its smooth reflective surface and narrow neck visible despite the low resolution. +train_13275.png A glossy dark green-brown glass bottle with rounded shoulders, an orange cap and a rectangular beige label stands upright and centered in frontal view on a light wooden table against a pale, softly lit background, its smooth reflective surface and shadow visible despite the low resolution. +train_13385.png A small glossy translucent green bottle with a yellow cap stands upright in a slightly front‑right (three-quarter) view on a flat warm yellow surface against a uniform yellow background, its cylindrical body showing a faint vertical seam, diffuse highlights and a soft cast shadow to the left. +train_13400.png A centered, upright amber-brown glass bottle with a narrow neck and red cap/foil, shown front-on with a glossy reflective surface producing a vertical highlight, set against a dark background with a warm orange glow at the base and no readable label visible. +train_13462.png A squat, glossy orange plastic bottle with a dark blue screw cap stands upright on a wooden tabletop, shown front-on at eye level against a warm, softly blurred indoor background, the shiny surface catching highlights and showing a faint pale label or circular mark near the lower front. +train_13632.png A glossy amber-brown glass bottle with a silver cap lies diagonally (neck pointing toward the upper-right) on a pale beige surface, its smooth reflective texture and rounded base casting a soft shadow against a warm, slightly blurred brown background. +train_13668.png A small glossy amber glass bottle with a narrow neck and rounded shoulders, topped by a white cap and bearing a pale beige rectangular label with a tiny red mark, photographed front-on with a slight top-down angle against a solid dark/black background showing a faint reflection beneath. +train_13698.png An upright, slender amber-brown glass bottle with a narrow neck and rounded shoulder, shown frontally with a slight rightward tilt, its glossy surface catching a small bright specular highlight near the neck and faint vertical reflections, standing on a matte black background that casts a soft shadow to the bottle's right and leaving any label indistinct in the low-resolution image. +train_13736.png A dark amber glass bottle with glossy reflections is pictured tilted on its side at a slight diagonal against a warm, textured tan background, showing a narrow neck, rounded base and a faint pale rectangular label or reflection along its midsection. +train_13754.png A glossy, translucent emerald-green bottle with a short neck and white cap shown upright from a frontal viewpoint against a plain white background sitting on a red surface, its smooth reflective surface and a faint lighter vertical label or highlight visible despite the low resolution. +train_13777.png A small translucent turquoise glass bottle with a glossy, slightly reflective texture and a darker screw-style cap, shown from a slightly elevated front‑angle resting on a pale, softly lit surface with a light gray background, its rounded shoulders and subtle vertical seam visible despite the low resolution. +train_13866.png A small, smooth glossy glass bottle containing warm amber liquid and topped with a pale pink cap is photographed from a slightly elevated frontal angle resting on a light-colored sill against an out-of-focus warm beige/peach background with soft daylight, showing rounded shoulders, bright highlights and a faint cast shadow. +train_14003.png A small upright cobalt-blue glass bottle with a glossy, smooth finish and a short dark screw cap, shown front-on against a plain white background with a faint shadow, featuring a central rectangular light-colored label and a slightly tapered neck. +train_14040.png An upright, slender translucent pale pink plastic bottle with a glossy, slightly frosted texture, a narrow neck and screw cap, and a darker horizontal label band near the middle, viewed from the front on a light wooden surface against a plain beige wall and casting a soft shadow to its left. +train_14188.png A front-facing, upright small brown glass bottle with glossy highlights and a red cap or neck band, a white rectangular label featuring a red upper band, and a faint shadow on a plain white background. +train_14442.png A small amber glass bottle with a smooth glossy surface lies diagonally on a pale white background, viewed from a slight overhead angle with a dark cap to the right, a faint rectangular label on its side, a soft shadow beneath, and blurred gray-blue objects nearby. +train_14521.png Glossy bright red bottle with a narrow neck and black cap, shown upright in a near-frontal view against a flat teal-blue background, with a vertical highlight and a small lighter rectangular patch on the mid-body suggesting a label. +train_14587.png A tall, dark-green glossy glass bottle with a narrow neck and bright specular highlights sits slightly tilted in a close-up, low-angle view on a warm wooden surface against a softly blurred beige background. +train_14612.png A small upright amber-brown glass bottle with a narrow neck and dark cap, seen front-on against a plain white background with a soft shadow beneath, its glossy surface showing highlight reflections and a rounded shoulder visible despite the low resolution. +train_14790.png A squat, glossy rose-gold metallic bottle with subtle vertical ribbing and a cream-colored rounded cap, shown front-on with a slight downward angle standing among similar bottles on a soft gray surface against a plain light background, its reflective sheen and compact, rounded silhouette being the most distinctive visible features. +train_14991.png A front-on, upright amber glass bottle with glossy reflections and a darker neck topped by a metallic cap sits centered on a warm wooden tabletop against a softly blurred beige background, displaying a pale rectangular label and faint shadowing that reveal its glass texture despite the low resolution. +train_15112.png An upright amber-brown glass bottle with a glossy, slightly reflective surface and a dark cap, shown front-facing on a wooden shelf among similar bottles against a warm, softly blurred interior background, bearing a pale rectangular label with a darker border visible despite the low resolution. +train_15199.png A glossy, translucent light-green glass bottle with a darker green cap shown upright from a frontal view against a plain white background, its tall slender neck, gently rounded shoulders, narrow cylindrical body and faint vertical highlights visible despite the low resolution. +train_15244.png A tall, upright dark green glass bottle seen from a slightly angled frontal view has a glossy, translucent surface with bright specular highlights, a vivid lime-green rectangular label on its midsection and a darker neck cap, standing on a warm wooden countertop with a blurred cluster of jars and bottles in the background. +train_15464.png An upright, translucent green bottle with a smooth glossy surface and narrow neck topped by a red cap, shown front-on at eye level on a blurred warm brown/green tabletop background, bearing a prominent red rectangular front label with a central white circular mark and subtle highlights and a small cast shadow. +train_15525.png A small glossy emerald-green bottle with a narrow neck and light-colored cap is shown upright in a front-facing view against a plain white background, its reflective surface and a lighter rectangular label area and subtle base shadow visible despite pixelation. +train_15658.png An upright, front-facing small amber-orange glass bottle with a glossy vertical highlight and a short black cap, centered on a flat green square background with a darker green border and a faint lighter label area across the midsection. +train_15755.png A small, squat glossy dark-blue glass bottle with a smooth reflective surface and a gold metallic screw cap, shown upright from a slight frontal perspective against a plain white background with a soft shadow underneath and a faint rectangular pale label visible on the front. +train_15786.png A short, squat glossy red-orange plastic squeeze bottle with a yellow flip-top cap is shown upright in a slightly angled frontal view against a plain white background, the smooth shiny surface reflecting light and a rectangular white label visible on the front. +train_15985.png A small, upright, smooth glossy cobalt-blue bottle with a darker navy cap, shown in frontal view against a plain white background with a faint shadow to the right, featuring a slender cylindrical body, rounded shoulder and a subtle vertical highlight. +train_15993.png A small glossy translucent bright-green plastic bottle seen upright with a slight rightward tilt in three-quarter frontal view against a plain white background with a soft green shadow, topped by a dark screw cap and showing a faint vertical seam and rounded shoulder despite the low resolution. +train_16048.png A front-facing, upright translucent plastic bottle filled with amber-brown liquid that shows glossy highlights and slight surface reflections, with rounded rectangular shoulders, a short neck topped by a yellow screw cap, a bright orange-yellow horizontal label band across the front, and a soft shadow on a plain white background with a similar bottle partially visible beside it. +train_16249.png A tall, slender glossy black bottle with a bright red cap seen upright in the front row in a straight-on view on a reflective surface, set against a dark, out-of-focus shelf and soft lights, with vertical highlights and seam reflections visible despite the low resolution. +train_16270.png A glossy dark green glass bottle with a gold foil capsule and a rectangular white label sits nearly upright in a slight three-quarter pose facing the camera, its curved shoulders, bright reflections and a faint shadow visible against a smooth light gray/white studio background. +train_16369.png An upright, full-frontal amber-brown glossy glass bottle with a long narrow neck and rounded shoulders, showing specular highlights, a small pale yellow rectangular label on the mid‑body and a faint shadow on a plain white background. +train_16470.png A smooth, glossy green glass bottle with a narrow neck and rounded shoulder is shown upright and centered, slightly front-facing, its translucent body marked by a bright vertical specular highlight and darker base, set against a muted purple circular background with no visible label or cap detail. +train_16501.png A small, smooth, translucent pale-green glass bottle with a rounded body and narrow neck topped by a white screw cap, shown upright from a slightly elevated frontal viewpoint against a dark background with a circular white highlight beneath and subtle reflections on the glass. +train_16533.png A small glossy emerald-green plastic bottle viewed upright from the front with a slightly tapered neck and bright red screw cap, smooth reflective surface showing faint specular highlights, centered against a plain white background with a soft shadow beneath. +train_16619.png An upright small amber glass bottle with a glossy, slightly translucent body and a bright red screw cap, shown front-on with a slight three-quarter turn, standing on a dark brown surface against a soft, blurred pale gray/white background, with a pale rectangular label patch and visible highlights on the glass. +train_17080.png A small glossy red plastic squeeze bottle with a white screw-on cap and a faint pale rectangular label, shown upright from a slightly elevated frontal angle against a dark, out-of-focus background with a subtle tabletop reflection. +train_17153.png A small amber-glass bottle with a glossy, reflective surface and a black screw cap stands upright, viewed slightly from above and front-on, against a dark wooden countertop with reddish-brown horizontal streaks, its faint rectangular white label, top specular highlights and base shadow visible despite the low resolution. +train_17168.png A line of glossy dark-green glass bottles with red foil necks and pale rectangular labels stands upright in slight perspective on a light wooden tabletop against a neutral beige background, the curved highlights and subtle reflections emphasizing their smooth, shiny texture. +train_17203.png An upright, opaque white bottle with a short neck and darker cap, showing a matte, slightly grainy texture and faint vertical seam, photographed front-on against a deep black background with a soft vertical light streak behind it that outlines its rounded shoulders and base. +train_17218.png A small dark-green glossy glass bottle with a narrow neck and rounded shoulders, shown slightly tilted to the right and resting on a bright lime-green background patterned with darker leaf shapes, its smooth surface catching specular highlights and a tiny reddish spot at the neck. +train_17401.png An upright, frontal view of a small amber-brown glass bottle with a glossy, smooth surface and short neck topped by a black screw cap, bearing a pale rectangular label with a narrow red stripe, set against a plain white background with a faint shadow. +train_17756.png An amber-brown glass bottle with a glossy, slightly reflective surface and narrow neck stands upright in a near-frontal view on a warm tan tabletop against a softly blurred beige background, its rounded shoulders, darkened mouth, small specular highlights and faint cast shadow visible despite the low resolution. +train_17845.png A glossy orange-red plastic bottle with a white rectangular label and white cap stands upright with a slight rightward tilt against a muted bluish-gray background, its smooth cylindrical body and rounded shoulders visible despite the low resolution. +train_17867.png A small, pixelated glossy amber-brown glass bottle with a narrow neck, rounded shoulders, a pale cream rectangular label and a light tan cap, shown upright and slightly front-facing against a solid dark background with a vertical specular highlight on the neck. +train_17970.png Two upright, identical amber-brown glass bottles with glossy, slightly translucent surfaces and narrow necks capped by metallic gold crown caps sit side-by-side in a frontal, slightly elevated view against a plain white background with soft shadowing. +train_17981.png A tall, upright glossy red bottle with rounded shoulders and a short dark screw cap, seen front-on against a mostly black background with a vertical red strip to the left, its reflective surface showing a narrow highlight and a small blue-and-white label near the midsection. +train_18045.png An upright amber-brown glass bottle with a glossy, translucent surface and rounded shoulders, seen in a frontal, slightly low-angle view against a muted indoor background of beige wall and darker vertical elements, showing bright specular highlights and a faint lighter patch near the midsection that suggests a worn label. +train_18139.png A glossy translucent green glass bottle stands upright centered against a plain light background casting a soft shadow, featuring a bright red cap/neck, a rectangular white label with a darker horizontal band near its middle, and strong highlights from studio lighting. +train_18184.png A small glossy amber-brown glass bottle with a narrow neck and pale cap sits upright on a warm wooden surface, seen from a slight low frontal angle against a soft, out-of-focus indoor background with warm bokeh highlights and a faint greenish object to the right. +train_18408.png A short, squat cylindrical glossy turquoise plastic bottle with a dark screw cap, shown front-on and slightly angled to the left against a bright teal background, displaying specular highlights and a pale rectangular label centered on the body. +train_18465.png A small amber-brown glossy glass bottle with a round, bulbous body and narrow neck topped by a dark cork, shown upright in a frontal view against a plain white background with a soft gray shadow beneath, its shiny surface displaying bright specular highlights and a subtle base rim. +train_18571.png Two upright amber-brown glass bottles sit side-by-side on a plain white background, seen from a slightly elevated frontal three-quarter view, with glossy reflections and soft shadows beneath, the left bottle showing a tan/gold body label and darker neck band while the right bears a prominent blue body label with a contrasting lighter neck ring. +train_18733.png A glossy bright-red cylindrical bottle with a dark screw-on cap is shown at a slight three-quarter upright angle resting on a light brown surface in front of a warm reddish-pink background, with a vertical white highlight and a faint pale rectangular label near the shoulder visible despite the low resolution. +train_18968.png A small, glossy bright-red cylindrical bottle standing upright against a dark background, topped with a white screw cap and a small rectangular white label near the neck, its smooth plastic surface showing subtle vertical specular highlights. +train_19031.png A small translucent cyan-blue plastic bottle with a smooth glossy surface and white screw cap is photographed at a slight angle while lying on a dark blue textured fabric background, showing a faint rectangular white label and a narrow neck. +train_19055.png A small translucent bright-green bottle with a smooth, glossy surface and narrow neck, shown upright and slightly turned to the right in a three-quarter view against a plain white background where it casts a faint shadow, its rounded shoulders and tapered body picked out by strong specular highlights. +train_19079.png A small, upright green glass bottle with a narrow neck and rounded shoulders, topped by a distinct red-orange cap, shown frontally against a plain white background with glossy highlights and a subtle dark base shadow. +train_19148.png A front-facing, upright small bottle with a smooth, glossy near‑black cylindrical body and a contrasting white narrow screw/nozzle cap, centered on a plain light background with a faint shadow at its base. +train_19328.png An upright, glossy amber-brown glass bottle with a narrow neck and red cap, shown front-on resting on a flat surface against a dark vignetted background, featuring a pale rectangular cream label with a darker central emblem and bright reflective highlights on the curved body. +train_19362.png A glossy deep amber-red glass bottle with a white cap and small white label, shown upright at a slight three-quarter frontal angle on a plain light surface with a soft shadow, its smooth reflective texture and simple cylindrical silhouette visible despite the low resolution. +train_19456.png A glossy, translucent orange-red plastic bottle with a white screw cap stands upright, viewed slightly from above and centered on a warm wooden surface against a soft-focus green background, its tapered neck and bright specular highlights visible despite the low resolution. +train_19536.png Glossy bright red plastic bottle with a narrow tapered neck and light-colored screw cap, shown upright and centered in a straight-on frontal view against a plain white background with a faint shadow to one side and a small yellowish label band around the midsection visible despite low resolution. +train_19538.png An upright amber-brown glass bottle with a glossy reflective surface and short neck, front-facing to the camera, bearing a bright yellow rectangular label and matching yellow cap, standing against a plain white background. +train_19600.png A small upright glossy dark-brown glass bottle with a short neck and orange-red cap, shown front-on against a pale beige circular backdrop on a white field with a subtle oval shadow beneath, bearing a rectangular white label and pixelated highlights that emphasize its reflective surface. +train_19603.png A small brown glossy glass bottle shown upright in frontal view with a red‑orange cap and a white rectangular label featuring a darker horizontal band, set against a split background of bright green at left and white at right with subtle highlights and a base shadow visible despite the low resolution. +train_19626.png A small, squat amber glass bottle with a glossy, slightly reflective texture and a dark screw cap stands upright centered on a light-colored shelf, seen from a slightly elevated frontal view against a pale, softly blurred vertical background with a darker rectangular shadow behind it and a faint white rectangular label on its front. +train_19804.png A small matte cream-colored bottle with a narrow neck and dark stopper, shown upright from a slightly above-frontal viewpoint on a warm brown wooden tabletop against a dim, out-of-focus brown background, with subtle surface scuffs and a faint darker smudge on its midbody. +train_19838.png A glossy dark brown glass bottle shown upright from a frontal view with a narrow neck and gold-colored cap, a rectangular light cream label on the midbody, subtle reflective highlights on the glass, and a soft shadow on a plain white background. +train_19856.png A tall, slender amber glass bottle with a glossy, slightly translucent surface and narrow neck stands upright and centered against a dark background with a faint floor reflection, its rounded shoulder and small metallic cap visible despite the low resolution. +train_20347.png A small translucent teal-green glass bottle with a bulbous body and short narrow neck, viewed front-on at tabletop level showing glossy highlights and faint internal reflections, standing among other colorful bottles on a wooden surface with a softly blurred red fabric background. +train_20505.png A front-facing, slightly elevated view shows a small glossy clear bottle standing upright on a plain white background, filled with a pale amber liquid, capped with a bright red screw top and bearing a red rectangular label with white vertical markings, with an identical bottle visible beside it. +train_20582.png A small teal-green glass bottle with a glossy, translucent finish and vertical specular highlights, presented upright from a slight frontal view against a plain black background, showing a short neck, rounded shoulders, squat bulbous body and no visible label. +train_20643.png An upright amber-brown glass bottle with a smooth, glossy surface viewed front-on against a plain white background, sporting a yellow-gold label with a small central crest/emblem, a narrow vertical red stripe at one edge, and a dark-colored cap. +train_20680.png A glossy dark green glass bottle with a long slender neck and rounded body lies diagonally on its side (neck pointing upper-right) on a warm beige, slightly textured surface, showing strong specular highlights and a soft shadow beneath that emphasize its smooth reflective texture despite the low resolution. +train_20702.png An upright glossy amber glass bottle with a slender neck and metallic cap, bearing a white rectangular label band and bright specular highlights, centered on a plain light-gray/white background with a soft shadow beneath. +train_20717.png Two upright amber-glass beer bottles with glossy, reflective surfaces are shown in a frontal three-quarter view against a plain white background, each with a bold paper label—one predominantly deep blue with a matching neck band and the other predominantly red with a matching neck band—and capped with metallic lids. +train_20726.png A glossy cobalt‑blue glass bottle with a rounded body and narrow neck lies diagonally on its side against a smooth white background, showing bright specular highlights, a subtle lighter aqua rim near the opening, and a soft shadow beneath. +train_20831.png A glossy deep burgundy glass wine bottle with a dark foil neck, shown front-facing and slightly tilted to the right against a plain white background, bearing a rectangular cream label with a smaller dark central panel and visible highlights and shadow that emphasize its smooth, reflective texture. +train_21040.png A small translucent green plastic bottle with a white screw cap and faint vertical ridges stands upright with a slight lean on a speckled light gray-beige surface, casting a short shadow to its lower right. +train_21051.png A small glossy amber-red glass bottle with a narrow neck and rounded base stands upright in center-front view, its smooth reflective surface showing bright specular highlights and a darker cap with no readable label, set against a dark background with a soft warm halo glow behind it. +train_21299.png A smooth, pale beige cylindrical bottle with a darker brown rounded cap is shown upright from a slightly elevated frontal viewpoint against a low-contrast deep blue/dark background, its matte surface revealing faint vertical seam lines and a soft shadow to one side. +train_21323.png A glossy amber-brown glass bottle shown upright from a front-on viewpoint, with a green cap and rectangular green label on its body, smooth reflective surface with vertical highlights and a small shadow beneath against a plain white background. +train_21325.png A short, squat glossy plastic bottle viewed at a slight three-quarter angle, with a pale pink body and a darker pink label band, topped by a white pump dispenser and standing upright on a plain white background, the label showing a small yellow emblem or logo despite the low resolution. +train_21447.png A pixelated, upright, front-facing translucent green glass bottle with a glossy surface and subtle contour highlights, topped by a bright yellow cap and bearing a small yellow oval label on its midsection, centered against a plain white background. +train_21560.png A small, glossy cobalt-blue plastic bottle viewed upright from the front against a plain white background, with a rectangular white label on its midsection, a narrow neck topped by a dark cap, bright specular highlights on the curved surface, and a faint gray drop shadow beneath. +train_21840.png An upright, rounded-rectangular white plastic bottle with a smooth matte surface and a bright orange-red cap, shown front-on against a plain light background with a subtle shadow at its base. +train_21936.png A small upright plastic bottle with an opaque off-white body, a bright blue screw cap and a dark horizontal stripe on a white label, shown in a slightly angled frontal view against a soft gray background with subtle shadowing and glossy reflections on its smooth, slightly ribbed surface. +train_21977.png An upright, slightly top-down view of a small glossy translucent turquoise plastic bottle with a black screw-on cap, subtle vertical seam and streaky surface highlights, casting a soft shadow on a pale, out-of-focus background. +train_22196.png A front-facing, upright small white glossy plastic bottle with a tapered neck and bright red screw cap, displaying a smudged red label or logo on its lower body and casting a faint shadow on a plain white background. +train_22423.png A pair of small, glossy, dark-brown translucent plastic bottles stand upright side-by-side on a plain white background, seen front-on with slight shadowing, each topped with a bright yellow screw cap and bearing rectangular colored labels (one blue-toned, one red-toned) and reflective highlights on their curved surfaces. +train_22462.png A small glossy amber glass bottle with rounded shoulders and a narrow neck topped by a black screw cap is shown at a slight three-quarter, mildly top-down angle resting on a plain light surface with a soft shadow, its rectangular white label and overall glass texture discernible despite the low resolution. +train_22513.png Two small glass bottles sit upright on a windowsill against a softly blurred background of buildings and sky; the left is dark amber with a glossy surface, a pale blue plastic cap and a small rectangular label, while the right is translucent green with a golden screw cap and a larger white-and-red label. +train_22871.png A small clear glossy plastic bottle with a white screw cap and faint vertical ridges stands upright centered against a soft pale-blue gradient background, showing reflective highlights and a short shadow at its base. +train_22911.png A small squat amber glass bottle with a glossy, slightly translucent surface, short narrow neck topped by a dark cap, shown frontally from a slightly elevated viewpoint on a plain white background with a soft shadow beneath. +train_22930.png Three amber-brown glass bottles with glossy, reflective surfaces and long tapered necks topped by pale caps stand upright and closely spaced in a slight diagonal row against a bright neutral (white/gray) background casting faint shadows. +train_23055.png A small amber-brown glass bottle with a glossy, slightly translucent finish and a short neck capped by a shiny metallic top, shown upright from a frontal viewpoint resting on a warm brown textured surface against a dark green background with a bright rectangular light patch near the top. +train_23194.png An upright small amber-brown glass bottle with a glossy, smooth surface and a metallic gold screw cap, shown from a frontal, slightly top-down view against a soft off-white background, bearing a centered rectangular cream label with a thin darker border and rounded shoulders visible despite the low resolution. +train_23279.png A dark brown to nearly black glossy glass bottle with a short red cap stands upright in a centered frontal view against a warm yellow-orange background, showing a vertical highlight, a faint pale patch on the mid-body like a label, rounded shoulders and a subtle shadow beneath. +train_23303.png A small upright translucent green glass bottle with a narrow darker neck and a pale cap/reflective band, viewed frontally from a slight top-down angle against a smooth peach-pink background, its glossy surface showing bright specular highlights and a soft cast shadow. +train_23357.png A small upright amber-brown glass bottle with a glossy, slightly reflective surface and narrow neck capped in dark plastic, shown front-on against a plain white background with a soft shadow to the right and a faint lighter patch on the mid-body suggesting a label. +train_23403.png A small glossy cobalt-blue bottle with a bright red screw cap and a tiny white rectangular front label, shown at a slight three-quarter frontal angle against a plain light background, with rounded shoulders, a narrow neck, visible specular highlights and a dark shadow at the base despite pixelation. +train_23495.png A small, dark-glass bottle with a glossy, reflective surface and a bright red screw cap lies on its side in a close-up shot on a plain white background, revealing a narrow neck, a partially visible light rectangular label on the body, and a soft shadow beneath. +train_23769.png A small, squat amber-brown glass bottle with glossy reflections and a white screw cap is shown upright in a centered frontal view on a plain white background, featuring a rectangular orange-and-white label band and a subtle shadow beneath. +train_24119.png A small upright glossy brown glass bottle viewed front-on, with a narrow neck topped by a gold-colored cap and a reddish-orange rectangular label around the mid-body, set against a light gray circular disc on a dark rounded-square background and showing specular highlights and a subtle base shadow. +train_24185.png A small, squat translucent red plastic bottle with a white flip-top cap, shown upright from a slightly elevated frontal view on a light reflective surface against a blurred dark background, displaying glossy highlights, faint label printing and subtle scuffs along its cylindrical body. +train_24243.png An upright, front-facing small translucent pale aqua plastic bottle with a slightly frosted, glossy surface and a white cap, showing rounded shoulders and a faint darker aqua circular mark on its lower front, sits centered against a soft peach-pink background casting a subtle shadow. +train_24290.png A small upright clear glass bottle filled with translucent amber-orange liquid, viewed frontally with a slight top-down angle against a plain light gray/white background, showing a smooth glossy surface, a silver screw cap, rounded shoulders and a faint pale rectangular label band and soft shadow beneath. +train_24419.png Two upright, side-by-side translucent green PET bottles with orange screw caps and white labels bearing green-and-orange graphics, viewed front-on against a plain white background, their glossy, slightly ribbed plastic surfaces and slim necks visible despite the low resolution. +train_24464.png An upright, slender amber-brown glass bottle with a smooth, slightly reflective surface, narrow tapering neck and rounded shoulders, photographed from a frontal slightly elevated viewpoint against a plain light beige/white background with a soft circular shadow beneath and a faint specular highlight on the left side. +train_24504.png Two amber-brown glass bottles—one short and rounded with a pale yellow label and a short neck, the other taller and slender with a long neck and dark cap—stand upright side-by-side on a plain white background, their glossy, translucent surfaces catching bright highlights and revealing the liquid tones inside despite the low resolution. +train_24989.png A small translucent amber glass bottle with a glossy surface and black screw cap, shown in a slightly elevated front-facing view resting on a warm reddish-brown wooden surface with blurred blue and white shapes behind it and bright highlights and a faint shadow at its base. +train_25184.png A slender, upright translucent green glass bottle viewed front-on, its glossy surface showing vertical streaks and specular highlights with a narrow neck and darker rimed top, set against a deep black background with a subtle halo of light outlining its contours and base. +train_25192.png A small upright dark-brown glossy glass bottle with rounded shoulders and a gold metallic cap, photographed front-on and centered against a deep black background with a soft circular halo of light behind it, showing pronounced specular highlights on the glass and a faint reflection at its base. +train_25340.png A glossy amber-gold glass bottle with a rounded bulbous body and short tapered neck topped by a small dark cap, shown upright in a slightly elevated frontal view against a plain dark background with a soft shadow beneath and bright specular highlights emphasizing its smooth reflective texture. +train_25404.png A small glossy amber-brown glass bottle with a cream-colored screw cap stands upright seen from a slight high-front angle on a warm wooden tabletop against a muted orange background, showing a vertical highlight on its curved body and a faint base shadow. +train_25420.png An upright amber-brown glass bottle with a narrow neck and red cap, its glossy reflective surface and faint label texture visible in a front-on view against a plain light background with a soft shadow beneath. +train_25471.png Three upright translucent green glass beer-style bottles with long narrow necks and dark caps, their glossy surfaces showing subtle highlights and reflections, arranged side-by-side and viewed at eye level against a plain pale background with faint shadows on the flat surface. +train_25570.png An upright, small amber-orange glass bottle with a darker brown cap and smooth glossy surface seen from a slightly elevated frontal view against a plain off-white/beige background, casting a soft shadow and showing a faint rectangular label area and bright specular highlights despite the low resolution. +train_25725.png A slender, glossy green glass bottle with a narrow neck, red cap and a white rectangular label is pictured standing upright, viewed almost front-on with a slight angle on a warm brown surface against a blurred beige-brown background with a small blue object to its left. +train_26186.png A small upright amber glass bottle with glossy reflections, shown front-facing on a plain light background, topped by a red cap and bearing a cream rectangular label with a central oval emblem and decorative border visible despite the low resolution. +train_26302.png A small upright translucent green bottle with a glossy surface, front-facing and capped with a bright red screw-top, bears a white rectangular label with a thin red band and sits on a plain white background casting a faint shadow. +train_26354.png An upright, centered small amber-brown glossy bottle with a white ribbed screw cap and narrow neck seen from a slight top-down frontal view against a plain off-white surface casting a soft shadow, with visible translucent highlights and a smooth cylindrical body. +train_26470.png A glossy amber-yellow glass bottle with a narrow neck and red cap stands upright centered against a plain white background, showing subtle vertical shading, a small pale rectangular label area on the front, and darker brown base highlights. +train_26554.png A small, upright, glossy green plastic bottle with a yellow screw cap and a central orange circular label, shown front-on against a plain white background with bright highlights and a faint shadow at its base. +train_26567.png A small teal-green glossy glass bottle stands upright centered against a plain white background, its smooth cylindrical body with rounded shoulders, short narrow neck and flared rim visible along with a vertical highlight on the left side and a faint shadow at the base despite the low resolution. +train_26617.png An upright amber-brown glass bottle with a glossy sheen and narrow neck topped by a small light-colored cap, shown frontally against a plain white background with a soft shadow underneath and rounded shoulders with a faint rectangular label area visible despite the low resolution. +train_26678.png A small matte red cylindrical bottle with a darker rounded cap lies on its side on a coarse dark-gray surface resembling asphalt, displaying a faint pale rectangular label and positioned next to a narrow off-white painted line with a soft shadow indicating low-angle lighting. +train_26685.png A small amber-colored glossy glass bottle with a bright red screw-on cap lies tilted diagonally to the right on a plain white surface, showing reflective highlights, a faint label area and a soft shadow beneath despite the low resolution. +train_26747.png A small glossy deep navy-black cylindrical bottle with a bright red screw cap and narrow neck stands upright on a warm wooden tabletop against a plain white background, seen from a slightly elevated frontal view with pronounced specular highlights and a small pale reflection on its lower body. +train_26881.png A small glossy cobalt-blue plastic bottle with a bright orange screw cap lies diagonally on a plain white background, its smooth translucent body showing strong specular highlights and a faint rectangular label area visible despite the low resolution. +train_27011.png A small glossy amber-orange plastic bottle with a dark screw cap and a rectangular white label stands upright in a slight three-quarter frontal view on a light surface against a pale background, its smooth reflective texture and faint cast shadow visible despite low resolution. +train_27026.png A glossy cobalt-blue bottle with a narrow neck, rounded shoulders and a light-colored cap, shown upright and slightly front-facing against a plain white background with a faint shadow at the base, its reflective surface and subtle vertical highlights visible despite the low resolution. +train_27080.png A small, squat glossy green glass bottle with a short, narrow neck and rounded lip sits upright in frontal view on a pale off-white surface, its translucent body showing darker green edges, lighter central highlights and a soft shadow beneath against a featureless beige background. +train_27197.png An upright, short amber glass bottle with a glossy translucent surface and a white screw cap, shown frontally against a plain white background with a faint shadow and a prominent bright blue rectangular label around its midsection. +train_27230.png An upright, small translucent amber-orange plastic bottle with a glossy surface and bright blue screw cap, seen from a slightly frontal viewpoint, standing on a flat surface against a dark, out-of-focus background with a vertical red object to the right and a small white rectangular label near the base. +train_27333.png An upright amber-brown glass bottle with a glossy, slightly reflective surface and long neck shown front-on with a slight angle against a blurred row of similar bottles on a shelf, displaying a pale rectangular label and a dark cap. +train_27408.png An upright, slim amber glass bottle with a glossy surface and long neck topped by a white cap, shown frontally against a dark background and bearing a prominent cream diamond-shaped label with an ornate brown border and a small red central emblem visible despite the low resolution. +train_27495.png A glossy, translucent deep-green bottle with a narrow neck and lighter top stands upright (slightly tilted toward the camera) on a warm light-brown wooden tabletop against a pale background, showing bright surface highlights, a faint rectangular label area, and a soft shadow to its left. +train_27650.png A small upright amber glass bottle with a glossy, reflective surface viewed slightly from above against a pale beige countertop and wall, bearing a rectangular white label and a dark metallic cap with bright reflection and a similar bottle standing beside it. +train_27765.png A small glossy amber-brown glass bottle with a tapered neck and rounded body lies diagonally on a plain white background, showing bright specular highlights and a faint shadow so its darker neck and curved silhouette remain distinguishable despite the low resolution. +train_27909.png A small translucent aqua-blue plastic bottle with a white screw cap and glossy, slightly reflective surface stands upright at a slight three-quarter angle on a light beige tiled floor with visible grout lines and a soft shadow behind it. +train_28137.png Upright, front-facing small glossy red plastic bottle with a narrow neck and slightly rounded shoulders, centered against a plain white background with a faint shadow beneath, showing a prominent rectangular white label and specular highlights that indicate a smooth shiny surface despite the low resolution. +train_28458.png A glossy dark-brown glass bottle with a narrow neck and wider body stands upright in a frontal view on a white surface against a bright, pale background, its low-resolution label showing a rectangular white and yellow color block with a small red circular mark and indistinct text, and clear reflections indicating a smooth, reflective texture. +train_28501.png A front-facing, upright slender green glass bottle with a glossy, slightly translucent finish, a narrow neck topped by a small red cap and a faint pale rectangular label on the midsection, set against a plain light/white background with a soft shadow to the right. +train_28522.png An upright amber-brown glass bottle with glossy reflections, a long narrow neck topped by a metallic cap and a red neck band, a white rectangular main label on the body, shown front-on against a plain light background with a faint shadow and a small yellow box partially visible behind it. +train_28547.png A small, translucent emerald-green glass bottle with glossy highlights and faint surface scuffs lies diagonally from lower-left to upper-right against a plain white background, showing a narrow neck and rounded shoulder topped by a darker cap and casting a soft shadow beneath. +train_28759.png A small upright brown glass bottle with a glossy, reflective surface, a narrow neck topped by a yellow‑gold cap and a pale rectangular label on the midsection, viewed front‑on and sitting on a slightly lighter horizontal surface against a dark, muted brown background. +train_28826.png A small, glossy, translucent green bottle with a short neck and darker cap is shown upright (slightly tilted forward) on a pale, neutral background, its curved glass catching bright specular highlights and casting a faint shadow beneath. +train_28874.png A small amber-brown glass bottle with a smooth, slightly glossy surface and white screw cap is shown upright in a three-quarter frontal view against a warm orange-yellow blurred background, with a narrow pale label band and a faint vertical seam visible along the side. +train_29038.png A small green translucent glossy bottle with a blue screw cap and a white rectangular label, photographed upright from a slight frontal-above angle showing bright highlights and a faint vertical seam, resting on a red surface with a blurred green background. +train_29221.png A glossy teal-green cylindrical plastic bottle with a tapered neck and darker screw cap, seen upright from a slightly elevated frontal view against a deep navy-blue backdrop with soft highlights, showing a faint pale band near its midsection and specular reflections on its smooth surface. +train_29344.png A small glossy cobalt-blue plastic bottle with a matte black screw-on cap, shown upright in a slightly angled three-quarter view on a plain white surface casting a soft shadow to the right. +train_29486.png A matte white cylindrical plastic supplement bottle with a glossy black screw-top lid sits upright in a slightly top-down, three-quarter frontal view on a neutral light-gray surface, showing a narrow green label band and a faint rectangular front label area and casting a soft shadow to its right, with the smooth plastic texture and contrasting black cap as the clearest distinguishing features despite the low resolution. +train_29557.png A smooth, glossy dark brown-to-black glass bottle with a narrow long neck, rounded shoulders and a small cap stands upright centered in a slightly top-down frontal view against a deep black background on a faintly reflective surface, showing subtle left-side specular highlights and a soft base reflection. +train_29601.png A small, upright dark-green glass bottle with a glossy, slightly reflective surface and a narrow neck topped by a dark rounded cap, shown front-on against a plain off-white background with a faint lighter rectangular label area on the mid-body visible despite the low resolution. +train_30001.png A glossy, translucent cobalt-blue bottle with a narrow neck and a pale rectangular label area is shown upright in a slightly angled frontal view, sitting on a warm orange surface against a blurred warm-toned background with a vertical light-gray panel on the right. +train_30139.png A centered, upright dark amber-brown glossy glass bottle with a long narrow neck, metallic cap, and a small rectangular gold label, viewed frontally against a plain pale-gray background that casts a soft shadow, with noticeable reflective highlights on the glass. +train_30224.png A glossy, bright-red plastic bottle with a dark screw cap lies diagonally on its side in a shallow three-quarter view against a speckled dark-gray background, showing strong specular highlights, light surface scuffs and a small pale spot near the midsection. +train_30367.png A small upright amber glass bottle with a smooth, glossy, slightly translucent surface and narrow neck topped by a dark cap, seen straight-on against a plain off-white background with a faint cast shadow and a subtle rectangular label area and bright specular highlights on the shoulder. +train_30369.png A small, upright pale-gray plastic bottle with a smooth, slightly glossy surface, rounded base and short screw-top neck, viewed front-on and centered against a solid black background, its pixelated edges and a faint vertical seam visible despite the low resolution. +train_30542.png A small upright glossy amber glass bottle with a narrow neck and red cap, shown front-facing on a white surface against a dark/black background, bearing a prominent red rectangular label with a yellow circular emblem and bright reflections on the glass. +train_30718.png A slender, tall bottle of deep green glossy glass with a narrow neck and dark screw-like cap, shown upright in frontal view against a plain white background with a faint shadow beneath and a subtle pale rectangular mark/reflection on the mid-body. +train_30833.png A small upright white glossy plastic bottle with a smooth surface and dark screw cap, shown from a slightly elevated frontal view against a light gray tiled background with a faint cast shadow, bearing a cream rectangular label with a narrow colored band and a small dark block near the top that remain discernible despite the blur. +train_31079.png An upright, small translucent milky-white plastic bottle with a glossy finish and a darker screw cap, viewed slightly from above against a plain white background with a soft shadow beneath, showing rounded shoulders and a faint label area despite the low resolution. +train_31085.png A glossy deep-red, slender bottle with a slightly tapered neck, shown upright in a front-facing view, topped by a white screw cap and bearing a simple rectangular white label on its midsection, set against a plain light background. +train_31149.png An upright, front‑facing amber-brown glass bottle with a glossy, reflective surface, a slim neck and rounded body, topped by a darker cap and featuring a small orange‑red label band, standing centered on a plain white background with a faint shadow. +train_31188.png An amber, slightly translucent glass bottle with a glossy surface, white screw cap and rectangular label lies on its side at a slight diagonal on a warm beige textured surface, casting a soft shadow and showing a small bright specular highlight on the body. +train_31191.png A glossy, dark navy/black cylindrical plastic bottle shown upright from a front-facing viewpoint against a bright turquoise background, topped with a small white pump cap and bearing a pale rectangular label on its upper body with reflective highlights and a faint cast shadow. +train_31242.png A small, glossy green glass bottle shown upright and front-facing with a reflective surface, a gold screw cap, a distinct round red-and-white label on the front/neck area, and a soft shadow on a plain white background. +train_31302.png An upright, amber-golden glass bottle with a glossy, slightly translucent finish and a darker cap, seen from a frontal, slightly elevated viewpoint against a plain white background with a soft shadow beneath, revealing a rounded body and narrow neck despite the low resolution. +train_31349.png Centered on a plain white background, the low-resolution photo shows an upright bottle with a glossy light‑blue cylindrical body and subtle vertical shading, a tapered neck topped by a bright orange‑red screw cap, and a small shadow beneath indicating a straight-on, slightly elevated viewpoint. +train_31463.png A small upright amber-brown glass bottle with a glossy, reflective surface and a red cap seen front-on against a plain white background, bearing a white rectangular mid-body label and casting a faint shadow beneath. +train_31474.png A small upright translucent amber-orange cylindrical plastic bottle with a glossy sheen and a ribbed white childproof cap, viewed frontally and centered on a warm orange-red gradient background, showing a faint rectangular white label and soft highlights and shadows that define its rounded form. +train_31520.png A glossy dark-brown glass bottle shown upright in frontal view, with a long neck and cap and a large white rectangular label featuring a central dark band, standing next to a second bottle against a dim, nearly black background with noticeable low-resolution pixelation and specular highlights. +train_31531.png A glossy dark green glass bottle with a slender neck and rounded body lies diagonally against a deep black background, showing strong specular highlights and a small amber reflection near the shoulder despite the low resolution. +train_31565.png A small upright, slightly tapered smooth matte light-pink plastic bottle with a darker reddish-pink rounded cap and a faint white highlight, photographed front-on against a clean white background with a soft shadow beneath. +train_31573.png A small, upright, glossy dark‑green glass bottle with a short neck and beige cork stopper, shown front‑on and centered, its rounded shoulders and reflective highlights visible despite pixelation, set against a dark background framed by a bright neon‑green rectangle. +train_31699.png An upright, front-facing slender amber-brown glass bottle with a glossy reflective surface, a short red cap/neck seal and a small rectangular white label on the lower body, set against a plain white background. +train_31703.png Five tall, dark green glossy glass bottles with narrow necks and rounded shoulders stand upright in a row, viewed from a slightly elevated front-on angle against a pale, softly shadowed tabletop background, their smooth reflective surfaces showing bright specular highlights and subtle gaps between bottles but no discernible labels. +train_31777.png A small, upright, front-facing squat bottle of deep red-orange glossy glass with pronounced highlights and a subtle gradient, a narrow neck topped by a dark cap and a gold collar, a faint square front label, and stark contrast against a plain black background. +train_31981.png A deep amber-to-nearly-black glossy glass bottle with a narrow neck and small metallic cap stands upright centered on a light neutral-gradient background, its rounded shoulders and vertical highlight reflecting light, casting a soft oval shadow on the flat surface beneath and showing a faint darker band suggesting a label. +train_32024.png A small amber-brown glass bottle with glossy highlights is shown at a slight three-quarter frontal angle resting on a light, softly textured surface against a warm, out-of-focus beige background, featuring a visible white rectangular label and a darker neck/cap. +train_32145.png A tall, slender teal-green glossy glass bottle stands upright and centered in a front-on view against a smooth bright cyan background, its narrow neck and rounded shoulder showing a vertical specular highlight and a small white glare with a faint shadow cast to the right. +train_32292.png A small upright, front-facing green glass bottle with a glossy, translucent texture and rounded shoulders, topped by a metallic gold cap and bearing a rectangular light-colored label on its midsection, sits on a warm reddish-brown horizontal surface against a dark, blurred background with faint indistinct clutter. +train_32310.png A small translucent green plastic bottle with a yellow screw cap and a white midsection label is shown upright with a slight leftward tilt against a plain white background casting a soft shadow, its glossy surface reflecting light and revealing faint vertical ridges near the base. +train_32460.png A tall, upright cylindrical bottle in the center appears dark navy-blue with subtle glossy highlights and a slightly tapered white or light-gray cap, viewed straight-on against a deep black background flanked by two narrow vertical white strips, with a small indistinct colored label or mark on the mid-body visible despite the low resolution. +train_32516.png A small rectangular amber-glass bottle with a glossy, slightly translucent warm-amber body and a matte black cylindrical cap, shown in a three-quarter frontal view sitting on a light wood surface against a pale, out-of-focus background, with rounded shoulders and a faint rectangular label area visible despite the low resolution. +train_32581.png A slender, glossy aqua-blue plastic bottle with a pink screw cap stands upright and front-facing on a warm tan/wooden surface against a brownish background, its translucent body showing a white rectangular label with red and dark markings and a small circular red emblem near the lower label area. +train_32659.png A small, upright, squat translucent amber-brown glass bottle with glossy highlights and rounded shoulders, topped by a light tan cap, standing front-center on a white surface against a warm orange background, casting a soft shadow and showing a faint rectangular label-like darker patch near its base. +train_32882.png A small translucent green glass bottle with a white screw cap and a faint rectangular front label stands upright in a slight three-quarter, slightly elevated frontal view on a brown wooden surface against a soft-focus bright-green foliage background, its glossy glass showing highlights and a small cast shadow beneath. +train_32890.png Upright, slightly forward-leaning translucent bright green plastic bottle with a glossy sheen and horizontal ribs on the lower half, topped by a yellow-orange screw cap and bearing a narrow white label with a small red mark, photographed against a plain white studio background. +train_32958.png A dark, glossy glass bottle with a narrow neck and rounded shoulders stands upright and centered, its shiny surface showing a vertical highlight and a lighter cap, set against a muted bluish‑gray vignetted background with a soft circular spotlight and faint reflection beneath, with no label discernible at this resolution. +train_33018.png A small translucent aqua-blue glass bottle with a rounded body and narrow neck topped by a light brown cork, shown upright from a slightly elevated frontal viewpoint against a soft white background with a faint right-side shadow, the glass glossy with bright highlights and subtle internal reflections. +train_33311.png A small upright glossy amber-brown glass bottle with a black screw cap and a prominent red-orange rectangular label (including a small white square near the top), viewed front-on at a slight downward angle resting on a pale countertop against a softly blurred neutral-toned background, the glass showing reflective highlights despite the low resolution. +train_33363.png A small glossy mid-green plastic bottle viewed in a three-quarter frontal pose showing a rounded body and a short pale/white cap with subtle reflective highlights and a faint shadow on a uniform teal/aqua background. +train_33469.png A small amber-brown glass bottle with a glossy, slightly reflective surface and a metal cap stands upright in frontal view on a white surface against a warm orange-brown blurred background, its long neck, rounded shoulders and narrow body visible though label details are indistinct due to low resolution. +train_33547.png A small amber-brown glass bottle with a glossy, slightly reflective surface and narrow neck stands upright on a wooden surface against a dark, warm-toned background, showing subtle highlights on its shoulder and a faint, rectangular label visible despite the low resolution. +train_33710.png A row of several glossy dark-green glass bottles with long tapered necks and white caps, photographed front-on standing upright against a bright white background, showing smooth reflective surfaces and evenly spaced silhouettes. +train_33879.png An off-white glossy plastic bottle with a faint blue label band and dark cap lies diagonally on its side (neck pointing toward the upper-right) on a coarse, dark asphalt-like surface scattered with light specks and a small white scrap, its curved cylindrical shape and label band still discernible despite the low resolution. +train_33884.png A front-facing, upright dark amber glass bottle with glossy reflections, a red cap and visible neck collar, a pale rectangular label on the body, and a soft shadow on a plain white background. +train_33966.png A glossy dark-red bottle with a narrow neck and small light-gold cap, shown upright in frontal view against a plain white background, bearing a central rectangular white label with faint dark markings and a darker band near the base. +train_34038.png A glossy amber-brown glass bottle with a white rectangular label and red cap is shown upright in three-quarter view—slightly angled with bright reflections on its rounded shoulders—standing on a warm wooden surface against a dark, softly gradated background, the reflective glass, label block and long neck remaining visually distinct despite the low resolution. +train_34059.png A glossy, bright orange squat bottle with rounded shoulders and a black screw cap is shown in a slightly top‑down three‑quarter view resting on a warm brown surface against a dark greenish background, with strong specular highlights and a faint vertical seam visible despite the low resolution. +train_34149.png A glossy, bright-red plastic bottle with a white cap and a prominent green circular label on its front stands upright on a pale beige countertop, seen from a slightly elevated frontal viewpoint with soft reflections on its surface and a dark, blurred area to the right in the background. +train_34179.png A tall amber-brown glass bottle with a glossy, reflective surface and a bright metallic blue screw cap, seen from a slightly elevated oblique angle resting on a light wood or laminate tabletop with a soft, blurred indoor background, its narrow neck, subtle highlights, and a small white label edge near the shoulder visible despite the low resolution. +train_34180.png A small amber-brown glossy glass bottle with a white plastic screw cap is shown upright from a slightly elevated frontal viewpoint on a pale bluish-gray surface against a soft, out-of-focus green background, with bright specular highlights and a faint shadow at its base but no discernible label. +train_34293.png A glossy, slightly translucent emerald‑green bottle with a narrow neck and tapered shoulders stands upright in a slight frontal view on a plain light background with a soft shadow, its smooth reflective surface showing a specular highlight and a small bright red object near the base. +train_34491.png A small, upright earthenware bottle in a warm beige-tan with a matte, slightly speckled surface is shown in a three-quarter view tilted a touch to the right against a soft, out-of-focus warm-brown background (suggesting a wooden table and wall), with a rounded body, narrow short neck and a small curved handle on the bottle's right and a faint shadow cast to the left. +train_34604.png A front-on, upright small green glass bottle with a narrow neck and white cap sits centered on a warm orange-brown surface, its glossy translucent body showing vertical highlights, a darker curved shoulder and a faint mid-body band while casting a subtle shadow to the right. +train_34657.png A glossy dark-brown glass bottle shown at a slight three-quarter angle against a plain white background, with a visible off-white rectangular label on the body, a red cap/neck band, bright highlights and a faint shadow indicating a smooth, reflective texture. +train_34658.png A glossy bright-red plastic squeeze bottle with a rounded white screw cap and a small circular white label on its shoulder, shown upright and slightly front-facing with visible specular highlights and a soft shadow against a plain white background. +train_34712.png A small, dark brown glossy glass bottle with a narrow neck and red cap stands upright on a wooden surface against a softly blurred indoor background, its shiny surface showing highlights and a faint rectangular white label near the middle. +train_34890.png A glossy yellow‑orange plastic squeeze bottle with rounded shoulders and a dark (black) cap stands upright front‑facing against a plain light/white background, casting a faint shadow beneath. +train_34904.png A small amber glass bottle with a glossy finish and a white screw‑on cap stands upright on a light wood surface against a soft, neutral gray‑beige background, the low-resolution image still showing a white rectangular label with a faint blue stripe and bright specular highlights on the glass. +train_35043.png A small glossy amber-brown glass bottle with a pale screw cap and a faint off-white label sits upright on a light flat surface, shown from a slightly elevated frontal angle with bright specular highlights and a short shadow next to a blue rectangular object in the background. +train_35057.png A glossy amber-brown glass bottle with rounded shoulders and a narrow neck, shown upright and front-facing against a plain white background, bearing a small rectangular bright-blue label on its midsection and a matching blue cap with highlights and reflections visible despite the low resolution. +train_35083.png A small, front-facing, upright amber-glass bottle with a glossy, translucent orange-brown surface showing a bright central specular highlight and a pale cap, viewed slightly from above against a softly blurred warm wood-grain background with vertical seams. +train_35182.png A small, translucent plastic bottle containing a pale pink liquid with a darker pink screw-on cap and glossy reflections, standing upright with a slight forward tilt on a soft white/gray surface that shows indistinct vertical shadows, its rounded shoulder and faint mid-body label area visible despite the low resolution. +train_35341.png An upright, front-facing amber-brown glass bottle with smooth glossy reflections and a narrow neck topped by a metallic cap, standing on a soft off-white surface against a pale background and bearing a pale rectangular label with a small red mark. +train_35354.png A small upright navy-blue glossy plastic bottle with a slightly domed white cap and a rectangular white label, shown front-facing on a light wood surface against a plain beige wall with soft left-side lighting creating a narrow highlight down its front. +train_35410.png An upright, front-facing small amber-brown glass bottle with a glossy, slightly translucent texture and short neck capped by a white lid, set against a plain white background with a faint shadow at its base and a lighter rectangular patch on the lower body. +train_35465.png An upright, front-facing amber-brown glass bottle with a glossy, slightly reflective surface and a short red screw cap, displaying a pale rectangular front label and a faint shadow beneath against a clean white background. +train_35537.png A glossy, deep purple glass bottle with a dark/black cap is shown upright in a slightly three-quarter frontal view against a neutral light-gray background, its smooth curved shoulders and cylindrical body marked by vertical specular highlights and a faint soft shadow. +train_35604.png A translucent teal-green glass bottle with a glossy vertical highlight and slightly darker base, shown upright and slightly angled toward the camera in a frontal view on a light neutral surface with a soft shadow beneath, its narrow neck and rounded shoulder discernible despite the low resolution. +train_35672.png An upright amber-brown glass bottle with a glossy, reflective surface and long neck capped in gold, photographed front-on at a slight angle against a plain white background with a soft shadow, bearing a white rectangular label with a dark horizontal band and a blurred circular emblem visible despite the low resolution. +train_35684.png An upright amber-brown glass bottle with a glossy reflective surface and a gold-foil neck stands centered on a warm wooden table against a dark, softly lit background, its rectangular dark label and metallic cap visible despite the low resolution. +train_35743.png A small, upright dark amber glass bottle with a glossy, slightly reflective surface, a red-topped neck and a narrow light-colored rectangular label, shown front-on at a low angle resting on a warm wooden surface with soft, out-of-focus amber bokeh in the background. +train_35922.png A glossy, translucent green glass bottle with a tapered neck and bright specular highlights lies on its side in an oblique top-down view on a worn wooden tabletop, set against a dim, cluttered indoor background with soft shadows and small out-of-focus objects. +train_36101.png A small squat amber glass bottle, photographed front-on from a slightly elevated angle, shows a glossy orange-brown surface with specular highlights, a blue screw cap, a white rectangular label with a red-orange band near the top, and a soft shadow on a plain pale-gray background. +train_36120.png Two tall translucent green glass bottles with glossy reflective surfaces and short metallic caps stand upright side-by-side, slightly angled toward each other on a neutral tabletop against a soft, out-of-focus pale background, their long necks and rectangular label areas visible despite the low resolution. +train_36125.png A front-facing, upright squat amber-brown glass bottle with a glossy, reflective surface and a ribbed black screw cap, centered on a plain white background casting a soft shadow, its cylindrical body showing translucent warm tones and a faint lighter band near the midsection. +train_36258.png A glossy dark-green glass bottle is shown upright in frontal view against a plain white background, with a narrow neck and orange cap, a prominent round orange-yellow label on the mid-body, and bright reflective highlights and a faint shadow at its base. +train_36408.png A small translucent aqua-blue glass bottle with a narrow neck and bulbous base, shown front-on against a soft pale-gray background with a faint cast shadow beneath, its glossy surface bearing a central vertical highlight and subtle rim-and-base reflections visible despite the low resolution. +train_36425.png A small, squat bottle with a warm beige-to-amber glossy body and a darker brown collar/cap, shown upright and centered in a front-facing three-quarter view against a plain pale background with a faint under-shadow, its rounded shoulders and short neck visible despite the low resolution. +train_36431.png A dark green, glossy glass bottle stands upright in a three‑quarter frontal view on a warm wooden surface, its smooth reflective body bearing a prominent white mid‑section label and narrow neck, photographed against a pale, softly blurred background with similar bottles adjacent to it. +train_36495.png An upright, front-facing amber-brown glossy glass bottle with a narrow neck, gold metallic cap and a prominent circular yellow-gold label on the body, centered against a plain white background with a faint shadow. +train_36594.png The central small cylindrical amber-brown glass bottle has a smooth glossy surface and a white plastic screw cap, standing upright in a frontal three-quarter view on a plain white/gray background with soft shadows and a faint rectangular white label band, flanked by two similar bottles. +train_36658.png A small upright dark glass bottle with a glossy black finish and a centered rectangular light-gray label, seen front-on against a plain white background with a soft shadow beneath and a metallic-looking cap. +train_36678.png A small, upright, front-facing glossy dark navy-blue bottle with a smooth reflective glass/metal texture, a black cap with a narrow gold metallic collar and a tiny gold rectangular label on the mid-body, centered on a plain white background with a faint shadow beneath. +train_36756.png A glossy translucent green bottle with a darker neck and a small rectangular white label, photographed slightly from above as it stands nearly upright on a bluish‑gray tiled surface with a soft shadow at its base. +train_36951.png A small translucent emerald-green glass bottle with a smooth, glossy surface and subtle vertical curvature is shown upright in a three-quarter frontal view on a plain light-gray/white background, its narrow neck and rounded body clearly visible with a faint shadow beneath. +train_36970.png Three slender, glossy brown glass bottles stand upright in a row on a neutral pale surface and backdrop, viewed straight‑on at eye level so their long necks, red caps on the left and center bottles and a green rectangular label on the right bottle appear as blurred but distinct colored blocks with soft highlights and faint cast shadows. +train_37449.png A small, glossy bright-red plastic bottle with a black screw cap and a faint white label, shown upright from a straight-on viewpoint against a plain white/gray background with a soft shadow beneath, its smooth reflective surface and narrow neck visible despite the low resolution. +train_37515.png Two upright glass bottles sit on a wooden surface against a pale, out-of-focus wall: at left a squat translucent green bottle with a glossy, slightly reflective surface and a dark cap, and at right a taller amber-brown beer-style bottle with a white rectangular label and bright highlights, both viewed from a slightly elevated frontal angle under soft diffuse lighting. +train_37518.png A glossy amber-brown glass bottle with a lighter beige cap and a pale rectangular label is shown upright in a frontal close-up view against a dim, out-of-focus indoor background with two dark vertical shapes flanking it. +train_37607.png An upright, front-facing squat amber-brown glass bottle with a glossy, reflective surface and short neck, showing a faint lighter rectangular label area and bright specular highlights, set against a soft off-white background with a subtle shadow beneath. +train_37666.png A small glossy amber-orange bottle with a red screw cap and a white rectangular label, shown upright from a frontal viewpoint on a light wooden surface against a softly blurred beige background, with smooth reflective highlights and a faint shadow beneath. +train_37766.png Front-facing upright amber glass bottle with glossy reflections and a black cap, displaying a centered white rectangular label with a small red accent, standing on a dark base against a softly blurred blue background with a brighter vertical light patch. +train_37865.png A small translucent mid-green plastic bottle sits upright and centered under a slightly elevated frontal viewpoint against a plain white background with a soft shadow beneath, showing a glossy smooth cylindrical body, a darker green screw cap and faint horizontal molding rings visible despite the low resolution. +train_37927.png An upright amber-brown glossy glass bottle with a dark cap and tapered neck, seen front-on against a plain white background with a soft lower-left shadow and a bright specular reflection on the rounded shoulder. +train_37931.png A small amber-brown glass bottle with a glossy surface and black screw cap stands upright and centered in the frame, its rounded shoulders and narrow neck visible while it casts a faint shadow against a plain light beige/gray background. +train_38000.png A front-facing upright glossy orange plastic bottle with a slightly darker narrow neck and cap, a pale rectangular label featuring a small dark circular emblem on its upper body, a faint shadow beneath it, centered against a plain white background and rendered with visible pixelation. +train_38269.png A dark green, glossy glass bottle with a narrow neck and gold-colored cap stands upright in frontal view against a plain white background, resting on a small brownish base and showing strong vertical specular highlights and a slightly bulbous shoulder. +train_38353.png A small upright amber-yellow glass bottle with a smooth, glossy surface and rounded shoulders topped by a short dark brown screw cap, shown centered in frontal view against a plain light background with a faint rectangular label area but no legible markings. +train_38621.png A glossy dark-brown glass bottle standing upright and slightly angled toward the camera, with a slender neck and small metallic cap, smooth reflective surface showing bright specular highlights and a faint rectangular label area, set against a plain light-gray studio background with a soft cast shadow to the right. +train_38863.png A small glossy amber-brown glass bottle with a short neck and silver screw cap, shown centered in a slightly top-down frontal view on a light wooden surface against a warm, softly blurred background, bearing a white rectangular label with an orange stripe near its base. +train_38983.png Glossy amber-brown glass bottle with a gold cap and a pale rectangular label facing the camera, shown upright from the front against a plain light-gray studio background with soft shadow at its base and bright specular highlights along the neck. +train_39011.png Two tall, upright matte-black plastic bottles with vertically ribbed sides and small screw caps are shown front-on, standing side-by-side against a blurred light, vertically striped background that resembles a shelf or corrugated surface, their cylindrical bodies showing faint rectangular label outlines and subtle highlights along the curved surfaces. +train_39240.png An upright amber-brown glass bottle shown in a slightly frontal view with a short neck and dark cap, a rectangular white label on its midsection, smooth glossy reflections indicating glass texture, and set against a plain light background. +train_39336.png A front-facing, upright green-tinted glass bottle with a glossy, smooth surface containing amber liquid and topped by a bright red cap, standing on a light-gray metal shelf against a softly blurred pale background and flanked by similar bottles with orange and purple caps. +train_39391.png A small translucent teal-green glass bottle with a glossy, reflective surface and narrow neck topped by a dark cap stands upright front-on at eye level against a plain light-gray/white background, casting a faint shadow to its right. +train_39556.png Two upright amber-brown glossy glass bottles with slightly tapered necks and gold crown caps sit side-by-side in a frontal view against a bright, nearly white background, each bearing a bold red rectangular label and showing reflective highlights on their smooth surfaces despite the low resolution. +train_39572.png A glossy teal-green plastic bottle with rounded shoulders and a dark screw-top cap is shown upright in a three-quarter frontal view on a neutral light-gray surface, casting a soft shadow and accompanied by a small red object at its base, the smooth reflective surface showing bright highlights and faint vertical seam lines. +train_39616.png A glossy bright-red, squat glass bottle with rounded shoulders and a short dark (black) cap, featuring a small white rectangular label, shown upright from a slight frontal-top angle against a plain white background with a faint shadow beneath. +train_39657.png An upright amber-colored glass bottle with a smooth glossy surface and tapered shoulders topped by a dark red cap, photographed from a near–eye-level frontal view as it sits on an orange-brown tabletop with bright specular highlights against a blurred deep-blue background and a pale rectangular object behind it. +train_39771.png An upright amber glass bottle with a glossy, smooth surface and a reddish-purple metal cap, viewed slightly from above against a plain pale beige background, showing a slender neck, rounded shoulders and reflective highlights but no readable label details. +train_39886.png An upright, centered amber glass bottle with a smooth glossy surface and subtle highlights, a short rounded shoulder and gold-colored cap, photographed front-on against a plain white background with a faint shadow beneath. +train_39887.png A small, upright, front-facing glossy dark brown (nearly black) glass bottle with a bright red screw cap and a small rectangular white label on its midsection, standing on a plain white/gray surface against a soft, neutral background with a faint shadow beneath. +train_39917.png An upright, front-facing amber glass bottle with a glossy, translucent texture and rounded shoulders, a tall narrow neck topped by a small gold-colored cap, and a faint dark midbody label or band, sitting on a white surface against a warm vertical wooden-plank background. +train_39925.png A narrow-necked amber glass bottle with a glossy, slightly textured surface seen upright in a slightly front-right three-quarter view against a solid dark/black background, showing rounded shoulders, a short neck with a lighter cap/rim and a soft specular highlight on the right. +train_40030.png An upright, glossy amber glass bottle seen straight-on at eye level and centered on a pale tabletop, showing reflective highlights and a white rectangular label with a small red circular emblem and darker text, casting a soft shadow to the right against an out-of-focus bright background with a rectangular light source upper-left. +train_40119.png An upright amber glass bottle with a glossy, reflective surface and a dark neck/cap, viewed at a slight three‑quarter angle against a pale, out‑of‑focus background with a small light rectangular label on the lower body and subtle highlights and shadow. +train_40555.png A small glossy bright-red cylindrical plastic bottle standing upright in a frontal view, topped with a white screw-cap, showing specular highlights and a slightly darker vertical seam and faint rectangular label area, set against a mostly white background framed by red vertical borders. +train_40610.png A small, upright, smooth glass bottle with rounded shoulders and a narrow neck capped by a dark screw top, appearing translucent pale gray with a central vertical highlight and subtle reflections, photographed front‑on against a plain white background with a faint shadow at the base. +train_40703.png An upright, translucent light-blue plastic water bottle with a white cap and faint ribbed texture sits on rough concrete pavement next to dark boots and a person in a red jacket, photographed from a slight overhead/three-quarter angle. +train_40717.png A small clear plastic bottle of translucent golden‑yellow liquid with a smooth glossy surface and a blue screw cap is shown front‑on at a slight angle (paired with an identical bottle) against a plain white background, its white wraparound label bearing blue and orange accents and a blurred logo visible despite the low resolution. +train_40731.png Front-facing, upright, glossy translucent green bottle with a rounded-rectangular body and darker green cap, photographed against a plain white background and bearing a prominent blue rectangular label with a lighter horizontal stripe near its upper third. +train_40821.png A glossy deep crimson bottle (likely glass or plastic) is shown upright in a near-frontal view with slightly rounded shoulders and a short neck topped by a darker cap, displaying a bright vertical highlight and softer shadow on its smooth reflective surface, centered against a solid warm orange circular background with no visible label. +train_40902.png A small upright amber-orange glass bottle with a rounded body and short neck sealed by a cork, shown in a slightly three-quarter frontal view with glossy specular highlights and a faint soft shadow on a plain white background. +train_40938.png An upright glossy amber-brown glass bottle with a bright orange rectangular label near its midbody and a light-colored metallic cap, shown frontally at roughly eye level on a warm, blurred wooden tabletop background, with visible curved highlights on the neck and body indicating a smooth reflective texture. +train_40982.png A small translucent green glass bottle with a narrow neck and rounded shoulders, standing upright in a frontal view with a bright vertical highlight, a faint pale rectangular label on its body and a subtle shadow to the right, set against a vivid red textured background. +train_41026.png Front-facing, slightly top-down view of a squat amber-colored glass bottle with a smooth glossy surface and a narrow neck topped by a dark cork-like stopper, sitting on a plain white background with a soft shadow beneath. +train_41059.png A matte, warm bronze-beige cylindrical bottle with a darker screw cap lies on its side at a slight diagonal in a three-quarter view on a light wood-grain surface, showing subtle scuffing and a faint vertical seam near the shoulder against a pale, out-of-focus background. +train_41168.png A small amber‑brown glass bottle with a glossy surface, a dark brown cap and a cream‑to‑gold rectangular label (blurry printed markings visible) is shown upright in a frontal view against a plain off‑white background with a faint shadow and top highlights. +train_41201.png An upright, frontal view of an amber-brown glass bottle with a smooth, glossy, reflective surface and a metallic cap, bearing a small red rectangular label on the mid-body and casting a faint shadow on a plain white background. +train_41232.png A glossy dark amber glass bottle with a metallic gold neck foil and a small rectangular white label, shown lying diagonally against a plain white background with bright specular highlights and slight scuffs visible despite the low resolution. +train_41258.png A dark brown glossy glass bottle with a gold/yellow metal cap and a faint lighter band near the shoulder stands upright and centered on a warm light‑brown wooden surface against a plain beige background, showing a subtle specular highlight on its side and a short cast shadow to the right. +train_41271.png A glossy, bright red cylindrical bottle with a white screw-top seen upright from the front against a plain light-gray/white background, showing a subtle vertical seam and a faint shadow at its base. +train_41376.png A small glossy amber-brown glass bottle with a narrow neck and dark screw cap stands upright in near-frontal view, its curved surface showing a vertical specular highlight and shadowed base, set against a pale cream tiled background with a vertical blue border stripe to the left and a darker floor/baseboard below. +train_41478.png An upright, amber-brown glass bottle with a narrow neck and rounded shoulders, shown in a slightly angled frontal view against a plain white background, its glossy surface catching subtle highlights and a faint base shadow. +train_41509.png A small glossy red plastic bottle with a narrow neck and white screw cap is shown upright in a front-facing view against a plain white background casting a soft shadow, with a faint rectangular white label on its midsection and a smooth reflective texture visible despite the low resolution. +train_41539.png An upright amber-brown glass bottle with a glossy, reflective texture and a slightly darker tapered neck, viewed front-on against a dark circular backdrop with a thin pale rim and a small specular highlight on its right side. +train_41610.png A small glossy amber-orange glass bottle with a dark cap, shown nearly upright and centered in a slightly tilted pose against a solid magenta background, exhibiting smooth reflective texture, a narrow neck with rounded shoulders, and a bright specular highlight visible despite pixelation. +train_41724.png A small, squat, round bottle with a glossy hot-pink (magenta) glass body and a short gold-toned cap is shown upright in a slightly top-down frontal view, resting on a bright reflective surface against a dark, blurred background, with strong highlights and a soft shadow at its base. +train_41948.png A small glossy translucent yellow plastic bottle with a conical red screw-top cap stands upright facing forward on a plain white surface, casting a soft shadow and showing a faint dark central mark or label and smooth reflective texture. +train_42016.png An upright, glossy amber-brown glass bottle shown in near-front view with a short neck and metallic cap, bearing a rectangular cream label on its midsection, sitting against a plain white background with a faint shadow beneath. +train_42203.png An emerald-green translucent glass bottle with a smooth glossy texture and small dark cap stands upright in a frontal view against a plain white background with a soft gray shadow beneath, its slender neck and rounded shoulders marked by a bright vertical highlight despite the low resolution. +train_42211.png A small glossy teal-green glass bottle with a short neck and dark screw cap is shown in a three-quarter, slightly tilted view resting on a pale surface with a warm orange circular shadow or coaster beneath it, its rounded body marked by bright white highlights and a faint vertical seam. +train_42318.png Front-facing, upright squat glass bottle of deep reddish-brown glossy liquid with a short neck and gold-yellow screw cap, bearing a centered cream-colored rectangular label with a darker central emblem and slight reflections, photographed against a plain white background with a soft shadow beneath. +train_42447.png A small glossy amber-brown glass bottle with a white screw cap sits upright at a slight frontal angle against a soft pale blue-to-white blurred background, its smooth reflective surface and a faint rectangular label area visible despite the low resolution. +train_42510.png A taller dark green, glossy glass wine bottle with a long neck stands next to a shorter amber‑brown bottle with a rounded shoulder, both viewed from a slightly elevated frontal angle on a wooden surface against a warm, softly blurred indoor background of shelves and indistinct objects, their smooth reflective surfaces showing bright specular highlights. +train_42590.png A squat, bright yellow matte-plastic squeeze bottle seen three-quarters from the front resting on a light wooden surface with a blurred teal-green backdrop, showing a rounded shoulder, slightly domed cap with a small red nozzle and faint vertical seam lines along the body. +train_42658.png A short, glossy red plastic bottle with rounded shoulders and a small cream-colored screw cap, seen upright from a slightly elevated frontal angle on a light countertop casting a soft shadow, with an out-of-focus yellow-green background and a small white label near its base. +train_42832.png A small, cylindrical black bottle with a glossy finish and a distinct red lid is shown upright in a slight three-quarter side view on a bright, mostly white background, with a faint shadow and a bright highlight running along its curved surface. +train_42967.png A small upright dark glass bottle shown front-on against a pale, neutral background, with a glossy black body, a bright red capsule on the neck and a matching red rectangular label on the lower body, and a faint shadow at its base. +train_43089.png A small upright cobalt-blue glass bottle with a smooth, glossy, slightly reflective surface and a black screw cap, seen front-on from a slight top-down angle on a pale tabletop with blurred dark and orange objects at the left, its slender neck and rounded shoulder discernible despite the low resolution. +train_43180.png A light-blue translucent plastic bottle with a white screw cap stands upright in frontal view on a store shelf, its smooth glossy surface and a pale rectangular label area visible against blurred neighboring bottles and shelving. +train_43332.png A small glossy dark-brown glass bottle with a short neck and black cap is shown upright from a frontal viewpoint against a plain white background, bearing a prominent maroon/red front label with a gold crest and a lighter lower label visible despite the low resolution. +train_43582.png An upright, front-facing amber-brown glass bottle with a glossy surface and narrow neck topped by a white cap, set against a plain white background and bearing a prominent rectangular red label with a central white circle visible despite the low resolution. +train_43760.png A small glossy orange glass bottle with a squat, rounded body and short neck topped by a thin black band, shown upright in a front-facing view against a soft peach/orange circular backdrop with a subtle white border and a bright highlight on the smooth surface indicating shiny glass. +train_43924.png A small, pixelated green translucent plastic bottle with glossy highlights, a blue screw cap and a white label featuring a blue triangular mark, pictured upright in a three-quarter frontal view against a plain black background. +train_43958.png A short, squat, glossy translucent pink plastic jar with a pale turquoise screw-on lid seen from a slightly elevated frontal angle, resting on a white surface against a softly shadowed, horizontally striped pale background and showing smooth specular highlights and a faint rectangular label band around its midsection. +train_43980.png Two small, glossy yellow plastic bottles with black screw caps stand upright and slightly offset in a three-quarter frontal view on a dark, reflective surface, their smooth curved sides catching bright specular highlights against a nearly black background. +train_44039.png A small glossy red bottle with a smooth, slightly reflective surface and a dark screw-top, shown upright from a centered frontal view against a plain light‑gray background with a soft shadow beneath, and a faint lighter rectangular label area and rounded shoulders visible despite the low resolution. +train_44690.png A small, milky-translucent plastic bottle with a rounded shoulder and an opaque white screw cap is shown upright in a slightly elevated three-quarter view against a dark bluish-gray background, with a faint horizontal label seam around its midsection and a soft shadow cast to one side. +train_44810.png A centered, upright dark-green glossy glass bottle with a smooth reflective surface, a short red cap and a pale rectangular label on its midsection, photographed front-on against a soft beige background with faint shadowing. +train_44832.png Upright frontal, slightly top-down view of a glossy clear bottle with rounded shoulders and a white screw cap, its body dominated by a bright orange-red color (label or liquid) with reflective highlights and a small shadow to one side against a plain white background. +train_44906.png A translucent frosted white plastic bottle with a matte surface standing upright in a frontal pose, topped by a dark screw-on cap, set against a plain light-gray background with a soft shadow, its faint rectangular label and a vertical seam down the body visible despite the low resolution. +train_45087.png A small, glossy dark-brown glass bottle with a white screw cap is shown upright in a slightly angled frontal view, its smooth reflective surface catching a narrow specular highlight as it rests on a pale bluish surface against a softly blurred warm-beige background with a faint shadow to the right. +train_45097.png A small translucent glossy orange plastic bottle with a black screw cap and faint white label sits upright, slightly angled to the right, on a white surface against a soft teal-blue background, the rounded shoulder and bright specular highlights visible despite the low resolution. +train_45128.png A small glossy amber-brown glass bottle with a narrow neck and dark cap shown upright from a slightly elevated frontal view on a warm wooden surface with a blurred yellow‑orange background, bearing a pale rectangular label and bright specular highlights on its curved surface. +train_45150.png An upright turquoise-green glossy glass bottle with a narrow neck and rounded base is seen front-on on a warm beige surface against a pale blue background, its smooth reflective texture and a faint shadow to the right visible despite the low resolution. +train_45155.png A small glossy dark-brown glass bottle with a light‑blue plastic screw cap and a maroon-and-white label, shown upright and front-facing on a white surface with a neutral gray background, its smooth reflective texture and label panel visible despite the low resolution. +train_45193.png A small translucent amber plastic bottle with a smooth glossy texture and white screw cap is shown upright from a slightly elevated frontal viewpoint on a pale beige tabletop against a softly lit neutral background, its simple white-and-blue rectangular label and faint cast shadow visible despite the low resolution. +train_45207.png A glossy amber-brown glass bottle stands upright in frontal view on a pale neutral background, its slender neck and rounded shoulders catching bright specular highlights, a small dark label on the lower body, and a soft shadow cast to the right visible despite the low resolution. +train_45242.png A small square amber-brown glass bottle with a glossy, reflective surface, rounded shoulders and a red cap, bearing a pale rectangular label, is shown upright in a slightly elevated three-quarter frontal view on a soft beige/cream background with a subtle shadow beneath it. +train_45314.png A small, upright, glossy amber-brown glass bottle with a tapered neck and metallic silver cap seen front-on, its smooth reflective surface showing bright specular highlights and a faint base reflection against a deep black background with a narrow vertical bright strip at the left. +train_45332.png An upright amber-brown glass bottle with a glossy, reflective surface and narrow neck, topped by a red cap and bearing an orange/red wrap-around label band, photographed front-on against a plain white background with a small shadow beneath, the smooth glass and label banding still discernible despite the low resolution. +train_45378.png An upright, slender, dark amber-brown glass bottle with a narrow neck and rounded shoulders sits centered against a plain white background, showing a smooth glossy surface with a small highlight and faint shadow at its base and no discernible label in the low-resolution image. +train_45790.png A small upright amber-brown glass bottle with a glossy, slightly reflective surface and short neck topped by a red cap is shown in a three-quarter frontal view against a softly lit neutral background with a faint right-side shadow, a white rectangular label on the body, and visible pixelation/grain from the low resolution. +train_46018.png A small amber-brown glass bottle with a white screw cap is shown upright in a slightly three-quarter frontal view against a bright teal-blue background, its glossy surface catching highlights, a narrow neck and rounded shoulders visible with a faint shadow at the base. +train_46199.png An upright, front-facing glossy amber glass bottle with a narrow neck and rounded shoulders, showing a darker rectangular label patch, standing on a dark horizontal surface against a plain pale beige wall with soft shadowing. +train_46356.png A small glossy black cylindrical bottle with a reflective gold screw cap and a faint rectangular front label stands upright in a centered, slightly top-down view on a plain white background casting a soft shadow. +train_46402.png Two small squeeze-style condiment bottles sit upright in a front-facing three-quarter view against a flat warm beige background: one is bright translucent orange with a glossy plastic texture and a taller, slimmer profile, the other is pale yellow and slightly more opaque with a shorter, rounded body, and both are capped with red cone-shaped lids and show dark rectangular label areas despite the low resolution. +train_46460.png Two slender, smoky blue-gray glass bottles with a smooth glossy surface and bright specular highlights are shown upright in a three-quarter frontal view—one slightly behind and to the right of the other—resting on a neutral light-gray tabletop with soft shadows and faint reflections, revealing long narrow necks and rounded shoulders despite the low resolution. +train_46470.png A glossy bright red plastic bottle with a rounded shoulder and white screw cap, shown upright in a tight frontal crop against a soft, out-of-focus beige surface and flanked closely by similarly shaped blue and dark bottles, with a faint rectangular label area visible despite the low resolution. +train_46716.png A small glossy teal-green plastic bottle with a slender neck and black screw cap, shown upright and front-facing against a plain white background with a faint gray shadow, its smooth reflective surface marked by vertical highlights and subtle shading. +train_46742.png A front-facing, upright amber-brown glass bottle with a glossy, slightly pixelated surface and narrow neck capped in dark, bearing a small rectangular white label and centered against a plain light background. +train_46763.png Two tall, dark amber glass bottles stand upright side‑by‑side in a frontal view against a plain white background, their smooth glossy surfaces catching highlights, narrow necks topped with dark caps and faint rectangular labels visible on the bodies. +train_46780.png A small upright glossy dark-green glass bottle with a narrow neck and rounded shoulders, topped by a metallic gold cap, shown front-on against a plain white background with a faint shadow beneath and visible light reflections on its surface. +train_46807.png A small translucent sea-green glass bottle with a glossy, slightly frosted texture and a white screw cap, shown upright and centered against a soft light-gray background with a faint shadow beneath, its short neck and rounded shoulder visible despite the low resolution. +train_46945.png An upright amber-brown glass bottle with a glossy, slightly translucent surface and gold metal cap is shown in a frontal three-quarter view against a warm, reddish blurred background and tabletop, with rounded shoulders, a long narrow neck and a darker rectangular label band visible despite the low resolution. +train_47128.png Two small amber glass bottles with glossy surfaces and bright red screw caps are shown front-facing on a cluttered wooden shelf in a warm, out-of-focus indoor background, each bearing a white rectangular label with dark vertical markings. +train_47174.png A small glossy turquoise-green glass bottle with a narrow neck and rounded shoulders stands upright on a pale tiled surface, viewed slightly from above, its smooth reflective surface catching highlights and casting a faint shadow to the left. +train_47217.png An upright, front-facing glossy dark purple/black bottle with a light metallic cap, a mid-body purple label containing a pale rectangular panel, subtle surface reflections and a soft shadow on a neutral light-gray background. +train_47223.png An upright, front-facing glossy dark amber glass bottle with a narrow neck and red cap, bearing a small rectangular yellow/gold label near the shoulder, standing centered on a light neutral background with a faint shadow beneath. +train_47294.png A front-facing, upright amber-brown glass bottle with a smooth glossy surface, rounded shoulders and narrow neck topped by a gold/yellow cap, centered against a dark background with a faint shadow beneath and a vague lighter label area visible despite the low resolution. +train_47368.png A small translucent dark-green glass bottle with a glossy, reflective surface and a yellow screw-on cap stands upright and centered against a plain white background, its narrow neck and rounded shoulders visible with a soft shadow beneath. +train_47382.png Four tall, glossy glass bottles in green, blue, red and orange stand upright side-by-side on a plain white surface against a neutral background, photographed from a frontal slightly elevated viewpoint that reveals smooth reflective glass, colored labels and caps, and faint shadows beneath each bottle. +train_47551.png A small upright brown glass bottle with a glossy, slightly reflective texture and a bright yellow cap, shown front-facing and centered against a plain light background, with a faint rectangular label area and the tapered neck and rounded shoulders discernible despite the low resolution. +train_47579.png A small, glossy plastic bottle shown upright in a front-facing view against a solid black background, with a bright blue screw cap, a pink-to-magenta cylindrical midsection, a darker rounded base, and visible specular highlights/reflections indicating a smooth, slightly translucent texture. +train_47729.png A small glossy amber-brown glass bottle with a short neck and black screw cap sits upright on a light wooden surface in front of a warm, vertically grained wooden backdrop, its smooth reflective surface showing a left-side highlight and a faint dark base shadow. +train_47828.png A small glossy translucent orange plastic bottle with a narrow neck and black cap is shown in a close-up three-quarter frontal view, slightly tilted to the right, resting on a pale beige surface with a soft shadow, its smooth reflective body and bright specular highlight visible despite the low resolution. +train_48002.png An upright amber-brown glass bottle with glossy highlights and a red metal cap, shown front-on against a plain white background, bearing a prominent round white label with a red rim and darker central mark and casting a faint shadow beneath. +train_48168.png A small glossy teal-green translucent glass bottle with a rounded, bulbous body and short narrow neck stands upright on a flat pale-gray surface against an off-white wall, photographed from a slightly elevated front angle with bright specular highlights and a dark circular mouth visible. +train_48256.png A small upright amber-brown glass bottle with a glossy reflective surface and white screw cap sits slightly right-of-center on a warm wooden table, viewed frontally against a dark background with a vertical warm highlight and a faint rectangular label visible despite the low resolution. +train_48338.png A glossy dark green glass bottle stands upright in full-frontal view, with a long narrow neck and rounded shoulder tapering to a slightly wider base, showing a bright vertical reflection and a darker cap area, placed against a mostly black background on a faintly illuminated green surface with pixelated rectangular reflections. +train_48470.png A small amber glass bottle with a glossy, reflective surface and a white label featuring a blue band lies on its side at a shallow diagonal on a light tabletop (appearing like paper or a napkin) near a darker wooden edge, the round screw cap and cast shadow emphasizing its cylindrical shape. +train_48524.png Two upright glossy glass bottles—one translucent amber with a white rectangular label and dark neck, the other a deeper reddish-brown with a red label and gold cap—are shown in a close frontal three-quarter view on a clean, slightly reflective white studio surface with strong highlights that emphasize their smooth, shiny texture and long-neck silhouettes. +train_48599.png An upright amber glass bottle with a glossy, slightly reflective surface, a red crown cap and a small rectangular white label on the mid-body, shown front-facing against a plain white background with a faint shadow beneath. +train_48638.png Two glossy pink-red cylindrical cosmetic bottles with slender necks and tall black caps are shown upright side-by-side in a straight-on view against a plain white background, one slightly taller than the other and both exhibiting smooth reflective highlights and a faint shadow beneath. +train_48640.png A glossy amber-brown glass bottle with a white rectangular label and rounded shoulder is shown in close-up lying on its side at a shallow angle on a warm wooden surface, the long neck and specular highlights visible against a softly lit beige background. +train_48666.png A small dark amber glass bottle with a smooth glossy surface and a short black screw cap is shown at a slightly elevated three-quarter angle, sitting on a bright white tabletop against a soft grey background with an out-of-focus blue circular object to the left, the glass displaying subtle specular highlights. +train_48878.png A small amber-brown glass bottle with a smooth glossy surface and a silver cap stands upright on a warm wooden tabletop, seen from a slightly elevated frontal view against a plain beige wall with a soft cast shadow to its right. +train_48961.png A tall, dark-green glossy glass bottle with a long narrow neck and gold cap stands upright (slightly leaning) on a plain light-gray surface seen from a frontal, slightly elevated viewpoint, its smooth reflective surface catching specular highlights and bearing a white rectangular paper label on the body. +train_49020.png A small, upright, front-facing red translucent plastic bottle with a glossy sheen, a light-colored cap and a white rectangular label around its midsection, featuring a slightly tapered neck and subtle highlights against a plain white background. +train_49413.png A glossy amber‑brown, rounded‑body bottle with a narrow neck and small pale cap or highlight at the mouth is shown slightly angled from the front, sitting on a wooden surface against a dim, warm-toned indoor background with soft reflections on its curved surface. +train_49655.png A brown glass beer bottle with a glossy surface and gold cap, shown upright at a slight three-quarter angle against a pale off-white background that includes a blurred framed portrait at the right, bearing a rectangular yellowish label and casting a soft shadow beneath. +train_49694.png An upright, cylindrical matte-silver (brushed-metal) bottle with a bright red screw cap and a small white rectangular label, viewed frontally at a slight angle on a warm-toned, cluttered shelf background, showing soft reflective highlights and minor surface scuffs despite the low resolution. +train_49780.png A glossy dark-green glass bottle stands upright and centered in frontal view against a plain white background, its slender neck topped by a small red cap and a rectangular white label bearing a red circular emblem and faint dark markings visible despite the low resolution. +train_49910.png A small glossy cobalt-blue glass bottle with a darker cap stands upright in the center foreground, viewed slightly from above against a soft, out-of-focus deep-blue gradient background with a faint horizontal surface and subtle shadow beneath, its smooth reflective surface and tapered neck visible despite the low resolution. +train_49925.png A tall, slender glossy amber glass bottle with a long narrow neck and pale cap, shown upright from a frontal viewpoint against a deep black background with a subtle floor reflection and vertical highlight on its smooth surface and a small light-colored label near the base. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/bowl_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/bowl_descriptions.txt new file mode 100644 index 0000000..9e992ea --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/bowl_descriptions.txt @@ -0,0 +1,500 @@ +train_00244.png Top-three-quarter view of a small shallow ceramic bowl with a glossy, mottled burnt‑orange and dark brown glaze, a slightly lighter cream‑colored rim and subtle speckled surface, sitting on a dark matte background lit from the upper left. +train_00307.png A shallow ceramic bowl with a glossy turquoise-to-aqua speckled glaze that pools darker toward the rim, viewed from a slightly elevated top-down angle and resting on a warm wooden tabletop with soft, out-of-focus surroundings, the glaze showing subtle speckling and a slightly uneven, handmade-looking rim. +train_00328.png A shallow, handcrafted terracotta-orange ceramic bowl with a matte, speckled surface and subtle concentric ridges is shown in an oblique top-down view resting on a pale beige surface, its slightly irregular rim and soft shadow to the lower right indicating a handmade form. +train_00385.png A small white ceramic bowl with a glossy finish and a distinct cobalt-blue rim is shown in a slightly angled top-down view, sitting on a warm yellow-orange surface with a soft shadow at its side. +train_00532.png A shallow round bowl with a warm orange-brown glossy glazed interior and a slightly lighter rim is shown from a shallow overhead oblique angle, resting on a warm-toned wooden tabletop with soft, out-of-focus surroundings and faint radial glaze streaks visible despite the low resolution. +train_00889.png A shallow, round wooden bowl viewed from a slight top-three-quarter angle, its warm honey-brown surface showing concentric wood grain rings and a smooth polished sheen, resting on a plain light background with a soft shadow beneath. +train_00942.png A slightly angled top-down view of a small reddish-brown terracotta bowl with a matte, slightly rough surface and a darker, subtly mottled interior, set against a soft beige background with a faint shadow to its lower right. +train_00966.png A small glossy orange-to-golden ceramic bowl photographed from a slightly elevated front angle against a dark vignetted background, showing a smooth reflective surface with a bright specular highlight, a pale rim suggesting light-colored contents, and a tiny green fleck near the top edge. +train_01173.png A small, shallow mint‑green glazed ceramic bowl with a smooth, slightly glossy surface and thin rim is shown in a three‑quarter top‑down view resting on a plain white background that casts a soft shadow, with a faint dark fleck near the upper rim. +train_01355.png A shallow, glossy peach-pink ceramic bowl with a smooth, slightly reflective surface and a faint darker rim, shown in a three-quarter top view resting on a pale cream tabletop with a soft shadow beneath and a warm, out-of-focus background. +train_01489.png A small turquoise–aqua glazed ceramic bowl shown in a slightly elevated frontal view, its glossy, subtly mottled surface catching highlights with a darker rim and base and a faint foot ring, set against a plain black background with a soft shadow beneath. +train_01579.png A shallow glossy orange ceramic bowl with a darker burnt‑orange rim and a lighter yellow‑orange, slightly speckled interior, shown from a slightly elevated top‑down angle resting on a textured teal‑blue background, with a small dark blemish near the rim and subtle reflective highlights on the glaze. +train_01587.png A shallow, glossy ceramic bowl with a dark red-brown rim and cream-speckled interior, shown in an oblique top-front view resting on a wooden surface partly over a pink patterned cloth, its rounded lip and subtle glaze reflections visible despite the low resolution. +train_01645.png A small glossy bubblegum-pink ceramic bowl viewed from a slightly top‑down three‑quarter angle against a plain white background with a soft shadow, showing a smooth, undecorated rim and a subtly lighter interior. +train_01799.png Low, slightly overhead frontal view of a small, dark glossy ceramic bowl with a deep black‑brown interior and a lighter, subtly speckled rim, resting on a light wooden surface against a dark background with a narrow foot visible beneath. +train_01897.png A small, glossy deep-red ceramic bowl viewed from a slightly elevated front angle, resting on a pale pink surface with a smooth reflective exterior, a rounded rim and a noticeably darker interior creating contrast despite the low resolution. +train_01989.png A small glossy teal-green ceramic bowl with a slightly lighter inner glaze and pale rim, shown from a shallow top-front angle resting on a light surface against a muted magenta background, with visible specular highlights and a soft shadow beneath. +train_02078.png A shallow round ceramic bowl shown in a slight top-down view with a glossy white interior, cobalt-blue brushstroke floral/abstract band around the rim and a small golden-yellow spot at the center, resting on a dark wooden surface under soft ambient light. +train_02127.png Slightly off-center top-down view of a shallow ceramic bowl with a glossy pale turquoise-blue speckled glaze and a narrow unglazed brown rim, resting on a light beige textured surface with small dark flecks. +train_02237.png Top-down view of a small metallic bowl with a warm reddish-copper interior and golden-bronze rim, showing concentric brushed rings and a darker central depression with bright specular highlights and a hint of tarnish, sitting on a glossy black background with subtle reflections. +train_02342.png Top-down, slightly off-center view of a shallow golden-bronze bowl with a reflective, subtly mottled interior showing concentric circular highlights and a darker central area, sitting on a matte black surface that casts a soft shadow and a small bright specular gleam on the rim. +train_02387.png Glossy deep burgundy-red ceramic bowl with darker mottled speckling and a slightly darker rim, shown in an oblique top-down view resting on a pale, slightly textured surface with soft shadowing. +train_02559.png A shallow, round metallic bowl with a warm copper-gold patina and subtle hammered/dappled texture, shown in a slightly top-down angled view on a dark nearly black background, its thick rim, reflective highlights and darker interior patina clearly visible despite low resolution. +train_02600.png A small round ceramic bowl seen from a slightly elevated top-down angle, with a glossy reddish-brown interior that darkens toward the center, a thin pale cream rim and muted bluish-gray exterior, sitting on a light wooden surface with faint crumbs and a soft shadow. +train_03059.png A stylized, matte yellow shallow bowl viewed from a slight top-right angle revealing a pale off-white interior and a short yellow spoon or handle protruding to the right, set against a smooth sky‑blue circular background with a small white highlight at the left. +train_03198.png A small, shallow, polished wooden bowl seen in a slightly angled top-down view, its warm tan interior showing faint concentric wood-grain rings and a darker glossy brown rim with subtle speckled markings, resting on a plain white surface with a soft shadow beneath. +train_03258.png Top-down view of a shallow ceramic bowl with a clean white rim and a mottled warm brown interior showing a darker concentric center spot and subtle glossy glaze reflections, placed on a light gray speckled surface. +train_03379.png A small glossy white ceramic bowl viewed from a slightly above, near top-down angle sits on a pale surface casting a faint shadow, its smooth interior showing a few concentrated reddish-pink sauce stains and tiny dark specks near the center and inner rim. +train_03380.png A small dusty-rose ceramic bowl with a smooth, slightly glossy surface and faint concentric ridges is shown from a low three-quarter viewpoint resting on a pale beige tabletop, casting a soft front-right shadow and revealing a subtly darker interior rim. +train_03468.png A shallow glossy white ceramic bowl with a narrow pink rim and a small red mark on its inner edge, photographed from a slightly elevated top-down angle and resting on a white surface with a soft shadow beneath. +train_03655.png A slightly oblique top-down view of a small glazed ceramic bowl showing a creamy off‑white interior with a glossy, slightly crackled surface, a darker brown speckled rim and concentric decorative motifs (a central floral/star medallion and repeating scalloped/leaf band) set against a neutral pale background with a soft shadow. +train_03682.png A shallow, round ceramic bowl with a glossy turquoise-blue, slightly speckled glaze and a subtly darker rim, shown from a high, slightly off-center top-down viewpoint, resting on a warm brown wooden surface with visible grain and bright specular highlights on the inner surface. +train_03889.png A small shallow ceramic bowl with a glossy pale turquoise-blue interior and a darker blue rim band, photographed from a slightly elevated oblique (top‑right) viewpoint against a neutral light surface casting a soft shadow, showing a smooth, subtly speckled glaze texture. +train_03934.png A low-resolution photo shows a shallow, round burnt‑orange ceramic bowl with a smooth, slightly speckled glazed surface and subtle darker center, viewed from a top‑slightly‑angled perspective resting on a warm wood‑toned tabletop with a soft cast shadow to one side. +train_04026.png A top‑three‑quarter view of a small, glossy cream‑colored ceramic bowl with a smooth glazed texture and subtle darker rim, resting on a warm peach‑orange flat surface with a soft shadow to one side and a faint darker speck near its inner base visible despite the low resolution. +train_04064.png Overhead, centered view of a shallow ceramic bowl with a glossy, speckled cream-to-amber interior, a darker brown textured rim with faint concentric ring markings and a small dark central spot, set against a plain dark background. +train_04089.png A shallow, round turquoise-glazed ceramic bowl seen from a slightly elevated top-down angle, its smooth glossy surface showing a darker aqua center and brighter rim highlights, sitting on a plain white background with a faint shadow beneath. +train_04405.png A small off-white glossy ceramic bowl, seen in a slightly top-down, three-quarter view resting on a warm brown wooden surface, showing a faint darker rim, minor interior shadowing or staining on one side, and a soft cast shadow to the right. +train_04563.png A shallow, glazed ceramic bowl seen from a slight overhead angle, its warm amber-orange interior mottled with dark brown speckles and a pronounced darker brown rim and concentric band, exhibiting a glossy, slightly pitted texture and casting a soft shadow on a plain white background. +train_04642.png A shallow, round bronze-brown bowl with a glossy, slightly mottled surface and a darker central shadow, viewed from a slightly elevated oblique top-down angle against a diffuse teal-green background, showing a pronounced rim and a small specular highlight on the inner edge. +train_04673.png Top-down view of a small terracotta-orange ceramic bowl with a slightly uneven, speckled glaze and darker-brown concentric rings and radial dotted pattern converging to a tiny central rosette, set against a deep black background. +train_04776.png A shallow, round ceramic bowl with a glossy sea‑foam green glazed interior and a slightly darker brownish rim, shown from a top‑slightly‑angled view resting on a textured teal‑blue surface with soft shadows and a bright specular highlight on the glaze. +train_04797.png A small cream-colored, glossy-glazed ceramic bowl with a slightly flared rim and reflective interior is shown in a three-quarter overhead view resting on a warm wooden table, casting a soft shadow with a dark-blue mug partially visible at the left. +train_04818.png A small glossy white ceramic bowl with smooth, shallow rounded sides and a slightly rolled rim, shown from a slightly elevated three-quarter/top-down viewpoint resting on a pale surface against a neutral light background, casting a soft shadow underneath and bearing no visible decoration. +train_04850.png Top-down view of a small round ceramic bowl with a glossy, mottled golden-yellow center, a narrow irregular turquoise/teal inner ring and a darker olive-brown textured outer rim, set against a black background. +train_04908.png Top-down, slightly angled view of a shallow round ceramic bowl with a glossy yellow-beige glaze mottled with dark brown/black speckles and a darker brown rim, sitting against a plain white background. +train_04956.png A slightly top-down, angled view of a small round ceramic bowl with a warm beige-to-amber glossy interior, a darker brown rim and subtle concentric shading, sitting on a plain light-gray surface with a soft shadow. +train_04972.png A small glossy reddish-brown ceramic bowl with a pale interior and a darker central spot, shown in a slightly oblique top-down view resting on a light wooden surface beside a folded blue cloth, with visible rim highlights and a soft cast shadow. +train_05193.png A small, shallow bowl in a warm honey-amber color with a smooth, glossy glazed surface and slightly darker inner shading, shown in a slight top-down oblique view resting on a pale neutral background that casts a soft shadow beneath, with a thin rim and bright glaze highlights visible despite the low resolution. +train_05218.png A shallow ceramic bowl viewed from a slight top-down oblique angle, with a glossy turquoise-blue glazed interior showing subtle darker mottling and a thin white rim, resting on a flat neutral gray surface with a small dark spot near the center. +train_05416.png A small, handmade ceramic bowl seen from a slightly elevated top‑down angle, with a creamy off‑white rim fading into a speckled turquoise‑green glazed interior with a darker central spot and subtly uneven, rustic texture and rim, resting on a dark, slightly mottled surface that casts a soft shadow. +train_05696.png A small matte charcoal-black shallow ceramic bowl seen from a slight overhead oblique angle, showing a smooth interior with a faint glossy highlight and gradual inner shadow, resting on a plain light surface that casts a soft shadow beneath it and revealing a subtly rounded, slightly thick rim despite the low resolution. +train_05745.png A translucent pale-blue glass coupe-style bowl with a smooth glossy surface, short stem and round foot, shown centered in a slightly top-down frontal view against a soft white-to-gray gradient background with subtle reflections and a faint shadow. +train_05947.png A small shallow round ceramic bowl with a warm amber-yellow glazed interior and a darker brown exterior, showing a slightly speckled glossy texture and a bright rim reflection, photographed from a slight top-front angle resting on a green, floral-patterned surface under soft diffuse light. +train_06042.png A shallow, handmade-looking cream ceramic bowl with fine brown speckling and a darker brown rim, shown from a slightly elevated oblique angle resting on a warm wood surface with a soft shadow and a small dark spot at its center. +train_06203.png Glossy off-white ceramic bowl with a subtle cream tint and smooth glazed surface, shown in a slight overhead three-quarter view revealing its shallow interior and a small pour spout on one side, resting on a plain white surface with soft diffuse lighting and a faint shadow beneath. +train_06210.png A shallow, pale turquoise-glazed ceramic bowl with a faint darker brown-tinged rim and a glossy, slightly speckled surface is shown from a slight overhead angle, centered on a dark, shadowed textured tabletop or cloth background with soft highlights on the glaze. +train_06240.png A small turquoise-blue ceramic bowl with a smooth, glossy glaze and a subtle darker inner gradient, seen from a slightly elevated three-quarter top view resting on a plain white surface with a soft diffuse shadow and a bright specular highlight near the rim. +train_06372.png Slightly angled top-down view of a small glossy ceramic bowl with a bright orange interior and a wide cream-colored rim, showing glazed reflections and a thin darker outer edge, resting on a dim, subtly textured dark surface with a soft shadow. +train_06426.png Glossy orange ceramic bowl with a slightly lighter, cream‑tinted interior seen from a shallow top‑three‑quarter angle, resting on a white surface against a dark backdrop and showing a thin darker rim, interior shadowing and a small bright specular highlight. +train_06427.png A small amber-gold, glossy, ribbed glass pedestal bowl with a fluted scalloped rim seen from a slightly elevated three-quarter front view against a plain white background casting a soft shadow. +train_06569.png A small, unadorned terracotta-orange ceramic bowl with a smooth, slightly glossy surface and a darker shadowed interior, seen from a shallow overhead angle against a warm, out-of-focus wooden tabletop background, showing a rounded rim and simple, untextured form. +train_06642.png A glossy white ceramic shallow bowl with two thin concentric orange-red bands around the rim, shown from a slight overhead angle resting on a light beige surface with a soft shadow against a neutral background, its smooth glazed texture and rounded lip visible despite the low resolution. +train_06844.png A small glossy ceramic bowl viewed from a slightly elevated front angle, its white interior contrasting with a warm reddish-brown exterior bearing two vertical green brushstroke leaf motifs and a thin dark rim, resting on a plain white surface with a soft shadow. +train_07005.png A glossy burnt-orange ceramic bowl viewed from a slightly top-down angle, its smooth reflective surface and darker rim catching highlights and cradling a small white spoon, set against a muted blue–purple textured background. +train_07006.png A glossy white ceramic bowl viewed from directly above on a dark matte background, decorated with a bold cobalt-blue concentric floral/medallion band around the rim and a smaller blue starburst motif at the center, the smooth reflective glaze and repeating petal-like pattern still discernible despite the low resolution. +train_07142.png A small, glossy lacquered bowl photographed from a slightly elevated frontal angle, with a warm reddish-orange interior and dark brown-to-black exterior showing a reflective sheen and subtle concentric grain, resting against a dark, softly textured background with a faint shadow beneath. +train_07179.png A glossy, deep red‑orange glazed ceramic bowl seen from a slightly elevated top‑down view, with a thin darker inner rim and faint radial brushstrokes/speckling across its surface and a small bright specular highlight at the center, set against a dark, out‑of‑focus tabletop background. +train_07299.png A small, shallow wooden bowl with a warm honey-brown hue and visible radial wood grain and subtle glossy sheen, seen from a slightly elevated oblique/top-side angle resting on a plain white surface that casts a soft shadow to the lower right, with a darker concentric mark near the bowl’s center. +train_07302.png A shallow, matte terracotta-colored ceramic bowl viewed in a slight top-down three-quarter pose, showing a lighter beige rim and darker brown interior with subtle speckling and a soft shadow against a warm orange textured background. +train_07335.png A shallow, hand‑made terracotta bowl with a matte, slightly rough orange‑brown surface and a darker brown inner basin and rim, shown in a three‑quarter top view resting on a plain light background casting a faint shadow. +train_07406.png A small polished honey-brown wooden bowl with visible wood grain and a scalloped/fluted rim set on a short rounded pedestal, shown from a slightly elevated frontal viewpoint against a dark, nearly black background. +train_07429.png Glossy cobalt-blue ceramic bowl viewed from a slightly elevated top angle, its shiny glaze reflecting light, showing a small yellow center surrounded by a lighter blue/white decorative ring, and placed on a dark, subtly textured background. +train_07443.png Top-down view of a shallow, round ceramic bowl with a dark, speckled brown rim that fades into a smoother, glossy, lighter tan center marked by subtle concentric glaze lines, sitting centered on a matte black background. +train_07459.png A small round ceramic bowl with a glossy, mottled teal-blue interior and dark reddish-brown rim and foot, shown in a slightly top-down frontal view resting on a warm wooden surface against a dark blurred background, its glazed surface revealing light reflections and subtle speckling. +train_07476.png A small, light-gray, smoothly glazed ceramic bowl with a slightly darker interior, shown in a slightly elevated front-on view against a plain white background with a soft shadow beneath, featuring two small loop handles on opposite sides, a short pedestal foot, and a gently scalloped rim visible despite the low resolution. +train_07596.png An off-white, lightly speckled glazed ceramic bowl with a faint pinkish-brown rim and small raised foot, shown from a slightly elevated frontal angle against a matte black background that emphasizes its shallow, wide-mouthed profile and subtle glazing irregularities. +train_07712.png A small white glazed ceramic bowl with a thin blue rim holding a pale yellow liquid, photographed from a slightly elevated front-right angle on a warm golden wooden background casting a soft shadow. +train_07864.png Glossy white porcelain bowl with a delicate cobalt-blue floral/scroll pattern around the interior rim, shown in a shallow top-down/three-quarter view against a warm reddish-orange textured surface, revealing a gently curved rim and subtle interior shadow. +train_07878.png A small glossy turquoise-blue ceramic bowl with a darker navy rim and subtle speckled glaze, seen from a slightly elevated top‑angle, sitting on coarse sandy gravel with scattered pebbles and casting a soft shadow to the lower right. +train_07941.png A small clear glass pedestal bowl with a bluish tint, scalloped/fluted rim and vertical ribbed texture, shown in a slightly top‑angled view on a reflective dark bluish‑gray surface with strong specular highlights and a faint shadow beneath. +train_08011.png A shallow, round ceramic bowl with a warm beige exterior and glossy white interior is shown from a slight top-front angle resting on a soft pink surface, its smooth rim and subtle glazing reflections visible despite the low resolution. +train_08048.png A glossy off-white porcelain bowl seen from a slightly elevated top-down angle, with a smooth reflective surface and defined rim showing faint concentric inner rings, sitting on a dark, slightly textured background with a soft shadow beneath and a few small indistinct round items visible inside. +train_08456.png A small glossy white porcelain bowl shown in a slightly top-down, three-quarter view, with a smooth reflective surface, a faint darker inner rim and tiny central speck, set on a plain white background casting a soft shadow to the lower right. +train_08458.png A shallow round ceramic bowl seen in a slight top-down three-quarter view, with a glossy turquoise-to-teal mottled glaze speckled with darker brown flecks and a darker uneven rim, showing a small bright reflection inside and resting on a textured denim-blue fabric background. +train_08612.png A small, shallow, glossy reddish-brown bowl with a smooth, uniform surface and a subtle specular highlight, seen from a slightly elevated three-quarter front view resting on a neutral light-gray surface that casts a soft shadow to the lower-right. +train_08707.png A slightly tilted top‑down view of a small glossy cream‑colored ceramic bowl with a thin dark rim and scattered faint pink/red speckled floral markings inside, resting on a dark blue textured background. +train_08853.png A slightly top‑angled view of a small glossy beige ceramic bowl with a thin dark brown rim and a faint reddish‑brown brushstroke or floral motif inside, resting on a plain white background and casting a soft shadow. +train_09044.png A shallow, round cobalt-blue ceramic bowl with a glossy reflective surface and a slightly lighter rim, seen in a slightly elevated off-center top-down view resting on a warm brown wooden table with a blurred dark-blue cup and pale object nearby. +train_09183.png A small glossy turquoise-blue ceramic bowl seen from a slightly oblique top-down angle, with a darker blue concentric center and lighter, subtly speckled rim catching highlights, set against a dark matte background. +train_09209.png A small glossy avocado-green ceramic bowl with a scalloped, leaf-like rim and subtle interior radial shading is shown in a slightly angled top-down view against a dark, nearly black background, with bright specular highlights indicating a smooth glazed surface. +train_09250.png A small shallow ceramic bowl captured from a slightly elevated three-quarter view, featuring a glossy mottled olive-green interior with brown speckling and a darker brown rim and base, resting on a dark, slightly reflective surface against a shadowy background, with visible glaze streaks and rim highlights. +train_09386.png A small cream-white glossy porcelain bowl with subtle concentric ridges and a short foot, photographed from a slightly elevated three-quarter top view resting on a dark fabric surface against a dim vertical drape, showing a bright rim highlight and a soft shadow beneath. +train_09703.png A small glossy cobalt-blue ceramic bowl seen from a slightly elevated oblique top-down view, with a darker blue interior and a bright specular highlight on the rim, resting on a neutral gray textured surface and casting a soft shadow to its lower-right. +train_09931.png A nearly top-down view of a small creamy off-white ceramic bowl with a slightly darker beige rim and smooth glossy interior showing a bright specular highlight and faint concentric shading, resting on a warm dark wooden surface. +train_10062.png I don't see the image—please upload the low-resolution photo of the bowl so I can provide a single detailed sentence describing its color, texture, pose, background, and distinguishing features. +train_10280.png A small, round ceramic bowl glazed in deep cobalt blue with a glossy, subtly variegated lighter-blue center and reflective highlights, shown from a slightly elevated top-down angle resting on a pale surface with a soft shadow to its lower-right and a smooth, slightly darker rim. +train_10322.png A small round red-orange glazed ceramic bowl with a smooth, glossy finish and contrasting white interior, shown in a slightly elevated three-quarter front view resting on a plain white surface with a soft shadow and a subtly darker rim edge. +train_10577.png A small, shallow, glossy dark-brown ceramic bowl with a lighter tan rim and subtle speckled glaze, seen from a slightly overhead angled top-down view resting on a warm wooden surface with a metallic spoon faintly visible to the right. +train_10639.png A shallow honey‑brown bowl with a smooth, glossy surface and subtle concentric striations, seen from a slightly elevated off‑center top view revealing the rounded rim and interior, set against a deep black background with a soft shadow beneath. +train_10742.png A shallow, glossy slate-blue-gray ceramic bowl photographed from a slightly elevated top-down angle on a pale neutral surface, its smooth interior showing a darker central starburst or floral motif with radiating petal-like spokes and a soft rim shadow. +train_10788.png A shallow, translucent aqua-glass bowl with a glossy, reflective surface and a subtle inner gradient from bright cyan at the center to deeper teal at the rim, shown in a slightly elevated frontal view against a deep blue, softly bokeh-lit background with small white sparkle highlights on the rim and surface. +train_10822.png A small round bowl seen slightly from above with a glossy golden‑yellow rim and contrasting pale turquoise‑blue glazed interior, showing reflective highlights and subtle shadowing against a faint greenish neutral background. +train_10869.png A small off-white porcelain bowl with a smooth, slightly glossy finish and gently flared rim, shown from a low three-quarter viewpoint resting on a pale tabletop that casts a soft shadow to one side, with a neutral out-of-focus gray background and the bowl’s shallow interior and subtle rim curvature visible despite the low resolution. +train_10955.png A shallow, glossy terracotta-orange ceramic bowl with a darker brown-black exterior and pronounced flared rim, photographed from a slight top-front angle against a plain black background, showing a smooth reflective glaze and the bowl’s shadowed inner curve. +train_11185.png A glossy off-white ceramic bowl seen from a shallow overhead angle resting on a dark wood-grain table, containing a ring of orange-brown residue around its inner rim and surrounded by a dim, out-of-focus indoor background. +train_11218.png A small glossy dark-brown ceramic bowl with a slightly lighter brown rim and visible glaze reflections, seen from a shallow top-front angle revealing its darker interior, resting on a pale circular surface against a deep black background. +train_11486.png A shallow, wide, buttery-yellow ceramic bowl with a smooth glossy glaze and a bright specular highlight on its inner left rim, shown from a slightly elevated three-quarter-front view resting on a white surface against a pale mint‑green background with a soft shadow beneath. +train_11496.png A glossy, near-black ceramic bowl seen from a slightly above three-quarter angle, its shiny glazed interior showing bright window-like reflections and small white specks, with a metal spoon resting on the right rim and a soft shadow on a pale countertop background. +train_11586.png Glossy metallic gold bowl with a smooth, slightly reflective surface and a deep red interior, shown in a slightly elevated three-quarter front view against a plain white background with a faint shadow, featuring two narrow dark vertical accents on its sides. +train_11858.png A small, glossy, dark-brown-to-nearly-black ceramic bowl with a smooth, reflective surface and a faint reddish-brown inner rim, shown from a slightly elevated three-quarter angle resting on a pale surface that casts a soft shadow against a blurred warm, dark background. +train_12093.png A slightly angled top-down view of a small round ceramic bowl with a glossy dark brown-to-black interior contrasting with a matte beige outer rim, subtle radial glaze streaks and a tiny central white reflection, resting on a neutral gray surface and casting a soft shadow. +train_12266.png A shallow, round ceramic bowl with a creamy off-white, slightly matte interior and a narrow glossy brown rim, photographed from a slightly angled top-down view against a dark, slightly textured background, showing a small pale smear of residue and soft light reflections on the rim. +train_12347.png A small glossy red-orange bowl viewed from a slightly elevated frontal angle, its smooth ceramic surface showing strong specular highlights and a darker reddish center, edged with a thin golden rim, and set against a deep matte-black background with faint surface reflections. +train_12402.png A glossy orange-to-deep-red bowl viewed from a slightly elevated top-down angle, showing a darker brown rim and a bright central specular highlight with subtle uneven glazing and inner color gradient, resting on a muted teal-green surface that casts a soft shadow. +train_12442.png A shallow, round bowl with a muted slate-blue to gray matte interior showing faint radial brush-streaks and a slightly darker rim, seen from a slightly elevated top-down angle resting on a pale, softly textured surface with a subtle shadow to one side. +train_12472.png A shallow, glossy golden-orange bowl seen from a slightly top-down, three-quarter view against a dark background, showing a darker rim, subtle concentric brushstroke-like ridges and a small darker central shadow/dent on its interior. +train_12547.png A small glossy ceramic bowl with a bright cobalt‑blue exterior and smooth white interior, shown in a slightly elevated three‑quarter top view on a plain white surface, with a reflective highlight on the rim and a soft shadow beneath. +train_12703.png A shallow terracotta-colored ceramic bowl with a matte, slightly speckled surface, seen from a slight top-down three-quarter view resting on a pale beige background and casting a soft shadow, with a smooth rounded rim and faint concentric glazing marks visible inside. +train_12759.png A small, bright lime‑green ceramic bowl with a smooth glossy finish and thin rim is seen from a slightly elevated oblique top‑down view, showing a central specular highlight and a soft shadow to its lower right against a dark, mottled greenish‑black background. +train_12816.png A shallow glossy white ceramic bowl decorated with dense cobalt-blue hand-painted floral and vine motifs and a scalloped blue rim, seen from a slightly elevated top-down angle and resting on a light speckled gray-white surface with soft shadows. +train_12959.png A slightly angled overhead view shows a shallow, scalloped-rim ceramic bowl with a smooth glossy cream glaze speckled with brown, decorated around the inner rim with eight blue petal-shaped motifs and a small dark-blue central dot, resting on a warm wooden surface beside a white cloth. +train_13032.png A shallow round ceramic bowl seen from a slightly elevated top-down angle against a dark background, with a glossy turquoise-blue rim fading to a pale cream interior, a small dark speckled mark at the center, and subtle mottled glaze reflections. +train_13080.png Top-down, slightly angled view of a small shallow stainless-steel bowl with a brushed silver, slightly scratched and concentric-ridged interior, a glossy reflective rim and central shallow dimple, catching bright specular highlights and sitting on a dark matte background. +train_13343.png A glossy deep-red ceramic bowl seen from a slightly elevated oblique top angle, showing a smooth reflective sheen with a lighter off‑white central interior, sitting on a dark reddish-brown wooden surface with soft shadowing around the rim. +train_13488.png A small, glossy cobalt-blue ceramic bowl with a lighter, speckled inner glaze and a slightly irregular hand-thrown rim, shown from a shallow overhead oblique angle resting on a warm yellow-mottled surface that casts a soft shadow to the lower right. +train_13552.png A small, shallow terracotta-orange ceramic bowl with a glossy, slightly speckled glaze and a subtly darker rim, shown from a three-quarter top-down view resting on a warm light-brown wooden surface with a soft shadow underneath. +train_13554.png A small shallow, matte, speckled light-tan ceramic bowl with a subtle darker brown rim and a narrow foot, shown from a slightly elevated three-quarter viewpoint resting on a neutral pale surface with a soft shadow beneath. +train_13628.png A shallow, glossy white ceramic bowl seen from a slight top‑down angle with a smooth pale‑pink inner glaze fading toward the center that holds a small greenish spot, set against a plain white background with a tiny pink speck near the rim. +train_13766.png A small shallow terracotta‑colored ceramic bowl with a smooth, slightly glossy surface, shown from a slightly elevated frontal viewpoint revealing its rounded rim and interior, set on a plain white background with a soft shadow underneath. +train_13948.png A small glossy orange-red ceramic bowl with a smooth reflective glaze and faint darker speckling, shown in a slightly elevated front three-quarter view revealing its shallow interior and rounded lip, sitting on a plain dark background and bearing a small black printed mark on the outer face. +train_14035.png Top-down view of a small round ceramic bowl with a glossy deep red rim that fades into a pale cream, slightly mottled interior with a tiny dark speck at the center, sitting on a warm reddish-brown background. +train_14072.png A shallow, round reddish-brown (rust-colored) bowl with a smooth, mostly matte surface is shown from a slightly elevated oblique top view, resting on a muted green-blue background with soft shadowing and a small pale reflection near the inner rim. +train_14149.png A slightly angled top-down view of a glossy turquoise-blue ceramic bowl with a darker blue rim and a small orange spot on its edge, sitting on a neutral light-gray surface with a soft shadow beneath, the smooth reflective glaze and subtle curvature visible despite low resolution. +train_14179.png Slightly overhead view of a small glossy pink ceramic bowl with a smooth, pale (near‑white) interior and subtle rim shadow, resting on a softly lit light‑pink/cream surface and showing a faint darker spot along the upper edge. +train_14231.png A shallow, round ceramic bowl seen from a slightly elevated, three-quarter top view, finished in a warm peach-beige glaze with a darker brownish center and subtle concentric banding, a thin, slightly darker rim, glossy specular highlights and mild mottling, set on a neutral light surface casting a soft shadow. +train_14237.png A shallow, round bowl of warm amber-brown ceramic with a glossy, speckled glaze and concentric darker rings toward a small central depression, seen from a slightly top-down view against a dark background with a lighter, slightly irregular rim and soft shadow. +train_14253.png A shallow, cream-colored ceramic bowl with a matte, speckled surface and faint concentric glazing marks is photographed from a slightly elevated left-front angle, sitting on a dark textured background with its rounded rim and interior shadowing clearly visible. +train_14384.png A shallow, glossy two-tone ceramic bowl viewed from a slight top-down angle — its dark green rim and exterior contrast with a pale buttery-yellow interior showing radial glaze streaks and a small bright highlight, resting on a warm light-wood surface with a soft shadow beneath. +train_14588.png A shallow, round ceramic bowl seen from a slight top-front angle against a plain white background, glazed in warm beige with subtle brown speckling, concentric brush-stroke rings and a glossy surface with a slightly darker rim and a small glaze-pool spot near the center. +train_14719.png A small shallow honey-brown wooden bowl with visible concentric grain and a smooth polished sheen, shown in a three-quarter top-down view against a dark black background with a soft shadow cast to the lower right. +train_14830.png A shallow glossy turquoise-green ceramic bowl shot from a slightly elevated angle, showing a dark spoon resting across its rim and a faint interior shadow, sitting on a pale, slightly textured surface that casts a soft shadow beneath it. +train_15122.png A small shallow turquoise-green ceramic bowl with a glossy, slightly mottled glaze and a bright rim highlight, shown in a slight top-down three-quarter view resting on a warm wooden surface against a blurred dark teal background. +train_15222.png A shallow, round ceramic bowl with a glossy deep orange‑red interior and contrasting dark outer rim is shown in a slightly elevated three‑quarter top‑down view, resting on a dim, out‑of‑focus dark surface under warm lighting, the glazed surface catching bright reflections while containing a chunky red stew with a small green herb garnish. +train_15286.png A small cream-colored ceramic bowl with a glossy, speckled dark-brown rim and slightly flared lip, shown from a shallow overhead angle resting on a warm wooden tabletop against a softly blurred beige background, with visible glaze pooling and subtle surface imperfections near the rim. +train_15693.png A shallow, round ceramic bowl photographed from a slight top‑down angle, glazed in a soft peach‑pink with a subtle glossy sheen and faint darker speckling near the rim, resting on a muted teal surface and bearing a small darker floral/leaf‑like motif at its center. +train_15741.png Glossy brass-gold shallow bowl seen in a three-quarter top view, showing a polished metallic texture with bright specular highlights and a slightly darker interior and rim, sitting on a dark brown/black background with a soft shadow beneath. +train_15759.png A small glossy turquoise-blue ceramic bowl viewed from a shallow overhead angle, with a slightly darker rim and lighter, subtly speckled interior glaze and a bright specular highlight, sitting on a warm, out-of-focus reddish-brown surface. +train_15854.png A shallow, round bowl with a warm golden-yellow glossy surface and subtle specular highlights is shown in a slightly elevated three-quarter (top-front) view against a dark background, its interior falling into soft shadow and a small dark blemish near the upper rim visible despite the low resolution. +train_16071.png A small glossy reddish-brown ceramic bowl with a mottled darker speckled glaze and slightly flared rim, seen from a shallow top‑angle resting on a light speckled surface against a soft teal‑blue backdrop, showing a darker interior and a short foot beneath. +train_16153.png A small, glossy reddish-orange ceramic bowl viewed from a slightly elevated top-down angle, showing a darker, nearly black interior and a subtle reflective rim highlight, sitting on a dim, warm-toned surface (likely wood) with a tiny bright specular spot. +train_16202.png A shallow, glossy ceramic bowl seen from a slightly top-down oblique angle with a bright orange-yellow interior, a darker brown speckled rim and exterior, and a small highlight on the glaze, resting on a wrinkled purple cloth background with a soft shadow to the lower right. +train_16321.png A small, glossy deep-red ceramic bowl seen from a slightly elevated three-quarter vantage that reveals its rounded rim and dark interior, resting on a plain white surface with a soft shadow beneath and bright specular highlights showing a smooth reflective glaze. +train_16433.png A small, shallow, round ceramic bowl with a glossy, speckled tan-to-brown glaze and a slightly darker interior ring, shown in a top three-quarter view resting on a warm, textured dark-wood surface with soft overhead lighting that highlights subtle rim irregularities and a faint reflective sheen. +train_16560.png A shallow, slightly off-white/cream ceramic bowl with fine grey speckling and a darker, subtly scalloped rim is shown in a slightly top-down, oblique view, sitting on a dark, matte surface with a soft shadow to the lower right. +train_16740.png A small, glossy cobalt-blue bowl viewed from a slightly elevated front angle revealing its circular rim and darker interior, set on a plain white surface with a soft shadow beneath and a bright specular highlight along the rim. +train_16781.png A shallow, glossy ceramic bowl with a turquoise-blue rim and pale off-white interior viewed from a slight top-down angle, showing faint concentric glaze streaks and a subtle inner shadow, resting on a neutral light‑gray surface with a soft shadow to the lower right. +train_17207.png A small, shallow ceramic bowl with a glossy reddish-brown exterior and a lighter beige inner surface, photographed from a slightly top-down angle on a warm wood-grain background, showing a bright specular highlight and faint speckled glazing around the rim despite the low resolution. +train_17256.png A glossy turquoise-blue ceramic bowl viewed from a slight top‑angle, revealing a darker navy inner basin and thin dark rim with bright glaze highlights, resting on a plain white surface that casts a soft shadow. +train_17323.png A small footed bowl with a glossy, mottled teal-green glaze and a slightly darker rim, shown from a slightly elevated three-quarter/top-down view against a plain white background with a soft shadow, revealing a flared rim, reflective highlights, and subtle speckling in the ceramic. +train_17344.png Top-down view of a round ceramic bowl with a glossy pale aqua-green center and a darker matte brown-speckled rim and exterior showing irregular glaze and fine crackle, sitting centered on a dark wood surface with a soft shadow to the lower-right. +train_17408.png A shallow, handmade-looking ceramic bowl with a glossy cobalt-blue interior showing lighter radial streaks, a slightly irregular cream-speckled rim and warm brown clay exterior, photographed from a slightly overhead three-quarter angle against a dark wooden surface. +train_17436.png A shallow, pale gray ceramic bowl with a smooth glossy surface and a thin raised rim is shown from a top‑right oblique angle, resting on a plain white background that casts a soft shadow to the lower-left, with a small dark speck visible near the center. +train_17652.png A shallow ceramic bowl with a glossy cream interior and reddish-brown concentric banding on the exterior, shown from a slightly elevated oblique top-down angle and resting on a dark wooden or tiled surface with a small pale object nearby. +train_17711.png A shallow, metallic golden-bronze bowl viewed from a slight top-down angle, its polished reflective rim and warm orange-gold interior showing faint concentric striations and a central sunburst-like relief, set against a dark, out-of-focus background. +train_17829.png A small glossy orange-red ceramic bowl photographed from a slightly elevated top-down angle, revealing a darker central spot and subtle rim wear, sitting on a pale peach-orange speckled surface with a soft shadow to its lower-right. +train_17835.png A three-quarter top-down view of a small glossy turquoise-blue ceramic bowl with a slightly lighter, subtly speckled inner rim and visible glaze highlights, resting on a warm beige surface and casting a soft shadow. +train_17875.png A small glossy deep-red lacquer bowl photographed from a slightly elevated, front‑right angle, its smooth reflective surface showing bright specular highlights and a darker shadowed interior, resting on a plain light background with a soft cast shadow and a second similar red piece beside it. +train_17980.png A top-down, slightly angled view of a small ceramic bowl with a glossy turquoise–teal speckled glaze inside, a thin reddish-brown rim, darker matte exterior, and a small central specular highlight, set against a very dark background sprinkled with faint red flecks. +train_18247.png Top-down view of a shallow, round ceramic bowl with a pale bluish-white crackle glaze and hand-painted cobalt-blue concentric floral/spiral brushstrokes radiating from the center, a slightly scalloped darker rim, set on a rough dark gray stone-like background. +train_18346.png A small, glossy cerulean-blue bowl viewed from a slightly elevated top-down angle, showing a lighter turquoise inner rim and a bright white specular highlight on the upper-right, with smooth reflective surface and subtle inner shadow set against a uniform deep-blue gradient background. +train_18347.png A small glossy white ceramic bowl viewed from a slightly elevated oblique angle on a plain white surface, with three dark navy-blue concentric rings around the rim and exterior, subtle interior glazing highlights, and a soft shadow beneath. +train_18361.png A shallow glossy ceramic bowl with a turquoise-blue exterior and bright orange-red interior seen from a slight top-front angle resting against a dark, out-of-focus background, its thin white rim and soft highlights revealing a smooth glazed texture. +train_18383.png A shallow, cream-colored ceramic bowl with a glossy, slightly speckled glaze and a thin darker rim, seen from a slightly oblique top-down view resting on a warm-toned wooden surface with a soft shadow at its lower edge. +train_18605.png A small glossy light‑blue ceramic bowl with a darker blue rim and subtle speckled glazing, shown from a slight top‑angle resting on a warm wooden tabletop with soft shadows and a bright specular highlight on the rim. +train_18948.png A small glossy red-orange ceramic bowl photographed from a low, slightly top-front angle, its darker, slightly mottled interior and bright rim catching reflective highlights as it rests on a plain white surface with a soft shadow beneath. +train_19042.png A small glossy deep-blue ceramic bowl seen from a slightly elevated angle revealing a lighter blue interior and darker rim, with a pronounced white specular highlight and soft shadow set against a dark teal-to-navy gradient background. +train_19153.png A shallow ceramic bowl with a glossy deep burgundy-red glazed interior and a matte cream/beige exterior, seen from a slightly elevated top-down angle on a pale beige surface, showing a thick rounded rim, a bright circular specular highlight and a small dark spot near the center. +train_19446.png A small glossy golden-yellow ceramic bowl with a dark shadowed interior and a bright specular rim highlight, viewed from a slightly elevated oblique top angle and resting on a pale surface against a soft blue-to-cream gradient background while casting a subtle lower-right shadow. +train_19470.png A warm, medium-brown bowl with a slightly glossy, mottled surface and a darker rim is photographed obliquely from above—tilted to reveal its lighter interior—and sits in the upper-right of a pale neutral background casting a soft shadow to the lower-left. +train_19477.png A small, footed ceramic bowl with a glossy slate‑blue glaze and faint lighter speckling, shown from a slightly elevated frontal angle that reveals its rounded interior and flared rim, sitting on a reflective dark tabletop against a dim, out‑of‑focus background with a horizontal bright strip, the glaze highlights and short pedestal base remaining discernible despite the low resolution. +train_19503.png A glossy, warm orange-to-yellow gradient shallow bowl seen from a slight top-down angle, showing a brighter yellow center and darker orange rim with soft highlights and a small dark spot on the upper-right edge, resting on a plain white background with a faint oval shadow underneath. +train_19864.png A glossy off-white ceramic bowl seen from a slight top-down angle, its shallow interior containing a warm orange-brown liquid with a small dark speck near the rim and a short metal spoon tucked against the edge, resting on a pale, slightly textured surface that casts a soft shadow. +train_19940.png A small deep-indigo ceramic bowl with a glossy, white-flecked speckled interior and a slightly rough, lighter-toned rim, shown from a slight top-down angle resting on a dark textured tabletop with a small bright reflection near the center. +train_20052.png Glossy small ceramic bowl with a warm pink exterior and pale bluish-white interior, shown in a slightly top-down three-quarter view resting on a muted teal surface, with a pronounced rounded rim and a soft shadow beneath. +train_20186.png A small shallow reddish-orange glazed ceramic bowl with a smooth, glossy surface and thin flared rim is shown from a slightly elevated angle revealing its interior, resting on a plain pale background with a soft shadow beneath. +train_20233.png A white ceramic bowl, shown in a slightly top-down three-quarter view, holds a glossy deep reddish-orange broth with a few pale dumpling-like pieces and a small green herb garnish, a metal spoon resting inside, all set on a dark wooden tabletop with soft shadows. +train_20280.png Nearly top-down view of a shallow ceramic bowl with a glossy, pale cream interior featuring a concentric decorative pattern — a small sunny-yellow central circle with a tiny brown speck, a surrounding white band and muted pink inner rim — sitting on a dark bluish-gray textured surface. +train_20374.png A small matte cream-beige ceramic bowl with a darker brown inner ring and subtle speckled glaze, shown in a slightly top‑down oblique view resting on a dark surface that casts a soft shadow and reveals a slightly thick, uneven rim. +train_20421.png A shallow, round bowl with a warm golden‑bronze metallic finish, showing a reflective, slightly brushed texture and concentric sheen, viewed from a slightly elevated top‑down angle against a deep black background that casts soft shadowing, notable for its darker rim and a small darker blemish near the inner edge. +train_20708.png A small, glossy ceramic bowl shown in a three-quarter top-down view with a pale turquoise-blue glaze, subtle cream and brown speckling and a hand-painted floral/leaf motif around the rim, its shiny, slightly uneven glazed texture catching highlights as it rests on a dark matte background. +train_20793.png A glossy, bright yellow ceramic shallow bowl with a slightly darker orange-tinted rim and smooth reflective surface, shown from a tilted overhead three-quarter view revealing a darker interior shadow and a couple of tiny dark specks, sitting on a warm wooden surface with soft cast shadow and a blurred neutral background. +train_21164.png A glossy mint-teal ceramic bowl with a cream-colored interior and darker teal rim, seen from a slightly elevated top-down angle resting on a pale beige countertop, displaying a shiny glazed surface and a small crescent-shaped shadow/reflection inside near the upper-right. +train_21167.png A shallow, warm honey-brown wooden bowl with visible grain and a slightly glossy inner surface, shown from a slightly elevated front angle against a dark bluish background, with a darker rim and a narrow pale decorative band of cream dot-like motifs encircling the exterior near the top. +train_21556.png A small glossy reddish-orange ceramic bowl photographed from a slight top-down angle, its smooth glazed surface showing a bright highlight near the rim and a subtly darker center, resting centered on a plain off-white background with a faint shadow cast to the lower right. +train_21699.png Small shallow beige-cream ceramic bowl with a glossy, lightly speckled glaze and a darker brown rim, shown from a slightly elevated oblique viewpoint resting on a warm wooden surface with soft shadowing and a bright rim reflection and two tiny dark flecks near the center. +train_21720.png A slightly elevated front-facing view of a small, glossy burgundy ceramic bowl with a subtle speckled glaze and lighter rim, showing faint internal radial glaze lines and a bright specular highlight, sitting on a dark surface against a high-contrast blurred background of vertical pale streaks. +train_21811.png A small glossy coral-pink ceramic bowl seen from a slightly elevated top-down angle, with a smooth reflective surface, subtle darker speckling and a central dark spot, resting on a deep black background scattered with a few tiny red flecks. +train_21994.png A slightly top-down view of a small round ceramic bowl with a glossy, speckled cobalt-blue glaze that darkens toward the center and lightens to a pale sky-blue band with a thin white rim, sitting on a neutral gray-beige textured surface with a soft shadow beneath. +train_22069.png A small glossy red-orange ceramic bowl with a darker inner cavity and subtle glaze variation, photographed from a slightly elevated oblique angle against a plain white background with a soft cast shadow. +train_22107.png Glossy teal-green ceramic bowl with a subtly mottled, radial-glaze texture fading to a lighter turquoise center, shown from a slightly elevated top three-quarter view and resting on a dark, slightly reflective surface, with a darker rim and a small bright glaze highlight on the inner slope. +train_22136.png A shallow, round wooden bowl in warm honey-brown tones with visible concentric grain and a smooth polished sheen, shown in a near top-down view slightly offset, resting on a pale, neutral background with a faint shadow and a darker central patina and subtly raised rim. +train_22325.png A small, shallow bowl seen from a slightly elevated frontal view displays a warm coppery-brown glossy surface with golden highlights and faint mottled patina, a rounded, slightly thick rim and a strong specular highlight on the upper interior, set against a uniform dark background with an inner shadow gradient. +train_22370.png A shallow off-white ceramic bowl with a smooth glossy surface, shown in a slightly elevated three-quarter top view, containing bright orange-red chunky pieces (tomato-like) that contrast strongly against a dark, indistinct background. +train_22387.png A small glossy cobalt-blue ceramic bowl with a lighter, slightly speckled sky-blue interior is shown from a slightly elevated, oblique top-down angle on a soft purple background, its rounded rim punctuated by two small yellowish protrusions and casting a soft shadow beneath. +train_22400.png A small, glossy ceramic bowl shown from a slight top-down frontal viewpoint and sitting on a plain white surface, with a sky-blue rim, a broad yellow middle band, an orange-red lower band, a visible dark inner cavity and subtle highlights and a soft shadow beneath. +train_22437.png A small round reddish-brown glazed ceramic bowl with a smooth, glossy surface and darker shadowed interior, shown in a shallow top-down view resting on a warm wood-grain surface with its thin rim catching a bright highlight. +train_22474.png A small shallow beige-speckled ceramic bowl with a matte, slightly uneven glaze and a subtly darker rim, photographed from a slightly elevated front angle showing its concave interior, resting on a warm-toned wooden surface under soft natural light that casts a faint shadow. +train_22586.png Top-down view of a small glossy ceramic bowl with a deep moss‑green interior that darkens toward the center, subtle concentric striations, a thin white rim, and a faint highlight, sitting on a neutral gray textured background. +train_22611.png A small glossy white ceramic bowl with a slightly darker thin rim and smooth reflective interior, shown from a shallow top-down angle that reveals its rounded lip and narrow base, sitting on a plain white surface casting a soft shadow to the lower-left. +train_22697.png A shallow, round ceramic bowl seen from a slightly elevated top‑angle, with a glossy pale cream interior streaked with subtle green‑brown radial speckling and a darker mottled forest‑green rim, sitting on a dark, slightly textured surface that casts a soft shadow and shows a faint out‑of‑focus green patch beside it. +train_22765.png A shallow, smooth, glossy cobalt-blue bowl photographed from a slight top-front angle, showing bright white specular highlights on its interior and rim, a subtle shadow beneath, and set against a dark blue gradient background. +train_22832.png A shallow, glossy deep magenta-red ceramic bowl with a darker, shadowed interior, viewed from a slightly above three-quarter angle and resting on a dark purple–black mottled surface that casts a soft shadow beneath and shows a small bright magenta highlight near its upper-left. +train_22934.png A slightly angled top-down view of a small glossy turquoise-green ceramic bowl with a darker brown-rimmed lip, subtle speckled/crackled variegation and a pooled, deeper-toned center around a raised foot, resting on a light wooden surface with a soft shadow. +train_23112.png Slightly angled top-down view of a small glossy orange-red ceramic bowl with a narrow near-black rim and a bright central specular highlight, resting on a dim black background with a pale rectangular patch beneath and a soft shadow at the lower edge. +train_23133.png A shallow, glossy sky-blue ceramic bowl seen from a slightly elevated front-angle showing its inner curve and a slightly darker rim, resting on a warm light-brown wooden surface with a soft shadow beneath and small specular highlights on the glaze. +train_23295.png A small glossy dark-brown ceramic bowl with a contrasting white rim is shown in a slightly top-down three-quarter view on a warm orange surface, containing a reflective dark liquid and a pale irregular piece, with a soft shadow cast to the right. +train_23317.png A shallow, round ceramic bowl photographed from a slight overhead angle, showing a warm amber-brown, speckled glossy glaze with concentric darker rings toward the center and a paler rim, resting on a dark wooden surface with soft shadow. +train_23324.png A shallow, round bowl seen from a slightly top-down angle has a cream-colored, subtly speckled interior with a warm brown glazed rim and slight sheen, resting on a mottled orange–tan tiled surface with a small darker spot near the bowl's center visible despite the low resolution. +train_23498.png A shallow, wide ceramic bowl with a glossy turquoise-green, slightly crackled and speckled glaze and a darker brown-rimmed edge, shown from a slightly elevated front angle resting on a warm reddish-brown wooden surface against a dim, out-of-focus background, a small foot visible beneath. +train_23512.png A slightly angled top-down view of a small glossy terracotta-orange ceramic bowl with a smooth, pale cream interior and a thin darker rim, resting on a worn wooden surface partially atop a faded blue circular coaster and casting a soft shadow to one side. +train_23651.png A shallow, glossy ceramic bowl glazed in sea‑foam turquoise with subtle radial streaking and a slightly darker central ring, shown in a slightly top‑down view resting on a warm brown wooden surface with soft shadowing. +train_23675.png A small glossy ceramic bowl viewed from a slight top-front angle, with a white interior framed by a narrow cobalt-blue rim and a pale blue exterior, sitting on a dark matte surface with a soft shadow cast to the lower left. +train_23844.png The small, shallow glazed ceramic bowl appears glossy white inside with a faint pale-blue outer rim, shown in a slightly top-down three-quarter view resting on a bright turquoise flat surface, with a thin darker rim, a small central speck, and a soft shadow to its lower right. +train_23922.png A shallow, pale cream ceramic bowl with a glossy, slightly green-tinted interior and thin even rim is shown from a slightly elevated frontal view, sitting on a warm brown wooden surface against a dark, out-of-focus background with subtle speckling and soft highlights visible despite the low resolution. +train_24282.png A small glossy white ceramic bowl seen from a slightly elevated front-right angle, its smooth rounded rim and interior showing faint pinkish reflections and a tiny red spot at the bottom, resting on a soft pastel-pink surface with a diffuse shadow beneath. +train_24296.png A glossy white ceramic shallow bowl with a slightly flared thin rim and small pedestal foot, viewed from a slightly above-front angle on a plain light background casting a soft shadow, showing a smooth reflective surface and shallow concave interior. +train_24302.png A small glossy orange-yellow ceramic bowl seen from a slightly overhead angle, its smooth glazed surface reflecting light with a darker, slightly mottled central spot and subtly darker inner rim, resting on a plain white surface with a soft shadow. +train_24530.png A small, shallow off-white glazed ceramic bowl with a slightly darker thin rim and faint concentric glaze rings and subtle surface speckling, shown from a slightly elevated top‑down angle resting on a neutral light‑gray surface that casts a soft shadow beneath it. +train_24563.png A small pale tan, glazed ceramic bowl with a smooth, slightly glossy surface and subtle darker brown shading in the interior, shown in a slightly oblique top-down view against a dark background so the rounded rim, shallow basin and soft highlight and shadow are clearly visible despite the low resolution. +train_24614.png A shallow, smooth white ceramic bowl viewed from a slightly overhead oblique angle holds a dense cluster of glossy bright-red cherry-sized fruits with occasional green stems, sitting on a pale cream surface with soft shadows and an indistinct neutral background. +train_24639.png A shallow, glossy deep-purple ceramic bowl photographed from a slight top-down angle, showing a smooth, reflective interior with a small orange-yellow double-petal motif in the center and resting on a dark navy cloth background with soft folds and a bright top-right highlight. +train_24793.png A low, shallow ceramic bowl photographed from a slightly elevated, off-center angle shows a dusty rose–pink exterior with a matte, subtly speckled texture and a darker glossy maroon-brown interior, a gently rounded rim and small base, placed on a neutral dark-gray surface with soft shadowing in the background. +train_24920.png A slightly angled top-down view of a smooth, glossy light-blue ceramic bowl with a white interior containing a single bright orange spherical item and a small green leaf, resting on a pale yellow surface against a soft blue background with a faint cast shadow beneath the bowl. +train_24971.png Top-down view of a small glossy ceramic bowl with a dark teal outer rim that transitions to a lighter turquoise center with faint concentric rings and speckled glaze, photographed against a dark, slightly textured background. +train_25111.png A shallow ceramic bowl seen from a slightly elevated overhead angle, with a pale sky-blue center transitioning to a turquoise ring and a warm terracotta-orange outer rim, a glossy finish catching small highlights, and resting on a mottled teal background with faint speckled texture. +train_25426.png A glossy lime-green shallow plastic bowl seen from a slight top-down angle on a plain white background, with a bright circular rim, a darker, softly shaded interior and a small specular highlight. +train_25501.png A small shallow ceramic bowl viewed from a slightly top-down angle displays a glossy purple-pink glaze with blue undertones, radial darker streaks and speckled flecks converging on a lighter central spot, a tiny darker mark near the rim, and rests on a pale neutral surface casting a soft shadow. +train_25516.png A small shallow turquoise-glazed ceramic bowl with a glossy, slightly speckled surface and a thin lighter rim, shown from a low, slightly off-center top-down angle resting on a coarse sandy-beige surface with a soft out-of-focus pale blue-and-white background (suggesting sky or sea) and casting a faint shadow beneath. +train_25555.png Slightly oblique top-down view of a small round ceramic bowl with a matte off-white interior and a thin brownish rim, a faint dark mark and subtle speckling inside, casting a soft shadow on a coarse dark gray–black background. +train_25639.png A small glossy orange-red ceramic bowl viewed from a slightly elevated front-right angle, resting on a dark surface against a soft-focus bluish background, with bright specular highlights on its rounded rim and a faint hint of green contents inside. +train_25845.png A small shallow turquoise-blue ceramic bowl with a glossy, slightly mottled glaze, shown in a slight overhead three-quarter view against a dark, featureless background, revealing a smooth rounded rim and a soft interior shadow. +train_26039.png A glossy, shallow orange-red ceramic bowl viewed from a slightly elevated oblique top-down angle, its smooth reflective surface showing bright specular highlights and a darker central area, resting on a dark bluish-green background with a soft shadow beneath. +train_26106.png A shallow, round, glossy reddish-brown ceramic bowl seen from a slightly elevated front-right angle, showing a darker rim and subtle radial glaze variations with a faint central darker patch, sitting on a warm wooden surface with a soft shadow to its lower-left. +train_26126.png Glossy off-white ceramic bowl with a slightly irregular thin brown rim and faint interior staining, seen from a shallow top-angled view resting on a warm wooden table against a dark, out-of-focus background. +train_26231.png A small glossy white ceramic bowl with a thin blue rim and scattered tiny red and blue star-like motifs is photographed from a slight top-front angle on a pale tabletop, casting a soft shadow and showing a smooth reflective surface despite the image's low resolution. +train_26252.png A glossy, deep-red glazed ceramic bowl shown from a slightly elevated top-down view against a dark matte background, with a smooth reflective surface, a narrow white inner rim/band and a small pale spot at the center. +train_26298.png A small, shallow beige-tan glazed bowl with a slightly darker brown rim and subtle horizontal ridges, shown in a near top-down, slightly angled view against a dark background with a faint circular base shadow, revealing a glossy, shadowed interior and two tiny side protrusions that look like handles. +train_26300.png A small shallow round ceramic bowl with a speckled warm beige interior and a slightly darker brown rim, photographed from a slightly elevated oblique viewpoint resting on a warm wooden surface, its hand-thrown concentric ridges and matte glaze visible despite the low resolution. +train_26424.png A shallow, glossy white ceramic bowl with a thin dark-blue rim and smooth reflective interior, shown from a slight top-left oblique viewpoint resting on a pale wooden surface with a soft shadow to the lower right—despite low resolution the blue rim and glossy finish remain discernible. +train_26550.png A small, shallow, reddish-brown wooden bowl with a glossy, slightly worn wood-grain surface and a subtly fluted rim, shown in a three-quarter top-down view revealing a darker center and resting on a pale tabletop with a soft shadow to its lower right. +train_26651.png A small shallow rounded bowl in warm amber-brown with a subtle darker center gradient and smooth glossy surface, shown in a three-quarter top-down view resting on a plain white background casting a soft shadow to the lower right, with a simple thin rim and uniform, unadorned finish. +train_26742.png A small, low, round earthenware bowl in warm terracotta-brown with a smooth, slightly glossy glaze and a darker brown interior, viewed from a slightly elevated three-quarter angle that reveals a tiny spout-like notch on the rim and casts a soft shadow to the right on a plain light-beige surface. +train_26744.png Slightly tilted top-down view of a glossy turquoise-green ceramic bowl with a darker rim and lighter central gradient, subtle specular highlights and a faint shadow set against a dark bluish-gray circular background. +train_27275.png A shallow, upward-facing ceramic bowl seen from a slight top-down angle, with a glossy turquoise-green mottled glaze, a thin darker brown rim and subtle inner highlights, resting on a dark matte surface. +train_27578.png A shallow, round bowl viewed from slightly above with a warm honey‑brown, glossy glazed surface marked by darker, wood‑grain‑like mottling and a narrow darker rim, resting on a plain white background with a faint shadow. +train_27581.png A shallow round bowl with a glossy deep navy-blue interior and a paler bluish-gray rim, photographed from a slight overhead oblique angle resting on a light wooden tabletop with a soft shadow and a small red-orange object beside it, the bowl's smooth reflective surface and thin rim remaining discernible despite the low resolution. +train_27903.png A small glossy cobalt-blue ceramic bowl with a slightly lighter rim and smooth reflective glaze, shown in a three-quarter top-down view resting on a warm wooden surface against a dark, blurred background, revealing a shallow rounded profile, interior highlight, and a subtle rim irregularity. +train_27957.png A shallow off-white ceramic bowl with a subtly speckled beige interior and a thin darker rim, shown at a slightly elevated three-quarter/top angle resting on a warm wooden surface with blurred green foliage in the background, its matte finish and faint surface irregularities visible despite the low resolution. +train_27969.png A shallow terracotta‑orange ceramic bowl with a smoother, slightly darker interior and a matte, subtly speckled exterior is shown in a three‑quarter top‑down view resting on a plain white surface with a soft shadow to the lower right, and a slight irregularity along the rim visible despite the low resolution. +train_28084.png A shallow, round ceramic bowl shot from a slightly elevated front-right angle, with a glossy turquoise-green interior exhibiting radial lighter streaks and fine speckled mottling, a thin pale rim and a darker (near-black) exterior, resting on a dark surface against a dim background with small specular highlights on the glaze. +train_28091.png From a slightly elevated frontal angle, a small glossy coral-pink ceramic bowl with subtle darker speckling and a rounded rim sits centered on a light surface casting a soft shadow, against a deep burgundy cloth background with visible folds. +train_28098.png A small glossy orange-brown ceramic bowl with a darker brown rim and two tiny side handles, seen from a slightly elevated front angle that reveals its shallow interior and subtle speckled glaze, resting on a plain white surface with a soft shadow beneath. +train_28166.png A small, shallow bowl with a warm golden-bronze hue and a slightly mottled, reflective metal surface showing subtle patina, photographed from a slight top-down three-quarter angle against a dark, softly lit background with bright highlights along the rim and interior and a soft shadow beneath. +train_28187.png A shallow, glossy pale turquoise ceramic bowl viewed from a slightly top‑down angle revealing a cream‑colored inner basin with a small darker spot near the center and a thin metallic spoon handle perched on the upper rim, resting on a light wood surface with a soft shadow. +train_28225.png A shallow off-white ceramic bowl with a soft matte, slightly speckled glaze, photographed from a three-quarter overhead angle against a dark, textured surface, its wide flared rim and faint concentric glazing lines visible despite the low resolution. +train_28233.png A small matte sage‑green ceramic bowl shown from a slightly elevated, front‑facing angle that reveals its shallow interior and rounded rim with subtle glossy highlights and a soft shadow beneath, sitting on a uniform teal background. +train_28393.png A small glossy mint-green ceramic bowl seen from a slightly elevated top-front angle, its smooth reflective interior and slightly darker rim visible, resting on a neutral white surface with a soft shadow underneath. +train_28748.png Shallow, round terracotta-orange bowl with a glossy, subtly speckled interior and a slightly darker rim, shown at a three-quarter top-down angle resting on a rough, dark charcoal surface with a soft shadow beneath. +train_28944.png A small, round ceramic bowl with a glossy turquoise-blue glaze and a faint darker rim is seen from a slightly elevated top-down angle, resting on a rough gray stone surface with scattered white flecks, the low-resolution image showing a subtle central shadow and speckled glaze texture. +train_29045.png A small, shallow reddish-brown wooden bowl with a matte, slightly weathered grain and an irregular rounded rim is shown in a three-quarter top-down view resting on a light beige surface that casts a soft shadow to its lower-left, with a darker concentric inner ring and faint surface highlights visible despite the low resolution. +train_29099.png A top-down view of a small glossy ceramic bowl with a cream-colored interior and a vivid blue rim, its smooth reflective surface showing a faint dark mark near the upper edge, resting on a warm brown wooden surface with visible grain and a soft shadow to the lower-left. +train_29107.png A shallow, glossy lemon-yellow ceramic bowl with a thin dark-green rim viewed from a slightly elevated top-front angle, sitting on a plain white surface with a soft shadow underneath and a faint inner ring visible despite the low resolution. +train_29141.png A small glossy charcoal-gray ceramic bowl seen from a slightly elevated top-down angle, its smooth shiny interior showing a bright central reflection and a slightly lighter rim, centered on a neutral pale-gray surface with a soft shadow underneath. +train_29191.png A shallow, oval ceramic bowl photographed from a slightly elevated top-down angle, with a glossy, speckled beige interior, a wide cobalt-blue rim framed by concentric gold-and-brown patterned bands, a small darker central medallion, and subtle surface mottling, sitting on a neutral light-gray background. +train_29328.png A shallow, round light-tan glazed ceramic bowl with a slightly darker brown rim, seen from a slight above-front angle and resting on a warm wooden tabletop in soft indoor light, its glossy smooth interior showing a small dark speck near the center. +train_29329.png A small glossy turquoise-blue ceramic bowl viewed from a slightly elevated front angle that reveals a pale off-white interior and a thin darker rim, resting on a dark reflective surface with a soft shadow and a cool, blurred background. +train_29346.png A shallow, round ceramic bowl with a glossy, mottled golden-brown glaze flecked with darker brown speckles and a slightly darker inner rim, shown from a slightly elevated frontal viewpoint resting on a dark surface against a warm, blurred beige-brown background, with a subtle highlight on the rim and a soft shadow beneath. +train_29406.png A small glossy slate-blue ceramic bowl with a slightly darker rim and soft interior shadow, seen from a slightly elevated three-quarter angle resting on a warm brown surface with a faint shadow and a dark, blurred background. +train_29651.png Top-down view of a small shallow ceramic bowl with a glossy, mottled turquoise-to-violet iridescent glaze flecked with reddish-pink speckles and a slightly darker rounded rim, sitting centered on a pale, lightly textured surface with a faint surrounding shadow. +train_29819.png A slightly elevated top-down view shows a glossy teal-green ceramic bowl with a paler cream-colored rim and subtle concentric shading toward a darker center, resting on a mottled green surface with a soft shadow and a small reflective highlight on the inner glaze. +train_29868.png Top-down view of a small, round, hand-thrown ceramic bowl with a glossy mottled brown-to-amber glaze and a lighter, speckled tan interior, resting on a dark textured fabric background and showing a slightly uneven rim with subtle glaze highlights. +train_29954.png A pale blue‑gray glazed ceramic bowl with a glossy, subtly speckled finish and faint radial ridges is shown in a three‑quarter top‑down view resting on a neutral light‑gray textured surface, with soft side lighting casting a gentle shadow and a thin, slightly upturned rim visible. +train_30042.png Slightly elevated top-down view of a round ceramic bowl with a dark brown rim and warm cream‑beige speckled interior showing a faint concentric discoloration and subtle crackled-glaze texture, sitting on a pale tan/wood surface with a small dark spot near the upper rim. +train_30083.png A small pale green glazed ceramic bowl with a darker green rim and subtle vertical ribbing, shown in a slightly top‑down three‑quarter view resting on a light wooden surface with a soft shadow to its right that highlights the glossy finish and narrow foot ring. +train_30101.png A small, shallow round bowl shown from a slightly raised frontal angle, with a warm medium-brown interior and darker brown rim, faint concentric striations/brush-like texture across its surface and a subtle glossy highlight, set on a plain white background. +train_30127.png A small glossy pastel pink-lavender ceramic bowl with a scalloped rim and faint central floral motif is shown in a slightly top-down view resting on a plain white surface with a soft shadow, its smooth reflective glaze and delicate rim shape visible despite the low resolution. +train_30225.png A shallow, glazed ceramic bowl photographed from directly above, with concentric muted bands — a thin yellow-beige outer rim, a warm orange ring and a smooth sky-blue center with faint speckling — resting flat on a pale, softly textured background. +train_30498.png Viewed from a slightly angled top-down perspective, the shallow ceramic bowl shows a glossy mottled orange-red glaze with darker brown-black speckling and subtle concentric streaks toward the center, a slightly lighter rim with a couple of darker blemishes, set against a dark, low-contrast background. +train_30637.png A small, round glazed ceramic bowl viewed from a slightly elevated three-quarter top-down angle, colored warm reddish-brown with a darker brown rim and subtle speckled glossy texture that creates a lighter central highlight, set against a plain white background. +train_30717.png A shallow, round ceramic bowl seen from a slight overhead angle, with a glossy mottled turquoise-green glaze and darker speckled accents around a thin dark rim, sitting on a pale surface with a soft shadow beneath. +train_30791.png A pale sky-blue, glossy glazed ceramic bowl with smooth, gently curved sides and a thin even rim is shown from a slightly elevated three-quarter top-down view resting on a plain light (white-to-pale-blue) surface with a soft shadow, the interior exhibiting subtle radial glaze variation and a bright specular highlight. +train_30969.png Top-down, slightly angled view of a small round ceramic bowl with a glossy, mottled dark brown-to-black glaze and a thin lighter tan rim, showing three pale speckled spots inside and sitting on a neutral light surface with soft shadowing. +train_31047.png Centered on a neutral white background, the image shows a shallow, coupe-style bowl of translucent milky-white glass with a frosted matte surface, a short pedestal foot and gently flared rim casting a soft shadow beneath. +train_31075.png A shallow, matte pale blue-gray ceramic bowl with a thin darker rim and faint radial striations, shown from a slightly elevated front-right angle on a plain white surface that casts a soft lower-right shadow. +train_31410.png A shallow, smooth pale peach-cream ceramic bowl with a thin dark brown rim and glossy interior, shown in a slightly angled top-down view resting on a muted bluish-gray cloth or tabletop with a soft shadow falling to its lower right. +train_31460.png A glossy turquoise-green ceramic bowl with a darker navy rim and subtle radial glaze streaks and speckling, shown from a slightly elevated top-down view and resting on a pale, softly textured surface with warm pinkish tones in the background. +train_31504.png A small glossy cream-colored ceramic bowl with a dark brown glazed rim and a deeper brown spot at its center, shown from a slightly elevated top‑angle and sitting on a plain white surface with a faint shadow beneath. +train_31681.png A shallow, round ceramic bowl with a glossy, speckled turquoise-blue glaze and slightly darker rim, shown at a slight top-down angle resting on a warm wooden surface with a lighter, almost pale center visible. +train_31803.png A glossy turquoise-green glazed ceramic bowl viewed from a slightly elevated three-quarter angle against a neutral beige surface, with a thin darker rim, bright specular highlights on the inner glaze, and a soft shadow beneath. +train_32162.png A small, glossy deep-purple ceramic bowl seen from a slightly overhead, three-quarter angle, its reflective glazed surface showing bright specular highlights and a subtly lighter rim, resting on a warm wood-toned surface with a soft shadow. +train_32244.png A small glossy red-orange ceramic bowl with a darker nearly black interior and a light-reflective rim, shown in a slightly elevated three-quarter top-down view resting on a pale wood-grain tabletop with a soft shadow beneath, its smooth glazed surface and subtle vertical shading still visible despite the low resolution. +train_32515.png Glossy speckled turquoise ceramic bowl with a subtly darker rim and lighter center, captured from a slight top‑down angle resting on a neutral light fabric background with a soft shadow to its lower right, revealing a shallow rounded interior and fine glazing texture. +train_32658.png A small metallic-silver bowl with a smooth, glossy, reflective surface and short pedestal foot, shown from a slightly elevated oblique viewpoint against a plain pale-gray/white background, revealing a rounded rim and a small lip or spout on one side. +train_32763.png A small glossy teal-green ceramic bowl with a pale rim and subtle darker radial interior shading, shown in a shallow top-down three-quarter view resting on a dark navy background with a faint green surface edge and a soft shadow beneath. +train_32907.png A shallow, round wooden bowl in warm honey-brown tones with visible concentric grain and a subtle interior sheen, shown in a three-quarter top view resting on a dark surface with soft shadow and a slightly irregular rim. +train_32932.png A small glossy deep-red ceramic bowl shown at a slight overhead angle revealing a darker, recessed interior and a rounded rim, sitting on a plain white surface with a soft shadow beneath. +train_33315.png A pair of small, glossy cobalt-blue ceramic bowls viewed from a slightly elevated three-quarter angle on a bright white surface, their smooth, reflective interiors and thin rims showing bright specular highlights and casting faint soft shadows. +train_33356.png A shallow, unglazed terracotta bowl with a warm orange-brown, slightly speckled and matte clay texture, shown from a slightly elevated top‑angle on a warm wooden surface with soft directional light casting a short shadow to the lower right and a darker, slightly irregular discoloration at the bowl’s center and rim. +train_33383.png A small glossy turquoise-blue ceramic bowl with a lighter rim and subtle speckled, radial-glaze texture, shown in a shallow top-down three-quarter view resting on a plain white surface with a soft shadow beneath. +train_33399.png A glossy, deep cobalt-blue ceramic bowl shown in a slightly top-down three-quarter view, with a darker interior and lighter rim highlighted by a small central specular reflection, resting on a plain white surface that casts a soft shadow beneath it. +train_33623.png A small glossy white ceramic bowl with a narrow cobalt-blue scalloped decorative band around the inner rim, shown from a shallow overhead angle and resting on a pale wooden surface with a blurred printed paper and a green object in the background. +train_33628.png A shallow, glossy ceramic bowl in warm golden-yellow with an orange-tinged rim and faint speckled/mottled surface, shown from a slightly off-center top-down view resting on a textured deep-red background, with a darker circular band near the inner edge visible despite the low resolution. +train_33663.png A small round ceramic bowl, shown from a slightly elevated top-down angle, with a dark brown, mottled speckled glaze featuring lighter beige flecks and a glossy finish, a slightly irregular rim and small foot visible, sitting on a plain matte black background. +train_33723.png An off-white, speckled ceramic bowl with a narrow dark-brown rim and glossy glaze, shown from a slightly elevated three-quarter top view resting on a dark wooden table beside a blue cloth napkin with a blurred tiled kitchen background, its interior holding a pale yellow broth with a small green garnish visible despite the low resolution. +train_33749.png A shallow, glossy white ceramic bowl with a thin blue rim and faint blue interior shading, photographed from a slightly elevated front-right angle as it sits on a dark blue textured fabric background, with smooth reflective glaze and a small foot visible beneath. +train_33805.png A shallow round bowl shown in a slightly oblique top-down view with a glossy pale cream-speckled interior and a matte dark charcoal exterior rim, a bright specular highlight on the inner edge, and resting against a dark, cluttered background with a patch of red fabric to the left. +train_34064.png A small glossy ceramic bowl with a white-to-teal interior and darker speckled blue‑green exterior, shown in a slightly top‑down three‑quarter view resting on a warm wooden tabletop, featuring a thin dark rim and light reflections on its glazed surface. +train_34081.png A shallow, round ceramic bowl photographed from a slightly elevated, off-center overhead angle, its glossy white glaze accented by a hand-painted indigo-blue rim and scattered small blue speckles across the interior, resting on a pale, warm-toned surface with soft shadowing. +train_34132.png Glossy amber-brown ceramic bowl with a cream scalloped rim and irregular darker speckling across the interior, shown in a shallow three-quarter top-down view resting on a plain white surface with a soft shadow. +train_34308.png A shallow, wide terracotta-colored ceramic bowl with a glossy, slightly mottled glaze showing subtle concentric brush strokes and a darker inner ring, viewed from a slightly top-down angle and resting on a warm dark wood surface under soft lighting that produces small rim highlights. +train_34374.png A small glossy turquoise-blue ceramic bowl photographed from a slight overhead three-quarter angle on a pale neutral surface, showing a smooth rounded rim, a bright central specular highlight and a soft shadow cast to one side. +train_34524.png A small glossy turquoise ceramic bowl with a slightly darker blue rim and faint speckling, pictured from a shallow top-down angle resting on a light tan wooden surface with a soft shadow beneath. +train_34601.png A small glossy ceramic bowl with a bright orange exterior and a pale blue interior bearing darker blue painted motifs, shown at a slightly top-down three-quarter angle resting on a dark wooden surface with a soft, blurred background. +train_34647.png A small, glossy reddish‑orange ceramic bowl with a slightly darker inner gradient and thin darker rim, shown in a slight top‑down angled view on a plain pale background with a soft shadow beneath, revealing its smooth glazed surface and modest foot ring. +train_34792.png Slightly top-down view of a small glossy ceramic bowl with a warm orange interior and a pale cream rim, smooth reflective surface and rounded walls, set on a plain white surface casting a soft shadow beneath. +train_35081.png A glossy turquoise ceramic bowl seen from a slightly elevated top-down oblique angle, with a thick rounded rim and darker central interior shadow, shiny specular highlights on the inner surface, and resting on a warm peach-pink background. +train_35241.png A small glossy mustard-yellow ceramic bowl photographed in a three-quarter top-down view, its smooth reflective surface and slightly darker interior and thin darker rim visible despite low resolution, sitting on a dim wooden table with warm, soft lighting and a faint shadow beneath. +train_35346.png A shallow, round bowl with a glossy copper-brown glaze that darkens toward the center and shows bright specular highlights on its rim, seen from a slightly elevated top-down angle and resting on a dark wooden surface with a soft shadow beneath. +train_35434.png Top-down view of a shallow round bowl glazed in warm beige-tan with a slightly glossy, speckled texture and darker brown concentric rings radiating from a darker center, featuring a subtly beaded scalloped rim and sitting on a dark matte background under soft, diffuse lighting. +train_35677.png A small glossy white ceramic shallow bowl shown in a slight three-quarter top view, its thin rim catching highlights and casting a soft shadow onto a smooth pale bluish-gray surface, with a faint darker mark near the inner rim visible despite the low resolution. +train_35787.png A shallow round bowl seen from a slightly elevated oblique angle, with a glossy cream-to-light-tan interior speckled with darker brown flecks and a pronounced darker brown rim, resting on a warm-toned, slightly textured wooden surface with soft, out-of-focus warm background tones. +train_36019.png A small shallow cream-beige glazed ceramic bowl with a smooth, slightly glossy surface and thin rounded rim, shown in a slightly top-down three-quarter view resting on a warm wooden tabletop with soft shadowing. +train_36023.png A glossy burnt-orange ceramic bowl viewed from a slightly elevated oblique angle, its interior showing a darker-brown crosshatch/grid pattern and a small specular highlight on the rim, resting on a dark matte background with a soft shadow. +train_36051.png A small shallow off-white ceramic bowl with a slightly darker gray inner basin and a thin darker rim, shown in an overhead, slightly angled view resting on a textured light-gray surface that casts a soft shadow, its smooth glossy finish visible despite the low resolution. +train_36313.png A shallow, off-white glazed ceramic bowl with a smooth, slightly glossy surface and faint brown speckling, shown from a slightly elevated front-top angle revealing a darker interior shadow and rounded rim, resting on a dark matte surface with a soft cast shadow. +train_36528.png A small glossy reddish‑orange ceramic bowl with a slightly darker, smooth interior and a thin rim, shown from a slightly elevated top-front angle resting on a warm brown surface with a bright specular highlight and a faint shadow beneath. +train_36677.png A small shallow bowl with a warm burnt‑orange glazed ceramic surface showing subtle darker concentric shading and a smooth glossy texture with a bright highlight, viewed from a slightly off‑center overhead angle and resting on a dark, wood‑toned background with a soft shadow beneath. +train_36762.png A small off-white glazed ceramic bowl with a glossy surface and faint grayish interior shadow, shown from a shallow top–three‑quarter view resting on a neutral light‑gray background, with a subtle darker rim and soft cast shadow beneath defining its shallow, rounded form. +train_36784.png A small, polished stainless-steel bowl seen from a slightly elevated frontal angle, its smooth silver surface showing strong specular highlights and concentric shading inside, a thin rim and subtle base visible, and it rests on a glossy black background that yields a faint mirrored reflection. +train_36896.png A shallow, round ceramic bowl with a glossy turquoise-green interior and a thin rust-red rim, shown in a slightly top-down, off-center view resting on a neutral light surface with a soft shadow, the glaze appearing mottled with faint darker speckles and a small bright reflection near the center. +train_36955.png A small glossy off-white ceramic bowl with a thin rim and smooth interior is shown from a slightly elevated, oblique top-down view against a neutral pale background, casting a soft lower-right shadow and displaying subtle specular highlights and a faint warm-beige tint. +train_36971.png A small glossy orange-red ceramic bowl seen from a slightly elevated, three-quarter top-down viewpoint holds a yellowish food or liquid topped with a few small green herb leaves, sitting on a dark slate-like surface with a soft beige background and a subtle highlight on the bowl’s rim indicating a reflective glaze. +train_36990.png A slightly top-down view of a shallow glossy bowl with a pale off-white to light bluish interior and a contrasting dark navy rim, showing bright specular highlights and soft shadows while resting on a muted mauve-gray surface beside a smaller matching dish. +train_37077.png A small, glossy turquoise-blue ceramic bowl seen from a slight top-down three-quarter angle against a pale aqua background, its smooth reflective surface and white specular highlight visible around the curved rim and containing a bright orange-yellow circular mass in the center. +train_37078.png Centered top-down view of a small round ceramic bowl with a warm mottled orange-brown glossy glaze, a darker brown rim and subtle speckled texture, resting on a pale-white surface with a soft shadow beneath. +train_37211.png A small, glossy bright-red shallow bowl photographed from a slightly elevated angle revealing its darker interior and pronounced white specular highlights, resting on a soft green background with a subtle cast shadow beneath. +train_37277.png A small round ceramic bowl viewed from a slightly top-down, three-quarter angle shows a smooth glossy cream interior with faint brown speckling and a contrasting dark brown rim, sitting on a plain white surface that casts a soft shadow. +train_37486.png A small, shallow cream-colored ceramic bowl with a smooth glossy interior and a light brown speckled, slightly matte exterior accented by a thin darker rim, shown from a top-front three-quarter view resting on a neutral gray-beige surface. +train_37551.png A low-resolution image of a shallow sky-blue glazed ceramic bowl with a glossy, slightly speckled surface shown in a three-quarter top-down view resting on a plain pale surface, its darker rim and faint concentric glaze lines visible despite the blur. +train_37570.png Top-down view of a small glossy ceramic bowl with a speckled turquoise-to-deep-blue crackled glaze and a lighter cream-colored central patch, a thin dark brown rim, and reflective highlights and radial speckling visible against a plain black background. +train_37647.png A shallow round ceramic bowl with a glossy dark-brown exterior and a white inner rim, photographed from a slightly elevated top-down angle revealing a warm golden-orange interior with a darker central patch, sitting on a warm wooden tabletop with soft shadows. +train_37726.png A glossy white ceramic bowl seen from a slightly overhead, off-center angle holds a smooth, bright red-orange soup with a darker central swirl and a small green herb garnish, resting on a dark wood or slate surface with soft side lighting that creates rim highlights. +train_37823.png A small glazed off-white ceramic bowl seen from a slight top-front angle, its glossy surface reflecting light and showing a narrow blue decorative band around the rim and a short pedestal base, resting on a light neutral background with a soft shadow. +train_37959.png A shallow cream-colored glazed ceramic bowl with a glossy, slightly speckled warm-brown interior and darker rim, shown in a slightly top-down angled view resting on a pale surface with a soft shadow and a small darker spot of residue inside. +train_38032.png A shallow, round ceramic bowl with a glossy turquoise-blue interior and an irregular dark brown-to-black rim, seen from a slightly elevated oblique top-down view against a plain light background with a soft shadow, showing mottled speckling and subtle darker pooling at the center. +train_38253.png A shallow, round terracotta‑orange ceramic bowl with a slightly darker rim and glossy, speckled surface, shown from a slight top‑down angle resting on a bright turquoise background. +train_38293.png A shallow, round ceramic bowl seen from a slightly elevated top-down angle, with a creamy off-white interior, a speckled warm-brown glazed rim and exterior, a subtle glossy sheen with faint concentric glazing lines and a small darker central spot, resting on a warm-toned textured wooden surface. +train_38844.png A small, unadorned warm-tan glazed ceramic bowl with a smooth, slightly glossy surface and a subtly darker interior center, shown from a slightly elevated front angle that reveals its gently flared rim and narrow foot, sitting against a neutral light-gray/beige background with a soft shadow to the right. +train_39016.png Slightly angled top-down view of a small, round terracotta‑orange bowl with a rough, speckled matte exterior and a darker, subtly glossy interior, its uneven rim and faint surface imperfections visible against a deep black background. +train_39040.png A glossy cobalt-blue ceramic bowl with a darker concentric swirl and fine white speckling, shown in a slightly off-center top-down view resting on a neutral gray textured surface with a faint shadow at the rim. +train_39086.png A small glossy turquoise-blue ceramic bowl with a slightly darker rim and smooth interior, shown from a shallow top-down angle resting on a soft light-gray textured fabric background, with a faint interior reflection and a soft cast shadow. +train_39239.png A small, glossy turquoise-blue ceramic bowl with a slightly darker, speckled interior and a thin off-white rim is shown in a three-quarter top-down view resting on a softly blurred dark teal background, its curved profile and subtle glaze variations visible despite the low resolution. +train_39263.png A small glossy white ceramic bowl with a deep cobalt-blue glazed interior exhibiting subtle radial brush strokes and a darker inner rim, shown from a slightly overhead oblique view resting on a warm brown wooden surface with a soft shadow and faint speckling on the outer rim. +train_39342.png Top-down, slightly angled view of a small glossy ceramic bowl with a deep cobalt-blue interior, a thin white rim, and a central stylized yellow sun surrounded by several yellow dot/petal motifs, the piece showing a reflective sheen and set against a dark, out-of-focus background. +train_39434.png A small off-white ceramic bowl with a slightly glossy, uneven cream surface and a faint brown-stained rim is shown in a top-down, slightly angled view resting on a dark wood-grain tabletop, revealing a subtle interior stain and a minor rim imperfection. +train_39503.png A shallow, wide-mouthed ceramic bowl seen from a slightly elevated top-down angle, with a glossy dark brown-to-amber mottled glaze and lighter speckling and reflective highlights, an irregular rim and faint concentric interior glaze rings, resting on a warm wooden surface. +train_39752.png A small glossy white ceramic bowl with a thin cobalt-blue rim and a faint central blue motif, shown in a slightly angled top-down view revealing its shallow rounded interior, resting on a warm light-wood surface with a blurred hand at the edge. +train_39793.png A small, bright orange, glazed ceramic bowl with a smooth, glossy surface and slightly darker inner center, seen from a slightly elevated three-quarter top-down view, sitting on a vivid blue textured background with a clear specular highlight along its rim and a shallow, wide profile. +train_39855.png A small glossy dark-brown ceramic bowl with a pale beige interior and rim, shown from a slightly elevated angled top-down view resting on a light saucer atop a dark textured surface, with subtle specular highlights and a soft shadow to one side. +train_39914.png A shallow, glazed ceramic bowl photographed from above, its turquoise-blue interior adorned with three orange-red stylized flower motifs, concentric white dotted rings and small green accents around a central medallion, with a scalloped rim and faint shadow on a plain light background visible despite the low resolution. +train_39934.png Oblique overhead view of a small glossy off-white ceramic bowl with a smooth, slightly yellowed rim and a dark brown, unevenly stained interior, casting a soft shadow on a warm-toned wooden surface. +train_39956.png A shallow, glossy white ceramic bowl with a slightly raised rim and a tiny dark speck near its center is shown from a slightly elevated top-down angle, resting on a warm beige textured surface that casts a faint soft shadow to the lower-left. +train_39975.png A small off-white glazed ceramic bowl with a slightly darker brown rim and faint radial ridges, shown in a shallow top‑angled view resting on a pale surface with a soft shadow and a few tiny dark speckles inside. +train_40049.png A top-down view of a small, shallow, matte-gray bowl with a slightly darker rim and faint interior speckling, centered on a uniformly dark, subtly grainy background with a soft shadow indicating its low profile. +train_40123.png A shallow, off-white ceramic bowl with a thin blue-glazed rim and smooth, mostly matte surface, shown from a slight overhead angle resting on a light tan background and bearing a small dark speck near its center. +train_40203.png A small glossy orange-red ceramic bowl seen from a shallow top-down angle resting on a pale bluish surface, with a smooth reflective glaze displaying a lighter central highlight and a slightly darker rim visible despite the low resolution. +train_40268.png I can't see the photo—please upload the bowl image so I can provide a single-sentence visual description. +train_40286.png A smooth, warm amber-orange bowl with a slightly darker interior and faint rim highlight is shown from a slight top-down centered viewpoint on a warm red-orange gradient background with a subtle circular shadow beneath, revealing a simple rounded profile despite the low resolution. +train_40354.png A glossy bright orange-red glazed ceramic bowl with a smooth white interior seen from a near top-down centered viewpoint on a plain white background, showing a circular rim, shallow depth and reflective highlights. +train_40448.png A shallow ceramic bowl photographed from a slightly overhead angle, with a glossy off-white interior and a pale blue band along a gently scalloped rim, faint pink floral specks inside, resting on a light tabletop with a metal spoon touching its right edge. +train_40544.png A small, round honey-brown wooden bowl with pronounced vertical darker wood-grain streaks and a smooth, slightly glossy surface, shown in a shallow three-quarter top view revealing its interior rim and a central light reflection while resting on a pale surface against a soft, light background. +train_40585.png A shallow, glossy, translucent light-turquoise plastic bowl with a rounded thicker rim and a darker interior shadow indicating depth, photographed from a slight overhead-front angle and sitting on a clean white surface with soft diffuse lighting creating small specular highlights. +train_40624.png A shallow, glossy navy-blue ceramic bowl viewed slightly from above, its smooth reflective surface showing concentric teal-to-blue gradients and a bright central specular highlight, set on a dark, slightly speckled background. +train_40651.png A shallow, round wooden bowl seen from a slight top-front angle, with warm reddish-brown polished wood showing visible concentric grain and a glossy highlight, a slightly darker rim and a small dark knot/imperfection on one side, set on a plain white surface casting a soft shadow. +train_40662.png A shallow, handmade-looking beige-tan ceramic bowl with a darker brown-speckled glaze and slightly darker rim, seen from a top-front oblique view on a light textured surface, featuring two small opposing loop handles and visible concentric throwing rings and irregular speckling. +train_40706.png A shallow, round ceramic bowl seen from a slight top-front angle, glazed in a glossy mottled teal-blue with darker speckling and a thin darker rim showing concentric glaze rings, resting on a warm, textured wooden surface under soft diffuse light. +train_40788.png A small, glossy ceramic bowl with a pale mint-green, slightly mottled interior and creamy off-white exterior, seen in a three-quarter top-down view resting on a worn wooden surface against a dark, out-of-focus background, its thin rim, reflective glaze shine and a faint darker spot in the bowl's center visible despite the low resolution. +train_40830.png A slightly tilted top-down view shows a small glossy white ceramic bowl with a thin brown rim holding a mound of golden-brown, flaky cereal pieces, set against a softly blurred pale background. +train_40883.png A small glossy turquoise-green ceramic bowl photographed from a slightly elevated top-down angle against a dark, neutral background, its smooth reflective interior showing a thin lighter rim, a small bright specular spot near the center, and a soft circular shadow beneath. +train_40975.png A small matte terracotta-orange clay bowl with a slightly rough, speckled surface and a lighter worn rim, shown from a slightly elevated frontal angle resting on a warm brown wooden surface with a soft shadow beneath, its shallow interior and irregular rim ridges visible despite the low resolution. +train_40997.png A shallow, round bowl with a matte warm beige interior and a slightly darker brown rim, photographed from a slightly elevated top‑down angle against a muted bluish‑gray background, showing subtle radial shading toward a central darker shadow. +train_41041.png A small round bowl viewed from a slightly elevated angle shows a glossy, mottled burnt-orange interior with a darker brown exterior and thin dark rim, a bright specular highlight on the lip, and it sits on a plain light beige surface casting a soft shadow. +train_41067.png An off-white glossy ceramic bowl with a thin rounded rim and shallow interior, shown from a slightly elevated oblique (three-quarter top-down) viewpoint resting on a warm pinkish-red surface or fabric with a soft shadow cast to one side. +train_41296.png A small round terracotta-colored ceramic bowl with a slightly glossier, darker interior is shown from a shallow top angle with a light-colored spoon handle resting across its thick rounded rim, sitting on a warm wooden surface against a softly blurred brown background and revealing subtle surface irregularities despite the low resolution. +train_41318.png A shallow, glossy cream-colored ceramic bowl with a thin dark brown rim is shown from a slightly top-down, angled viewpoint resting on a warm wooden surface and holds a smooth yellow-orange liquid with a pale swirl and soft specular highlights. +train_41325.png A small glossy turquoise-blue ceramic bowl with a darker blue-rimmed, slightly mottled interior showing faint radial brushstrokes, presented in a three-quarter top-front view resting on a plain white surface with a soft shadow. +train_41389.png A small glossy off-white ceramic bowl with a dark brown rim and matching base, featuring two tiny dark side accents, photographed from a slightly elevated front-right angle on a plain white background with a soft shadow beneath. +train_41430.png A shallow, pale buttery-yellow ceramic bowl with a smooth glossy surface and a slightly darker rim, viewed from a slightly top-down centered angle, sitting on a plain white background casting a soft shadow to its lower right and showing a small dark glaze speck near the rim and a tiny bright-yellow spot just outside the bowl. +train_41451.png A glossy off-white porcelain footed bowl with a thin rim and shallow concave interior, seen from a slight top-side (three-quarter) angle that reveals a short stem and round base, sitting on a dark matte surface with soft studio lighting and subtle reflections. +train_41459.png A three-quarter top view of a small glossy amber-brown ceramic bowl with a smooth, slightly mottled glaze and darker rim and interior shadows, shown against a plain white background and exhibiting subtle radial brush marks and a small irregularity on the rim. +train_41461.png A small, shallow, round bowl with a glossy orange exterior and pale interior is shown in a slight top-down three-quarter view resting on a blue textured surface amid blurred background objects, its smooth glazed surface catching highlights and casting a soft shadow beneath it. +train_41543.png A small, shallow, round bowl with a warm orange-brown, slightly glossy ceramic surface and a thin darker rim, shown from a slightly elevated top-down view resting on a dark wooden surface with warm overhead lighting producing a soft central highlight and subtle shadow around its base. +train_41596.png A slightly angled top-down view of a silver, brushed stainless-steel bowl with concentric circular machining marks and a smooth reflective interior, a small dent on the rim near the top edge and pronounced specular highlights, resting against a dark, shadowed background. +train_41600.png A small ceramic bowl with a glossy moss‑green glaze and a darker, nearly black interior, seen from a slightly elevated oblique top‑down angle resting on a pale neutral surface with a soft shadow to one side, showing a rounded thick rim and subtle concentric glaze pooling at the center. +train_41795.png Top-down view of a round ceramic bowl with a smooth, pale beige creamy interior and a darker speckled terracotta-brown rim—its satin-glazed surface shows faint concentric rings and tiny bubbles—resting on a dark, textured wooden/charcoal surface with a soft shadow at the lower right. +train_41961.png A small glossy dark-brown bowl with a slightly lighter brown interior, seen from a shallow overhead three-quarter angle against a deep black background, holds a metal spoon leaning on the inner rim and shows distinct specular highlights on its rim and inner surface. +train_42166.png A small round ceramic bowl photographed from a slightly top-down angle, glazed in a glossy speckled turquoise-blue with a darker bluish-green center and a thin brown rim, showing light reflections and surface texture, and sitting on a warm wooden tabletop that provides a soft shadow. +train_42371.png A small shallow terracotta-orange ceramic bowl with a matte, subtly mottled surface and a darker inner ring and central spot, seen from a slight top-down angle on a plain white background with a soft shadow and a gently rounded, slightly darker rim. +train_42380.png A small shallow terracotta-orange ceramic bowl with a slightly glossy smooth surface and a darker brown interior, shown in a three-quarter top-down view resting on a plain light background with a soft shadow beneath. +train_42493.png Glossy cobalt-blue ceramic bowl seen from a slight top-down (three-quarter) angle revealing a shallow, slightly paler interior and thin rim, sitting on a flat, slightly darker blue background with a soft lower-right shadow and a central specular highlight on its smooth surface. +train_42496.png A small glossy mint-green ceramic bowl with subtle darker speckling and a slightly deeper rim, shown at a shallow top–three-quarter angle resting on a pale neutral surface with a soft shadow, its smooth glazed texture and rounded lip discernible despite the low resolution. +train_42544.png A shallow, glossy warm-orange ceramic bowl with a slightly darker thin rim and subtle mottled glaze, shown in a slightly elevated three-quarter top-down view resting on a dark brown surface with a small bright spot nearby, a central interior highlight and a soft shadow beneath indicating depth. +train_42675.png Top-down view of a small round ceramic bowl with a glossy, mottled turquoise-to-deep-blue glaze featuring pronounced radial brush-stroke patterns and lighter speckled flecks toward the center and along a pale inner rim, set on a dark, slightly textured background. +train_42810.png A small, glossy orange-red ceramic bowl seen from a slightly elevated angle that reveals its shallow rounded interior and narrow base, sitting on a plain white surface with a strong specular highlight on the rim and a soft shadow beneath. +train_42813.png A small translucent pale turquoise glass bowl with a smooth glossy surface and thin rounded rim, shown from a slightly elevated front-top angle against a dark, softly textured background with a faint shadow beneath and bright specular highlights inside. +train_42860.png A shallow off-white ceramic bowl with a subtle glossy speckled texture and a thin darker rim is shown from a slightly elevated front-left angle, resting on a textured wooden surface against a softly blurred dark background, with faint concentric throwing lines visible inside despite the low resolution. +train_42866.png A small glossy turquoise-blue ceramic bowl with a smooth, reflective surface and slightly darker interior, shown from a shallow top-front viewpoint resting on a dark, slightly reflective surface against a dim gradient background, with bright specular highlights on the rim and a soft shadow beneath. +train_43248.png A small glossy cobalt-blue ceramic bowl, seen from a slightly elevated angle, reveals a warm orange interior and bright glaze highlights on its smooth surface while resting on a dark, possibly wooden surface with soft surrounding shadow. +train_43256.png Glossy bubblegum-pink ceramic bowl with a white inner rim and small footed base, shown in a slightly top-down three-quarter view revealing the interior, centered against a soft teal circular backdrop with a faint shadow and visible highlights. +train_43295.png A small shallow ceramic bowl with a glossy off-white interior and a mottled light-brown exterior is shown from a slightly elevated oblique top-down angle, resting on a warm-toned, cluttered surface with indistinct, shadowed objects in the low-resolution background. +train_43313.png A slightly off-white, glossy ceramic bowl with a thin rim and shallow inner cavity is shown in a near top-down, slightly angled view resting on a cool bluish-gray surface, casting a soft shadow to its lower-right and showing faint interior glaze variations. +train_43321.png In a slightly elevated frontal view against a neutral light-gray background, the shallow ceramic bowl shows a warm cream, gently glossy interior and a darker brown, satin‑glazed exterior with a defined rounded rim and a small shadowed foot, giving it a smooth, handcrafted look despite the low resolution. +train_43340.png A small glossy ceramic bowl, seen from a slightly elevated three-quarter top view, has a deep navy-blue exterior and a lighter mottled blue-gray interior with a small brown-speckled patch at the center and a thin dark-brown rim, resting on a warm wooden surface with a soft shadow and a bright specular highlight inside. +train_43377.png A small, glazed terracotta-orange ceramic bowl with a darker glossy interior, shown in a three-quarter top-down view resting on a light wooden surface against a blurred blue backdrop, its smooth rounded rim and subtle surface reflections visible despite the low resolution. +train_43492.png Glossy white shallow ceramic bowl with a thin dark rim and subtle oval foreshortening, viewed from a slightly elevated three‑quarter angle on a light neutral surface casting a soft shadow, with a small dark speck visible in the interior. +train_43589.png A small, shallow off-white ceramic bowl with a smooth matte surface seen from a slightly elevated top-down angle against a neutral pale background, showing a thin rounded rim and a faint interior shadow indicating depth. +train_43599.png A small off-white, slightly glossy ceramic bowl with a thin brown rim and smooth curved interior is shown in a three-quarter top-down view, resting on a wrinkled pale pink fabric background with a soft shadow to the lower right. +train_43754.png A small, shallow turquoise-green glazed ceramic bowl with a slightly darker, speckled rim and a subtle concentric darker center, photographed nearly top-down as it rests on a beige surface patterned with tiny brown floral motifs. +train_44056.png A shallow, glossy deep-red ceramic bowl with darker marbled flecks and a faintly darker inner rim, shown at a slight top-front oblique angle resting on a light-colored surface with a soft shadow, the rounded lip and speckled texture visible despite the low resolution. +train_44135.png A small, shallow golden-orange bowl with a smooth, matte finish and a pronounced dark rim, shown from a slightly elevated top-down angle revealing a darker central interior, resting on a plain light-gray/white background with a faint shadow. +train_44165.png A small, glossy deep-red ceramic bowl viewed from a slightly elevated oblique top angle, its shallow interior showing a bright white reflection or remnant and darker rim-glaze, resting on a warm beige/wood-toned surface with a soft shadow to one side. +train_44171.png A small, shallow off-white ceramic bowl with a glossy surface and a faint warm-beige inner rim, shown from a slightly elevated top-left angle and resting on a dark, textured tabletop that casts a soft shadow to the lower right. +train_44562.png A glossy white porcelain bowl with a scalloped, fluted rim and subtle concentric ridges, seen from a slightly elevated oblique top-down angle and resting on a dark matte surface with soft shadows and an out-of-focus dark background. +train_44605.png A small, shallow, glossy terracotta-orange ceramic bowl with a darker, almost black glazed interior and a pronounced rounded rim, seen from a slight top-front three-quarter view resting on a warm-toned wooden surface and casting a soft shadow. +train_44711.png A small, shallow, glossy red-orange bowl with a bright yellow interior, seen from a slight top-down angle resting on a light beige surface with a soft shadow, showing a smooth reflective texture and a rounded, slightly thick rim. +train_44734.png A small glossy turquoise-blue ceramic bowl with a smooth reflective surface and a bright specular highlight, viewed from a slightly elevated oblique/top-down angle showing a rounded thin rim and shallow interior, set against a dark, out-of-focus background with a soft shadow beneath. +train_44752.png Two shallow, handcrafted-looking ceramic bowls with a mottled dark-brown to tan speckled glaze and slightly darker irregular rims, shown from a slightly elevated top-down angle against a plain white background with visible matte, textured interiors. +train_44786.png A small glazed ceramic bowl seen from a slightly top-down angle against a dark, out-of-focus background, with a glossy off-white interior, a muted teal-blue rim and exterior, and subtle darker mottling and reflections on the smooth surface visible despite the low resolution. +train_44873.png Glossy glazed ceramic bowl seen from a slightly top-down angle, revealing a warm burnt‑orange interior with subtle darker mottling and a thin pale rim contrasted against a matte dark brown/black exterior, resting on a plain light surface with a soft shadow beneath. +train_44875.png A small, glossy ceramic bowl seen from a slightly top‑angled view with a warm pink exterior and a cool blue–purple glazed interior showing specular highlights, a thin darker rim and smooth shiny texture, resting on a plain white surface with a soft shadow. +train_45053.png Three small glossy balloons—red, blue, and silvery-gray—are clustered and tied by thin black strings, shown front-on against a plain white background with bright specular highlights and a soft shadow beneath that emphasize their smooth, reflective latex texture. +train_45122.png A small, deep magenta glossy ceramic bowl viewed from a slight top-front angle against a dark, out-of-focus background, showing a smooth reflective surface with bright specular highlights, a pronounced circular rim and a soft shadow beneath. +train_45195.png A small, round turquoise-teal glazed ceramic bowl with a glossy, slightly crackled and speckled surface showing a darker concentric center and lighter rim, viewed from a slightly elevated three-quarter top angle and sitting on a warm brown wooden table with a soft shadow beneath. +train_45216.png A shallow, slightly asymmetrical ceramic bowl viewed from a top‑three‑quarter angle, glazed in a pale aqua‑blue with a glossy, crackled/speckled texture and a darker, worn rim, resting on a warm, dark wooden surface. +train_45526.png A shallow, round celadon-green glazed ceramic bowl with a glossy, slightly mottled and speckled surface and a darker, worn brownish rim, shown from a low overhead front angle resting on a weathered wooden surface with blurred green foliage in the background and bright highlights reflecting off the inner glaze. +train_45738.png A small round ceramic bowl photographed from a slightly elevated angle, its interior coated in a glossy, mottled turquoise-blue glaze with darker speckled flecks and faint radial brush marks, an irregular brown-gold rim and a subtle darker central pool, sitting on a plain white surface that casts a soft shadow to the lower right. +train_45740.png A small shallow round tan-brown bowl with a slightly darker rim and a matte, subtly speckled texture is shown in an oblique top-down view resting on a plain white surface, casting a soft shadow to its right. +train_45942.png Top-down view of a small scalloped-edge porcelain bowl with a glossy cobalt-blue glaze decorated with white floral and leaf motifs and subtle highlights, set against a plain dark background. +train_45944.png A small footed metal bowl with twin loop handles, exhibiting a warm golden-brown metallic patina with darker tarnish spots and reflective highlights, shown in a slight elevated three-quarter front view on a plain white background, its scalloped rim and simple pedestal base discernible despite the low resolution. +train_45992.png A small off-white ceramic bowl with a subtle speckled, glossy texture and a thin cobalt-blue rim is shown in a shallow top-down angled view, resting on a warm-toned wooden surface with a blurred yellow cloth or napkin at the upper-right and a dark interior shadow indicating its depth. +train_46140.png Top-down, slightly off-center view of a shallow round ceramic bowl in a muted dusty-rose/mauve glaze with a subtle glossy sheen, irregular darker speckling and a faint concentric darker ring at the center, set against a smooth light-gray background. +train_46201.png A shallow, round ceramic bowl seen from a slightly elevated top‑angle, with a glossy, mottled amber-to-burnt‑orange glaze and subtle darker speckling and radial brush marks, a pronounced darker brown rim and bright central highlight, resting on a dark, neutral background that emphasizes its warm tones. +train_46245.png A small round ceramic bowl with a warm cream-to-beige glossy interior and a darker brown rim, viewed from a slightly elevated top-down angle on a light wooden surface with a soft shadow to its lower right, showing a subtle speckled glaze and a tiny dark spot near the rim. +train_46313.png A shallow, round wooden bowl photographed from a slightly elevated top-down angle against a dark background, its warm honey-brown surface showing concentric wood-grain rings, a darker rim and central spot, a low-gloss sheen and a soft shadow toward the lower-right. +train_46526.png A small off-white ceramic pedestal bowl with a scalloped rim and vertical fluted ribbing, photographed from a slightly elevated three-quarter/top-down view on a dark textured surface with soft directional lighting that highlights its glossy, subtly speckled glaze and casts a shadow beneath. +train_46530.png A small, warm honey-brown wooden bowl with a smooth, slightly glossy finish showing visible concentric grain and a darker knot near the rim, photographed from a slightly elevated frontal angle resting on a neutral pale background with a soft shadow. +train_46800.png A glossy cobalt-blue ceramic bowl seen from a slightly elevated frontal angle, its deep glazed surface marked with irregular white floral-like motifs near the inner rim and bright highlights, resting on a warm wooden surface against a dim, indistinct background. +train_46802.png Slightly angled top-down view of a small, shallow ceramic bowl with a speckled beige‑cream matte glaze and a thin darker brown rim, resting on a textured mauve‑pink fabric surface with a soft shadow to its lower right and subtle glaze pooling and tiny dark speckles visible despite the low resolution. +train_46808.png The shallow, round ceramic bowl appears terracotta-orange with a glossy, slightly crackled glaze and a pale cream floral swirl at its center, shown from a near–top-down angle against a dark, slightly grainy background, with a scalloped or ribbed rim and concentric decorative rings visible despite the low resolution. +train_46809.png A glossy, mottled turquoise ceramic bowl with a pale off-white interior is shown in a shallow top-front three-quarter view resting on a coarse beige fabric background and casting a soft shadow. +train_46846.png A shallow, glossy sea‑green bowl with a darker teal rim and subtle concentric color variation, seen from an overhead, slightly angled viewpoint against a pale blue surface with a white strip at the top, showing a small darker smudge or reflection on the interior. +train_46869.png A small glossy off-white ceramic bowl viewed from a slightly elevated oblique top angle, its shallow interior showing soft gray shading and a faint darker spot near the rim, sitting on a textured blue surface with a small folded white cloth nearby and a soft cast shadow beneath. +train_47052.png A shallow, mint‑green glazed ceramic bowl with a speckled, slightly ribbed texture and scalloped rim seen from a slightly elevated frontal view resting on a white surface with a soft shadow beneath. +train_47065.png A slightly top-down view of a small glossy mint-turquoise ceramic bowl with a darker teal circular center and two small red-pink specks inside, resting on a pale surface that casts a soft shadow and with a dark utensil or handle partially visible at the rim. +train_47147.png A shallow, wide, glossy-glazed ceramic bowl seen in a slightly top-down angled view, with a pale sky-blue interior and a thin darker-blue rim contrasting with an off-white exterior, resting on a warm wooden surface that casts a soft shadow to the lower right. +train_47187.png A small glossy teal-blue ceramic bowl with a slightly darker rim and subtle mottled glaze, shown from a slightly elevated three-quarter top-down angle on a bright white surface that casts a soft shadow, the glaze reflecting distinct specular highlights. +train_47240.png A small pale blue glazed ceramic bowl with a glossy finish is shown from a shallow top-down oblique angle resting on a warm wooden surface, casting a soft shadow and displaying a slightly darker rim and a bright reflective highlight on the inner surface. +train_47288.png A small shallow beige-tan bowl with a smooth, slightly speckled glazed surface and rounded rim, shown from a slightly elevated three-quarter overhead angle against a solid dark background, with a soft interior highlight revealing its glossy finish. +train_47293.png A shallow, glossy turquoise ceramic bowl with a darker navy-blue interior and subtle speckled/crackle glaze, shown from a slightly overhead angled view resting on a pale, softly lit surface with bright reflective highlights along the rim. +train_47341.png A small shallow pastel-pink ceramic bowl with a smooth glossy finish and a slightly darker inner ring, shown from a slight top-right oblique angle and casting a soft shadow on a saturated magenta surface with a subtle darker corner. +train_47552.png A small glossy pale-blue ceramic bowl with a narrow darker-brown rim, seen from a slightly elevated top-down angle resting on a warm wood-grain surface, showing a bright central highlight and soft shadow that emphasize its smooth glazed texture. +train_47644.png A shallow, glossy aqua-turquoise ceramic bowl with a slightly lighter rim is shown from a slight overhead oblique angle, sitting on a smooth muted bluish‑gray surface with a soft shadow to one side and a bright circular reflection inside highlighting its glazed finish. +train_47655.png A shallow, pale cream-glazed ceramic bowl with a smooth glossy surface and thin rim is shown in a three-quarter top view resting on a dark bluish-gray background, casting a soft shadow and revealing a small bright specular highlight inside. +train_47712.png A small coral-pink ceramic bowl with a gently scalloped rim and subtle vertical fluting, shown from a slightly elevated front angle revealing a darker interior, sitting on a plain white surface with a soft shadow beneath. +train_47912.png Top-down view of a shallow, round bowl showing concentric rings of warm cinnamon, burnt orange and deep rust with a glossy, slightly rippled glazed texture and a small dark central spot, set against a neutral pale-gray background. +train_47936.png Glossy off-white ceramic bowl photographed from a slightly tilted top-down view against a dark textured surface, revealing a smooth reflective interior with faint concentric glaze lines and a soft shadow along the rim. +train_47995.png A glossy turquoise/aqua ceramic bowl seen from a slightly elevated top-down angle, its smooth reflective surface and thin darker rim visible despite low resolution, holding a tight cluster of bright red round fruits and sitting on a plain light background with soft shadows. +train_48000.png A shallow, round ceramic bowl with a glossy cream exterior and a darker brown-rimmed, subtly speckled interior is shown in a slightly angled top-down view resting on a warm wooden surface, the glaze catching a soft highlight along the upper edge. +train_48217.png A small shallow ceramic bowl viewed from a slightly off-center top-down angle, glazed in pale blue with darker cobalt speckling and a thin darker rim giving a glossy, mottled texture, resting on a warm brown wooden surface with a soft shadow to one side. +train_48223.png A shallow, pale cream ceramic bowl with a darker brown rim and fine gray-brown speckling, photographed from a slightly off-center top-down angle against a black background that casts a soft shadow and reveals faint concentric ring patterns and subtle surface imperfections. +train_48258.png A slightly top-down, angled view of a glossy ceramic bowl with a vibrant lime‑green, mottled glaze and a darker brown‑black rim, its shiny interior showing speckled variations and a small central reflection, set on a dark, soft‑textured background with a warm yellowish light spot to the upper left. +train_48264.png A small shallow ceramic bowl with a glossy warm dark-brown interior and a creamy off-white, subtly speckled exterior, shown from a slightly elevated three-quarter front view on a plain white surface, its rounded rim and uneven handmade glaze visible despite the low resolution. +train_48339.png A top-down view of a shallow, glossy ceramic bowl painted with a bold radial geometric motif—magenta and pale purple petal-shaped segments outlined in cobalt blue around a small orange central disk—resting on a soft neutral background. +train_48756.png A small glossy ceramic bowl with a white interior and a narrow cobalt-blue rim and pale blue exterior, shown from a slightly top‑down angled view resting on a warm beige surface, revealing a faint dark spot at the center and soft shadows that emphasize its smooth glazed texture. +train_48762.png Glossy hand-glazed ceramic bowl viewed from a slightly elevated top-down angle, with a vibrant turquoise-blue interior showing subtle speckled lighter patches and a darker blue rim, a pale off-white exterior, a small central specular highlight, and soft shadows against a dark, slightly textured background. +train_48795.png A small glossy white porcelain bowl with a gently scalloped, flower-like rim seen from a slightly elevated angled top view resting on a plain white surface that casts a soft shadow, revealing a smooth glazed texture and subtle inner curvature. +train_48922.png A shallow turquoise-glazed ceramic bowl viewed from a slightly overhead oblique angle, with a glossy, subtly speckled surface, a darker navy rim and inner ring surrounding a lighter central patch, resting on a dark, low-contrast background that casts a soft shadow. +train_48927.png A shallow cream-colored ceramic bowl with a glossy finish and a pronounced dark brown rim, showing a small brown spot near its center, captured from a slight top-angle (three-quarter) view and resting on a warm, light wooden surface with a softly blurred background. +train_48942.png A shallow, glossy turquoise-blue ceramic bowl viewed from a slightly elevated frontal angle, its smooth glazed surface showing a subtly darker rim and a small dark speckle inside, resting on a warm wooden table with a dim, out-of-focus background. +train_49077.png A shallow, round ceramic bowl with a warm tan interior and a darker brown rim showing a subtle speckled, slightly glossy texture, photographed from a slightly elevated angled top view against a soft pale-beige background with a faint shadow beneath. +train_49103.png A deep burgundy ceramic bowl with a smooth glossy finish and a slightly darker interior is shown from a three-quarter top-down view resting on a pale, softly shadowed surface, with subtle rim highlights and a small dark spot or residue visible inside. +train_49273.png A small, glossy white ceramic bowl with a thin blue rim is photographed from a slightly elevated, off-center top-down angle resting on a warm wood-grain surface, the smooth reflective glaze, circular silhouette, and a faint interior shadow visible despite the low resolution. +train_49280.png A top-down view of a small round ceramic bowl with a warm reddish-brown glazed rim that fades to a creamy beige center with glossy highlights, resting on a dark matte surface and casting a soft shadow, the rim-to-center color contrast and shiny glaze visible despite the low resolution. +train_49394.png A small, shallow ceramic bowl photographed from a slight top-front angle, showing a warm beige-to-light-tan glossy interior and a slightly darker, smoother exterior with a rounded rim and narrow foot, sitting on a dark, featureless surface that casts a soft shadow beneath. +train_49415.png A charcoal-gray, matte-finish shallow bowl with a short pedestal, shown in a centered frontal eye‑level view against a soft white-to-gray gradient background with a faint shadow beneath, its smooth rim and inner curvature discernible despite the low resolution. +train_49428.png A small, glossy burnt-orange ceramic bowl with a fitted lid and central knob is shown from a slightly elevated frontal view, its smooth glazed surface catching soft highlights while it casts a gentle shadow on a warm tan tabletop against a dark, vignetted background, with a visible rounded rim and subtle glaze variations. +train_49516.png A small shallow off-white glazed ceramic bowl seen from a slightly elevated top-down angle, with a smooth glossy surface, a thin darker rim and faint concentric glaze rings, casting a soft shadow on a plain white background. +train_49753.png A shallow, glossy ceramic bowl seen from above with concentric pale peach and creamy-white rings surrounding a slightly darker beige center, its smooth reflective glaze catching faint highlights and casting a subtle shadow on the dark wooden surface beneath. +train_49857.png A small glossy light-green ceramic bowl with a smooth reflective surface and a slightly darker interior, photographed from a shallow top-front angle and resting on a white plate or napkin on a warm-toned surface, with a blurred red bottle-like object and dark background behind it. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/boy_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/boy_descriptions.txt new file mode 100644 index 0000000..6b259ed --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/boy_descriptions.txt @@ -0,0 +1,500 @@ +train_00003.png Front-facing portrait of a smiling boy wearing a maroon, slightly heathered cotton T‑shirt with short tightly curled black hair and warm medium-brown skin, posed against a smooth teal backdrop, his rounded face, bright small smile showing upper teeth, and soft, even lighting remaining distinguishable despite the low resolution. +train_00037.png A low-resolution frontal view shows a light-skinned, bare-chested boy with short light-brown hair and smooth skin standing facing the camera with his arms slightly raised and shoulders squared against a plain pale-gray background, the image grainy but still revealing his rounded jawline and neutral expression. +train_00046.png The boy appears in a close three-quarter frontal view with short dark hair and a faint smile, wearing a soft-looking blue shirt with a vague light pattern, seated against a warm brown, slightly textured background (resembling wood or upholstery), his round face and short hair visible despite the image's low resolution. +train_00114.png In this low-resolution grayscale photo, a boy with short dark hair wearing a dark textured jacket over a light collared shirt faces the camera in a slight three-quarter pose with a head tilt to his right, set against a dim, uneven indoor background featuring a bright vertical panel at his right edge, the grainy high-contrast image still revealing prominent eyes, a rounded jawline and subtly parted lips. +train_00181.png Frontal, slightly three-quarter view of a boy with short dark hair and smooth light skin wearing a pale pink cotton T‑shirt with a small central cartoon print, seated with hands near his knees against a plain off‑white background and a faint closed‑mouth smile visible despite the low resolution. +train_00228.png A low-resolution frontal head-and-shoulders portrait of a young boy with short tousled brown hair and smooth rosy cheeks, smiling toward the viewer while wearing a bright blue shirt and a red neckerchief, set against a plain white background with a small green leaf-shaped accent. +train_00242.png Close-up frontal portrait of a young boy with dark brown, slightly shiny skin and short, tightly coiled black hair, seen head-on against a warm dim brown-orange indoor background while wearing a dark top, with prominent rounded cheeks and large eyes visible despite the low resolution. +train_00254.png Front-facing, head-and-shoulders cartoon of a light-tan boy with smooth, flat textures, short dark brown hair swept to one side, simple black-dot eyes and a small curved smile, wearing a blue shirt with a dark collar against a plain white/transparent background. +train_00273.png A young boy with short dark hair and a round face stands in a three-quarter frontal pose, wearing a navy, slightly fuzzy zip-up jacket and dark pants, set against a beige indoor background with a white doorframe and warm-toned floor, the low-resolution image still showing his neutral expression and the jacket's textured surface. +train_00355.png A young boy with short dark hair and a round, pale face wears a bright red, slightly textured cotton T-shirt with a white graphic, seated and facing the camera with a slight head tilt and squared shoulders against a blurred green grassy outdoor background. +train_00367.png A low-resolution, posterized illustration of a young boy with short blond hair and a peach-toned face, wearing a matte bright-red T‑shirt and solid blue shorts, shown three-quarters toward the viewer with arms at his sides against a flat deep-red background, his blocky limbs and minimal facial features (small dark eyes and a simple mouth) still discernible despite pixelation. +train_00387.png A frontal head-and-shoulders portrait of a young boy with short dark hair and a warm medium complexion, wearing a bright orange cotton T‑shirt with a soft, slightly worn texture, posed facing the camera with a slight forward lean against a plain, softly lit pale-gray background, his round face, dark eyes and a faint neutral smile discernible despite the low resolution. +train_00559.png A young boy wearing a bright blue, slightly fuzzy hoodie sits in a three-quarter view facing left, his short brown hair and pale, round face rendered with low-resolution softness, positioned on a light horizontal surface against a blurred green outdoor background. +train_00563.png A low-resolution frontal close-up of a boy with short, fine light-brown hair and a light skin tone wearing a warm orange-red shirt, his head slightly tilted with a faint smile, set against an indistinct, softly lit indoor background. +train_00599.png A close-up frontal portrait of a young boy with short, light-brown hair and smooth, rosy cheeks, his head slightly tilted to the right and looking toward the camera while wearing a pale top against a soft, light, out-of-focus background. +train_00672.png A young boy with a round, light-toned face wears a soft beige bucket hat and dark round glasses, captured frontally in a head-and-shoulders pose against a plain pale-gray background, dressed in a tan jacket over a blue top with smooth fabric textures and a faint closed-mouth smile. +train_00722.png A young boy captured from an elevated oblique viewpoint, wearing a bright red, slightly shiny puffer jacket and dark pants with white shoes, sitting or crouching on a gray asphalt/concrete surface with a faint shadowed background, his short hair and pale face barely discernible in the low-resolution image. +train_00855.png Grainy sepia-toned low-resolution portrait of a young boy with short dark hair and a smooth round face, shown chest-up in a slightly turned three-quarter pose facing left, wearing a light-colored, soft-textured shirt, set against a dark, blurred background with film-like noise and bright highlights on his forehead and cheek. +train_00878.png Frontal chest-up, pixelated illustration of a boy with short dark hair and warm tan skin wearing a bright blue shirt, arms slightly raised, showing blocky dark eyes and a small smile against a circular deep-blue vignette background. +train_00900.png A front-facing, low-resolution, emoji-like portrait of a smiling boy with short brown hair and smooth, warm orange-toned skin, simple rounded black eyes and a wide grin, shown from the shoulders in a bright blue shirt against a plain white background with flat, uniform shading. +train_00940.png A small boy with short dark hair wearing a bright orange top with a soft, slightly textured look, seen from a slightly elevated frontal viewpoint as he sits facing the camera with a rounded, slightly blurred face and chubby cheeks against a warm, softly lit indoor background of wooden tones and indistinct furnishings. +train_01004.png A grainy, low-resolution black-and-white photo shows a young boy with short dark hair wearing a smooth light-colored short-sleeve shirt and darker shorts, seated facing slightly left with knees bent and hands near his lap on a patterned floor against a plain light wall, his round face and bare lower legs visible despite the blur and a small object beside his left hand. +train_01249.png A close-up frontal portrait of a young boy with fine light-blond hair and fair, slightly rosy skin, wearing a red-and-white knit sweater, facing the camera with a slight head tilt against a neutral pale-gray background, showing large light-colored eyes and a faint smile despite the low resolution. +train_01368.png Close-up, front-facing head-and-shoulders view of a boy wearing a bright orange-red, slightly heathered T‑shirt with short dark hair and rounded cheeks, a neutral expression, and a softly blurred green outdoor background; low-resolution pixelation is evident but the color, silhouette and facial shape remain discernible. +train_01518.png Framed chest‑up in a slightly angled frontal pose, the boy wears a dark maroon jacket with a light‑gray, soft‑textured hood, has short dark hair and a round, lightly blurred face due to low resolution, and stands against a pale, indistinct indoor background with vague vertical shapes. +train_01520.png A small boy with short dark hair in a soft pale-blue cotton shirt sits in a three-quarter frontal pose looking toward the camera with a faint smile, framed against an orange-brown background and a blurred green cushion so his rounded cheeks and compact build remain visible despite the low resolution. +train_01605.png The pixelated close-up three-quarter view shows a rosy-cheeked boy with tousled pastel-pink hair that looks slightly glossy, a small closed-mouth smile, pale skin, and a dark jacket with a white collar set against a blurred deep-blue background with faint light speckles. +train_01916.png A young boy shown in a frontal three-quarter standing pose, wearing a bright red puffy jacket with a faint quilted texture and light blue jeans, short dark hair, a neutral expression with hands at his sides, set against a flat warm orange-red background with soft shadowing—distinctive clothing colors and silhouette visible despite the low resolution. +train_01986.png A head-and-shoulders portrait of a young boy with short dark hair wearing a textured red sweater over a white collared shirt, slightly turned with a tilted head and bright open smile showing his teeth, set against a soft, neutral light-gray background. +train_02011.png A close-up frontal portrait of a young boy with smooth fair skin and short, fine brown hair, wearing a light blue top with a hint of a white collar, facing the camera with a slight head tilt and a faint smile, seated against a soft gray indoor background with indistinct beige and brown objects, his round cheeks and dark eyes discernible despite the low resolution. +train_02093.png A close-up three-quarter view of a boy with short dark hair and a faint smile wearing a bright red textured knit sweater, head slightly tilted toward the camera, set against a softly blurred pale-blue indoor background with indistinct shapes. +train_02270.png In a slightly high-angle front-left view, a young boy with short dark hair wears a faded pink T‑shirt and darker shorts, standing upright with one arm at his side against a light-colored wall and patchy grass by a sunlit concrete area, the image’s pixelated, low-resolution texture blurring facial details but leaving his silhouette and clothing clearly visible. +train_02293.png A low-resolution, front-facing view of a boy wearing a faded orange sleeveless cotton top—short dark hair, rounded facial features and a small bright highlight on his forehead—seated slightly turned toward the camera against a pale patterned wall and a dark chair in the background. +train_02419.png A young boy with short dark hair wearing a smooth, light-colored sleeveless top is shown in a three-quarter view facing the camera with his arms raised, sitting outdoors against a blurred sunlit green background with an orange toy visible to his right. +train_02423.png Frontal close-up of a young boy with short, tightly cropped black hair and a smooth brown skin tone, wearing a dark matte T‑shirt and staring directly at the camera with a neutral expression against a plain muted green background, with slight forehead shine and clear eyebrow and ear contours visible despite the low resolution. +train_02588.png A small boy stands facing the camera in a smooth white T‑shirt and darker shorts, his short hair and relaxed arms‑at‑his‑sides pose visible against a plain light background with a faint shadow on the ground. +train_02707.png Frontal close-up head-and-shoulders portrait of a young boy wearing a matte magenta cotton T‑shirt, with short dark hair and a slight head tilt while smiling to show his upper teeth, set against an indoor muted wall with a green poster to one side and a dark circular object to the other, his round face and bright expression visible though skin and fine details are softened by the low resolution. +train_02717.png A small boy wearing a bright blue knit sweater and dark trousers stands slightly turned toward the camera with short hair, positioned on a sunlit paved street before blurred buildings and passersby, the low-resolution image rendering a blocky silhouette and coarse facial features while clearly showing the clothing colors and pose. +train_03037.png Frontal three-quarter view of a fair-skinned boy with short, tousled blond hair wearing a faded red patterned cotton shirt and blue shorts, seated with hands clasped on his knees on a grassy, leaf-strewn ground against a blurred green garden background, his rounded, slightly flushed face and small smile discernible despite the low resolution. +train_03227.png Close-up three-quarter view of a young boy with short dark hair and smooth fair skin wearing a slightly textured orange-red top, seated against a dim indoor background with a dark curtain or shadow at one side and a pale wall behind, with round cheeks, large dark eyes and a neutral, mildly inquisitive expression visible despite the low resolution. +train_03253.png The low-resolution image shows the boy in a soft, faded salmon-pink shirt with a smooth, slightly shiny fabric and long straight brown hair, posed in a slightly turned three-quarter view toward the camera with relaxed arms, set against a blurred green outdoor backdrop of foliage where the hair texture and the light-colored top remain the most distinguishable features. +train_03383.png From a slightly elevated frontal viewpoint, the low-resolution photo shows a young boy with short dark hair wearing a medium-blue zip-up jacket with a subtly textured knit, seated and turned slightly toward the camera, set against a warm indoor background of blurred wooden furniture and pale walls, with facial features indistinct but the outline of his jaw, ears, and light-toned face still discernible. +train_03433.png Seated slightly turned to his left and facing the camera, the boy wears a cream-colored puffy quilted jacket (with a hood or cap framing short dark hair) and dark pants, hands resting on bent knees, set against a bright, possibly snowy or overexposed pale background, with a rounded face and small facial features still discernible despite the low resolution. +train_03695.png A small boy shown in a slightly off-center frontal view, wearing a worn blue cap and a matching slightly shiny blue coat, his round, slightly flushed face and short hair visible with a subtle half-smile, set against a softly blurred greenish outdoor background, with the cap, high collar, and facial roundness the clearest distinguishing features despite the low resolution. +train_03719.png A small boy seen in a three-quarter left profile, wearing a smooth white T‑shirt, matte dark denim pants and white sneakers, with short dark hair and a thin build captured mid‑stride leaning forward with one arm bent and the other trailing behind against a plain white background with a faint ground shadow. +train_03882.png A low-resolution close-up of a young boy with short, dark, slightly tousled hair and smooth skin rendered in warm orange light, turned slightly toward the camera in a three-quarter pose with a small toothy smile, set against a dark, indistinct background punctuated by a warm glow, the image grainy but his rounded cheeks and facial highlights still discernible. +train_03964.png A close-up head-and-shoulders view of a young boy with tousled, fine blond hair and pale, slightly freckled skin wearing a soft yellow cotton shirt, facing the camera with wide eyes and slightly parted lips against a blurred green outdoor background. +train_03999.png A small, blocky, pixelated boy in a bright red jacket with a white collar and blue pants, shown in a slightly turned three-quarter standing pose with short dark hair and one arm extended (a tiny green pixel near his left hand), set against a plain white background. +train_04011.png A young boy with closely cropped dark hair wearing a bright orange, subtly patterned T‑shirt and a small yellow beaded necklace is shown from a front-facing, slightly angled viewpoint against a plain light beige indoor wall, his rounded face and faint smile visible despite the low resolution. +train_04040.png Frontal close-up of a young boy with short dark hair wearing a slightly textured navy-blue sweater with a white collar, facing the camera with a slight head tilt and faint smile against an out-of-focus indoor background of pale green wall and warm wooden tones. +train_04135.png A young boy with tousled dark brown hair and smooth fair skin, shown in a close-up head-and-shoulders frontal view wearing a soft red knit top, sits against a softly blurred indoor background of pale walls and indistinct furniture, his round cheeks, large dark eyes, and subtle closed-mouth smile discernible despite the low resolution. +train_04276.png A boy with short, matte brown hair wearing a smooth medium-blue T‑shirt is captured in a slightly off-center frontal pose with his head tilted a bit to his right and a faint closed-mouth smile, set against a warm, softly blurred indoor background of beige and wood tones, with facial details muted but his round face and hairline still discernible. +train_04415.png Frontal head-and-shoulders portrait of a boy with short, dark, slightly tousled hair and smooth skin, smiling in a dark knit sweater over a light collared shirt against a plain, light background, with low-resolution detail showing prominent eyebrows, a small rounded nose, and visible front teeth. +train_04443.png A small boy seen in three-quarter profile wears a dark, slightly glossy puffer jacket and lighter, matte trousers, leaning forward in a seated/crouched pose with a rounded cap and a pale backpack strap visible against a mottled gray, rocky background. +train_04558.png A head-and-shoulders, three-quarter view of a young boy with short dark hair and a faint smile, wearing a matte navy jacket over a bright red shirt with strong color contrast, his facial details softened by pixelation, set against a softly blurred bluish-gray background. +train_04637.png A cartoon-style boy with short tousled orange hair and a round fair face, shown in a three-quarter frontal pose with a subtle smile and visible shoulders, wearing a bright blue shirt rendered in smooth flat color and minimal shading, set against a simple blue circular background with a small red element near the lower-right. +train_04740.png A small boy with short dark hair and round cheeks wears a cream-colored, slightly textured knit top and sits facing the camera with his hands clasped in his lap against a plain white studio background, his compact frontal pose and simple clothing visible despite the low resolution. +train_04890.png A young boy with short light blond hair and rosy cheeks wears a textured red knit sweater over a white collared shirt in a head-and-shoulders, slightly turned pose toward the camera against a soft dark gray background, his round face and large eyes still discernible despite the low resolution. +train_04897.png Frontal head-and-shoulders view of a young boy with light blond, slightly tousled hair wearing a red sweatshirt, smiling broadly to reveal small front teeth and a gentle cheek flush, set against a softly blurred blue-gray background. +train_04981.png A shirtless young child with short, tousled light hair and soft, slightly grainy skin texture is shown in a three-quarter frontal pose leaning slightly forward with rounded cheeks and a faint open mouth against a softly blurred neutral background, the low resolution producing noticeable pixelation but leaving the pose and facial roundness clearly distinguishable. +train_05078.png A small fair-skinned boy with short dark hair wearing a bright red, slightly wrinkled cotton T‑shirt and light shorts stands facing the camera in a relaxed full-body frontal pose against a plain white background, hands at his sides and a slight smile on his round face. +train_05109.png A low-resolution three-quarter frontal portrait of a young boy with short dark hair and smooth light skin wearing a bright orange-red knit top with a white collar, head slightly tilted toward the camera, seated against a pale, softly out-of-focus indoor background, with rounded cheeks and a prominent forehead visible despite the blur. +train_05117.png Close-up frontal view of a young boy with short tousled dark-brown hair and a round, fair face wearing a plain blue cotton T‑shirt, slightly tilting his head with a faint smile, photographed outdoors against a softly blurred green leafy background, the low-resolution image emphasizing pronounced eyebrows and glossy highlights on his forehead. +train_05154.png A close head-and-shoulders view of a young boy facing the camera with a slight head tilt, wearing a dark, matte-textured hoodie with a light vertical zipper, short cropped hair, rounded cheeks and a faint closed-mouth smile against an evenly lit pale gray/white background. +train_05246.png A boy wearing a bright red, matte sweatshirt with a hint of a white collar and short dark hair sits in a slightly turned, three-quarter frontal pose toward the camera, his round face and small facial features softened by low resolution against a plain, softly lit pale background with faint shadowing. +train_05327.png A young boy in a bright red, slightly wrinkled T-shirt and pale shorts stands facing the camera with his arms relaxed at his sides, short dark hair and a faint smile visible despite the low resolution, set on sunlit gray pavement in front of a low wall and green foliage. +train_05387.png Close-up, low-resolution view of a young boy with warm tan, smooth skin and short dark hair, posed slightly three-quarters to the camera with rounded cheeks and a faint closed-mouth smile, wearing a blue top under warm indoor lighting that leaves a blurred orange-toned background and subtle highlights on his face. +train_05435.png A low-resolution, grainy grayscale portrait of a young boy with short light hair and smooth skin texture, shown in a slightly three-quarter pose with his head tilted toward his left and a subtle smile, set against a blurred neutral background with soft vignetting, his prominent eyes and high forehead remaining discernible despite pixelation. +train_05602.png A small glossy plastic toy boy with a yellow cylindrical head bearing simple printed eyes and a smile, wearing a red baseball cap and red torso with a white emblem and blue blocky legs, stands upright facing the camera with a slight tilt against a bright white background with a soft shadow beneath. +train_05619.png A young boy with short dark hair wearing a bright orange-red cotton T‑shirt under a dark zip-up jacket, shown waist-up facing the camera with a slight head turn and neutral expression, standing against a plain pale gray indoor wall with soft shadowing, his round face and short hairline visible despite the low resolution. +train_05631.png A small boy with short dark hair wearing a bright turquoise cotton T‑shirt stands in a relaxed three-quarter frontal pose facing the camera against a softly blurred grassy and leafy outdoor background, his slightly tilted head and faint smile visible despite the low resolution. +train_05660.png A young boy with short dark hair and light skin sits turned slightly toward the camera, wearing a soft off-white T‑shirt whose cotton texture reads smooth in the low-resolution image, against a dim indoor background with a bright window or curtain to his right and a dark round object behind him, his rounded cheeks, small nose, and faint closed-mouth smile remaining discernible despite the grainy detail. +train_05823.png A fair-skinned boy with fine, tousled sandy-blond hair and soft, rounded cheeks wearing a blue cotton shirt is shown in a three-quarter profile facing left, set against a softly blurred green foliage background, with the low-resolution image still revealing the hair texture, prominent ear and slightly open mouth. +train_06167.png Frontal close-up of a young boy with short-cropped hair and smooth brown skin bathed in warm orange-red light, wearing a dark shirt and a small pendant at his throat, looking slightly up toward the camera against a dim, blurred indoor background with warm highlights. +train_06740.png A boy with short dark hair wears a bright orange, slightly textured cotton T-shirt and light beige shorts, leaning forward in a three-quarter pose with hands near his knees on green grass against a blurred leafy and brown background, his facial features soft and indistinct at this low resolution. +train_06841.png A young boy shown sitting in a three-quarter frontal view on green grass, wearing a bright puffy red jacket with white stripe accents and dark pants, with short dark hair, a round fair face and chubby cheeks, holding a small toy or object in his hands against a softly blurred outdoor background. +train_06874.png Facing the camera in a slight three-quarter pose, a boy with short dark hair wears a bright orange zip-up hoodie of matte, slightly worn fabric, his softly blurred round face and small smile visible against a warm, out-of-focus indoor backdrop of beige/wood tones. +train_06913.png A low-resolution image of a young boy with short dark brown hair wearing a matte olive-green jacket with a slightly textured collar, shown in a three-quarter frontal pose with his head turned slightly left against a warm, solid orange-brown background, where despite pixelation his rounded cheeks, closed mouth, and the jacket's collar and fabric texture remain discernible. +train_06948.png A head-and-shoulders frontal portrait of a young boy in a bright red plaid cotton shirt, with short tousled light-brown hair and a round, smiling face turned slightly toward the camera showing visible teeth, set against a softly blurred warm-toned indoor background with indistinct shapes. +train_06949.png A low-resolution photo shows a boy in a matte black hoodie and dark pants, hunched forward with knees drawn up and one scuffed white sneaker visible, his short dark hair and pale, softly lit face turned slightly to the side against a dim, coarse concrete background. +train_06988.png A low-resolution chest-up portrait of a boy in a matte red zip-up hoodie with a soft, slightly fuzzy texture, shown in a frontal three-quarter pose with short dark hair, prominent eyebrows and round cheeks with a faint smile, set against a blurred green outdoor background. +train_07112.png Wearing a maroon, textured knit sweater, the individual with short dark hair is captured in a slightly tilted frontal three-quarter pose against a dim indoor background featuring a blue floral-patterned cushion, with low-resolution but discernible pale skin, round cheeks, dark eyes, and a small nose and mouth. +train_07265.png A young boy with tousled pale blond hair and round cheeks wears a soft, light-blue fuzzy sweater, seated and facing the camera with his head slightly tilted and hands near his chest against a bright, high-key white background, his facial features and clothing rendered softly and slightly blurred by the low resolution. +train_07310.png A boy with short dark hair and a slightly tanned round face wearing a bright lime-green cotton T‑shirt and blue shorts is crouched facing the camera with his hands clasped between his knees on coarse green grass in an outdoor, park-like setting with faint foliage and dappled light behind him despite the low resolution. +train_07313.png Seen in a low-resolution, slightly pixelated three-quarter frontal view, the boy has short dark hair and rounded cheeks, wearing a smooth bright orange-red cotton T-shirt as he leans slightly toward the camera against a warm, blurred indoor background of reddish-brown tones with a pale pink cushion at his side. +train_07331.png A low-resolution, close-up three-quarter portrait of a pale-skinned boy with short dark hair and black rectangular glasses, his head turned slightly to the viewer's left, wearing a dark top against a plain beige indoor background, the skin appearing smooth but pixelated with faint shadowing around the eyes. +train_07458.png Frontal, slightly turned bust‑length portrait of a young boy with warm medium‑brown skin and short, dark, tousled hair wearing a soft turquoise‑blue knit T‑shirt with a pale collar, offering a faint smile toward the camera against a sunlit beige outdoor background, his rounded facial features and bright eyes visible despite the image’s pixelated, soft texture. +train_07562.png Centered frontal portrait of a young boy with short light-blond hair and smooth fair skin rendered with a soft, slightly pixelated texture, head tilted slightly to the viewer’s right and shoulders visible in a light blue shirt, set against a neutral pale bluish-beige blurred background, showing a round face, small upturned nose, faint closed-mouth smile and subtly rosy cheeks. +train_07580.png The boy has short dark hair and a round face, wearing a bright blue, slightly wrinkled T‑shirt, leaning forward toward the camera with a faint smile and wide eyes against a softly lit, pale indoor background with indistinct furniture visible despite the low resolution. +train_07693.png The boy wears a bright red, slightly worn cotton T-shirt with a small white emblem near the chest, has short dark hair, and sits facing the camera at a slight upward angle against a warm, textured indoor background of beige/terracotta tones, his low-resolution face softly blurred but with visible outstretched arms and the white detail on his shirt. +train_07840.png A young boy with soft, straight platinum-blond hair cut in blunt bangs and a round, fair face is shown head-and-shoulders facing the camera with a slight smile, wearing a light-colored top against a softly blurred green outdoor background with slightly flushed cheeks. +train_07885.png A frontal bust shot of a young boy with short dark hair and a rounded face wearing a bright yellow patterned cotton shirt with a slightly wrinkled texture, facing the camera with a neutral expression against a dark, softly lit background that creates a subtle halo and makes his skin tone and the shirt’s warm color stand out. +train_08142.png A small boy with short dark hair wearing a bright orange, slightly textured crew-neck shirt, photographed chest‑up in a slight three‑quarter pose against a blurred green outdoor background, showing a round fair face and a neutral expression. +train_08245.png A close-up three-quarter view of a young boy wearing a tan, fuzzy hooded jacket, with short dark hair, pale freckled cheeks and wide dark eyes, posed facing the camera against a warm, blurred indoor background. +train_08326.png A low-resolution portrait of a boy with tousled dark-brown hair and warm light skin, shown in a three-quarter frontal pose with a slight smile, wearing a matte maroon jacket, set against a blurred cool-blue-and-white background that suggests a window, with noticeably large eyes and soft hair highlights visible despite pixelation. +train_08359.png A low-resolution image shows a boy wearing a smooth, bright orange-red T‑shirt with short dark hair, posed in a three-quarter front view looking slightly to his left against a blurred greenish background (likely foliage or a painted wall), his round, softly lit face and a faint, neutral smile discernible despite pixelation. +train_08464.png A fair-skinned young boy with short, wispy blond hair and rosy, smooth cheeks wearing a red shirt, shown in a close-up, slightly head-tilted frontal view against a deep teal-blue backdrop, with light-colored eyes and a small, subtle smile visible despite the low resolution. +train_08593.png A boy with short light-brown hair and pale, slightly rosy textured skin wearing a soft peach-beige top, shown three-quarter frontal and seated with one hand raised near his mouth, set against a warm, beige indoor background (couch or wall) with low-resolution, indistinct surroundings and noticeable rounded cheeks and a chubby forearm. +train_08646.png A frontal low-resolution portrait of a boy with short dark hair and a medium skin tone wearing a dark navy shirt, shown from the shoulders up with matte, slightly blurred facial texture and rounded cheeks, a neutral expression under soft diffuse lighting that casts faint shadows, against an out-of-focus plain light background. +train_08690.png A small, bright crimson cartoon boy with a smooth, flat-vector texture is shown in a three-quarter frontal crouch with one knee raised and arms bent, set against a plain white background, notable even at low resolution for his oversized round head, white facial patch, simple black dot eyes and tiny curved mouth. +train_08719.png Front-facing, head-and-shoulders portrait of a boy with short dark hair wearing a bright red, slightly fuzzy sweatshirt, smiling with rounded cheeks and visible teeth and a slight head tilt, set against a soft-focus green foliage background while the image remains mildly pixelated yet the warm expression and red garment are clearly distinguishable. +train_08995.png A close-up frontal portrait of a young boy with short light-blond hair and smooth, slightly rosy fair skin, round cheeks and a small smile, wearing a blue top and posed facing the camera against a softly lit, neutral indoor background. +train_09023.png A low-resolution three-quarter view of a young boy with short brown hair wearing a bright orange-red knit sweater, seated and looking toward the camera with a faint smile against a muted indoor background of pale green and beige, his round face and close-cropped hair the clearest features despite the blur. +train_09090.png Close-up frontal portrait of a boy wearing a soft sky-blue knit beanie and a matching blue jacket, seen from slightly below eye level with a neutral, slightly open-mouthed expression against a plain pale-gray background, showing smooth skin, rounded cheeks, short hair at the temples and faint eyebrows visible despite the low resolution. +train_09139.png A low-resolution, head-and-shoulders frontal view of a young boy with short light-brown hair and smooth warm-toned skin wearing a blue shirt, set against a simple pale gray-blue background with soft lighting and noticeable pixelation that leaves rounded cheeks, small nose, dark eyes and a faint smile discernible. +train_09505.png A low-resolution, three-quarter upper-body view of a young boy facing the camera, wearing a dark blue, slightly shiny puffer jacket layered over a light gray knit hoodie, with short dark hair, a softly lit round face and neutral expression, set against a blurred outdoor background of green foliage and a wooden post. +train_09600.png Front-facing, slightly head-tilted boy wearing a matte-black textured jacket and dark cap with a contrasting pale scarf or collar, standing against an overexposed plain white-gray background and appearing as a rounded silhouette with indistinct facial features and blocky high-contrast edges. +train_09624.png A small boy seen in low-resolution, pixelated three‑quarter profile wears a bright blue, smooth-textured short-sleeve shirt and dark shorts, with a hint of red at his head suggesting a cap, standing with relaxed arms on a sunlit sandy beach before a blurred turquoise sea and pale sky. +train_09649.png Front-facing, waist-up view of a boy with short light-brown hair wearing a medium-blue chambray-like shirt with a subtle textured weave and a small pale emblem on the left chest, standing against a softly blurred green outdoor background and showing a faint closed-mouth smile. +train_09689.png A front-facing, slightly head-tilted portrait of a boy with short dark hair and a smooth warm-toned complexion, wearing a dark navy/black shirt, showing a subtle closed-mouth smile and rounded cheeks, set against a softly blurred green background and rendered with noticeable pixelation and soft lighting. +train_09838.png A centered, front-facing boy in a faded coral-red, slightly mottled T‑shirt with a lighter chest area and indistinct white markings stands against a soft-focus outdoor backdrop of green foliage and brown earth, and despite the low resolution you can make out short dark hair, a rounded face, and a subtle closed‑mouth smile. +train_09903.png Front-facing young boy with short glossy black hair and a smooth light-tan complexion, wearing a bright red-orange crewneck shirt with a small yellow detail, posed slightly turned to his left against a softly blurred warm brown indoor background, his rounded cheeks, large dark eyes and faint smile visible despite heavy pixelation. +train_09914.png A small child with short, dark, slightly tousled hair and light skin wears a smooth navy-blue cotton shirt with a hint of white trim, seated facing the camera in a slight three-quarter pose with hands near the chest and a subtle closed-mouth smile, set against a plain, evenly lit pale background, his round cheeks and large eyes rendered soft and a bit blurred by the low resolution. +train_09926.png A short-haired boy wearing a smooth white cotton T‑shirt, textured dark blue denim jeans and dark shoes sits in a three-quarter profile with knees bent and one arm resting on his leg, his small, slightly downturned face and dark hair visible against a plain white background despite the low resolution. +train_10015.png A young boy with short dark hair and warm medium skin is shown chest-up in a slight three-quarter frontal pose, wearing a bright blue, slightly textured cotton T‑shirt and a subtle smile, set against an out-of-focus warm beige indoor background (possibly a wall or sofa) with soft lighting that leaves facial details slightly blurred but the overall shape and colors clear. +train_10207.png A low-resolution head-and-shoulders photo of a boy facing the camera in a straight-on pose, wearing a bright coral-red, slightly textured T‑shirt, with short dark hair, rounded cheeks and a faint closed-mouth smile, set against an indistinct pale, softly lit background that highlights the warm tones of his clothing. +train_10278.png Standing slightly turned toward the camera, a small boy with short dark hair wears a bright red cotton T‑shirt with a white circular logo and dark shorts, seen from a frontal three‑quarter viewpoint against a pale indoor wall with a narrow shelf and indistinct bottles to his right; the low‑resolution image is slightly blurred but the vivid shirt color, rounded shoulders and short haircut remain discernible. +train_10710.png Monochrome, low-resolution frontal portrait of a young boy with short, slightly tousled dark hair and smooth, rounded cheeks, facing the camera with a faint smile and wide eyes, shoulders visible against a softly blurred bright background. +train_10712.png A low-resolution image of a boy with short dark hair wearing a white sleeveless shirt and light-colored shorts, seated and leaning slightly forward in a three-quarter profile with hands on a wooden table, set against a sunlit outdoor scene with a blurred blue area suggesting water or sky and pale sandy/wooden surroundings, his round face and casual summer clothing still discernible despite the blur. +train_10723.png Front-facing, head-and-shoulders portrait of a young boy with short light-brown hair and a fair complexion, wearing a dark zippered jacket over a lighter shirt and tilting his head slightly to the right against a smooth dark teal background, the image appearing pixelated and low-resolution yet still showing the hair parting, eyebrows, and jacket collar. +train_10855.png A young boy wearing a bright blue puffy jacket with a slightly shiny texture is shown in a frontal three-quarter view with his head slightly turned, standing outdoors against a sunlit grassy background, his short dark hair visible but facial features blurred by low resolution. +train_10971.png Against a plain white background, a small boy-like figure with tousled dark hair wears a bright orange, matte-textured T‑shirt and smooth blue shorts, sitting facing the camera with knees bent and white shoes visible, exhibiting a rounded head and simplified, toy-like proportions despite the low resolution. +train_11040.png A small, flat-vector illustration of a boy with short brown hair and smooth peach-toned skin wearing a light-blue crewneck shirt, shown in a head-and-shoulders, slightly three-quarter frontal pose against a pale turquoise circular background with a soft drop shadow, notable for simplified large dark eyes, a tiny smiling mouth, and clean matte color blocks despite the low resolution. +train_11325.png A small boy with short dark hair wears a faded blue denim jacket layered over a maroon/red knit hoodie, posed facing the camera in a slight three-quarter view, set against a warm, out-of-focus reddish-brown indoor background with soft highlights, the low-resolution image still revealing a round, slightly illuminated face and the coarse texture of the denim and knit. +train_11432.png A small boy stands centered in the frame, facing the camera in a full‑body view with arms at his sides, wearing a bright red, smooth-textured shirt and light-colored shorts or diaper exposing bare legs, short dark hair, against a plain indoor background of pale walls and a tiled floor. +train_11456.png A low-resolution, slightly pixelated frontal portrait of a young boy with short dark hair and a soft peach-toned face wearing a mid-blue shirt, seen from the chest up against a faint, out-of-focus pale pink‑beige indoor background, with rounded cheeks and dark eyes discernible despite the blur. +train_11620.png Head-and-shoulders frontal view of a low-resolution, heavily pixelated boy with short blond hair and a smooth rounded face wearing a dark jacket with a visible collar, posed facing the camera against a vivid red gradient background with soft circular bokeh and subtle texture. +train_11909.png Frontal head-and-shoulders portrait of a young boy with short, slightly tousled dark hair and smooth warm-brown skin, wearing a dark T‑shirt and looking straight at the camera with a neutral expression against a softly blurred warm-brown indoor background, his round face and full cheeks discernible despite heavy pixelation. +train_11954.png A low-resolution close-up of a boy with glossy medium-brown, slightly wavy hair and bangs, wearing a red beret and matching jacket, shown in a three-quarter head-and-shoulders pose facing right against a soft sky-blue gradient background, with large blue anime-style eyes, flushed cheeks, and a small smiling mouth visible despite the blur. +train_12152.png A fair-skinned young boy with short, dark brown hair and a smooth complexion is shown in a head-and-shoulders, slightly three-quarter pose facing the camera, wearing a light-colored shirt against a plain pale indoor wall background, with noticeably large dark eyes and a small, neutral mouth visible despite the low resolution. +train_12203.png A close-up, head-and-shoulders frontal view of a young boy with short, fine light hair and a light skin tone wearing a pale pink, soft-knit top, his head slightly tilted with rounded cheeks and a neutral expression, set against a bright, featureless white background and rendered with low-resolution blur that still preserves the smooth skin texture and overall silhouette. +train_12230.png A close-up, three-quarter view of a young boy with short dark hair and a round, slightly rosy face wearing a textured tan-brown sweater or jacket, turned slightly to his left against a dark reddish-brown blurred indoor background, the image showing soft pixelation but clear facial contours and a subtle neutral expression. +train_12481.png A small, cartoonish boy depicted in flat, smooth blocks of color with a dark navy coat and matching cap, light-gray trousers and black shoes, posed in a three-quarter leftward walking stance with one leg forward and a slight forward lean, set against a plain white background and showing a beige round face with short dark hair and simplified facial features visible despite the low resolution. +train_12642.png A young boy with short dark hair and pale, smooth skin sits facing the camera in a frontal pose, bare‑chested with a slight sheen on his torso and rounded cheeks, set against a dim, out‑of‑focus indoor background with muted warm tones. +train_12916.png A small boy with short dark hair stands facing the camera in a bright red, slightly worn cotton T‑shirt and dark blue shorts, arms relaxed by his sides on sunlit green grass with a blurred wooden fence and leafy shadows in the background. +train_13197.png Standing in a slightly turned three-quarter pose against a plain pale background, the low-resolution image shows a boy wearing a bright red zip-up jacket with a matte, subtly textured fabric and medium-blue jeans, short dark hair, indistinct facial features and one leg slightly forward. +train_13202.png Close-up, low-resolution head-and-shoulders view of a boy with short, tousled dark brown hair and smooth peach-toned skin, a slight closed-mouth smile and faint rosy cheeks, wearing an orange knit cap and a muted blue-gray jacket, turned slightly three-quarters to the left against a soft pale-blue blurred background with visible pixelation. +train_13259.png A low-resolution head-and-shoulders portrait of a boy facing the camera, wearing a vibrant red, slightly textured knit sweater with a dark collar, short dark hair, a subtle closed-mouth smile and rounded cheeks, set against a softly lit beige indoor background. +train_13356.png Facing slightly upward and to his left in a close low-resolution head-and-shoulders view, the boy has short, dark hair with a slight glossy texture, wears a dark collared top, and sits against a blurred warm-brown indoor background with a small bright highlight on his cheek and softened, blocky facial features from pixelation. +train_13383.png A low-resolution image of a boy wearing a bright red zip-up jacket with a smooth, slightly shiny texture and white piping, seen from a frontal three-quarter viewpoint as he sits leaning slightly forward with his hands near his lap against a muted bluish indoor background, with short dark hair and a light-colored collar peeking out. +train_13508.png Frontal chest-up three-quarter view of a boy with a smooth pale face and short dark hair peeking from under a navy cap, wearing a bright blue jacket with a crisp white collar and small red necktie, posed facing the camera against a dim bluish indoor background with darker vertical shapes, the low-resolution image showing large dark eyes and simplified, almost cartoon-like textures. +train_13550.png Close-up three-quarter view of a boy with short dark hair, dark eyebrows and a faint half-smile, his warm orange-tinted skin and glossy forehead highlights rendered in a soft, pixelated texture from strong side lighting, wearing a dark top and set against a dim background with a subtle cool bluish rim light. +train_13773.png Low-resolution, three-quarter frontal view of a young boy with short, dark, slightly tousled hair and pale, smooth skin, wearing a dark blue collar or jacket, a faint closed-mouth smile and rounded cheeks, set against a soft, light-blue blurred background. +train_13814.png Front-facing, low-resolution grayscale portrait of a young boy with short dark hair and a smooth round face, slightly tilted forward with a faint closed-lip smile, visible ears and eyes, set against a soft, evenly lit pale background and showing a pixelated, blurred texture that obscures fine details. +train_13999.png Frontal, eye-level head-and-shoulders portrait of a young boy with medium-dark brown skin and short, tightly curled black hair, wearing a dark crew-neck shirt, facing the camera with a neutral-to-slight smile against a plain light-gray background, his smooth skin and rounded facial features visible despite the low resolution. +train_14218.png Three-quarter portrait of a young boy with short dark hair wearing a navy-blue jacket with a fuzzy golden-yellow collar, turned slightly to his left and smiling gently against a warm, softly blurred orange-brown background, the low-resolution image giving a slightly mottled, pixelated texture to his face and clothing. +train_14224.png A young boy captured in a three-quarter frontal view wears a bright red, slightly glossy jacket and leans forward as if on a bicycle, set against a blurred outdoor scene of green grass and yellow pavement with a darker-clad figure beside him, and despite low resolution a pale face and dark hair are discernible. +train_14242.png A young boy with short dark hair and a warm complexion, seated in a three-quarter frontal pose leaning slightly forward with one hand near his mouth, wearing a bright orange-red cotton T‑shirt against a softly lit indoor background of pale walls and dark furniture, with round cheeks and a small nose discernible despite the low resolution. +train_14300.png Seated and facing the camera, the low-resolution image shows a young boy with short, slightly tousled dark hair and light skin wearing a soft light‑blue cotton T‑shirt with a small white cartoon/logo on the chest, shoulders square and a neutral expression, set against a warm beige/wood‑toned indoor background (couch or chair) under soft, diffuse lighting. +train_14314.png Frontal view of a young boy in a maroon ribbed knit sweater with a white collar peeking out, short dark bowl-cut hair, round lightly lit face and clasped hands at his chest set against a soft, olive-green blurred background. +train_14340.png Front-facing, low-resolution head-and-shoulders image of a boy in a purple, slightly textured sweatshirt with short dark hair and a faint smile, set against a soft pale-blue gradient background with noticeable pixelation. +train_14349.png A young boy with short dark hair wearing a bright turquoise cotton T‑shirt, shown in a slightly angled frontal pose facing the camera, set against a sunlit outdoor scene of green grass and a blurred beige structure, with his round face and high‑contrast silhouette visible despite the low resolution. +train_14397.png A frontal close-up of a boy with short brown hair and smooth light skin wearing a bright blue T‑shirt, facing the camera with a slight smile and dark eyes, set against a softly lit warm beige indoor background with indistinct furniture. +train_14548.png A child wearing a bright orange, slightly ribbed sleeveless shirt and a small silver pendant faces the camera in a near‑frontal pose with short dark hair, set against a muted gray background with soft lighting that blurs facial details but leaves the vivid shirt color, necklace, and upright torso clearly visible. +train_14560.png A close-frontal view of the boy shows tousled reddish-blond hair and a soft, rounded face with small cheek highlights, wearing a blue shirt, set against a blurred warm maroon background despite the image's low resolution. +train_14597.png A low-resolution image shows a boy in a smooth, matte dark jacket and matching dark pants, captured in a forward-leaning mid-stride three-quarter pose with bent arms against a plain white background, the compact hunched silhouette and lighter-toned shoes standing out despite the blurriness. +train_14632.png A young boy with short brown hair wearing a smooth orange shirt is shown in a slightly off-center frontal pose, seated against a flat blue background with a green horizontal band below and a small red shape to his right, his face appearing soft and rounded but blurred by the low resolution. +train_14955.png A low-resolution image of a boy wearing a bright red, slightly textured top with short dark hair, shown seated at a three-quarter angle toward the camera against a soft bluish-gray background, with smooth, indistinct facial features and an arm resting near his torso. +train_15133.png Frontal close-up of a young boy with short dark hair and smooth warm-toned skin, smiling broadly to reveal his teeth and rounded cheeks while wearing a blue shirt against a plain dark background, the low-resolution image nonetheless showing bright eyes and a clear toothy grin. +train_15227.png A young boy with short, tousled brown hair and fair skin wearing a soft light-blue T‑shirt with dark navy horizontal stripes, seen in a slightly angled frontal pose with his hands clasped under his chin and a faint, focused expression against an indistinct dark-blue background. +train_15383.png A low-resolution monochrome white silhouette of a boy with short hair wearing a plain shirt, standing facing forward with arms at his sides against a solid black background, rendered with smooth, blocky contours and no facial detail. +train_15406.png Frontal bust portrait of a boy with short, tousled brown hair and a bright red cotton shirt, smiling broadly at the camera to reveal his front teeth and rounded cheeks against a smooth, solid teal background. +train_15473.png A small boy captured in a three-quarter view mid-step, wearing a navy-blue hooded jacket with a slightly wrinkled texture, darker slim pants and white sneakers, with short dark hair and a faint facial profile visible against a plain light/transparent background. +train_15490.png A young boy with short, slightly tousled dark hair wearing a pale blue, soft-knit sweatshirt faces the camera in a close head-and-shoulders shot with a slight head tilt and small smile against a plain, softly lit neutral background, his rounded cheeks and bright eyes still discernible despite the low resolution. +train_15539.png A young boy with short dark hair and a fair complexion looks toward the camera in a slightly turned three-quarter pose, wearing a dark navy, slightly textured jacket with a lighter collar, standing against a blurred blue-and-orange background with a rounded face and indistinct facial features visible despite the low resolution. +train_15581.png Frontal low-resolution portrait of a young boy with short tousled blond hair and pale, slightly rosy skin, wearing a bright blue shirt, facing the camera with a faint smile and rounded cheeks, set against a plain warm beige indoor background and rendered with noticeable pixelation and soft, even lighting. +train_15593.png A front-facing person with short, dark, slightly tousled hair and smooth warm-toned skin, wearing a light grey-blue hooded sweatshirt, head tilted slightly to the left with a faint closed-mouth smile, all rendered in soft, blurred detail against a pale blue, low-texture background. +train_15769.png A young boy with short light-brown hair and a rounded, chubby face wearing a soft sky-blue cotton T‑shirt, shown frontally with a slight head tilt against a plain pale (off‑white) background and soft even lighting, where low resolution mutes fine detail but leaves clear cheek fullness and a neutral expression. +train_15806.png A pixelated, cartoon-style boy with light tan skin and short dark brown hair wearing a bright orange shirt and blue shorts is shown in a three-quarter side view mid-run (one leg raised, arms pumping), set against a plain white background with blocky, low-resolution texture and a relatively large head-to-body proportion. +train_15831.png A low-resolution, head-and-shoulders three-quarter portrait of a boy wearing a camel-colored soft-knit sweater, with short tightly coiled hair, full eyebrows and rounded facial contours, slightly tilting his head to the left and gazing at the camera with a faint closed-mouth smile against a plain pale gray backdrop under soft, even lighting. +train_15865.png A low-resolution, slightly pixelated frontal three-quarter view of a boy wearing a vivid red, smooth-textured T-shirt, standing with his torso slightly turned and his right arm raised, set against a bright, uncluttered white background with a blurred red shape at the right edge, his short dark hair, round cheeks and a faint smile discernible despite the low resolution. +train_15981.png Close-up, three-quarter view of a boy with short dark hair and a warm skin tone wearing a bright yellow shirt, his smooth, slightly grainy face angled toward the camera with a faint smile and side lighting, set against a blurred green outdoor background. +train_15992.png The boy wears a faded blue jacket with a slightly textured, worn fabric, shown in a frontal three-quarter pose facing the camera against a warm orange-brown blurred background (possibly a wall), with short dark hair, a lightly lit face and a small white collar or T-shirt peeking out at the neck. +train_16042.png Close-up of a young boy with short, tousled dark-brown hair and a warm light complexion, head tilted slightly to his left and smiling broadly toward the camera, wearing a reddish top, framed by a soft, out-of-focus dark-green background with bright eyes and a clearly visible toothy grin despite the low resolution. +train_16055.png Seated and facing the camera in a three-quarter pose, the boy wears a royal‑blue, slightly ribbed knit sweater, has short dark hair and a faint smile with hands resting in his lap, set against a softly blurred outdoor background of green foliage and a wooden fence. +train_16218.png Frontal bust portrait of a pale-skinned boy with short silvery-white hair showing a soft, slightly tousled texture and large round blue eyes, wearing a cobalt-blue jacket with white trim, set against a smooth light-blue gradient background, with a neutral expression and simplified anime-style shading still discernible despite the low resolution. +train_16350.png A low-resolution, grainy sepia-toned close-up of a boy with short dark hair, turned slightly toward the camera in a three-quarter pose, wearing a textured knit sweater or jacket, set against a blurred indoor background with faint vertical patterns, his round cheeks and a faint smile visible despite pixelation. +train_16391.png Low-resolution, gray-toned close-up of a person shown head-and-shoulders in a frontal three-quarter pose, with short dark hair and a smooth, slightly rounded face, wearing a dark top against an indistinct light background, the heavy pixelation and high-contrast shadows making the eyes, nose, and a faint smile the most discernible features. +train_16447.png A boy with short brown hair wearing a plain red cotton T‑shirt faces the camera in a slightly turned, waist‑up pose against a soft-focus green outdoor background of grass and foliage, his round light-skinned face and a faint smile visible despite the low resolution. +train_16452.png A front-facing, head-and-shoulders stylized boy with smooth warm-peach skin and short glossy brown hair, round dark eyes, small upturned nose and a smiling open mouth, wearing a saturated blue shirt against a plain pale background. +train_16473.png A low-resolution image shows a boy with short dark hair and a round face wearing a teal, slightly faded cotton T‑shirt with a lighter collar, posed facing slightly left toward the camera in a relaxed, seated/leaning posture against a sunlit, blurred outdoor background of green foliage and blue sky, with pronounced pixelation yet discernible dark eyes and a faint smile. +train_16572.png Frontal three-quarter view of a young child with short tousled brown hair and light skin, wearing a matte red fleece jacket over a light shirt, standing against a softly blurred green outdoor background, with rounded cheeks, dark eyes, and a subtle closed-mouth smile visible despite the low resolution. +train_16581.png A low-resolution, stylized boy with short, sandy-brown hair that appears soft and slightly tousled, shown in a front three-quarter view with a small smile, wearing a bright blue top, set against a pale sky-blue, softly blurred background and recognizable by his round face, rosy cheeks, and simple dot-like eyes. +train_16918.png A low-resolution three-quarter profile of a young boy with short dark hair wearing a bright turquoise knit T‑shirt, turned slightly to the left with a faint smile and rounded cheeks, set against a smooth pale aqua background with soft shadowing. +train_17242.png A small boy shown in a three-quarter frontal view wearing a matte bright-red long-sleeve top and dark navy trousers, standing with arms relaxed at his sides on a plain light/white background, with short dark hair and dark shoes visible despite the low resolution. +train_17298.png A low-resolution, pixelated boy with tousled orange-red hair and pale skin is shown head-and-shoulders facing forward, bearing large bright blue eyes and a small smile while wearing a teal top, set against a speckled aqua background with orange floral-like blocks, the image characterized by chunky pixel texture and high-contrast outlines. +train_17346.png A low-resolution image of a young boy with short dark hair and light skin wearing a smooth, solid white T‑shirt and blue shorts, seated and slightly turned toward the camera with blurred facial features and a rounded head, set against a plain pale-gray wall with a darker cushion behind him. +train_17426.png Facing the camera in a frontal three-quarter view, the low-resolution photo shows a young boy with short, slightly tousled dark hair and smooth skin wearing a bright red, soft-knit sleeveless top with white trim, seated against an evenly lit pale background while clasping his hands near his chin and displaying round cheeks and wide eyes that remain discernible despite the blur. +train_17486.png A small boy in a bright orange, slightly rumpled T‑shirt and light blue shorts sits facing the camera with short dark hair and a rounded face visible despite the low resolution, positioned on sunlit green grass with indistinct trees and foliage in the blurred background. +train_17635.png A low-resolution head-and-shoulders portrait of a young boy with short dark hair and warm brown skin wearing a light-blue collared shirt of smooth fabric, facing the camera with a slight leftward tilt and neutral expression against a soft pale-blue backdrop, his round face and dark eyes rendered in slightly pixelated, blurred detail. +train_17722.png A low-resolution, slightly pixelated head-and-shoulders view of a boy with light skin and dark hair wearing a bright red cap and dark top, facing the camera with a slight turn to his left and a small smile, set against a blurred green outdoor foliage background. +train_17744.png A young boy with short light-blond hair and fair skin wearing a smooth red top, seen from the chest up facing the camera with a slight head tilt and faint smile, stands outdoors against a softly blurred green foliage background, his round cheeks and bright eyes discernible despite the low resolution. +train_17876.png Seated on green grass with indistinct foliage behind him, the boy faces the camera in a relaxed three-quarter pose wearing a bright blue, slightly textured cotton T‑shirt, with short dark hair and a rounded, slightly blurred face and hands resting in his lap. +train_17889.png Seated in a three-quarter pose against a plain white background, the boy wears a matte dark navy jacket and faded blue denim jeans with white sneakers, has short dark hair and a slender build, and leans forward with one arm extended as if reaching. +train_18011.png A low-resolution frontal head-and-shoulders portrait of a boy with short, tousled brown hair and a smooth, round youthful face, wearing a red shirt, looking directly forward with dark eyes and a slight closed-mouth smile against a pale neutral (off-white/gray) background, with noticeable pixelation around the outlines. +train_18035.png A young boy with short dark hair wearing a red-and-white horizontally striped cotton shirt and blue shorts sits slightly hunched on a green grassy lawn holding a small yellow object in his lap, the blurred background and low resolution softening his facial details. +train_18196.png Frontal close-up of a boy with smooth, dark-brown skin that catches a subtle sheen, short-cropped hair and large round eyes gazing slightly upward as his head tilts to the left, a faded blue collar visible and set against a softly shadowed brown background. +train_18236.png A frontal low-resolution image of a small figure wearing a bright red, slightly fuzzy coat with white trim and a matching white pom‑pom hat, facing the camera with a pale, pixelated face and dark eye/cheek contrasts, posed against a featureless black background. +train_18714.png I can't see the photo—please upload the low-resolution image of the boy you'd like me to describe. +train_18762.png A young boy with short dark hair wearing a bright blue, softly textured sleeveless shirt, shown in a seated three-quarter frontal pose on green grass with blurred foliage behind him, his round face and faint smile discernible despite the low resolution as he holds a small dark object in his hands. +train_18808.png A small boy in a dark navy, slightly glossy jacket over a white shirt stands in a three-quarter frontal pose with short dark hair and a blurred, pale face, positioned indoors against a light-colored wall beside a dark doorframe, the photo noticeably pixelated and low in detail. +train_18825.png A young boy with light blond, slightly tousled hair wearing a short-sleeved blue T‑shirt with a small white graphic, shown waist-up in a frontal three-quarter pose against a soft-focus green grassy background, his rounded cheeks and faint smile discernible despite the low resolution. +train_18829.png A low-resolution head-and-shoulders view of a fair-skinned boy with short brown hair and a faint smile, wearing a matte light-blue hoodie, slightly tilted toward the camera against a softly blurred green outdoor background. +train_18860.png A low-resolution, head-on portrait of a boy with short matte brown hair and smooth peach-toned skin, large glossy sky-blue eyes and a small smiling mouth, wearing a cobalt-blue shirt and set against a soft pale-blue circular background, notable for its oversized cartoon-like facial proportions and minimal fine detail. +train_19281.png A short-haired boy seen chest-up in a frontal pose wearing a teal-green, slightly fuzzy knit sweater with a faint horizontal white stripe, looking toward the camera against a plain light-gray wall with a vertical white panel to his right. +train_19396.png A young boy with short dark hair wearing a bright orange knit T-shirt with a darker collar, shown in a three-quarter view toward the camera with a faint smile, set against a soft-focus green outdoor background of foliage or grass, his rounded cheeks and compact silhouette discernible despite the low resolution. +train_19768.png A low-resolution, chest-up three-quarter portrait of a young boy with short brown hair and rounded cheeks wearing a slightly textured red sweater, turned slightly toward the camera against a soft warm-beige background with indistinct floral shapes and a faint, gentle smile. +train_19914.png A small boy with short light hair and smooth pale skin sits facing the camera in a slightly forward-leaning pose, wearing a bright red knit sweater with a white-and-navy chest graphic, set against a soft-focus green outdoor background suggesting grass or foliage. +train_20008.png A young boy captured in a three-quarter frontal seated pose wearing a dark, slightly glossy jacket over a light shirt and light-colored trousers, with short dark hair and blurred facial details against a plain pale background with soft shadows. +train_20085.png A young dark-skinned boy with short, tightly curled dark hair and smooth skin wears a bright red T-shirt in a close frontal head-and-shoulders view, his round face and slight smile visible against a soft pale gray background. +train_20273.png Front-facing, low-resolution, blocky pixelated boy with a tan head and hands wearing a bright cyan shirt and darker blue bottoms, standing upright with arms slightly out against a flat light-gray background with a small dark vertical smudge to the right. +train_20769.png A fair-skinned boy with light-blond, slightly tousled hair wearing a light-blue, thinly striped collared shirt faces the camera in a head-and-shoulders pose with a slight tilt and a broad smile showing his teeth against a softly blurred, sunlit green outdoor background. +train_20895.png A low-resolution three-quarter portrait of a young boy wearing a solid red, smooth-textured shirt with a dark collar, posed with his body angled slightly away and his head turned toward the camera against a plain pale background, showing short dark hair and a narrow dark shoulder strap visible on one side. +train_20921.png Close-up three-quarter view of a pale-skinned boy with tousled ginger hair peeking from beneath a red knit cap, rosy, slightly freckled cheeks and a subtle sideways gaze visible against a soft beige background, the knit texture and hair fuzziness discernible despite the low resolution. +train_20960.png A young boy shown in muted sepia-gray tones wears a ribbed, textured knit sweater with a white collar, posed in a three-quarter view with his head tilted slightly left and a solemn expression, seated against a dark, studio-style vignette background, his short hair, rounded cheeks and button nose still discernible despite the low resolution. +train_21104.png A low-resolution image of a young boy with short dark hair wearing a bright red, slightly textured T-shirt, shown in a three-quarter frontal pose with his upper body angled toward the camera, seated against a softly blurred light-gray indoor background, his facial features indistinct but a faint smile and strong left-side shadowing are discernible. +train_21133.png A fair-skinned boy with wispy golden-blond hair and rosy cheeks, facing the camera with a slight head tilt and a gap-toothed smile, wearing a faded blue denim-style jacket with soft texture against a blurred leafy green outdoor background. +train_21137.png A close-up frontal portrait of a young boy with short dark hair and smooth warm-toned skin, wearing a dark matte shirt and shown from the shoulders up with a slight head tilt against a blurred green outdoor background that suggests grass or foliage. +train_21272.png A young blonde boy with fine, slightly tousled pale-gold hair and smooth fair skin is shown in a close frontal head-and-shoulders view, wearing a blue shirt and a faint smile against an out-of-focus warm beige indoor background. +train_21407.png A low-resolution frontal portrait of a young boy with short dark hair and a smooth, round face, wearing a bright red, slightly ribbed shirt with a white collar, turned slightly toward the camera with a faint smile against a soft pale blue-green background. +train_21486.png A low-resolution image of a boy with short dark hair wearing a blue‑gray knit sweater, posed in a slightly turned three‑quarter view toward the camera against a warm, orange‑brown blurred background, with rounded cheeks and high‑contrast eyes and mouth visible despite heavy pixelation. +train_21793.png Seated in a three-quarter frontal pose facing the camera, the boy has short dark hair and round cheeks, wears a soft light-blue knit polo and beige shorts, sits barefoot with legs bent on a plain white studio background, and the low-resolution image preserves clear color blocks and the coarse texture of his clothing despite limited fine detail. +train_21862.png A young boy with short brown hair wearing a light turquoise cotton T‑shirt patterned with small white dots stands facing the camera with his hands on his hips against a plain white background, his round face and slight smile visible despite the low resolution. +train_22062.png A small, low-resolution grayscale head-and-shoulders portrait of a young boy with short dark hair and a rounded face, facing the camera with a slight tilt and wearing a light-colored crew-neck shirt against a smooth, featureless pale-gray background, the image is noticeably pixelated and blurred but still shows the dark hairline, rounded cheeks and a neutral expression. +train_22764.png Chest-up, three-quarter view of a boy wearing a dark navy, slightly glossy puffer jacket with a fuzzy orange collar, short dark hair and a softened, slightly blurred face as he looks off to his left against a dim, out-of-focus indoor background of warm brown tones, the jacket's contrasting collar and fabric sheen serving as the clearest distinguishing details. +train_22841.png A small boy in a wrinkled teal T‑shirt and faded pink shorts sits hunched with his knees drawn up and head turned slightly to the right, his short dark hair and bold color blocks of clothing visible against a soft, pale, out‑of‑focus ground (pavement or sand) background with a small dark object at his side. +train_22898.png A young boy with short dark hair and a warm light-brown complexion wears a bright red, smooth-textured T‑shirt and faces the camera with a slight closed-mouth smile and a slight tilt of his head to the right, set against a blurred teal-blue background (possibly water or a painted surface) with a pale vertical element at the right edge; despite heavy pixelation his rounded cheeks, dark hair contrast, and vivid red shirt remain clearly distinguishable. +train_22969.png Facing slightly to the right in a full‑body view, the small boy appears to wear a dusty brown wide‑brim hat and a maroon top with a coarse, pixelated texture over darker trousers, standing with hands at his sides against a plain light/white background, his short stature, rounded shoulders, and hat silhouette the most distinguishing features visible despite the low resolution. +train_23010.png A small, warm brown, fuzzy teddy‑bear–like figure sits upright facing the camera from a slightly elevated viewpoint on a plain white background, with rounded ears, a darker snout and nose, stubby limbs and a soft plush texture visible despite the low resolution. +train_23079.png A small boy with short dark hair wearing a smooth navy jacket, light-gray pants and white sneakers is shown in three-quarter profile mid-stride with a slight forward lean against a plain white/neutral background, his compact build and forward-tilted pose distinguishable despite the low resolution. +train_23173.png A low-resolution grayscale image of a boy wearing a dark knit beanie and a zip-up jacket, shown in a three-quarter profile turned to the right, standing against a softly blurred light background, with a grainy texture and distinguishable round cheek and faint closed-mouth smile. +train_23258.png From a slightly elevated frontal viewpoint, the low-resolution image shows a boy with short dark hair wearing a matte red sweater with a white collar trim, seated and leaning slightly forward at a wooden table or bench with a blurred brown-and-green outdoor background, his rounded face and a raised hand visible despite the blur. +train_23292.png A small, low-resolution, pixelated boy wearing a dark jacket and lighter trousers is captured in a forward-leaning mid-stride side view against a plain white background, with indistinct facial features and a blurred, motion-smoothed outline. +train_23415.png A boy seated and facing slightly toward the camera, wearing a bright red short-sleeved cotton T-shirt with a smooth texture, short dark hair, and a faint smile while holding a pale yellow object, set against a soft, out-of-focus light-gray background so his round face, small ear, and overall silhouette remain discernible despite the low resolution. +train_23452.png Wearing a slightly wrinkled red T‑shirt with faint darker markings, the boy with short dark hair reclines in a three‑quarter, slightly leaned‑back pose facing the camera against a blurred grassy green outdoor background, one arm bent and a relaxed, faint smile visible despite the low resolution. +train_23592.png A young boy with short, tousled strawberry-blond hair and smooth pale skin, shown in a slight three-quarter pose toward the camera wearing a blue top, smiling with rounded cheeks and bright eyes against a soft-focus green outdoor background of grass or foliage. +train_23604.png Close-up three-quarter view of a young boy with short, coarse black hair and warm brown skin wearing a bright orange-red T‑shirt, his head slightly turned to his left with a faint closed-mouth smile and rounded cheeks, set against a dim indoor background with a darker wall and a narrow vertical patch of bright light to the right. +train_23647.png A young boy with short, tousled light-brown hair and fair, smooth skin wears a plain red cotton T-shirt and stands in a three-quarter frontal pose facing slightly left against a featureless white background, his round face, small ears, and a faint, neutral-to-slight smile discernible despite the low resolution. +train_23961.png Front-facing low-resolution photo of a boy wearing a bright red knit cap and round red sunglasses, a blue jacket with a white collar, looking toward the camera with a slight smile against a blurred green outdoor background, with facial details softened by pixelation. +train_24045.png A low-resolution image of a young boy wearing a faded reddish‑orange cotton T‑shirt, shown in a slightly turned three‑quarter pose toward the camera with short dark hair and a warm cheek highlight, seated against a dim, indistinct dark background with noticeable pixelation and slight blur. +train_24208.png A low-resolution head-and-shoulders portrait of a fair-skinned boy with short brown hair and a fringe, wearing a soft-looking blue hoodie with white drawstring loops, facing forward with a slight head tilt against a plain muted gray background, his round face and faint smile visible despite pixelation. +train_24227.png Grainy grayscale close-up of a young boy with short, tousled light hair and a round face, captured in a slightly turned three-quarter pose toward the left, wearing a textured knit sweater or jacket with a visible collar, set against a dark, low-detail background with high-contrast lighting that emphasizes his facial contours. +train_24231.png A young boy with short, fine tousled blond hair and a light rosy complexion wearing a bright pink T‑shirt, shown in a three‑quarter pose with his head turned slightly and looking off‑camera against a softly blurred green outdoor foliage background, his round face and flushed cheeks remaining discernible despite the low resolution. +train_24361.png Front-facing low-resolution image of a smiling boy with short dark hair and a warm skin tone, wearing a bright blue shirt and raising both arms in a celebratory pose against a flat yellow circular background, rendered in smooth, flat cartoon-like colors with minimal detail. +train_24613.png A low-resolution three-quarter profile of a young boy with light brown, slightly tousled hair and smooth fair skin, rounded cheeks and a small upturned nose, looking to the left while wearing a muted orange shirt against a blurred green outdoor background. +train_24702.png Head-and-shoulders view of a young boy with short dark tousled hair and warm skin tones, wearing a light blue, smooth cotton collared shirt, slightly turned to his left in a warmly lit indoor scene with brown-orange background (appearing like wood or leather), where the face is blurred but the hair, collar detail, and rounded shoulders remain discernible. +train_24805.png A young boy with short dark hair and light skin wears a bright red, smooth-knit T‑shirt with a white neckline, sitting upright and facing the camera with a slight head tilt and faint smile, set against a plain warm tan/brown matte background, his round cheeks and dark eyes discernible despite the low resolution. +train_24807.png A low-resolution frontal selfie of a young boy wearing reflective dark sunglasses and a glossy red hooded jacket, slightly tilting his head toward the camera against a soft, out-of-focus gray interior background, with a round face, short dark hair, and shadowed cheek contours visible. +train_24815.png A young boy with short dark hair and a light complexion wears a rust-colored knit sweater with subtle ribbing, shown in a slightly turned three-quarter pose toward the camera with a soft, pixelated texture revealing a faint smile and round cheeks, against a dim indoor background that suggests a wooden chair and greenish wall. +train_24840.png Front-facing, low-resolution photo of a boy wearing a bright red cotton T‑shirt with a subtle knit texture, sitting upright and leaning slightly forward while smiling at the camera, short dark hair, a small toothy smile, and a softly blurred indoor background of blue and white shapes. +train_24853.png In this low-resolution head-and-shoulders portrait the boy faces the camera in a slight three-quarter pose, with short, dark, slightly tousled hair and a softly lit round face showing a subtle smile, wearing a maroon knit top under a dark jacket against a blurred blue background. +train_24883.png Frontal close-up of a young boy with short dark hair and light, smooth skin wearing a faded blue knit T‑shirt whose knit texture is visible, seated slightly turned toward the camera with a neutral/curious expression and rounded cheeks, set against a soft-focus indoor background of muted green and brown (suggesting a couch or foliage) under gentle diffuse lighting. +train_25131.png A front-facing, chest-up cartoon boy with light peach skin and short brown hair peeking from under a ribbed grey knit beanie, wearing a smooth, flat-colored sky-blue hoodie layered under a darker blue jacket, with simple dot eyes, rosy cheeks and a small smiling mouth against a plain light-gray background. +train_25217.png Frontal close-up of a smiling boy with short dark hair and warm medium skin wearing a bright orange shirt against a soft blue circular background, his rounded cheeks and visible teeth prominent and the overall image showing smooth, slightly pixelated textures from low resolution. +train_25373.png A young boy with short dark hair and warm tan skin, wearing a faded blue shirt, is captured in a slightly turned frontal pose with round cheeks and large dark eyes, set against a blurred greenish-purple background and rendered with a soft, slightly grainy low-resolution texture that still shows a small lighter patch on his left cheek. +train_25486.png A close-up, front-facing portrait of a young boy with short dark brown hair and a rounded fair face with slightly flushed rosy cheeks, glossy dark eyes and a small, neutral mouth, wearing a dark navy top and set against a softly blurred warm-toned indoor background. +train_25567.png A young boy wearing a cream-colored knitted beanie and a bright red puffer jacket is shown in a three-quarter frontal pose with his head slightly tilted toward the camera, small smile and round, slightly flushed cheeks visible against a soft, pale out-of-focus background, with short light hair peeking from beneath the hat. +train_25673.png A boy with short dark hair and warm brown skin wearing a dark sleeveless shirt with a pale horizontal stripe, shown from a slightly low frontal viewpoint with his head tilted slightly to the right, standing against blurred sunlit green foliage, his round face and compact, low-resolution facial features and a faint smile visible. +train_25702.png Front-facing head-and-shoulders portrait of a light-skinned boy with short, smooth dark hair and a faint smile, wearing a bright red, plain-textured shirt and slightly tilting his head against a flat, vibrant blue background. +train_25756.png Frontal head-and-shoulders portrait of a young boy with short, tousled light-brown hair and fair skin, wearing a maroon knit sweater over a white collar, smiling broadly with rounded cheeks and a slight head tilt against a softly blurred warm green-brown indoor background. +train_25830.png A young boy with short dark hair and fair skin wears a plain bright red cotton T‑shirt and faces the camera in a slightly forward‑leaning frontal three‑quarter pose, smiling faintly against an out‑of‑focus bright blue background that suggests sky or water. +train_25957.png Seen from a slightly rear three-quarter view, the child wears a matte burnt-orange hoodie with a soft, slightly fuzzy texture, dark pants and white sneakers while crouching beside warm-toned wooden flooring and a low wooden bench, short dark hair visible though facial features are indistinct in the low-resolution image. +train_26093.png Low-resolution frontal three-quarter view of a young boy in a bright orange-red, smooth cotton T‑shirt with short dark hair, round cheeks and a faint smile, seated slightly turned to his left against a warm brown indoor background with a lighter patch of floor visible at the lower left. +train_26122.png A low-resolution close-up of a young boy facing the camera, wearing a bright red baseball cap and a cobalt-blue jacket with a light-colored collar; the image is slightly grainy so the matte texture of the clothing and his rounded light-skinned face with dark hair appear soft in focus against a blurred green outdoor background. +train_26263.png Frontal three-quarter portrait of a young boy with tousled light-brown hair and smooth fair skin, wearing a tan jacket over a white shirt, set against a softly blurred green outdoor background, his rounded cheeks and faint closed-mouth smile still distinguishable despite the low resolution. +train_26381.png Close-up head-and-shoulders view of a young boy wearing a pale pink shirt, facing the camera with short, slightly tousled light-brown hair, a neutral expression, round cheeks visible despite the low resolution, and a softly blurred warm beige indoor background. +train_26414.png A young boy with short dark hair and medium skin, wearing a matte navy zip-up jacket over a red shirt, facing the camera with a slight smile against a plain light-colored indoor wall, his rounded cheeks and dark eyebrows visible despite the low resolution. +train_26462.png A low-resolution, pixelated image of a small boy wearing a bright red hooded jacket and dark blue pants, shown in a slight three-quarter frontal pose with arms outstretched and a tiny indistinct blue object in his right hand, set against a plain white background. +train_26880.png The boy is shown front-facing in a low-resolution photo wearing a dark navy, slightly shiny puffer-style jacket with contrasting white stripes on the sleeves, a small red circular badge on the chest and a dark cap, standing with arms at his sides against a plain light/white background, with facial features blurred but the jacket texture and red badge clearly visible. +train_26917.png Seen frontally from a slightly off-center angle, the boy has short, dark, slightly tousled hair and round cheeks, wears a bright red cotton T‑shirt with a smooth texture, and stands in a softly lit indoor setting with a beige wall and a blurred framed picture or shelf behind him—details discernible despite the low resolution. +train_26940.png Front-facing, shoulders-up low-resolution portrait of a young boy with short dark hair wearing a light-blue, slightly textured T‑shirt, his round, softly lit face and faint closed-mouth smile visible despite pixelation against a blurred green outdoor background. +train_26993.png A pixelated, low-resolution depiction of a light-skinned boy with short brown hair wearing a bright orange shirt and blue pants, shown in a three-quarter view facing slightly right with one hand raised near his face, standing against a plain white background with flat, blocky color and minimal shading. +train_27079.png Frontal head-and-shoulders view of a young boy with short tousled dark brown hair and a smooth light complexion, wearing a white shirt and light grey jacket, looking slightly up at the camera with a faint smile against a softly blurred green outdoor background, his rounded cheeks and eyes still discernible despite the low resolution. +train_27173.png Close-up frontal headshot of a young boy with short, slightly tousled light-brown hair and smooth fair skin, smiling broadly to show his teeth while wearing a red shirt against a plain light background. +train_27340.png A low-resolution grayscale photo of a young boy shown in a three-quarter view facing left, wearing a dark-gray, slightly coarse-textured jacket over a lighter shirt with a visible collar, short tousled hair and a faintly defined facial outline against a blurred, light-toned indoor background with a vertical shadowed object behind him. +train_27364.png A chest-up, slightly three-quarter view of a boy with short dark hair wearing a bright orange-red, slightly fuzzy hoodie with a dark collar/zipper, standing outdoors against a blurred green leafy background with dappled light, the low resolution softening facial detail but showing a rounded face and forward gaze. +train_27368.png A young boy with short, fine blond hair and smooth, rosy skin faces the camera in a centered head-and-shoulders pose, wearing a light blue top with a hint of white at the collar, set against a softly mottled blue-gray studio backdrop, with round eyes and a slight, closed-mouth smile visible despite the low resolution. +train_27413.png A close-up head-and-shoulders view of a young boy with short dark hair wearing a bright blue T‑shirt, facing the camera with a faint smile, his smooth skin and simple clothing rendered in low resolution against a softly blurred warm-brown background. +train_27590.png A young boy with light skin and short, tousled dark hair wears a charcoal, slightly fuzzy cotton-fleece hoodie with white drawstrings, shown chest-up in a three-quarter pose looking slightly downward against a warm peach-beige indoor background with soft, diffuse lighting that mutes fine detail but still reveals round cheeks, a small nose and a closed, neutral mouth. +train_27864.png A small boy with short, tousled blond hair wearing a bright red, slightly textured T‑shirt faces the camera in a three-quarter view while leaning against a beige wall or wooden doorframe indoors, his round face and faint smile visible despite the low resolution. +train_28281.png A low-resolution, front-facing portrait of a young boy with short dark hair wearing a dark, slightly textured jacket over a lighter shirt, seated with a subtle forward lean against a bright, featureless background, his round face with shadowed eyes and a small, slightly open mouth visible despite pixelation. +train_28418.png A low-resolution, pixelated boy wearing a bright red jacket, blue trousers and dark shoes, with a pale round face and brown hair under a small white cap, shown in three-quarter profile mid-step with one arm raised and rendered in flat, blocky colors against a plain white background. +train_28452.png Chest-up frontal view of a boy with short dark hair and a slightly tilted, neutral face, wearing a bright red, smooth cotton T‑shirt with a small blue circular graphic, set against a pale, out-of-focus background (appearing like a sunlit wall), with facial features soft and blurred but hairline, eyes, and shirt color still distinguishable. +train_28606.png A young boy with short dark hair wears a matte red short-sleeve cotton T‑shirt and dark shorts, standing facing the camera with a slight frontal pose and arms relaxed at his sides on a light-colored tiled floor in a sparse, pale-walled indoor setting, the low-resolution image still showing his pale skin and white-soled shoes. +train_28632.png A young boy wearing a bright orange-red puffy jacket with a fuzzy yellow collar is seen in a three-quarter frontal pose looking slightly left against a dim, warm-toned indoor background, his round face, short dark hair, and a faint smudge on his cheek discernible despite the low resolution. +train_28711.png A pixelated, low-resolution boy rendered with a bright red, slightly textured jacket and dark blue pants is shown in three-quarter profile mid-stride leaning forward as if running to the right against a plain white background, with short brown hair, a visible extended arm and contrasting dark shoes and outline defining his small form. +train_28785.png A young boy shown from the chest up in a slightly turned frontal pose wearing a bright red, soft-knit sweater, with short dark hair, a round light-skinned face and neutral expression, set against an out-of-focus warm beige indoor background with a darker vertical shape at his right. +train_28789.png A low-resolution, slightly three-quarter frontal view of a boy with short, tousled pale-blond hair and smooth fair skin, wearing a faded sleeveless red top, seated against a muted blue-gray textured background with soft lighting, his rounded face and large eyes still visible despite the blur. +train_29202.png A boy seen in a three-quarter seated view wears a bright, slightly wrinkled yellow T‑shirt with a green neckline; his short, tousled brown hair, round cheeks and a faint smile are visible as he leans forward with his hands near his lap against a softly blurred green outdoor background. +train_29263.png A small boy with short dark hair wearing a medium-blue, slightly textured T-shirt is shown in a slightly turned frontal pose, his round face and upper torso visible against a warm, soft-focus brown-orange indoor background despite the low resolution. +train_29279.png A young person in a worn-looking purple-pink fleece hoodie with a soft, slightly matted texture is shown in a near-frontal, slightly turned upper-body pose against a blurred pale indoor background, with short dark hair, a rounded face silhouette and a faint, low-resolution smile evident. +train_29388.png A low-resolution image of a young boy with short, dark brown, slightly tousled hair and light skin, shown in a three-quarter pose with his head turned slightly toward the camera, wearing a teal-green shoulder strap and exposing a bare shoulder against a softly blurred warm brown-orange background, the photo's grainy texture still revealing round cheeks, a small nose and visible ears. +train_29500.png A young boy seen in a three-quarter frontal pose wearing a tan, fuzzy shearling-style jacket with cream lining, short dark hair and round cheeks, set against a soft, out-of-focus pale gray background. +train_29549.png A close-up, frontal head-and-shoulders view of a young boy with short dark hair and warm, smooth skin, leaning slightly forward with a broad, toothy smile that reveals prominent front teeth, wearing a dark top with a lighter collar against a dim, indistinct background with a warm reddish highlight; facial details are mildly blurred due to low resolution but the smile and hairline remain clearly visible. +train_29573.png Frontal head-and-shoulders view of a young boy with short brown hair and a slight smile, wearing a matte light-blue hooded sweatshirt with a soft, slightly fuzzy texture, set against a blurred green-brown outdoor background. +train_29646.png A close-up, slightly tilted frontal head-and-shoulders portrait of a boy with short dark hair and a round face, pale pink skin tones, soft matte hair texture and a faint smile, wearing a dark top against an indistinct, softly lit pale background. +train_29728.png A person wearing a reddish-orange knit hat and matching rust-orange jacket, shown shoulders-up in a slightly off-center frontal pose against a blurred greenish outdoor background with a darker vertical area to the left, where the low-resolution image emphasizes the coarse knit texture of the hat and jacket while leaving facial features soft and indistinct. +train_29771.png Frontal portrait of a young boy with short, tousled light-blond hair and smooth fair skin, wearing a light blue shirt, slightly tilting his head toward the camera with a soft smile and rounded cheeks against a softly lit neutral indoor background. +train_29976.png A young, dark-skinned boy with short, tightly curled hair and warm orange-brown skin faces the camera in a head-and-shoulders pose against a dim, dark background, wearing a dark shirt and showing a round face with prominent eyes and slightly parted lips visible despite the low resolution. +train_30009.png A young boy with short dark hair and smooth skin wears a shiny, bright orange puffy life jacket with black straps, facing the camera in a slightly turned frontal pose against a dim, out-of-focus dark-green background, his round face and wide eyes discernible despite the low resolution. +train_30176.png Frontal head-and-shoulders portrait of a young boy with short, slightly tousled light-brown hair and smooth fair skin, wearing a bright red shirt and a faint smile, posed slightly turned to the left against a soft-focus pale-blue indoor background with a bright vertical strip at the right. +train_30347.png Seen in a slightly high three-quarter view, the boy has short dark hair and a round, low-resolution face and wears a shiny bright orange quilted jacket with a dark collar, seated against a blurred bluish‑green background that suggests water with a pale object near his lap. +train_30355.png A small glossy yellow-plastic LEGO-style boy figure in a bright royal-blue jacket over a white shirt and dark-blue legs stands front-facing with legs slightly apart and hands on hips, its molded black hair and simple smiling face visible against a plain white background despite the low resolution. +train_30508.png Close-up three-quarter portrait of a young boy with short, tousled reddish-orange hair, pale skin with rosy cheeks and a faint smattering of freckles, his head tilted slightly toward the camera and wearing a warm-toned top against a soft, out-of-focus neutral background. +train_30516.png A fair-skinned young boy with short, tousled blond hair wearing a bright blue knit shirt is shown in a three-quarter frontal view with his head turned slightly to his left, mouth open in a surprised expression revealing his teeth, set against a dim, indistinct indoor background with dark vertical shapes. +train_30603.png Short, sandy-blond hair with a slightly tousled texture frames a round face turned toward the camera in a close-up frontal view, the child wearing a blue jacket with an orange collar and showing a bright, slightly gap-toothed smile and flushed cheeks against a softly blurred green-gray background. +train_30744.png A low-resolution black-and-white head-and-shoulders portrait of a young boy with short, slightly tousled dark hair and a smooth, rounded face, looking directly at the camera with a small closed-mouth smile, wearing a plain dark collared shirt with a matte texture against a featureless light-gray background. +train_30745.png Front three-quarter bust portrait of a young boy with soft, tousled dark brown hair and pale skin, wearing a matte navy-blue hoodie and a bright red knit scarf, head slightly tilted with a subtle smile against a smooth teal-blue background. +train_30748.png A small boy with short dark hair wearing a bright red, smooth-knit T‑shirt and dark shorts is shown in a three-quarter view, slightly crouched and turned toward the camera on a pale sandy surface beside a flat cobalt-blue backdrop, his bare legs and compact silhouette visible despite the low resolution. +train_30878.png Frontal head-and-shoulders portrait of a boy with short, straight dark hair wearing a smooth red shirt and a muted blue outer layer, slightly turned toward the camera against a plain pale turquoise background, showing a round face, small nose, and a faint closed-mouth smile visible despite heavy pixelation. +train_31024.png Centered close-up frontal portrait of a young boy wearing a beige knitted beanie with a fuzzy pom-pom and a white fleece-collared jacket, his fair smooth cheeks and dark eyes visible with a neutral expression against a softly blurred gray-blue indoor background. +train_31073.png A small boy in a bright red, textured knitted sweater with a white collar sits upright facing the camera in a frontal seated pose, his short light-brown hair, round chubby cheeks and faint smile visible against a plain white studio-like background. +train_31219.png A close, slightly angled frontal view of a boy with short dark hair and a neutral expression wearing a dark, puffy matte jacket over a light gray shirt, seated indoors against a beige wall with a white surface and small colored objects blurred in the background. +train_31241.png A light-complexioned boy with short light-brown hair wears a soft-looking faded pink T-shirt and is captured in a three-quarter frontal pose with his head turned slightly toward the camera against a plain warm-beige textured wall, the low-resolution image blurring facial details but clearly showing the muted shirt color, short hair outline, and sloped shoulders. +train_31409.png A waist-up frontal view of a young boy wearing a smooth light-blue cotton T‑shirt, standing facing the camera with short dark hair and a subtle smile, set against a softly blurred outdoor background of sky-blue and green foliage. +train_31495.png A young boy with short light brown hair and smooth, slightly rosy skin wears an orange shirt and faces the camera in a close head-and-shoulders pose with a subtle smile, set against a soft-focus green outdoor background, his rounded cheeks and hair texture discernible despite the low resolution. +train_31569.png A boy with short dark hair and a rounded face wearing a light-blue T‑shirt with a small pale graphic, seated and slightly turned toward the camera with a subtle head tilt, against a warm beige/brown indoor background (possible wood or furniture) visible despite the low resolution. +train_31998.png Frontal head-and-shoulders view of a smiling young boy with short dark hair wearing a light-colored collared shirt, rendered in low-resolution grainy gray tones with a soft, indistinct background, his bright smile, prominent eyebrows and rounded cheek contours still discernible despite the blur. +train_32003.png In a low-resolution, slightly angled frontal view the boy wears a dark ribbed knit beanie and a slightly glossy puffer jacket—textures still discernible despite blur—his face mostly uncovered with a faint closed-mouth smile and visible cheek contours, set against a uniformly pale, out-of-focus background. +train_32087.png A slightly pixelated frontal portrait of a young boy with short light-brown hair and fair, slightly rosy skin, turned slightly to his left with a neutral expression, wearing a blue top against a pale, softly lit indoor background, his round face, prominent forehead and dark eyes discernible despite the low resolution. +train_32422.png Seated in a three-quarter pose facing the camera, the boy wears a vivid green, slightly textured knit top under a dark outer layer, has short dark hair and a rounded face, and is set against a dim, warm-toned indoor background with blurred brown and orange elements. +train_32466.png Close-up head-and-shoulders view of a young fair-skinned boy with fine blond hair and rounded cheeks wearing a light-blue, soft-textured top, facing slightly to the right against a blurred warm indoor background, with large eyes and a small mouth visible despite the low resolution. +train_32563.png The boy appears in a close three-quarter head-and-shoulders view with his head slightly tilted and gaze angled upward, wearing a bright blue, softly ribbed knit sweater over a white-collared shirt, with short blond hair, rosy chubby cheeks and a small smile, set against a softly blurred green outdoor background. +train_32911.png A young boy with light skin and short, straight dark hair wearing a bright blue, slightly wrinkled T-shirt, shown in a front-facing head-and-shoulders pose with a faint smile against a soft, out-of-focus beige indoor background, his rounded cheeks and close-cropped haircut visible despite the low resolution. +train_33024.png Frontal view of a young boy wearing a sky-blue fleece hoodie with a soft, slightly pilled texture, facing the camera with hands near his head and a small smile, short tousled light-blond hair, and a softly blurred green grassy outdoor background. +train_33080.png Centered and facing the camera, a boy with short dark hair and a round face wears a smooth turquoise crew-neck T-shirt, standing with relaxed arms against a slightly mottled teal-green backdrop, the low-resolution image blurring fine detail but still showing his neutral expression and the shirt's solid color. +train_33108.png A boy with short dark hair wearing a bright red sweatshirt sits facing the camera with a slight smile, his round face and the vivid matte texture of the top standing out against a dim, blurred indoor background with a small light-colored area to the left. +train_33113.png Close-up, slightly three-quarter frontal view of a young boy with warm tan, smooth skin and short dark hair with a slight tousle, dark eyes and a faint smile, set against an indistinct warm beige-brown blurred background with a small specular highlight on his forehead. +train_33115.png A small toddler with light brown, slightly tousled hair and smooth fair skin, wearing a sleeveless white top, is shown in a three-quarter frontal pose looking slightly to the right while seated against a soft, out-of-focus cream indoor background, with chubby cheeks and a faint open-mouthed expression visible despite the low resolution. +train_33220.png Frontal head-and-shoulders portrait of a young boy with short, straight brown hair and a fair complexion, smiling with a bright grin, wearing a maroon collared shirt over a white undershirt, set against a smooth bluish-gray studio-style background. +train_33257.png A chest-up, frontal view of a boy with short dark hair wearing a smooth white cotton T-shirt, slightly smiling with rounded cheeks and visible dark eyes, standing indoors against a softly lit pale beige wall; the low-resolution image is mildly pixelated but still shows the shirt color, hair, facial shape, and frontal pose. +train_33440.png Head-and-shoulders, slightly tilted forward view of a young boy with short dark hair and rounded cheeks wearing a soft beige sweater, looking toward the camera with a faint smile against a softly lit warm orange-brown indoor background, the image appearing grainy and mildly blurred. +train_33486.png A low-resolution, frontal head-and-shoulders portrait of a boy with short dark hair and medium skin tone wearing a bright red, slightly textured shirt, facing the camera with a neutral expression against a mottled teal-green wall, the image’s pixelation softening details but still showing straight eyebrows, a rounded jawline, and subtle shadowing under the chin. +train_33546.png The boy wears a vivid red, slightly textured knit top and has short, tousled dark hair and a smooth, pale face; he is captured in a close three-quarter frontal view leaning slightly forward toward the camera against a softly blurred warm indoor background of beige and brown tones, with round cheeks, large dark eyes, and a small tentative smile visible despite the low resolution. +train_33575.png Centered in a close-up, head-and-shoulders frontal shot, the boy wears a bright mustard-yellow, soft-knit shirt and has short dark hair, round cheeks and a faint smile against a plain, muted gray background. +train_33594.png The boy is shown from a slightly elevated frontal viewpoint wearing a bright red, puffy, slightly shiny jacket with a white logo and trim, seated or leaning forward in a three-quarter pose against a pale, snowy outdoor background with indistinct figures, his dark hair and light-toned face still discernible despite the low resolution. +train_33743.png A grainy, sepia-toned photo shows a young boy with short hair seated facing the camera in a slightly three-quarter pose, wearing a light, textured (possibly knitted) sweater with a faint collar, set against a dark, out-of-focus background, his round face, small closed mouth and indistinct eyes visible despite the low resolution. +train_33747.png A small boy captured from a slightly angled frontal viewpoint wears a faded pink, soft-cotton T‑shirt and dark denim-like pants, has short dark hair and arms held out in a relaxed open-stance against a plain light/white background, with the low-resolution image blurring facial details but still showing matte fabric texture and overall posture. +train_33782.png A small boy wearing a smooth, solid orange-red T‑shirt and light shorts is seated in a crouched three-quarter pose facing right, short dark hair and white sneakers visible as he holds a small white object against a plain pale yellow background with little detail. +train_33844.png A young boy in a light-blue, slightly wrinkled cotton polo with a visible collar sits in a three-quarter frontal pose facing the camera, his short light hair and round face discernible against a softly blurred green outdoor background of grass and foliage in even daylight. +train_33937.png A small boy seen front-on wearing a bright cobalt-blue, slightly shiny puffer jacket with his hands held near his chest, dark short hair and a round face, set against a dim, warm-toned background with blurred orange-yellow vertical shapes on either side. +train_34199.png Seated three-quarter facing the camera, the boy wears a bright red fleece hoodie with a soft, slightly pilled texture, blue denim jeans and white sneakers, his short dark hair and clasped hands resting on bent knees visible against a blurred outdoor backdrop of green foliage and stone steps. +train_34359.png Seated outdoors against a blurred green background, the boy faces the camera in a three-quarter seated pose wearing a bright red knit sweater with dark blue sleeves and a white stripe, his short dark hair and round, smiling face visible despite the low resolution. +train_34494.png Front-facing, slightly three-quarter view of a young boy with soft, short brown hair and a rounded face, wearing a bright blue cotton shirt, faintly smiling against a softly blurred greenish-blue background. +train_34795.png A young boy with light brown, slightly tousled hair and light skin faces the camera in a slight three-quarter pose, wearing a bright blue, soft-looking hoodie, set against a mottled beige stone-wall background, his round cheeks, dark eyes, and a faint closed-mouth smile visible despite the low resolution. +train_34837.png Sitting slightly reclined with bent knees, a small child with short dark hair and warm brown skin wears a white sleeveless top and dark shorts against a sunlit outdoor backdrop of green foliage and a low brick or stone wall, the image’s soft, slightly blurred texture obscuring fine detail but leaving clear the pose and contrasting clothing colors. +train_34900.png A low-resolution, three-quarter-frontal view of a boy wearing a bright red, slightly textured sweatshirt, with short dark hair and a softly lit pale face showing indistinct facial features, standing slightly turned and looking to his left against a dim, warm-toned wooden-paneled background. +train_34908.png A low-resolution frontal portrait of a young boy with short dark hair and smooth skin wearing a bright pinkish-red knit sweater, looking slightly upward at the camera with a faint smile against a softly blurred warm-toned indoor background with hints of wooden furniture. +train_35050.png A low-resolution, slightly pixelated head-and-shoulders portrait of a boy with short dark brown hair and light skin, rounded cheeks and a subtle closed-mouth smile, wearing a mid-blue hoodie with a paler-blue inner collar, posed facing forward with a slight three-quarter tilt against a soft teal circular vignette background. +train_35117.png A faded, grainy grayscale portrait of a young boy captured in a three-quarter frontal pose, showing short dark hair and a round face, wearing a light-colored top against a plain, softly vignetted background, with his large eyes and a subtle chin shadow still discernible despite the low resolution. +train_35122.png Despite the low resolution, the image shows a young boy with short dark hair and a round face wearing a textured tan jacket with a white collar, seated facing the camera with a slight head tilt against a muted outdoor rocky/sandy background. +train_35130.png Front-facing chest-up portrait of a boy with short dark hair wearing a bright sky-blue polo with a subtly textured knit and white-trimmed collar, smiling slightly toward the camera against a soft neutral gray background. +train_35464.png A close-up head-and-shoulders portrait of a young boy with short, dark, slightly tousled hair and a smooth complexion, wearing a bright blue hoodie over a white shirt, facing the camera with a neutral expression against a flat warm pinkish-peach background. +train_35769.png A low-resolution photo shows a boy wearing a dark, solid, smooth-textured short-sleeved shirt with short hair in a three-quarter profile as he leans slightly forward over a pale countertop or table, set against a bright, softly lit indoor background with indistinct light-colored chairs or fixtures. +train_35838.png A small boy stands facing the camera in a bright blue short-sleeved shirt and tan shorts with smooth, solid-color fabric, short brown hair and white shoes, posed upright with arms at his sides against a blurred green‑and‑brown outdoor background suggesting grass and dirt. +train_35873.png A low-resolution frontal three-quarter view of a young boy with short dark hair and fair skin wearing a soft light-blue cotton T‑shirt, shown with both arms raised in a playful pose against a plain pale gray/white background, his rounded cheeks and dark eyes still discernible despite the blurriness. +train_36031.png A young boy with short dark hair wearing a bright blue, slightly glossy zip-up jacket seen in a three-quarter frontal pose against a blurred light-blue tiled or painted background, where pixelation softens facial detail but clearly shows the jacket's zipper, collar and shoulder outline. +train_36056.png The boy with short dark hair and smooth skin leans forward with his chin resting on his hands, wearing a soft blue-and-white horizontally striped knit T‑shirt and a broad toothy smile, posed against a blurred, dark greenish outdoor background. +train_36058.png Frontal close-up of a young boy with short, straight brown hair and a fair, slightly rosy complexion wearing a maroon hoodie, facing the camera with a small toothy smile and rounded cheeks against a plain pale background, with soft lighting and low resolution that smooths fine facial detail but leaves eyes, hair shape and the hoodie color clearly visible. +train_36089.png A low-resolution, pixelated depiction of a boy wearing a dark (likely black) jacket and blue jeans, captured from a three-quarter front view mid-stride with one arm extended, isolated on a plain light-gray background and showing blocky texture with a small lighter patch on the torso. +train_36167.png Frontal, slightly head-tilted portrait of a young boy with short, slightly tousled dark hair and a smooth warm-medium complexion, wearing a dark red collared shirt, looking directly at the camera with a neutral closed-mouth expression, set against a deep saturated red gradient background with soft, low-resolution edges and subtle forehead shine visible. +train_36180.png A front-facing young boy with tousled straw-blond hair and a smooth, slightly shiny complexion is shown from the chest up wearing a soft-looking red cardigan over a white shirt, tilting his head and smiling toward the camera against a warm indoor scene with a pale wall and wooden floor visible behind him. +train_36488.png A small, shirtless boy with light-tan, smooth skin and short dark hair stands facing the camera in a frontal pose with arms relaxed at his sides, wearing bright red shorts that contrast with a blurred dark-green leafy background, his rounded cheeks and chubby limbs still distinguishable despite the low resolution. +train_36611.png A low-resolution, flat-color cartoonish boy in a bright green jacket and dark navy pants viewed in left-profile mid-step with short dark hair, white shoes and a small yellow circular shadow beneath him against a plain white background. +train_36649.png A boy with short dark hair and a round, rosy-cheeked face sits facing the camera in a frontal pose, wearing a bright red, slightly fuzzy knit sweater with small hands resting in his lap against a warm, blurred brown indoor background. +train_36685.png Frontal, low-resolution head-and-torso studio portrait of a young boy with short dark hair and a round, smiling face wearing a textured red knit sweater with a white collar, seated against a mottled blue backdrop. +train_36767.png A young boy with short dark hair and a round face sits slightly turned toward the camera in a three-quarter frontal pose, wearing a smooth red-and-white horizontally striped cotton shirt with his hands near his knees on a pale stone step, set against blurred green foliage in the background. +train_37058.png A low-resolution image shows a young boy seated and leaning slightly forward in a three-quarter frontal pose, wearing a bright orange cotton T-shirt with a soft, slightly worn texture, short dark hair, a small rounded face with blurred facial features from the image noise, and a neutral indoor background of pale walls and a patterned cushion. +train_37463.png A young boy with short, slightly tousled light-brown hair and a soft matte complexion, wearing a light-blue cotton shirt and shown in a three-quarter frontal pose with a gentle closed-mouth smile, standing against a plain cream-colored background and displaying rounded cheeks and dark eyes that remain discernible despite the low resolution. +train_37688.png A fair-skinned young boy with short blond hair and rosy cheeks wears a bright red knit sweater and sits at a slight three-quarter angle to the camera, smiling with visible teeth against a plain soft-white studio-like background. +train_37878.png Wearing a bright red T-shirt and blue jeans with white sneakers, the boy with short dark hair is squatting toward the camera on patchy green grass under an open sky, the low-resolution image rendering colors and edges as blocky pixels. +train_37899.png Seated at a slight three-quarter angle toward the camera, a boy with short dark hair wears a bright blue, slightly textured knit sweatshirt and red shorts while sitting on a low bench against a warm, mottled brick/plaster background, his hands resting on his lap and the bold blue–red color contrast and coarse knit texture still discernible despite the low resolution. +train_38024.png A person with short dark hair wearing a teal-blue, smooth-textured shirt is shown in a slightly angled frontal pose with a relaxed expression against a softly blurred green outdoor background, where low resolution and pixelation still reveal head shape, shoulder posture, and the shirt color. +train_38183.png A low-resolution, slightly grainy frontal portrait of a young boy with short, tousled dark hair, a round face and neutral expression, wearing a light-colored collared shirt with a soft, matte texture, posed facing the camera against an evenly lit, featureless pale-gray background. +train_38189.png Front-facing, shoulders-up low-resolution portrait of a fair-skinned boy with short light-brown hair and faint eyebrows wearing a royal-blue crewneck shirt, the image appearing smooth but pixelated with a neutral expression and a plain pale-gray background. +train_38203.png A low-resolution image of a young boy with short dark hair and a round face wearing a bright red, slightly textured shirt, facing the camera with a slight head tilt and subtle smile, set against a soft, out-of-focus blue-green background. +train_38219.png A boy with tousled light brown hair wearing a teal T‑shirt faces the camera in a slightly angled, chest‑up pose under soft indoor light, set against a blurred warm wooden‑panel background with a leafy houseplant, the low‑resolution image rendering skin and fine details smoothly pixelated and colors muted. +train_38577.png A frontal, slightly angled portrait of a boy with short dark hair wearing a warm orange top, his smooth, pixelated skin and large dark eyes visible despite heavy blocky texture, set against a muted teal background. +train_38713.png A low-resolution frontal portrait of a young boy with short dark hair wearing a matte dark jacket over a white shirt with a hint of red at the neckline, standing slightly turned toward the camera with arms at his sides against a blurred green outdoor background of grass and foliage, his round face and hairline visible despite the image blur. +train_38884.png A small boy stands facing the camera wearing a matte light-blue T‑shirt and dark knee-length shorts, short hair, white shoes, and his arms slightly away from his sides on a pale path with bright green grass behind him and a vertical white object to his right. +train_38925.png A young boy with short, straight black hair and smooth warm-tan skin faces the camera in a near-frontal head-and-shoulders pose with a slight closed-mouth smile, round cheeks and dark eyebrows visible, wearing a pale blue collared shirt against a plain light beige background. +train_39025.png A young boy wearing a slightly worn red-orange fleece hoodie with a soft, fuzzy texture is captured from a close frontal three-quarter viewpoint as he leans slightly forward and smiles, set against a warm, dim indoor background with blurred circular lights and reflective surfaces, with short dark hair and a bright, toothy smile the clearest distinguishing features despite the low resolution. +train_39077.png A frontal portrait of a young boy with short, dark, slightly tousled hair and a round face, wearing a soft light-blue collared shirt, looking toward the camera with a faint smile against a smooth, solid sky-blue background, where dark eyes, eyebrows and ears remain discernible despite the low resolution. +train_39213.png A close-up, slightly elevated head-and-shoulders shot of a young boy with short dark hair and fair skin wearing a muted red, slightly textured T‑shirt, facing the camera against a dim, out-of-focus indoor background with hints of seating, his round face, prominent forehead and soft, slightly blurred facial features visible despite the low resolution. +train_39259.png A small, low-resolution cartoon boy with short brown hair wearing a bright red T‑shirt and green shorts, shown front-facing with arms slightly away from his sides and legs apart, set against a plain white background and rendered in flat, smooth colors with minimal shading and a simple smiling face and round eyes. +train_39356.png A close-up, head-and-shoulders view of a young boy with short dark brown hair and warm tan skin, wearing a blue shirt and offering a slight smile in a three-quarter pose against a soft, blurred teal-green background, with smooth skin, rounded cheeks and subtly defined eyebrows visible despite the low resolution. +train_39381.png Close-up three-quarter view of a young boy with light brown, slightly tousled hair and a smooth, fair complexion, wearing a blue shirt, looking slightly off-camera with wide eyes and rosy cheeks against a dark, blurred indoor background. +train_39427.png Seen in a slightly elevated frontal three-quarter view, the boy has short dark hair and a round, fair face with a subtle smile, is seated wearing a teal cotton T‑shirt with a soft, slightly wrinkled texture, and is set against a light, neutral-toned background with faint vertical banding suggesting a couch or bed. +train_39441.png Front-facing portrait of a boy with smooth, light-peach skin and a short chestnut-brown bowl haircut, wearing a solid teal-blue shirt against a plain white background, his round face rendered in flat, minimally shaded colors with two small black-dot eyes and a tiny curved mouth. +train_39484.png A low-resolution frontal portrait of a young boy with short light-brown hair wearing a bright teal T‑shirt, leaning slightly forward and smiling toward the camera against a softly blurred green outdoor background, the image showing noticeable pixelation and muted facial detail. +train_39545.png A shoulders-up frontal view of a young boy with short light brown hair and fair skin wearing a soft, slightly textured blue collared shirt with a thin white trim, facing the camera with round cheeks and a subtle closed-mouth smile against a uniform pale blue background. +train_39638.png A low-resolution grayscale head-and-shoulders portrait of a young boy with short, dark, slightly tousled hair and a textured dark jacket, captured nearly front-on with a slight head tilt, set against a featureless light-gray, pixelated background, his facial features blurred but showing high-contrast forehead, shadowed eyes and a neutral mouth. +train_39791.png A small boy with fine tousled blonde hair and rosy cheeks wears a red knit sweater and faces the camera in a slight three-quarter pose, a subtle smile on his round face set against a softly blurred warm-toned indoor background with an orange cushion visible at shoulder height. +train_39843.png The boy wears a light-blue, slightly wrinkled T‑shirt and tan shorts, has short dark hair, and sits in a three‑quarter profile with knees bent against a soft-focus green grassy/outdoor background, his facial details rendered pixelated but his relaxed seated pose and clothing colors still distinguishable. +train_39845.png Standing facing the camera against a plain light-gray wall and darker floor, the boy wears a bright red cotton T‑shirt with a central white graphic, has short dark hair and a slim, upright pose with arms relaxed at his sides, while facial details are indistinct due to the low resolution. +train_39856.png A young boy with short light-brown hair wearing a matte dark-gray jacket over a pale shirt sits in a three-quarter, slightly forward-leaning pose with hands clasped, his rounded face and faint smile visible against a dim, mottled dark background despite the low resolution. +train_39899.png Wearing a bright red, slightly wrinkled cotton T‑shirt, the young boy with short light-brown hair sits in a three‑quarter profile holding a small blue toy, his round cheeks and focused expression visible against a sunlit grassy background with a blurred path. +train_39916.png Seated at a slight three-quarter angle toward the camera, the boy has short brown hair and a round face with a faint smile, wearing a bright red, slightly fuzzy (fleece-like) zip-up jacket over a blue shirt, with a warm brown-toned indoor background (cushion or wood paneling) visible behind him. +train_40016.png A small boy shown from a slightly elevated frontal viewpoint wearing a tan-brown textured coat (appearing suede or wool) with darker trousers and short dark hair, standing upright with hands at his sides against a plain white background with a faint shadow beneath, his facial features indistinct due to the low resolution. +train_40051.png A small boy with short dark hair wearing a bright pink, slightly textured top sits at a slight three-quarter angle toward the camera with one hand near his mouth, set against a pale blue-and-white indoor background. +train_40057.png A young boy with short dark hair is facing the camera with a slight head tilt and faint smile, wearing a bright red zip-up hoodie with a visible white zipper and slightly textured knit, standing against a blurred green outdoor background of grass or shrubs and showing a softly rounded face and small features discernible despite the low resolution. +train_40147.png Close-up frontal head-and-shoulders shot of a young boy under a strong red-orange color cast, with short dark hair, a smooth round pixelated face and dark eyes, wearing a red top against an indistinct beige indoor background, his primary facial features reduced to simple shapes due to heavy blur. +train_40362.png In a low-resolution near-frontal three-quarter view the boy wears a solid matte red T‑shirt and has short, slightly tousled dark hair, leaning slightly toward the camera against a muted green background with a pale vertical band, his rounded youthful face, visible ears and the flat cotton texture of the shirt remaining discernible despite pixelation. +train_40434.png A fair-skinned young boy with short, slightly tousled brown hair and soft rounded cheeks, wearing a smooth light-blue polo, sits facing the camera with hands clasped in his lap and a faint smile, set against a blurred green leafy background and a patch of brown ground. +train_40533.png Head-and-shoulders, front-facing portrait of a young boy with short dark hair and warm tan skin—smooth complexion, round cheeks and a faint smile—wearing a bright yellow shirt against a softly lit neutral indoor background. +train_40608.png A young boy with short dark hair and large dark eyes, facing slightly left of the camera with a faint smile, wearing a bright orange, soft-knit T-shirt and seated against a neutral beige background with a dark wooden element and a patterned cushion visible behind him, his round cheeks and clear forehead still discernible despite the low resolution. +train_40675.png A boy stands against a plain pale background wearing a bright red, slightly wrinkled long-sleeve cotton shirt, facing the camera with his torso slightly turned, short dark hair, light skin, and a softly rounded face visible despite the low resolution. +train_40730.png Seated in a three-quarter profile on a blue patterned cushion against a wooden doorframe and darker blue background, a young boy with short dark hair and medium-tan skin wears a bright orange, slightly wrinkled cotton T‑shirt and faded blue denim pants, holding his right hand near his mouth and looking off to the left. +train_40893.png A front-facing, low-resolution image of a boy standing in a T-pose against a plain white background, wearing a dark, smooth-textured jacket and mid-blue trousers with short dark hair and outstretched arms, the photo heavily pixelated so facial details are indistinct. +train_40971.png Front-facing small plastic minifigure with a glossy turquoise torso, tan head and brown hair, standing with slightly splayed arms against a soft-focus green outdoor background, its blocky silhouette and simple painted eyes and mouth visible despite the low resolution. +train_41113.png Close-up, slightly off-center portrait of a boy with short dark hair and a subtle smile, wearing a bright orange-red soft-textured sweater, viewed from a slightly elevated frontal angle against a blurred warm beige indoor background. +train_41137.png A low-resolution head-and-shoulders frontal view of a young boy with short dark hair and a round face, wearing a bright red-orange smooth-textured top (possibly a life jacket), slightly tilted toward the camera against an indistinct gray outdoor background, with a faint smile and closely cropped hair visible despite pixelation. +train_41156.png A low-resolution image shows a young boy wearing a soft-looking red hoodie with short dark hair, seen in a frontal three-quarter pose with his head slightly turned toward the camera against a blurred cool bluish-gray background, his fair face and faint smile visible despite the blur. +train_41194.png A small boy with short dark hair wears a bright blue T‑shirt, dark jeans and white sneakers while seated with knees bent in a three‑quarter profile facing right against a plain white background, the clothing appearing smooth cotton with slight wrinkling and facial features indistinct due to low resolution. +train_41625.png A small boy wearing a light-blue, slightly fuzzy knit sweater sits facing the camera with a straight-on torso and hands near his lap, his short dark hair and rounded, low-resolution face visible against a plain pale-gray background. +train_41653.png Standing in three-quarter profile on a pale, possibly sunlit ground, the low-resolution image shows a boy with short dark hair wearing a vivid blue, slightly shiny jacket and darker pants, arms relaxed at his sides, a small red object near his feet and a soft, warm-toned blurred background behind him. +train_41666.png A low-resolution, pixelated image shows a small boy in bright red clothing and a matching cap, posed slightly turned to his left in a three-quarter view, with a pale yellowish face and a few darker pixel blocks suggesting facial features and hands, set against a uniformly deep red background with coarse, blocky textures. +train_42478.png A low-resolution sepia-toned portrait of a young boy seen in three-quarter profile looking left, his short dark hair and smooth cheek catching soft left-side highlights over a grainy film texture, wearing a dark collared top against a dim, nearly featureless background, with the silhouette of his nose, ear, and jawline clearly discernible. +train_42551.png Frontal close-up of a boy with short dark hair and a warm complexion wearing a smooth blue shirt, head slightly tilted toward the camera with a faint smile and visible eyes and eyebrows, set against a softly lit pale turquoise wall with a darker vertical shadow or object to his right. +train_42754.png Frontal head-and-shoulders close-up of a young boy with light blond, fine slightly tousled hair and fair skin, wearing a soft heathered blue T‑shirt and facing the camera with a neutral-to-slight smile against a softly blurred green‑beige outdoor background, his light-colored eyes and faint cheek freckles still discernible despite the low resolution. +train_42755.png A boy shown chest-up in a slightly turned frontal pose, wearing a maroon knit hoodie with a soft, slightly fuzzy texture and a dark zippered collar, with short dark hair and a low-detail pale face, set against a blurred green outdoor background with dappled light. +train_42793.png A close-up, front-facing portrait of a young boy with short light-brown hair and smooth fair skin, wearing a faded rose-colored T-shirt, smiling with rounded cheeks and visible teeth against a soft, overexposed pale background. +train_42983.png Close-up frontal portrait of a young boy with short light-brown hair and smooth, pale complexion, head slightly turned to his left with a subtle smile, wearing a bright blue top against a soft beige indoor background, the low-resolution image showing noticeable grain and slight blur but clearly visible chubby cheeks and rounded facial features. +train_43085.png A small, low-resolution cartoon boy rendered with smooth, pixelated shading in a sky-blue shirt, dark navy pants and a white cap, shown in a crouched three-quarter right-facing pose against a plain white background with a visible bent arm and knee creating a compact silhouette. +train_43198.png A close-up, slightly three-quarter frontal view of a young boy with smooth light-peach skin and short dark hair, chubby cheeks and a hand near his mouth, wearing a soft pale yellow/orange fabric top, set against a softly blurred, neutral indoor background. +train_43515.png A young boy wearing a matte navy blazer over a crisp white collared shirt is shown in a slightly angled head-and-shoulders portrait with short, dark brown, slightly tousled hair, a faint closed-mouth smile and direct gaze, set against a plain, evenly lit blue studio backdrop. +train_43637.png Seated and facing the camera, the low-resolution image shows a young boy with short hair wearing a light-colored, smooth-textured T-shirt and darker shorts, hands resting on his lap against a blurred outdoor background of grass and foliage with dappled light, his facial features reduced to a small, slightly smiling face and dark eyes visible despite the blur. +train_43831.png Close-up three-quarter view of a boy with short dark curly hair and warm brown, smooth skin and rounded cheeks, slightly smiling with large dark eyes and a tilted head, wearing a warm-toned shirt and set against a softly lit greenish indoor background. +train_43971.png A young boy with short dark hair and warm light-brown skin wears a slightly wrinkled yellow cotton T-shirt with a small dark logo, seated in a three-quarter, front-facing pose under soft indoor light against a pink-and-cream floral patterned background, his rounded cheeks and faint smile still visible despite the low resolution. +train_44058.png The boy has short light-brown hair with a soft texture and smooth fair skin, shown in a near-frontal head-and-shoulders pose with a slight tilt and a small open smile, wearing a bright blue shirt against a plain warm beige background, with rounded cheeks and visible ears despite the low resolution. +train_44073.png A young boy with short dark hair and a warm complexion wears a light-blue cotton T‑shirt, posed chest-up facing the camera in a centered frontal view against a plain pale cream background, showing a slight smile with rounded cheeks and noticeable dark eyes despite the low resolution. +train_44178.png A waist-up frontal portrait of a young boy with medium-brown skin and short dark hair wearing a slightly textured red baseball cap and smooth red cotton T‑shirt, facing the camera with a subtle smile and slight head tilt against a plain light-gray background, the cap brim and visible ears serving as the clearest distinguishing details despite the low resolution. +train_44218.png A low-resolution frontal bust portrait of a young boy with short, straight hair and a round face, wearing a light-colored, smooth-textured T-shirt with a darker collar, looking directly at the camera with a neutral to slight smile against a plain pale background, the image appearing grainy and subtly pixelated. +train_44239.png A low-resolution close-up shows a light-skinned boy turned slightly toward the camera wearing a bright red, slightly puffy jacket with a yellow collar peeking out, short dark hair and a rounded face visible against a blurred blue background that resembles an outdoor wall or sky. +train_44245.png A low-resolution, frontal chest-up portrait of a young boy in a bright red shirt with short, light-colored hair and a faint smile, his smooth, rounded facial features and visible ears rendered with noticeable pixelation against a plain soft blue background. +train_44269.png Close-up frontal view of a young boy with short dark hair wearing a bright red, slightly textured cotton T-shirt, smiling with his hands pressed to his cheeks and visible front teeth, positioned slightly leaning forward against a softly lit pale/white background with a faint shadow. +train_44325.png Facing the camera in a slightly three-quarter pose, a small boy with short dark hair wears a bright red, smooth cotton T-shirt bearing a white graphic, standing against a plain light gray/white background with his facial features slightly blurred by low resolution but a faint smile and shoulder silhouette still visible. +train_44430.png A pixelated shoulder-up portrait of a boy with short dark hair and a round, low-detail face, wearing a deep red top with a small white collar detail, posed facing slightly to his left in a frontal three-quarter view against a soft blurry blue background, with dark eye and hair pixels and a smooth, blocky skin texture visible despite the low resolution. +train_44492.png Seen from a head-and-shoulders, slightly turned frontal view, the boy wears a light-blue soft-cotton polo, has short dark hair and a smooth, round face with a subtle closed-mouth smile, and is set against a softly blurred neutral beige-gray background. +train_44634.png A close-up, low-resolution head-and-shoulders portrait of a young boy with short dark hair and smooth, slightly glowing skin wearing a blue shirt, looking straight at the camera with a subtle smile and rounded cheeks and eyes, set against a soft, neutral bluish-gray background. +train_44667.png Front-facing close-up of a young boy with short, tousled sandy-blond hair that appears soft and fine, smooth fair skin with slightly rosy, rounded cheeks and a faint smile, wearing a pale blue top against a softly blurred light blue-green background, with his ears and eyebrow line still discernible despite the low resolution. +train_44726.png A close-up, slightly off-center view of a young boy wearing a red baseball cap turned backward and a dark navy jacket with a soft, slightly fuzzy texture, tilting his head toward the camera with a faint smile against a softly blurred outdoor background of green foliage and warm wooden tones. +train_44735.png A slightly three-quarter front view of a boy with short dark hair and smooth skin wearing a light-blue collared shirt or jacket, posed facing the camera against a softly blurred green-and-blue outdoor background, with low-resolution detail showing a rounded face and a faint closed-mouth smile. +train_44746.png Centered head‑on close-up of a young boy with warm light-brown skin and soft, smooth texture and short, slightly tousled dark-brown hair, looking directly at the camera with large dark eyes, a faint furrowed brow and pursed lips, rounded cheeks and a small nose highlighted by a subtle forehead gleam, set against a dark bluish, indistinct background and shadowed clothing so facial contours remain the most distinguishable features despite the low resolution. +train_44933.png A low-resolution head-and-shoulders frontal portrait of a boy with short, straight dark brown hair and smooth light skin, prominent dark eyebrows and dark eyes, wearing a dark top and posed facing the camera against an evenly dark, slightly grainy background with soft highlights that reveal the face's basic contours despite the blur. +train_44945.png A low-resolution, grainy grayscale three-quarter portrait of a young boy with short dark hair and round cheeks, his head slightly turned to the left and tilted, soft diffuse highlights on his forehead and eyes, wearing a dark top against an indistinct, shadowy background. +train_45026.png A close-up, slightly three-quarter frontal view of a boy in a bright cobalt-blue T‑shirt with short, tousled dark hair and smooth warm-brown skin catching soft frontal light, looking toward the camera with dark eyes and defined eyebrows, set against a blurred teal-green wall with a pale vertical stripe — despite the low resolution the strong blue-vs-teal color contrast, shiny skin texture, and clear facial silhouette remain discernible. +train_45297.png A small boy with short dark hair in a faded red T‑shirt and dark shorts is seen from a low, slightly angled side view lying on his stomach on coarse beige sand at the water’s edge, a strip of bright turquoise sea and pale sky behind him, his arms extended and features softened by low resolution. +train_45300.png A front-facing portrait of a young boy with short, slightly tousled brown hair and fair, smooth skin, wearing a blue-green shirt with a soft, matte texture, tilting his head slightly to his left and giving a faint smile against a flat warm pink-beige background, his rounded cheeks and clear facial contours visible despite the low resolution. +train_45509.png A young boy shown in a front-facing head-and-shoulders view wears a bright red baseball cap over short tousled blond hair and a light-blue shirt, his round fair face with small dark eyes and slight rosy cheeks rendered in a soft, slightly pixelated texture against a blurred green outdoor background. +train_45524.png A small boy wearing a bright red hooded jacket with a slightly glossy texture is crouched in a three-quarter left-facing pose against a plain white background, his dark hair and dark trousers visible with white shoes and a white collar/trim providing contrasting details despite the low resolution. +train_45658.png A low-resolution head-and-shoulders view of a boy facing the camera, wearing a bright red, smooth-textured T-shirt, with short dark hair and soft, indistinct facial features, standing outdoors against blurred green foliage and a vertical gray pole to the right. +train_45868.png A low-resolution frontal head-and-shoulders view of a boy with short dark hair and smooth, slightly shadowed skin, wearing a dark jacket over a lighter shirt, looking directly at the camera with a neutral expression against a softly lit, nondescript indoor background with faint vertical lines, the face and clothing rendered in blocky pixels with pronounced highlights on the forehead and cheeks. +train_46021.png A boy with short dark hair wearing a bright magenta knit polo is shown in a three-quarter pose turned slightly to his right with a faint smile, standing against a plain off-white background, the low-resolution image softening facial details but clearly showing the shirt's collar and casual posture. +train_46122.png Frontal close-up of a young boy with short dark hair and smooth skin wearing a soft white sleeveless cotton top, seated slightly turned toward the camera with a faint smile, set against a neutral gray-white background and rendered with low-resolution softness that blurs fine detail but preserves silhouette and clothing texture. +train_46123.png A low-resolution head-and-shoulders frontal portrait of a young boy with short dark hair wearing a smooth matte red crewneck, facing the camera with a subtle closed-mouth smile and rounded cheeks, set against a softly lit pale neutral background that casts gentle shadows and leaves facial details slightly blurred but eyes and hairline still discernible. +train_46198.png A boy with short dark hair and a rounded face faces the camera in a straight-on head-and-shoulders pose, wearing a light-blue, matte cotton T-shirt and standing against a softly lit beige indoor background with blurred details, with the shirt color, hair shape, and a faint neutral expression discernible despite the low resolution. +train_46269.png Front-facing head-and-shoulders portrait of a boy with short dark hair, a round rosy face and a visible toothy smile, wearing a smooth red shirt and slightly tilting his head toward the camera against a soft neutral (off-white/gray) background, with high-contrast facial features discernible despite the low resolution. +train_46438.png Frontal close-up of a young boy in a grainy black-and-white photo, facing the camera with short tousled hair and a faint smile, wearing a light-gray fuzzy knit sweater that shows visible texture, his round cheeks and bright eyes contrasting against a blurred, dark indoor background. +train_46491.png A small boy sits in three-quarter profile on patchy grass and dirt, wearing a dark knit hat and a textured brown-orange jacket with a hint of blue at the sleeve, his rounded face and short dark hair visible despite heavy blurring and a soft-focus green-brown background. +train_46524.png Frontal chest-up portrait of a young boy with short brown hair and a slight head tilt, wearing a bright blue smooth-cotton T-shirt, showing a small closed-mouth smile and rounded cheeks, set against a softly blurred green outdoor background with dappled light. +train_46703.png A low-resolution image shows a young boy wearing a bright orange knit beanie and a red puffy jacket with a soft, fuzzy texture, captured in a three-quarter frontal pose looking slightly to his left against an out-of-focus green outdoor background, with his round face, dark eyebrows, and a faint smile discernible despite the blur. +train_46736.png Frontal three-quarter portrait of a young boy with short dark hair and a slight smile, wearing a smooth dark blazer over a crisp white collared shirt, seen from the chest up against a deep burgundy backdrop, with facial details slightly blurred and pixelated but a rounded youthful face and subtle head tilt clearly visible. +train_46926.png A low-resolution frontal three-quarter view of a boy with short dark hair and a round face, seated and facing the camera while wearing a bright red cotton T‑shirt with a lighter patch or small chest graphic, set against a plain muted blue‑gray background, with smooth hair texture and a faint closed-mouth smile evident despite pixelation. +train_47201.png The boy wears a bright orange, soft-knit shirt and is captured in a three-quarter frontal pose with tousled dark brown hair, a small smile and visible left ear, set against a blurred green-and-brown outdoor background suggesting foliage. +train_47252.png Close-up, head-and-shoulders frontal view of a young boy with fine, light-blond hair and a soft round face, wearing a bright pink top with a white collar, noticeable rosy cheeks and large dark eyes, against a pale, softly textured indoor background that looks like bedding. +train_47431.png A close-up head-and-shoulders view of a light-skinned boy with short, slightly tousled brown hair and a smooth complexion, wearing a blue shirt and facing the camera with a subtle smile against a warm, blurry brown indoor background that could be wood or upholstery. +train_47759.png A low-resolution grayscale head-and-shoulders photo of a young boy with short dark hair and smooth skin, facing the camera in a slight three-quarter pose, wearing a dark textured jacket or hoodie with a lighter collar visible, set against a blurred dark background with soft lighting on the left side of his face and a subdued, neutral expression. +train_47836.png A young boy with fine, tousled light-blond hair and smooth fair skin is shown in a slight three-quarter, head-tilted pose smiling toward the camera, his bright eyes and visible front baby teeth framed by rosy cheeks against a dark, softly blurred background suggesting foliage. +train_48106.png Seen in a three-quarter frontal pose against a plain pale background, the boy has short dark hair and a round, smooth-skinned face with a small smile and slightly squinted eyes, wearing a bright red, slightly textured knit shirt with a white collar and resting his hand against his cheek. +train_48120.png A low-resolution three-quarter side view of a boy in mid-run wearing a matte orange puffy jacket with a small hood, blue denim jeans and white sneakers, leaning forward with arms pumping and short dark hair visible against a plain white/transparent background with a faint shadow beneath. +train_48142.png A frontal chest-up portrait of a young boy wearing a soft, felt-like tan hat with a darker band, a blue-gray shirt, short dark hair, rounded cheeks and a subtle smile, set against a plain light background. +train_48152.png A boy seen nearly head-on, wearing a reddish-pink puffy jacket with a smooth, slightly shiny texture, dark short hair framing a round face with prominent cheeks and large dark eyes, seated against a softly blurred indoor background of cool blue and warm brown tones. +train_48212.png Frontal close-up of a young boy with short, fine blond hair and chubby cheeks, seated and slightly turned toward the camera while clutching a fuzzy cream-colored stuffed animal against a red knit top, set against an out-of-focus pale gray background. +train_48237.png Seated and facing the camera at a slight angle, the young boy wears a dusty-rose knit sweater with a visible ribbed texture and light trousers, has short dark hair and a round face with noticeable eyes, and sits on a warm-toned indoor floor against pale cabinetry in a softly lit domestic background. +train_48342.png Front-facing, low-resolution portrait of a light-skinned boy with short, tousled brown hair and simple dark-dot eyes and a small smile, wearing a red shirt seen from the shoulders, set against a softly blurred blue-green background with blocky, pixelated color and smooth, matte shading. +train_48393.png A small figure in the low-resolution photo stands centered facing the camera, wearing a dark maroon, slightly textured sweater and light blue denim pants, with short dark hair and a rounded childlike silhouette, arms relaxed at the sides on a pale, possibly concrete surface against an overexposed white background. +train_48407.png Frontal head-and-shoulders view of a boy with short dark hair and a light-medium complexion wearing a matte bright red hooded sweatshirt with a visible white drawstring, seated against a soft pale-blue, water-like background with darker foliage at the upper left and a beige object in the foreground. +train_48465.png A low-resolution frontal portrait of a young boy with short dark hair and smooth, slightly shiny skin wearing a bright red T-shirt, looking toward the camera with a subtle smile and round cheeks against an out-of-focus greenish outdoor background. +train_48642.png A low-resolution front three-quarter view shows a young boy with short dark hair wearing a bright pink, smooth cotton T‑shirt, seated or leaning toward the camera against a sunlit blue waterfront with an indistinct rocky shoreline and pale sky, where the vivid shirt color, compact silhouette, and contrast with the shimmering water remain the most distinguishable details. +train_48759.png A fair-skinned boy with short light-blond hair wearing a soft pink shirt with a white collar sits slightly turned toward the camera, his round cheeks and faint smile visible against a blurred green outdoor background with indistinct foliage. +train_48825.png Frontal three-quarter view of a small boy with short dark hair wearing a matte red cotton T-shirt, seated cross‑legged on a light floor against a teal-blue background and holding a small dark object near his chest, showing childlike proportions and a neutral expression. +train_48891.png A frontal, toy‑like boy figure with a glossy smooth yellow face, tiny black dot eyes and a simple smile, wearing a tan wide‑brim hat with a blue band and a blue shirt, posed facing the viewer against a flat light‑blue background. +train_49024.png A low-resolution photo of a young boy with short dark hair wearing a bright red, smooth-cotton T‑shirt and light shorts, seated and leaning slightly forward toward the camera with a subtle head tilt, set against blurred green outdoor foliage, the pixelation softening facial details but leaving a rounded face and visible bare knees as distinguishing features. +train_49105.png A boy in a light khaki, slightly rumpled hooded jacket layered over a teal shirt, posed three-quarter to the camera with short dark hair and a faint smile, set against a softly blurred green foliage background. +train_49123.png A small boy seen in three-quarter view facing slightly left, wearing a light tan/beige jacket with a soft, slightly mottled texture and dark trousers, short dark hair, standing with arms relaxed at his sides against a pale, nearly featureless background dotted with a few tiny dark specks and a faint shadow beneath him. +train_49221.png A young, light-skinned boy with short blond hair and chubby cheeks wears a soft red knit sweater with a visible white collar, facing the camera with a slight head tilt and neutral expression against a dark, out-of-focus background, his facial features softened and slightly blurred by the low resolution. +train_49327.png Seated and turned slightly to his left, the young boy with short dark hair and round cheeks wears a soft light-blue fleece top and dark pants, holding a hand near his mouth against a warm beige-brown couch background with a darker cushion visible. +train_49465.png Frontal close-up of a boy wearing a bright red hooded top, his light-toned, smooth face with rounded cheeks and a faint smile visible despite the low resolution, seated facing the camera against a soft, warm pinkish-beige indoor background with indistinct blurred objects. +train_49480.png A frontal, low-resolution portrait of a boy with short dark hair and a pale, round face, wearing a muted maroon sweater that appears slightly fuzzy in texture, looking directly at the camera with a faint closed-mouth smile against a plain light gray background, with noticeable pixelation obscuring fine facial detail. +train_49482.png A low-resolution head-and-shoulders portrait of a boy with short, tousled dark-brown hair (matte texture), facing the camera with a slight head tilt and subtle closed-mouth smile, wearing a dark jacket over a red shirt with a visible white collar, set against a soft pale-pink background and notable for his rounded, rosy-cheeked face and prominent dark eyebrows despite the pixelation. +train_49494.png A low-resolution image of a boy wearing a bright red, slightly wrinkled short-sleeve shirt and dark pants, seated in a three-quarter frontal pose leaning forward with hands near his knees, short dark hair and indistinct facial features due to blur, set against a plain light-gray background with soft shadowing. +train_49514.png Frontal three-quarter view of a young boy with short light-brown hair and smooth fair skin, wearing a dark navy knit sweater with a lighter collar, head slightly tilted and smiling faintly, set against a flat warm beige wall — round cheeks and bright eyes visible despite pixelation. +train_49520.png Front-facing, seated boy with short dark hair and a slightly blurred, rounded face wearing a red-and-blue horizontally striped shirt, shown from the chest up against a soft, fabric-like blue background suggesting indoor upholstery. +train_49530.png Front-facing close-up of a boy with short, light-brown tousled hair and a soft, smooth complexion, wearing a bright red shirt and a slight smile that emphasizes rounded cheeks and a small nose, set against a plain, evenly lit white background. +train_49539.png A young boy with short dark hair wearing a ribbed red sweater is shown in a three-quarter frontal pose with his head slightly tilted toward the camera and a neutral expression, softly lit from the left which casts gentle shadows on the right side of his face, set against a deep teal, subtly mottled background. +train_49579.png A low-resolution frontal portrait of a young boy with short dark hair and light skin wearing a smooth navy jacket over a red shirt, head slightly tilted with a faint small smile and rounded cheeks, posed against a dark bluish, softly gradient background. +train_49803.png A young boy with short dark hair and light skin wearing a bright yellow, smooth-textured T-shirt and blue shorts stands in a slight three-quarter pose facing the camera on a sunlit grassy area with trees and a clear blue sky behind him. +train_49930.png A boy with short dark hair and a round face wears a bright orange, slightly textured hoodie with a visible white drawstring, sitting in a three-quarter frontal pose with a slight head tilt against a warm, cluttered indoor background of blurred shelves and wall decor visible despite the low resolution. +train_49950.png A boy seen three-quarter frontal from the chest up, wearing a green-and-blue checked cotton shirt with a visible dark shoulder strap, short dark hair, a slight head tilt and faint smile, set against a soft, out-of-focus greenish background with a darker vertical element at the left. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/bridge_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/bridge_descriptions.txt new file mode 100644 index 0000000..e0f7277 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/bridge_descriptions.txt @@ -0,0 +1,500 @@ +train_00179.png A narrow metal truss bridge painted dark green with a weathered, slightly rust-speckled texture is shown in a three-quarter side view spanning calm water, backed by trees and distant buildings in a hazy background, with its triangular truss panels and diagonal support beams visible despite the low resolution. +train_00294.png A narrow, light blue-gray painted metal bridge with evenly spaced vertical railings and a slightly arched, grated deck, captured from an oblique low-side viewpoint against an indistinct urban backdrop of buildings and pale sky with shadowed area beneath. +train_00345.png A weathered light-brown wooden footbridge with sun-faded planks and simple white vertical railings is shown from a low frontal angle spanning a calm, green-tinted pond, framed by dense trees and grassy banks, with the plank texture and balustrade pattern still discernible despite the low resolution. +train_00371.png A slightly low-angle oblique view of a small bluish-gray metal arch bridge with a weathered, mottled texture and a narrow rust-red deck, visible vertical supports and faint cable lines, set over dark water with a grassy green embankment and pale overcast sky behind it. +train_00588.png A front-facing view of a small, bright orange-painted bridge with a smooth, glossy painted texture, arched top rails and evenly spaced vertical balusters, set against a pale beige ground and light blue sky with a faint shadow beneath. +train_00696.png A pale beige, rough‑textured stone bridge is seen from a low, near‑frontal angle, revealing a single rounded arch and low parapet with visible blockwork, spanning turquoise water with green foliage and shoreline in the background. +train_00753.png A low, weathered light‑brown wooden footbridge made of narrow horizontal planks with evenly spaced vertical posts and a simple railing, seen from a slight diagonal above against a pale sandy‑beige background with a soft shadow beneath the span. +train_00811.png A pale beige concrete bridge captured from a slightly low, front-right angle, its smooth but weathered surface and simple horizontal railing with rectangular openings visible despite the low resolution, set against a bright sky and an indistinct greenish shoreline in the background. +train_00862.png A small white-painted arched pedestrian bridge with smooth, slightly weathered wooden planks and a decorative balustrade of evenly spaced vertical slats topped by rounded finials, seen from a low frontal three-quarter view spanning a dark reflective water channel against a backdrop of leafy green trees and an overcast sky. +train_01016.png A low, gently arched pedestrian bridge of weathered light-brown wood with visible grain and evenly spaced vertical railings, shown from a slightly off-center, low-angle view against a blurred backdrop of green foliage and pale sky with a dark water surface below reflecting the bridge's silhouette. +train_01040.png A low oblique side view of a small, weathered gray‑beige stone arch bridge with rough, irregular masonry and simple low parapets spanning calm, greenish water, set against a blurred tree‑lined shore and muted sky. +train_01084.png A low-resolution image of a weathered orange-brown arched bridge with a rough, rust-speckled texture, seen from a low oblique viewpoint revealing the curved underside and a row of evenly spaced vertical rail posts spanning bright blue water with a pale sky and faint shoreline behind it. +train_01162.png A bright orange-red arched bridge with a smooth, glossy-painted surface seen in side-profile at a slight angle, its curved ribs and vertical supports forming a repeating pattern reflected in the dark water below against a backdrop of green shoreline and pale blue sky. +train_01230.png A low, slightly arched red-brown wooden footbridge with visible plank decking and open slatted railings is seen from an oblique front-left viewpoint spanning a small grassy verge in a sunlit park with trees and lawn in the background. +train_01275.png A low-resolution view of a pale tan, slightly rough-textured arched bridge seen from a near-front, slightly off-center viewpoint spanning a dark water channel, with indistinct green foliage and a bright sky behind it and visible vertical supports and a low parapet along its span. +train_01365.png A narrow, weathered brown wooden footbridge seen obliquely from a low viewpoint, its grainy planks and a single darker handrail angling from lower-left to upper-right against blurred green foliage and a pale sky with a hint of blue water beneath. +train_01370.png An off-white, slightly weathered arched pedestrian bridge with evenly spaced vertical balusters is shown frontally from a slightly elevated angle, spanning calm water that mirrors its curved silhouette against a backdrop of muted green trees and grassy banks. +train_01384.png A low-resolution view of a weathered bluish‑gray metal bridge captured from a near-frontal, slightly angled shoreline perspective, showing its gently arched span, repeated vertical supports and railings with a truss-like deck rising over calm water against a pale cloudy sky and low urban buildings on the distant shore. +train_01418.png An angled side view of a weathered, rusty‑orange metal truss bridge with flaking paint and a repeating triangular lattice of vertical and diagonal supports, receding to the right against a pale overcast sky and indistinct tree‑lined shoreline, with an open deck and riveted connections faintly visible despite the low resolution. +train_01728.png A narrow, weathered yellow-brown pedestrian bridge with rough wooden planks and simple vertical railings, shown from a slightly elevated three-quarter frontal viewpoint spanning calm reflective water with a pale sky and indistinct shoreline in the background. +train_01777.png A low-resolution image of a pale beige, slightly weathered stone bridge seen from a low, angled side view that reveals a single broad arch and shadowed underside, a low parapet with evenly spaced vertical posts, and an indistinct background of muted blue sky and blurred green foliage. +train_01805.png An oblique side view of a long, narrow rust-red metal bridge with a weathered, slightly patchy texture and repeating vertical supports and railings, spanning left-to-right above blurred green treetops against a bright blue sky. +train_01877.png A rust-red, weathered metal truss bridge with visible lattice/triangular sidework and flaking paint is shown from a low oblique angle spanning a reflective body of water against a backdrop of dense green trees and a pale sky. +train_02189.png A low, slightly arched narrow footbridge of weathered reddish-brown wood with visible plank texture and evenly spaced vertical posts supporting simple horizontal railings, viewed from a near‑frontal, slightly diagonal angle spanning a small pond with blurred green foliage and pale sky in the background. +train_02269.png Low-angle frontal view of a narrow, rust-orange metal pedestrian-style bridge with a coarse, weathered surface and repeating vertical rail posts, stretching over calm blue water toward a distant tree-lined shore under a pale sky. +train_02483.png A low, gently arched pedestrian bridge of weathered light-brown wood with visible slatted decking and simple vertical post-and-rail balustrades, seen from a slightly elevated frontal viewpoint spanning a narrow blue-gray stream with green foliage and indistinct trees in the background. +train_02509.png A narrow, pale off-white bridge with evenly spaced vertical slatted railings and a subtly arched deck is shown from a near-frontal, slightly low viewpoint, set against a muted overcast sky and indistinct treeline, with a shadowed underside and simple, weathered surface textures visible despite the low resolution. +train_03064.png A low, gently arched wooden pedestrian bridge painted a muted red-brown with evenly spaced vertical posts and diagonal lattice railings, seen nearly head-on from water level against a green, tree-covered hillside and rocky shore, its weathered plank texture and soft reflection visible despite the low resolution. +train_03278.png A side-on, low-angle view of a pale bluish-gray, slightly weathered steel truss bridge spanning water with a cloudy sky behind, its repeating triangular truss members and roadway silhouette visible despite the low resolution. +train_03287.png A low, dark-brown weathered wooden footbridge seen from a slight frontal angle showing worn plank texture and simple vertical railings, crossing calm reflective water with out-of-focus green trees and a pale sky behind it. +train_03381.png A low, single-span semicircular bridge of warm orange-brown brick with a rough masonry texture seen from a slightly angled, low side view, its stone parapet and curved arch reflected in the dark still water below against a soft blue sky background. +train_03605.png A short pedestrian bridge with faded turquoise-blue metal railings and a narrow gray walkway, seen from a low side-front viewpoint spanning calm dark water with an indistinct tree-lined shore and pale overcast sky behind, notable for its straight handrails and evenly spaced vertical posts. +train_03622.png A light-gray, slightly weathered masonry (stone/concrete) arched bridge is seen from a low frontal-left angle spanning calm reflective water, its repeating arch openings and simple parapet rail visible against a backdrop of green-brown trees and a soft overcast sky. +train_03689.png A low, frontal-angle view of a pale blue-painted, slightly weathered metal pedestrian bridge with a graceful curved arch and evenly spaced vertical railings, silhouetted against a bright overcast sky and indistinct waterfront in the background. +train_03811.png A narrow, light-gray metal bridge with a slightly weathered, smooth surface and a dark central roadway, seen from a frontal viewpoint spanning reflective water and set against a pale sky and indistinct treeline, with faint triangular lattice supports and vertical railings visible despite the low resolution. +train_03841.png A low, gently arched pale beige stone bridge with a slightly rough, mottled texture is shown from a side-front three-quarter viewpoint spanning dark reflective water, set against a grassy, tree-lined background and featuring a simple linear railing and visible arch beneath. +train_04115.png A side-view of a bold orange-red steel arch-truss bridge, the painted metal showing subtle weathering and a smooth, slightly mottled texture, with triangular latticework and vertical hangers visible from a slightly low angle against a pale sky and faint blue hills over dark water. +train_04133.png A low, gently curved light-tan bridge viewed from a slightly elevated front-left angle, its rough, weathered surface and dark underslung arch casting a shadow over blue water with a bright sky and a faint shoreline in the background. +train_04187.png A long, rust-colored metal truss bridge viewed almost side-on, its weathered, corrugated metal deck and repeating vertical supports forming a linear silhouette across calm blue water with a faint tree-lined shoreline and pale sky in the background. +train_04423.png A low-angle, head-on view of a short, rusty orange metal bridge with a rough, corroded texture, tubular handrails and vertical supports framing a grated or plank-like deck, set against a dark, indistinct nighttime background with faint warm lights. +train_04424.png A low-angle side view of a weathered, rusty-orange steel arch bridge with visible lattice truss and vertical supports, the coarse, flaking metal texture contrasting against a muted blue waterway below and a pale sky with a faint distant shoreline in the background. +train_04525.png A weathered reddish‑orange steel truss bridge with visible triangular lattice and riveted girders seen from a low side‑angle across its span, set against a backdrop of green tree‑covered banks and a pale sky, with the roadway and vertical supports discernible despite the low resolution. +train_04611.png A slightly low, frontal view of a short, pale-gray bridge with a smooth painted concrete deck and thin vertical metal railings spanning horizontally across the frame, a faint central post and under-deck shadowing visible, set against a pale sky and blurred green treeline in the background. +train_05111.png A low, gently arched pale tan footbridge with visible slatted railings and a slightly weathered wood texture is seen from a slightly off-center frontal viewpoint against a backdrop of green foliage and pale sky, with dark water or shadow beneath the span. +train_05343.png A low-angle, slightly oblique frontal view of a long, light-gray weathered stone arch bridge—its rough masonry texture, repeating semi-circular arches and stout piers visible across a dark reflective river with a tree-lined bank and indistinct buildings in the distant background. +train_05367.png A low-profile, pale blue-gray bridge viewed straight-on from a distance, its smooth, slightly weathered horizontal deck and thin railing stretching across a bright cyan sky and pale water background, with a darker boxy support at the left end and a small white rectangular element near the right. +train_05371.png A low-resolution image of a small, curved pedestrian bridge painted a rusty red with a weathered, slightly chipped texture, shot from a slight frontal angle along its length as it spans a calm pond with tree-lined grassy banks and a pale sky, the bridge’s arched rails and evenly spaced vertical balusters still discernible despite the blur. +train_05408.png A low oblique view of a rust-red metal arched truss bridge with a weathered, peeling-paint texture, its curved span and triangular lattice framework visible over dark water against a pale sky and indistinct shoreline. +train_05550.png A low, centered vanishing-point view of a narrow sunlit wooden footbridge whose warm orange-brown planks show a weathered, slightly rough texture and paired vertical posts with horizontal rails, extending over blue water toward a distant sky with faint shoreline greenery. +train_05562.png A low-oblique view of a bright orange-red steel bridge showing a painted, slightly weathered metal texture with visible truss-like arches and vertical supports, spanning over calm blue water with a pale sky and distant shoreline in the background. +train_05609.png A low-angle side view of a pale blue-gray arched metal bridge with a riveted lattice arch and vertical suspender beams rising over dark reflective water, the paint looking mottled and weathered against a tree-lined green embankment and an overcast sky. +train_05796.png A narrow, pale-gray concrete pedestrian bridge with a smooth deck and thin dark-blue metal railings featuring evenly spaced vertical balusters is seen from a centered, low frontal viewpoint stretching over muted blue-gray water toward a flat, hazy horizon under a washed-out sky. +train_05937.png A pale beige-gray, slightly mottled stone-or-concrete single-span arch bridge viewed from a low oblique side angle, its curved arch and low parapet rising above dark reflective water with blurred tree-covered hills and muted sky in the background. +train_05983.png A center-frontal view of a pale beige, slightly weathered concrete arch bridge with smooth surfaces and low parapet railings spanning greenish water, set against dense dark-green foliage and a pale blue sky, with evenly spaced arch openings and soft shadowing visible despite the low resolution. +train_06003.png A dark gray, weathered metal arched bridge seen head-on from a slightly elevated viewpoint, spanning water with indistinct trees and a pale sky in the background, its curved truss, vertical posts and low side railings faintly visible through the blur. +train_06031.png A pale gray–almost white–painted pedestrian bridge is shown from an oblique low viewpoint, its smooth curved arch and evenly spaced vertical railings creating a repeating linear texture above dark reflective water, with muted green trees and a pale sky behind and stone or concrete abutments at the ends. +train_06076.png A low-resolution image of a weathered rust-red arched pedestrian bridge, seen obliquely from the side so its curved span and repetitive vertical balusters are visible with flaking paint and rough metal texture, set against a pale blue sky and a dim reflective waterway with a faint shoreline in the background. +train_06189.png A narrow, weathered orange-brown wooden footbridge with rough planked texture and evenly spaced vertical posts and low railings is shown in a three-quarter perspective extending out over dark blue water beneath a pale blue sky, its tapering silhouette and simple structural posts remaining discernible despite the low resolution. +train_06217.png Seen from a slight side angle, the small arched pedestrian bridge is made of weathered pale-beige wood with a slatted deck and simple vertical balusters, spanning dark reflective water with dense green foliage and indistinct vegetation forming the blurred background. +train_06289.png A low, rectangular light-gray concrete bridge with a slightly weathered, ribbed texture and a simple metal railing, seen from a low side angle looking along its span across the frame against an overcast sky and bare trees, with boxy support piers and visible horizontal deck joints despite the low resolution. +train_06702.png A low, single-arched, light-tan stone bridge with a rough, weathered texture fills the center of the frame, viewed almost head-on from a slightly low angle as it spans dark reflective water and is flanked by dense green foliage beneath a pale sky, its rounded arch and short parapet clearly discernible despite the low resolution. +train_06784.png A low, weathered bluish-gray pedestrian bridge with thin metal railings and visible vertical supports is shown from a slight oblique frontal viewpoint spanning calm reflective water, set against a pale blue sky and a faint treeline on the distant shore. +train_06833.png A low, gently arched pale-gray painted metal bridge viewed head-on from near ground level, its smooth tubular railings and evenly spaced vertical supports forming a repeating silhouette against a clear blue sky and low dark horizon, the paint showing subtle weathering despite the low resolution. +train_06835.png A pale beige, weathered wooden arched footbridge viewed from a low three-quarter frontal angle, its slatted railings and plank texture discernible as it spans a small reflective pond with dense green foliage in the background. +train_06918.png A low, narrow, weathered light‑brown wooden footbridge viewed from a slight oblique end-on angle, its rough plank texture and simple short posts/railings visible as it spans over muted blue‑gray water with a pale, indistinct shoreline and sky in the background. +train_07074.png A low-resolution three-quarter side view of a short, pale-gray weathered stone bridge with a rough, blocky texture and mossy discoloration, featuring a single broad arch spanning calm greenish water whose reflection and a faint treeline under a pale sky form the blurred background. +train_07325.png A small weathered brown wooden footbridge with rough plank texture and simple vertical railings viewed from a low, angled side perspective, spanning calm water with dark, tree-covered banks in the blurred background and a triangular support visible beneath. +train_07350.png A low-angle, slightly off-center frontal view of a narrow, dark, matte-metal truss bridge with a coarse, weathered surface and visible triangular lattice members and vertical suspenders, silhouetted against a pale, cloudy sky with an indistinct treeline or structures in the distant background and a shadowed span beneath. +train_07601.png A low, faded white-painted pedestrian footbridge with closely spaced vertical balusters and a gently arched deck, viewed nearly head-on against a pale, hazy sky and indistinct shoreline, the paint showing weathered chips and rough wood grain despite the low resolution. +train_07604.png A low, light-gray concrete arch bridge seen from a shallow side/below angle, its rough, weathered surface and simple horizontal railing visible as it spans calm blue-green water with a hazy tree-lined shoreline and low buildings in the background. +train_07669.png A pale aqua-green steel truss bridge seen in side profile with repeating triangular lattice and thin vertical supports spanning low over calm blue water, backed by a low green treeline and clear blue sky. +train_07825.png A low-resolution diagonal view shows a narrow, slightly arched pedestrian bridge with weathered brown wooden planks and pale gray metal railings stretching over calm water, set against a green, tree-lined embankment and a pale sky. +train_07988.png A low-resolution photo shows a short, weathered tan-beige pedestrian bridge viewed from a slightly low, oblique frontal angle, its rough, sun-bleached planks and evenly spaced vertical posts forming a simple railing silhouette against a pale blue sky and indistinct shoreline. +train_07992.png A narrow yellow‑gold pedestrian bridge with a smooth, painted planked deck and evenly spaced vertical rail posts is seen from a low, head‑on viewpoint spanning calm reflective water, set against a green treeline and clear blue sky, its straight profile and repeating railing pattern distinguishable despite the low resolution. +train_08024.png A teal-green painted metal arch/truss bridge with a weathered, riveted lattice texture is shown from a low side viewpoint, the curved arch rising above an orange-brown roadway with visible diagonal members and vertical supports set against a pale cloudy sky and a faint shoreline background. +train_08232.png A small, light‑tan, slightly weathered arched pedestrian bridge shown in a three‑quarter side view, its evenly spaced vertical railings and wooden planks visible against a bright blue sky and flanking green foliage. +train_08325.png A low, narrow, weathered light-brown wooden footbridge viewed from a slight side angle, showing plank texture and simple vertical post railings spanning grassy ground with a pale sky and distant treeline in the background. +train_08400.png A small, weathered tan-stone single-arched bridge viewed slightly off-center from the front, its rough, mottled masonry and low parapet forming a shadowed semicircular opening over a rocky bed, with a grassy embankment, scattered shrubs and a patch of blue sky in the background. +train_08421.png A low, single-span pale beige stone arch bridge with a weathered, slightly rough texture and a low parapet punctuated by short vertical posts is shown from a slight frontal three-quarter viewpoint spanning dark reflective water, framed by grassy, tree-lined embankments and a patch of blue sky. +train_08425.png A low-angle side profile of a dark, weathered steel truss bridge with coarse industrial-textured girders and repeating vertical web members forming a lattice across the span, silhouetted against a pale overcast sky with a faint treeline and calm water reflecting the structure below. +train_08682.png A low, weathered dark-gray stone arch bridge is seen from a slightly low frontal viewpoint as a rough-textured semicircular span crossing calm reflective water, silhouetted against a pale, blurred sky and indistinct treeline in the background. +train_08695.png A low, narrow wooden footbridge seen from a slightly elevated frontal viewpoint, its weathered orange-brown planks and darker handrails showing linear, rough wood texture over a rocky streambed, set against blurred green foliage and a pale sky. +train_08749.png A low, horizontal bridge captured from a slightly low frontal angle appears as a dark, weathered-looking structure with regularly spaced vertical rail posts and a rough-textured deck silhouetted against an orange-pink sunset sky with a faint reflective body of water and distant shoreline behind it. +train_08816.png A narrow, weathered brown wooden footbridge with visible slatted planks and pale posts and rails stretches diagonally away from the viewer over calm blue water toward a hazy green shoreline and pale sky, seen in a slightly elevated three-quarter viewpoint. +train_08832.png A low-resolution side-angle view of a narrow metal truss bridge painted a weathered mustard-yellow with visible triangular latticework and vertical posts, receding diagonally into the frame against a hazy blue sky and distant green hillside, its rough, slightly rusted texture and thin railings clearly visible. +train_08839.png A low, single-arched tan stone bridge with visibly rough masonry texture seen from an oblique side-front viewpoint spanning calm dark water that mirrors the arch, set against a backdrop of leafy green trees and a pale blue sky. +train_08889.png From a low, three-quarter side angle the bridge appears as a weathered beige‑gray stone structure with a single semicircular arch and pronounced blocky masonry texture, topped by a low parapet and set against a bright blue sky with flanking green trees and deep shadow under the arch revealing the underside curve. +train_08938.png A low-resolution, slightly side-front view of a pale beige, weathered-textured arched bridge crossing calm reflective water, with repeating dark vertical supports and a low parapet set against a muted treeline and overcast sky. +train_09017.png A pale, slightly weathered concrete pedestrian bridge with a smooth single arch and simple vertical railings, photographed from a low oblique angle spanning a dark reflective surface with blurred green trees and a pale blue sky in the background. +train_09076.png A low-resolution, three-quarter view of a faded tan-beige, weathered wooden bridge with rough planks and visible vertical posts supporting a gently arched deck spanning darker water, set against soft greenish hills and a pale sky in the background. +train_09136.png A low, narrow wooden footbridge with weathered dark-brown planks and simple vertical railings is shown from a slightly angled frontal view, arching over calm reflective water with rocky banks and sparse, leafless trees against a muted overcast sky in the background. +train_09203.png A low, narrow, weathered light-brown wooden pedestrian bridge is seen from a slightly elevated frontal angle, spanning calm blue-green water with simple vertical-slat railings, subtle worn planks and faint reflections, backed by a blurred tree-lined shoreline. +train_09466.png A single, smooth off‑white central pylon with thin, radiating steel cables anchors a dark horizontal deck seen from a slightly low frontal viewpoint, set against a pale blue sky with a narrow band of darker water or land at the bottom. +train_09574.png A dark, nearly black, matte-textured bridge seen in silhouette from a slightly low, near‑side angle, with a single prominent vertical pylon and faint diagonal cables or supports visible along a smooth solid deck, set against a pale, overcast sky and a darker strip of water or land at the bottom. +train_10034.png Low-angle, three-quarter view of a rust-orange steel suspension bridge with coarse riveted truss towers and vertical cables, the metallic texture visible despite low resolution and the span receding over a gray waterway toward a muted, foggy city skyline. +train_10279.png A small, pale off-white arched pedestrian bridge with lattice-style railings and a weathered wooden deck, viewed from a low frontal angle as it spans murky brown water with blurred tree-lined banks and an overcast sky behind it, the repeating vertical posts and gentle hump of the span remaining discernible despite the low resolution. +train_10307.png A weathered light-blue metal truss bridge viewed from a low, slightly angled frontal-side perspective, its painted steel showing patchy rust and flaking texture across lattice girders and railings as it spans calm reflective water with a hazy treeline and cloudy sky in the background. +train_10558.png A low-angle view of a pale beige, weathered bridge with a straight horizontal deck and evenly spaced dark vertical supports, spanning turquoise water with blurred tree-covered hills and rocky shoreline in the background. +train_10784.png A small, low-arched pedestrian bridge of weathered brown wood with a grainy, worn texture and evenly spaced vertical rail posts, seen head-on from a slightly elevated viewpoint against a pale, indistinct background. +train_10797.png A rust-colored, weathered steel truss bridge seen from a low, side-angled viewpoint, its repeating triangular lattice of riveted beams and slightly arched top chord spanning over a strip of blue water with tree-lined banks and pale sky behind. +train_10809.png A small arched pedestrian bridge painted a warm brown with a worn, rough-planked wooden texture and vertical slat railings, captured from a slight frontal-side angle showing its gentle curve over dark reflective water and set against blurred green foliage and a pale sky. +train_10907.png A frontal, slightly low-angle view down the length of a narrow, rusty-brown bridge showing a rough, weathered metal/wood texture, repeating vertical posts and horizontal railings forming a vanishing-point corridor, with an overcast gray sky and indistinct tree-lined/urban background. +train_10998.png A narrow, weathered gray footbridge viewed head-on from a low frontal angle, its slightly arched wooden deck and evenly spaced vertical railings showing worn plank texture, set against a pale sky and indistinct tree-lined shoreline in the background. +train_11012.png A low, gently arched small bridge of weathered warm-brown wooden planks with visible grain and simple vertical baluster railings, shown in a three-quarter frontal view spanning calm reflective water with a green tree-covered hillside and pale blue sky behind it. +train_11022.png A low-angle side view of a light-gray, slightly weathered concrete bridge with a low solid parapet and evenly spaced vertical posts receding into the distance over turquoise water, set against a distant tree-lined shore and pale cloudy sky. +train_11224.png A narrow, faded turquoise-painted metal pedestrian bridge is seen from a shallow side angle, its flat deck and evenly spaced vertical railings visible above dark water with a pale shoreline and muted sky in the background. +train_11244.png A low-oblique view of a small teal-green painted bridge with a weathered, slightly mottled surface and thin horizontal railings with vertical posts, receding to the right against a blurred dark-green foliage backdrop and a pale sky above. +train_11378.png Oblique side view of a low, rusty-orange bridge with weathered, rough-painted metal trusses and repeating vertical members, stretching diagonally across a blue-green river with tree-lined banks and a pale sky background. +train_11403.png A small, weathered reddish-brown wooden arched pedestrian footbridge with visible plank grain and low post-and-rail sides, viewed slightly off-center from the front against a blurred grassy, tree-lined background with a shadowed gap beneath the span. +train_11450.png A narrow, low-arched orange-brown bridge with weathered vertical railings and a textured plank surface, seen from an oblique frontal angle spanning a calm greenish pond with leafy trees and a stone embankment visible behind it. +train_11482.png A pale beige, weathered stone single-arched bridge seen from a low three-quarter frontal viewpoint, its rough-textured semicircular arch casting a dark shadow over greenish water with a low parapet on top and a bright blue sky and patchy vegetation in the background. +train_11572.png A narrow, weathered light-brown wooden footbridge seen from a slightly angled frontal viewpoint, its rough slatted deck and evenly spaced vertical posts with horizontal rails leading into dense green foliage in the background. +train_11573.png A low-resolution, pale beige, weathered stone bridge seen in a three-quarter frontal view stretching left-to-right with evenly spaced rounded arches and solid piers, a blocky textured masonry surface, and a backdrop of muted green foliage and a pale sky. +train_11590.png A low, pale-gray concrete beam bridge with a smooth, slightly weathered surface and evenly spaced vertical metal rail posts, captured from a diagonal frontal viewpoint showing its flat deck spanning a narrow waterway with grassy banks and bare trees under an overcast sky. +train_11612.png A low-resolution, side-angled view of a teal-blue metal truss bridge with repeating triangular webbing and vertical posts showing a slightly rough, rust-speckled texture, spanning over a dark water surface with a pale sky and indistinct sandy shoreline in the background. +train_11613.png A low, slightly frontal view of a narrow, weathered dark-brown wooden footbridge with slatted planks and simple vertical railings forming a gentle arch over a muted waterway, set against an indistinct pale shoreline with sparse green vegetation and an overcast sky. +train_11783.png A weathered light-brown wooden footbridge with rough plank texture and simple vertical-post railings, captured from a low oblique frontal viewpoint as it gently arches over a narrow dark stream, set against blurred green foliage and grassy banks with visible gaps between the deck planks. +train_11860.png A low-resolution three-quarter frontal view of a small bright orange-painted metal arch bridge with a slightly weathered, glossy texture, thin vertical suspension rods and a gently curved deck spanning calm blue-green water, set against indistinct green foliage and a pale sky. +train_11891.png A low, pale-gray concrete bridge with a coarse, mottled surface and simple low railings is shown head-on from a slightly low angle, set against a bright sky and a distant band of trees, with repeating vertical supports and a central span visible despite the low resolution. +train_11957.png A long, low, dark bluish-gray steel-and-concrete bridge is shown from a slightly low, oblique side view, its weathered, slightly rust-streaked metal railings and ribbed concrete deck forming a repeating row of vertical lamp posts and supports that recede into a hazy, overcast sky above calm water with a faint shoreline in the distance. +train_11959.png A faded powder-blue metal truss bridge with peeling, slightly rust-streaked paint, seen in a diagonal side-front view receding to the right over calm water with a pale sky and low shoreline in the background, its lattice framework and vertical supports visible despite the low resolution. +train_12005.png A faded light-gray metal truss bridge with a weathered, slightly rust-streaked surface is shown from a low oblique frontal viewpoint spanning a dark waterway, backed by a hazy sky and tree-covered embankment, its distinctive triangular lattice truss panels, vertical posts and straight deck clearly visible despite the low resolution. +train_12123.png A slightly oblique side view of a small arched pedestrian bridge painted a faded reddish-brown with weathered wooden planks and simple vertical-lattice railings, standing over a pale, likely snow-covered ground with bare trees and an overcast sky in the background. +train_12178.png A low-angle frontal view of a narrow, rust-colored pedestrian bridge with rough, flaking metal surfaces and vertical railings that create converging lines toward the center, set against a pale sky and distant green trees. +train_12333.png A weathered rust-orange steel arch bridge captured from a low frontal viewpoint, its riveted arched truss and repeating vertical supports creating a textured lattice above a dark waterway with a pale sky and distant tree line in the background. +train_12497.png A small reddish-orange metal arch bridge seen from a low side angle, its smooth painted texture and vertical railings visible despite pixelation as it spans calm blue water with a pale sky and indistinct shoreline in the background. +train_12551.png A small, vividly orange-red, smoothly painted arched pedestrian bridge with evenly spaced vertical balusters and a gently curved deck, seen from a slightly elevated frontal three-quarter view spanning dark reflective water with blurred green foliage in the background. +train_12676.png A narrow, weathered light-brown wooden footbridge with visible horizontal plank texture and simple vertical-post railings is seen from a low, centered viewpoint receding into the distance against a muted green, marshy background with indistinct trees. +train_12787.png A low, gently arched pedestrian bridge with weathered brown wooden planks and pale, evenly spaced vertical railings, seen from a slight diagonal frontal viewpoint as it spans a narrow, dark waterway with muted green vegetation and a pale sky in the background. +train_12799.png Front-facing view of a small, dark matte-black arched pedestrian bridge with smooth curved railings and a lighter gray plank-like walkway, centered over calm reflective water with a blurred backdrop of green trees and pale sky. +train_13033.png Side-profile of a low-arched, smooth teal-painted bridge seen against a pale, washed-out sky and water backdrop, with a glossy, uniformly colored deck, darker shadowed underside, and faint thin railings visible along the top edge. +train_13087.png A low, reddish-brown wooden footbridge with vertical slatted railings and a slightly weathered, grainy texture, photographed from a near-frontal, slightly elevated viewpoint spanning calm reflective water with blurred green foliage and sky in the background. +train_13285.png Side-view of a small, rusty orange-brown arched metal bridge with visible vertical supports and a rough, weathered texture, spanning calm blue water that mirrors the structure against a pale sky and distant shoreline. +train_13408.png Frontal view of a small suspension-style bridge bathed in warm orange light, its smooth metallic towers and taut vertical cables forming linear, glowing textures above a dark reflective water surface and silhouetted shoreline under a dusky sky. +train_13517.png A small single-span reddish-brown brick arch bridge with rough, weathered masonry seen from a low, slightly angled frontal view spanning calm greenish water, its curved arch and low parapet reflecting in the water against a pale sky and a verdant, grassy bank with patches of moss. +train_13818.png A narrow, yellow‑orange painted metal pedestrian bridge with tubular handrails and visible truss-like vertical supports and riveted joints, seen from a low, near‑side oblique angle so the walkway recedes into the distance over reflective blue water with an indistinct grassy/rocky shore at the right, the paint appearing slightly weathered with a matte, textured finish. +train_13991.png A small pedestrian bridge with weathered light-brown wooden planks and pale-painted metal railings with evenly spaced vertical posts, seen from a low frontal angle as it spans a shallow, grassy channel backed by dense green trees and a patch of blue sky, the deck showing worn texture and the short span resting on low grassy embankments. +train_14134.png A slightly elevated, angled side view of a narrow, weathered orange-brown wooden bridge with darker railings and worn planks forming a gentle arch over pale blue water, with a visible stone/concrete support at the near end and a soft, out-of-focus sky/water background. +train_14136.png A low-resolution shot of a short pedestrian bridge seen diagonally from the near left, its warm honey-brown, slightly weathered wooden planks and simple vertical railings visible against calm reflective water below and a pale blue sky with an indistinct tree-lined shore in the background. +train_14194.png A low, gently arched tan wooden footbridge with weathered planks and evenly spaced vertical slats in its railing is shown from a near‑frontal, slightly elevated viewpoint spanning calm blue water against a soft blue sky with small hints of green vegetation at the banks. +train_14320.png A light-gray, rough-textured single-span stone or concrete arch bridge viewed head-on from a slightly elevated angle, its curved arch and low parapet reflected in the calm water below with a soft sky and indistinct tree line in the background. +train_14371.png A low, weathered gray-brown wooden footbridge with visible plank texture and simple vertical railings is shown at a slight side angle forming a shallow arch over water, set against a blurred green treeline and pale sky. +train_14411.png A low-resolution side view of a pale concrete beam bridge with a rough, weathered texture and evenly spaced vertical piers spanning calm water, framed by low hazy hills and a muted sky in the background. +train_14538.png A close-up, slightly angled side view of a small bright cobalt-blue painted bridge railing or beam with a glossy, slightly uneven paint texture catching highlights, set against a very dark background with a narrow brownish strip of deck visible at the right and a faint vertical support. +train_14684.png A small reddish-brown, weathered wooden arched footbridge with a slatted deck and simple vertical railings seen from a slightly elevated three-quarter front view, spanning a dark reflective pond and set against blurred green shrubs and trees. +train_14878.png A weathered light-brown stone arch bridge with a rough, slightly moss-speckled surface seen from a low, slightly off-center frontal viewpoint showing its single broad arch spanning calm reflective water, framed by muted green foliage and a pale sky background. +train_14933.png A low, pale tan, weathered wooden pedestrian bridge with a flat deck, evenly spaced vertical posts and simple railings is shown from a slightly oblique frontal viewpoint spanning calm reflective water, set against a pale sky and low sandy shoreline with sparse vegetation. +train_15081.png A small, warm beige stone bridge with rough, blocky masonry and a single semicircular arch casting a dark shadow/reflection on the water below, seen from a low frontal-left viewpoint against a grassy, tree-lined bank and pale sky. +train_15144.png A low frontal-angle view of a weathered beige-gray stone arch bridge spanning calm water, its rough block-masonry texture and moss-darkened joints visible beneath a single deep shadowed arch, with leafy green banks and an overcast sky in the background. +train_15159.png A low, narrow pedestrian bridge coated in faded teal-green paint with visible rust patches and peeling texture, seen from a shallow frontal-oblique viewpoint that reveals its flat horizontal span and simple vertical-railed sides as it crosses calm water with grassy, tree-studded banks and indistinct structures in the hazy background. +train_15663.png A low-resolution frontal view shows a small single-arched beige stone bridge with a rough, mottled texture spanning a calm greenish stream, framed by dense green foliage on the banks and a pale sky above, its arch and a faint reflection visible in the water. +train_15685.png A centered frontal view of a small single-span beige‑ochre stone arch bridge with a rough, weathered, slightly mottled texture and low parapet walls, crossing dark reflective water with green trees and grassy riverbanks visible behind under a pale sky. +train_15934.png A low-angle, slightly off-center view of a single-span rounded stone bridge with warm tan-brown, rough-textured masonry and a low parapet, spanning dark reflective water with a clear curved arch shadow beneath and dense green foliage with patches of sky visible in the background. +train_16043.png A low, pale tan wooden footbridge with weathered planks and simple vertical railings is shown in a shallow three-quarter frontal view crossing light green water, set against dense dark green foliage and a mossy bank with visible support posts and an angled perspective that reveals its length. +train_16370.png A low-angle, side-oblique view of a short, rusty orange-brown arched bridge with a rough, weathered metal texture and repeating vertical supports and horizontal deck planks, spanning over dark blue water with a dim, indistinct shoreline and sky in the background. +train_16677.png A weathered reddish-brown wooden footbridge with evenly spaced vertical slats and a horizontal handrail, shown in a three-quarter side view spanning muted green water with tree-covered banks and a pale sky behind. +train_16829.png A low, light-gray concrete bridge with weathered, rust-streaked orange patches and a coarse, pitted texture is shown in a three-quarter side view spanning left-to-right, its curved arches and vertical railings visible against a pale sky and a muted waterway or shoreline in the background. +train_16869.png An off-white, weathered stone or concrete single-arch bridge seen from a low, slightly off-center frontal viewpoint spanning a dark calm river, its textured block-patterned underside and low parapet topped by simple vertical posts visible against a backdrop of bare trees and an overcast sky. +train_16898.png A low, pale blue-painted metal bridge with simple horizontal railings and a slightly weathered, peeling texture is seen from a near-frontal diagonal viewpoint spanning calm water with a low, tree-lined shoreline and overcast sky in the background. +train_16943.png A pale gray, rough‑stone arch bridge is shown from a low, side‑on viewpoint spanning dark reflective water beneath an overcast sky and indistinct treeline, its single semicircular arch and blocky masonry texture still apparent despite the low resolution. +train_17074.png Seen from a slightly low, frontal‑oblique angle, the image shows a small bright orange‑red painted metal arch bridge with a smooth tubular arch and regularly spaced vertical balusters spanning a calm waterway, set against an overcast pale sky and indistinct shoreline buildings, with its simple arch‑and‑railing silhouette still clear despite the blur. +train_17175.png A low-angle frontal view of a multi-arched beige-tan stone bridge showing rough, blocky masonry with darker, mossy streaks at the waterline, its arches reflected in the river below and pale, indistinct buildings and sky forming the blurred background. +train_17176.png Seen from a low, frontal-left angle, a pale gray, slightly arched bridge with a smooth but weathered concrete texture and simple vertical white railings spans blue water, framed by blurred green trees and indistinct buildings on the far shore. +train_17334.png A low, pale-gray painted arched pedestrian bridge with vertical slatted railings and a slightly weathered, rough surface, shown from a three-quarter frontal viewpoint spanning calm water with blurred green foliage and pale sky in the background. +train_17359.png A low, pale-gray, slightly weathered concrete pedestrian bridge is seen from a shallow side-front angle spanning calm dark water, its simple low metal railings and gentle arch visible against a blurred, tree-lined shoreline and overcast sky. +train_17548.png A long, light tan/cream metal bridge with a weathered, slightly rust-speckled texture is shown in a three-quarter frontal view stretching horizontally across greenish water, its repeating vertical truss supports and low arched profile set against tree-covered hills and an overcast sky. +train_17653.png A low, three-quarter side view of a small orange-red arched wooden pedestrian bridge with weathered, rough planks and simple vertical railings, spanning dark reflective water with blurred greenish-brown foliage and tree trunks in the background. +train_17752.png A small rust-orange, weathered metal arched bridge seen from a slight oblique-front viewpoint, spanning a narrow dark waterway with grassy banks and trees in the background, its curved top and open lattice railings with peeling paint visible despite the blur. +train_17890.png A low, flat pedestrian bridge painted a faded off-white with weathered, slightly textured planks and simple vertical posts and horizontal rails, seen from a front-right oblique viewpoint spanning a narrow paved channel, with blurred trees and low buildings in the background and the repeating rail posts and deck edges clearly discernible despite the low resolution. +train_17965.png A narrow, slightly arched pedestrian bridge of weathered pale-tan wood with visible plank grain and simple vertical rail posts, seen from a low frontal-side viewpoint against a soft, out-of-focus backdrop of muted vegetation and pale sky, with compact stone or earthen abutments at each end discernible despite the low resolution. +train_18010.png A light-gray, smooth-surfaced low-profile bridge captured from a slightly low frontal viewpoint, its long slender deck and shadowed underside stretching horizontally over dark rippling water with a faint vertical pylon near center and a pale overcast sky with an indistinct treeline in the background. +train_18082.png A weathered rust-red steel truss bridge seen in a low oblique side view spanning calm water, its angular latticework and riveted beams visible against a pale sky and a low, tree-lined shore, the coarse, corroded texture readable even at low resolution. +train_18392.png A narrow, weathered brown wooden pedestrian bridge is seen head-on from the approach, its rough, plank-textured deck flanked by evenly spaced vertical posts with horizontal rails and diagonal braces, set over water with indistinct dark shoreline and a pale, hazy sky in the background. +train_18434.png A pale blue, slightly mottled metal arched bridge is shown head-on, its curved truss and vertical webbing and slender railings spanning a dark water channel, set against a light sky and indistinct urban structures in the background. +train_18549.png A compact sky‑blue painted metal bridge with glossy, slightly chipped paint and rectangular truss posts and horizontal rails is shown from a low three‑quarter frontal viewpoint, spanning a pale sandy/paved foreground against a bright, washed‑out sky background. +train_18568.png A low, frontal view of a pale cream-beige arched pedestrian bridge with a smooth, slightly weathered surface and simple vertical railings spanning dark water, set against a light cloudy sky and a distant treeline with visible masonry abutments. +train_18638.png A low-resolution view of a short bluish-gray, weathered stone bridge photographed at an oblique angle, showing three dark semicircular arches spanning water, a pale parapet along the top, and a hazy urban backdrop of light-colored buildings and sky. +train_18688.png A small, glossy bright-red arched pedestrian bridge with evenly spaced vertical slatted railings and visible plank texture, seen from a near-front three-quarter viewpoint spanning dark reflective water with blurred green foliage and indistinct park structures in the background. +train_18814.png A slightly low, oblique view of a small pedestrian bridge showing warm, weathered brown wooden planks with visible grain and slight wear, curved handrails supported by evenly spaced vertical posts, and the structure receding to the right against a soft blue expanse (water or sky) and indistinct green foliage in the background. +train_18873.png A pale, weathered wooden pedestrian bridge with a subtle arch and evenly spaced vertical railings is seen from a low frontal angle spanning a calm reflective pond, backed by indistinct green trees and a grassy bank, the worn plank texture and simple structural lines remaining visible despite the low resolution. +train_18956.png Low-angle view from one end along a short, pale-gray concrete bridge with a rough, weathered texture and faint brown staining, simple vertical metal posts/railings and a square support column at the left, set against a bright blue sky with soft clouds and a low grassy hillside to the right. +train_18965.png An orange‑red, weathered steel suspension bridge with two prominent towers and fanlike suspension cables, viewed obliquely from the front‑side as it spans blue‑gray water against hazy hills and sky, with the roadway and truss outlines still discernible despite low resolution. +train_18980.png An arched, narrow footbridge of warm brown, weathered wood with slatted railings and a plank deck, seen from a slightly off‑center frontal three‑quarter viewpoint spanning a small reflective stream with blurred green foliage and grassy banks in the background. +train_19093.png A rust-red metal truss pedestrian bridge with flaking paint and rough, corroded texture is shown from a centered, slightly low-angle frontal view, its receding lattice of diagonal braces and riveted posts framing a weathered wooden plank deck against a muted overcast sky and bare trees in the background. +train_19108.png A low-resolution view of a pale beige, rough-textured stone arch bridge seen from a slight frontal-left angle, showing a single rounded arch casting a dark shadow over the water and low parapet, set against muted green-brown trees and an overcast sky. +train_19160.png A low, teal-painted metal arched truss bridge with visible vertical suspenders and lattice railings spans calm water, seen from a near-frontal, slightly angled low viewpoint that reveals its side profile and faint reflection, with a shoreline of small buildings and an overcast sky in the background. +train_19177.png A low, dark brown wooden footbridge with weathered, rough-planked texture seen from a slight frontal three-quarter angle receding into the distance, featuring simple slatted railings and diagonal supports and set above a reflective water surface with blurred green foliage behind. +train_19275.png A rust-orange metal truss bridge captured from a low oblique angle, its riveted, slightly weathered steel lattice and diagonal beams receding into the distance with triangular openings visible, set against a deep blue twilight sky and faintly lit water or city lights in the background. +train_19663.png A side-on, slightly diagonal view of a pale, weathered steel truss bridge with a light gray-beige, slightly mottled metal surface and prominent triangular lattice and vertical supports spanning dark water, set against a hazy blue sky and low green-brown shoreline. +train_19739.png A small arched footbridge of orange-brown, weathered wood with visible slatted decking and simple vertical railings, shown from a slight side-front angle spanning dark reflective water with blurred green foliage and dappled light in the background. +train_20119.png A slightly elevated frontal view of a pale-gray arched bridge with thin horizontal railings and a smooth, metallic-looking surface, set against a bright blue sky and a light sandy shoreline or embankment in the background. +train_20126.png A narrow, straight footbridge of sun-bleached, weathered wooden planks with low light-colored railings is shown from a slightly elevated three-quarter frontal viewpoint, spanning dark water with green vegetation and low, hazy treelines in the overcast background and a small indistinct figure near the far end for scale. +train_20192.png A low-angle side view of a pale beige, weathered concrete bridge with faint stains and a smooth surface, simple vertical piers and a low guardrail, spanning calm blue water under a clear sky with a distant shoreline. +train_20193.png From a low frontal three-quarter viewpoint, a short, narrow arched footbridge of weathered dark-brown timber with visible vertical balusters and textured plank decking spans calm water that reflects its underside against a muted sky and a tree-lined shore in the background. +train_20317.png A low, single‑arched warm tan stone bridge with rough, blocky masonry and a low parapet, seen from a slight side‑front angle as it spans calm blue‑green water, with tree‑lined banks and a pale sky in the background and the arch faintly reflected on the surface. +train_20567.png A pale, weathered bridge with a slightly textured, off-white surface and horizontal slatted railing forming a gentle arch, seen from a near-center, slightly angled frontal viewpoint against a blurred greenish treeline and a dark shadowed area beneath the span. +train_20605.png A low, light-brown, weathered wooden footbridge with visible plank texture and simple vertical posts/railings, seen from a slightly elevated frontal angle as it spans a narrow reflective waterway, set against a backdrop of dense green foliage and a pale blue sky. +train_20958.png A narrow, weathered brown wooden footbridge with slatted planks and evenly spaced vertical posts and handrails, viewed from a low oblique angle as it extends toward the center-right over calm blue‑green water beneath a pale sky. +train_21150.png A small arched pedestrian bridge seen from a slightly elevated, head-on angle, with weathered light-brown wooden plank decking showing grain, smooth white-painted balustrades with evenly spaced vertical posts and a visible curved under-arch over dark water, set against a blurred backdrop of green foliage and pale sky. +train_21355.png A pale gray, smooth-metal single-arch bridge photographed from a low, oblique side angle against a bright blue sky and distant low hills, its span showing repeating vertical supports and thin railings that give a ribbed, industrial texture despite the low resolution. +train_21364.png An oblique frontal view of a weathered orange-red metal truss bridge spanning calm blue water, its riveted triangular lattice and horizontal roadway clearly visible against a pale-blue sky and distant green shoreline, with flaking paint and rust streaks accentuating the textured steelwork. +train_21432.png Low-angle frontal view of a small, weathered beige concrete arch bridge with a mottled, rough texture and simple vertical railings, its semicircular span and abutments mirrored in calm dark water against a backdrop of blurred green trees and pale sky. +train_21464.png A small, gently arched stone bridge seen from a slight side angle, its rough, weathered light-gray masonry mottled with darker patches and topped by a simple railing, spanning dark reflective water with blurred green foliage and a pale sky in the background. +train_21580.png Seen from a low, slightly off-center frontal viewpoint, the photo shows a small single-span arched bridge of warm reddish-brown, weathered brick with rough mortar texture and a dark metal railing, spanning a narrow reflective canal with indistinct buildings and bare trees in the background. +train_21658.png A low-oblique view of a bright orange-red painted steel bridge with a riveted truss/arch texture and vertical suspender elements, silhouetted against a pale blue sky with a dark shoreline or roadway visible beneath. +train_21748.png A frontal, slightly off-center low-angle view of a small bright red painted metal bridge with a smooth, glossy finish and visible arched truss and vertical railings, set over wet reflective pavement in a dim urban/nighttime scene with blurred buildings and streetlights in the background. +train_21827.png A low-resolution image shows a short rust-orange metal pedestrian bridge with a slightly arched deck and evenly spaced vertical railings, viewed nearly head-on from a slight elevation against a pale blue sky and indistinct distant shoreline, the paint appearing weathered with streaky, textured rust. +train_22029.png A centered, slightly low-angle frontal view of a narrow green-painted riveted steel truss bridge with triangular lattice sides and vertical posts, the weathered, textured paint and traces of rust visible and mirrored in the calm dark water below against a backdrop of bare trees and an overcast gray sky. +train_22039.png An oblique, slightly elevated view of a narrow pedestrian bridge with weathered brown-gray wooden planks and darker brown vertical railings, showing the rough plank texture and simple post-and-rail construction as it stretches toward a blurred tree-lined background and pale sky. +train_22290.png A pale gray, slightly weathered concrete arch bridge captured in side-on profile from a low viewpoint, spanning calm greenish water with a grassy shoreline and blue sky with scattered clouds behind, its simple curved silhouette and evenly spaced vertical supports faintly visible despite the low resolution. +train_22342.png A pale turquoise/teal painted metal arched bridge with a smooth, slightly reflective surface seen from a low oblique side view, its repeating vertical supports/truss members forming a delicate lattice spanning over water with a pale cloudy sky and faint shoreline in the background. +train_22493.png A short, curved pedestrian bridge in a warm reddish-brown with a weathered, grainy surface is shown from a front-left oblique viewpoint spanning a small blue pond, set against leafy green parkland, and is distinguished even in the blur by its smooth arched span and simple vertical railings with faint stone supports. +train_22553.png A low-slung, weathered rust-orange steel truss bridge is seen in side view from near the water, its repeating vertical supports and lattice girders forming a rhythmic silhouette above calm, reflective water under a pale blue-gray sky with a faint shoreline beyond. +train_22658.png From a slightly elevated, frontal viewpoint the image shows a small, white-painted arched pedestrian bridge with smooth, slightly weathered slatted railings and vertical posts spanning dark, rippled water, framed by a rocky foreground and a pale blue sky with distant shoreline in the background. +train_22943.png A low, short pedestrian bridge painted a faded beige–tan with weathered wooden planks and thin vertical balusters is shown from a slightly off‑center frontal viewpoint spanning calm water with a faint shoreline and pale sky in the background, its simple triangular-support framing and shallow arch visible despite the low resolution. +train_23014.png A narrow, weathered brown wooden footbridge with visible parallel plank texture and low railing posts stretches diagonally from the lower foreground toward the upper right, viewed at an oblique angle against a bright blue sky and a pale sandy shoreline on the horizon. +train_23072.png A narrow, rust-orange metal truss bridge with a weathered, peeling-paint texture is shown from a centered, head-on viewpoint looking down its receding deck toward a vanishing point, framed by dense green foliage and a pale sky, with repeating triangular webbed truss members and slender handrails visible despite the low resolution. +train_23154.png A low-resolution side-angle view of a small, rusty-orange metal truss bridge with a coarse mottled rust texture, dark brown triangular supports visible beneath and thin top railings, set against a pale overcast sky and an indistinct light-gray background. +train_23271.png A weathered light-brown wooden pedestrian bridge with a gentle arch and evenly spaced vertical balusters seen from a slightly elevated three-quarter viewpoint, set against bright blue water and a pale sky, its planked texture and simple rail posts visible despite the low resolution. +train_23297.png A small arched red-orange wooden footbridge with decorative curved slatted railings and a slightly weathered painted texture, seen from a slightly elevated three-quarter frontal view spanning a calm reflective pond with stone embankments and green trees and shrubs in the background. +train_23322.png A low-oblique side view of a narrow green‑blue painted metal bridge with a slightly weathered, matte texture, its long span receding left-to-right lined with repeating vertical supports and thin suspension cables above a dark roadway, set against a pale sky and an indistinct treeline on the distant shore. +train_23444.png A low-angle view along a narrow, slightly arched footbridge surfaced with weathered pale-brown wooden planks showing grain and gaps, flanked by simple vertical railings and posts, set against a blurred green treeline and an overcast gray sky. +train_23626.png A light gray, metallic-appearing arched bridge with repeating vertical supports and a faint ribbed texture on the deck, shown in a low three-quarter side view spanning a calm reflective river with tree-lined banks and an overcast sky. +train_23655.png A narrow reddish-brown wooden pedestrian bridge with weathered, rough planks and simple vertical metal railings, seen obliquely from one end as it spans between urban brick buildings with a street and blurred structures in the background. +train_23748.png Seen from a low oblique frontal angle, the small narrow bridge appears as a warm brown, weathered wooden-plank span with pale, slightly worn railings and vertical supports, crossing a dark reflective water channel with indistinct green foliage in the background. +train_23918.png A low, narrow orange-brown wooden footbridge seen from a shallow oblique frontal viewpoint, showing weathered plank grain and simple vertical white railings, spanning bright turquoise water with indistinct green foliage on the far bank. +train_23920.png A low, light-tan wooden pedestrian bridge with weathered planks and evenly spaced vertical balusters and horizontal handrails is seen nearly head-on crossing a narrow reflective stream, framed by bright green grassy banks and clustered trees under a pale sky. +train_24113.png A small, reddish‑orange painted wooden footbridge with vertical balusters and a slightly glossy, weathered texture, seen from a slightly elevated oblique viewpoint that emphasizes the receding walkway and gentle arch, set against blurred green‑brown foliage and dark water or shadow beneath, with patches of peeling paint and shadowed gaps between slats visible despite the low resolution. +train_24144.png A low-resolution, oblique view of a short teal/blue-painted pedestrian bridge with evenly spaced vertical railings and a ribbed plank-like deck running diagonally over a calm waterway, set against grassy banks and scattered trees in the soft, hazy background. +train_24250.png A grainy, low-resolution image of a rust-orange suspension bridge seen obliquely from the waterline, its twin vertical towers and faint diagonal cables silhouetted against a pale blue sky and calm water with indistinct shoreline buildings in the background. +train_24292.png A low, weathered beige-gray masonry bridge seen from an oblique, near-water viewpoint revealing a series of semicircular stone arches with rough, moss-flecked texture and darker mortar lines, set against a tree-lined riverbank and a muted sky with soft reflections in the calm water below. +train_24312.png A low, frontal view shows a single-semicircular stone bridge of weathered tan-and-gray blocks mottled with green moss and lichen, its rough, uneven texture and low parapet reflected in the dark, still water beneath, with dense green foliage and trees forming a blurred natural backdrop. +train_24355.png A small bright blue painted arched metal pedestrian bridge, seen from a low front-left viewpoint, with lattice-style railings and a slightly weathered glossy-metal texture, spanning calm reflective water with trees and an overcast sky in the background. +train_24388.png A small, curved dark-red wooden pedestrian bridge with weathered plank texture and simple vertical rail posts is seen from a slight side-front angle spanning a green, foliage-lined pond with indistinct trees and muted sky in the background. +train_24436.png A low, slightly angled frontal view of a short, blue-painted metal pedestrian bridge with vertical white posts and a ribbed, corrugated-looking deck surface, spanning calm water with indistinct dockside buildings and a pale sky in the background. +train_24447.png A low-angle frontal view shows a pale tan, slightly weathered concrete bridge spanning left to right over dark water, with evenly spaced vertical piers and a simple horizontal railing, set against a bright blue sky and a faint tree-lined shore in the background. +train_24451.png A narrow rust-red pedestrian bridge with weathered, flaking paint and simple vertical railings viewed from a slight frontal angle, spanning dark water with dense green foliage and trees in the background, its basic metal truss and worn surface still discernible despite low resolution. +train_24860.png An off-white, gently arched pedestrian bridge with a weathered, plank-like texture and low vertical railings, seen from a near-frontal vantage spanning dark reflective water with blurred green foliage in the background. +train_24896.png A small rust-red arched pedestrian bridge with a lattice-truss and vertical balusters, photographed from a low three-quarter side view against a pale blue sky and sparse green foliage, its weathered, flaking paint and riveted metal texture visible despite the low resolution. +train_25148.png A narrow teal blue‑green metal truss bridge viewed from a low oblique angle along its deck, the weathered, slightly peeling paint and faint rust on repeating vertical and diagonal lattice railings visible as they recede toward a pale, foggy sky and indistinct shoreline in the background. +train_25392.png A narrow, weathered brown wooden footbridge seen from a low oblique viewpoint along its length, with worn, slightly glossy planks and evenly spaced vertical posts and slatted handrails, spanning calm dark water with blurred green foliage and a pale sky in the background. +train_25459.png A narrow, weathered gray-brown wooden pedestrian bridge with rough, plank texture and evenly spaced vertical posts and low railings, photographed from a centered low-angle looking down its length toward a hazy blue sea horizon and pale sky with a faint distant structure at the far end. +train_25498.png A low, slightly left-angled view of a weathered, rust-speckled brown metal bridge with open lattice railings and vertical posts, the deck receding into the distance against a bright turquoise waterfront and pale blue sky. +train_25527.png A side-angle view of a short, rusty-orange metal truss bridge with repeating triangular lattice spans and a weathered, slightly corrugated surface crossing calm water, set against a hazy gray sky and an indistinct treeline/shoreline in the background. +train_25743.png A weathered dark-red covered wooden bridge with peeling paint and visible vertical planks, seen from a slightly off-center frontal viewpoint spanning a calm pale-blue waterway with a faint tree-lined shore and pale sky in the background. +train_25921.png A low, narrow, weathered brown wooden footbridge with visible plank texture and simple vertical railings, photographed nearly head‑on as it spans muted bluish water, set against indistinct greenish‑brown foliage and a pale sky with faint diagonal support braces visible. +train_26080.png A small, white-painted arched pedestrian bridge is shown from a slightly elevated frontal angle, its smooth, weathered planks and evenly spaced vertical balusters forming a repeating rhythm over a dark water or shadowed band, set against a pale bluish sky or distant treeline background. +train_26138.png A weathered rust-red arched metal truss bridge with a narrow deck and repeating triangular lattice visible from a near-end viewpoint looking along its length against an overcast gray sky and an indistinct treeline in the background. +train_26192.png A distant, straight-on view of a dark gray, almost silhouetted suspension bridge with two tall vertical towers and faint diagonal cables, its smooth metal deck rendered pixelated by low resolution as it spans a calm pale-gray river beneath an overcast sky. +train_26477.png A low, gently arched light-brown wooden pedestrian bridge with evenly spaced vertical slats and a slightly weathered plank texture, seen from a shallow side-front angle spanning dark water, with blurred green foliage and pale buildings forming the indistinct background. +train_26527.png A low-resolution image of a rust-red steel truss bridge viewed obliquely from the near approach, its weathered, textured metal lattice and diagonal beams forming a repeating triangular pattern over a dark river with blurred green tree-covered banks and a pale cloudy sky beyond. +train_26578.png A narrow, pale-blue painted metal pedestrian bridge with a slightly arched deck and lattice-style railings is shown from a near-diagonal low viewpoint, spanning dark water with a hazy shoreline and overcast sky in the background. +train_26704.png A pale mint-green, smooth-painted arched pedestrian bridge viewed from a near-frontal, slightly low angle that reveals its curved underside and evenly spaced vertical balusters/railings, set against blurred green trees and a pale sky with a dark, reflective water surface below. +train_26720.png A narrow pedestrian bridge photographed from near one end, with rust‑orange metal railings and a dark, weathered decking texture, viewed along its length as it spans a green, rippling waterway and is framed by blurred trees and sky in the background. +train_26837.png Diagonal, low-angle view of a pale green, slightly weathered metal truss bridge with visible lattice panels and a slim deck spanning calm reflective water, framed by blurred green trees on the far bank beneath a gray sky. +train_26922.png Diagonal near-end view of a narrow, weathered brown wooden footbridge with visible plank texture and simple railings, stretching over calm blue water toward a distant pale sky and indistinct green shoreline. +train_26974.png A weathered rust-red metal truss bridge with flaky paint and visible corrosion, shown in a low-angle three-quarter side view with its open lattice of diagonal cross‑bracing and vertical supports receding to the right against a backdrop of dark green treeline and a pale, cloudy sky. +train_27029.png A narrow wooden pedestrian bridge with warm brown planked decking and weathered pale blue-green railings is seen from a low oblique frontal view, stretching into a blurred treed and sky background, with evenly spaced vertical balusters and a rough, worn texture visible despite low resolution. +train_27145.png A low, gently arched, light tan bridge with a weathered, rough surface, shown from a slight side‑and‑below oblique angle that reveals the curved underside, set against a bright sky and darker foreground (likely water or land) with a faint shadow/reflection beneath and simple railing details visible despite the low resolution. +train_27430.png A sunlit pale tan bridge with a slightly rough, weathered surface seen from a low oblique viewpoint receding to the right over calm blue water and a clear sky, supported by evenly spaced vertical piers that cast darker reflections and terminating near a small white structure at the far end. +train_27528.png A faintly rust-streaked pale yellow metal arch footbridge seen from a low three-quarter side view against leafy green trees and a clear blue sky, its narrow deck, curved arch supports, and open lattice railing panels visible despite the low resolution. +train_27596.png A low-resolution image of a short, weathered brown wooden pedestrian bridge seen from a slight oblique front-left viewpoint, showing rough plank texture and simple vertical-slat railings, spanning a dark water channel with indistinct green-brown foliage and muddy banks in the blurred background. +train_27597.png A low-resolution image of a short, rustic brown wooden footbridge with rough, weathered, slatted planks and simple railings seen at a slight diagonal from a near-ground viewpoint, set against blurred green foliage and pale sky with a hint of dark water or shadow beneath, the bridge's angled silhouette and textured planks remaining the clearest distinguishing features. +train_27781.png A rust-brown, rough-textured pedestrian bridge captured from a low oblique side angle, showing repeating vertical rail posts and a triangular truss pattern leading toward the far end, set against a pale blue sky and blurred green foliage. +train_27811.png A small, weathered rusty-red metal pedestrian bridge with riveted lattice side panels and a gently arched deck is seen from a three-quarter frontal viewpoint spanning dark water, set against bare trees and an overcast sky. +train_27942.png A low, linear rust-brown metal truss bridge seen in a three-quarter frontal view, spanning calm pale-blue water with triangular lattice supports and a weathered, riveted texture against a pale sky. +train_28089.png A low, pale-beige stone arch bridge with a rough, moss-speckled texture is seen from a slightly frontal angle spanning a narrow dark water channel, framed by vivid green grassy banks and blurred leafy trees in the background, with a simple stone parapet running along the top. +train_28134.png A small arched pedestrian bridge painted bright red-orange with a slightly weathered, glossy wooden texture is seen from a centered, slightly low angle showing its curved span and vertical baluster railings over dark reflective water, set against a backdrop of lush green trees and pale sky. +train_28276.png From a centered, low-level viewpoint the photo shows a narrow, green-painted metal truss bridge with weathered, slightly rust-speckled paint and repeating vertical posts and diagonal cross-braces forming a tunnel-like corridor against a dark, tree-lined shore and pale sky. +train_28318.png A low-angle, frontal view of a pale-gray metal truss bridge with a weathered, rust-streaked texture and visible diagonal lattice members spanning over a dark waterway, set against blurred green trees and a bright sky. +train_28332.png A small, bright-orange, smoothly painted arched pedestrian bridge with evenly spaced thin vertical balusters, seen from a slight frontal angle with a dark shadow and a patch of blue water visible beneath and muted greenery at the edges. +train_28395.png A low, light-gray pedestrian footbridge with a slightly weathered wooden deck and simple evenly spaced vertical rail posts, shown from a low oblique angle as it slopes across calm bluish water with a blurred brownish riverbank in the background. +train_28536.png A pale cream-beige, slightly weathered arched pedestrian bridge photographed from a low frontal angle, its rough concrete/stone parapet forming a continuous low wall over greenish water with dense trees and grassy banks in the blurred background, the simple low-arch silhouette and solid parapet visible despite the low resolution. +train_28645.png A glossy, bright orange-painted metal arch bridge with ribbed truss sides and visible vertical supports is shown from a low, side/three-quarter viewpoint spanning calm water, against a pale blue sky and low shoreline in the background, with the arched ribs and lattice framework discernible despite the blurriness. +train_28653.png A pale bluish-gray painted steel arch bridge with a smooth, slightly glossy surface seen in a low three-quarter side view revealing its slender curved truss, evenly spaced vertical posts and deck railings against a pale overcast sky and indistinct green shoreline and water below. +train_28676.png A narrow bridge painted glossy red with smooth metal towers and thin suspension cables, seen from a low, slightly angled side view showing a low railing and boardwalk leading toward the span against a bright blue sky and calm sea background. +train_28780.png A dark gray, weathered metal truss bridge seen in low-angle side profile stretching left-to-right across the frame over water, its repeating triangular lattice and vertical piers silhouetted against a pale sky and distant shoreline. +train_28961.png A low-resolution, slightly angled side view of a short, weathered brown wooden pedestrian bridge showing coarse plank texture and simple horizontal railings, spanning dark water with blurred green trees and a pale sky in the background. +train_28998.png A pale cream-colored arched pedestrian bridge with a slightly weathered, textured surface is shown in three-quarter view spanning dark blue water, set against a soft blue sky with hints of green vegetation on the far bank, its smooth curved silhouette and simple railing discernible despite the low resolution. +train_29075.png A short, warm orange-brown wooden footbridge with slatted plank decking and short vertical balusters, viewed from a slightly elevated frontal angle against a dark, shadowed background with dim amber lighting, its gently arched deck and simple railing profile visible despite the low resolution. +train_29123.png A low-resolution side view of a short, weathered light-brown wooden pedestrian bridge with visible vertical posts and slatted railings spanning left to right over a muted bluish-gray background that suggests water and distant foliage. +train_29254.png Weathered light-brown wooden footbridge with visible plank texture and simple side railings, viewed from a frontal slightly elevated angle receding toward the center against a blurred green vegetated background and pale sky, showing a gentle arch and a shadow beneath that indicate elevation. +train_29310.png A low, matte dark-gray metal arched bridge with a faintly weathered texture is shown from a slightly elevated frontal view, silhouetted against a pale overcast sky and indistinct shoreline, with repeating vertical posts and thin horizontal railings forming a ladder-like profile despite the image's low resolution. +train_29316.png A narrow bridge with a weathered brown plank deck and light-colored railings is shown from an oblique, low-angle leading-line viewpoint, its repeating vertical balusters and slightly arched silhouette visible against a blurred backdrop of green trees and pale sky. +train_29337.png A low, gently arched reddish‑brown wooden pedestrian bridge with visible plank texture and simple vertical railings shown in side profile at a slight angle, spanning calm water with a blurred green treeline and pale sky in the background. +train_29378.png A pale tan, rough-textured arched bridge is shown in profile from a slightly low vantage point, spanning left-to-right against a clear blue sky with indistinct ground below, its single broad arch and blocky, weathered stone form discernible despite the low resolution. +train_29569.png A pale gray, slightly weathered concrete bridge with evenly spaced vertical railings is shown straight-on from a low viewpoint as it spans a dark, reflective water channel, with a blurred treeline and overcast sky forming the indistinct background. +train_29820.png A low, gently arched pedestrian bridge painted bright turquoise with a slightly weathered matte finish is shown side-on across the frame, its simple vertical railings and slatted deck faintly discernible against a pale overcast sky and an indistinct dark shoreline in the background. +train_29854.png A slightly arched, weathered wooden pedestrian bridge in warm tan and brown tones, seen from a diagonal low-side viewpoint showing rough-grain planks, slatted railings and angled support beams, set against a soft green tree-lined background and pale sky. +train_29908.png From a low-side viewpoint the bridge appears as a weathered orange-brown metal truss with coarse, rust-textured riveted lattice and diagonal cross-bracing stretching across reflective blue water against a pale sky and distant green tree line. +train_29977.png A low-resolution image of a pale beige-to-light-brown bridge seen in an oblique side view spanning calm blue-gray water beneath a hazy pale sky, with a gently curved main span, repeating vertical supports and a thin railing line suggesting weathered, riveted metal texture. +train_29982.png A low-resolution photo shows a dark gray, slightly weathered metal arched pedestrian bridge viewed from a low, frontal-side angle, its smooth curved deck and riveted lattice railings forming a silhouetted pattern against a pale, overcast sky and indistinct distant buildings, with a faint reflection in the water beneath. +train_30051.png A low-angle, centered view down a narrow, weathered light-brown wooden footbridge with visible plank textures and evenly spaced vertical posts and railings, receding toward a hazy green-treed background under a pale sky. +train_30070.png A narrow pale blue-gray metal bridge with a slightly weathered, riveted texture is shown from a diagonal viewpoint looking along its length toward the opposite bank, featuring simple vertical railings and faint lattice/truss elements above a dark river with low buildings and a pale sky in the background. +train_30222.png A slightly off-center frontal view of a rust-orange, weathered arched metal bridge with visible angular supports and a shadowed underside spanning a reflective dark waterway, set against muted green tree-covered banks and a pale sky. +train_30374.png A rust-colored metal truss bridge seen from an oblique side view, its weathered, textured latticework and vertical posts spanning a calm, green-tinged waterway with tree-lined banks and a shadowed underside visible beneath. +train_30392.png A low-resolution view of a small, pale beige, rough-textured stone pedestrian bridge seen from a slight side-oblique angle, revealing a single rounded arch and a short balustraded parapet with dark staining and shadow beneath, set against blurred green foliage and a pale sky. +train_30416.png A narrow, weathered brown wooden footbridge with evenly spaced planks and simple vertical-post railings is shown from a low, centered viewpoint along its length, the warm-toned, rough-textured wood leading the eye into a shadowy, tree-lined or rocky background. +train_30424.png A rust-orange metal truss bridge with a weathered, riveted texture is seen from a low, slightly diagonal side-on viewpoint, the repeating triangular lattice of beams and vertical supports standing out against a muted bluish sky and an indistinct darker shoreline background. +train_30649.png A weathered light-brown wooden footbridge with visible slatted planks and simple vertical-post railings is shown in a low three-quarter side view, spanning over murky greenish water with grassy, tree-lined banks and blurred foliage in the background. +train_30778.png A low-resolution view of a small rust-orange metal truss bridge taken from a three-quarter side angle, showing its curved arch and repeating lattice/railing elements with weathered, textured paint, set against blurred green foliage and pale sky in the background. +train_30781.png A worn matte red-painted metal girder bridge seen from a slightly low, oblique frontal viewpoint, its boxy horizontal beams and vertical supports forming a simple rectangular span with patches of weathered paint and a shadowed underside, set against an urban backdrop of pale low-rise buildings and an overcast sky. +train_30954.png A low, compact wooden pedestrian bridge with warm, weathered tan planks and simple vertical railings seen from a slight frontal-angled viewpoint, set against a soft blue sky and indistinct green foliage, with a shallow arch and a darker shadowed underspan visible despite the low resolution. +train_30986.png A weathered light-brown wooden pedestrian bridge seen from a low frontal perspective receding into the distance, its rough, plank-textured deck and simple vertical-post railings visible against a soft, out-of-focus greenish landscape and pale sky. +train_30987.png A short, dark-gray metal pedestrian bridge with a gently arched deck and evenly spaced vertical railings, seen head-on from street level against a pale sky and low-rise urban backdrop, its smooth metallic texture and stout support posts visible despite the low resolution. +train_31104.png A dark teal-painted metal truss bridge with a central vertical lift frame and visible latticework, seen obliquely from the riverbank across calm water, set against a pale sky and low industrial/grassy embankments and showing corrugated metal texture and small rust patches despite the low resolution. +train_31165.png A low-angle oblique view along a short, pale green, rust-speckled metal truss bridge showing a corrugated walkway and lattice railings slanting from lower-left to upper-right against a pale blue sky and dark treeline background. +train_31179.png A short, red-painted pedestrian bridge with weathered, flaking paint and visible rust on its metal railings and wooden-plank deck is shown from a near-front, slightly low oblique viewpoint, spanning a narrow calm waterway with concrete banks and a tree-lined, overcast background. +train_31193.png A low-resolution photo shows a small reddish-brown, weathered wooden footbridge with visible planks and simple vertical post railings viewed from a slightly elevated three-quarter frontal angle, spanning a dark reflective stretch of water with blurred green foliage and a pale sky in the background. +train_31537.png A narrow, symmetrical, weathered gray-brown wooden footbridge with rough, sun-bleached plank texture and low side rails, photographed head-on in a strong vanishing-point perspective stretching over calm water toward a pale blue sky and indistinct distant shoreline. +train_31540.png A pale blue-gray metal arch bridge photographed from a low, slightly oblique side angle, showing curved girders and a simple railing with a matte, weathered texture, set over water with a bright sky and indistinct shoreline in the background. +train_31901.png A low-angle frontal view of a small arched pedestrian bridge painted bright red‑orange with worn, vertical slatted railings and a slightly rough, weathered surface, spanning reflective water with blurred green foliage and a pale overcast sky in the background. +train_32030.png A light-gray, smooth-textured pedestrian bridge with a gentle curve, shown from a low side viewpoint against a blue sky and water background, with evenly spaced vertical supports and a thin horizontal railing discernible despite the low resolution. +train_32060.png A pale cream-painted arched pedestrian bridge with smooth, slightly weathered wood (or metal) decking and evenly spaced vertical balusters, seen from a low three-quarter side view spanning dark water with a mottled brown rock or earthen cliff in the background. +train_32119.png An orange-brown, weathered wooden footbridge with a gentle arch and evenly spaced vertical rail posts is shown in a slightly elevated frontal view spanning bluish water, backed by green tree-covered banks and pale sky, with rough plank texture and the repetitive rail pattern still visible despite the low resolution. +train_32131.png A pale beige, gently arched stone bridge with evenly spaced vertical balustrades and a weathered, slightly mottled surface, shown from a low oblique side view spanning calm reflective water with a tree-covered green embankment and bright sky behind. +train_32132.png A low, pale turquoise-painted metal arch pedestrian bridge seen in a side-profile angle, its smooth curved span with evenly spaced vertical rail slats and faint reflection in the dark water below set against a muted tree-and-grass bank background. +train_32184.png A small bright-blue painted metal truss bridge with a boxy lattice of vertical and diagonal members and a low horizontal deck, seen from a near-front oblique angle that reveals its slightly weathered matte paint, calm water and grassy embankment beneath, and a pale sky background. +train_32254.png A low-angle view of a pale, weathered wooden pedestrian bridge—beige-gray rough planks and posts with simple horizontal rails—extending diagonally across the frame toward the right over a narrow strip of calm water and sandy banks, set against a clear blue sky, with worn texture and modest railing posts visible despite the low resolution. +train_32406.png A pale gray, weathered metal pedestrian bridge with simple vertical railings is seen obliquely from the side, spanning calm water with indistinct tree-lined banks and a soft, low-resolution sky in the background. +train_32528.png An orange-brown, weathered metal truss bridge is seen from a slightly low, diagonal viewpoint, its riveted lattice framework and straight deck stretching between green, tree-lined banks beneath a bright blue sky with scattered clouds. +train_32556.png A low-resolution, slightly off‑center frontal view of a narrow stone bridge with warm brown‑gray, rough masonry texture, featuring a single rounded arch casting a dark semicircular opening over rippled water with a faint reflection, framed by indistinct green foliage and a pale sky in the background. +train_32598.png A narrow, weathered brown wooden pedestrian bridge with visible plank grain and simple vertical-slat railings, shown from a low, slightly off-center head-on view that emphasizes its receding path over calm reflective water with blurred green trees and a pale sky in the background. +train_32743.png A low, pale tan stone arch bridge captured from a slight oblique side-on angle, spanning calm blue water beneath a clear sky with distant shoreline, its rough masonry texture and a row of evenly spaced semi-circular arches visible despite the low resolution. +train_32783.png A light-gray, rough-textured concrete arch bridge photographed from a frontal, slightly low viewpoint, revealing its gently curved deck with evenly spaced vertical balusters and an open arched underside spanning a dark waterway with faint tree-lined banks and an overcast sky behind. +train_33072.png From a slightly elevated frontal viewpoint the image shows a narrow, weathered orange-brown wooden pedestrian bridge with closely spaced vertical posts and horizontal handrails stretching over calm water toward a distant shoreline with low buildings and trees beneath a pale sky. +train_33142.png Faded greenish-gray riveted steel truss bridge seen from a low oblique side view, its weathered, slightly rust-streaked lattice of triangular beams stretching horizontally against a pale sky with an indistinct treeline and water below. +train_33410.png An angled side view of a rust-orange steel truss bridge with a repeating triangular lattice and weathered, textured surface spanning dark water, set against a green, tree-covered hillside under diffuse daylight. +train_33452.png A small arched pedestrian bridge painted bright blue with smooth metal railings and evenly spaced vertical posts is seen from a centered frontal viewpoint spanning a calm canal with concrete embankments and low urban buildings and trees in the background. +train_33517.png A narrow, weathered wooden footbridge with dark brown, rough-textured planks and simple vertical posts, seen from a low oblique angle as it angles to the right over muted blue water with a pale sky and indistinct shoreline in the background. +train_33524.png A low tan stone arch bridge seen from an oblique side view, its weathered, textured masonry and low parapet visible as it spans a narrow, green‑tinged water channel with grassy banks and blurred trees in the background. +train_33652.png A low-resolution three-quarter frontal view of a short, light-gray, rough-stone arched bridge spanning calm water, its textured masonry and simple parapet visible as a dark curved silhouette against a pale sky with an indistinct treeline and faint reflections in the water. +train_33816.png A low, light-gray, weathered bridge viewed from a slight frontal angle, its textured surface and evenly spaced vertical railings creating a repeating rhythm over still water, with blurry tree-covered banks and a pale, overcast sky in the background. +train_33947.png A low tan-beige, rough-hewn single-arch stone bridge viewed from a slight frontal-left angle, spanning calm dark water that mirrors the arch, with low parapets topped by patches of moss and a leafy green riverside background. +train_33995.png A low-resolution, slightly oblique side view of a long, pale beige/cream bridge with repeating vertical support posts and a low railing, the painted metal surface looking weathered with subtle rust streaks and peeling, set against a tree-covered hillside and a soft blue sky. +train_34027.png A low-angle side view shows a small bright orange-red steel truss bridge with a weathered, slightly rust-speckled texture and visible lattice X-bracing and vertical supports stretching over calm blue water, set against a pale sky and an indistinct shoreline of greenery. +train_34032.png Oblique, eye-level view of a narrow pedestrian bridge with weathered reddish-brown wooden planks and rust-orange metal railings (peeling paint and visible diagonal supports) spanning a calm blue-green body of water with wooded banks and a pale sky in the background. +train_34040.png A low-resolution image shows a light gray, weathered wooden arched footbridge viewed from a slight three-quarter frontal angle, its worn plank texture and simple vertical-railed sides discernible against a darker, out-of-focus park-like background with indistinct trees and shadowed ground. +train_34054.png Low-angle, slightly diagonal view of a small bridge painted bright orange with a worn, ribbed surface and vertical railings spanning dark water, set against a pale blue sky and a rocky/green hillside background. +train_34370.png A low-resolution image of a reddish‑orange painted metal bridge with a slightly weathered, glossy texture and repeating vertical truss/railing elements, shown from a low side angle revealing the deck and supports spanning calm water with a soft treeline and pale sky in the background. +train_34410.png Low-angle frontal view of a small, weathered rusty-red pedestrian bridge with evenly spaced vertical balusters and a gently arched deck showing coarse, peeling paint texture, set against a blurred green tree-lined background and pale sky. +train_34440.png A low-resolution view of a pale, weathered beige stone bridge with a single rounded arch and rough, mottled texture, seen from a slight frontal angle as it spans dark water with an indistinct deep-blue night background and faint shoreline reflections. +train_34457.png From a low frontal viewpoint, a pale-gray, smooth-metal pedestrian bridge with a straight narrow deck, thin horizontal beams and evenly spaced vertical railings spans a flat beige shoreline against a clear blue sky, its sparse skeletal supports discernible despite the low resolution. +train_34510.png A low, gently arched dark brown weathered wooden pedestrian bridge seen from a slightly off-center frontal viewpoint, its rough plank deck and paired horizontal railings with vertical posts receding to the right against a pale sky and indistinct light-colored shoreline, with shadows beneath suggesting a shallow span. +train_34973.png Dark, weathered wooden deck with rough plank texture and low, evenly spaced vertical railings seen from a slightly elevated frontal view, framed by indistinct tree silhouettes and an overcast sky, with a subtle central arch visible despite the low resolution. +train_35089.png A low, pale-gray concrete arched bridge with a slightly weathered, mottled surface is shown from a three-quarter side view spanning calm reflective water, featuring evenly spaced vertical supports and a low decorative parapet, set against a hazy sky and distant tree-lined shoreline. +train_35168.png A low-angle, slightly oblique view of a long rust-red metal truss bridge with repeating vertical supports and a corrugated, weathered metallic texture spanning over brownish water, set against a hazy sky and distant shoreline buildings. +train_35181.png A low, white-painted, smooth-surfaced pedestrian arch bridge with slender vertical railings is shown from a slight frontal-side angle spanning calm blue water with a rocky shore and hazy hills in the background. +train_35276.png Oblique-front view of a narrow pedestrian bridge with a pale tan, slightly mottled concrete deck and rusty-brown metal railings and vertical supports spanning calm dark water that faintly reflects the structure, set against a pale blue sky and a low green treeline. +train_35420.png A weathered, moss-green arched wooden footbridge with peeling paint and rough plank texture is seen from a slight frontal-oblique angle spanning a dark reflective pond, backed by dense leafy green foliage and scattered rocks. +train_35476.png Seen from a slightly low, head-on viewpoint, the bridge appears as a matte teal‑green metal truss with a weathered, patchy texture and repeating vertical and diagonal members forming a riveted lattice spanning calm water beneath a pale, hazy sky, its central girder silhouette and repeating truss pattern distinguishable despite the blur. +train_35516.png A low, gently arched bright orange-red metal pedestrian bridge seen from an oblique side view, its glossy painted truss-like railings and diagonal supports visible as it spans a small creek with blurred green trees and grassy banks in the background. +train_35827.png From a slightly angled side view, a bright mustard-yellow metal arch-truss bridge with a lattice-like texture and visible vertical supports spans across calm water against a muted treeline and pale sky backdrop. +train_35842.png A narrow, weathered light-brown wooden footbridge with visible rough planks and simple low rail posts is shown from a slightly elevated, head-on viewpoint spanning a shallow pond or wetland, backed by pale dry grasses and reeds under a bright sky. +train_35972.png A narrow orange‑red metal bridge with weathered, rust‑speckled paint and dark vertical railings is shown from a low oblique viewpoint along its length, set against a backdrop of green trees and pale sky, with a repeating structural pattern of supports and a textured deck visible despite the low resolution. +train_36175.png A light blue, slightly glossy painted metal pedestrian bridge is shown from a low oblique side view, the slim horizontal girder and evenly spaced vertical railings receding into the distance above calm reflective water with a faint tree-lined shoreline and pale sky behind it. +train_36264.png A low-resolution view of a long, pale beige stone bridge with a weathered, slightly mottled texture and repeating rounded arches, seen from a low diagonal riverbank viewpoint with dark water reflecting the structure and tree-covered hills and a pale sky in the background, the series of arch openings and linear parapet visible despite the blur. +train_36285.png A narrow pedestrian bridge with weathered golden-brown wooden planks and pale green metal railings seen in a low-angle, three-quarter view receding diagonally across the frame, set over calm reflective water with a tree-lined grassy shore in the blurred background and distinguished by evenly spaced vertical posts and thin horizontal cables. +train_36299.png A narrow, weathered light-brown wooden plank footbridge with rough grain and subtle gaps between boards, flanked by evenly spaced vertical posts and thin horizontal railings, shown from a low central vanishing-point viewpoint leading out toward bright blue sky and distant water, with sunlit highlights and soft shadows emphasizing the texture despite the low resolution. +train_36360.png A narrow, light tan, plank-textured pedestrian bridge with evenly spaced vertical rail posts is shown straight-on at eye level, spanning dark water and framed by green foliage at the sides under a clear pale-blue sky. +train_36386.png A small, arched reddish‑orange wooden footbridge viewed from a slightly elevated three‑quarter frontal angle, its glossy painted planks and subtle wear lines visible despite the low resolution, spanning dark reflective water with rocky banks and shadowy, tree‑filled background, and featuring a gentle central rise and evenly spaced vertical balusters along the railing. +train_36392.png A narrow, weathered light-brown wooden boardwalk bridge is shown from a low, centered viewpoint receding to a vanishing point, with visible plank texture and simple side railings, spanning greenish water with a pale sky and low shoreline in the background. +train_36410.png A small rust-red, slightly weathered arched pedestrian bridge with closely spaced vertical railings seen from a centered frontal viewpoint, spanning a dark reflective water channel with blurry green trees and a sunlit bank in the background. +train_36469.png A narrow, weathered reddish-brown pedestrian bridge with worn wooden planks and curved arch supports, shown from a slight side-and-down oblique viewpoint spanning a dark reflective water surface, set against blurred green foliage and a pale sky. +train_36590.png A narrow red wooden footbridge with a pale, plank-textured deck and simple vertical balusters is seen obliquely from above, spanning a dark reflective pond with stone-edged banks and green foliage in the blurred background, its gentle arch and railing silhouette still discernible despite the low resolution. +train_36615.png A pale gray, weathered stone/concrete bridge is shown from a low oblique viewpoint revealing a long row of repeating semicircular arches and stout piers spanning calm water, topped by a low parapet and set against a backdrop of green hills and a clear blue sky. +train_36717.png A slightly oblique shore-side view of an orange-red painted steel suspension bridge with two tall rectangular lattice towers linked by thick curved main cables and numerous thin vertical suspenders spanning calm blue-gray water, the smooth painted metal and vertical ribbing visible despite low resolution and low rolling hills under a pale sky in the background. +train_36964.png A low-resolution image of a light-colored pedestrian bridge with a slightly weathered deck and white vertical balusters, shown in a three-quarter view forming a gentle arch over blue water with an indistinct shoreline and sky in the background. +train_37103.png Low-angle view of a weathered rust-red metal arch-truss bridge with corrugated, lattice-like girders and triangular supports spanning dark water against a pale sky and distant shoreline. +train_37291.png Head-on view of a compact, warm golden-orange bridge with a slightly glossy, painted-metal texture, pronounced vertical supports and thin darker suspension lines visible despite the low resolution, set against soft blue water and sky with faint shoreline hints in the background. +train_37292.png A narrow, weathered light-brown wooden pedestrian bridge with evenly spaced vertical posts and thin wire railings is shown from a central, low-angle viewpoint receding toward a rocky shoreline and pale blue sky above greenish water. +train_37306.png A low, gently arched pale-beige wooden footbridge with worn, planked texture and short vertical posts with thin railings, seen in a slightly oblique side view against calm turquoise water and a pale sky. +train_37398.png A narrow, slightly arched, weathered brown wooden footbridge with evenly spaced vertical railings and rough plank texture, seen from a low frontal viewpoint spanning a dark reflective pond with dense green trees and shrubs behind and a pale overcast sky above. +train_37904.png A small, arched, bright red-orange painted pedestrian bridge with a smooth glossy finish and simple vertical railings, shown in a three-quarter side view spanning a dark reflective water surface with blurred green foliage in the background. +train_37906.png A low-angle, slightly off-center frontal view shows a single-span, tan-beige rough-hewn stone arch bridge with visible block masonry and a curved parapet, faint moss/weathering on the stones, reflected in the calm dark water below and set against green trees and an overcast sky in a park-like riverside environment. +train_38015.png A low, slightly arched reddish-brown wooden pedestrian bridge with weathered plank texture and simple vertical posts and horizontal rails, shown from a low oblique viewpoint with blurred green foliage behind and a pale sky above, the railing posts and worn deck boards still discernible despite the low resolution. +train_38044.png A low, sandy-beige arched stone bridge viewed from a slightly oblique side angle, showing rough, textured masonry and a pronounced shadowed semi-circular arch set against a pale blue sky and darker green foliage in the background. +train_38087.png A narrow pedestrian bridge of brown, weathered wooden planks with low reddish-brown railings and evenly spaced vertical posts, seen from a centered low-angle viewpoint receding into a tree-lined horizon beneath a bright blue sky with scattered clouds. +train_38207.png A low, pale-beige stone arch bridge with a rough, weathered texture seen from a slight frontal angle, spanning a dark reflective water channel against a blurred backdrop of green foliage and sky, with a single central arch and short masonry parapets faintly visible despite the low resolution. +train_38221.png A low, pale beige stone arch bridge with a slightly weathered, rough-textured surface seen from a shallow side angle spanning a calm, reflective water channel, set against a flat grassy bank and soft blue sky, with a single prominent semicircular arch and simple low parapet visible despite the low resolution. +train_38396.png Frontal, slightly elevated view of a small teal-blue painted metal bridge with smooth, slightly glossy surfaces, boxy truss-style railings and visible vertical support posts, spanning calm water against a pale sky and indistinct shoreline in the background. +train_38424.png A narrow, weathered brown‑gray pedestrian bridge captured from one end in a strong leading‑line perspective, its worn wooden planks and simple vertical railings/rusty metal supports visible despite low resolution, spanning dark water with a tree‑lined shore and overcast sky in the background. +train_38619.png A slightly low, front-left view shows a small rust-orange arched bridge with a ribbed metal framework and straight railings, its rough, weathered texture contrasting with the calm blue water below and a backdrop of leafy green trees and pale sky. +train_38635.png A narrow, straight pedestrian wooden bridge with weathered brown planks and darker vertical posts and horizontal rails, photographed from the entrance looking down its length into dense, blurred green foliage and trees. +train_38675.png Oblique, slightly low-angle view of a bright cyan-blue metal truss bridge with a weathered, riveted texture and repeating vertical posts and diagonal lattice members, spanning over dull water beneath an overcast gray sky with indistinct shoreline structures in the background. +train_38916.png A small reddish-brown, weathered wooden arched pedestrian bridge is shown from a low frontal three-quarter viewpoint, spanning a calm reflective pond with leafy green trees and grassy banks in the background, its curved deck, simple vertical-slat railings and stone abutments visible despite the low resolution. +train_38958.png A narrow, weathered wooden pedestrian bridge with dark brown, slightly worn planks and rust-toned metal railings is shown from a near-end, shallow-diagonal viewpoint looking along its length, backed by blurred green foliage and pale sky, with evenly spaced vertical posts and horizontal handrails clearly visible. +train_38979.png A low-oblique view of a pale, weathered white metal arch bridge with evenly spaced vertical supports and slender railings, its smooth painted surface showing faint wear as it spans dark water with a muted cloudy sky and indistinct shoreline in the background. +train_39319.png A low, rust-red wooden pedestrian bridge with weathered, plank-textured decking and dark vertical supports seen from a three-quarter side view spanning a calm bluish-green waterway, with indistinct green foliage and pale sky forming a blurred background. +train_39469.png A low-angle, slightly oblique view of a short, light-gray concrete bridge with a rough textured deck and evenly spaced dark vertical metal railings spanning calm water that mirrors its low parapet, set against a tree-lined embankment and pale blue sky. +train_39518.png A weathered, faded red arched pedestrian bridge with rust-speckled metal lattice sides and a worn wooden plank walkway, shown from a low, near-end angled viewpoint with soft blue sky and blurred green foliage in the background. +train_39575.png A centered frontal view of a small pedestrian bridge with weathered dark-brown metal railings of evenly spaced vertical balusters and a flat pale-tan decking, spanning dark water with light stone abutments at either end against a pale overcast sky and indistinct treeline in the background. +train_39692.png A narrow, weathered brown wooden footbridge with pronounced plank texture and evenly spaced vertical posts and thin railings is pictured head-on from one end, stretching straight over calm water toward a pale, hazy sky and distant shoreline, with soft sunlight producing muted reflections on the water. +train_39710.png A low, light-tan, slightly weathered pedestrian bridge seen head-on from a short distance, its flat plank deck and short vertical railings visible above a dark reflective water channel with blurred greenish banks and pale sky in the background. +train_39732.png A narrow rust-red pedestrian bridge with weathered wooden planks and simple vertical railings is seen from a slightly elevated oblique viewpoint spanning calm shallow water with grassy banks and scattered trees in the soft-focus background, its low arched profile and evenly spaced posts visible despite the low resolution. +train_39882.png A narrow, weathered pale-brown wooden pedestrian bridge with rough, plank-textured decking and low simple balustrades is shown from a slightly oblique end-on viewpoint revealing the repetitive plank pattern and depth, set against a blurred backdrop of trees and earthy ground. +train_39977.png A light-blue painted metal bridge with a slightly weathered, matte texture is photographed from a low front-left angle, its repeating vertical supports and horizontal railings forming a rhythmic silhouette against a pale sky and a low tree-and-rock shoreline in the background. +train_39981.png A low, single-span pale beige stone arch bridge with rough, mottled masonry and a simple low parapet is shown from a frontal, slightly elevated viewpoint spanning dark reflective water, with green foliage and a pale sky in the background and a shadowed arch opening visible beneath. +train_40165.png A low, gently arched pedestrian bridge of weathered tan-brown wood with a rough, grainy texture, shown from a near three-quarter frontal viewpoint looking along its length, featuring evenly spaced square posts and horizontal handrails, set against a pale sky and indistinct greenish vegetation in the background. +train_40221.png A low-angle side view of a small red-orange painted arched bridge with a smooth, slightly weathered metal texture and evenly spaced vertical rail slats, spanning toward blue water with blurred green foliage and a pale sandy bank in the background. +train_40814.png A rust-orange painted steel truss bridge, its slightly weathered metal texture discernible despite low resolution, is shown in a three-quarter side view spanning calm greenish water with tree-lined banks and a pale sky, the repetitive vertical and diagonal truss members forming a distinctive lattice silhouette. +train_40877.png A faded red-painted steel arch bridge with visible lattice/riveted texture and vertical suspenders, seen from a low side-angle over calm blue water with a distant shoreline and pale sky behind. +train_40992.png A three-quarter side view of a small single-span stone arch bridge made of weathered, mottled tan-brown masonry with a low parapet and visible block texture, arch reflected in the dark water below, set against a soft green treeline and pale blue sky. +train_41125.png From a low frontal viewpoint the narrow pedestrian bridge appears made of weathered brown wooden planks with rust-red metal trusses and diagonal supports, the coarse wood grain and flaking paint visible against a pale overcast sky and low vegetation in the background. +train_41138.png A low, light-gray concrete arched bridge with a smooth texture and simple vertical railings is seen head-on, spanning a narrow dark channel with a shadowed underside and framed against a pale sky and indistinct shoreline. +train_41148.png A low oblique frontal view of a short, weathered orange-brown brick/stone bridge with a rough, mottled texture and evenly spaced rounded arches spanning calm water, set against green vegetated banks and a pale sky. +train_41260.png A low, side-profile view of a dark, weathered metal bridge with a matte, slightly mottled surface seen from a slight left/below angle, spanning calm reflective water against a pale overcast sky and indistinct treeline, distinguished despite low resolution by its straight horizontal deck, thin vertical supports and an open lattice-like truss along the span. +train_41361.png A faded white, weathered wooden footbridge with chipped paint and vertical slatted railings is shown from a low frontal angle, revealing a gentle arch and shadow/reflection beneath, set against dense green foliage and a patch of blue sky in the background. +train_41432.png A small pedestrian bridge of weathered warm-brown wood with visible plank grain and simple vertical slatted railings, photographed from a slightly low, three-quarter viewpoint so the deck recedes into a soft-focus backdrop of green foliage and pale sky, showing worn plank edges and muted textures despite the blur. +train_41561.png A low, gently arched wooden footbridge with weathered dark-brown planks and faded pale railings, seen from a near-end diagonal ground-level viewpoint, set against a blurred green leafy background and spanning a narrow water channel beneath. +train_41716.png A narrow, weathered light-brown wooden footbridge with visible plank grain and worn edges and simple pale railings, seen from a slightly low frontal viewpoint spanning a dark reflective stream, set against dense green foliage and a bright blue sky. +train_41827.png A front-facing, slightly low-angle view of a narrow light-gray bridge with a darker, worn central deck and evenly spaced vertical railings creating a gentle arch, set over water with a blurred treeline and pale sky in the background. +train_41832.png A narrow, weathered bridge with rust-colored handrails and a gray, plank-textured walkway is shown in a low-angle, three-quarter view receding toward a hazy blue water-and-sky background, with evenly spaced vertical posts and horizontal rails visible despite the low resolution. +train_41910.png A low-resolution view of a short teal/green-painted metal pedestrian bridge seen obliquely from one end, its weathered, slightly chipped paint and riveted lattice railings with diagonal support bars receding over a small concrete span, set against bare winter trees and a pale sky. +train_41980.png A low, gently arched pale gray-beige stone bridge seen from a slight frontal-oblique viewpoint spans reflective water beneath a soft blue-gray sky, its rounded arch, textured masonry and low parapet visible as a dark silhouette with a subtle reflection in the water. +train_42089.png A low, dark-gray arched bridge seen from a frontal three-quarter viewpoint spanning calm, reflective water beneath a pale, overcast sky, its coarse, weathered stone-like texture and simple parapet visible against indistinct tree-lined banks. +train_42143.png A low, pale tan, weathered wooden pedestrian arch bridge with evenly spaced vertical balusters and a gently curved deck, shown from a near-frontal viewpoint spanning calm reflective water with indistinct green foliage and a pale sky behind. +train_42152.png A side view of a long orange-red metal bridge with a weathered, rust-streaked texture and low truss-like railing silhouette stretching across calm reflective water against a muted blue-gray dusky sky with a faint shoreline and structures visible at the right. +train_42231.png A slightly off-center side view of a small, weathered orange-painted metal truss bridge with rust-speckled, rough texture and visible triangular lattice supports and vertical posts casting shadows over dark water, set against a pale blue sky and an indistinct shoreline. +train_42328.png A low-angle side view of a short, pale-gray stone arch bridge with rough, blocky masonry and a low parapet spanning still, dark water, set against blurred green foliage and a soft blue sky with a faint reflection visible on the water. +train_42376.png A narrow, weathered brown wooden footbridge with rough-planked decking and simple vertical posts and handrails is shown from a low, front-off-center viewpoint stretching out over calm blue water toward a pale sky and indistinct distant shoreline. +train_42440.png A compact, low-resolution image shows a warm, saturated orange bridge with a pixelated, metallic-looking texture viewed from a slightly off-center frontal angle, revealing an arched truss with repeating vertical supports and a lattice-like pattern silhouetted against a deep black background with a faint orange halo. +train_42462.png A small, rust-orange bridge appears frontally at a slight angle, showing a textured, plank-like deck and simple vertical railings forming a gentle arch set against a uniform warm-orange background. +train_42635.png A small, weathered turquoise-green metal arch bridge with visible riveted truss members and rust-tinted vertical supports, seen from an oblique frontal viewpoint spanning a narrow waterway with pale blue sky and blurred green vegetation behind it. +train_42691.png A low, short pedestrian bridge seen from a near three-quarter frontal viewpoint, its weathered orange-brown wooden planks and rounded handrails showing a rough, sun-faded texture as it spans a narrow dark waterway with green foliage and a pale building blurred in the background and a soft reflection beneath. +train_42797.png A small, faded reddish-orange painted wooden footbridge with worn, slatted planks and simple curved balustrades seen from a slight frontal-left angle, arching over a dark, reflective surface with blurred green foliage and pale sky in the background. +train_42798.png A narrow pedestrian bridge with a faded light‑blue metal frame and weathered wooden plank deck, photographed from a low oblique viewpoint along its length, showing evenly spaced vertical posts and thin horizontal railings, set against a misty, tree‑lined shoreline and pale overcast sky. +train_42942.png A low-resolution photo of a pale blue painted metal arch bridge seen from a shallow side angle, its smooth curved top chord and thin vertical suspenders rising above a flat deck with simple railings, set against a pale sky and indistinct water or riverbank background. +train_43012.png Seen from a slightly low-side angle, the short bridge features a pale beige concrete deck with a dark, shadowed brown underside and green-painted vertical supports showing weathered, peeling paint, spanning a narrow channel with blurred trees and sky in the background. +train_43043.png A low-angle view of a narrow, rust-red pedestrian bridge with weathered, peeling-painted wooden planks and white vertical posts and mesh railings, spanning calm water with blurred green trees and a pale sky in the background. +train_43048.png A low-resolution image of a narrow, light-gray arched bridge shot from a low oblique side-front angle crossing a reflective body of water, showing a smooth concrete texture with darker seams and weathered staining, simple railings and the curved arch silhouette as the clearest features against a blurred tree-lined bank and pale sky background. +train_43070.png A light gray, slightly weathered metal truss bridge seen from a low oblique side angle, its open triangular lattice and narrow deck running left-to-right against a pale sky and indistinct shoreline, with visible vertical posts and angular supports despite the low resolution. +train_43155.png A low-angle, slightly diagonal side view of a short bridge with a vivid orange painted metal railing of horizontal bars and thin vertical posts above a light-colored deck, set over calm turquoise-blue water with a clear sky horizon in the background. +train_43259.png A dark, steel-appearing bridge with a slightly reflective, riveted-truss texture and a prominent curved main arch with vertical suspension cables, photographed from a near-frontal low angle across calm reflective water with a cloudy blue sky and distant silhouetted buildings behind. +train_43279.png A low-angle oblique side view of a pale gray, slightly weathered concrete arch bridge with a textured surface and simple low railings, its shadowed curved underside spanning a dark water channel with indistinct green trees and a patch of blue sky in the background. +train_43389.png Low-angle, head-on view of a bright green-painted metal arched truss bridge with repeating vertical and diagonal members and simple railings, spanning a dark waterway with tree-covered banks and a pale sky behind. +train_43424.png A narrow, weathered light-brown wooden footbridge viewed from a low frontal angle, its rough plank grain and simple vertical posts leading out over a muted greenish-blue body of water with blurred green embankment vegetation in the background. +train_43466.png A pale green, slightly weathered metal arch bridge with a visible lattice-truss and vertical suspender elements, photographed from a low oblique frontal viewpoint against a washed-out sky and calm water with a faint shoreline and reflection beneath. +train_43467.png A faded green-painted metal through-truss bridge with riveted triangular latticework and a flat roadway, seen from a low oblique near-end viewpoint receding into the distance, its weathered, slightly rust-streaked texture contrasting with tree-covered hills and a pale overcast sky in the background. +train_43517.png Slightly angled side view of a small rust-orange arched pedestrian bridge with weathered, flaking metal texture and visible diagonal truss supports spanning over a pale pathway against a blurred green grassy/vegetated background. +train_43739.png A low-angle side view of a small, weathered light-gray metal truss bridge with riveted lattice panels and vertical railings and faint rust speckling, spanning over indistinct pale water against a washed-out sky, the triangular webbing and support arches discernible despite the blur. +train_43787.png A low, straight pedestrian bridge of weathered dark-brown wooden planks and simple upright posts with two horizontal rails, seen from a slightly off-center frontal viewpoint spanning a narrow, murky stream with blurred greenish vegetation and a pale overcast sky in the background. +train_43916.png A narrow, weathered gray-brown footbridge with visible plank lines and simple vertical posts and railings, shown from a near-center frontal viewpoint stretching toward a blurred green treeline and pale sky, the rough wooden texture and post silhouettes discernible despite the low resolution. +train_43929.png A low, arched pedestrian bridge painted bright turquoise with a slightly glossy, worn texture and evenly spaced vertical balusters, seen from a low oblique side angle spanning calm reflective water with a pale sky and indistinct shoreline in the background. +train_44036.png A low, reddish-brown wooden pedestrian bridge with weathered, rough planks and simple vertical slatted railings is seen head-on spanning a narrow green, tree-lined gap, with its textured deck and evenly spaced balusters visible despite the low resolution. +train_44212.png A low-resolution image of a narrow, light-tan, slightly textured bridge deck with pale, regularly spaced vertical railings and a gentle arch, viewed obliquely from the side as it spans dark water against a backdrop of dense green foliage. +train_44602.png A low, gently arched footbridge of weathered pale beige-gray wood with visible rough plank texture and evenly spaced vertical posts and horizontal rails, shown in a low diagonal side view spanning dark still water with blurred green foliage and indistinct stone abutments in the background. +train_44851.png A low-resolution image of a narrow rust-orange bridge with a coarse, weathered metal texture and repeating vertical rail elements, shown in a slightly elevated side-on view spanning horizontally against a blurred backdrop of green foliage and pale sky, the simple linear silhouette and evenly spaced supports remaining discernible despite the blur. +train_44876.png A low-resolution side-angle view of a short red-orange metal truss bridge with a weathered, slightly rusted texture, its triangular lattice and vertical supports clearly visible as it spans calm blue-green water with a tree-lined shore and pale sky in the background. +train_45174.png A weathered reddish-brown wooden arched footbridge with visible plank texture and slatted railings, shown from a three-quarter elevated angle spanning calm blue‑green water and framed by blurry green foliage in the background. +train_45340.png A low-angle, three-quarter side view of a short pedestrian bridge stretching diagonally across the frame with weathered pale-brown wooden planks and off-white vertical baluster railings, the simple straight span and repeating posts standing out against a blurred green treeline and pale sky. +train_45549.png A narrow, weathered brown wooden footbridge with a gentle arch and crisscross railings, seen from a slight front-side angle as it spans a small waterway in a leafy park with muted green trees and bright sky in the background. +train_45609.png A low-resolution side view of a long orange-red metal bridge with a smooth painted texture, showing vertical supports and faint diagonal lines suggesting suspension cables as it spans calm bluish water against a hazy pale-blue sky and a distant shoreline. +train_45655.png A weathered gray-brown arched wooden footbridge with rough plank texture and evenly spaced vertical rail slats, seen from a slightly elevated three-quarter side view spanning a small reflective pond with grassy banks and trees against a soft cloudy sky. +train_45806.png A flat, matte black silhouette of a small arched bridge viewed in side profile against a pale cyan sky and darker cyan foreground, with blocky low-resolution edges, evenly spaced vertical rail posts, and a central peaked support suggesting a simple truss or suspension form. +train_45883.png A low-resolution photo of a pale gray concrete cable-stayed bridge viewed from a low frontal-side angle, its smooth deck and slim railings extending toward a single tall pylon with fan-like white cables, set against a calm blue waterway and a faint treed shoreline under a hazy sky. +train_45989.png A low, straight pedestrian bridge photographed from a slightly elevated, head-on angle showing weathered dark-brown wooden planks and rust-red metal railings with repeating vertical posts, spanning calm, pale-green water with blurred green foliage and a light sky in the background. +train_46094.png Low, slightly angled side view of a short, pale, weathered concrete/stone arched bridge with a rough, mottled texture spanning dark water, set against a muted brown grassy embankment and indistinct tree line, its single central arch and simple parapet visible despite the low resolution. +train_46205.png An oblique diagonal view of a narrow, weathered orange‑brown wooden footbridge showing rough, grainy planks and simple upright posts and handrail, set against a vivid blue expanse that appears to be sky or water with a darker shoreline in the background. +train_46397.png A low-oblique side view of a pale blue-gray, weathered metal truss bridge with visible triangular lattice bracing and riveted beams stretching over calm water, the mottled, slightly rust-streaked texture evident against a hazy shoreline and faint treeline under a light sky. +train_46456.png A narrow, rust-red, slightly weathered metal pedestrian bridge is shown head-on and centered, its low arch and repeating vertical railings and truss lattice leading over a shallow stream toward a green, tree-lined background beneath a pale sky. +train_46529.png Centered, low-angle view of a small single-span white arched pedestrian bridge with smooth, slightly weathered painted surface and evenly spaced vertical balusters, casting a soft reflection on calm blue water with a clear sky and distant shoreline in the background. +train_46611.png Low-angle oblique view of a small arched pedestrian bridge with faded turquoise metal railings and evenly spaced vertical posts, a dark weathered wooden plank deck with visible gaps, set over reflective water and framed by blurred green trees and a pale sky. +train_46690.png A small, weathered dark-brown wooden arched pedestrian bridge with rough, aged planks and slatted railings seen from a near-frontal, slightly elevated viewpoint spanning calm reflective water with tree-lined grassy banks and muted foliage in the background. +train_46788.png A low-resolution image of a light-gray, slightly weathered beam bridge with a straight horizontal deck and thin vertical railings, seen from a low oblique angle revealing angular support beams and spanning a dark water channel with blurred trees and sky in the background. +train_46907.png A low-resolution pale tan arched bridge is shown from a slight frontal angle, its rough, mottled stone-like texture and low dark parapet visible as it spans greenish water with a blurred backdrop of grassy banks and indistinct trees. +train_46930.png From a low viewpoint at the near end, a slightly arched pedestrian bridge with weathered light-brown wooden planks and white painted vertical railings stretches toward a backdrop of blue sky and blurred green trees reflected in the water below, the simple repetitive balusters and gentle curve remaining discernible despite the low resolution. +train_46940.png A pale, weathered stone arch bridge with a rough, slightly mottled texture is seen from a low side-angle over calm reflective water, its curved underside and simple parapet railing visible against a backdrop of dark, leafy trees. +train_47025.png A small single-span pedestrian bridge painted turquoise-blue with a slightly weathered smooth metal finish, shown from a slight side angle revealing its low curved arch and vertical slatted railings, set against pale beige buildings with a touch of greenery in the background. +train_47276.png Centered, slightly low-angle view of a narrow pedestrian bridge with dark matte-black metal railings composed of evenly spaced vertical balusters and a thicker central post, set atop weathered light-gray wooden planks with a worn, slightly wet texture, framed against a flat overcast sky and calm muted-blue water with a faint tree-lined shore in the distance. +train_47402.png A low-oblique view along a short bluish-green metal truss bridge showing weathered, peeling paint and rough rust-streaked texture on riveted girders and diagonal lattice members, with the bridge deck and handrails receding toward a pale, overcast sky and indistinct dark treeline in the background. +train_47504.png A small, bright blue arched bridge with a smooth, glossy finish and thin railings, photographed from a slightly elevated frontal viewpoint so the curve is centered, set against a pale, washed-out sky and indistinct dark shoreline or vegetation in the background. +train_47605.png A pale-gray, slightly weathered arched stone bridge seen from a low frontal angle, its single curved span and low parapet showing blocky texture and a faint reflection in calm dark water, set against blurred darker trees and sky in the background. +train_47691.png A low, narrow tan-painted bridge with a smooth, slightly weathered deck and evenly spaced vertical supports, photographed from a shallow side angle so its long horizontal silhouette and simple railing are visible against a soft blue sky and faint distant shoreline despite the low resolution. +train_47796.png A pale turquoise-painted metal pedestrian bridge with a slightly worn, painted-metal texture is photographed from a low oblique angle along its walkway, revealing a graceful curved arch, repeating vertical railings and lampposts with a few small silhouetted figures, set against a distant tree-lined riverbank and low city skyline reflected in the dark water below. +train_47972.png A small, weathered orange-brown wooden arched footbridge with visible plank texture and slatted railings seen from a slightly elevated frontal viewpoint, spanning a dark reflective stream with dense green foliage and grassy banks in the background. +train_48056.png A small, narrow reddish-brown footbridge captured from a low, frontal three-quarter angle, showing a weathered plank deck and simple vertical-post railing with a gentle arch, set against a muted grassy and treed background beneath a pale sky. +train_48315.png A rust-red, weathered metal truss bridge with repeating diagonal lattice and low side rails is seen from a low frontal-oblique viewpoint spanning calm blue-green water, set against a tree-lined shore and pale sky, its flaking paint and corroded texture visible despite the low resolution. +train_48415.png Seen from a low, near-frontal angle, the narrow bridge shows reddish-brown, weathered wooden planks with visible linear grain and simple red metal railings, anchored to a pale stone abutment at the near end and set against blurred green foliage and a pale sky/water background. +train_48423.png A narrow, dark gray metal arch bridge with a slightly rusted, ribbed texture is seen in three-quarter view spanning calm reflective water, framed against a pale blue sky and a low, tree-lined shoreline in the background. +train_48513.png Low-resolution image of a compact bridge with weathered gray-brown stone and a coarse, blocky texture, seen from the riverbank at a slight low angle with calm reflective water in the foreground and an overcast, indistinct urban skyline behind, featuring two prominent vertical towers flanking a central arched span and pronounced shadowing beneath the deck. +train_48529.png A low, frontal view of a dark gray, weathered masonry arch bridge with a rough-textured parapet and a single central arch spanning a reflective water surface, set against bare trees and an overcast sky in the background. +train_48710.png A low oblique view of a short-span steel truss bridge painted a weathered blue-gray with a slightly rough, rust-flecked texture, its triangular lattice supports and flat roadway deck silhouetted against a pale sky with a tree-covered hillside in the background. +train_48740.png A low, dark-gray, matte-painted metal pedestrian truss bridge seen in a slight three-quarter side view, its gently arched deck and triangular lattice panels visible against a bright sky and distant treeline, with riveted seams and vertical supports faintly discernible despite the low resolution. +train_48787.png A grayscale, weathered metal arched truss bridge seen from a low, oblique side viewpoint spanning left-to-right over water, its repeating triangular lattice and riveted beams forming a textured pattern with vertical supports and a boxy pier at the near end against an industrial shoreline and overcast sky. +train_48914.png The low-resolution photo shows a narrow, dark-toned bridge-like silhouette with hints of a simple railing and textured decking, seen from a distant side angle against bright blue sky and calm water, with a single vertical post or mast visible near the center. +train_48968.png A low-angle frontal view of a narrow brown wooden footbridge with weathered, slightly uneven planks and dark railings receding into the distance, framed by blurred green foliage and a pale sky, the repeated vertical posts and horizontal handrails forming a strong linear perspective despite the grainy low-resolution image. +train_49004.png A pale beige, weathered stone arch bridge with a rough, mottled texture is seen in a slightly low side view spanning dark reflective water, its simple solid parapet and curved arch silhouetted against a muted treeline and pale sky in the background. +train_49044.png An angled three-quarter view of a short pedestrian bridge painted warm orange-brown with a weathered, slightly peeling surface and visible vertical slatted railings and triangular supports, set against soft green foliage and a pale sky in the background. +train_49078.png From a slightly elevated three-quarter side view the short, light-gray, weathered stone or concrete footbridge with a single low arch and a simple balustrade of evenly spaced vertical posts spans a dark, shadowed gap (likely water) against a rocky, tree-studded embankment and pale sky. +train_49138.png A low, single-span pedestrian bridge with a gentle arch made of weathered reddish-brown wood with rough planking and simple vertical slat railings, seen from a slight side-front viewpoint spanning calm reflective water with grassy banks and an indistinct tree-lined background. +train_49188.png A low, frontal view of a shallow arched pedestrian bridge made of weathered honey-brown wooden planks and vertical-post railings, its rough grain and muted patina visible despite low resolution, with a faint mirror reflection in dark water below and dense green trees and a pale blue sky forming the background. +train_49215.png From a low, slightly angled frontal view the image shows a warm tan, rough‑hewn stone arched bridge with three rounded openings casting dark reflections on the greenish water below, set against blurred green foliage and a pale sky. +train_49331.png A slightly arched, narrow pedestrian bridge of weathered brown wooden planks and simple vertical-post railings is shown from a front three-quarter viewpoint, spanning a shallow, dark waterway with scattered rocks and framed by dense green foliage, the wood appearing rough and aged with visible grain despite the image quality. +train_49421.png A pale gray, slightly weathered metal truss bridge captured from a low side angle, its long horizontal span and repeating triangular supports silhouetted against a bright, washed-out sky with a dark, indistinct foreground likely water. +train_49556.png A short, low-span pedestrian bridge painted a bright orange with a smooth but slightly weathered texture and evenly spaced vertical railings, seen in a slightly oblique side view against a pale blue sky and darker foreground, with its rectangular top rail and support posts discernible despite the low resolution. +train_49639.png A low-resolution image of a short, pale-gray stone arch bridge seen from a slight frontal-oblique viewpoint, showing a rough, weathered stony texture and a single semicircular arch over calm reflective water with a simple low parapet and blurred tree-lined riverbanks in the background. +train_49696.png A pale cream sandstone bridge with a weathered, slightly rough texture is shown in a low frontal three-quarter view spanning calm blue water, backed by indistinct green foliage and faint buildings, with repeating arches and a decorative railing visible despite the low resolution. +train_49977.png A low-resolution oblique side view of a light-gray, slightly matte arched bridge with thin vertical railings and supports running diagonally from lower-left to upper-right above a dark reflective water surface, set against blurred green trees and a bright sky background. +train_49981.png A pale cream, slightly weathered arched pedestrian bridge with a narrow dark wooden deck and simple vertical railings, shown from a slight side angle against a backdrop of green trees and a light sky. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/bus_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/bus_descriptions.txt new file mode 100644 index 0000000..53833d6 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/bus_descriptions.txt @@ -0,0 +1,500 @@ +train_00240.png A bright yellow, glossy bus shown in a front-left three-quarter view parked on a narrow street with low buildings and pavement in the background, featuring a contrasting black window band, rectangular headlights and a dark front bumper visible despite the low resolution. +train_00286.png A glossy orange-red bus is shown in a frontal three-quarter view turned slightly to the right, its shiny metallic paint with reflective highlights, large dark split windshield framed by a thin central pillar, prominent black bumper and grille, round headlights and small roof lights visible, all set against a dim, indistinct background. +train_00421.png A small boxy yellow minibus with slightly faded matte paint is shown in a front-left three-quarter view parked on a city street with buildings and a sidewalk visible, featuring a black lower bumper and side stripe, large rectangular windshield and side windows, round headlights, and dark wheels. +train_00427.png A compact white minibus with a smooth glossy finish is shown in a front three-quarter view facing left against a plain light gray/white background with a faint shadow beneath, revealing large dark-tinted side windows, the outline of a sliding side door, black wheel arches and trim, and compact rectangular headlights. +train_00694.png A small glossy yellow-orange bus captured in a three-quarter front-side view, its smooth reflective body punctuated by dark rectangular windows, a black bumper and wheels, and a rounded front, parked on a sunlit roadside with blurred green foliage and pavement in the background. +train_00723.png A small yellow-orange boxy bus with glossy painted metal and a wide dark windshield is shown in a front three-quarter view angled slightly to the left, parked on a paved street with another vehicle and indistinct buildings in the blurred background, featuring a black horizontal side stripe and round headlights on its front. +train_00786.png A white, glossy, boxy minibus captured in a front-left three-quarter view, parked on a paved roadside with a grassy verge and low trees/buildings in the background, showing large rectangular side windows, a prominent windshield, black lower trim and bumper, and silver wheels visible despite the low resolution. +train_01138.png A small bright-orange bus with glossy paint and a darker horizontal side stripe is shown from a front-left three-quarter viewpoint on a light-gray paved surface beneath a pale blue sky, with rectangular side windows, a dark windshield, and two prominent black wheels visible. +train_01161.png A small bright red vintage-style minibus with glossy paint and a white roof, shown in a front-left three-quarter view against a grassy green foreground and blue sky, featuring a white front bumper, round headlights, multiple rectangular windows and visible black wheels despite the low resolution. +train_01176.png A glossy two-tone bus with a white upper body and bright blue lower panels, shown in a low-angle three-quarter front-left view that reveals a large dark windshield, rectangular side windows and headlight cluster, parked on a paved street against an indistinct urban background. +train_01287.png An orange-yellow, slightly weathered bus is seen from a front three-quarter view, its dark rectangular windshield and side windows, black bumper and grille visible as it sits on a paved street with blurred buildings and foliage in the background. +train_01746.png A small, bright blue minibus with a glossy two-tone finish (white roof and lighter upper stripe) is shown from a three-quarter front-left viewpoint on a gray urban street, its rectangular side windows, black front bumper and round headlight visible against a blurred curbside background. +train_01779.png A compact, glossy turquoise-blue minibus shown in a front-three-quarter view against a plain white background, with a rounded roof, dark-tinted windshield and side windows, round headlights, a darker lower bumper and visible black wheels. +train_01817.png A weathered cream-colored, boxy shuttle-style bus with matte, slightly dirty paint is shown in a three-quarter front-left view revealing its row of rectangular side windows and front headlights, parked on a dry dirt/grassy field beneath a clear sky. +train_01907.png A cream-colored bus with a broad horizontal blue stripe and glossy painted metal, shown from a frontal three-quarter-left angle on a paved street with indistinct urban structures in the blurred background, distinguishable even at low resolution by its large curved windshield, rectangular headlights and dark lower bumper. +train_01984.png A glossy cream-white city bus with a thin blue horizontal stripe along its side, seen in a three-quarter front-left view parked on a sunlit, tree-lined street, its smooth metal body, rectangular side windows and a visible black front wheel discernible despite the low resolution. +train_01991.png A compact white boxy minibus with glossy painted metal and dark-tinted windshield and side windows is shown from a three-quarter front-left viewpoint, parked on a light-gray paved street against a blurred urban background, with a black front bumper and grille, round headlights, and a small red mark on its right side. +train_02471.png A glossy bright-red, boxy double-decker bus with a white roof and chrome-accented front grille is shown in a slightly elevated three-quarter frontal view against a dark background, revealing rectangular windows, round headlights, a white bumper/trim and subtle reflective highlights on its smooth painted surface despite the low resolution. +train_02626.png A matte yellow-orange bus is shown in a front three-quarter side view, its textured paint interrupted by a bold black lower stripe, a row of dark rectangular windows, visible black wheels and a slightly rounded front end set against a muted greenish-gray background and pale ground. +train_02654.png A glossy school-bus–yellow minibus with a white roof and dark rectangular windows, shown front-left three-quarter on a curb, against indistinct green foliage and pavement, with a rounded front, black bumper and visible headlight shapes despite the low resolution. +train_02691.png White minibus with a smooth, slightly glossy paint finish and a bold blue lower-side stripe, shown from a front-left three-quarter viewpoint parked on a sunlit urban street with blurred buildings and foliage behind it, its dark windows, round headlights and protruding front bumper visible despite the low resolution. +train_02696.png A three-quarter frontal view of a city bus with glossy white upper panels and a prominent deep-blue lower band, featuring a large curved windshield divided into multiple vertical panes, a rectangular electronic destination display above the windshield, round headlights and fog lamps set into a white bumper, extended side mirrors and a visible license plate, parked curbside on a sunlit urban street in front of shopfronts and pedestrians. +train_02865.png A small teal-blue city bus with a glossy, slightly reflective metal body is shown in a three-quarter front-left view parked on a street against brick and storefront buildings, with a large rectangular windshield, rows of side windows, a white roofline stripe and a visible front wheel and headlight cluster despite the low resolution. +train_02944.png A maroon (dark red) single-deck bus with a slightly glossy, weathered paint surface, shown in a three-quarter front-left view parked on a city street curb against low buildings and trees, displaying rectangular side windows, a white roof stripe, and a visible front grille and headlight cluster despite the low resolution. +train_03096.png An off-white, slightly weathered coach-style bus with dark reflective windows and a rounded front is shown in a front three-quarter view parked on a sunlit urban street with indistinct buildings behind, featuring a low dark bumper, visible wheels, and faint horizontal striping along its lower side. +train_03187.png A compact reddish-orange single-decker bus with a smooth, slightly glossy finish is shown from a front-left three-quarter viewpoint parked on a city street against a blurred sidewalk and building backdrop, with a prominent large curved windshield, rectangular headlights and a light-colored roof strip visible despite the low resolution. +train_03267.png Light teal-blue boxy minibus with slightly weathered paint and a darker lower-blue band is shown in a three-quarter front-left view, parked at a curb on a city street with pavement and blurred buildings in the background, revealing rectangular side windows, a vertical windshield, round headlights and a visible side mirror despite the low resolution. +train_03300.png A white-painted bus with a prominent horizontal blue stripe and smooth glossy metal surface is shown from a front-left three-quarter viewpoint, parked on gray pavement against a blurred urban backdrop with a red vehicle to the right, featuring dark rectangular side windows, a slanted windshield and a black front bumper/grille. +train_03528.png A low-resolution teal-blue bus with a smooth, slightly glossy finish is shown from a front‑three‑quarter viewpoint, parked on a light-gray paved surface against a pale sky and indistinct buildings/trees, with large rectangular side windows, a wide windshield, prominent roundish headlights and a darker lower bumper visible despite the blur. +train_03536.png A small, glossy cobalt-blue minibus captured in a three-quarter front-left view against a plain white background, its smooth reflective paint, rounded front nose, tall boxy body with side windows, large windshield, headlight and bumper outlines discernible despite the low resolution. +train_03621.png A slightly off-center head-on view of a weathered city bus with a white upper body and deep blue lower panels interrupted by a faded yellow vertical panel around the front door, showing chipped, dirt-streaked paint and a matte texture, a large black-framed windshield, twin round headlights and side mirrors, parked on a paved street with a low curb and a blurred white van and storefronts in the background. +train_03637.png A small cream-white minibus with a glossy finish, a broad orange-red horizontal stripe along its side and a blue front panel, shown in a three-quarter front-left view on a sunlit street with blurred green foliage and pavement behind it, its boxy profile, large rectangular windows, blacked-out windshield and dark wheels visible despite pixelation. +train_03668.png A medium-blue city bus with a glossy but slightly worn metal finish is shown from a front three-quarter view parked on a street with blurred buildings behind it, featuring a large dark windshield, rectangular side windows, a white roofline trim, and visible headlights and front bumper despite the low resolution. +train_03720.png A small white bus with a glossy, slightly reflective surface is shown from a slightly off-center frontal view, parked on a paved street against indistinct building/background, with a broad dark-tinted windshield, round headlights, side mirrors and a prominent blue rectangular marking on the lower front visible despite the low resolution. +train_03798.png A boxy white bus with a glossy blue lower band and dark-tinted windows is shown in a front-left three-quarter view parked on an asphalt urban street with indistinct buildings behind it, its large windshield, rectangular grille, dual headlights and black bumper visible despite the low resolution. +train_03803.png A white minibus with a horizontal blue stripe along its lower side is shown in a three-quarter front-left view parked on a paved street against a blurred urban backdrop of buildings and trees, its glossy slightly reflective paint, large dark-tinted side windows and prominent round headlights visible despite the low resolution. +train_03908.png A small, boxy bus rendered in a flat light-blue paint with a darker blue roof, shown in a right-facing three-quarter profile on a gray road against a bright cyan sky, with glossy black rectangular windows along the side and two prominent white circular wheels visible. +train_04157.png A small orange-red bus captured at a slight front three-quarter angle, its smooth glossy painted metal and dark rectangular windows and headlights visible above a black grille, sitting on pavement against a blurred urban street background with indistinct buildings and signage. +train_04206.png A cream-white single-decker coach with a glossy painted-metal finish, a prominent magenta lower band and thin teal stripe, shown in a left-facing three-quarter side view with dark rectangular passenger windows and a slanted windshield, parked on a road with indistinct green foliage and pavement in the blurred background. +train_04359.png A mint-teal, slightly weathered single-decker bus captured in near-profile facing right, with a white roof and lower stripe, dark rectangular passenger windows and a rounded front, parked on a roadside against a blurred green treeline and pale sky. +train_04931.png A small glossy white shuttle-style bus with a prominent horizontal red stripe along its side is seen in a three-quarter front-left view parked on a sunlit urban street with blurred trees and buildings behind it, its large windshield, black-framed side windows, boxy front end, visible headlights and black lower bumper discernible despite the low resolution. +train_04950.png A glossy bright red, boxy single-decker bus with a white roof and thin white side stripe, shown in a three-quarter front-right view revealing rectangular dark windows, black wheels and a flat, slightly rounded front face, parked on an urban street with low-rise buildings and pale blue sky in the background. +train_05058.png A bright yellow bus with glossy, slightly weathered metal paint is seen in a frontal three-quarter view, showing a dark rectangular windshield, a black grille and bumper with round headlights, and faint roof signage, parked on a city street with blurred cars and low-rise buildings in the background. +train_05108.png A pale, likely white bus with a smooth painted exterior is shown in a slightly front-side three-quarter view on a road against an indistinct urban background, its boxy profile marked by a row of dark rectangular side windows, a darker front windshield and bumper, and visible circular wheels. +train_05136.png A small white, slightly glossy minibus captured from a near-frontal three-quarter-left viewpoint, with dark tinted windshield and side windows, black bumper and trim, rectangular headlights and side mirrors, parked on an urban street with blurred trees, pavement and buildings in the background. +train_05147.png A glossy, vivid red, toy-like bus is shown in a slightly elevated front three-quarter view against a plain white background, displaying a compact boxy body with rounded corners, cream-colored rectangular windows, visible black wheels and a soft shadow beneath. +train_05175.png A glossy bright blue boxy bus with a narrow red lower stripe is shown in a front three-quarter view slightly turned to the right, parked on a city street with blurred cars and buildings in the background, and despite the low resolution you can discern large dark rectangular side windows, a wide windshield, round headlights and a black bumper/grille. +train_05243.png Frontal, centered view of a predominantly bright blue city bus with glossy painted metal and a multicolored, graffiti-style mural across its lower front, large curved windshield and twin side mirrors catching daylight, round headlights and a black bumper visible against a blurred urban street background of pavement and indistinct buildings. +train_05411.png Small compact bus rendered in glossy royal blue with lighter blue highlights and a white roof, shown in a three-quarter front-right view against a solid black background, with rectangular side windows, a large curved windshield, round headlights and visible black wheels appearing pixelated due to low resolution. +train_05612.png A white, slightly weathered metal minibus with a glossy finish and large dark-tinted side windows is shown from a front three-quarter viewpoint, parked on gray pavement in front of a low industrial/garage building, with a black bumper and wheel arches and a faint horizontal band along the side visible despite the low resolution. +train_05627.png A small, two-tone orange-red city bus with a glossy painted-metal surface and white roof is shown in a front three-quarter view revealing a large dark windshield, boxy front fascia, black wheels and side windows, set against a plain light-gray studio-like background. +train_05763.png A small bright yellow, slightly glossy school-style bus shown in a front-left three-quarter view, parked on asphalt beside a pale wall, with a boxy silhouette, rectangular side windows, black lower trim and bumper, round headlights and visible wheel arches despite the low resolution. +train_05837.png A small light-gray/white bus with smooth, slightly reflective metal paint is shown from a three-quarter front-left viewpoint parked on a paved urban street, revealing a large dark windshield, a row of rectangular side windows, a black front bumper and indistinct building and pavement in the background. +train_05839.png A small, boxy red‑orange bus with slightly matte, weathered paint is shown in a three‑quarter front view parked on pavement against a beige urban wall, with a large dark windshield and side windows, rectangular headlights, and a contrasting pale front bumper and roof signage visible despite the low resolution. +train_05881.png A small white minibus with glossy, slightly weathered paint is shown from a front-left three-quarter view parked on a paved street beside a concrete curb and low wall, featuring a large windshield and broad side windows, rectangular headlights, a black plastic bumper and side mirror, and a faint blue-tinted license plate visible despite the low resolution. +train_05942.png A compact, boxy orange-yellow bus with a white roof and blue-tinted windows shown in a three-quarter side/front view against a plain white background, featuring a rounded front, visible black wheels, and a simple flat-color, slightly pixelated texture. +train_05981.png A small turquoise-blue bus with a glossy painted-metal finish and a white horizontal band along its upper body is seen from a three-quarter front-left viewpoint parked on a street with indistinct green foliage and pavement in the background, its large dark windshield, round headlights and black wheels remaining discernible despite the low resolution. +train_06134.png A bright yellow metal bus with a smooth painted finish is shown in a slight front-left three-quarter view parked on a paved street against a blurred backdrop of trees and buildings, with a bold black horizontal stripe, large dark rectangular side windows, round headlights and a prominent front grille visible despite the low resolution. +train_06190.png Front three-quarter view of a small white minibus with a glossy, slightly weathered metal finish and a pale blue horizontal stripe along its side, parked on a paved roadside in front of green shrubs and a low building, showing a boxy front end with rectangular headlights, large windshield and visible side mirrors despite the low resolution. +train_06265.png A compact purple-pink bus with a slightly matte, worn texture is shown in a three-quarter front-left view against a muted gray‑blue background and ground, displaying a rounded front, a dark windshield, a small bright circular headlight on the near side, and a darker lower bumper. +train_06354.png A glossy orange-yellow boxy bus is shown in a three-quarter frontal view angled slightly to the right, parked on a sunlit urban street with blurred buildings and sky behind it, its large dark windshield and side windows, black bumper/grille and round headlights visible despite the low resolution. +train_06408.png A small, flat-yellow, boxy bus with rectangular side windows and a dark lower stripe is shown in a three-quarter right-side view on a paved road against a blurred blue-sky and green-ground background, its black wheels, simple front windshield and roofline still discernible despite the low resolution. +train_06529.png A bright orange-yellow single-decker bus with slightly glossy paint and a white roof is pictured from a front-left three-quarter, slightly elevated viewpoint on a city street with blurred sidewalks and buildings behind it, revealing a row of dark rectangular windows, black wheel arches and bumper, and a faint rooftop sign. +train_06637.png A compact, boxy minibus in pale sky‑blue with a smooth glossy painted surface, shown in a front‑left three‑quarter view parked at a curb against a light‑colored building backdrop, with large dark rectangular windows, a contrasting lighter roofline, and a black bumper and headlight visible despite the low resolution. +train_06665.png A mostly white, smooth-painted city bus with a bright red rectangular advertisement panel and a blue lower stripe is pictured in a three-quarter side view parked at the curb on a gray urban street, its dark windows, roof‑mounted equipment and front headlight area visible despite the low resolution. +train_07195.png A glossy bright-red bus captured in a front-left three-quarter view, its smooth painted side punctuated by rectangular pale windows and a dark bumper/wheelline, parked on a paved surface with blurred green foliage behind. +train_07223.png A small bright red bus with glossy paint is shown from a front three-quarter, slightly elevated viewpoint, stationary at a curb on an urban street with blurred buildings and other vehicles behind it, and despite the low resolution you can make out large rectangular side windows, a lighter-colored roofline, prominent front headlights and a dark grille. +train_07268.png A small bright blue minibus with a slightly glossy, uniform paint shown in a three-quarter side/front view angled toward the camera, parked on a gray paved surface against an indistinct pale background, with a contrasting white roof, dark tinted side windows, visible front windshield and bumper, and round wheel arches apparent despite the low resolution. +train_07397.png A small glossy yellow toy bus sits on a white surface in a three-quarter front-left view, showing black-painted windshield and side windows, a black grille and bumper, chunky black wheels, rounded corners and a faint roof detail, with a soft shadow beneath indicating studio-like lighting. +train_07411.png A small turquoise/teal glossy mini-bus with a white roof and dark, reflective windows is shown in a front-left three-quarter view on a plain white background, revealing a boxy silhouette, black wheels and bumper, and simple rectangular side windows despite the low resolution. +train_07422.png A glossy azure-blue, boxy minibus with a white roof and black-trimmed rectangular side windows is parked at a three-quarter front-left angle on a street, its shiny painted panels, silver grille and hubcaps, and dark window band visible against a blurred pavement and nearby vehicles background. +train_07509.png A glossy white single-decker bus with a bold green lower-side stripe and black trim is shown in a three-quarter front-left view parked on an urban street with blurred buildings and pavement, its smooth reflective metal body and large windshield and side windows, prominent headlights, side mirrors, dark front grille and rooftop destination panel clearly visible despite the low resolution. +train_07572.png A glossy white high‑roof minibus with a boxy profile and black lower trim is shown in a three‑quarter front‑right view against a plain white background, revealing a row of dark side windows, a sliding side‑door seam, a black front grille and bumper, and a small amber side marker near the front wheel. +train_07899.png A small boxy bus painted a bright yellow-orange with slightly sun-faded, worn paint and black lower trim is shown from a three-quarter front-left viewpoint, revealing dark rectangular side windows, a visible front grille and headlights, and a blurred urban street and building background. +train_07950.png Light aqua-blue single-decker bus with a smooth glossy painted-metal finish shown in a three-quarter front-left view parked on a paved surface against a blurred backdrop of trees and buildings, with a white roof, large dark rectangular side windows, black lower trim and wheel arches, and a rounded front windshield and headlights visible despite the low resolution. +train_07977.png A small beige-yellow bus with a glossy paint finish is shown in a three-quarter front-left view on a city street, revealing dark rectangular side windows, a large slanted windshield, round front headlights and a slightly raised roofline against blurred buildings in the background. +train_08013.png A yellow-orange bus with a smooth, glossy paint and a contrasting white roof is shown from a three-quarter front-left viewpoint, parked on a sunlit paved street with blurred trees/buildings in the background, and displays a prominent black grille and bumper, a thin black side stripe, and evenly spaced rectangular windows with dark trim. +train_08090.png A small white minibus with a smooth, slightly reflective painted surface and dark rectangular windows is shown in a front-left three-quarter view, parked on an asphalt street against a blurred urban building backdrop, with a high roofline, black bumper/grille and a visible side door and window arrangement. +train_08203.png A compact two-tone blue minibus with a lighter blue roof and darker lower body, glossy/reflective paint and large dark windows, shown from a front three-quarter viewpoint revealing its rounded nose, black bumper and single visible wheel, set against a plain white background and rendered with noticeable low-resolution pixelation. +train_08277.png A small white minibus with a bold blue horizontal stripe along its midsection, showing dark square windows and a red rear taillight, captured from a low rear‑three‑quarter angle parked on a city street with blurred buildings and pavement, its glossy metal body appearing slightly worn and reflective despite the low resolution. +train_08357.png A small boxy bright green minibus viewed from a slight front-left three-quarter angle, with a smooth glossy green body, darker rectangular windows and round dark wheels, a pale horizontal roof/detail stripe, and a blurred dark-green background. +train_08600.png A compact, glossy yellow minibus with a rounded front and black trim seen at a three-quarter front-left view, its dark rectangular side windows and small black wheels visible against a shadowed roadway with blurred green foliage and a pale sky in the background. +train_08665.png A glossy yellow-orange bus shown in a three-quarter front-left view against a plain white background with a soft shadow beneath, displaying dark rectangular windows, a black front bumper/grille, rounded wheel arches and a compact, toy-like boxy silhouette. +train_08892.png A compact, glossy light‑blue minibus with a white roof and dark‑tinted side windows is shown from a front‑left three‑quarter viewpoint, parked against a bright, overexposed background, revealing a rounded front fascia with a black bumper/grille, small wheels and a faint white side stripe despite the low resolution. +train_08932.png A small, boxy bus painted a bright yellow with an orange lower band and mildly weathered, matte finish is shown in a front three‑quarter view parked on a light-gray, snow-dusted pavement in an industrial/urban lot, with large dark windows, round headlights and a white front bumper visible. +train_09039.png A small glossy orange-red minibus with a contrasting white roof and dark-tinted single-pane windshield is shown in a three-quarter frontal view, parked on a street with indistinct pavement and nearby vehicles, its rounded front, black window trim and headlight area visible despite the low resolution. +train_09149.png A glossy red single‑deck bus with a white roof stripe and dark lower trim is shown in a three-quarter front-left view parked on a paved urban street with other vehicles and blurred buildings in the background, its large rectangular windshield, side windows and twin front headlamps visible despite the low resolution. +train_09427.png A faded turquoise-blue city bus with a white lower band and smooth painted metal surface is shown from a front-right three-quarter view parked on a grey urban street by a curb, with dark rectangular passenger windows, a large windshield and headlamp clusters, visible wheel arches and a distinct boxy profile against blurred buildings and another vehicle in the background. +train_09578.png A small, faded yellow minibus seen from a front-left three-quarter view, its matte, slightly weathered paint contrasting with dark, rectangular tinted side windows, black bumper and wheel arches, and a visible side mirror, parked on sunlit pavement in front of a low stone wall and indistinct urban buildings. +train_09627.png A smooth, turquoise-blue bus seen in a three-quarter front-side view with a darker blue lower stripe, a row of rectangular dark windows and round wheel arches, sitting on pale gray pavement with a blurred light sky and indistinct buildings in the background. +train_09663.png A glossy, light-blue minibus with a darker-blue lower band and white roof appears in a three-quarter front-left view on a plain white surface, showing a rounded front windshield, rectangular side windows, small black wheels and simple dark grille/headlight details. +train_09954.png A pale turquoise-teal, smooth glossy, boxy bus is shown in a three-quarter front-left view, featuring a contrasting white roof stripe, large rectangular side windows and black wheels, parked on a sunlit paved lot among other vehicles and low buildings. +train_10031.png A bright yellow, pixelated side-profile bus facing right with flat, blocky color and a thick black outline, three cyan-blue rectangular side windows plus a small driver's window, two black wheels with gray hubs, a black front bumper and headlight, shown against a plain white background. +train_10130.png A small light-gray, glossy bus shown in a three-quarter front-left view against a plain white background, revealing a boxy profile with large rectangular windshield and side windows, prominent headlights and front grille, visible black wheels and a side mirror. +train_10242.png A compact, glossy white minibus with a smooth painted surface and a blue horizontal stripe, shown from a front-left three-quarter view with dark tinted rectangular windows, black front grille and bumper and visible headlights, parked on an urban street beside a curb and building wall. +train_10298.png A three-quarter front-left view of a compact orange-red bus with slightly glossy, weathered metal paint and a pale roof stripe, showing a large rectangular windshield, dark-tinted side windows, round headlights and a black bumper, parked on a paved street before indistinct light-colored buildings under an overcast sky. +train_10325.png A boxy, compact orange-red minibus with a slightly worn, matte finish and a white roof is shown from a front-left three-quarter view parked at a street curb in an urban setting, its large windshield, rectangular side windows, round headlights and dark bumper visible despite the low resolution. +train_10362.png A small, boxy city bus with glossy light-blue and white paint (showing slight grime) seen from a front three-quarter view, parked on a grey urban street with blurred buildings behind it, notable for its large curved windshield with dark-tinted windows, twin round headlights and a conspicuous yellow bumper stripe. +train_10399.png Muted orange-brown bus with a faded green roof and matte paint, shown in a front-left three-quarter view on a city street with blurred buildings behind, displaying a row of dark rectangular passenger windows, a centrally divided windshield and round headlights visible despite the low resolution. +train_10535.png A small white passenger bus with a smooth, glossy white body and a continuous dark-tinted window band, shown from a front-left three-quarter viewpoint parked on a sunlit street in front of pale buildings and a sidewalk, with a curved roofline, black front bumper/grille and several rectangular side windows visible despite the low resolution. +train_10615.png A light-blue, glossy-painted bus with a white roof and dark horizontal windows is seen from a slight front-side angle on a roadside with green foliage in the background, its rectangular body, windshield, headlights and dark wheels discernible despite the low resolution. +train_10658.png A pale cream-colored bus with glossy, slightly reflective paint and a dark blue lower band is shown in a three-quarter frontal view parked on a city street, its large split windshield, round headlights, black bumper and rectangular side windows visible against a blurred sidewalk and building backdrop. +train_10735.png A small, boxy cobalt-blue bus is shown in a front three-quarter view angled slightly to the right, its glossy paint showing specular highlights, with a tall windshield, prominent rounded headlights and a white front license plate, parked on dim pavement against a dark, shadowy background. +train_10751.png A light turquoise-blue single-decker minibus with a slightly glossy but worn paint surface is shown in a front-left three-quarter view parked along a street in front of a pale building, with a white roof, dark rectangular side windows, prominent round headlights and a black front bumper visible despite the low resolution. +train_10848.png A teal-blue city bus with a white roof and smooth, slightly reflective metal surface is shown in a front three-quarter view facing left, parked on a pale concrete surface with a washed-out sky and indistinct urban shapes behind it, its dark rectangular passenger windows, large slanted windshield, visible front wheel arch and headlight discernible despite the low resolution. +train_10952.png A glossy bright red, double-decker-style bus photographed from a front three-quarter viewpoint, with blocky black window bands and a white roof showing pixelated highlights, sitting against a muted teal-blue background with indistinct darker shapes and visible black wheels plus a small yellow rectangular front detail. +train_11291.png A bright yellow, glossy school-bus-style vehicle with smooth painted metal and black trim is shown from a three-quarter front-left viewpoint, revealing a row of dark rectangular side windows, a curved windshield, black bumper and grille, and an indistinct pale-gray urban/garage background with light pavement in the foreground. +train_11298.png A small, bright yellow, slightly glossy boxy minibus is shown in a three-quarter front-left view against a plain white background with a faint shadow, revealing black-tinted windshield and side windows, a rounded front with visible headlights and a black bumper, and small dark wheels. +train_11343.png A glossy orange-red bus with a white roof stripe and slightly weathered metal texture is shown in a three-quarter front-side view parked by a paved street with a grassy verge and sidewalk, with visible rectangular side windows, a large windshield, black bumper and wheel wells despite the low resolution. +train_11395.png A small boxy minibus with glossy bright blue paint and a white lower-side stripe is shown in an oblique front-left three-quarter view, parked at a curb on a dim urban street with another dark vehicle behind, its large windshield, rectangular headlights and prominent side mirror visible despite the low resolution. +train_11592.png A small boxy minibus painted glossy orange-red with a white roof and a narrow yellow stripe along the lower body, shown in a front-left three-quarter view on a city street with dark tinted side windows, round headlights and parked vehicles and storefronts in the background. +train_11733.png A faded medium-blue bus with a white roof and horizontal side stripe is shown in a three-quarter frontal view on a dark street, its rectangular side windows, white front bumper and two round headlights discernible despite the low resolution. +train_11815.png A boxy white bus with smooth glossy paint and a narrow blue stripe along its lower front is shown nearly head-on on a paved street with a curb to the right, revealing a large rectangular windshield, round headlights and a black bumper despite pixelation. +train_11834.png A three-quarter front-left view of a boxy, glossy white city bus with a horizontal blue side stripe, large dark rectangular windows and windshield, black lower bumper and wheels, and a visible side mirror, parked on a paved urban street beside a curb with low buildings in the background. +train_11870.png A compact bus painted bright red with a cream upper band and a slightly glossy finish is shown in a three-quarter front-left view parked on a paved street with blurred trees and buildings in the background, revealing rectangular side windows, a prominent windshield and bumper, and a roof sign visible despite the low resolution. +train_12091.png Front three-quarter-left view of a glossy yellow-orange bus with a black lower belt and wheel arch, rectangular passenger windows and a dark destination panel above the windshield, parked on an urban street with blurred buildings and a small blue car nearby. +train_12379.png A glossy white minibus with bold red and blue horizontal stripes along its smooth metal side, shown in a three-quarter front-left view parked on an urban street with low buildings and pavement, featuring dark tinted rectangular windows, a curved roofline and prominent headlights and side mirrors visible despite the low resolution. +train_12452.png A small, bright yellow-orange bus with a smooth, slightly reflective painted-metal surface is shown in a three-quarter front-left pose revealing dark rectangular side windows, a rounded roof, a black lower stripe and wheel wells and headlight shapes, set against a pale, overcast sky and an indistinct light-gray background suggesting a parking area. +train_12466.png A small, glossy deep-red minibus with a contrasting white roof and dark tinted windows is seen at a three-quarter front-left angle parked on a city street in front of a stone building, with a vertical white panel by the entrance and rooftop fixtures visible despite the low resolution. +train_12655.png A light-blue city bus with a glossy paint finish and a white roof is captured in a three-quarter front-left view on a city street with blurred buildings and other vehicles behind it, showing dark tinted side windows, a large front windshield, vertical passenger doors and a black lower bumper with a rectangular destination display above the windshield visible despite the low resolution. +train_12664.png A smooth white coach painted with a bold horizontal red stripe along its flanks is shown in a three-quarter front-angle view, revealing a rounded windshield, dark tinted rectangular side windows and headlights, parked on a paved lot by low industrial buildings and a chain-link fence beneath an overcast sky. +train_12685.png A small, boxy bright green bus with a smooth glossy finish is shown in a three-quarter front-right view, sitting on a pale concrete or asphalt surface against a blurred light-gray background, with dark rectangular windows, a white roof stripe and two visible black wheels. +train_12809.png A faded orange-red, boxy bus with a lighter off-white roof and dark glossy rectangular windows is shown in a three-quarter front-left view, parked on a sunlit urban street with indistinct pavement and building shapes behind it, its flat front, horizontal side-window band, and faint shadow beneath still discernible despite the low resolution. +train_12810.png A small, boxy light-blue city bus with a glossy, slightly weathered finish and a pale cream roof, shown in a three-quarter front-left view parked at a curb on an urban street, with large dark rectangular windows, a prominent black bumper and wheel arches, and a roof-mounted vent visible despite the low resolution. +train_12900.png A predominantly white, glossy city bus seen in a three-quarter front-left view, showing dark-tinted rectangular side windows, a large divided windshield with black trim and a low black bumper, parked on an urban street with blurred buildings and pavement in the background. +train_12937.png A low-resolution glossy bright red, boxy bus shown in a near-frontal, slightly right-turned pose against a uniform darker-red background, with a prominent dark rectangular windshield, small white headlights and simplified rectangular body contours visible despite pixelation. +train_12975.png A compact white bus with a smooth, slightly glossy finish is shown in a centered head-on view against a plain pale background, featuring a large dark rectangular windshield flanked by black side windows, small front lights set low on the face, and a thin red stripe along the lower bumper. +train_12979.png A small, boxy bright blue bus with a glossy painted texture and a lighter roof is shown from a three-quarter front-left viewpoint against a plain white background, displaying dark rectangular windows, round headlights, a black bumper and small black wheels visible despite the low resolution. +train_13144.png A glossy white, smooth-painted minibus with a bold blue lower stripe is shown in a front three-quarter view, its dark-tinted windshield and side windows, round headlights and protruding side mirror visible against a blurred gray pavement and indistinct urban background. +train_13171.png A small, predominantly white bus with a glossy finish and a bold red horizontal stripe along its side is shown in a three-quarter front-left view parked on pavement against an indistinct pale background, with a large windshield, rectangular headlights, a black bumper, and a row of side windows visible despite the low resolution. +train_13185.png An orange-red, slightly weathered glossy midibus parked at a three-quarter front-left angle, showing a large tinted windshield, white roof, rectangular headlights, black bumper and side mirrors, set against an indistinct urban sidewalk and building background. +train_13203.png A yellow bus with glossy but slightly weathered paint is shown in a three-quarter side view facing right, parked on a grey paved street against an indistinct pale urban background, with dark rectangular windows, a thin black side stripe and a black front bumper visible even at low resolution. +train_13214.png A small orange-painted bus with a smooth, slightly reflective metal surface shown in a low three-quarter frontal view against a pale, featureless background (likely pavement/sky), displaying a dark horizontal band of windows, a darker lower bumper/wheel area, rounded front corners and faint headlight highlights. +train_13306.png A glossy pale green-and-white bus captured from a rear three-quarter angle, its smooth reflective metal surface showing a darker green horizontal band and dark-tinted rectangular windows, with rounded rear corners and faint tail lights, parked on a sunlit street with blurred trees and another vehicle in the background. +train_13321.png A light off-white single-decker bus with a smooth, slightly reflective metal surface and a dark horizontal band of rectangular tinted windows is seen in a three-quarter front-left view, parked on a paved urban street with indistinct buildings and foliage behind it, showing a rounded front bumper, headlight cluster, and a darker lower skirt visible despite the low resolution. +train_13329.png A low-resolution photo of a predominantly red‑orange city bus with a slightly glossy finish, a white roof and darker lower trim, captured at a three-quarter front‑left angle on a busy urban street with blurred buildings and pedestrians in the background, showing a large curved windshield, rectangular side windows, a rooftop destination panel and a prominent front façade. +train_13496.png A glossy deep-blue, retro-style bus with a contrasting white roof and bumper is shown in a three-quarter front-left view against a plain white background, its boxy body, round chrome-like headlights, central grille and row of rectangular side windows clearly visible despite the low resolution. +train_13536.png A low-resolution, pixelated bright-orange bus shown head-on against a solid black background, with a blocky dark windshield and side windows, two small gray headlights at the lower corners, darker-orange shading suggesting a grille and bumper, and a flat roofline. +train_13819.png A compact light-blue bus with a smooth, glossy finish is shown in a low front-three-quarter view against a dark, out-of-focus background, revealing a large rectangular windshield, two round headlights set into a white bumper, small side mirrors, and blocky roof detailing rendered as pixelated highlights. +train_14025.png A small white bus with a glossy finish and a prominent horizontal blue stripe along its side is shown in a three-quarter front-left view parked on a sunlit paved street with a curb and indistinct urban background, its large curved windshield, rectangular headlights, side mirrors and boxy front bumper still discernible despite the low resolution. +train_14298.png A white coach-style bus with slightly reflective, worn paint and a broad blue lower stripe plus a thin red accent near the roof, seen in a three-quarter front-left view showing a rounded windshield, large rectangular side windows, side mirrors and a low front bumper, parked on a street with other vehicles and indistinct buildings and trees in the blurred background. +train_14299.png A compact bus painted a bright glossy red with a contrasting white roof and bumper stripe, shown in a low front-left three-quarter view revealing black rectangular windows, a rounded front with twin circular headlights and subtle reflective highlights, sitting on gray textured pavement against a pale, out-of-focus backdrop. +train_14301.png A white, boxy minibus with a smooth painted finish and dark rectangular side windows is shown from a front-left three-quarter viewpoint, parked on a paved surface against an indistinct low-detail background, with visible round headlights, a prominent front grille and a large windshield reflecting light despite the low resolution. +train_14452.png Predominantly white bus with a glossy painted texture and a bold teal-green horizontal stripe along its side, shown in a slightly angled front-left three-quarter view on a paved surface against an overexposed bright background, with dark rectangular windows, a curved windshield and black wheels discernible despite the low resolution. +train_14496.png A light-blue, glossy-painted city bus captured from a front-left three-quarter viewpoint on a paved street, its boxy silhouette showing dark rectangular side windows, a darker roofline and reflective windshield set against a low-contrast, out-of-focus urban background. +train_14652.png A small, boxy bright blue minibus with a slightly glossy painted-metal finish is shown in a three-quarter front-left view on an urban street, displaying a white roofline and rectangular side windows while blurred buildings and another vehicle form the background. +train_14740.png A white, slightly weathered, boxy bus photographed from a low frontal three-quarter view, showing dark-tinted rectangular windows, a prominent dark grille and twin headlights, with a faint sidewalk and pale building forming an urban background. +train_14856.png A small orange bus with a glossy, plastic-like surface seen in a low front-left three-quarter view against a plain light-blue background, showing a split black windshield, round headlights, black wheels and a white roof stripe, with noticeable blocky pixelation from the low resolution. +train_14998.png A small glossy orange bus shown in a three-quarter side view facing right, with a darker orange lower trim, light-blue rectangular windows separated by thin black pillars, round black wheels with silver hubs, and a plain white background. +train_15015.png A compact light-blue bus with a glossy finish seen from a slight front-left angle against a plain white background, featuring a white roof, two dark rectangular front windows divided by a central pillar, round yellowish headlights and small black wheels visible despite the low resolution. +train_15336.png A small teal-blue bus with a white roof and slightly glossy metal sides, captured from a front-left three-quarter viewpoint parked on a street with blurred cars and trees in the background, showing dark tinted rectangular windows, a black bumper/grille and circular headlights. +train_15722.png A glossy cobalt-blue single-decker bus captured from a three-quarter front-left viewpoint, with a white roof and pale rectangular advertising panel on the side, dark tinted rectangular windows, black wheel arches and headlights visible, standing on light pavement against a blurred, light-colored urban background. +train_15725.png A small, bright red, boxy bus seen from a slight front-left three-quarter angle against a plain teal background, with a large dark windshield, two square front headlights, a white roof stripe and black wheels, the glossy paint rendered as blocky, pixelated texture. +train_15779.png A light beige/off-white single-decker bus with a darker lower band and slightly weathered matte paint is shown in a three-quarter front-left view, revealing large dark rectangular windows, a rounded windshield and headlight area, parked on a sunlit urban street with indistinct buildings and pavement in the blurred background. +train_15785.png A small boxy bus in bright orange-yellow with a slightly pixelated, matte appearance, shown in a front three-quarter view revealing a dark rectangular windshield and side windows, round dark wheels and a gray bumper, set against a plain white background. +train_15795.png A mostly white bus with a glossy metal finish and a faint blue lower stripe is shown from a slightly off-center frontal viewpoint parked on an urban street with blurred buildings and vehicles behind it, featuring a dark roof-mounted destination panel, large tinted windshield, round headlights and visible side mirrors. +train_15895.png A low-resolution orange-red single-decker bus with a slightly weathered matte finish is shown in a three-quarter frontal view angled to the right, parked on a gray paved street with an indistinct urban background, and displays prominent dark rectangular windows, a black front bumper/grille and a contrasting lighter-colored roof. +train_15928.png A pale yellow-orange, smooth-metal bus seen in a three-quarter front-right view, with a white roof, dark rectangular side windows and black wheel arches/bumpers, parked on a paved road with blurred green foliage and low buildings in the background. +train_16053.png A compact orange-red bus with a slightly glossy, worn paint surface is shown in a three-quarter front-left view, parked on a light-gray paved area against an indistinct pale urban/industrial background, with dark-tinted rectangular side windows, a white roof stripe and two visible black wheels. +train_16406.png A three-quarter front-left view of a glossy school-bus–yellow minibus with dark rectangular windows, a black lower stripe and bumper, visible headlight and grille details and slight surface grime, parked on a sunlit urban street against low buildings and a curb. +train_16602.png A glossy bright-red, boxy bus captured in a front three-quarter view with reflective rectangular side windows and a white route-display panel above the windshield, parked on an urban street with blurred buildings and other vehicles behind it, its black grille, round headlights and large wheels discernible despite the low resolution. +train_16607.png A small glossy red vintage-style minibus with a contrasting white roof and chrome bumper is shown in a front three-quarter view against a plain light background, its rounded headlights, large windshield with wipers, side windows and black tires visible despite the low resolution. +train_17223.png A small, boxy bus painted a bright magenta-pink with a glossy, slightly reflective finish is shown in a front three-quarter view parked on a city street against blurred buildings, its large windshield and side windows reflecting light and punctuated by round headlights and a white bumper/license-plate area with faint horizontal striping along the side. +train_17287.png A glossy bright-red minibus with smooth reflective paint and black bumper trim is shown in a front three-quarter pose parked on a roadway, revealing a large sloping windshield, rectangular side windows and visible wheel arches, set against a grassy hillside and low buildings in the background. +train_17651.png Glossy bright red mid-size bus with slightly worn reflective paint shown in a front three-quarter right-facing view parked on a paved urban street, featuring dark rectangular side windows, a black front grille and bumper, and round headlights visible despite the low resolution. +train_17782.png A white, slightly weathered boxy bus with a bold red stripe along its side and glossy dark windows is shown in a three-quarter front-left view parked on an urban street in front of blurred multistory buildings, with a large front windshield, rectangular headlights and a roof-mounted vent visible despite the low resolution. +train_17848.png A small turquoise-teal minibus with a glossy, slightly reflective finish and a contrasting white roof is shown from a front three-quarter left viewpoint parked on a paved street against an indistinct urban backdrop, with large dark windshield and side windows, a rounded white front bumper, and a visible black wheel arch. +train_17997.png A small, toy-like bus with a glossy bright red body and contrasting white roof and trim, shown in a front three-quarter view against a dark background, revealing rounded retro styling with black windows, twin round headlights, a chrome-look bumper and small wheels. +train_18285.png A bright yellow, glossy bus captured in a frontal three-quarter view, its smooth painted sides interrupted by dark rectangular windows and a black front bumper with round headlights and wheel arches, set against an out-of-focus street and pale sky background. +train_18290.png A compact, glossy orange minibus with a contrasting white roof and narrow white side stripe is shown at a slight front three-quarter angle parked on a paved street, with large dark passenger windows, a boxy high roofline, prominent black bumper and round headlights visible against a blurred background of trees and buildings. +train_18334.png A glossy two-tone blue bus with a white roof stripe is shown in a frontal three-quarter view, its large rectangular windshield, dual headlights and side-window band visible against a blurred urban street and pavement background, with a reflective paint texture and a prominent side mirror discernible despite the low resolution. +train_18365.png A glossy white coach-style bus with a bold orange-red horizontal stripe and dark tinted rectangular windows is shown in a three-quarter front-left view, parked on a paved street against a pale building and light-blue sky background, its smooth painted surface, large windshield and black front bumper discernible despite the low resolution. +train_18481.png A compact light-blue minibus with a glossy painted body is captured from a low front three-quarter angle, showing a black front bumper and grille, rectangular windshield and side windows, and parked on a paved street with a curb and indistinct urban background. +train_18504.png The small boxy bus is painted a glossy bright green with a lighter horizontal band and darker lower trim, shown in a three-quarter frontal view angled slightly to the right and parked at a curb on a narrow urban street with buildings and a motorbike nearby, its rectangular windshield, twin round headlights, black bumper, front signage and roof-mounted rack visible despite the low resolution. +train_18976.png A compact, glossy cyan-blue bus seen head-on with a slight leftward angle, its reflective paint, white roof and bumper, large rectangular windshield, round headlights and a roof-mounted destination box clearly discernible despite low resolution, parked on a sunlit street with blurred trees and buildings in the background. +train_19064.png A glossy red single-decker bus with a white upper stripe and dark tinted windows is shown in a three-quarter front view parked at the curb on a city street with blurred low buildings and pavement behind it, its large curved windshield, round headlights and a faint roof-mounted sign visible despite the low resolution. +train_19213.png A light blue, slightly glossy mid‑size bus viewed from a left‑front three‑quarter angle parked on a paved road with a blurred urban backdrop, showing a white roof and horizontal side stripe, large rectangular windshield and side windows, and a dark front bumper and headlights visible despite the low resolution. +train_19445.png A glossy, bright yellow city bus with a slightly weathered paint texture is shown in a three-quarter side view revealing its long side and front end parked on a paved urban street with low buildings and trees in the background, with a row of dark rectangular windows, black wheel arches and visible front windshield and grille despite the low resolution. +train_19537.png A small turquoise-teal bus with a glossy finish and a white roof is shown in a three-quarter front-right view, parked on a gray paved street with green lawn and houses behind it, featuring a rounded front, large dark windshield, twin round headlights and a contrasting yellow lower stripe. +train_19762.png A small white shuttle-style bus with a glossy painted-metal surface and a pale teal horizontal stripe along its side, shown in a three-quarter front-right parked pose on a paved lot in front of low buildings, with dark wheels, black bumper trim and a row of rectangular side windows clearly visible despite the low resolution. +train_19772.png Small boxy minibus with glossy two-tone paint—sky-blue upper body and white lower panels—seen in a three-quarter front-left view parked on an urban curb with other vehicles and a sidewalk behind, showing rectangular side windows, a dark front windshield and bumper, and smooth metal bodywork. +train_19841.png A small white minibus with glossy but slightly weathered paint seen from a front-left three-quarter view, parked on a paved lot in front of a bright blue corrugated wall and gray garage doors, showing a large wraparound windshield, black front bumper and mirrors, round headlights and a row of side windows along the body. +train_19942.png A white mid-size city bus with a bold blue lower-side stripe and smooth painted-metal body showing slight grime is captured in a front-left three-quarter view, parked on a paved road near a grassy verge and low structures in the blurred background, with its large windshield, rectangular headlights, black grille and boxy front silhouette clearly visible despite the low resolution. +train_20010.png A light beige (off‑white) bus with a faint pale green stripe and a slightly matte, weathered surface is shown in a front‑left three‑quarter view parked on a paved street with indistinct buildings and trees in the blurred background, with long dark rectangular side windows, a rounded front windshield, and a darker lower bumper/skirt visible despite the low resolution. +train_20252.png A bright red, smooth-faced bus is shown in a front-left three-quarter pose with a glossy painted texture, two white rectangular side windows and a windshield, black wheel arches and grille/headlight details visible despite the low resolution, set against a neutral transparent background. +train_20313.png A low-resolution, three-quarter-front view of a small boxy beige-brown bus with a white roof and cream bumper, dark rectangular windows and round headlights, parked on a flat gray surface against a pale, featureless background. +train_20378.png A bright, slightly weathered yellow bus seen from a front-left three-quarter viewpoint, its glossy painted metal body with black lower trim, prominent rectangular windshield, round headlights and side windows visible while parked on a paved street with trees and a low building in the background and another vehicle partially visible to the right. +train_20524.png A compact bright blue minibus with glossy paint and a white roof sits in a slightly left-front three-quarter view on gray pavement, showing a large dark windshield, two round headlights, a dark front bumper and window outlines, with a blurred street background. +train_20536.png A small boxy blue bus with glossy painted metal and a paler roof is shown from a front-right three-quarter viewpoint parked on a paved street with low buildings behind it, its dark reflective windows, a split central windshield, white front bumper/plate area and rectangular headlights visible despite the low resolution. +train_20649.png A head-on view of a solid green city bus with a white roof and painted body, large rectangular windshield split by a central mullion, black bumper and round headlights, parked on a paved urban street with indistinct buildings and sky blurred in the background. +train_20671.png A cream-colored coach with a glossy painted-metal surface and a broad red-orange lower stripe is shown in a three-quarter front-side pose, displaying dark rectangular tinted windows, a rounded roof and wheel arch, and side mirrors while parked on a paved street against a blurred backdrop of trees and buildings. +train_20964.png A small orange-red bus viewed from a front three-quarter (left-front) angle, its slightly glossy painted-metal body and darker roof/window band rendered as blocky shapes with a bright rectangular windshield and headlight area, parked on a paved street by a pale curb with indistinct buildings blurred in the background. +train_20981.png A small white minibus with glossy, smooth painted metal and a bold horizontal orange stripe along its midsection is shown from a slight front-right three-quarter viewpoint, parked on a paved roadside with blurred green trees in the background and visible large curved windshield, protruding side mirrors and rectangular headlights despite the low resolution. +train_20998.png A low-resolution, pixelated navy-blue coach with a cream-colored front panel and pale yellow roof is shown in a three-quarter front-left pose, parked on a light gray roadway against an indistinct pale background, with dark rectangular windows, a rounded windshield and a shadow beneath emphasizing its bus silhouette. +train_21049.png A small, boxy red bus with glossy but slightly pixelated paint is shown in a front three-quarter view parked on a street against a pale building backdrop, revealing rectangular side windows, a large front windshield, a white roof stripe and black wheels and bumper. +train_21089.png A compact, bright red-orange bus with a smooth painted surface shown at a front-left three-quarter angle against a plain white background, featuring a large blue windshield, dark rectangular side windows, white headlights and visible black wheels and undercarriage despite the low resolution. +train_21193.png A small cream-beige minibus with a glossy smooth metal finish and a dark maroon lower stripe is shown in a three-quarter front-left view parked on a gray urban street against a pale building, its rectangular dark windows, black front bumper and circular headlight visible despite the low resolution. +train_21253.png A light cream-yellow bus with a smooth painted finish and dark rectangular windows, seen from a frontal three-quarter angle parked on a paved surface with blurred green foliage and sky behind it, with a prominent windshield, black bumper and symmetrical rectangular headlights visible despite the low resolution. +train_21373.png A glossy cobalt-blue bus with a white lower stripe and smooth reflective paint is shown in a front three-quarter view, parked on a city street with blurred buildings and another vehicle in the background, revealing a large dark windshield, rectangular headlights, a visible side mirror and a rooftop destination panel. +train_21714.png A white city bus with a bold blue horizontal stripe and glossy painted metal surface is captured in a three-quarter front-left view, parked on a narrow urban street against indistinct low-rise buildings and an overcast sky, with large rectangular side windows, a curved front windshield, side mirrors and a visible headlight cluster despite the low resolution. +train_21777.png A small, boxy bright-red bus with glossy paint and a white vertical front stripe/grille, shown in a three-quarter front-left view with dark-tinted windows and a black bumper, parked at a sunlit curb against an indistinct urban sidewalk and building background. +train_22187.png A small, bright blue minibus with glossy paint and a white side stripe is shown in a three-quarter side view facing left, parked on a city street in front of blurred storefronts, with large dark windows, black wheel arches and a slightly rounded front end. +train_22478.png A boxy orange-yellow city bus is shown in a front three-quarter view, its glossy yet slightly weathered paint, large rectangular windshield with a dark destination panel above, prominent round headlights and black bumper visible, parked on a sunlit street with blurred trees and buildings in the background. +train_22614.png A glossy white compact minibus with a smooth painted metal finish is shown in a three-quarter front view against a plain light background, revealing a tall boxy roof, large dark windshield and side windows, black bumper/grille and mirrors, and small wheels with visible wheel arches. +train_22842.png A small teal-green minibus with a slightly glossy painted-metal finish and a white roof is shown in a front three-quarter view parked on a city street with blurred pavement and buildings behind it, its large rectangular windshield, prominent round headlights, and dark side windows visible despite the low resolution. +train_22900.png A small white minibus with a glossy surface and a blue-green horizontal stripe along its side is shown from a low front three-quarter viewpoint parked on a paved street with trees and sky behind it, revealing a rectangular windshield, multiple side windows, round headlights and a black front bumper. +train_22962.png A low-resolution front three-quarter view shows a cream-yellow bus with a smooth painted-metal surface, a continuous dark window band and a thin darker side stripe, rounded front and black bumper, positioned on a sunlit street with indistinct trees and other vehicles blurred in the background. +train_23064.png A small bright cyan-blue bus with a glossy metal finish and dark rectangular side windows is shown from a slight front-left three-quarter angle, parked on a paved street against a blurred urban/building background, with a lighter-colored roof, silver bumper and a visible round headlight. +train_23158.png An orange, glossy-painted single-decker bus shown in a front-left three-quarter view parked by a curb on a grey urban street, with rectangular dark-tinted windows, black bumper and wheel arches, prominent headlights and a flat, boxy profile visible despite the low resolution. +train_23165.png A small light-blue bus with a white roof and darker blue lower stripe, its glossy but slightly weathered paint visible, shown from a three-quarter front-left viewpoint parked on an urban street by a curb with low buildings in the background, revealing a large rectangular windshield, prominent front headlights and side passenger windows and door. +train_23227.png A glossy red double-decker bus viewed from a low three-quarter front-left angle, showing two tiers of dark rectangular windows, a white roof stripe and round headlights, set against a blurred gray urban street and buildings background. +train_23501.png An orange, boxy bus with a glossy painted texture is shown in a three-quarter front-left view on a pale surface, with a dark rectangular windshield and side-window row, black circular wheels and a darker front grille area visible despite the low resolution. +train_23785.png A slightly angled three-quarter front view of a small bright orange bus with a smooth, slightly glossy finish, blue-tinted windshield and side windows, round headlights above a black bumper and visible black wheels, parked on gray pavement against a pale, featureless wall. +train_23834.png A light-blue, smooth-painted compact bus seen from a front three-quarter angle, with a white roof, dark rectangular windows, a black grille and headlights, sitting on a paved road against a soft, out-of-focus urban/sky background. +train_23978.png A bright orange-red bus with a smooth, slightly glossy paint surface is shown from a front three-quarter viewpoint revealing its windshield and a row of side windows, parked on a paved street with an out-of-focus light-colored urban background and visible dark wheel wells and a contrasting lighter bumper. +train_24022.png Boxy white bus with a smooth painted finish and a broad red band along the roofline, shown in a front-left three-quarter view with dark rectangular side windows and a blue vertical panel near the front, parked on a paved surface with green grass and trees in the blurred background. +train_24097.png A predominantly white city bus with a broad blue stripe and glossy, slightly reflective painted metal surface is captured in a front three‑quarter view parked on an urban street with buildings and other vehicles in the background, showing large dark rectangular side windows, a black front bumper and mirror, and a rooftop destination display visible despite the low resolution. +train_24202.png A small, cartoonish bus is shown in a three-quarter front-left view, painted bright mint green with a glossy white lower band, blue-tinted rectangular windows and a curved windshield, a pink-accented front bumper, black wheels with yellow hubs, and simple rounded lights, set against a solid circular sky-blue background. +train_24313.png An orange-yellow city bus photographed from a front-side three-quarter view, its smooth, slightly glossy metal exterior showing a row of dark rectangular passenger windows, a black lower bumper/trim and a rounded roofline, set against an indistinct urban street background with pavement and blurred building shapes. +train_24334.png A low-resolution three-quarter right-side view of a single-decker bus painted a worn matte orange-red with a lighter white roof and black trim, showing a row of dark rectangular side windows, a rounded front windshield and visible wheel arch while parked on a paved street against an indistinct urban background. +train_24353.png A glossy cobalt-blue minibus with a white roof and lower bumper is seen from a slight frontal three-quarter angle on a sunlit street with indistinct buildings behind it, showing a wide windshield with visible wipers, prominent rectangular headlights, and a horizontal grille. +train_24508.png A three-quarter front-left view of a low-floor city bus painted pale teal/seafoam green with a matte finish and a white roof, showing large rectangular passenger windows with dark trim, a front entry door and darker lower skirt, parked on gray urban pavement with blurred buildings in the background. +train_24525.png A white, glossy city bus with a faint blue side stripe, dark-tinted wraparound windshield and black trim, shown from a slight front three-quarter viewpoint parked on an urban street with blurred buildings and other vehicles behind it, revealing prominent rectangular headlights, a black front bumper and protruding side mirrors despite the low resolution. +train_24534.png A small, glossy red vehicle seen from a front-left three-quarter viewpoint, its paint showing reflective highlights and slight pixelated grain, with round headlights, a black grille and lower bumper, dark-tinted windows and side mirrors visible, parked on a sunlit street beside another red car and a blurred curbside urban background. +train_24569.png A boxy, glossy orange-red city bus with a white horizontal stripe and dark lower trim, its rectangular side windows and front windshield visible in a front three-quarter view as it sits angled toward the left at a curb on a paved urban street with indistinct buildings in the background. +train_24585.png A faded cream-yellow city bus with a matte finish is shown in a rear three-quarter side view on a street, its boxy silhouette revealing a darker lower band, a row of rectangular dark windows and black wheels, with a small blue vehicle and green foliage visible in the blurred background. +train_24621.png A small pale lavender metallic bus with a slightly glossy, smooth finish is shown from a front three-quarter left viewpoint, parked on an asphalt lot next to a grassy verge and trees with a low building in the background, featuring a boxy front end with rectangular headlights, a black bumper and trim, large dark windshield and side windows, and visible silver hubcaps. +train_24649.png A small, boxy minibus painted a deep royal blue with a smooth glossy finish and a lighter roof/window band, shown at a three-quarter front-left angle revealing the windshield, side windows and round headlights, parked against a bright, overexposed light-colored background. +train_24661.png A small boxy red bus with a cream/white roof and glossy painted-metal finish, captured in a low-resolution three-quarter front-left view on a gray paved street, showing dark rectangular windows, twin headlights and a black bumper against a blurred urban background. +train_24726.png A glossy bright-red single-decker bus shown in a low-resolution three-quarter front-left view on a pale pavement background, its smooth reflective paint interrupted by dark rectangular windows, a darker front grille area and a subtle underbody shadow with a visible dark wheel. +train_24907.png A front-left three-quarter view of a light-blue, glossy city bus with a white roof stripe and black bumper, showing a large rectangular windshield, paired headlights, a continuous band of side windows, and blurred multistory buildings and a sidewalk in the urban background. +train_25057.png A small, glossy cobalt-blue minibus with a white roof and reflective dark side windows is shown in a front three-quarter view angled slightly to the left, parked on a dim urban street with indistinct buildings behind it, and despite the low resolution you can make out a large central windshield, twin headlights and a white front bumper. +train_25063.png A compact orange-red single-decker bus with a white roof and slightly scuffed, glossy paint is shown from a three-quarter front-left viewpoint, parked on a grassy foreground with blurred green-brown vegetation behind, its dark window band, black front bumper and round headlight shapes visible. +train_25181.png A boxy, two-tone red-orange minibus with a white roof and slightly worn glossy metal paint is shown in a front three-quarter view on an urban street, revealing a large rectangular windshield, round headlights flanking a black grille and bumper, side windows, and blurred buildings and a curb in the background. +train_25254.png A small, shiny mid-blue single-deck bus with a white roof and black trim is shown in a front-left three-quarter view against a plain white background, its boxy profile, rectangular side windows, round headlights, black bumper and visible wheels distinguishing it despite the low resolution. +train_25382.png A turquoise-blue mid-sized city bus with a smooth, slightly glossy metal surface is shown from a front-left three-quarter viewpoint, stationary on a paved urban street with blurred buildings and trees in the background, and despite the low resolution the large windshield, row of dark side windows, broad dark bumper and rectangular headlight shapes are clearly distinguishable. +train_25819.png A small cream-colored vintage-style bus with an orange-brown roof and glossy smooth paint, shown in a three-quarter front view against a blurred teal-blue background, its large windshield, round headlights and dark front bumper visible despite the low resolution. +train_25846.png A light-colored (off-white) boxy passenger bus with a smooth, slightly glossy metal surface is shown from a front-left three-quarter view parked by an urban sidewalk and building, displaying a large dark windshield, rectangular headlights, a low dark bumper and a long row of side windows that remain discernible despite the low resolution. +train_26059.png A compact, boxy bus painted bright orange-red with subtle highlights, shown in a right-side three-quarter view against a soft gray circular background, featuring rectangular yellow windows, two visible black wheels and a white front stripe that give it a toy-like appearance. +train_26273.png A faded orange-and-cream metal bus with a slightly matte, weathered finish is shown in a three-quarter front-left view, parked on a paved urban street against blurred low-rise buildings, with large dark rectangular side windows, a broad black bumper/grille and rounded front corners visible despite the low resolution. +train_26515.png A glossy red bus viewed from a slight front-left angle, showing smooth painted metal, a large windshield and rows of rectangular windows with dark trim and a black lower bumper, parked on a gray urban street with indistinct buildings and blurred vehicles in the background. +train_26522.png A small white minibus with a glossy painted surface and a noticeable red horizontal stripe along its mid-side is shown in a three-quarter front-left view parked on an urban street in front of buildings, revealing a large windshield, rectangular headlights, side windows and mirror, and a slightly scuffed lower bumper. +train_26619.png A small, boxy bus painted a vivid glossy yellow with smooth reflective texture, shown in a three-quarter front-left view revealing blacked-out windshield and side windows, black bumper and wheels and a white roof, set against an indistinct blue-and-white background. +train_26644.png A white city bus with a slightly glossy, weathered surface and a bold blue horizontal stripe along the side is shown from a front three-quarter left viewpoint parked on an urban street with indistinct buildings and foliage in the background, with its large curved windshield, row of rectangular side windows and round headlights visible despite the low resolution. +train_26667.png A glossy orange-red bus captured in a front three-quarter view, showing smooth painted sides, a large rounded windshield and dark rectangular side windows with faint headlight shapes and a white lower bumper, set against a bright blue sky and gray pavement background. +train_26670.png A glossy crimson-red city bus shown in a three-quarter front-left view, with smooth reflective paint, black-tinted windshield and side windows, a white destination panel above the windshield and a pale lower stripe, parked on a street with blurred green foliage and pavement in the background. +train_27002.png A low-resolution three-quarter front-side view of a compact coach-style bus painted a vivid orange-amber with a glossy metal finish and a pale cream roof, showing a continuous dark band of rectangular windows, black bumper and headlights, and two visible wheels, set on a light gravel or pavement surface with blurred low buildings and pale sky in the background. +train_27010.png Front-left three-quarter view of a single-decker bus with a glossy white body and a bold red‑orange band along the lower side, large dark-tinted rectangular windows and windshield topped by a black destination strip, visible headlights and side mirror, parked on a paved urban street with indistinct buildings and sparse greenery in the background. +train_27128.png A boxy yellow-orange bus with flat, slightly weathered paint and dark, nearly black windows is shown in a front three-quarter left view parked beside a light-gray curb and indistinct urban background, with a prominent black windshield area, rectangular side-window panels and a pale lower-body stripe visible despite the low resolution. +train_27155.png A small yellow bus with glossy painted metal and black trim is shown from a three-quarter front view, revealing a large dark windshield, rectangular headlights and a black bumper and side stripe, parked on a busy urban street with blurred cars and buildings in the background. +train_27218.png A glossy orange-yellow bus is shown from a front-right three-quarter view, its smooth painted side punctuated by dark rectangular windows and two visible black wheels, with a rounded front and dark bumper/grille, set against a plain light-gray/white background. +train_27235.png A small bright blue minibus with glossy paint and a white lower stripe is shown in a front-left three-quarter view, parked on a paved street against a blurred urban background, with dark-tinted rectangular side windows, a rounded front end with visible headlights and a silver bumper. +train_27236.png A low-resolution image shows a predominantly red bus with a glossy painted finish and a darker blue lower panel, photographed from a three-quarter front-left viewpoint on a city street with blurred buildings and vehicles in the background, with long dark rectangular windows, a white roof stripe, and a visible front windshield and grille discernible despite the blur. +train_27299.png A compact, boxy yellow minibus with a slightly worn glossy finish and a contrasting white roof is shown in a front‑three‑quarter view parked on an urban street with blurred buildings and pavement behind it, exposing a flat front with a large rectangular windshield, black bumper and grille, round headlights and a visible side mirror. +train_27521.png A tall, matte red bus with a contrasting white roof and a row of dark rectangular windows is shown in a three-quarter rear-left view parked on a gray urban street against a beige building wall, its boxy silhouette and a vertical white rear stripe discernible despite pixelation. +train_27525.png A front-left three-quarter view of a glossy white city bus with a broad red-orange lower stripe and dark tinted rectangular windows, showing a black front bumper and wheel arch, a roof-mounted sign and side mirror, parked on a narrow urban street with buildings and pavement in the background. +train_27555.png A light-blue, glossy city bus with a white roof is shown from a front-left three-quarter view stopped at a street curb against a blurred urban background, its large dark passenger windows, prominent wraparound windshield and rectangular headlights visible despite the low resolution. +train_27567.png A cream-colored, slightly glossy mid-size bus is shown in a three-quarter front-left view, revealing dark rectangular side windows, a large windshield and headlight cluster, and a darker lower trim while parked on a sunlit paved street with blurred urban buildings and trees in the background. +train_27663.png A glossy white minibus with a narrow green stripe along its side and dark rectangular windows is shown in a three-quarter front-left view on a plain white background, revealing smooth painted metal, prominent headlights and grille, and a small cast shadow under the wheels. +train_27991.png A low-resolution, orange-yellow single-decker bus with a smooth painted body and white roof is shown in a three-quarter front-left view parked on a street, set against a bright sky and indistinct buildings/greenery, with a dark horizontal window band, row of rectangular side windows and a rounded front still discernible despite the blur. +train_28213.png A small turquoise-blue minibus with a glossy but slightly weathered paint finish is shown from a front-left three-quarter viewpoint parked on a paved urban street against a light-colored building, its dark tinted windows, black bumper and rectangular side paneling remaining the clearest distinguishing features despite the low resolution. +train_28331.png A white single-decker bus with a bold blue lower band and glossy painted metal panels, shown in a three-quarter front-left view revealing a large dark reflective windshield and side windows, rectangular headlights and a protruding side mirror, parked on a city street with pavement and indistinct low buildings in the blurred background. +train_28334.png A small, bright red glossy boxy bus with rectangular side windows, a large windshield and black front bumper/grille, shown from a front-right three-quarter view parked on a street with blurred pavement and buildings in the background. +train_28335.png A glossy yellow mini-bus photographed from a low front-left three-quarter angle, with a white roof and a pale teal lower stripe, dark-tinted rectangular windows, round headlights and a black bumper, sitting on light-colored tiled pavement with a blurred urban railing background. +train_28353.png A boxy yellow city bus with a slightly faded, matte metal finish and a darker lower trim, photographed from a three-quarter front-side angle showing large dark rectangular passenger windows, the front corner and wheel well, parked on a sunlit urban street with blurred buildings and parked cars in the background. +train_28541.png A small, glossy orange-yellow minibus is shown in a frontal three-quarter view parked on a street with blurred buildings behind it, its smooth painted metal surface, large dark windshield and side windows, black front bumper, visible wheel well and rectangular headlight/grille shapes evident despite the low resolution. +train_28716.png A bright yellow city bus with faint dirt streaks seen from a front-left three-quarter viewpoint parked on a busy urban street with other cars and low-rise buildings, its large rectangular windshield, dark window band, prominent side mirror, black bumper and headlights visible despite the low resolution. +train_28765.png A white minibus with a glossy painted surface and a single horizontal blue stripe along the mid‑side, shown in a three‑quarter front‑left view parked at the curb of an urban street with blurred low buildings and trees behind it, displaying a boxy profile, large rectangular side windows and a black front bumper visible despite the low resolution. +train_28777.png A compact white minibus with a glossy painted-metal surface, dark-tinted rectangular side windows and a black front bumper is shown parked in a three-quarter front-left view on a paved surface against a blurred urban background. +train_28801.png A compact, boxy bus painted glossy red with a white roof stripe and reflective black windshield is shown in a three-quarter front view on a sunlit street with green foliage and blue sky behind it, with round headlights, a front grille and a yellow license plate discernible despite the low resolution. +train_28819.png A small white boxy minibus with a smooth glossy finish is shown in a front three-quarter view parked on a sunlit paved roadside against a clear blue sky, with a dark-tinted windshield, prominent rectangular headlights, a black front bumper and visible side mirror and body-panel seams despite the low resolution. +train_28910.png A compact, bright-yellow, boxy bus with a slightly glossy, weathered paint texture is shown in a front-left three-quarter view, displaying dark rectangular windows, a black bumper and grille and small black wheels against a pale gray paved surface and an indistinct urban background. +train_28952.png A small two-tone cobalt-blue minibus with a glossy, slightly reflective finish and a white roof stripe is shown in a three-quarter front-left view, parked on an urban street against brown building facades, with a large rectangular windshield, side windows, prominent front bumper and rectangular headlights visible despite the image's low resolution. +train_28971.png A compact, glossy bright-yellow minibus with contrasting black lower trim and bumper, dark-tinted rectangular side windows and round headlights is seen in a front-left three-quarter view parked on a paved surface against a bright blue sky and indistinct urban background, showing a sloping windshield and a prominent dark roofline. +train_29151.png A glossy bright-red city bus captured in a three-quarter front-left view, its smooth reflective paint and large rectangular side windows and white roofline visible despite low resolution, parked on a street with brick buildings and pavement in the background and black wheels plus a pale front signage/license area faintly discernible. +train_29219.png A glossy maroon-red bus shown in a front three-quarter view on a plain light background, with a white roof stripe, multiple rectangular side windows, a darker front grille and bumper, and black wheels beneath its smooth painted body. +train_29250.png A light blue, slightly glossy minibus with a white roof and lower side stripe is shown from a three-quarter front-left viewpoint parked on a paved street beside a sidewalk with trees and low buildings in the background, its boxy body, large rectangular windshield, dark-tinted side windows and black front bumper and hubcaps visible despite the low resolution. +train_29416.png A small white bus with a glossy painted-metal finish and a blue lower-side band is shown at a three-quarter front-left angle, parked on pavement near a curb against an indistinct, overcast urban background, with dark-tinted rectangular side windows, a boxy roofline, rectangular headlights and a protruding side mirror faintly visible despite the low resolution. +train_29418.png An orange, boxy minibus with glossy but slightly weathered paint is shown in a front three-quarter view angled left, featuring dark tinted windows, a prominent black bumper and wheels, and is parked on a sunlit street with blurred urban pavement and buildings in the background. +train_29451.png A glossy red transit bus with a white horizontal stripe and dark lower trim is shown from a slight rear three-quarter viewpoint parked on an urban street, its rectangular side windows and black wheel arches visible against blurred buildings and pavement in the low-resolution image. +train_29534.png A small, glossy cobalt-blue bus with a white roof and dark rectangular windows is shown from a three-quarter frontal view slightly angled left, resting on a plain white surface with a soft shadow beneath and visible black wheels and faint front-grille details. +train_29621.png A cream-white minibus with a slightly weathered matte surface and a narrow red-brown lower stripe is shown from a three-quarter front-left viewpoint, revealing a continuous band of dark tinted rectangular windows, a boxy front bumper and headlights, parked along a city street with pavement, other cars and indistinct buildings/trees in the background. +train_29766.png A small, boxy yellow-orange bus with glossy painted metal and dark rectangular windows is seen in a three-quarter front-left view, stationary on a sunlit urban street with blurred buildings and other vehicles behind it, its rounded front with twin headlights and a dark grille visible despite the low resolution. +train_29786.png A small magenta-pink shuttle-style bus with glossy, slightly reflective paint and a white roof is shown in a front-left three-quarter view parked on a paved surface against a blurred grassy/green background, with large dark windshield and side windows, black bumper and wheel wells, and a narrow white side stripe visible despite the low resolution. +train_29916.png A boxy minibus shown in a three-quarter front-left view with a glossy white upper body and bright turquoise-blue lower band, large rectangular windshield and side windows, round headlights and black wheels, set against a plain white background and rendered with slightly pixelated low-resolution texture. +train_30047.png A low-resolution, matte-white mini-bus with a dark blue horizontal stripe and slightly weathered paint is shown in a front three-quarter view, revealing its boxy front, rectangular tinted windows and black bumper, parked on a paved street in front of a pale building facade with a faint shadow beneath it and a dark rooftop feature visible. +train_30168.png A compact bus painted a vivid glossy blue with a white roof and trim is shown in a front-left three-quarter view on an urban street with storefronts in the background, its reflective dark windows, rectangular white destination panel above the windshield, white side stripe and rounded wheel arch visible despite the low resolution. +train_30201.png A cream-white coach-style bus with slightly weathered, matte paint and a bold orange stripe along its side, shown in a three-quarter front-left view parked on a street with blurred buildings and trees behind it, with large rectangular side windows, a prominent black bumper, round headlights and a side mirror faintly discernible despite the low resolution. +train_30345.png A small turquoise-green single-decker bus with a smooth painted surface and black roof, pictured from a front three-quarter-left viewpoint showing dark rectangular side windows and headlights, parked on pavement against a pale blue sky and indistinct roadside background. +train_30495.png A small light-blue minibus with a white roof and slightly matte, worn-looking paint is seen from a three-quarter front-right viewpoint parked by a curb on a gray urban street, showing dark tinted side windows, a black front bumper and round headlights, with indistinct buildings and pavement in the background. +train_30503.png A compact yellow bus with matte, slightly weathered paint is shown at a three-quarter front-right angle, parked on light pavement against a pale sky and shadowed backdrop, displaying a rounded front, black bumper and wheel arches, and a horizontal row of dark rectangular windows. +train_30851.png A small compact bus painted in glossy two-tone turquoise and cyan with a darker blue front, shown in an angled three-quarter view against a neutral light background, featuring dark tinted rectangular windows, black wheels and bumper, and a small red circular taillight visible at the rear. +train_30967.png A small white minibus with a glossy finish, a blue lower-side panel and a thin red stripe along the upper body, shown in a front three-quarter view parked at the curb of an urban street with storefronts behind, featuring large rectangular side windows, a rounded front end and a dark bumper visible despite low resolution. +train_31037.png A small boxy bus with a glossy red lower body and white upper stripe and roof, seen from a slight three-quarter frontal viewpoint showing a large dark windshield, round headlights and rectangular side windows, parked on a street with blurred green foliage and buildings in the background. +train_31109.png A glossy yellow-orange bus with a white roof is shown in a front-left three-quarter side view, its smooth painted body featuring a dark horizontal band of rectangular windows, visible wheel arches and a faint grille/headlight area, set against a dim, out-of-focus urban street background with scattered lights. +train_31336.png A boxy bright-red bus with a slightly glossy, worn paint finish seen from a low three-quarter frontal view against a pale blue sky and indistinct urban background, showing dark rectangular side windows, a white roofline highlight, and the rough shapes of a front grille and headlights. +train_31344.png A low-resolution front three-quarter right view of a smooth, slightly reflective white-and-pale-blue two-tone bus parked on an urban street with blurred sidewalk and buildings behind it, showing a large curved windshield with a dark rectangular destination panel above, rounded headlights, a darker lower skirt along the side, and rectangular side windows. +train_31347.png A small glossy pink minibus with a white roof and window panels is shown in a three-quarter front-right view on a blurred bluish-gray background, with two dark round wheels, a black bumper, lighter rectangular windows and a faint pale stripe along its side. +train_31561.png A light-gray, smooth-metal bus captured in a three-quarter front-right view, showing a rounded front corner with a large windshield and side mirror, a row of dark rectangular passenger windows above a darker lower side band, parked on a paved street with an indistinct urban backdrop visible despite the low resolution. +train_31730.png A sun-faded yellow, slightly grimy boxy bus shown in a three-quarter front-left view on pavement with a blurred tree-and-sky background, displaying dark rectangular side windows, a black front grille and round headlights. +train_31874.png A compact white bus seen in a front three-quarter view with smooth glossy metal paint, a large rectangular windshield, black bumper and grille, square headlights and prominent side mirrors, parked on a sunlit asphalt lot with blurred buildings and other vehicles in the background. +train_31926.png A bright turquoise mid-size bus with a glossy painted-metal finish and a white roof/stripe seen in a three-quarter front-right view on a light paved surface with an indistinct pale background, showing large dark rectangular side windows, a black bumper and round headlights despite the low resolution. +train_32008.png A low-resolution front three-quarter view of a small city bus with a glossy red lower body, navy-blue upper band and white roof, smooth painted-metal texture, large rectangular windshield, twin round headlights and side mirrors, parked on gray asphalt with blurred urban buildings in the background. +train_32018.png Small two-tone blue-and-white minibus seen from a front-left three-quarter view, its glossy painted metal surface and dark windshield/side windows reflecting light, parked on a paved street with indistinct urban buildings behind it, with a prominent black bumper and round headlights visible despite the low resolution. +train_32033.png A bright yellow, glossy single-decker bus with black trim and bumper is shown in a slightly angled front three-quarter view parked at a curb, set against low buildings and trees, with rectangular side windows, a divided windshield and reflective highlights on its metal body visible despite the low resolution. +train_32257.png A compact city bus painted in a two-tone light blue lower body and white upper body with a smooth, slightly glossy finish is shown from a front three-quarter left viewpoint parked on a street with blurred pavement and building façades behind it, revealing a large curved windshield, rectangular side windows, headlight clusters and a flat high roof with rooftop fixtures. +train_32325.png A small bus painted glossy dark green on the lower body with a white upper section and roof is shown in a front-right three-quarter view parked on a paved urban street with blurred buildings and vehicles behind it, its large dark windshield, rounded headlights, side mirrors and a row of rectangular passenger windows visible despite the low resolution. +train_32361.png A glossy red-orange city bus with a white roof and a continuous dark band of windows is shown from a front three-quarter (right-facing) viewpoint parked on a gray paved street against a blurred urban backdrop with nearby vehicles, its boxy silhouette, large windshield, black grille and headlight clusters still discernible despite the low resolution. +train_32649.png A red-orange city bus with a lighter cream upper band and slightly worn texture is shown in a front three-quarter left view, revealing a large windshield, rectangular side windows and a side mirror, parked on a sunlit urban street with blurred buildings and pavement in the background. +train_32936.png Small white minibus with a glossy, slightly weathered white-painted metal body and a bold horizontal cobalt-blue stripe along its mid-side, shown in a front three-quarter view parked at the curb on a sunlit urban street with indistinct buildings and pavement behind it, displaying dark-tinted rectangular side windows, a sliding passenger door, round headlights and a compact grille. +train_33026.png A cream-beige mid-sized bus with a slightly weathered, matte surface is shown in a front-three-quarter view revealing a dark, reflective windshield, rectangular side windows and a darker lower stripe, parked on a sunlit street with blurred trees and buildings in the background. +train_33048.png A small teal-blue minibus with a glossy, slightly weathered finish and a white roof and side stripe, shown from a low front three-quarter viewpoint parked on a wet urban street at night against blurred neon-lit buildings, with illuminated headlights, prominent windshield and side mirrors, and a rooftop sign visible despite the low resolution. +train_33060.png A glossy bright red, boxy minibus with a white roof and large rectangular windshield is shown in a low-resolution three-quarter frontal-left view on a city street, its reflective paint, side windows and a yellow license plate visible against a blurred backdrop of buildings and other vehicles. +train_33069.png A glossy white coach-style bus with a smooth metal texture and black lower trim, shown in a three-quarter front-right view against a plain white background, with a row of dark rectangular tinted windows, visible black wheel wells, and a front grille with rectangular headlights despite the low resolution. +train_33284.png A front-left three-quarter view of a small white minibus with smooth painted metal finish and a bold horizontal red stripe along the lower body, parked on a paved street with curbs and buildings in the background, showing a large rectangular windshield, black bumper, side mirror and twin headlights visible despite the low resolution. +train_33287.png A compact, bright cyan-blue bus shown head-on with glossy but slightly worn paint, a large dark rectangular windshield, twin round headlights and a white roofband, parked on a sunlit urban street with indistinct buildings and other vehicles blurred in the background and a visible license-plate area. +train_33357.png A bright yellow, slightly weathered bus with matte paint and black trim is shown in a front-left three-quarter view, revealing a row of rectangular side windows, black wheel arches and bumper, and a faint horizontal stripe, parked on a light urban street with blurred buildings and pavement in the background. +train_33485.png A faded yellow, slightly weathered metal bus captured from a three-quarter front-left viewpoint sitting on an urban street with blurred buildings and other vehicles in the background, revealing a row of dark rectangular windows with black trim, a rounded front with headlights and a darker lower bumper. +train_33583.png A smooth, bright yellow-orange painted bus seen from a three-quarter side/front viewpoint, set against a muted bluish-gray background, showing a rounded front, row of dark rectangular windows, a black lower trim stripe and wheels beneath the glossy metal body. +train_33592.png A small light-blue minibus with a white roof and glossy, slightly reflective paint is shown in a front-left three-quarter view parked on a paved surface with indistinct green foliage in the background, its large curved windshield, dark rectangular side windows, round headlights and prominent black bumper visible despite the low resolution. +train_33767.png A small glossy red toy-like bus with a bright yellow front and roof accent, white rectangular side windows and a dark front grille, shown in a slightly top-down three-quarter front-right pose against a solid cyan-blue background, its black wheels and rounded rectangular body clearly visible despite heavy pixelation. +train_33772.png A boxy, light turquoise-blue bus with a white roof and dark tinted rectangular side windows shown in a side-on pose on a paved street with a grassy verge and indistinct buildings in the blurred background, featuring a pale lower stripe and visible black wheels. +train_33843.png A small, boxy bright-orange bus with a glossy, slightly pixelated surface is shown at a three-quarter front-right angle, with large rectangular white windows, a black windshield and bumper, dark wheel arches, and parked against a blurred urban backdrop of buildings and blue sky. +train_33845.png A small glossy bright-blue boxy minibus shown in a low front three-quarter view on a city street, featuring a white roof, large rectangular windshield and headlights, black wheel arches and wheels, and a blurred sidewalk and buildings in the background. +train_33916.png A white bus with a light-blue lower band and thin red accent stripe, showing a matte, slightly weathered exterior, is captured from a three-quarter front-left viewpoint parked on an urban street with blurred buildings and other vehicles behind it, revealing a large rectangular windshield, dark-tinted side windows, and visible front headlight clusters and wheels. +train_34191.png A bright, glossy red double-decker bus is shown head-on at a slight low angle, its smooth painted metal catching highlights, with two stacked rows of rectangular windows, a prominent white destination panel above the windshield and black bumper details, set on an urban street flanked by indistinct brick buildings and a gray roadway. +train_34241.png A glossy deep-red mid-sized bus with a contrasting white roof and black-tinted rectangular side windows is captured from a front three-quarter perspective on a city street, its rounded front fascia showing twin headlights, a black bumper and a large windshield, set against blurred buildings and pavement in the background. +train_34252.png A small, boxy bus with faded matte mustard-yellow-orange paint and a white roof is shown in a front three-quarter view, parked on a paved surface against a blurred bluish urban background, its row of rectangular side windows, black lower trim, round wheel arches and frontal headlights discernible despite the low resolution. +train_34423.png A small white bus with glossy paint, a blue lower stripe and a faint red side accent, seen in a frontal three-quarter view parked on a city street with blurred pedestrians and buildings in the background, notable despite low resolution for its large curved windshield, round headlights, prominent side mirrors and a yellow front license plate. +train_34625.png A bright yellow-orange bus shown front-on with a glossy, smooth painted body, a central dark windshield split by a thin vertical pillar, round headlights at the lower corners, a darker roof stripe and subtle underbody shadow set against a plain dark background. +train_34715.png A bright blue city bus with glossy paint and a white roof, pictured in a three-quarter front-left view against a plain white background, showing dark rectangular side windows, a large curved windshield, headlights and a front grille that are discernible despite the low resolution. +train_34775.png A bright orange single-decker bus viewed from a front-left three-quarter angle, with a white roof stripe and dark windows, parked on a sunlit urban street with blurred buildings and pavement behind it, showing a front grille and round headlight shapes despite the low resolution. +train_34878.png A boxy single-decker bus painted a warm yellow–orange with a matte, slightly pixelated texture is seen from a three-quarter front‑left viewpoint on a street against a blurred brownish‑green urban background, showing a dark-tinted window band, prominent black wheel well and bumper, and a pale roof. +train_34913.png A smooth white, boxy city bus with a horizontal pale-blue stripe and glossy dark passenger windows, shown in a three-quarter frontal view parked at a curb on a gray urban street with buildings and a red car behind it, its flat front with rectangular headlights and roof vents visible despite the low resolution. +train_34915.png A glossy orange-red bus with a white roof and black lower trim is shown in a front-left three-quarter view parked on a paved street in an urban setting with low buildings and trees, with large dark-tinted side windows, prominent black bumper and wheels, and a wide windshield visible despite the low resolution. +train_34926.png A small, glossy red minibus with a contrasting white roof and black-trimmed windows is captured in a front three-quarter view, parked on a dimly lit street at night with blurred buildings and streetlights in the background, its rectangular windshield, prominent dark grille and round yellowish headlights clearly visible despite the low resolution. +train_34996.png A compact, boxy bright yellow bus with a smooth, slightly glossy finish is shown in a three-quarter frontal view against a pale neutral background, with a continuous dark window band, small visible wheels, and a contrasting black grille/headlight area apparent despite the low resolution. +train_35023.png A small two-tone glossy blue-and-white bus is shown from a three-quarter front-left angle on a plain light background, revealing dark wheels, a row of rectangular side windows, a rounded white roof and a black windshield with simple painted front details. +train_35032.png A compact, bright yellow glossy minibus shown from a three-quarter front-right viewpoint, with black rectangular windows and a black lower trim and wheels, parked on a light-colored pavement against a simple blue sky and indistinct green background. +train_35179.png A compact, bright yellow school bus seen from a low front-three-quarter viewpoint, its slightly weathered matte paint and black horizontal stripe contrasting with dark rectangular windows and round headlights, parked on gray pavement against a soft blue sky background. +train_35183.png A bright yellow-orange bus captured in a front three-quarter low-angle view, its glossy painted body featuring dark-tinted rectangular windows, black bumper and wheel arches and prominent front grille and headlights, set against a blurred urban street and blue sky background. +train_35201.png A bright yellow, glossy single-decker bus captured at a front three-quarter angle on a paved street, its dark-tinted windows and black bumper/headlight area visible against a blurred treeline and sidewalk background. +train_35365.png A small white bus with a glossy finish featuring a blue lower band and a thin red stripe along its side, shown in a front three-quarter view against a plain white background, with a large rectangular windshield, twin round headlights and a row of side windows visible despite the low resolution. +train_35404.png A small single-decker bus with smooth glossy white paint and a pale blue horizontal stripe along its midsection is shown in a three-quarter front-left view, revealing a large curved windshield, rectangular side windows, dark bumper and wheels, and a boxy profile parked on a paved urban street with blurred buildings in the background. +train_35486.png A pixelated bright yellow bus shown head-on with a blocky, slightly glossy texture, a split black windshield, prominent black bumper and grille, twin round headlights and small side mirrors with faint wheel bases visible against a plain white background. +train_35532.png The small, vintage-looking minibus has a two-tone faded teal-blue lower body and white upper section with a matte, slightly weathered texture, shown from a near head-on left-front three-quarter view parked on an urban street with blurred cars and buildings in the background, featuring a curved dual-pane windshield, round headlights and a black bumper, a roof-mounted destination box and prominent side mirrors visible despite the low resolution. +train_35534.png A white mid-sized bus with a glossy, slightly reflective metal finish and a bold blue horizontal stripe is shown from a front-left three-quarter viewpoint parked on a sunlit street with low buildings in the background, revealing a boxy silhouette, a row of dark windows, black tires, and dual round headlights. +train_35595.png A small bright orange-red city bus with glossy metal paint and a pale roof stripe is captured in a front-left three-quarter view, angled slightly away from the camera on an urban street with blurred buildings and pavement behind it, and despite the low resolution you can make out a large rectangular windshield, paired headlights and a row of rectangular side windows along its side. +train_35821.png A glossy cobalt-blue compact minibus captured in a front three-quarter view angled slightly left, showing a rounded boxy front with large round headlights, chrome grille and bumper with a yellow license plate, reflective windshield and side mirrors, and sunlit, slightly dirty lower panels while parked on a busy urban street with blurred pedestrians and storefronts in the background. +train_35880.png A cream-beige bus with a broad orange lower stripe and glossy dark rectangular windows is shown in an angled three-quarter front view parked on a gray paved street with faint road markings, its smooth painted metal body, rounded front and rooftop signage visible despite the low resolution. +train_35893.png A compact, flat-matte yellow bus photographed from a slight three-quarter frontal angle against a plain white background, with a boxy rectangular body, a dark windshield and horizontal window band, visible round black wheels beneath, and a small front bumper/protrusion as the main distinguishing details despite the low resolution. +train_36005.png An orange, matte-finished mini-bus with a cream roof and dark rectangular side windows is shown in a three-quarter front-left view, parked on gray pavement against a blurred green leafy background, with visible black wheel arches and a small frontal grille/headlight cluster. +train_36018.png A small light-blue glossy minibus shown from a three-quarter front-left view, parked on a paved street against a low white fence and greenery, with a boxy body, dark rectangular side windows, black bumper and wheels, and a prominent front windshield. +train_36022.png A small white bus with a glossy painted surface is shown in a three-quarter front-left view against a dark background, displaying dark-tinted rectangular side windows, a blue stripe or logo near the midsection, a black front bumper and wheel well, and a visible round/rectangular headlight. +train_36054.png A small white minibus with a glossy blue lower band and dark-tinted windows is shown in a front-left three-quarter view, parked on a paved street in front of a pale building and sidewalk, revealing a boxy profile with a large windshield, rounded headlights, and smooth metal panels despite the low resolution. +train_36139.png An orange-rust, slightly glossy boxy bus photographed from a low front-three-quarter viewpoint on a dark asphalt background, showing a split windshield with reflections, round yellow headlights, a black front grille and visible wheel arches despite low resolution. +train_36173.png A bright, slightly glossy cobalt-blue bus seen from a front-left three-quarter viewpoint, parked on a paved street with a blurred urban sidewalk and indistinct buildings behind it, showing large dark-tinted front and side windows, a white roofline stripe, and a prominent black bumper/headlight area visible despite the low resolution. +train_36576.png A small teal-blue minibus with a glossy, slightly reflective metal finish and a white roof is shown parked in a front three-quarter view on a paved street, framed by an out-of-focus metal railing and greenery in the background, with a large curved windshield, round headlights and a dark front bumper visible despite the low resolution. +train_36655.png A small glossy bright-red single-decker bus shown in a front three-quarter view, with a white roof and window band, black bumper and wheels, rectangular front grille and round headlights, depicted against a plain white background. +train_36686.png A low-resolution orange-red single-decker bus seen from a slight front-left three-quarter angle with a glossy, slightly reflective paint, a large dark windshield and a row of recessed dark passenger windows, a pale roof stripe and darker lower skirt, parked on a street with indistinct pavement and blurred green foliage in the background. +train_36769.png A small white minibus with a broad blue horizontal stripe and glossy painted-metal finish, seen from a three-quarter front-left viewpoint parked on a sunlit urban street with pavement and indistinct buildings behind it, showing a round front wheel and a row of rectangular side windows. +train_36884.png A glossy two-tone blue minibus with a lighter sky-blue upper section and darker lower body is shown head-on at a slight three-quarter angle, revealing a large reflective rectangular windshield, round headlights and a dark front grille with a small yellow license plate, parked on a gray paved urban street with blurred cars and buildings in the background. +train_37026.png A bright yellow, slightly weathered boxy bus seen from a three-quarter front-left viewpoint, parked on a sunlit paved lot with indistinct vehicles and structures in the blurred background, showing a black front grille and bumper, large rectangular side windows, and a tall vertical windshield. +train_37107.png A small, faded yellow-orange bus with slightly weathered matte paint is seen from a three-quarter front-left viewpoint parked on a paved roadside against a pale sky and blurred greenery, showing a continuous dark band of rectangular windows, a white roof stripe and round headlights visible despite the low resolution. +train_37194.png A glossy orange-yellow bus is shown in a three-quarter front-left view with a large dark windshield and black bumper, faint horizontal white stripe and rounded headlight shapes, set against a blurred sunlit street and warm-toned buildings/trees background. +train_37210.png A glossy medium-blue coach-style bus with a lighter roof, seen from a front-left three-quarter viewpoint while parked on pavement against a blurred treeline and sky background, featuring a large curved windshield, dark tinted side windows, a white horizontal stripe along the side, visible headlights and a side mirror. +train_37429.png A small teal-blue city minibus with a glossy two-tone finish (white roof and aqua body), shown in a front-left three-quarter view parked on an urban street with blurred storefronts and signage behind it, featuring large rectangular side windows, a central-split windshield, black bumper and round headlights visible despite the low resolution. +train_37658.png A cream-yellow bus with a slightly weathered orange lower band is shown from a front-left three-quarter view, parked on a paved roadside against blurred green foliage, with a large slanted windshield, dark rectangular passenger windows, a prominent black bumper and round headlights visible despite the low resolution. +train_37720.png A boxy, bright orange-yellow city bus with a smooth painted-metal body and white roof seen in a three-quarter side view facing right, showing dark rectangular windows, black wheel arches and small front headlights, parked along a grey curb against a pale yellow urban wall. +train_38082.png A boxy, cobalt-blue city bus with a slightly faded, matte finish and a pale cream roof, shown in a three-quarter frontal view revealing a rectangular windshield, round headlights and a low front bumper, parked on a paved street against an indistinct beige urban backdrop. +train_38255.png A small, boxy bus painted bright blue with a glossy, slightly reflective finish and a white roof is shown from a three-quarter front-left viewpoint, parked at a curb in an urban street scene with blurred building facades and another vehicle behind it, its large windshield, side windows, and front headlights remaining the clearest distinguishing features. +train_38400.png A small white minibus with a glossy painted finish and a blue lower stripe is seen from a frontal three-quarter viewpoint parked on pavement with blurred greenery in the background, showing a large slightly reflective split windshield, prominent round headlights, extended side mirrors and a black bumper. +train_38403.png Glossy light-blue bus with a white roof and black bumper viewed from a three-quarter front-left angle, parked on a paved urban street with indistinct low buildings in the background, showing a large windshield, side windows and a rectangular frontal face despite the low resolution. +train_38427.png A small, boxy minibus painted bright glossy blue with a white roof and a red lower bumper is shown in a front-left three-quarter view parked on a sunlit urban curbside, with dark reflective windows, a black grille, round headlights, a visible side mirror and rectangular window panels discernible despite the low resolution. +train_38472.png A small, boxy light-blue minibus with a glossy painted finish and a contrasting white roof is shown in a three-quarter frontal view parked by a curb on a city street, its large dark windshield, rectangular headlights, simple front grille and bumper (with a visible license plate) and side windows visible against a muted building and pavement background. +train_38523.png A head-on view of a small teal-blue minibus with glossy painted metal and a lighter (almost white) roof, parked on grey pavement in a blurred urban setting, showing a large rectangular windshield, two round headlights flanking a black grille, a low front bumper and a small colorful license plate. +train_38666.png A white single‑decker city bus with a glossy metal finish and a narrow red‑orange roof band is shown in a three‑quarter front‑right view parked on an urban street with pavement and blurred trees/buildings behind, its large rectangular side windows, prominent curved windshield, headlight cluster and darker lower skirt visible despite the low resolution. +train_38685.png A glossy deep-blue bus captured from a three-quarter front-left viewpoint, parked on an urban street with blurred buildings and vehicle lights in the background, showing a large dark windshield, rectangular headlights, a lighter-colored roof, and a red accent along the lower front bumper. +train_38777.png A compact, light-blue bus with a slight glossy sheen is shown in a three-quarter front view against a pale sky-blue background, revealing a large windshield and rectangular side windows, round headlights, and a prominent front bumper despite the low resolution. +train_39012.png A low-resolution image of a mostly red, slightly weathered bus seen from a front-left three-quarter viewpoint, showing a boxy body with a lighter roof and dark windows, a prominent front bumper/grille, and parked on a sunlit urban street with blurred buildings and trees in the background. +train_39026.png A boxy, glossy red city bus seen from a front-left three-quarter view, with a white roof stripe, dark rectangular side windows and a black bumper, parked at a curb on an urban street with indistinct buildings and other vehicles in the background. +train_39174.png A glossy red-front city bus with a white upper body and a blue lower stripe is shown in a front three-quarter view parked on a street with blurred urban buildings behind it, its large rectangular windshield, roof-mounted destination panel, side windows and twin round headlights visible despite the low resolution. +train_39186.png A small orange-red bus with glossy, slightly worn paint seen from a three-quarter front-left viewpoint on a paved street in front of a shadowy urban storefront, showing large dark windows, a white front section with headlamps and visible wheels. +train_39277.png A small, boxy turquoise-blue minibus with a white roof and slightly worn glossy paint is shown in a three-quarter side view facing right, parked on an urban street curb with blurred trees and buildings behind it, its large rectangular side windows, dark wheels and front windshield still discernible despite the low resolution. +train_39323.png A glossy light-blue minibus with a white roof and a thin red stripe is shown three-quarter front-right on a street with low buildings and another vehicle in the background, its reflective painted-metal body, large rectangular windshield, side mirror and round headlight visible despite the low resolution. +train_39505.png A low-res image of an orange-yellow city bus with a slightly weathered matte finish, shown three-quarter front-left and parked by a curb on a sunlit urban street with blurred buildings and sidewalk behind it, its dark windshield, headlights and a horizontal white roof stripe and side windows still discernible. +train_39749.png A frontal three-quarter view of a small cream‑colored coach bus with a glossy painted metal surface and a horizontal orange‑red stripe along the side, dark rectangular/tinted windows, prominent rounded headlights and a side mirror, parked at a curb on a city street with building facades behind it, all rendered in blocky, pixelated detail. +train_39773.png A three-quarter front view of a faded yellow-orange bus with a slightly grimy, glossy paint surface, large dark-tinted windows and black lower trim, headlights and a rounded windshield visible, parked on a sunlit urban street with blurred buildings and other cars in the background. +train_39787.png A glossy red single-decker bus is shown from a front-left three-quarter view, revealing its rounded front with twin headlights, large windshield and side windows, and silver bumper while parked on a paved road against a blurred green-vegetated background. +train_39808.png A three-quarter front view shows a glossy red-and-yellow single-decker bus with a white roof and black lower trim parked on a busy urban street in front of shopfronts and signage, with rectangular side windows, a large windshield and rounded headlights discernible despite the low resolution. +train_39903.png A small glossy white bus with a thin blue stripe along its side and smooth metal body is shown in a front-left three-quarter view parked on an urban street by a sidewalk and buildings, with long rectangular side windows, black bumper and side mirror, and a rounded windshield discernible despite the low resolution. +train_39918.png A white-cream, boxy minibus with smooth glossy painted sides and a dark horizontal band of windows is shown from a right-front three-quarter viewpoint parked on a sunlit street with blurred buildings behind, featuring a flat rectangular front, rectangular headlights and a thin black bumper. +train_39938.png A boxy cream-colored bus with a smooth, slightly reflective finish is shown in a front three-quarter angled view revealing dark rectangular side windows and a black windshield, round dark wheels and a black bumper, parked on pale pavement against a muted green-gray outdoor background. +train_40043.png A pale cream-yellow bus with a slightly weathered, matte finish is shown from a front three-quarter viewpoint parked on a paved street against a blurred leafy background, revealing a large dark windshield, rectangular headlights, a prominent front bumper and a row of side windows. +train_40047.png A small glossy yellow-orange bus photographed from a front-side three-quarter view, parked at a paved curb with blurred trees and sky in the background, showing a boxy rectangular body with a row of dark-tinted rectangular side windows, black lower trim and wheel arches, and faint horizontal panel lines along its side. +train_40139.png A small white glossy minibus with a bold red diagonal stripe along its side is shown in a three-quarter front-left view parked on a paved suburban street with trees and low buildings in the background, featuring a large wraparound windshield, a row of rectangular side windows, grey lower trim and bumper, and compact wheels visible despite the low resolution. +train_40220.png A pale turquoise-blue city bus with a slightly glossy, worn paint finish is shown in a three-quarter front-left view parked on a sunlit street with blurred trees and pavement behind it, revealing large rectangular side windows, a dark wraparound windshield, a white front bumper, round headlight and a protruding side mirror visible despite the low resolution. +train_40283.png A compact, boxy mustard‑yellow bus captured in a low front-left three‑quarter view with matte, slightly worn paint and a lighter roofline, large dark rectangular side windows and black wheel arches, parked on a paved street in front of a blurred urban storefront. +train_40392.png A small white minibus with a smooth, glossy body and a prominent dark windshield and side-window band, shown from a front-left three-quarter viewpoint on a paved street with blurred buildings/sky behind it, with a rounded front, black bumper and visible side mirrors despite the low resolution. +train_40595.png Three-quarter frontal view of a small green-and-yellow bus with a slightly glossy, weathered paint finish, dark rectangular side windows and a large black windshield, white headlights and a rounded front bumper visible as it sits on gray pavement near a light-colored curb and indistinct buildings in the background. +train_40645.png A light turquoise-blue single-decker bus with a white roof and smooth, slightly reflective metal sides is shown from a low front-left three-quarter view parked on a paved road in front of leafy green trees, with a large windshield, rectangular headlights, a dark lower bumper and a row of side windows visible despite the low resolution. +train_40661.png A small, solid sky-blue city bus with a smooth painted surface and large yellow windows is shown in a three-quarter front-left pose on a tan ground against a pale background, with visible black wheels, a rectangular windshield and grille, and a small red rear marker despite the pixelation. +train_40746.png A small dark-blue minibus with glossy paint and a white roof sits at a slight frontal three-quarter angle on a city street, its large rectangular windshield, side windows and yellow front license plate visible against a light-colored building facade and nearby green foliage. +train_41062.png A small white bus with a glossy metal finish and horizontal red and blue stripe accents, shown in a three-quarter front-left view with large dark windows, a black lower skirt and visible rectangular headlights and side mirrors, parked on a paved street in an urban setting with indistinct buildings and trees blurred in the background. +train_41358.png A front-facing small bus with a smooth teal-blue body and large gray split windshield, round headlights above a slim black bumper, small side mirrors and visible black wheels with red hubs, shown isolated against a plain white background. +train_41515.png A compact yellow-orange bus with a smooth, slightly glossy metal finish is shown in a three-quarter front-left view, parked on a paved street with low buildings/signage in the background, featuring a rounded front, a row of dark rectangular side windows, a prominent black windshield and grille, and a visible front wheel and shadow. +train_41744.png A small, boxy bus painted bright blue with a white roof and a glossy, slightly reflective finish is shown front-on and slightly angled toward the viewer, parked on a paved street with indistinct buildings and trees in the blurred background, with a large rectangular windshield, dark side windows, round headlights, a black bumper and a visible license-plate area despite the low resolution. +train_41850.png A turquoise-blue bus with a glossy painted-metal finish and a white roof is seen from a three-quarter front-left viewpoint parked on an urban street with low-rise buildings and a clear sky, its long row of dark rectangular side windows, black lower skirt and prominent front windshield and headlights discernible despite the low resolution. +train_41856.png A small blue-and-white mini-bus with a smooth, glossy painted metal surface is shown in a front-left three-quarter view parked on a paved street by a curb and low building, with a large dark windshield, black bumper, rectangular side windows and a visible blue stripe along the body despite the low resolution. +train_41875.png A low-resolution orange-red city bus with a slightly glossy painted-metal finish is shown in a three-quarter front-side view parked on a paved street with indistinct buildings/trees in the background, displaying dark rectangular windows, a light roof stripe, and visible round wheel arches. +train_41913.png A small, glossy orange bus shown head‑on with a light gray roof, central black windshield flanked by dark rectangular side windows, a black bumper and round dark wheels, sitting against a plain white background. +train_41936.png A light sky‑blue city bus with smooth glossy paint and a white roof is shown in a three‑quarter front‑right view parked at a curb on an urban street in front of beige commercial buildings, revealing a large rectangular windshield, twin square headlights, a row of side passenger windows and a dark lower‑side panel visible despite the image’s low resolution. +train_41944.png A bright red single-decker bus with a slightly glossy finish is shown from a low three-quarter front-right view, revealing a white upper band/roof, dark rectangular side windows, a prominent black bumper and grille, and is parked on a city street with blurred buildings and pavement in the background. +train_41990.png A small magenta-pink city minibus with glossy, slightly reflective paint is shown in a three-quarter front-left view, its white-framed rectangular windows and black wheel arches visible, headlights faintly on while it sits on a dim urban street at night with blurred illuminated storefronts in the background. +train_42155.png An orange-red bus with a glossy but slightly worn finish and a white roof is seen from a front-right three-quarter, eye-level view parked on an urban street beside a low brick building and sidewalk, its dark rectangular passenger windows, black bumper and grille, and silver wheel rim visible despite the low resolution. +train_42297.png A bright orange-red bus with a white roof and black trim — glossy painted metal with rectangular dark windows and black wheel wells — shown at a three-quarter front-left angle, parked on a paved street bordered by green grass and trees with low buildings in the background. +train_42401.png Bright red-painted bus shown at a shallow front-left three-quarter view, its glossy metal surface, large dark windshield and continuous band of black side windows, a pale vertical door panel at the front, and an indistinct urban background of pavement and blue sky. +train_42506.png A small white minibus with a slightly dull, weathered finish and a narrow orange-yellow band along the lower body is shown in a front three-quarter view parked on a paved street in a low-rise suburban/industrial setting with open sky and a small building behind it, with a tall dark windshield, rectangular side windows and round headlights visible despite the low resolution. +train_42532.png A teal/turquoise minibus with a slightly matte finish and a continuous dark-tinted window band, shown in a right-side three-quarter view parked on light concrete with a pale sky background, featuring a white roofline, a horizontal white lower-side stripe and two dark circular wheels visible. +train_42604.png A low-resolution image shows a matte rust‑orange bus with a glossy white roof and dark rectangular windows seen in a three-quarter front view, positioned on a wooden tabletop indoors against a pale wall and a dark vertical background element, with a yellow side stripe, visible front grille, round headlights, small side mirror and black wheels apparent despite the blur. +train_42665.png Front-left three-quarter view of a small bright yellow bus with slightly weathered glossy paint and black bumper/grille, parked angled in an urban lot against low buildings and other vehicles, showing a large rectangular windshield, side windows and round headlights. +train_42770.png A small, boxy red bus with a glossy finish, white roof trim and a beige front panel is shown in a front-left three-quarter pose on a simple green-ground, blue-sky background, with black rectangular windows and two visible black wheels giving it a toy-like appearance despite the low resolution. +train_42876.png A boxy, glossy red bus with a contrasting white roof and window band is shown from a front three-quarter view, parked on a gray street with dark, blurred urban background, its dark-tinted windows, round headlights and black wheels faintly visible despite the low-resolution image. +train_43019.png A glossy teal/sea-green bus with a white roof and black rectangular windows is shown in a front-left three-quarter view on a white surface, its smooth painted texture, rounded corners, visible black wheels and faint front grille standing out against a blurred, colorful indoor background. +train_43023.png A small, boxy bus painted a vivid cobalt blue with a glossy texture and a white roof is captured in a front-left three-quarter view on a paved surface with blurred green foliage behind it, revealing dark rectangular windows, round headlights and visible black wheels. +train_43038.png A compact bright blue bus captured in a front-left three-quarter view, its glossy paint reflecting light and showing large dark windshield and blocky side windows, rounded front end and visible headlight shapes, parked on a sunlit street with indistinct pale buildings and pavement in the blurred background. +train_43195.png A glossy red single-decker bus with a white horizontal side stripe, shown in a three-quarter frontal view revealing dark-tinted windows, round front headlights and a visible grille, set against a low-resolution blurred street/pavement background. +train_43222.png A glossy warm orange-beige single-decker with a white roof and a darker orange horizontal stripe, captured in a three-quarter front-right view on a city street with blurred trees and buildings behind, showing a large wraparound windshield, a row of rectangular side windows, a black bumper and a visible front wheel as the clearest distinguishing features despite the low resolution. +train_43496.png A small, boxy bus painted vivid matte orange with faint darker shading, shown in a three-quarter front-right view revealing a black windshield and rectangular side windows plus a pale roof and narrow white band near the top, set against a dark, blurred background suggesting pavement or street. +train_43520.png A glossy light cream-white city bus with a bold blue lower stripe and smooth metal texture is shown in a front-three-quarter left-facing view revealing a large dark windshield, rectangular side windows, headlights and side mirrors, parked alongside a street with blurred urban buildings and sky in the background. +train_43536.png A boxy, reddish-orange city bus with a matte, slightly weathered paint seen in a three-quarter front-right view on a street, featuring dark rectangular windows and a contrasting black front bumper/grille, set against a blurred urban background of pavement and indistinct buildings. +train_43545.png A compact light silver-gray minibus with a smooth metallic finish and dark-tinted rectangular side windows is shown from a front-left three-quarter viewpoint parked on a paved roadside with a low stone wall and blurred trees in the background, featuring black bumpers and trim, a slightly raised roofline, and visible wheel arches despite the low resolution. +train_43567.png A compact white minibus with a glossy, slightly worn finish captured in a three-quarter front view, parked on asphalt against a pale, featureless background, showing dark tinted windows, a black lower bumper/trim and rectangular headlights visible despite the low resolution. +train_43685.png A small white minibus with glossy smooth paint is photographed head-on at street level, showing a large dark windshield, twin round headlights, rectangular side mirrors and a blue panel on the lower front, parked on a paved urban street with a curb and indistinct buildings in the background. +train_43860.png A cream-colored, glossy-painted bus with a dark navy horizontal stripe and large rectangular windows is shown at a front-left three-quarter angle, parked on a city street in front of low-rise beige buildings, with a visible black wheel arch and headlight cluster. +train_43951.png A bright red, smoothly painted mid-size bus with a white roof and narrow yellow side stripe is shown in a front-left three-quarter view parked on an urban street with brick buildings behind it, featuring rectangular dark-tinted windows, a divided windshield, black bumper and wheels, and subtle reflections on the metal body visible despite the low resolution. +train_44060.png An orange-red city bus viewed from a front-left three-quarter angle, its matte, slightly weathered paint and black-trimmed rectangular windows visible along the side, with dark wheels and a pale roofline parked at a sunlit curb against blurred buildings and blue sky. +train_44089.png Front-left three-quarter view of a compact, boxy bus painted dull orange with a slightly weathered, matte finish and faint dirt streaks, showing large dark rectangular side windows, round headlights and a black bumper as it sits on an urban street with blurred parked cars and buildings in the background. +train_44108.png A small, boxy yellow bus with glossy paint and a faint blue horizontal stripe is seen from a front-left three-quarter viewpoint showing dark rectangular windows, round black wheels and a simple front grille, parked on a gray pavement against a low-resolution, blurred urban/street background. +train_44289.png Compact, boxy mini-bus painted metallic light silver with smooth reflective body panels and matte black lower trim, shown in a front-left three-quarter view against a plain white studio background with a shadow beneath, revealing a short wheelbase, rectangular headlights and grille, tinted side windows, and black plastic bumpers and wheel arches visible despite the low resolution. +train_44296.png A turquoise-green, smooth-painted city bus with a white roof is seen from a front-left three-quarter viewpoint parked on an urban street with blurred buildings in the background, its boxy silhouette, rows of rectangular side windows, large windshield, and dark front grille/headlight area visible despite the low resolution. +train_44299.png A small, boxy magenta bus with a smooth, glossy-looking finish is shown in a slight three-quarter frontal view against a plain light-gray background, revealing narrow vertical side windows, a dark windshield, small circular wheels and a central white rectangular panel on the front. +train_44462.png A compact, boxy bus painted a vivid orange-red with a slightly matte, weathered finish is seen from a front-left three-quarter view, showing dark rectangular side windows, a black bumper and wheel arch, and is parked on a grey urban street against a concrete or brick building backdrop. +train_44490.png A green, slightly matte-finished bus is shown in a three-quarter front-right view on a pale paved street, with a continuous band of dark-tinted windows, a white front bumper/trim and darker lower skirt visible against a blurred urban background of pavement and indistinct structures. +train_44566.png A pair of compact shuttle buses — one glossy black and one pale gray — are shown in three-quarter front-side view against a plain white background, their smooth metallic surfaces and rounded fronts, large dark side windows, visible wheels, and side passenger doors discernible despite the low resolution. +train_44668.png An off-white, slightly dingy, boxy minibus with a matte painted-metal surface and roof rack, shown in a front-left three-quarter view revealing a large rectangular windshield, black grille and bumper and prominent side mirror, parked on a narrow urban street with a pinkish storefront and other parked cars in the background. +train_44698.png A boxy city bus painted bright yellow with a wide green lower stripe and glossy metal finish is shown in a front-left three-quarter view parked at a curb against a gray urban background, with a large dark windshield, rectangular side windows, a pale front panel with round headlights and a roof-mounted destination sign visible despite the low resolution. +train_44713.png A light blue, glossy city bus with a white roof is shown in a front three-quarter view, its large rectangular windshield, prominent circular headlights and broad front bumper visible against a blurred urban street background with pavement and indistinct vehicles/buildings. +train_44762.png A glossy mustard-yellow bus seen in a three-quarter front-left view, with a rounded front, black bumper and grille, dark-tinted rectangular side windows with thin black frames and a white roof, parked on a paved street against a pale concrete/brick urban backdrop. +train_44944.png A faded white, slightly glossy minibus viewed from a three-quarter front-left angle and parked on a sunlit paved lot with indistinct trees and sky behind it, featuring large dark-tinted side windows separated by thin pillars, a flat front windshield, round headlights and a low beige lower skirt giving it a compact, utilitarian appearance. +train_45007.png A glossy red bus seen from a slight three-quarter front view with a white roof and dark window bands, parked on a paved street against a blurred urban/tree-lined background, its rectangular headlights, front destination panel and contrasting black trim visible despite the low resolution. +train_45070.png A faded cream-beige city bus with a slightly weathered, matte surface and a dark brown lower band is shown in a front three-quarter side view parked on an urban street against low buildings, with evenly spaced rectangular passenger windows, a large slanted windshield, prominent side mirror and a black bumper visible despite the low resolution. +train_45203.png A compact bright-blue city bus with glossy metal panels and a white roof is shown in a front-left three-quarter view, revealing large dark-tinted rectangular side windows, a black bumper and wheel arches, a roof-mounted destination box and side passenger door, parked on a sunlit urban street with low buildings and other vehicles blurred in the background. +train_45318.png A bright red, boxy bus seen from a low front-left three-quarter view, its smooth glossy-painted metal body punctuated by a darker front grille and round headlights, sitting on a paved road with a pale, featureless sky and indistinct roadside in the background. +train_45324.png A small, high-roof white minibus with smooth glossy paint and dark tinted rectangular side windows is shown from a front-left three-quarter viewpoint parked on a sunlit street in front of a beige building, with black bumpers, hubcaps and side trim and a compact, boxy silhouette visible despite the low resolution. +train_45604.png A white coach-style bus with a broad blue midsection stripe and glossy metal finish is shown in a three-quarter frontal view parked on a paved street beside a curb, displaying evenly spaced dark-tinted side windows, a rounded front with black trim and small rooftop vents against a faint urban background. +train_45608.png A glossy bright orange-red minibus with a white roof and bumper is seen in a three-quarter front-left view parked on a city street, its dark-tinted windshield and side windows, round headlights and compact rectangular body with reflective paint and a blurred curb and storefront background visible despite the low resolution. +train_45728.png A small yellow-painted bus with a glossy, slightly pixelated surface is shown in a front-left three-quarter view against a plain light background, revealing dark rectangular side windows, a black windshield and bumper, round black wheels and a faint shadow beneath. +train_45834.png A light-blue, glossy-painted bus is shown head-on and centered in the frame with a white roof and reflective windshield divided by a vertical pillar, round headlights and a dark bumper visible against a pale, indistinct background. +train_45869.png A small, glossy bright-blue bus viewed head-on and centered in the frame, showing a two-pane white windshield, round yellow headlights, a gray bumper and visible black tires, set on a flat gray road against a pale blue sky background. +train_45980.png An off-white, slightly weathered boxy bus with smooth painted metal and dark rectangular windows is shown from a low three-quarter front-left viewpoint, parked on a paved street by a curb with indistinct urban buildings in the blurred background, its black bumper, front grille and headlights visible despite the low resolution. +train_46081.png A low-resolution photo shows a bus with a glossy deep-blue lower body and contrasting white upper band, seen from a right-front three-quarter side angle revealing a dark continuous window strip, black wheel arches and a rounded front windshield, parked on an urban street with blurred buildings and pavement behind. +train_46129.png A light-blue bus with a slightly glossy finish and a pale roof stripe is shown in a three-quarter front-right view on a street with blurred urban background, its dark rectangular windows, large front windshield and a black bumper/grille discernible despite the low resolution. +train_46145.png In this low-resolution image a small white glossy minibus is shown from a front-left three-quarter viewpoint against a plain light background, with smooth reflective body panels, dark-tinted side windows, black front bumper and lower trim, exposed wheels, and a visible sliding side door and mirrors. +train_46223.png A red-orange and white painted city bus is shown from a low three-quarter front viewpoint, its glossy metal body with large dark rectangular windows and a blue advertisement panel on the side visible against a blurred urban street backdrop with parked cars and buildings. +train_46376.png A small bright blue, glossy single‑deck bus shown in a frontal three‑quarter view with a large rectangular white windshield and side windows, round black wheels, yellow headlights and roof details visible, set against a plain white background with a faint shadow beneath. +train_46647.png A small, glossy yellow-orange bus shown head-on with a flat rectangular front, a high dark band of windows, prominent round headlights and a black bumper, sitting on shadowed pavement against an indistinct, dim background. +train_46705.png A small yellow bus captured in a three-quarter frontal view with a painted-metal body showing slight highlights, a black horizontal window band and large dark windshield divided by a center pillar, round headlights and a black bumper over visible front wheels, set against a blurred blue-gray background and gray pavement. +train_46950.png A predominantly white city bus with a broad blue lower-side band and a thin orange accent, seen in a three-quarter front-right view that reveals smooth painted metal, large dark rectangular side windows and windshield, a prominent headlight cluster, and parked along a tree-lined urban street with pavement and another vehicle behind. +train_47089.png A glossy magenta-pink compact minibus seen from a three-quarter front-left viewpoint, with a boxy high roof, large dark-tinted side windows, black bumper and wheel arches, small wheels and subtle reflections on the body, parked on a city pavement in front of a pale concrete wall. +train_47182.png A glossy lime-green city bus seen from a front-left three-quarter viewpoint, with dark-tinted windshield and side windows, rectangular headlights and a darker lower bumper stripe, parked on a sunlit street against a blurred backdrop of buildings and trees. +train_47271.png A blue-and-white city bus photographed from a front three-quarter angle, its slightly reflective painted metal surface showing a large rectangular windshield, visible roof signage, headlight cluster and side mirror, parked on an urban street with blurred buildings and pedestrians in the background. +train_47612.png A small white bus with a horizontal blue stripe and glossy painted-metal texture is shown in a three-quarter frontal view, revealing dark rectangular passenger windows and a darker front bumper, set on a paved street against a blurred urban background of indistinct buildings. +train_47724.png A head-on, slightly low-angle view of a glossy bright yellow-orange bus with a rounded front, black lower bumper and grille, twin round headlights and rectangular indicator lights, a large curved windshield with visible wipers and side mirrors, parked on a paved urban street in front of a pale building with muted background details. +train_47742.png A compact bright-red single-decker bus with a slightly glossy, worn paint finish is shown in a front three-quarter view, parked on a gray paved surface against a blurred greenish background, with a wide windshield, dark side windows, round headlights and a black bumper visible despite the low resolution. +train_47784.png A glossy white, boxy minibus is shown head-on against a neutral light-gray background, its flat front dominated by a large rectangular windshield (with a slim center pillar), prominent round headlights flanking a black grille, small side mirrors and faint red trim along the lower sides visible despite the low resolution. +train_47791.png A glossy yellow-orange bus is shown from a low front-left three-quarter view parked on a street, with a white roof panel and large dark windshield, black window bands, rectangular headlights and side mirrors visible against a blurred backdrop of buildings and trees. +train_47819.png A small cream-white minibus with smooth glossy paint and a darker lower skirt, captured in a three-quarter front view revealing rectangular dark windows, a rounded front and small wheels, parked on a paved surface with a blurred gray-blue background and a faint blue circular marking on its side. +train_47911.png A glossy teal-blue midibus with a white roof and horizontal white side stripe is captured from a front-side three-quarter angle parked on gray asphalt, showing rectangular dark-tinted side windows, a flat frontal windshield, and rounded wheel arches despite the low resolution. +train_48124.png A small turquoise-blue minibus with glossy, slightly reflective paint is shown from a three-quarter front-right view, parked on a gray paved street with an indistinct urban background, and despite the low resolution you can make out a large rectangular windshield, prominent round headlights and a band of side windows. +train_48222.png A small, bright cobalt-blue minibus with a slightly glossy, speckled paint surface is shown in a shallow three-quarter front-left view against a gray paved background, with a darker roof, a white band of windows, two round headlights and black wheel arches visible despite the low resolution. +train_48325.png A low-resolution three-quarter front-left view of a cream-and-orange bus with smooth painted surfaces, dark tinted side windows and a rounded windshield, black lower trim and visible wheel, parked on a paved street against a blurred urban-building background. +train_48526.png An off-white, slightly weathered small bus with a faded orange-brown horizontal stripe and a dull, slightly dirty finish is shown in a three-quarter front-right view parked on a paved urban street in front of a low concrete wall and beige building, revealing a boxy profile with rectangular dark-tinted side windows, a black front grille and bumper, visible front wheel and protruding side mirror. +train_48614.png A boxy, school-bus yellow vehicle with a slightly dulled glossy metal finish is shown from a three-quarter front-left angle, parked on a pale dirt/paved lot with indistinct green trees behind it, and displays dark rectangular windows, a black lower trim and grille and a lighter roofline stripe visible despite pixelation. +train_48616.png A small glossy orange-red minibus with a white roof and a horizontal white stripe, shown in a front-left three-quarter view, parked on a road in front of green foliage and a low wall, with dark side windows, a black front bumper and a boxy silhouette visible despite the low resolution. +train_48838.png A small, glossy yellow-orange minibus captured in a low-resolution three-quarter-front view, its smooth painted metal surface and black-tinted rectangular windows and lower skirt reflecting light, parked at the curb in an urban street in front of storefronts, showing a boxy high-roof profile with a prominent windshield, headlights and a visible front wheel. +train_48850.png A glossy orange-red bus is shown in a front three-quarter left view, its smooth painted metal body topped by a white roof and lined with dark rectangular windows and a prominent windshield, parked on a city street with blurred buildings and pavement in the background. +train_49052.png A glossy bright red single-decker bus with a white roof is shown in a three-quarter front-right view on a city street, displaying a large rectangular windshield with a black destination panel above, twin round headlights, a row of side windows, and blurred buildings and vehicles in the background. +train_49162.png A compact, boxy minibus in bright blue with a white roof and glossy paint showing slight reflections, captured in a three-quarter front-left view with dark tinted side windows, visible headlight and black wheel, parked on an urban street beside a sidewalk and blurred storefronts and trees in the background. +train_49173.png A small bright orange minibus with a white roof and glossy finish is shown in a three-quarter front-left view, parked on a sunlit urban street in front of blurred storefronts, featuring dark rectangular windows and a black front bumper. +train_49198.png A small turquoise-green bus with a glossy painted-metal finish and a contrasting white roof is shown from a front-left three-quarter view, parked on an urban street with blurred storefronts and other vehicles in the background, and it displays a large wraparound windshield, rectangular side windows, a black bumper and wheel arches, and a roof-mounted sign/vent. +train_49206.png A cream-white, glossy-painted bus with a narrow blue roof stripe and dark rectangular windows is seen in a three-quarter front-left view, parked on a paved road against a blurred green-vegetation background, with visible boxy wheel arches, a dark front bumper and large side windows despite the low resolution. +train_49239.png A glossy orange-yellow, toy-like bus shown in a three-quarter front-left view against a vivid blue background, with dark rectangular windows, black wheels, a lighter front grille/headlight area, a subtle black lower stripe and a faint shadow beneath indicating a painted-metal texture. +train_49293.png A compact orange-red bus seen from a front three-quarter left viewpoint, its glossy painted metal body and dark rectangular windows visible despite low resolution, parked on a sunlit street with blurred buildings and trees in the background and a prominent dark windshield and headlights defining its front face. +train_49296.png A cream-white, glossy city bus shown in a front three-quarter left-side view, with dark-tinted rectangular windows, bold horizontal blue and orange stripes along its smooth metal body, visible front windshield and headlight area, and parked on a gray paved street beside indistinct light-colored buildings and a sidewalk. +train_49326.png A glossy light turquoise minibus fills the frame in a three-quarter front-right view, showing a rounded front, compact body, dark-tinted windows and visible wheel arches, set against a dim, shadowy urban street background with indistinct pavement and shapes despite the low resolution. +train_49359.png A small, glossy cobalt-blue bus captured from a slightly left-front three-quarter view, with a large reflective split windshield, round headlights set into a white-trimmed front bumper, rectangular side windows and mirrors visible, parked on a sunlit urban street with low buildings in the background. +train_49597.png A three-quarter front-angle view of a bright orange-yellow bus with flat painted metal, a row of dark tinted rectangular side windows and a darker front bumper/grille, positioned on a paved road against a blurred green foliage background. +train_49822.png A small yellow-orange bus with a white roof and smooth glossy paint is shown in a front-left three-quarter view on a gray paved street with a blurred neutral background, featuring rectangular side windows, a large windshield, round headlights and a black bumper and tires. +train_49849.png A compact orange-red single-decker bus is shown at a slight front-side angle, its glossy, slightly pixelated paint and a row of dark rectangular side windows visible, positioned on a dim urban street with wet asphalt and blurred buildings and streetlights in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/butterfly_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/butterfly_descriptions.txt new file mode 100644 index 0000000..ac65802 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/butterfly_descriptions.txt @@ -0,0 +1,500 @@ +train_00051.png Seen from above, an orange-brown butterfly with papery, slightly worn wings held open to reveal darker brown‑black margins, faint vein lines and small pale marginal speckles, perched on a bright green leaf against a softly blurred green foliage background. +train_00207.png A small butterfly seen dorsally with its wings folded roof-like into a triangular shape, showing dull gray-brown matte wings with a diffuse darker central patch and a faint orange-brown streak near the tip, perched on a coarse gray stone surface that casts a small shadow beneath it. +train_00492.png A small butterfly seen from above with bright iridescent blue wings that show a subtle darker edging and faint mottled texture, perched with wings spread on a vivid red‑orange floral background that provides a warm, slightly blurred backdrop. +train_00507.png Oblique top-down view of a small butterfly perched on dry, grainy soil, its wings showing a mottled orange-brown texture with a darker scalloped outer margin and a faint central dark spot while the darker body and antennae contrast with the beige background. +train_00621.png A side-view butterfly with wings folded upright, showing a dark navy body and wings edged in a vivid cyan-turquoise margin with a subtle iridescent, velvety texture, scalloped wing outline and faint lighter spots near the trailing edge, perched on a thin dark stem against a plain pale background. +train_00659.png A small orange-brown butterfly with subtly mottled, satiny wings edged by a thin dark border and faint pale marginal spots, perched with its wings partially closed at an angle on a slender green stem against a soft-focus verdant background. +train_00799.png A small butterfly with vivid magenta-pink, powdery-scaled wings showing a darker central band and faint darker margins, perched with wings held open at a slight angle revealing a slender dark body and thin antennae, resting on a glossy green leaf against a soft, out-of-focus green foliage background. +train_00875.png A small orange-brown butterfly with slightly mottled, powdery wings held open in a near top-down pose, showing darker spots and a thin dark border, perched against a soft-focus green leaf background. +train_00896.png Top-down view of a small butterfly with vivid lime-green, subtly satiny wings marked by faint darker veins and irregular black speckling toward scalloped margins, wings held flat above a dark, rough perch with blurred green foliage in the background and a pale yellow-orange body visible at the wing base. +train_00950.png Top-down view of a small butterfly with wings fully spread revealing matte warm orange wings streaked with darker brown-black veins and a thin dark border dotted with tiny pale spots, a darker central body, and set against a soft beige circular background. +train_01077.png A top-down view shows a small butterfly with vivid golden-orange, velvety wings marked by darker brown-to-black scalloped bands and tiny pale spots, wings held open flat above a soft teal-green blurred background with a slim dark body and slightly serrated wing margins visible despite the low resolution. +train_01504.png A dorsal, wings-open view of a small butterfly with vivid, slightly velvety orange wings marked by bold black veins and a thick scalloped black border studded with tiny white spots, resting against a warm, blurred orange-brown background. +train_01758.png Seen from above with wings spread flat, this butterfly shows warm orange-brown, slightly mottled wings with darker scalloped margins and faint pale and black speckling along veins and edges, its dark body centered against a soft, out-of-focus green-blue background. +train_01836.png Seen from above, a small rusty-orange butterfly with a matte, slightly mottled texture, darker brown marginal bands and faint wing venation holds its wings partially open while perched on a compact pink-red blossom against a dark, blurred background with a patch of green foliage to the right. +train_01900.png Dorsal view of a small butterfly with bright, velvety orange wings mottled with faint darker speckling and bordered by a narrow dark brown–black margin with tiny pale spots, wings held open flat over a dark thorax while perched against a soft, warm peach–pink blurred background suggesting a flower or sunlit surface. +train_01930.png A small butterfly viewed top-down and perched on a bright green leaf, its wings held flat displaying a powdery, scaly cream-to-tan central field with darker brown‑black outer margins and subtle mottling plus tiny pale spots near the wing tips and a compact dark body at the center. +train_01935.png A small butterfly seen from above with vivid turquoise-blue, slightly iridescent wings edged in dark navy-black and faint veining, wings held nearly flat in a slight V with a tiny orange-brown body at the center, set against a smooth bright aqua-green background. +train_02167.png A small orange butterfly seen from above with wings spread flat, showing matte, papery orange wings with dark brown/black marginal bands, faint vein texture and tiny pale spots near the tips, perched on a bright green leaf against a soft-focus green background. +train_02182.png Top-down view of a small butterfly with vivid orange, slightly scaly wings bisected by bold black veins and edged with a thick black border studded with small white spots, wings spread flat against a dark, slightly mottled reddish-brown background with a faint green blur at the corner. +train_02183.png A small butterfly seen from a slightly oblique top view, its wings a warm rusty-orange with a matte, slightly powdery texture and darker brown/black margins and faint vein-like markings around a compact dark body, perched on a coarse pale tan/gritty surface (soil or stone) under soft diffuse light. +train_02185.png A small orange-brown butterfly seen from above with wings spread flat, showing a warm, slightly matte orange central field fading to darker brown margins with faint speckled texture and a subtle central darker patch, perched on a glossy green leaf against a blurred verdant background. +train_02343.png Top‑down view of a small butterfly with velvety dark brown wings featuring a warm orange‑tan central band converging at the body, faint pale spots near the forewing tips, slightly scalloped margins, and antennae visible, posed with wings fully spread against a clean white background. +train_02441.png Top-down view of a small butterfly resting with wings fully outstretched on a pale, slightly textured surface, its wings a vivid magenta-pink with a darker central body, faint lighter spotting toward the tips, and a soft shadow beneath. +train_02479.png A small, bright orange butterfly viewed slightly from above with wings spread in a papery texture, marked by darker brown-black mottling and a thin dark marginal band around the fore- and hindwings and a slender dark body with faint antennae, perched on a thin twig against a warm, mottled brown leaf-litter background. +train_02749.png A small orange butterfly viewed from above with wings spread, showing bright, slightly mottled orange wings with bold black veins and a dark scalloped outer margin dotted with tiny white specks, perched flat against a pale beige background. +train_02759.png A small butterfly seen top-down with bright turquoise-blue, slightly iridescent, velvety wings edged by thin dark borders and faint black venation, wings held flat while perched on a pink‑purple blossom against a soft, out-of-focus green background. +train_02779.png A butterfly is perched with wings fully spread in a top-down view, displaying warm orange, slightly mottled scaly wings with prominent black veins and thick black margins dotted with white spots against a soft, out-of-focus green leaf background. +train_02979.png A small orange-brown butterfly with subtly mottled, slightly velvety wings bordered by darker brown-black markings, perched with its wings folded upright on a bright green leaf against a soft, out-of-focus green background, revealing a slender dark body and faint pale spots along the wing margins. +train_03042.png Top-down view of a small butterfly perched with wings held open, revealing bright orange-red upper wings with dark brown-to-black margins punctuated by tiny white spots and subtle veining, a slender dark body and antennae, resting on a glossy green leaf against a softly blurred green foliage background. +train_03049.png A small butterfly shown in profile with closed, slightly fuzzy orange-brown wings bearing a darker brown outer margin and a faint lighter central patch, perched on a thin dark stem against a pale, out-of-focus background of sky-blue and off-white rock. +train_03364.png A small orange butterfly perched with wings partly spread in a slightly angled top-down view, its matte, scale-textured wings showing warm orange fields, darker brown-black margins and faint venation with a few pale spots, set against a soft, out-of-focus green foliage background. +train_03395.png A small orange-brown butterfly shown from a slightly elevated dorsal angle with velvety, subtly mottled wings bearing a darker central band and a paler marginal rim, perched against a soft, out-of-focus teal-green background that emphasizes its rounded wing shape and faint scalloped edges. +train_03446.png Side-on view of a small butterfly perched against a pale green, softly blurred background, displaying closed triangular orange-red wings with a slightly textured matte surface, a narrow dark brown–black marginal band and a tiny pale spot near the wing tip. +train_03487.png Dorsal view of a butterfly with satiny, iridescent turquoise-blue wings held open, broad dark brown–black margins and a small pale orange/white spot on the hindwing, perched against a soft, out-of-focus pinkish-red foreground and muted teal-green background. +train_03501.png A small butterfly perched in profile on a thin vertical stem with wings held closed, showing mottled brown-gray scaled texture with a subtle orange band near the hindwing edge and a few pale marginal spots and fine antennae, set against a soft, out-of-focus pale green and cream background. +train_03580.png A small bright orange-red butterfly with velvety wings held upright in repose, showing subtle dark edging and faint venation, perched on a glossy green leaf against a soft-focus green foliage background. +train_03600.png A small, vivid magenta-pink butterfly with slightly translucent, papery wings marked by faint darker veins and tiny pale marginal spots, perched sideways with its wings tented over a slender body on a single green grass blade against a soft-focus emerald background, its thin antennae and legs faintly visible. +train_03859.png Top-down view of a butterfly with satiny orange-brown wings, a darker brown/black central body and irregular darker mottled spots toward the wing tips, resting with wings spread on a similarly warm, mottled orange background. +train_03906.png A small butterfly viewed nearly head-on with wings held slightly open, showing vivid iridescent blue upper wings with glossy, scale-like texture, distinct black borders and small orange patches near the lower wing edges, a narrow dark body centered, all set against a plain pale background with a soft shadow beneath. +train_04167.png A top-down view of a small butterfly perched on blurred green foliage, its wings held open to reveal warm orange-brown, slightly mottled and velvety texture with darker brown-to-black margins, a darker central body, and faint pale spots near the wing tips visible despite the low resolution. +train_04196.png Top-down view of a small butterfly with bright golden-orange, slightly matte wings edged in darker brown and showing faint darker veins and tiny central dark spots, perched with wings spread flat against a deep red, slightly mottled background. +train_04218.png A small bright orange butterfly with slightly mottled, velvety wings edged in darker bands with faint pale spots and a slim dark body, shown wings partially spread in a slightly angled top-down view against a soft-focus green leafy background. +train_04287.png From a top-down viewpoint a small butterfly with bright orange-to-yellow wings, dark brown/black veins and margins, and a dark central body is shown with wings fully spread on a blurred green leaf/grass background, the low-resolution pixelation giving the wings a blocky, mottled texture while the contrasting dark edges and central thorax remain clearly distinguishable. +train_04303.png A small butterfly seen dorsally with rust-orange, slightly mottled wings marked by darker brown patches and tiny pale flecks, wings held flat with subtly scalloped edges over a blurred bright green leafy background, its dark thorax and slender antennae visible. +train_04428.png A small butterfly perches with wings partially open on a glossy green leaf, displaying warm orange-brown wings with darker brown borders, faint vein-like texture and a few pale marginal spots, viewed slightly from above against a softly blurred green foliage background. +train_04441.png A small deep-orange butterfly with velvety, slightly mottled wings edged in darker brown and a tiny pale spot near the tip, shown perched with its wings held upright in a closed pose from a slight side view against a blurred green-leaf background, revealing a compact dark body and faint vein pattern. +train_04864.png An orange butterfly with matte, slightly mottled wings edged in dark brown-black and faint venation, perched with wings partially open in a three‑quarters top view on a glossy green leaf against a blurred green foliage background, its small dark body and antennae visible despite the low resolution. +train_04871.png A small butterfly seen dorsally with wings fully spread, showing vibrant turquoise-blue, slightly iridescent smooth wings with thin black borders and faint darker venation and a darker central body, perched on a slender brown twig against a softly blurred green foliage background. +train_05012.png Dorsal view of a small butterfly with compact, slightly rounded wings held open, colored deep brown to nearly black with warm orange-brown patches and faint pale speckling creating a subtly mottled texture, perched against a soft, out-of-focus green leaf background. +train_05191.png A bright golden-yellow butterfly shown in right-side profile with its wings held upright, the satiny wings marked by bold black tiger-like stripes and a faint darker patch near the scalloped hindwing edge with a small tail-like projection, perched against a soft, pale out-of-focus background with a dark twig beneath. +train_05309.png Bright orange butterfly seen from above with wings fully spread, the matt, scaly wings marked by bold black veins and thick black margins studded with small white spots, perched against a soft-focus green foliage background. +train_05315.png A dorsal, wings-open view of a small butterfly against a plain white background showing dark brown to black wings with bright orange triangular patches radiating from the wing bases, faint pale spots along the outer margins, slightly scalloped edges, and a short fuzzy dark body. +train_05464.png Seen from above, a small butterfly with warm orange-brown matte wings held flat displays a darker central band, faint pale marginal spots and slightly scalloped edges, perched on a coarse reddish-brown textured surface with a soft, blurred background. +train_05497.png A small iridescent turquoise-green butterfly viewed from above at a slight oblique angle with its wings spread flat, showing powdery, metallic-looking scales and darker narrow margins, perched on bright pink flower petals with a soft, out-of-focus green background. +train_05626.png An orange-and-black butterfly is perched in profile on a green leaf with its wings held upright, showing bold black veins and white marginal spots and a slightly mottled, scalelike wing texture against a soft, blurred green background. +train_05628.png Seen from above with its wings fully spread, the butterfly displays dark maroon-brown, slightly mottled (pixelated) wing texture with warmer orange-brown triangular patches near the outer forewings, small pale cream spots toward the tips, scalloped wing margins and a narrow dark body with upright antennae against a plain pale background. +train_05668.png A small, bright orange butterfly seen from above with its wings held open, showing slightly worn matte wings edged in dark brown/black with scattered dark spots and a slim dark body, perched against a soft-focus green leaf background. +train_05723.png A small mottled brown-orange butterfly with a slightly scalloped wing edge and darker brown spots and a pale cream band on the forewing, perched with its wings held closed at a slight angle on a bright green leaf against a soft-focus green-brown background. +train_05733.png A small butterfly viewed top-down with wings fully spread, showing a warm reddish-orange and brown mottled matte texture, scalloped dark-brown wing margins, tiny pale cream spots near the forewing tips and subtle darker central markings, photographed against a plain light background. +train_05742.png A small orange-brown butterfly with a powdery, slightly velvety wing texture, darker brown margins and faint pale spots on the forewings, shown from an angled dorsal view with wings partially open as it perches on bright green foliage, its slender dark body and subtle wing venation discernible despite the low resolution. +train_05754.png A small matte dark brown–black butterfly viewed dorsally with wings fully spread, showing a distinct creamy-white central spot and slightly scalloped wing edges, perched against a bright reddish-pink, subtly textured background. +train_05831.png A small butterfly shown in a slightly angled side/dorsal pose with its orange wings folded partially closed, exhibiting a matte, subtly mottled texture with a dark brown–black marginal band and tiny pale spots, a faint dark body and antennae visible, perched against a pale beige background with a small green leaf in the upper-right. +train_06052.png A small butterfly seen from a slightly oblique dorsal view, with velvety dark brown to black wings accented by warm orange patches near the outer margins and a few pale spots, perched with wings partially open against a mottled bluish-green background (likely a leaf), showing scalloped wing edges and a slim dark body. +train_06140.png A dark brown to black butterfly seen from above with its wings held open, showing matte, slightly mottled wings accented by a band of orange near the outer margins and a row of pale white speckles and faint veins, perched on a green leaf against a soft-focus grassy background. +train_06263.png A dorsal, wings-open view of a butterfly perched on a dark twig, its velvety black wings bisected by vivid lemon-yellow triangular bands and faint scalloped edges with tiny tail-like hindwing extensions, set against a softly blurred green leaf background. +train_06361.png A small rusty‑orange butterfly viewed from above with its wings slightly closed, revealing scaly, slightly fuzzy brown‑orange tones with subtle darker mottling and a faint pale spot near the wing tips, perched on a pale, smooth surface (likely concrete) in soft diffuse light. +train_06420.png Top-down view of a small butterfly perched on a bright green leaf, its rounded wings a vivid crimson-red with thick black margins and subtle darker veining and a dark central body visible despite the low resolution, the wing surface appearing slightly glossy. +train_06559.png A small velvety orange butterfly with darker mottled markings and thin black margins holds its wings slightly open while perched on a bright green leaf, its slender dark body and a few pale spots faintly visible against a softly blurred verdant background. +train_06652.png A small butterfly seen from above with wings held open on a pale green leaf, its velvety dark brown-to-black wings marked by an iridescent turquoise-green band and scattered pale marginal spots, set against a softly blurred green background. +train_06684.png A small butterfly seen in dorsal view with bright turquoise-cyan wings showing faint darker veining and a thin darker margin, wings spread flat over a pale cream round flower or disk, its dark body centered and subtle white speckling and shadowed texture visible against a softly blurred warm beige background. +train_07000.png Dorsal view of a small, bright orange butterfly with matte, slightly mottled wings marked by bold black veins and a thick black border studded with tiny white spots, perched with wings fully spread against a soft-focus reddish-pink floral background with hints of green foliage. +train_07138.png A small, dark-brown butterfly with a velvety, slightly iridescent green-blue sheen on its folded wings is shown in profile perched on a thin twig, its slender black body and antennae silhouetted against a soft, out-of-focus leafy green background with faint lighter edging along the wing margins visible despite the low resolution. +train_07294.png From a top-down view the butterfly perches with wings spread flat, showing bright orange, slightly satiny wings marked by thin black veins and a scalloped black border dotted with small white specks, a dark slender body, and a blurred green leaf background. +train_07306.png A small, bright-orange butterfly with velvety, scaly wings marked by prominent black veins and a thick black border studded with tiny white spots is shown from above with wings fully spread while resting on a slender green stalk against a soft, blurred green background. +train_07328.png A small butterfly with bright orange, slightly scaly wings marked by a thin dark border and scattered black spots, shown in a near‑side view with wings partially open as it perches on a glossy green leaf against a soft‑focus green foliage background, its slender dark body and antennae faintly visible. +train_07347.png A small butterfly with creamy-white wings suffused with a faint lavender-pink wash and subtle darker marginal speckling, shown in a slightly oblique top-down pose with wings partly open as it perches on a glossy round green leaf against a soft, out-of-focus garden background, its delicate translucent wing texture and a tiny central dark spot visible despite the low resolution. +train_07357.png A small pale yellow-orange butterfly with subtly mottled, slightly scalloped brown wing margins and a dark discal spot on each forewing, perched with its wings held upright exposing a slim dark body against a soft, out-of-focus beige background. +train_07478.png A small rusty-brown butterfly viewed from above with wings held flat and slightly spread, showing a subtly glossy, mottled texture, darker brown central body and faint lighter speckling and rounded wingtips, photographed against a plain pale/white background with a soft shadow beneath. +train_07528.png A small orange-and-black butterfly viewed from a slightly top-down angle with its wings partially open, the powdery, mottled orange wing surfaces marked by dark veins and pale marginal spots and a dark body, perched on a pink blossom against a soft, out-of-focus green leafy background. +train_07534.png A small orange-brown butterfly with slightly velvety, mottled wings bearing darker central and marginal spots and a pale scalloped fringe, perched with wings partly open in a three-quarter dorsal view on a bright green leaf against a soft, out-of-focus reddish-brown and green background. +train_07559.png A small butterfly perched on a bright pink flower, viewed from above and slightly front-on, with velvety magenta wings edged in darker maroon and dotted with faint paler spots, a slim greenish body and short antennae visible against a soft, blurred pink-and-green background. +train_07666.png A small orange butterfly seen from above with wings held flat, showing a slightly velvety, mottled orange surface with darker brown margins, faint radiating veins and tiny pale spots near the tips, perched on a blurred green leaf against a soft green background. +train_07674.png A small butterfly shown from a top-down viewpoint with wings splayed flat, exhibiting vivid magenta-pink, slightly mottled wings with darker margins and a darker central body, perched on bright green, softly blurred foliage. +train_07787.png An orange-brown butterfly with slightly mottled, velvety wings marked by a few dark spots and a darker margin, shown in an oblique side-on pose with wings partly open while perched on a pale surface next to a small green leaf, the low-resolution image nonetheless revealing the compact dark body and blurred but contrasting wing patterns. +train_07871.png Dorsal view of a butterfly with wings fully spread, displaying vivid deep red, slightly velvety wing surfaces edged by thick black borders and a narrow vertical black body at the center, set against a very dark background with a faint greenish strip near the top. +train_07947.png Top-down view of a small orange-brown butterfly with slightly scalloped, mottled wings edged in darker brown and a darker central body, perched with wings spread on a pale sandy/rocky background. +train_08026.png A small butterfly viewed from a slightly top-front angle with glossy turquoise-cyan wings showing faint veins and darker teal edging, an elongated dark body perched upright on a thin twig against a smooth, deep blue-green blurred background. +train_08079.png A small butterfly seen from above with wings spread flat, displaying warm orange-brown, slightly mottled wings edged in darker brown with a few tiny dark spots and subtly scalloped margins, perched on a glossy green leaf against a soft-focus green foliage background, the wing surface appearing slightly textured and worn despite the low resolution. +train_08105.png A small butterfly seen from a slightly oblique top-side angle with warm orange-yellow, subtly scaly wings edged in darker brown-black with faint pale spots, wings held partially open as it perches on a thin twig against a soft, out-of-focus pinkish-purple background. +train_08109.png A small orange-red butterfly with mottled black speckles and a slightly worn, textured wing surface, shown in three-quarter dorsal view as it perches on a bright green leaf against a softly blurred green background. +train_08442.png A small orange butterfly seen from above with its wings held flat, showing dark veins and black scalloped margins dotted with tiny white spots and a slender dark body, perched against a blurred green leaf background. +train_08450.png A small creamy-white butterfly with powdery, scaly wings held upright in a resting pose on a green leaf, showing faint brown veins and a subtle dark central spot on the underside against a soft, out-of-focus green foliage background. +train_08528.png A small butterfly with slightly mottled orange wings edged by a dark brown-black border and tiny pale speckles, held in a three-quarter dorsal pose perched on a thin green stem against a soft-focus pale green background with a hint of pink blossom nearby. +train_08535.png A stylized, low-resolution purple-to-blue butterfly with a smooth, flat texture and black outlines, shown from a top-down view with wings fully spread against a deep navy background, featuring a bright cyan body, short antennae, and subtle darker spots near the wing tips. +train_08589.png A small orange-reddish butterfly is perched in profile on a green stem with its wings held closed upright, revealing scaly matte orange wings marked by prominent dark-brown/black veins and a darker marginal band dotted with tiny pale spots against a soft, out-of-focus green background. +train_08670.png Dorsal view of a small butterfly with wings spread flat, showing bright turquoise-blue, slightly glossy wings with darker teal venation and thin black margins and a small magenta-pink central body/marking, posed against a plain white background. +train_08758.png Top-down view of a butterfly with cobalt-blue wings that darken toward navy-black edges, a slim black body and short antennae, wings spread symmetrically against a solid turquoise background and appearing smooth but pixelated due to low resolution. +train_08794.png A small butterfly shown from above with wings spread flat, displaying bright orange, slightly mottled, scaly wings edged in darker brown-black with faint veins and tiny pale marginal spots, perched on a reddish-pink bloom against a soft, out-of-focus green foliage background. +train_08798.png A small butterfly seen from above with its wings held slightly open, showing dark brown, velvety wings with a thin curved orange band and paler submarginal spots, faintly scalloped wing edges, perched on a peach-toned human thumb against a soft teal fabric background. +train_08858.png A small orange-brown butterfly viewed from above with wings held flat, the matte, slightly fuzzy wings bearing darker brown to black irregular spots and a faint lighter marginal band, perched against a soft, out-of-focus pale green background. +train_08963.png Bright orange wings with irregular black spotting and a thin darker margin, held mostly open in a top/three-quarter dorsal pose while perched on a small green leaf, the wing surface appearing slightly mottled and matte and the dark, heavily blurred background making the butterfly silhouette stand out. +train_09028.png A dorsal, slightly top-down view of a small butterfly with velvety, dark brown-to-black wings exhibiting vivid orange bands near the forewing tips and a scattering of pale speckles, perched with wings partly spread against a blurred warm reddish-brown background. +train_09047.png A small butterfly seen in three-quarter dorsal view perched on a glossy green leaf, its bright orange‑red wings showing darker veins, a thin black border with scattered dark spots and slightly scalloped, papery edges, set against a softly blurred deep‑green foliage background. +train_09054.png A small butterfly viewed from a slightly oblique top-down angle with its bright orange wings partially spread, smooth papery texture, bold black veins and scalloped black borders accented by tiny white marginal spots, set against a plain white background. +train_09288.png A small butterfly with smooth, pale blue-tinged white wings and a bright orange body and head, pictured in a slightly top-down, wings-parted pose against a deep navy background with a small green leaf and a tiny orange blossom, the wings showing glossy, unpatterned texture with faint pale shading. +train_09295.png A small butterfly shown in a top–three-quarter view with wings partly spread, displaying dark brown wings with a warm orange band and faint iridescent blue spots near the hindwing margins, a slightly fuzzy scalloped wing texture, thin dark antennae, and resting against a plain white background. +train_09316.png Top-down view of a small butterfly perched on a bright green leaf with wings held open, showing a warm orange-brown scaly texture, darker brown veins and a narrow dark outer border with a few pale cream spots near the tips against a soft-focus green background. +train_09340.png A small pale yellow-orange butterfly with slightly mottled, papery wings held closed upright over its back, showing a thin darker brown outer margin and faint spots, perched against a blurred turquoise-green background. +train_09365.png Top-down view of a small butterfly perched with wings fully spread, showing bright orange wings mottled with darker vein-like markings and a black scalloped border dotted with tiny white spots, set against a soft, out-of-focus turquoise-blue background. +train_09603.png A tiny lime-green butterfly viewed from above with triangular, closed wings showing a slightly iridescent, dusted texture and a darker central body, perched against a pale pink background with a dark green band in the upper-right. +train_09658.png An orange butterfly shown dorsally with wings fully spread, displaying a smooth, slightly glossy orange texture with darker rust-orange central patches and symmetrical round spots, thin dark edging, a small black body and antennae, and scalloped wing margins set against a plain white background. +train_09821.png A low-resolution frontal (dorsal) view of a small butterfly with bright turquoise-blue, slightly glossy wings edged by thick black scalloped borders, a vivid orange central body and small black markings near the wing bases, set against a plain white background. +train_09847.png A small butterfly shown from above with its wings held open in a dorsal view, bright orange wings with a slightly mottled, velvety texture and darker brown-black edging bearing a few pale spots and visible wing veins, perched against a soft, out-of-focus green-yellow-brown background that suggests foliage or ground. +train_10014.png A small butterfly seen in profile with warm reddish-orange, slightly mottled wings edged in darker brown and faint vein markings, perched with wings held upright showing scalloped margins on a pale green leaf against a soft teal-green blurred background. +train_10400.png A small butterfly seen in profile with dark maroon-brown, slightly glossy wings held upright showing faint pale speckling near the margins and a slim dark body and antennae, perched on a soft pink blossom against a blurred pink-green background. +train_10520.png Top-down view of a small orange butterfly with wings spread, showing bold black margins and faint dark veins, tiny white speckles along the outer edges and thin black antennae, perched against a soft beige background with a slightly pixelated texture. +train_10581.png A small reddish-orange butterfly viewed obliquely from above with papery, slightly mottled wings held partly open revealing a thin dark outer border and a tiny pale spot near the tip, perched on rough gray concrete with a small white pebble nearby. +train_10717.png Top-down view of a small butterfly perched on a bright green leaf, its wings held flat and showing warm orange-brown, slightly mottled texture with darker brown/black veins and edging, subtle scalloped margins, and faint lighter spots near the wing centers against a soft-focus green background. +train_10836.png A small orange-brown butterfly with a powdery scale texture, darker marginal borders and faint central spots, holds its wings partially open at a slight angle while perched on a vivid red flower bud against a soft-focus green background, the wings showing subtle venation and slightly scalloped edges despite the low resolution. +train_10956.png Top-down view of a small butterfly with vibrant cobalt-blue, slightly glossy rounded wings marked by lighter blue veins and tiny golden-orange spots near the base, a vivid orange segmented body and head, thin black antennae, and centered against a soft turquoise-to-aqua gradient background with a faint halo. +train_11039.png A small, matte cinnamon-orange butterfly seen from above with its wings held open, showing subtly darker brown margins and a darker central body, perched on a soft, reddish-brown blurred background. +train_11078.png A small dorsal-view butterfly with wings fully spread, showing vivid orange-red, slightly mottled matte wings with rounded fore- and hindwing outlines, a darker central body and tiny antennae, set against a soft, warm yellow-orange blurred background. +train_11101.png An orange butterfly viewed dorsally with wings fully spread, displaying smooth, slightly glossy orange wing surfaces punctuated by bold black veins and thick black borders with small pale spots, a dark slender body and antennae, set against a plain light background. +train_11128.png Dorsal-view butterfly with bright orange-red, slightly mottled velvety wings held flat, edged by a thin black scalloped border with a few small dark spots near the tips, perched against a soft-focus green-leaf background. +train_11204.png Dorsal, open-winged view of a small butterfly with vivid turquoise-blue, slightly iridescent wings showing darker central veins and faint black edging, a slim dark body with a small orange thoracic patch, perched against a blurred grassy green background with noticeable pixelation. +train_11282.png A small, vivid orange-yellow butterfly with darker orange-brown and black spotting and faint visible wing veins, wings held open in a slightly angled top-down pose against a soft-focus green leafy background, showing a compact dark body and symmetrical triangular wings with subtle mottled texture along the margins. +train_11300.png A glossy turquoise-to-green butterfly with symmetrically spread, smooth wings edged in darker teal and a slim black body with short antennae, shown head-on in an open-wing pose against a plain white background with a faint shadow beneath. +train_11505.png Small butterfly seen from above with its wings held open flat, displaying vivid mint-green to teal wings with a slightly glossy, smooth texture, faint darker vein-like markings, a subtle darker marginal band and a tiny central dark spot, perched against a plain off-white background casting a soft shadow. +train_11558.png A small orange-brown butterfly with matte, slightly mottled wings and faint pale marginal spots is shown from above with wings spread flat, perched on a bright green leaf against a blurred green background, its darker thorax and subtly scalloped wing edges visible despite the low resolution. +train_11577.png A small orange butterfly viewed from above with wings fully open, showing bright orange dorsal wings crisscrossed by bold black veins and irregular black margins with tiny white edge dots and faint dark speckling near the body, perched against a soft-focus green leaf background giving the wings a slightly worn, matte texture. +train_11754.png A small bright-orange butterfly with smooth, slightly translucent wings edged in darker brown and marked by faint central spots, seen from above with wings spread while perched on a glossy green leaf against a soft-focus leafy background. +train_11802.png A small butterfly is shown from above with its wings fully spread, revealing warm golden‑orange, slightly mottled wings with darker brown scalloped markings and a darker central body with thin antennae, set against a plain pale (off‑white/beige) background. +train_11897.png A small butterfly seen in side profile with its closed, scaly matte wings in warm brown-orange tones mottled with pale speckling and a faint dark central spot, perched on a pale beige–pink bud with visible legs and antennae against a soft, out-of-focus green background. +train_12672.png A small butterfly viewed from above, resting with wings held flat on a green leaf, its warm orange-brown, slightly scaly wings showing darker brown irregular bands and a row of small pale spots along the scalloped edges against a blurred leafy background. +train_12899.png Dorsal view of a small butterfly with outstretched, vividly orange-red, slightly pixelated matte wings edged in dark brown-black, pale cream spots near the forewing tips, scalloped hindwing margins with tiny tail-like projections, a dark slender body and antennae, set against a plain white background. +train_12930.png A small butterfly perched sideways on a thin diagonal twig with its wings closed, revealing a scaly, warm orange-brown ventral surface edged by darker brown margins, a faint pale submarginal line and a few tiny dark spots, set against a soft, out-of-focus greenish-gray leafy background. +train_12988.png A dark brown–black butterfly shown in an oblique top-side view, perched on a thin twig with wings slightly open revealing matte, scaled wings with a bold orange band on the forewings and small white speckles near the tips against a soft, out-of-focus pale gray/white background. +train_13142.png A small butterfly perched on a fingertip in a close, slightly top-down view, its dorsal wings a bright orange with darker brown margins and subtle pale spotting and a velvety texture, set against a dark, blurred background. +train_13340.png A small, dark brown to nearly black butterfly shown from above with wings spread flat against a warm orange circular background, its wings appearing matte with scalloped edges and a few pale cream-yellow spots near the forewing tips, a slim darker body and short antennae visible despite the low resolution. +train_13372.png Top-down view of an orange butterfly with velvety wings, bold black veins and a thick black marginal band studded with small white spots, wings spread while perched against a blurred deep‑green foliage background. +train_13483.png A small butterfly shown dorsally with wings spread flat, displaying bright turquoise-green wings with darker central markings and thin black margins with a few pale speckles, perched against a soft, out-of-focus grassy green background. +train_13561.png A small brownish-orange butterfly with slightly mottled, dusty-textured wings held flat in a top-down pose, perched on a thin dark twig against a smooth bright cyan-blue circular background, with faint darker wing margins and a subtle pale central band visible despite the low resolution. +train_13585.png A small turquoise-green butterfly viewed from above with wings slightly spread, showing a subtle glossy texture, faint vein-like markings and darker narrow borders, perched against a blurred leafy-green background. +train_13737.png Top-down view of a butterfly with wings fully open displaying vivid iridescent turquoise-blue with darker navy veins and thin black margins, a slender dark body centered between slightly scalloped wing edges, and a soft, slightly blurred pale blue–white background. +train_14120.png A dark brown butterfly with bold orange bands and subtle bluish spots on a scaly, slightly fuzzy wing surface, shown in a side/profile view perched with wings held upright on a pale sandy, pebbly background, its slender body and antennae still discernible despite the low resolution. +train_14655.png A dorsal-view butterfly with warm orange-pink wings, thin black margins and faint pale spots, perched with wings spread on a small pinkish flower against a blurred green-leaf background, its dark slender body and subtle wing venation visible despite the low resolution. +train_14730.png A small butterfly with vivid lime-green, slightly satiny wings marked by faint darker veins and thin black edging, shown dorsally with wings spread and perched at a slight angle against a mottled dark-green, leaf-like background, the low-resolution image still revealing the compact dark body and contrasting black wing margins. +train_14766.png Small warm-brown butterfly seen top-down with wings fully spread against a plain white background, its velvety, slightly mottled wings showing darker central veins, scalloped edges, a narrow dark body and faint pale cream spots near the outer wing tips. +train_14846.png A small bright-orange butterfly viewed from above with wings fully open, showing slightly mottled, papery orange wings edged by a thin dark border with faint black vein markings and tiny white speckles near the tips, perched against a soft-focus green leafy background. +train_14871.png A dark, velvety black-and-brown butterfly seen from above with wings spread, showing an orange central band and several pale yellow-cream spots along scalloped wing margins, perched on a vivid fuchsia flower with blurred green foliage in the background. +train_14920.png A butterfly shown in a dorsal, head‑on pose with wings held open, displaying bright matte orange wings with bold black veins and scalloped black margins peppered with small white spots, a dark fuzzy thorax, slight edge wear on the wings, all set against a largely black, out‑of‑focus background. +train_15045.png Top-down view of a small butterfly with bright magenta-to-violet velvety wings, thin black edging and faint white speckling, wings spread flat to reveal a darker central body and slightly scalloped margins, perched against a smooth cyan-blue background. +train_15101.png A small butterfly viewed from above with velvety pink–magenta wings that are slightly scalloped at the edges, a darker central body and subtle pale spotting, perched with wings spread against a blurred green leafy background. +train_15290.png A small orange-brown butterfly with velvety, slightly mottled wings and darker brown scalloped margins, shown from above with wings partly open and a slim dark body centered, perched on a pale, blurred stone-like background with faint wing spots visible despite the low resolution. +train_15316.png Dorsal view of a butterfly with bright orange, slightly velvety wings showing faint vein patterns and darker brown-black margins with small pale spots near the tips, wings held open while perched against a soft, out-of-focus green leaf background, with a dark body and thin antennae faintly visible. +train_15413.png A small, bright orange-red butterfly shown from above with wings fully spread, displaying smooth, slightly glossy wings patterned with black veins and edging and tiny white marginal spots around a dark central body, centered against a soft teal-green gradient background. +train_15434.png A small, matte-orange butterfly with dark brown–black wing margins and a faint apical spot is shown side-on, perched on a thin twig with its wings held upright/closed against a softly blurred green-brown background. +train_15443.png A small, low-resolution top-down view of a reddish‑orange butterfly with a darker central body and angular, slightly mottled wings held open against a plain white background, the wing pattern reduced to pixelated, fuzzy patches and a subtle darker spot near the center. +train_15452.png A small, velvety dark reddish-brown butterfly with a faint orange marginal band and subtle pale speckling on slightly scalloped wings, shown in dorsal (top-down) view with wings held flat while perched on a glossy green leaf against a soft-focus leafy background, its slender dark body visible along the wing crease. +train_15705.png Seen from an oblique top view with wings partly open, the small butterfly displays bright orange, slightly translucent papery wings marked by bold black veins and a dark margin dotted with tiny white spots, perched on a thin twig against a soft, out-of-focus pale background with a hint of green foliage at the upper left. +train_15714.png A small butterfly with bright satiny orange wings tinted toward deep red in the center and edged by a thin darker border, shown from a top/three-quarter view with wings mostly open and faint vein-like markings visible, perched on a blurred green leafy background. +train_15827.png A small butterfly seen from above with glossy, scale-textured crimson-red wings held open flat against a deep black background, the wings showing darker maroon shading toward the center, faint black spots near the tips, subtly scalloped edges, and a tiny dark body and antennae centered between them. +train_15841.png A small bright-orange butterfly viewed dorsally with wings held open in a slight V, the wings showing a smooth, slightly translucent texture with faint veins, distinct small black spots and a narrow dark margin on the forewings, a slim dark body and antennae visible, perched against a plain pale background with a tiny twig or shadow beneath. +train_15846.png A small butterfly seen from above with orange, slightly mottled wings held flat and patterned with irregular black spots and darker marginal bands, perched on a rough, light-brown wooden or bark surface under warm light. +train_15906.png A bright red-orange butterfly seen nearly head-on with slightly raised, smooth matte wings marked by a few small dark spots and a thin black body with short antennae, perched against a blurred green leafy background. +train_16290.png A small, warm orange-brown butterfly with velvety, slightly speckled wings, darker scalloped margins and a faint central spot is shown from above with wings partially spread while perched on a vivid magenta-pink blurred floral background, with faint antennae and wing veins visible despite the low resolution. +train_16374.png Top-down view of a small butterfly perched against a blurred green background, its open matte orange-brown wings showing darker brown margins, faint speckled/vein-like markings and a darker slender body at the center. +train_16468.png A small butterfly viewed dorsally with wings fully spread, displaying bright orange, slightly mottled scaly wings marked by prominent black veins and a thick black border with tiny white marginal spots, a dark central body, and perched against a soft, out-of-focus turquoise-green background. +train_16675.png A bright orange, slightly satiny butterfly with darker brown‑black wing margins and faint veins, seen from a near‑top/three‑quarter view with wings partly open as it perches on a pale fingertip against a softly blurred teal background, its small dark body and rounded wing edges visible despite the low resolution. +train_16780.png A small butterfly with warm orange-scaled wings marked by darker brown-black veins and a thin black scalloped border with pale spots, perched in profile with its wings held upright on a glossy green leaf against a softly blurred green foliage background. +train_16853.png A compact orange butterfly with matte, slightly mottled wings marked by bold dark veins and a black-edged border with tiny pale dots, shown in a wings‑out perched pose from a near‑head-on viewpoint against a softly blurred green and pale‑blue background. +train_16930.png A small butterfly seen from above with its wings held flat, showing matte, mottled warm brown wings crossed by a conspicuous pale cream transverse band and faint pale spots toward the tips, perched on a bright green leaf against a softly blurred green foliage background. +train_16949.png Top-down view of an orange butterfly with slightly mottled, papery wings showing darker brown-black marginal bands and small dark spots, perched with wings spread on a glossy green leaf against a blurred green-leaf background, its slim dark body and antennae faintly visible. +train_16988.png A small butterfly seen from above with its wings held open at a slight angle, showing warm orange scaly texture with faint darker mottling, thin dark margins and a couple of central dark spots, perched on a bright green leaf against a softly blurred leafy background, its dark body and antennae visible. +train_17013.png A small orange-brown butterfly is seen from a top-down, slightly oblique view with its wings partially closed, showing mottled darker-brown marginal spots and a subtly velvety wing texture and body, perched against a smooth pale-blue blurred background. +train_17081.png A bright orange, slightly velvety-looking butterfly with darker brown-black wing margins, faint darker spots and veins, held open in a dorsal pose while perched on a small green leaf against a soft turquoise-green blurred background, its dark body and slender antennae faintly discernible despite the low resolution. +train_17117.png A dorsal, wings-spread view of a small butterfly with vivid orange-reddish, slightly mottled wings showing darker brownish patches and thin scalloped marginal bands and a velvety, powdery texture, presented against a warm, out-of-focus reddish-brown background. +train_17211.png A dorsal view of a butterfly with velvety black wings spread flat, marked by vivid lime‑green glossy diagonal bands and central spots forming a V‑pattern, small tail‑like extensions on the hindwings, against a dark olive‑green, slightly blurred leaf background. +train_17296.png A small orange-brown butterfly seen in side view with its wings held upright and slightly closed, showing a warm mottled texture with faint veins, several distinct black spots and a darker scalloped margin along the wing edge, perched on a green leaf against a soft, out-of-focus green foliage background. +train_17418.png A small butterfly viewed from above and perched on a thin reddish twig, its dorsal wings a warm orange-red with a slightly mottled, faintly veined texture and darker brown-black margins dotted with tiny pale spots, set against a softly blurred green-brown background. +train_17601.png A small butterfly perched on a pale fingertip with its wings held closed in a vertical resting pose, showing warm rusty-orange undersides with darker brown-to-black marginal bands and faint lighter speckling, a slender dark body and threadlike antennae against a soft, out-of-focus teal and gray background. +train_17673.png A dorsal view of a small butterfly with bright orange, slightly mottled scaly wings held fully open and edged with darker brown-black margins and tiny black spots, a slim dark body centered between the symmetrical wing markings, all set against a plain pale off-white background with a faint shadow beneath. +train_17684.png A small, dusty orange-brown butterfly viewed dorsally with wings held flat toward the camera, showing a powdery, scaly texture and a pattern of darker brown rounded spots and a faint central band along scalloped wing margins, photographed resting on a pale, mottled ground or stone background in soft focus. +train_17718.png A small butterfly captured in a close, slightly angled dorsal/three-quarter pose, its velvety dark brown to black wings bearing vivid orange triangular patches on the forewings and a faint row of pale cream speckles along the outer margins, perched on a thin twig against a soft, out-of-focus warm brown and green vegetative background. +train_17897.png A small orange-brown butterfly viewed from above with wings spread flat, displaying papery, slightly worn, scalloped edges, darker brown marginal bands and scattered small dark spots around the central wing areas, perched on a light-gray rough stone or pavement background. +train_18060.png A small butterfly shown from above with wings fully spread, featuring matte golden-yellow wings with a warm orange central patch and bold black scalloped outlines and veins, a slender black body and antennae, set against a soft cream-beige background with a tiny green leaf at the lower left. +train_18066.png A small orange-brown butterfly seen from above with its wings spread, showing darker brown to black marginal spots and a darker central body, perched on a soft, out-of-focus green leaf background with a slightly worn, scaly wing texture visible. +train_18168.png A small orange-red butterfly viewed from above is perched with its wings partially spread on bright pink flowers against blurred green foliage, the wings showing a velvety, slightly mottled texture with darker marginal bands and a few small dark spots near the tips and a slender dark body. +train_18473.png A dorsal view of a butterfly with wings fully spread, the velvety wings showing a deep reddish-brown central field that darkens to near-black margins with subtle pale tan triangular patches near the inner edges and a faint scalloped fringe, set against a soft, pale bluish‑gray, slightly mottled background. +train_18499.png A small, bright orange butterfly seen from above with wings fully spread, showing smooth, slightly glossy orange wing surfaces edged and veined in bold black with a slender black body and thin antennae against a plain white background. +train_18640.png Seen from above, the small butterfly perches with its orange, slightly mottled, scaly wings held flat and spread, showing bold black margins punctuated by tiny pale spots and a dark body against a soft, out-of-focus green-leaf background. +train_18700.png A small butterfly with scaly, vivid orange wings edged in dark brown-black, shown in a slightly angled dorsal view with wings partially open revealing a bright orange central field and faint pale speckling, perched on a green leaf against a soft-focus bluish-gray background. +train_18856.png Top-down view of a small orange-brown butterfly with scaly, slightly mottled wings held flat, showing darker brown marginal bands, faint pale spots and scalloped edges, perched on bright pink flowers against a soft-focus green foliage background. +train_18949.png A small butterfly with mottled rusty orange-brown wings marked by darker brown veins and subtle paler streaks, held with wings flattened against a glossy dark green leaf in a slightly oblique top-down view, set against a softly blurred green foliage background and showing gently scalloped wing margins despite the low resolution. +train_19024.png A small bright orange butterfly seen from a slightly top-down angle with wings held open, showing a mottled scaly texture, irregular black spotting and a thin darker border with slightly ragged edges, perched against a blurred green-yellow leafy background. +train_19087.png Top-down view of a small butterfly perched with wings fully spread, showing vivid orange matte wings with darker brown–black margins and faint venation and slightly scalloped edges, set against a soft-focus bright green leafy background. +train_19122.png A small butterfly photographed from a slight top-side angle with its wings held together vertically, displaying warm orange-red wings with darker brown-black scalloped margins and faint mottled speckling, perched on a soft pinkish floral background with the wing scales appearing slightly worn and matte. +train_19229.png A small butterfly viewed from a slightly oblique top-down angle perches with wings fully spread on a bright green leaf, its matte orange-brown wings mottled with darker brown/black spots and a subtle darker marginal band, a thin dark body and antennae centered against a softly blurred green background. +train_19235.png A small orange-brown butterfly seen from above with wings held open, the matte, slightly scaly wings showing darker brown/black margins and faint veins plus a row of tiny white marginal spots, a dark slender body and antennae visible as it perches at a slight angle on a pale, textured beige surface. +train_19377.png A small butterfly is perched in profile on a thin twig with its folded wings held upright, showing warm golden-brown, slightly mottled and velvety undersides with darker brown margins, faint pale spots and scalloped edges against a softly blurred dark green-brown background. +train_19479.png A small orange butterfly seen from a slightly dorsal three-quarter viewpoint with its wings partially open revealing powdery orange scales, narrow dark-brown margins and faint pale spots near the forewing tips and a slender dark body, set against a soft, blurred turquoise-green background. +train_19496.png A small butterfly seen from above, perched with wings spread flat showing warm rusty-brown wings with a broad orange band, subtle darker mottling and a faint central spot, resting on a sunlit bright green leaf with soft blurred foliage in the background. +train_19530.png A head-on, wings-fully-open butterfly showing velvety orange wings with bold black veins and a thick black border dotted with small white spots, its dark central body centered against a plain pale background so the symmetrical pattern and scalloped wing edges remain visible despite the low resolution. +train_19733.png A small butterfly seen from above with wings slightly spread, showing a warm rusty-orange central area and darker brown outer margins with faint pale spots and a subtly mottled, matte texture, perched on a bright green leaf against a soft, uniformly blurred emerald-green background. +train_19947.png A small orange-and-black butterfly seen from above with wings spread, displaying papery, slightly mottled orange fields bisected by bold black veins and a scalloped black margin studded with tiny white spots, perched on a pinkish bloom against a soft, out-of-focus green background. +train_20074.png A top-down view shows a small butterfly with velvety yellow-orange dorsal wings, faint darker venation and a narrow dark-brown marginal band with a subtle central dark spot, perched with wings spread against a soft-focus green leafy background. +train_20418.png A small pale turquoise-blue butterfly seen from a slightly top-down, head-on viewpoint with wings held open in a V, showing smooth, slightly glossy cyan wing surfaces rimmed in deeper blue, a dark central body with tiny orange markings near the wing bases, all set against a stark black background. +train_20424.png A small butterfly seen dorsally with orange-brown, slightly mottled papery wings held flat, darker brown-black margins with faint black speckles and tiny white marginal dots visible against a smooth pale cyan background. +train_20527.png An oblique top view of a small butterfly perched with wings partially open, showing warm orange-brown, slightly velvety wings with a darker outer margin and a faint pale spot on the forewing, set against a soft, out-of-focus pinkish-beige background that could be skin or fabric. +train_20573.png A small, dorsal-view butterfly perched on a bright green leaf with its wings partially open, showing warm orange-brown, scaly texture with darker mottled patches and a faint dark margin against a soft, out-of-focus green background. +train_20872.png A small orange butterfly seen from above with its wings held flat, showing slightly mottled warm-orange wing surfaces with darker brown margins and a darker central body, perched against a softly blurred green-brown natural background. +train_20933.png Dorsal view of a small butterfly with matte pale cream-to-tan wings mottled with subtle darker speckling and a distinct darker brown scalloped margin, wings held open flat as it rests against a blurred warm reddish-pink textured background. +train_20983.png A small golden-yellow butterfly viewed slightly from above with its wings held open, showing matte, lightly veined wings with subtle orange-brown shading toward the tips and a few faint dark marginal spots, perched on a round pinkish-purple clover-like flower against a soft green, out-of-focus background. +train_21023.png A pixelated dorsal-view butterfly with vibrant orange, slightly mottled wings bordered by thick black margins and small black spots near the tips, a dark slender body and thin antennae, perched with wings spread against a soft green leafy background. +train_21196.png Dorsal view of a butterfly perched with wings spread flat, revealing matte dark brown wings with rusty-orange patches near the outer margins, faint pale speckling and subtly scalloped edges, a darker central body, all set against a smooth pale beige background. +train_21260.png A small butterfly photographed from a slightly oblique dorsal view, its papery orange-brown wings showing a warm mottled texture with darker brown margins and a couple of faint black spots, held partially open against a dark, blurred background. +train_21294.png A small butterfly seen from above with wings spread flat, displaying vivid magenta-pink, slightly velvety wings with darker purple veins and scalloped edges, a warm orange-yellow area near the thorax and a slender dark body, perched against a soft teal-green blurred background. +train_21319.png A small, bright orange butterfly viewed dorsally with wings spread flat, the wings showing a slightly velvety, mottled orange surface edged by bold black borders with tiny white subapical spots on the forewings and a darker central body, all set against a featureless deep navy-blue background. +train_21410.png A small golden-orange butterfly viewed from a near-topside angle with its wings held closed over its back, the wings showing a slightly mottled, matte texture with faint darker speckling and a paler marginal edge, perched on a vivid green leaf against a softly blurred green background. +train_21444.png A small butterfly photographed in profile, perched with its closed, upright pale tan wings showing mottled olive-brown shading and a pronounced dark circular eyespot near the center, against a soft, blurred green-leaf background. +train_21652.png A small orange-brown butterfly with slightly translucent, veined, papery wings edged in darker brown and faint pale spots, perched with wings partially open on a vertical green stem against a soft-focus grassy leaf background, its dark slender body and scalloped wing margins visible despite the low resolution. +train_21769.png Top-down view of a butterfly perched with wings spread flat, showing bright orange wings with darker brown-black borders and subtle vein markings, a slim dark body and antennae visible, set against a tan, vertically striated coarse background. +train_21882.png An orange butterfly with scaly, slightly iridescent wings marked by darker brown–black central spots and a narrow dark margin, wings held upright and slightly closed while perched on a human fingertip against a soft, pale out-of-focus background, with central markings and faint venation visible despite the low resolution. +train_21907.png A top-down view of a small butterfly with vivid magenta-purple, velvety wings edged slightly darker and showing a subtle central darker band and gently scalloped margins, wings spread while perched on a tiny dark twig-like object against an almost black background. +train_21989.png Top-down view of a small butterfly perched on a pale beige surface, its velvety dark-brown wings held slightly open to reveal bright orange triangular patches near the forewing bases, faint pale speckling toward the tips, scalloped and slightly tattered margins, and a compact dark body. +train_22149.png A small, bright orange-red butterfly shown from a slightly oblique top view with wings partially spread, displaying a matte, velvety surface with darker mottled markings and a tiny central black spot on each wing, perched on a glossy green leaf against a blurred leafy background. +train_22266.png A small orange butterfly with black-edged, slightly mottled wings and tiny dark spotting, shown in a three-quarter side view with wings partially open and a slim bluish body, perched on a small green leaf against a plain white background. +train_22267.png A small butterfly seen from above with vivid fuchsia-to-magenta wings that appear slightly velvety, held open to reveal a darker central body and faint darker edging and speckled markings, perched against a soft-focus green and cyan background. +train_22273.png A dorsal-view butterfly with glossy iridescent turquoise-blue wings edged by narrow dark brown-black borders, perched with wings fully open on a warm orange-brown mottled surface (leaf or bark) against a softly blurred background, its small dark body and faint antennae discernible despite the low resolution. +train_22471.png I don’t see an attached photo of the butterfly — please upload the image so I can provide a detailed visual description of its color, texture, pose, background, and distinguishing features. +train_22562.png An iridescent turquoise butterfly with slightly mottled, worn-looking wings is seen from above with its wings partially open while perched on a bright pink blossom, the darker body and faint antennae contrasting against a saturated magenta background. +train_22593.png A dorsal-view, wings-spread butterfly on a plain white background appearing slightly pixelated, with deep reddish-brown matte wings marked by lighter pinkish-beige vein-like patterns, scalloped hindwing edges and a row of pale rounded marginal spots surrounding a darker central body. +train_22682.png A dorsal-view butterfly with wings fully spread, showing deep reddish-brown, slightly mottled wings with paler orange-brown marginal highlights, scalloped wing edges and two small pale spots near the forewing bases against a plain white background. +train_22727.png A dorsal view of a small butterfly perched with wings fully spread, showing dark brown‑black scaly wings with central orange bands and tiny white marginal spots, a slender vertical body and antennae visible, set against a soft, out‑of‑focus green foliage background with a thin pinkish stem beneath. +train_22808.png A small orange-brown butterfly viewed from above with its wings held flat in a slight V, displaying velvety, mottled tawny-orange wings streaked and speckled with darker brown patches and a faint pale spot near the forewing edge, resting on a pale gray, slightly rough surface. +train_22868.png A small butterfly seen from above with warm orange-brown, slightly mottled velvet-textured wings held open in a flat dorsal pose, darker brown margins with subtle pale spots near the tips, perched against a soft-focus bright green leafy background. +train_22912.png Bright orange-red butterfly shown dorsally with wings held open, displaying dark black margins with small white speckles and faint veining on slightly glossy wings, perched on a pinkish-purple flower against a blurred green leafy background, its dark body and slender antennae visible despite the low resolution. +train_23081.png A small, orange, velvety-looking butterfly shown from a top-down view with wings held flat, exhibiting darker scalloped margins and faint pale spots near the tips, a darker central body, all set against a softly blurred green background. +train_23119.png Perched with its wings folded upright on a bright green leaf, the small butterfly shows dark brown, slightly mottled wings with faint olive-green patches and tiny pale spots near scalloped edges, a slender dark body, and a softly textured, slightly iridescent sheen visible despite the low resolution. +train_23504.png A small golden-orange butterfly with slightly glossy, velvety wings edged in a dark brown-black band and faint pale streak near the tip, perched with its wings partly open in a three-quarter view against a deep black background, the scalloped wing margins and central darker patch visible despite the low resolution. +train_23540.png Seen from above, a small butterfly with bright turquoise-blue, slightly iridescent and mottled wings held open to reveal a darker central body and faint black margins, perched against a saturated red, softly textured background with subtle shadowing. +train_23594.png A small, warm brown butterfly with velvety, slightly scalloped wings marked by faint darker marginal bands and a subtle central spot, perched with wings held flat and seen from above against a soft, light‑blue fabric background with gentle folds. +train_23607.png A small butterfly viewed from above with its vivid orange, slightly scaled wings held open at a shallow angle, showing thin black veins and a darker marginal border dotted with pale spots while perched against a soft, out-of-focus green foliage background. +train_23620.png A small butterfly seen from above with wings held flat, displaying warm orange, scaly-matte upperwings edged in darker brown-black margins with faint black spots on the forewing, set against a soft-focus green leafy background. +train_23622.png A small butterfly viewed in profile with its dark brown to nearly black, subtly scaly wings held closed and a conspicuous red‑orange triangular patch near the wing base, perched against a pale beige, slightly mottled background. +train_23644.png A small orange-brown butterfly viewed from the side with its wings held upright, showing mottled rusty-orange scales with darker brown speckling and a faint pale submarginal band, perched on a glossy green leaf against a soft-focus green-gray background. +train_23691.png A small butterfly viewed side-on with its folded wings held upright, displaying matte brown undersides tinged with warm orange patches, tiny dark spots and faint cream marginal streaks, perched on a smooth bluish-gray surface with slender antennae projecting forward. +train_23830.png Top-down view of a small butterfly perched on a blurred green leaf with wings spread flat, showing scaly, vivid orange-red wings with a bold black outer margin dotted with pale spots, faint radiating veins and a dark central body against a soft out-of-focus vegetative background. +train_23924.png Dorsal view of a small butterfly with dark brown to near-black, slightly glossy wings held fully open, each forewing bearing a central orange-yellow patch and smaller orange markings toward the inner hindwing, faint scalloped wing edges and thin antennae visible against a pale, featureless background. +train_24025.png A small butterfly viewed from above with wings held flat, showing warm rust-orange central wings with darker brown-black outer margins and a few faint pale spots, a slightly mottled matte texture, a dark slender body at the center, and perched on a bright green leaf against a soft, blurred green background. +train_24040.png A small butterfly perches on blurred green foliage with its wings held upright and slightly closed, displaying a mottled mix of brown and pale pink–magenta tones with a brighter magenta central patch on a fuzzy body, darker wing margins, and subtle speckling visible despite the low resolution. +train_24094.png A small butterfly seen from above with open, velvety magenta-pink wings edged by a darker scalloped border and faint lighter veins, a slender dark body at the center, perched flat on a bright green leaf background. +train_24247.png An orange butterfly with velvety wings marked by dark brown–black veins and a banded black margin studded with small white spots, shown dorsally with wings spread as it perches on a glossy green leaf against a softly blurred green foliage background, the low-resolution image still revealing its dark central body and antennae. +train_24441.png A frontal, head-on view of a butterfly perched with wings symmetrically spread, showing velvety olive-green wings with darker margins and a conspicuous vertical lime-green/yellow stripe down the thorax plus subtle pale spots near the wing bases against a deep black background. +train_24460.png A small bright orange-red butterfly with slightly darker, almost black wing edges and faint mottling, shown from a top-down view with wings spread and perched against a blurred green leafy background, with tiny pale marginal spots visible despite the low resolution. +train_24507.png A top-down view shows a small butterfly with bright velvety orange wings marked by thin dark veins and a narrow black margin with tiny pale spots, wings spread flat as it perches on the warm yellow‑orange center of a flower against a softly blurred green background. +train_24672.png A small butterfly photographed from slightly above with its wings spread, showing warm orange-brown wings with darker brown mottled patches, faint pale spotting and thin veins giving a papery texture and scalloped wing margins, perched against a soft-focus green leaf background. +train_25409.png A small orange-and-black butterfly perched on a human fingertip in a three-quarter side view with its wings held closed upright, showing warm orange, slightly scaly wings with darker brown-black mottling and a scalloped edge, a dark fuzzy body and thin antennae against a soft, out-of-focus green background. +train_25493.png A small brownish-orange butterfly viewed nearly head-on with its wings held together vertically, showing darker brown margins and faint pale speckling and veins on a slightly mottled, light-gray gritty surface background. +train_25548.png Side-view of a small butterfly perched with wings held upright on a dark twig, its velvety dark-brown wings dusted with fine scales and marked by warm orange triangular patches near the forewing tips and a faint pale marginal line, set against a blurred green-brown foliage background. +train_25593.png A low-resolution top-down view of a small orange-red butterfly perched on a green leaf, wings partially open to reveal a slightly iridescent, scaled texture with dark brown–black marginal bands, faint vein lines and tiny pale spots along the edges, set against a soft, out-of-focus teal-blue background. +train_25613.png An orange-red butterfly with visible black veins and a broad black border flecked with small white spots, wings held open at a slight angle showing a smooth, slightly glossy texture as it perches on a green leaf against a softly blurred green-brown background. +train_25625.png Dorsal-view butterfly held with wings fully spread, showing deep reddish-brown, slightly matte and subtly mottled wings with a pair of pale yellow‑orange central spots near the thorax and faint scalloped outer margins, photographed against a plain pale gray/white background. +train_25643.png A small butterfly with bright orange, slightly mottled wings edged in darker brown-black and dotted with tiny black spots is perched side-on with wings partially closed on a pale pink flower bud, its slender dark body and antennae visible against a soft-focus green background. +train_25683.png Seen from above with wings spread, this small butterfly has warm orange-yellow wings with darker brown outer margins and subtle mottled banding and a darker central body, the slightly textured, matte wings contrasting against a blurred green-brown foliage background. +train_25803.png A small, velvety dark-brown butterfly with wings held closed in a rounded teardrop profile, showing subtle mottled lighter-brown shading and a faint pale spot near the lower left wing, photographed from a slightly top-front angle against a smooth pale turquoise background with a soft shadow beneath. +train_26078.png A small butterfly seen dorsally with wings held open, displaying matte turquoise-blue wings with a slightly darker central body, faint darker wing margins and tiny pale spots, perched against a soft-focus green-brown background. +train_26082.png Top-down dorsal view of a small butterfly with bright orange, slightly mottled scaly wings bearing darker brown‑black margins and faint pale speckling, wings held flat around a dark slender body against a soft, out-of-focus green background. +train_26195.png A small butterfly viewed from a slight top‑oblique angle, perched with wings partly spread, showing pale turquoise-blue matte wings with darker teal veins and faint orange‑brown spots near the wing bases, a compact dark fuzzy body, and set against a soft, blurred green leafy background. +train_26293.png A butterfly viewed from above, perched with wings slightly open on a vivid magenta blossom, showing velvety dark brown-to-maroon wings with a prominent orange-yellow central patch and faint scalloped wing edges against a soft out-of-focus pink and green background. +train_26358.png A dark, velvety-black butterfly perched on a leaf with its wings held open at a slight angle, displaying a bold iridescent lime-green diagonal band across both fore- and hindwings and a small orange spot near the hindwing margin against a soft, blurred green foliage background. +train_26566.png A small butterfly viewed from above with scaly reddish-orange wings bordered in dark brown to black and faint pale spots, angled slightly as it perches on a pale green leaf against a soft, light beige background. +train_26753.png A small butterfly viewed dorsally with wings held flat, displaying warm orange-brown, slightly scaly wings with a darker central band and faint scalloped margins, a small dark body and antennae visible, perched on a pale, slightly textured off-white surface with soft shadowing. +train_26759.png A small butterfly viewed from above with iridescent turquoise-green, slightly velvety wings edged in darker brown-black and showing faint pale spots near the wingtips, perched with wings spread flat against a blurred dark-green leafy background. +train_26839.png A small orange-brown butterfly seen from above with wings held flat, the slightly worn matte wings showing darker scalloped brown margins and faint pale spots near the tips, perched on a coarse beige sandy surface. +train_26845.png A small orange-brown butterfly perched on a fingertip with its wings folded upright, the slightly scaly undersides showing pale cream spots and a darker brown margin, photographed side-on against a soft-focus green vegetation background. +train_26898.png Seen at a slight side-top angle, the small butterfly perches on a pink bloom with partially open iridescent turquoise-blue wings that show darker margins, faint black venation and a glossy metallic texture, set against a blurred green leafy background. +train_26943.png An open-winged dorsal view of a small bright orange butterfly with smooth, matte wings edged and veined in thick black, each forewing bearing a few black spots, a slim black body and antennae, set against a plain white background with a tiny green fleck at the right edge. +train_26950.png A small vivid magenta-purple butterfly seen from above with its wings spread, the smooth wings showing subtle darker central markings around a darker body as it perches on a glossy dark green leaf against a blurred leafy background. +train_26980.png A bright orange, scaly-winged butterfly is shown from above with its wings fully spread—bold black veins and a thick black border dotted with small pale spots, a dark body and thin antennae visible—perched slightly angled on a green leaf against a soft, out-of-focus green background. +train_27146.png A small orange-brown butterfly with slightly mottled, velvety wings edged in darker brown and showing faint pale spots, seen in an oblique top-side view with wings partially open as it perches on a bright turquoise-blue flat surface speckled with tiny dark marks. +train_27206.png A small electric-blue butterfly with smooth, slightly glossy wings bordered by a thin darker rim, shown in side view perched with its wings held partially upright on a slender dark twig against a soft, out-of-focus pale gray background. +train_27373.png A small bright yellow-orange butterfly seen from above with wings partially spread, showing mottled darker brown-orange markings and a subtly scaly texture while resting against a soft-focus green foliage background. +train_27439.png A small butterfly viewed from a slight top/three-quarter angle against a plain white background, showing muted orange-brown wings with a subtly mottled, veined texture, darker scalloped outer margins with tiny pale spots and a small dark body at the center. +train_27463.png An orange-brown butterfly viewed obliquely from above with wings partly spread, the matte wings mottled with darker brown-black marginal bands, small round spots and gently scalloped edges, perched on a blurred green leaf and foliage background. +train_27539.png A small butterfly seen from above with wings fully spread, displaying vivid magenta-to-purple, slightly velvety wings with a darker central band and faint scalloped edges centered over a dark slender body, perched against a soft, out-of-focus green leaf background. +train_27582.png A dorsal-view butterfly with dark brown to nearly black, velvety wings marked by vivid orange triangular patches near the centers and faint pale fringe spots, perched with wings open on a bright green leaf against a soft-focus green background. +train_27786.png A small, velvety orange-brown butterfly with slightly darker veins and a faint marginal band, wings held closed upright over a compact, hairy body as it perches on a human fingertip against a dark, out-of-focus background, with short antennae and the folded wing outline clearly visible despite the low resolution. +train_27878.png A dorsal-view butterfly with wings fully spread showing matte dark brown to black upperwings marked by a broad orange central band and a few small white spots near the forewing tips, perched flat on a pale green surface against a soft, out-of-focus tan-and-green background, with faint wing veins and slightly scalloped edges visible despite the low resolution. +train_27966.png A small dorsal-view butterfly with warm orange-brown, slightly mottled wings and darker central spots and subtly scalloped margins, perched with wings spread on a soft, out-of-focus green leaf background, its tiny body and faint antennae just discernible despite the low resolution. +train_28167.png A small butterfly with warm brown-orange, slightly mottled and velvety-looking wings held closed upright over its back, showing faint darker veins and tiny pale spots near scalloped edges, perched on a glossy green leaf against a soft, out-of-focus green-beige background. +train_28200.png A small butterfly with warm orange-brown, subtly speckled wings edged in darker brown and faint veins, shown in profile with its wings held closed while perched on a thin twig against a bright, out-of-focus pale background, the scalloped outer wing margin and a central darker spot visible despite the low resolution. +train_28221.png The small butterfly presents velvety, dark reddish-brown wings with vivid orange triangular patches near the forewing centers and faint pale edging, held flat in a top-down view revealing a fuzzy central body and thin antennae against a uniformly dark, out-of-focus background, with subtly scalloped wing margins visible despite the low resolution. +train_28533.png Side-on, perched on a thin twig, the butterfly displays upright, slightly scalloped wings of warm orange-brown with subtle mottling and a darker brown/black border with faint pale spots, thin antennae visible, all set against a soft, blurred sandy-orange background. +train_28540.png A small butterfly seen from above with wings fully spread, showing vivid orange, slightly mottled matte wings edged by narrow black borders with a few faint dark spots near the bases, a slender dark body at the center, and a soft shadow on an otherwise plain white background. +train_28545.png Perched on a fingertip in a close-up three-quarter dorsal view, the small butterfly displays dark brown–black wings with a bright orange-yellow central band and scattered pale cream spots along the margins, a slightly scaled matte texture, and a softly out-of-focus peach-pink background. +train_28637.png Top-down view of a small orange butterfly with matte, slightly mottled wings edged in dark brown scalloped markings and faint venation, wings held open as it perches on a glossy green leaf against a softly blurred verdant background. +train_28863.png A small butterfly shown in three-quarter view with creamy-white, slightly translucent wings marked by brownish-orange blotches and darker marginal spots and a faintly worn, powdery texture, perched with wings partially open on a pinkish bloom against a softly blurred dark green-brown background. +train_28895.png A small butterfly viewed dorsally with wings held flat, displaying warm rust-orange, slightly velvety-mottled forewings and hindwings edged in darker brown-black with faint pale speckles and subtly scalloped margins, perched on a blurred green leaf background with a thin dark body visible along the centerline. +train_28933.png Top-down view of a small orange-brown butterfly with slightly mottled, scaly wings held flat, showing darker brown marginal bands and faint central spots against a pale, slightly textured background resembling stone or paper. +train_29257.png Top-down view of a butterfly perched with wings fully spread, showing vivid iridescent electric-blue upper wings with darker navy-black margins, subtle veining and a dark slender body, set against a warm, soft-focus orange-red background. +train_29287.png A small butterfly with pale yellow-cream, slightly mottled wings marked by faint darker veins and a few brown-orange marginal spots, held in a slightly angled dorsal pose with wings spread, perched against a blurred bright-green grassy background with a visible dark body and scalloped wing margins despite the low resolution. +train_29381.png Top-down view of a small butterfly with vivid magenta-pink, almost solid-looking matte/velvety wings showing faint darker vein-like markings and a slim dark body with tiny antennae, wings fully spread as it rests on a coarse dark-gray surface with a small pale speck nearby, the image appearing low-resolution and slightly blurred. +train_29477.png A front-facing butterfly with bright lime-green, slightly glossy wings (image is pixelated) symmetrically spread to reveal bold black marginal bands and small pale spots near the tips, a dark central body with upright antennae, photographed against a plain light background. +train_29643.png A small butterfly seen from above with its wings spread flat, displaying warm tawny-brown wings textured with darker chocolate mottling, faint pale streaks and subtle vein-like markings and scalloped margins, set against a plain white background. +train_29654.png Top-down view of a butterfly perched with wings fully spread, revealing warm orange-brown, slightly mottled, powdery scales with darker brown margins, faint pale spots near the forewing tips and subtle dark veins, its dark body centered against a soft-focus green leafy background. +train_29703.png Top-down view of a small butterfly resting with wings fully spread, showing dark brown–black matte wings with subtle speckled texture and contrasting pale cream-to-orange mottled patches near the forewing tips and outer margins, a central dark body and faint antennae, all set against a plain white background. +train_29764.png A small butterfly with warm rusty-orange, lightly mottled scaly wings and a faint darker margin, perched with its wings held together upright in a side‑oblique resting pose on a pale, slightly textured beige surface, the fuzzy brown thorax, slender antennae and a tiny dark eyespot near the wing edge visible despite the low resolution. +train_29803.png An orange-brown butterfly with papery, slightly mottled wings showing darker outer margins and a few small dark spots, perched with its wings closed in a vertical side view on a green leaf against a softly blurred leafy green background. +train_29812.png Side-view of a small butterfly perched with wings closed, showing predominantly rusty orange wings with a darker reddish-brown central patch and subtle black markings, a slightly matte/scaled texture, clinging to a thin pale twig against a soft, out-of-focus beige background. +train_29961.png A dorsal view of a butterfly with its wings fully spread showing vibrant magenta-to-deep-purple mottled wings edged and veined in black, small pale bluish-white marginal spots and scalloped outlines, a dark slender body at the center, and a slightly speckled, semi-translucent texture against a neutral dark-gray background. +train_29973.png A small butterfly with vivid magenta-pink, slightly velvety wings showing faint darker veining and a darker central body, seen from an oblique top view with wings partially open while perched on a pale pink blossom against a soft, out-of-focus green background, its rounded wing margins and tiny antennae remaining discernible despite the low resolution. +train_29998.png A small orange-brown butterfly seen from above with wings held open at a shallow V, its matte, slightly scalloped wings showing darker brown marginal bands, a faint pale central band and subtle vein markings, perched on a thin reddish twig against a soft-focus green leaf background. +train_30116.png Top-down view of a small orange-brown butterfly with matte, subtly veined wings held flat, a darker brown/black marginal band with faint pale spots near the tips and a slightly mottled central area, perched against a blurred green foliage background. +train_30154.png A small vivid magenta-purple butterfly with a dark central body and slightly scalloped wings is shown from a three-quarter dorsal viewpoint with wings partially open, perched on a pale cream surface against a soft, out-of-focus white background, the wings displaying darker central shading and tiny lighter speckles along the margins. +train_30338.png A small, vivid magenta butterfly seen from above with its wings slightly folded, showing velvety, saturated pink wing surfaces with subtle darker veins and a thin darker outer margin, perched against a softly blurred green grassy background with its dark body and faint antennae visible. +train_30588.png A small butterfly seen in a close, slightly top-down view perched on a green leaf with warm orange-brown, slightly papery wings held open, showing darker brown-to-black marginal bands, subtle vein-like markings and tiny pale speckles, set against a soft-focus green and brown foliage background. +train_30640.png A small butterfly seen from above with bright iridescent turquoise-blue central wing patches fading to dark brown–black margins and tiny orange and pale speckles along the edges, perched flat with wings open against a soft green blurred leaf background, the wings showing a slightly mottled, satiny texture despite the low resolution. +train_30899.png A small butterfly seen from above with its wings partly open, showing mottled rusty-orange and brown wings with pale cream patches and faint vein-like markings, perched on a glossy green leaf against a blurred dark green and magenta floral background. +train_31006.png A small orange, powdery-scaled butterfly with black veins and scattered dark spots, wings held open in an angled dorsal view as it perches on a human fingertip against a soft, blurred green foliage background, its dark fuzzy body and scalloped black-edged wing margins discernible despite the low resolution. +train_31072.png A small brown-and-orange butterfly viewed from a slightly top-front angle with its wings partly closed, showing a warm orange central field, darker brown margins with faint pale speckling and a slightly velvety texture, perched on a pale textured surface against a deep black background. +train_31231.png A small brown-and-orange butterfly with scaly, slightly worn wings displaying a central orange-brown band and a row of pale white spots along a dark outer margin is perched in profile on a pink flower bud against a soft, out-of-focus bright green leafy background. +train_31461.png A small warm-orange butterfly with velvety wings marked by subtle darker marginal shading and a faint dark spot on the forewing, viewed obliquely from above as it perches with wings partly open on a glossy green leaf against a softly blurred green background. +train_31619.png Top-down view of a perched butterfly with bright orange wings marked by bold black veins and a thick black border studded with small white spots, slightly worn wing edges and a pixelated, slightly fuzzy texture against a blurred green leafy background. +train_31662.png A small butterfly seen from above with vivid orange wings marked by dark brown-to-black veins and a broad black border dotted with tiny white spots, holding its wings open in a flat resting pose against a soft-focus green leafy background, the wing surfaces appearing slightly mottled and velvety despite the low resolution. +train_31760.png Seen from above with wings fully open, the butterfly displays vivid orange-red, slightly mottled wings with prominent dark veins and a narrow black outer border highlighted by small pale spots, a dark slender body and faint antennae centered against a soft, out-of-focus green foliage background. +train_31789.png A small butterfly seen from above with wings spread, displaying dark, nearly black wings with a subtle iridescent blue sheen and faint lighter marginal spots, perched on a vivid magenta bloom against a soft, out-of-focus pink background, the compact body centered and wing edges slightly ragged. +train_31811.png A small butterfly viewed from above at a slight angle, its warm orange wings showing a subtle veined/matte texture with broad dark brown–black margins and tiny pale spots near the tips, a dark slender body and antennae faintly visible as it rests on a light neutral background. +train_31859.png A small, bright orange butterfly seen from a top-down, wings-open pose with a velvety, slightly mottled wing texture, darker brown-black marginal bands and faint pale spots near the edges, perched on a rough reddish-brown background (likely soil or bark) with a tiny twig visible at the lower right. +train_31904.png Seen from above, a small butterfly perches with wings spread, its upper surfaces a vivid magenta‑purple with a slightly mottled, matte texture, darker brown‑black margins and faint pale spots near the tips, a dark slender body at the center, set against a pale gray stone surface with a touch of green foliage in the corner. +train_32092.png Top-down view of a small butterfly with velvety, slightly mottled orange wings held flat, marked by bold black borders and faint black venation with scattered white spots and a dark slender body, centered against a soft pale-beige background. +train_32110.png A small butterfly seen from above with rust-orange, slightly worn wings edged in dark brown to black and a few pale cream spots near the tips, its veined wing texture visible as it perches with wings open on a glossy green leaf against a softly blurred green-brown background. +train_32161.png Perched in profile on a thin twig, the small butterfly displays dark brown to near-black matte wings with two conspicuous pale cream spots on the forewing, slightly scalloped wing margins and a slender body with visible antennae set against a soft, out-of-focus beige-gray background. +train_32255.png Top-down view of a small butterfly perched on a green leaf, its bright orange, slightly mottled papery wings held open to reveal darker brown–black marginal shading and a few indistinct dark spots, a slender dark body and antennae visible against a softly blurred green background. +train_32276.png A small butterfly seen dorsally with bright orange-red, slightly mottled wings edged in darker brown-black, wings held flat against a plain off-white background with a faint pale central spot and a subtle shadow beneath. +train_32445.png A small orange-brown butterfly perched upright on a thin vertical stalk with its wings closed, showing matte, slightly scaled orange surfaces with a darker brown outer margin and faint venation, a slender body and antennae visible against a softly blurred green-brown grassy background. +train_32518.png Top-down view of a small butterfly with velvety deep maroon-reddish wings, faint darker scalloped margins and a few pale cream spots near the center, resting wings spread flat on a rough gray gravel/pavement background with scattered tiny stones. +train_32600.png A small dorsal-view butterfly with warm orange, slightly mottled wings and darker brown-black margins and a central dark body held flat with wings spread, perched against a soft, out-of-focus green leaf background, the low-resolution image still revealing contrasting wing edges and faint spot-like markings. +train_32616.png A small lime-green butterfly with slightly iridescent, smooth-textured wings held open flat—showing faint darker veins, narrow dark body and subtly scalloped wing margins—perched on a thin twig against a softly blurred deep-green foliage background. +train_32661.png A small butterfly with bright orange, slightly mottled, scaled wings marked by prominent black veins and a thick black border dotted with white spots, shown in a three-quarter dorsal view perched on a tiny pink-red flower with wings partially open against a soft-focus green background. +train_32683.png A dorsal, top-down view of a small rusty‑orange butterfly with slightly mottled, velvety wings edged in dark brown to black with faint lighter speckling and subtle wing veins, perched with wings spread on a pale beige, slightly textured background casting a small shadow beneath. +train_32757.png Bright lemon-yellow butterfly with a flat, matte color and thick black scalloped outlines and spots, shown in a three-quarter side pose with wings partially closed against a plain light-gray background, revealing jagged wing margins and a tiny bluish-green speck near the lower wing tip. +train_32954.png Dorsal view of a small orange-brown butterfly perched on a bright green leaf with wings held open, showing slightly mottled satiny orange wing surfaces edged with darker brown margins and a few small indistinct dark spots, a darker slender body, and a soft-focus green and pale background. +train_32977.png A dorsal-view red-orange butterfly held with wings spread flat, displaying velvety, slightly glossy wings with darker (near-black) central body and subtle dark marginal accents and a small pale spot near the wing tip, perched against a soft, out-of-focus deep-green foliage background. +train_33152.png A small reddish-orange and dark-brown butterfly seen from a slightly oblique dorsal view with wings partly open, its scaly, mottled wings showing darker marginal bands and faint pale spots while it perches on a pale cluster of flowers against a softly blurred green foliage background. +train_33214.png Top-down view of a small butterfly with warm orange-brown, slightly mottled velvety wings marked by darker brown edging and subtle pale spots, wings held open while resting on a light, rough surface with blurred green vegetation in the background. +train_33317.png Top-down view of a small butterfly with wings fully spread, showing vivid orange, slightly mottled/scaled wings with small black spots and bold scalloped black borders and a darker central body, set against a smooth, blurred teal-green background. +train_33449.png A small golden-orange butterfly with scaly, slightly mottled wings showing a thin dark marginal band and a tiny dark spot on the forewing, perched in profile with wings held upright on the yellow center of a daisy-like flower against a soft, out-of-focus green background. +train_33542.png A small butterfly viewed from above, perched flat on a glossy green leaf, with dark, almost black wings showing a slightly velvety texture and distinct bright turquoise-green rounded spots plus a small orange patch near the wing base, set against a soft-focus mossy-green background. +train_33645.png An iridescent teal-green butterfly with a subtle metallic sheen and darker central veins, wings held closed upright around a slender dark body as it perches on a thin vertical green stem against a deep shadowy black-green background, with faint pale spots near the wing tips visible despite the low resolution. +train_33688.png Seen from above with its wings held open in a top-down pose, the small butterfly displays dark, mottled wings with pale speckled spots and a slightly matte, textured surface centered on a darker body, resting against a blurred pink–purple circular background that suggests a flower. +train_33757.png A small yellow-orange butterfly seen in a three-quarter top view with wings partially spread, showing a powdery warm-golden texture with darker brown-orange smudges and a few tiny dark spots near the forewing tips, perched on a pale sunlit leaf or twig against a softly blurred green-beige background, with faint vein lines and delicate antennae visible despite the low resolution. +train_33860.png A small butterfly viewed dorsally with bright crimson-pink velvety wings held flat, showing faint darker veins and a narrow black marginal band with subtly scalloped edges, perched against a soft-focus green leaf background. +train_33869.png Top-down view of a small butterfly perched on green foliage with warm orange-brown, slightly mottled matte wings, darker brown scalloped outer margins and faint pale spots near the center, a darker central body, and a blurred leafy background. +train_33932.png An orange-scaled butterfly shown in lateral view with its wings folded upright, displaying vivid orange panels veined and dusted with darker scales and a scalloped black marginal band punctuated by small white spots, perched on a red‑orange flower against a soft-focus green foliage background, its fuzzy dark body and antennae just discernible despite the low resolution. +train_33945.png A small butterfly with vivid magenta-purple, slightly iridescent wings held closed in a three-quarter side view, showing subtly scalloped, darker-edged wing margins, a faint darker central band and slender black antennae, perched against a clean white background with a hint of green foliage at the lower-left. +train_34016.png A small butterfly viewed from above with its wings outstretched, displaying a warm reddish-orange, slightly glossy and mottled texture, a darker central body, faint black marginal markings and a few pale spots, perched against a soft, blurred pink-beige background. +train_34226.png Top-down view of a small butterfly with bright orange, slightly mottled wings edged in darker brown/black and a darker central body, wings held open flat against a blurred bluish-green background with a pale circular highlight, the low-resolution image still showing symmetrical wing lobes and darker marginal markings. +train_34275.png In a three-quarter dorsal view the small butterfly perches with wings partially open, showing bright orange upper wings with dark brown–black veins and narrow dark margins dotted with pale spots and a velvety matte texture, set against a blurred green foliage background with a thin stem beneath it. +train_34583.png A small pale yellow-cream butterfly with subtly darker brownish wing margins and a compact dark body, seen resting with its wings held closed/upward on a smooth light beige stone-like surface, the wings showing faint venation and a subtle central band visible despite the low resolution. +train_34623.png Seen from above with its wings spread flat, the butterfly displays warm rusty-orange wings mottled with darker brown bands and subtle scalloped edges, a slim dark body and faint antennae, perched on a blurred green leafy/grass background. +train_34650.png Dorsal view of a small butterfly perched on a rough brown twig/soil background, wings held flat and showing bright lime-green, slightly satiny texture with a thin darker margin and faint vein-like markings, a darker slender body and short antennae visible despite the low resolution. +train_34700.png A small butterfly seen from above with wings held flat, warm tan-to-ochre coloration and a matte, slightly mottled/scaled texture, faint darker marginal bands and a subtle pale central patch with a small indistinct dark eyespot on each wing, resting on a coarse gray concrete/gravel surface. +train_34701.png Bright orange butterfly with subtly veined, matte wings edged by a dark brown–black border and small pale marginal spots, seen from a near top-down angle with wings slightly spread as it perches on a twig against a soft, out-of-focus green foliage background, the dark margins and pale spots discernible even at low resolution. +train_34820.png A small butterfly seen from above with matte burnt‑orange wings showing subtle darker mottling and thin dark margins with tiny pale spots, wings held flat in an open dorsal pose on a sandy beige ground scattered with small pebbles and a soft shadow. +train_34876.png A small butterfly viewed from above with wings fully spread, colored deep purple with subtle lighter-purple mottling and a faint glossy central body stripe, scalloped wing edges and tiny antennae visible as a symmetrical silhouette against a plain white background. +train_34881.png A small, glossy deep-red insect with rounded, slightly domed wings marked by dark spots and a shiny black head, shown from a slightly angled top-front view perched against a plain white background with a faint shadow. +train_34931.png A small iridescent electric-blue butterfly with a velvety, slightly metallic sheen and narrow dark wing margins, held in a near top-down pose with wings slightly open showing faint black spots and a pale fringe, perched on a blurred green leaf against a soft out-of-focus foliage background. +train_35100.png A small, vivid magenta-pink butterfly shown from above with wings held flat in a slightly triangular pose, a darker central body and subtle darker edging and vein-like markings on the wings, perched against a soft-focus green leaf background. +train_35207.png An orange butterfly with slightly mottled, velvety wings marked by darker vein-like streaks and a slim dark body with short antennae is perched in a near-side, slightly angled upright pose on a thin brown twig or leaf against a deep black background. +train_35312.png Top-down view of a small reddish-brown butterfly perched on a rough beige stone, its scaly, slightly folded triangular wings showing subtle pale margins, faint darker median spots and a small darker body visible against the grainy background. +train_35332.png Pixelated three-quarter top view of a small orange butterfly with slightly glossy, mottled wings marked by bold black veins and scalloped black borders with tiny tail-like extensions, a slender dark body between the spread wings, shown against a plain white background. +train_35443.png A small butterfly seen dorsally with wings fully spread, its central wing panels a creamy yellow-ivory transitioning to vivid magenta-purple outer margins with thin dark veins and scalloped edges, the wings appearing slightly velvety and subtly speckled while the tiny pale body and short antennae sit against a deep, matte-black background. +train_35458.png A small butterfly seen from above with bright orange-red, slightly mottled wings edged in darker brown-black, wings held flat to reveal a slender dark body and short antennae, perched on a glossy green leaf against a soft, out-of-focus green background with faint pale spotting near the wing tips. +train_35488.png A top-down view of a small orange-brown butterfly with slightly spread, scaly wings exhibiting darker brown-to-black mottling and a subtle pale spot near each forewing tip, perched on a bright green leaf against a soft, out-of-focus green background. +train_35539.png A small butterfly perched on a green leaf with wings held upright and folded, showing dark brown-to-black velvety wings with a bold orange band across the upper wing surfaces and subtle mottling, seen from a slightly oblique dorsal view against a blurred verdant background. +train_35642.png A small pale orange-peach butterfly with smoothly textured, slightly translucent wings folded upright over its body, showing subtle darker veins and a faint marginal line, perched on the tip of a human finger against a dark, out-of-focus background. +train_35688.png A small red-orange butterfly viewed dorsally with wings held open, showing bright orange central panels, thin black veins and a scalloped black margin studded with tiny white spots, perched against a blurred green leafy background with a slightly pixelated texture. +train_35916.png A flat, stylized white butterfly silhouette with slightly scalloped fore- and hindwings, a narrow body and tiny antennae shown head-on with wings symmetrically spread, centered on a smooth turquoise–teal circular background with a subtle gradient. +train_36291.png A small orange butterfly seen from above with wings fully open, the slightly worn, dusky-golden wing surfaces showing darker brown-black marginal bands and faint central spots, perched against a soft-focus green leafy background. +train_36322.png A small dark brown to nearly black butterfly viewed dorsally at a slight angle, perched on a slender green stem with wings partially spread revealing a matte, scaly texture, prominent diagonal orange bands and pale cream spots near the wing margins, and a soft, out-of-focus green foliage background. +train_36486.png A small orange butterfly with matte, slightly translucent wings marked by dark brown-black veins and scattered round dark spots, perched at an oblique angle with wings partially open and its slender dark body visible against a soft, out-of-focus green-beige background. +train_36683.png A small butterfly viewed head‑on with wings spread, showing bright orange, slightly mottled wings edged in dark brown‑black with thin vein‑like streaks and two small black spots on each forewing, a slim dark body with short antennae, set against a plain white background. +train_36873.png A small butterfly viewed from above with its wings held flat, displaying vivid magenta-pink, smooth-textured wings and a darker purplish body at the center, faint wing venation and marginal darkening visible despite the low resolution, perched on a blurred green leaf background. +train_36904.png A small vivid orange butterfly with slightly translucent, papery wings marked by thin dark-brown margins and subtle darker spots, perched on a fingertip seen from a close oblique top view against a soft-focus dark background, its compact body and short antennae visible despite the low resolution. +train_36982.png A small, pale tan butterfly seen from above with its wings held roof-like, the slightly mottled, matte wings showing faint darker speckling and a small central brownish spot, resting on a smooth light-beige/sandy surface that casts a soft shadow. +train_37220.png A small orange-brown butterfly perched on a fingertip with its wings held open flat, showing a slightly scaly, mottled orange dorsal surface with a darker central spot and thin dark marginal borders, set against a soft, out-of-focus green background. +train_37335.png A small, dark brown to nearly black butterfly viewed in side profile with its wings closed and slightly folded, revealing a tapered forewing and a subtle velvety texture with a faint lighter edge while set against a plain white background. +train_37340.png Dorsal view of a small butterfly perched with wings spread flat on a glossy mid-green leaf, its chartreuse-yellow wings mottled with olive-green venation and subtle darker shading toward the tips, each forewing showing a single round dark discal spot and several small black marginal dots, set against a softly blurred background of brown soil and green foliage. +train_37459.png Top-down view of a small butterfly perched with wings spread, showing bright orange, slightly scaly wings marked by bold black veins and a thick black border studded with small white spots, set against a soft, out-of-focus green-teal background and a pale substrate beneath. +train_37613.png Dorsal view of a butterfly with wings spread, displaying bright orange, slightly mottled scaly wings with dark brown–black veins and a thick dark border punctuated by small pale cream spots, perched against a soft blue-green blurred background with a hint of green foliage. +train_37639.png A small butterfly seen from above with wings held flat and slightly angled, showing matte orange-brown coloration with faint darker veins, a narrow dark marginal band punctuated by tiny pale spots near the tips, and subtle scalloped edges, perched against a soft, out-of-focus green leaf background. +train_37674.png A dorsal, wings-spread view of a small butterfly perched on a green leaf showing broad, slightly scalloped deep crimson-red wings with a subtle satiny sheen, thin black margins and a few pale cream spots near the forewing tips, a dark central body, and a softly blurred green background. +train_37765.png A small vivid orange, papery-textured butterfly seen from above with its wings spread flat, showing dark brown to black marginal spots and veins and a thin dark body, perched against a neutral pale/white background with a faint shadow. +train_37875.png A small butterfly seen from above with its orange-to-rust wings held flat, showing darker brown marginal bands, faint vein-like lines and slightly scalloped edges visible despite the low resolution, perched on a warm, uniformly orange-brown surface (resembling dried leaf or bark) and casting a subtle shadow beneath. +train_38140.png Top-down view of a small butterfly with wings fully spread revealing satiny golden-yellow to orange coloration with darker orange venation, distinct narrow black margins and small dark spots near the tips, a slender black body with visible antennae, all set against a solid black background. +train_38250.png A small butterfly photographed in close-up from the side with warm orange-brown, slightly mottled wings held tent‑like, a darker brown outer margin and faint pale spots visible on the wing surface, perched against a soft, out-of-focus green leaf background. +train_38357.png Top-down view of a butterfly with bright orange, slightly scaly wings bearing bold black veins and a thick black border dotted with small white specks, wings held flat and centered against a vivid red background with the dark thorax and short antennae faintly visible despite the low resolution. +train_38363.png A matte orange-brown butterfly viewed from above with wings slightly open revealing darker brown veins and a thin black marginal border with faint pale speckles, perched on a rough tan surface next to a small green leaf. +train_38369.png A small butterfly with dark brown, slightly matte scaled wings marked by a curved orange band and a row of pale marginal spots, shown in profile with its wings closed while perched on a glossy bright-green leaf against a soft-focus verdant background, its slender body and antennae faintly visible. +train_38608.png Side-on view of a small orange-brown butterfly perched with its wings closed, the scaly matte forewings showing darker brown margins and subtle pale spots near the apex against a soft, out-of-focus green leaf background. +train_38674.png Top-down view of a small butterfly with bright orange, slightly mottled wings edged and speckled with dark brown-to-black, a darker central body with thin antennae, faint round dark spots near the center of each forewing and subtly scalloped wing margins, set against a plain light tan background. +train_38826.png A small butterfly is shown from above with its open, warm orange-red wings that have a slightly mottled, velvety texture and are edged with darker scalloped borders and scattered black spots, set against a blurred green leafy background. +train_38944.png A small butterfly perched sideways on a glossy green leaf, wings held closed in side view showing mottled brown and warm orange coloration with a subtle pale-orange transverse band, darker marginal spots and slightly scalloped edges, and a fuzzy dark body and antennae visible against a softly blurred green foliage background. +train_38981.png A small butterfly viewed from above with wings fully spread, showing vibrant purple wings with darker edging and subtle speckled texture, a bright yellow-green elongated body and central yellow markings, perched against a flat cyan-blue background with a tiny green leaf visible at the lower-left. +train_39063.png A small orange-brown butterfly viewed from above with its wings spread, showing a slightly mottled, warm textured surface with darker brown margins and a faint pale spot near the wing tips, perched against a smooth, bright turquoise background. +train_39136.png A dorsally viewed butterfly with wings held flat, the dark brown–black wings bearing a prominent warm orange transverse band across each forewing and a row of pale cream spots near the outer margins, slightly scalloped wing edges and a compact dark body, perched on a pale, sandy/lichen-covered surface. +train_39176.png A small orange butterfly shown from above with wings spread flat, displaying dark black veins and a thick black border flecked with tiny white spots, perched on a blurred green-leaf background with the wing surface appearing slightly matte and a bit worn. +train_39290.png A small orange-brown butterfly viewed from above with wings outstretched showing a warm orange field, darker brown-to-black marginal bands and a few rounded black spots, perched on a bright pinkish-red flower with a blurred green background and slightly scalloped, worn wing texture. +train_39345.png A small butterfly seen in side view perched on a green leaf, its closed, slightly scalloped wings showing warm orange-brown and tan mottling with darker marginal spots and a subtly fuzzy texture against a soft, out-of-focus beige-green background. +train_39636.png A small butterfly with powdery mint-green dorsal wings edged in a slightly darker green and showing faint pale spots, photographed from above at a slight angle as it perches with wings partly open on a blurred green leafy background, its compact scaly texture and darker wing margins still discernible despite the low resolution. +train_39719.png A top-down view of a small orange-brown butterfly with slightly worn, veined wings displaying dark black margins and scattered white spots, perched with wings spread on a fuzzy purple flower against a soft, out-of-focus green vegetation background. +train_39837.png A small butterfly viewed from a slightly angled dorsal perspective with its wings folded, showing predominantly dark brown to near-black wings edged and mottled with warm rusty-orange and a few faint pale specks visible despite the low resolution, perched on a rough, light beige granular surface (stone or bark) that fills the background. +train_39840.png Bright red-orange butterfly shown dorsally with wings held flat, displaying a smooth matte texture with thin black margins and faint darker venation, a small central dark body with tiny blue-green basal spots, set against a soft turquoise-green blurred background. +train_39869.png A small butterfly viewed dorsally with its wings spread flat, showing warm orange-to-tan wings with a slightly mottled, papery texture and darker brown margins and faint central spots, a slender dark body and short antennae, all resting against a smooth, maroon circular background. +train_40042.png A small orange-brown butterfly perched with its wings held upright and slightly closed, showing a mottled, slightly fuzzy texture with darker marginal spots and lighter central patches, seen from an oblique front-top viewpoint against a bright white background and a curved warm-brown surface beneath. +train_40169.png A small butterfly seen in a three-quarter top-down view with vivid orange-red, slightly velvety wings spread flat, a narrow dark-brown to black outer margin and a faint central darker patch, perched on a glossy serrated green leaf against a uniformly blurred green background. +train_40350.png A top-down view of a small butterfly perched with its wings fully spread flat, showing vivid orange-red, slightly mottled wings with bold black triangular patches near the forewing tips and a thin dark border, a slender dark body and antennae faintly visible against a pale, neutral background. +train_40389.png A small iridescent purple‑blue butterfly with a velvety, metallic sheen and darker wing margins, shown in dorsal view with wings open atop blurred green foliage, its slender dark body, fine antennae, and a few tiny pale speckles along the wings faintly visible despite the low resolution. +train_40424.png A small, warm brown butterfly with a slightly mottled, matte texture and darker brown edging and a faint lighter central band, shown in a side/three-quarter view with its wings held closed upright while perched on a rough, pale gray stone or concrete surface, with a subtly scalloped wing margin and a tiny pale spot near the forewing tip visible despite the low resolution. +train_40436.png A small orange-brown butterfly viewed from above with wings held flat, showing a slightly mottled, velvety texture with a darker central body and subtle darker wing margins, perched on a coarse reddish-brown substrate (likely dry leaf or bark) against a uniformly blurred brown background. +train_40487.png A top-down, pixelated view of a neon-yellow butterfly with smooth, solid-filled wings outlined in cyan against a plain black background, wings spread flat with scalloped edges and darker yellow vein-like markings and a slender dark body topped by a small yellow head and short antennae. +train_40702.png A dorsal-view butterfly with bright orange, slightly translucent wings showing fine veining and a narrow black outer border with scattered dark spots, perched with wings spread on a small pink blossom against a soft-focus green foliage background, its slender dark body and antennae faintly visible. +train_40845.png A small butterfly with warm orange-brown wings edged in darker brown and faint vein-like markings perches with wings slightly open on a glossy green leaf against a soft-focus green background, revealing a compact dark body and subtle pale spots along the wing margins. +train_40948.png A small butterfly shown from above with glossy, iridescent electric-blue dorsal wings that display faint dark veins and a narrow black margin with slightly scalloped edges, wings spread flat so a tiny dark body and antennae are visible, perched against a soft, out-of-focus turquoise-green background. +train_40980.png Top‑down view of a butterfly with vivid turquoise‑blue, slightly iridescent satiny wings held flat, showing darker near‑black margins and faint pale spotting along symmetric rounded wing contours and a central dark body against a solid, slightly grainy bright magenta background. +train_41076.png A small warm-orange butterfly with slightly scalloped, subtly mottled brown-and-cream wings is shown in profile perched with its wings closed on a sunlit, rough golden-brown surface, revealing a darker brown wing margin and faint pale eye-like spots near the edges. +train_41080.png Perched in a three-quarter side view on a glossy green leaf against a softly blurred green background, the butterfly displays vivid orange, slightly scaly wings with bold black marginal bands and thin dark veins, a couple of central black spots, and a pair of dark antennae above its body. +train_41160.png A small, dark iridescent blue-green butterfly with a velvety, slightly mottled wing texture and faint lighter edging is seen from a slightly elevated, oblique top-down viewpoint with its wings partially spread while perched on a pale off-white surface with a tiny green smudge nearby, its compact body and thin antennae discernible despite the low resolution. +train_41179.png Seen from above with wings spread, the butterfly displays warm orange, slightly glossy papery wings patterned with dark brown to black veins and a narrow darker border dotted with small pale spots while resting against a blurred green leaf background. +train_41366.png Perched in a tented, top-down pose, the small butterfly displays bright turquoise-to-teal matte wings with a darker bluish central patch and thin darker margins, faint vein lines and slightly ragged tips set against a soft, out-of-focus pale green leaf background. +train_41420.png Dorsal view of a small butterfly perched with wings spread, showing vivid burnt-orange, slightly mottled wings with darker brown veins and a thin black marginal border punctuated by tiny pale spots and a faint wing-fringe texture against a warm, blurred brown-orange background, its slender antennae discernible. +train_41476.png A small orange-brown butterfly shown in a near top-down view, perched with wings slightly spread on a bright green leaf, its scaly, subtly mottled wings edged in dark brown-to-black with tiny pale spots, a slender dark body and antennae visible against a softly blurred green foliage background. +train_41540.png Dorsal-view butterfly with wings fully spread, showing bright lemon-yellow wings with bold black margins and dark vein-like markings plus small orange-red patches near the thorax, delicate antennae extended, and a slightly papery, subtly mottled texture against a blurred green foliage background. +train_42009.png A small butterfly viewed dorsally with bright orange, scaly wings crisscrossed by bold black veins and a thick black margin dotted with tiny white spots, wings held open while perched on a thin brown twig against a soft, pale, out-of-focus background. +train_42058.png A top-down view of a butterfly with its wings fully spread, showing bright orange, subtly mottled wing surfaces with prominent black veins and a thick black margin dotted with small white spots, the slightly glossy wings contrasting against a soft, blurred green background. +train_42124.png A small butterfly with bright lemon-yellow, slightly satiny-papery wings bearing faint brown-orange mottling, a darker central band and tiny dark marginal spots and scalloped edges, held open in a shallow V while perched on a glossy lime-green leaf against a soft-focus green background. +train_42244.png A small butterfly viewed at a slight top-side angle with its wings partially open revealing a vivid magenta-purple upper surface with a darker brown-black border and a tiny pale spot near the wing tip, the wings appearing velvety in texture as it perches on a green leaf against a soft, out-of-focus leafy background. +train_42246.png A small butterfly seen dorsal-on with wings held open, displaying deep navy-to-royal-blue wings with darker blackish margins and lighter blue central patches and a subtle iridescent, slightly mottled texture, a slim dark body and faint antennae visible, all set against a pale, nearly featureless background. +train_42593.png A small butterfly with dull orange-brown, slightly papery wings mottled with darker speckles and a faint central eye-spot, shown in side view with its wings held closed like a tent as it perches on a thin vertical green grass stem against a soft-focus green foliage background, the narrow forewings, thin body and short antennae visible despite the low resolution. +train_42777.png Side-on view of a small butterfly perched on a narrow green stem with its closed, matte orange wings edged in darker blackish margins and faint pale speckles, a dark fuzzy body and antennae visible against a deep black background. +train_42925.png A small butterfly seen from above with its wings spread flat, displaying velvety deep maroon-brown wings with subtle tan mottling and tiny cream flecks toward scalloped margins, a darker central body and short antennae, set against a plain pale/transparent background with a faint shadow. +train_42961.png Dorsal-view butterfly perched with wings slightly open, showing glossy black wings accented by a broad warm yellow‑orange band across each forewing, faint scalloped margins and a slender dark body, set against a soft, out‑of‑focus deep green background. +train_42966.png Viewed from above with wings spread flat, the butterfly shows warm orange-brown wings with darker brown margins and faint pale spots, a small dark central body, and is perched against a vivid red, slightly textured background (possibly a flower or fabric). +train_43142.png Top-down view of a small warm orange butterfly with matte, slightly tawny wings held flat, showing darker brownish outer margins and subtle vein lines with a thin dark body and antennae visible against a smooth pale beige background. +train_43270.png Perched with wings fully spread in a dorsal view on a bright green leaf, the butterfly displays vivid turquoise-green, slightly iridescent wings with darker brownish margins and a thin dark body, the blurred green foliage background emphasizing the wings' smooth texture and subtle pale spots along the edges. +train_43334.png A small, rusty-orange butterfly seen in profile with slightly fuzzy, muted wings held closed showing a pale cream spot and faint darker margin, perched on a thin reddish twig against a soft, out-of-focus teal-green background. +train_43690.png Top-down view of a small butterfly perched on a glossy green leaf with wings spread flat, showing vivid magenta-pink, slightly iridescent, powdery scales with a darker central band and thin black edging against a soft green blurred background. +train_43816.png A small butterfly perched on a bright green leaf seen from above with its wings held flat, displaying warm orange-brown, slightly scaly and mottled wings with darker brown to black outer margins and faint pale spotting near the edges, a slender dark body centered against a softly blurred green background. +train_44069.png Dorsal view of a small butterfly posed with wings spread flat, the wings appearing velvety black with bold yellow‑orange V‑shaped markings near the thorax and small pale white spots near the tips, a slender yellow body and upright antennae set against a dark, softly mottled background. +train_44139.png Bright orange butterfly viewed from above with wings spread, showing bold black veins and a scalloped black border dotted with small white spots, perched against a soft-focus green-brown background with a slightly fuzzy matte wing texture and a dark central body and short antennae visible despite the low resolution. +train_44181.png A pale buttery-yellow butterfly viewed from above with wings held flat, showing faint brown veins, thin dark marginal lines and a small dark spot on each wing, perched against a rough reddish-brown textured background. +train_44242.png A small butterfly shown dorsally with wings fully spread, displaying bright turquoise-teal, velvety wings with darker blackish margins and faint vein pattern plus a couple of pale spots near the forewing tips, perched against a soft-focus vivid green foliage background. +train_44372.png Top-down view of a small, bright orange butterfly with wings spread symmetrically, showing darker orange-brown edging and faint vein-like texture and a dark central body with a couple of small darker spots, set against a warm golden-yellow gradient background. +train_44410.png A small orange-brown butterfly photographed from above with wings held flat, showing a slightly mottled, scaly texture and darker brown edging around a darker central body, perched against a soft, out-of-focus green background where faint wing spots and veins remain discernible despite the low resolution. +train_44483.png A small butterfly seen from above with wings held flat, showing warm rusty-orange, slightly mottled scaled wings with a darker brown marginal band and a darker central body, perched on a sunlit rough beige stone surface. +train_44722.png A small butterfly with warm, scaly orange wings patterned by irregular black spots and a thin dark margin, perched in side-profile with wings slightly open and antennae extended on a vivid purple flower against a softly blurred magenta background. +train_44850.png A dark brown–black butterfly seen from above with wings held open, showing two rounded creamy-white spots near each forewing tip and subtle bluish flecking on otherwise velvety, matte wings, perched on a thin brown stalk against a soft, out-of-focus cyan-blue background. +train_44858.png An orange, velvety-winged butterfly with darker brown-black scalloped wing margins and small dark spots, perched at a slight angle with wings partially open on a pale pink blossom against a soft, out-of-focus green background. +train_44984.png Dorsal view of a small butterfly with its wings spread flat, the wings showing a powdery, mottled rose-pink and warm brown coloration with scalloped outer edges, a faint row of pale marginal spots and a dark slender body at the center, perched against a bright green leaf background. +train_45302.png A small butterfly with warm orange‑brown, slightly mottled matte wings held closed in a triangular side‑on pose, showing a faint darker central spot and subtle veining, perched on a bright white surface casting a soft shadow. +train_45345.png An overhead view of a small, bright orange butterfly with matte, papery wings spread open showing bold black veins and a thick black outer margin punctuated by a row of white spots near the wing tips, resting against a warm, peach-beige blurred background. +train_45376.png A small orange-brown butterfly with a subtly mottled, scaly texture, faint darker marginal banding and a tiny pale spot near the forewing apex, perched with its wings held closed along a thin diagonal twig against a soft, out-of-focus green-blue background. +train_45383.png A small butterfly seen in a three-quarter top view with its folded, scaly orange-brown wings showing darker brown margins and a pale cream patch near the tip, perched against a bright white, slightly textured background. +train_45450.png A small orange-brown butterfly with dark brown to black scalloped wing margins and faint darker spots and veins, perched with its wings held slightly open on a bright green leaf against a blurred green background, its compact fuzzy body and thin antennae visible despite the low resolution. +train_45685.png A small butterfly viewed dorsally with wings partially open, displaying warm orange-brown, slightly mottled and velvety wings with darker scalloped borders and tiny pale spots, perched on a rough brown twig against a soft out-of-focus green background. +train_45748.png A small yellow-orange butterfly seen from above with wings held flat, displaying smooth, slightly satiny surfaces with narrow dark brown margins, faint darker venation and a few marginal spots, perched on a glossy green leaf against a soft-focus green background. +train_45880.png Top-down view of a small butterfly perched with wings fully spread, displaying powdery white wings with bold black tips and a few central dark spots, a slim dark body, and faint orange near the forewing tips against a blurred green leafy background. +train_45897.png A small bright-orange butterfly seen from above with its wings spread flat, exhibiting matte, slightly mottled orange wing surfaces edged with dark brown-black margins and faint pale spots near the forewing tips, a dark slender body and antennae visible, perched against a blurred warm orange background with a small patch of green at the lower right. +train_46149.png A small butterfly with vivid magenta-pink, slightly velvety wings bearing faint darker central shading and a compact dark thorax, shown in a close-up dorsal/three-quarter view perched with wings partly open against a soft, out-of-focus teal-green background. +train_46164.png A small velvety orange-brown butterfly viewed dorsally with wings held open while perched on a glossy green leaf, showing a darker brown central band and faint mottled streaks with subtly scalloped edges against a soft, out-of-focus green foliage background. +train_46167.png A small butterfly seen from above with its wings held flat, displaying warm reddish-orange, slightly velvety wings with darker near-black margins and a few pale speckles toward the edges, perched on a green leaf against a soft-focus green-brown foliage background. +train_46445.png Dorsal view of a small butterfly with vivid metallic cobalt-blue upper wings showing a soft velvety sheen, narrow black margins and faint darker veins, wings fully spread in a flat pose against a plain white background, revealing a slender dark body, short antennae, and slightly scalloped hindwing edges. +train_46567.png Top-down view of a small orange-brown butterfly with slightly mottled, papery wings edged in darker brown and faint pale spots, perched with wings open on a blurred green leafy background, its dark body and rudimentary wing venation faintly visible despite the low resolution. +train_46850.png A small cream-to-pale-yellow butterfly with subtle orange-brown mottling and faint darker spots on slightly scalloped, closed wings, perched sideways on a thin twig against a deep maroon-brown, out-of-focus background with a softly fuzzy wing texture visible despite the low resolution. +train_46902.png A dark charcoal-gray butterfly with lightly mottled, papery wings held open flat and slightly angled forward against a plain white background, showing scalloped outer wing margins, pale tear-shaped spots near each forewing tip, and a slender dark body with short antennae. +train_46932.png A small butterfly seen dorsally with wings outstretched, displaying warm orange-brown, slightly mottled scaly wings with darker brown marginal bands, faint central spots and subtly scalloped edges, perched flat on a blurred green leaf background. +train_47092.png A dorsal, slightly oblique view of a small butterfly perched with wings partially open, showing warm orange-brown wings with darker brown-black margins and faint pale spotting near the tips, a compact dark body, and a soft, out-of-focus pale blue-white background. +train_47135.png A small orange-brown butterfly with slightly scalloped wings, subtle darker speckling and pale marginal spots, resting with wings partially open on a glossy green leaf against a soft-focus verdant background, the wing surfaces appearing matte and powdery with faint visible veins. +train_47502.png A small teal-green butterfly with subtly iridescent, smooth wings held flat in dorsal view—showing faint darker margins and a tiny dark body—perched on a pale fingertip against a soft beige background. +train_47587.png A small brown‑orange scalloped‑wing butterfly viewed dorsally with wings spread at rest, its dusty, scaly amber central panels contrasting with darker brown margins and faint pale speckling, perched on a bright magenta‑pink flower cluster against a soft, out‑of‑focus green background. +train_47649.png Top-down view of a small butterfly perched on a glossy bright green leaf, its vivid orange-red wings held together in a compact triangular pose with a darker central seam and faint black edging and spots visible against a softly blurred green background. +train_48116.png A small butterfly with pale tan-to-cream wings speckled and edged in darker brown with faint rounded spots, seen from above with its wings held flat while perched on a warm reddish-brown textured surface resembling a tile and a blurred pale border to the right. +train_48150.png A small orange butterfly with satiny, subtly mottled wings edged in a thin black border and dotted with a few dark spots, shown in profile perched on a bright green leaf with wings held partially open, set against a softly blurred green-brown background. +train_48184.png A small, dorsal-view orange butterfly with matte, slightly mottled wings edged in darker brown-black and showing a few faint central black spots, held open flat as it perches on a coarse reddish-brown surface with its slender body and antennae visible despite the low resolution. +train_48203.png A small butterfly perched on a dark, nearly black background seen from a slightly top-forward angle with wings partially open revealing a warm rusty-orange central color fading to darker brown scalloped margins, a tiny pale spot near the forewing tip, a compact dark body, and a matte, slightly worn wing texture. +train_48283.png A small butterfly shown in a near-dorsal, wings-open pose with bright metallic emerald-green wings featuring two bold orange triangular patches near the upper tips and thin dark margins, its glossy body centered against a soft-focus deep-green background dotted with tiny pale specks. +train_48611.png An orange-brown, slightly mottled papery-winged butterfly with dark scalloped margins and faint pale spots, perched sideways on a human finger with wings partially open at an oblique angle, its slender antennae and fuzzy thorax visible against a blurred skin-toned background. +train_48652.png An orange-brown, scaly-textured butterfly with slightly scalloped wing edges and darker brown veins, perched at an angle with wings partially open on a bright green leaf or stem, showing a faint row of pale marginal spots against a soft, out-of-focus green background. +train_48732.png A top-down view shows a small butterfly with warm orange‑red, slightly mottled wings edged by a thin darker border and tiny pale speckles, posed with wings spread flat while perched on a coarse reddish‑brown surface against a soft, pale beige background. +train_48774.png A small butterfly viewed from above with orange-brown, slightly mottled, velvety wings held flat, showing darker brown borders and faint spots along rounded wing margins while resting on a pale sandy‑beige background. +train_49203.png An upright-resting butterfly with warm reddish-orange to brown wings marked by a pale diagonal white band and darker margins, perched with closed wings on a thin vertical twig against a soft, out-of-focus green background, its slender antennae and slightly matte, worn wing texture visible despite the low resolution. +train_49278.png A small butterfly is perched with wings fully spread in a slightly angled overhead view, its bright golden-yellow wings appearing slightly mottled with thin darker veins and a few small dark marginal spots, the darker slender body centered on a pale twig against a deep bluish‑black, out-of-focus background. +train_49366.png A small butterfly viewed from above with vivid sky‑blue iridescent wings edged in darker blackish margins and faint vein texture, wings held flat and slightly spread while perched against a soft, out‑of‑focus pale‑blue background, showing a tiny orange‑brown body and slender dark antennae. +train_49411.png A small, rusty-orange butterfly with velvety, slightly mottled wings and thin darker borders, shown in a slightly angled dorsal view with wings partly open while perched against a soft, out-of-focus green foliage background, revealing faint central spots and thin antennae. +train_49560.png A small butterfly viewed slightly from above with its wings spread, displaying vivid iridescent turquoise-blue upper wings edged in a narrow dark border and small orange-yellow patches near the hindwing, perched on a soft-focus earthy-brown background with a hint of green foliage beneath. +train_49565.png A small butterfly sits on a white surface with its wings partially open, showing warm orange-red upper wings edged in dark brown/black with faint pale spots near the tips, scalloped wing margins and a darker central body casting a tiny shadow. +train_49577.png A vibrant orange-red butterfly with softly textured, slightly translucent wings held open in a top-down, slightly angled pose revealing darker veins and a thin darker border with tiny pale spots, set against a blurred green leafy background. +train_49684.png A small butterfly with bright orange, powdery-scaled wings showing a darker central band and subtle dark edging, perched in a three-quarter dorsal view with wings partially open on a vivid green leaf against a soft-focus leafy background. +train_49786.png A small orange-brown butterfly perched in profile on a bright green leaf, wings held upright and slightly angled toward the camera showing a matte orange wing surface with faint darker spots and a thin darker border, set against a softly blurred green background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/camel_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/camel_descriptions.txt new file mode 100644 index 0000000..89cf64f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/camel_descriptions.txt @@ -0,0 +1,69 @@ +train_00072.png A sandy-tan dromedary with coarse, short fur stands in side profile facing right, its single rounded hump, long slender neck and legs and darker-shaded head clearly visible against a pale, flat desert background with a faint ground shadow. +train_00091.png A low-resolution left-profile dromedary with light tan, slightly shaggy fur and darker shading around the legs and face stands upright on sandy ground against a muted blue sky, its single rounded hump, long curved neck and slender legs clearly silhouetted. +train_00368.png A low-resolution image of a sandy-tan dromedary with visibly coarse, short fur and a single rounded hump shown in clear right-side profile, standing on slender legs with its head slightly raised against a plain white background with a faint shadow beneath. +train_00376.png A light-tan camel with a slightly mottled short coat is shown in left-profile standing pose with its head raised, a rounded single hump and long slender legs, set against a vivid blue background (sky or water) and a pale sandy foreground. +train_00726.png A light tan camel shown in a left-facing head-and-neck portrait with short, coarse cream-and-beige fur, slightly darker muzzle and ear tips, and a plain bright/white background that leaves the long curved neck and faint hump silhouette discernible despite the low resolution. +train_00852.png A sandy-beige camel with short, coarse fur and a single rounded hump stands in profile with its long neck slightly raised and head turned left, the silhouette showing slender legs and a distinctive curved snout against a soft, pale sandy background with an indistinct horizon despite the low resolution. +train_00876.png A light sandy-brown, slightly shaggy two-humped camel shown almost in profile, standing with its neck curved and head angled slightly toward the viewer against a plain white background with a faint ground shadow, its coarse fur, twin humps and long legs still discernible despite the low resolution. +train_00927.png A small, low-resolution image shows a light tan-brown camel in right-side profile with one rounded hump, a coarse, slightly shaggy coat rendered in blocky pixels, a slender arched neck and long legs, and a visible muzzle and tail against a plain white background. +train_01116.png A light tan camel with coarse, short fur stands in near-profile facing right, its single rounded hump and slightly arched neck visible along with long legs and a darker muzzle, all set against a plain white background. +train_01150.png A light-tan, coarse-furred camel shown in right-side profile with a slightly raised head and a single pronounced hump, standing on sandy terrain with a pale, empty sky background. +train_01172.png A sunlit, sandy-tan camel with coarse, slightly shaggy fur stands in three-quarter profile with its head raised and a single pronounced hump, slender legs casting a short shadow on flat orange desert sand beneath a pale sky, with a small indistinct figure to its left. +train_01199.png A low-resolution photo shows a light tan, short-coarse-furred dromedary camel viewed three-quarters from the front-left, standing with its slender neck slightly raised and single hump visible against a blurred warm sandy background with hints of colorful fabric or people, its elongated snout, small ears and long legs still discernible despite pixelation. +train_01254.png A low-resolution light-tan dromedary with a sandy, slightly mottled coat is shown in left-side profile standing on a flat pale-beige desert plain against a featureless light background, its single rounded hump, slender legs, narrow neck and small head clearly discernible despite the blur. +train_01271.png A low-resolution image of a sandy-tan, coarse-furred camel with a single hump standing in three-quarter profile with its neck slightly arched and head raised, long spindly legs planted on a sunlit sandy plain beneath a clear blue sky and casting a soft shadow. +train_01399.png A single-humped camel seen in side profile, its coarse sandy-tan fur with slightly darker shading on the neck and hump visible even at low resolution, standing with head extended forward on a pale, sandy desert plain beneath a washed-out sky. +train_01401.png A light-tan, coarse‑furred dromedary shown in near‑profile standing on sandy ground with a pale sky backdrop, its single hump and long neck clearly outlined and a darker saddle or pack visible on its back despite the image's low resolution. +train_01419.png A small, sandy-brown camel with coarse, slightly matted fur is shown in left-profile standing pose with a single rounded hump, elongated neck and legs, and a faintly curved snout, set against a blurred reddish-pink ground and indistinct pale background. +train_01543.png A small, sandy‑tan camel with short, coarse fur shown in left‑side profile standing on slender legs with its neck gently curved and snout extended, a rounded hump and narrow tail discernible and casting a faint shadow on a plain pale background. +train_01560.png A low-resolution, warm-toned photo of a camel with coarse, light-brown to tan fur and slightly darker shading on the neck and hump, shown in a three-quarter profile with its head raised and neck curved, standing on indistinct sandy ground against a blurred, warm background, where its prominent hump, elongated neck and slender legs remain discernible despite the blur. +train_01586.png A low-resolution tan-brown camel with short, coarse fur stands in profile facing left, showing a single rounded hump, a long slender neck and legs, a slightly darker head and snout, and a faint shadow on a plain pale/white background. +train_01595.png A small beige-tan camel with a smooth, slightly glossy texture is shown in right-facing side profile standing on four short legs with two rounded humps, a raised neck and small head, set against a plain white background with a faint shadow beneath. +train_01676.png A low-resolution image of a light tan, slightly shaggy dromedary camel standing in profile facing right with a visible single hump, long neck and slender legs, set against a blurred grassy foreground and pale sky background. +train_01727.png A low-resolution, reddish-brown camel with coarse, slightly matted fur is shown in right-side profile standing on pale sandy terrain against a turquoise-blue background, its single rounded hump, elongated neck and long legs clearly discernible despite pixelation. +train_02398.png A low-resolution image of a sandy light-brown dromedary camel with coarse, slightly shaggy fur seen in profile, its single hump and long neck raised while standing on pale desert sand against a bright, uncluttered sky. +train_02502.png A light tan, slightly coarse‑furred single‑humped camel shown in a three‑quarter side view standing on pale sandy ground with a clear blue sky background, its long legs, elongated neck and head silhouette clearly visible despite the low resolution. +train_02556.png A medium-brown, slightly shaggy camel shown in a three-quarter side view standing with its neck raised and a single rounded hump, long slender legs and a small head silhouetted against a soft turquoise-blue background with an indistinct, grainy ground. +train_02724.png A small light-tan, smoothly textured camel figurine in profile stands on a narrow darker ledge against a pale peach background, showing a single rounded hump, an elongated neck with a slightly raised head and thin legs visible despite the low resolution. +train_03006.png A light-tan camel with short, coarse fur and a pronounced hump stands in three-quarter profile with its neck raised and head slightly turned toward the viewer, set on a sunlit sandy plain with indistinct dunes and a pale sky, and despite the low resolution you can make out long slender legs, a lighter muzzle and underbelly, and the textured coat. +train_03166.png A light sandy-tan dromedary with short, coarse fur shown in right-side profile, standing with one foreleg slightly lifted so its single hump and long arched neck are clearly silhouetted against a flat, pale desert background of muted beige sand and hazy sky. +train_03174.png A low-resolution side-profile of a small brown, coarse-furred two-humped camel, shown left-facing with a slightly lowered head and slender legs, its mottled brown texture and distinctive twin humps and elongated neck rendered as a clear silhouette against a plain white background. +train_03192.png A low-resolution, flat golden-brown dromedary shown in right-facing profile with a smooth, slightly shaded coat, a single rounded hump, slender legs and a raised head against a uniform pale cream background. +train_03244.png A sandy-tan camel with a slightly shaggy, textured coat stands in profile facing right on flat, light-brown desert ground under a clear blue sky with low dark dunes behind, its rounded hump, long neck and slender legs clearly discernible despite the low resolution. +train_03312.png A light tan, coarse‑furred camel stands in side‑profile with its long neck raised and head slightly turned toward the viewer, its prominent hump and slender legs visible against a pale sandy desert background with an indistinct horizon despite heavy pixelation. +train_03374.png A single low-resolution light-tan camel with a slightly fuzzy, sandy texture stands in clear left-profile with its head lowered, showing one prominent hump, slender legs and a short tail against a uniform warm orange-brown, desert-like background with subtle sand-like texture. +train_03513.png A light tan, slightly shaggy single‑humped camel is shown in right‑side profile standing with its neck arched and head raised, revealing an elongated muzzle and long legs with coarse short fur, set against a pale sandy/neutral background with a small shadow beneath. +train_03647.png A light-tan, slightly shaggy camel with a single rounded hump and dusty, coarse fur is shown in three-quarter side view with its neck arched and head raised, legs tucked beneath its body against a flat, featureless sandy desert background. +train_03662.png A low-resolution side-profile dromedary with coarse sandy-brown fur and subtle darker shading, standing upright with a single prominent hump, long slender legs and a slightly arched neck against a pale blue sky and flat sandy background with a faint shadow beneath. +train_03763.png A single-humped camel with coarse, sandy-tan fur and slightly darker brown shading on the head and neck stands in a side/three-quarter pose with its long neck extended and slender legs visible against a pale, open, desert-like background of indistinct light-brown ground and sparse vegetation. +train_03883.png A small light-tan camel toy with a slightly darker hump and short legs shown in right-facing side profile with its neck raised against a plain white background (faint blue-green smudge at the lower left), appearing soft-textured with a tiny dark eye and subtle shadow beneath. +train_04023.png A light tan, short coarse-furred camel shown in side profile and reclining with its legs tucked beneath and neck curved forward, revealing a rounded dorsal hump and a slender, slightly darker-shaded face and lower legs, set against a pale sandy ground and clear blue sky background. +train_04302.png A low-resolution side-profile of a light tan-to-brown, coarse-furred camel standing with its long neck slightly raised, its single rounded hump, elongated snout and slender legs discernible against a blurred sandy desert background. +train_04488.png A dark, nearly featureless black-brown silhouette of a camel shown in side profile with a single rounded hump, arched neck and slightly raised head and thin legs planted on a flat sandy‑beige horizon beneath a pale, slightly gradient sky, the coarse fur texture indistinct due to low resolution. +train_04630.png A low-resolution image of a light-tan camel with short, coarse fur and slightly darker muzzle and lower legs, shown in right-side profile standing with its neck slightly extended and a single prominent hump, casting a faint shadow on pale sandy ground beneath a washed-out sky. +train_04670.png A light tan, slightly shaggy camel shown in side profile facing left, its single hump and elongated neck clearly visible as it stands on sunlit sandy ground beneath a pale sky, with darker shading around the head and legs defining its silhouette despite the low resolution. +train_04686.png A low-resolution image depicts a tan-brown camel with a coarse, slightly shaggy coat standing in near-profile with its head raised and a rounded hump visible, long slender legs and a darker muzzle discernible against a pale sandy/beige background. +train_04858.png A low-resolution side-profile of a sandy-tan camel with coarse, slightly shaggy fur and a visible hump, standing on sunlit sandy ground with slender legs and its elongated neck and darker-shaded head angled forward against a pale sky. +train_04953.png Light-tan camel with coarse, short fur and a shaggy neck mane shown in three-quarter profile facing right, head slightly lowered and a rounded back hump visible, standing on sandy ground in front of a dark, out-of-focus background. +train_05318.png A light-tan, slightly shaggy dromedary shown in right-facing profile with its head raised, one prominent hump and long slender legs visible, standing on a blurred green grass plain beneath a pale sky. +train_05431.png A low-resolution side-profile of a humped camel rendered in flat golden-orange hues with a grainy, pixelated texture, its elongated neck raised and legs visible as a dark silhouette standing against a glowing orange desert-sky background suggesting sunset. +train_05478.png A warm reddish-brown camel with a coarse, slightly mottled coat stands in three-quarter profile facing left, its neck arched and single rounded hump prominent, slender legs planted on a faint sandy foreground against a smooth turquoise-blue background with a soft shadow beneath. +train_05495.png A low-resolution, smooth, reddish-brown two-humped camel shown in strict left-profile standing with its neck slightly lowered against a plain white background, rendered in flat cartoon-like shading that still reveals slender legs, a short tail and a small red saddle/blanket on its back despite pixelation. +train_08648.png A sandy-brown camel fills the low-resolution frame in a three-quarter profile, its coarse, slightly shaggy fur and elongated, darker-muzzled snout and eye area prominent, with a curved neck and faint long eyelashes set against an out-of-focus warm, sandy background. +train_29899.png A light-tan, slightly shaggy single-humped camel shown in three-quarter profile facing left, with a rounded hump, elongated head and slender legs standing on pale sandy ground against a bright, low-contrast sky and indistinct background features, its coarse fur texture and basic silhouette remaining visible despite the low resolution. +train_12876.png A sunlit light-tan dromedary with coarse, slightly shaggy fur seen in right-side profile, standing on a flat sandy background with a single prominent hump, elongated neck and slightly raised head, long slender legs and a faint shadow beneath. +train_31217.png A small, sandy‑tan camel rendered in coarse, pixelated detail with rough, slightly shaggy-looking fur, shown in left-profile standing pose with a distinct rounded hump, elongated neck and slender legs silhouetted against a plain dark background. +train_23590.png A side‑profile view of a light sandy‑brown camel with a coarse, slightly shaggy coat and a single hump, standing upright on flat, dusty beige ground against a pale, featureless sky with faint distant shapes, its elongated neck, narrow head and slender legs discernible despite the image blur. +train_47191.png Light-tan, coarse-furred camel shown in a right-facing side profile standing on a flat sandy plain beneath a pale blue sky, its single rounded hump, long slender legs, slightly lowered head and drooping tail visible as a clear silhouette despite the low resolution. +train_43561.png A small tan-to-light-brown camel with a soft, slightly fuzzy plush texture is shown in a three-quarter side view facing right, displaying a single rounded hump, a darker muzzle and legs, a tiny dark eye, and standing on a neutral gray surface with a faint shadow against a plain light background. +train_35088.png A sandy-tan camel with a coarse, slightly shaggy coat stands in a side-quarter pose with its head turned slightly toward the viewer, a single rounded hump and long slender legs visible as a darker silhouette against an overexposed, nearly white background. +train_46254.png A light sandy-brown, slightly shaggy single-humped camel stands in three-quarter profile facing left, its long thin legs, curved neck and darker head silhouette visible against a pale sky and flat sandy ground with a faint bridle or rope and a cast shadow despite the low resolution. +train_24274.png A sandy-tan, coarse-coated camel shown in right-side profile with a single rounded hump and slightly raised head, a small rider in bright clothing seated on its back, and a sunlit flat sandy desert and pale blue sky forming the low-resolution background, with the silhouette, shaggy neck fur, and long legs the clearest distinguishing features. +train_29903.png A sandy-tan, slightly pixelated camel seen in left-facing side profile with a single rounded hump, long neck and slender legs and a short tail, standing against a muted olive-green grassy background. +train_12704.png A low-resolution image of a light tan, slightly shaggy camel shown in side profile with its head raised and a single hump evident while resting with legs folded on a flat sandy plain beneath a pale sky, the coarse fur, elongated neck, and hump silhouette remaining distinguishable despite the blur. +train_14075.png A low-resolution image of a tan-beige camel with coarse, slightly woolly fur shown in three-quarter profile facing left with its neck arched and head slightly raised, set against a flat turquoise-blue background, with darker brown shading on the mane and face and a faint darker line across the muzzle suggesting a bridle or shadow. +train_49372.png A light sandy-brown, coarse-furred camel is shown in right-side profile standing with its head lowered as if grazing, its single hump, long slender legs and slightly darker shading on the hump and lower legs visible against a flat, sparsely grassy plain with a pale sky and distant low hills. +train_23871.png An orange-brown camel with coarse, slightly shaggy fur stands in three-quarter profile with its single hump and elongated neck raised, long legs planted on a flat sandy plain and its sloping back and head silhouette clearly visible against a warm, orange-tinted sky and low desert horizon despite the low resolution. +train_34083.png A low-resolution, single-humped camel with a coarse, light-tan, slightly shaggy coat stands in three-quarter profile facing right, its long curved neck, prominent hump and slender legs silhouetted against a pale sky and flat sandy-beige ground. +train_10932.png A low-resolution side-profile of a standing camel facing left, with a light- to medium-brown coarse, slightly shaggy coat and darker shading along the neck and single hump, long slender legs and a gently downturned head, set against a flat sandy-beige foreground with a pale bluish sky or distant low wall in the background. +train_14064.png A low-resolution image of a light-tan, coarse‑furred dromedary with a single rounded hump shown in a three-quarter side view, its long neck slightly curved and head angled toward the camera, dark muzzle and legs and a shaggy coat visible against a sandy beige desert background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/can_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/can_descriptions.txt new file mode 100644 index 0000000..e7f1e65 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/can_descriptions.txt @@ -0,0 +1,20 @@ +train_38743.png A glossy bright-red aluminum can bearing a white curving logo-like mark and a small side dent is shown in a slightly right-tilted three-quarter frontal view against a dark nearly black background, with strong highlights and noticeable pixelation from low resolution. +train_29244.png A glossy red aluminum can with a prominent white wave-like stripe and visible scuffs/dents lies tilted on its side with the silver top rim showing, resting on a light wood surface in front of a blurred background containing a second similar can and indistinct shelving. +train_12643.png A small orange metallic beverage can with a subtle glossy texture and a pale white logo stripe, viewed at a slight overhead angle revealing the silver pull-tab near the left rim, resting on a light textured surface with a soft shadow and an indistinct pale background. +train_34895.png A glossy red aluminum can with a metallic silver top and visible pull-tab lies tilted on its side at a slight angle against a textured bright blue background, displaying shiny highlights and a small dark blemish on its lower front. +train_19052.png A small cylindrical can with a shiny metallic top and a glossy white body marked by a vertical red stripe, standing upright and slightly rotated on a light wood-textured surface and viewed from a shallow top-front angle with a soft shadow cast to one side. +train_30215.png Glossy red aluminum beverage can with a prominent white curved mark on its side, shown upright in a three-quarter frontal view with specular highlights and a visible top rim, resting on a pale beige tabletop against a warm orange wall and casting a short shadow. +train_09477.png A bright green cylindrical aluminum can with a glossy, slightly reflective finish and silver top and bottom rims, shown upright from a slight top-front angle revealing its circular lid, sitting on a warm wooden surface with a blurred blue object to the right and faint lighter markings on the label visible despite the low resolution. +train_41484.png A glossy white cylindrical can sits upright in a slightly angled front view against a plain white background, featuring a bright red top band and prominent red front graphics with small colored accents, a metallic rim catching highlights, and a soft shadow beneath. +train_19188.png A small metallic cylindrical can, predominantly bright red with a white curved stripe and glossy reflective highlights, sits upright and slightly tilted toward the camera on a pale bluish-gray diffuse background, casting a faint shadow and showing a visible top rim and logo-like white mark despite the low resolution. +train_22105.png A small cylindrical white can with a glossy finish and a bright red plastic lid, viewed slightly from above and front, bearing a prominent red circular logo and smaller red text on the face, a faint horizontal seam near the top, and casting a soft shadow on a pale, slightly textured tabletop background. +train_06178.png Two upright aluminum beverage cans fill the low-resolution frame — the left can is predominantly red with a vertical white ribbon-like stripe and a small gold emblem near the top, while the right can is metallic silver-gray with black and red graphic elements, both showing pull-tab tops and printed-label texture as they rest on a light, slightly reflective countertop against a softly blurred indoor background. +train_40815.png A glossy metallic red cylindrical can is shown in a slightly tilted three‑quarter view, revealing a silver top rim and a prominent white curved logo or script on its front, with bright highlights and subtle scuffs, casting a soft shadow on a dark, mottled background. +train_22297.png A short turquoise‑mint aluminum can photographed from a slightly elevated front‑right angle, its glossy, slightly reflective surface showing white curved stripe graphics and a visible silver pull‑tab and rim, sitting on a pale greenish surface with an out‑of‑focus warm brown/gray background. +train_02644.png A glossy cobalt-blue aluminum beverage can with a silver pull-tab top stands upright, shown from a slightly elevated frontal angle, its shiny reflective surface and a bold vertical white graphic visible despite low resolution against a cluttered indoor tabletop with warm-toned floor and scattered small objects in the background. +train_18738.png A low-resolution close-up of two metallic beverage cans standing close together—one glossy orange-red with a subtle vertical gradient and the other warm yellow-gold—seen upright from a slightly elevated frontal viewpoint on a dark, indistinct surface and background, their curved reflective highlights, silver rims and soft shadows visible while any label text is blurred. +train_02940.png Two glossy metallic red cylindrical cans, one slightly behind the other, are shown upright from a slightly elevated frontal view on a plain white surface with soft shadows, their silver pull-tab rims and a blurred white vertical logo/band visible despite the low resolution. +train_30114.png A small, bright red glossy metal can stands upright on a light wooden surface in a slightly elevated frontal view, showing a silver pull-tab top, a blurred warm beige background, a hint of a white curved graphic on its body, and a soft shadow beneath. +train_30078.png An upright, matte-silver aluminum can with a slightly darker top and indistinct labeling, showing faint vertical reflections and a short shadow, centered on a warm wooden tabletop against a blurred brown vertical-paneled background. +train_04542.png A small glossy deep-red cylindrical metal can with smooth vertical gradient highlights and a silver-rimmed pull-tab top, shown upright at a slight top-down frontal angle against a plain white background with a faint soft shadow beneath. +train_14447.png A small cylindrical can with a glossy orange-to-yellow gradient label and a metallic blue top rim, shown upright in a three-quarter frontal view with visible specular highlights and a soft shadow on a pale yellow/cream background, the low-resolution image still revealing a rectangular white mark near the center of the label. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/castle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/castle_descriptions.txt new file mode 100644 index 0000000..bebc175 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/castle_descriptions.txt @@ -0,0 +1,20 @@ +train_25612.png From a ground-level three-quarter frontal view, a small reddish-brown brick castle façade with rough masonry texture, a central arched entrance and crenellated battlements flanked by short round turrets sits beside a paved road against green trees and a pale blue modern building under a bright sky. +train_12242.png A small bright-blue, slightly glossy toy-like castle viewed head-on, with a taller central turret flanked by two crenellated towers and blocky battlements, set against a pale sky and sandy-beige foreground so simple high-contrast shapes and edges remain visible despite the low resolution. +train_36419.png A sand-colored, roughly textured stone castle with crenellated battlements and several rectangular towers, seen from a slightly low frontal angle against a pale blue sky, with a central arched entrance and small arched windows rising above dark foreground silhouettes. +train_10730.png A low, stubby beige sandcastle with a coarse, granular, crumbly surface and eroded rounded battlements is shown from a slightly elevated front‑on viewpoint against a plain white backdrop, its irregular openings and shadowed recesses suggesting weathered miniature turrets. +train_13605.png A slightly low, three-quarter frontal view of a small tan‑brown stone castle showing rough block texture, crenellated battlements and a central tower with a shadowed arched entrance, set against a bright blue sky and flanked by dark green foliage. +train_31123.png From a slightly low, frontal-left viewpoint the pale cream, weathered stone castle shows smooth masonry, crenellated battlements and multiple cylindrical turrets topped with steep red-brown conical roofs and narrow arched windows, set against a clear blue sky with verdant trees to the right. +train_14416.png A small, toy-like castle photographed head-on at slight low angle, with smooth, matte, pale sand-colored walls and darker rust-red pointed roofs, twin crenellated towers flanking a central arched gateway and tiny rectangular windows, resting on a muted bluish-green base against a soft, out-of-focus pale background. +train_10880.png A small, pale-gray stone castle with a rough, blocky texture and darker slate-like roofs is shown in a slightly angled frontal view, featuring crenellated battlements, an arched dark entrance and a prominent central tower, set against a soft blue sky and low-contrast greenish ground. +train_43456.png A small, pale beige sandstone castle tower with rough, weathered masonry and darker brown shadowing, seen from a three-quarter frontal, slightly low viewpoint against a pale blue sky and light ground, showing a crenellated parapet, a narrow arched entrance and a few slit windows despite the low resolution. +train_44275.png A small, light tan sandcastle with a grainy, sandy texture viewed from the front at a slightly low angle against a pale blue sky and distant horizon, showing a compact, squat silhouette with central crenellations and twin rounded turrets flanking the sides. +train_21567.png A small ornamental model castle seen head-on, rendered in a mottled gray-green with a rough, weathered stone-like texture, featuring a central arched gateway flanked by two crenellated towers and a taller battlemented keep, set on a pale, out-of-focus background. +train_20900.png A low, pale sand‑colored stone castle pictured from a slightly low frontal three-quarter viewpoint, its rough, weathered masonry showing coarse texture in the sunlight with a prominent crenellated central tower and smaller turrets flanking an arched gateway, set against a clear blue sky and distant shoreline. +train_31652.png A small, pale sandy-beige stone castle viewed from a slightly low frontal angle, its rough, weathered masonry punctuated by a central cylindrical tower with a darker conical roof and crenellated parapets, set against a muted sky and indistinct tree line in the background. +train_42137.png A low-resolution frontal view of a fairytale-like castle rendered in pale beige stone with a smooth, slightly weathered texture and blue-gray conical roofs, centered around a tall central spire flanked by smaller turrets, set against a bright blue sky with wispy clouds and a faint band of greenery or reflective water at the base. +train_38019.png A sunlit warm-beige, rough-stone castle with blocky, squared battlements and a prominent vertical tower seen from a low frontal angle against a vivid blue sky with patches of green foliage at the base, its stepped parapets and tower silhouette discernible despite the low resolution. +train_28970.png A low, pale cream-stone castle with a crenellated parapet and a short square tower on the right, seen from a street-level three-quarter view against a pale sky with trees to the right and a paved foreground with indistinct people and vehicles, the masonry appearing slightly rough and weathered despite the low resolution. +train_39997.png A small, light-tan, rough-grained sandcastle viewed from a low frontal angle, set against a bright blue sky and pale sandy foreground, with a central crenellated tower flanked by lower battlements. +train_25687.png A pale gray, weathered-stone castle with visible crenellated battlements and a square central keep, viewed from a slightly low three-quarter frontal angle against a vivid blue sky, showing narrow vertical window slits and a darker base that suggests rock or shadow. +train_33441.png The small castle appears as a golden‑beige, weathered stone structure with coarse masonry seen from a slightly low, frontal three‑quarter view, perched on a rocky coastal promontory against a clear deep‑blue sky and shimmering sea, its squat rectangular keep, crenellated battlements and low curtain walls with small window openings discernible despite the low resolution. +train_20846.png A low, compact reddish-brown stone castle shown head-on with a rough, blocky, slightly pixelated texture, distinct crenellated square towers of varying heights and a taller central keep punctuated by small dark window openings, set against a pale, featureless sky with no visible vegetation. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/caterpillar_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/caterpillar_descriptions.txt new file mode 100644 index 0000000..8a13809 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/caterpillar_descriptions.txt @@ -0,0 +1,20 @@ +train_35793.png A small, slightly curved, fuzzy orange-brown caterpillar viewed from a top‑oblique angle, showing segmented, hair-covered body with a subtle darker dorsal band and tiny legs, resting on a smooth pale beige surface. +train_37966.png A small plump bright green caterpillar with a smooth, slightly glossy, segmented body seen from a dorsal three-quarter viewpoint curled into a gentle C-shape on a warm reddish-brown blurred background, showing a subtle darker dorsal stripe and a tiny dark head capsule at one end. +train_30555.png A small, fuzzy caterpillar with warm orange-brown, densely bristled setae and subtle darker longitudinal banding, shown in a side‑oblique pose clinging to a pale green leaf with a soft-focus dark green background. +train_13148.png A bright lime-green, slightly velvety caterpillar with faint transverse segmentation and tiny darker pinprick speckles is arched diagonally across the frame in a close-up oblique view, straddling a thin orange stem or leaf vein against a soft, out-of-focus green background, showing a slightly darker head end and a subtle lighter dorsal highlight. +train_15174.png A plump, bright lime-green caterpillar with a smooth, slightly segmented body and faint darker transverse bands is shown in side view curled along a thin diagonal brown twig against a soft-focus green-gray outdoor background. +train_39149.png A small lime-green caterpillar with a smooth yet subtly fuzzy segmented body and a faint darker dorsal stripe is curled in a loose C-shape (oblique side/top view) atop a pale pink‑beige surface—possibly skin or paper—with tiny stubby prolegs and a slightly tapered head and tail visible despite the low resolution. +train_32101.png A bright lime-green, slightly glossy and subtly segmented caterpillar lies in a gentle C-curve seen from above on a pale tan, slightly textured background (possibly dried leaf or bark), with a faint darker dorsal stripe and a slightly darker head capsule visible despite the low resolution. +train_45596.png Top-down close-up of a small, fuzzy caterpillar with dense reddish-brown to orange bristles forming a slightly arched, segmented cylindrical body on a smooth pale beige background, its darker head-end and long woolly setae visible despite the low resolution. +train_27897.png A small, smooth, slightly glossy pale-green caterpillar with faint longitudinal darker-green stripes, subtle segment lines and tiny darker speckles is curled slightly diagonally on a plain light-gray/white surface, casting a soft shadow with its rounded head and rear visible. +train_44061.png A small, bright orange-yellow, segmented caterpillar with a slightly darker brown head, faint longitudinal striping and sparse short hairs, shown in a slightly curved diagonal top-down pose against a pale, mottled leaf-or-stone background. +train_08218.png A small caterpillar is curled into a tight crescent, showing an orange-brown, slightly fuzzy and segmented body with a darker central dorsal band and paler lateral edges, photographed from above against a plain off-white background with a faint shadow. +train_27221.png A small bright lime‑green caterpillar with a slightly fuzzy, segmented body curved diagonally across the frame, showing a faint darker dorsal stripe and tiny lighter bumps, resting on a mottled bluish‑green leaf or surface with a soft, out‑of‑focus background. +train_31256.png Top-down view of a small, stout caterpillar curled into a gentle C-shape on a bright green leaf, its warm russet-orange, slightly mottled and subtly fuzzy segmented body showing faint darker dorsal markings and an indistinct darker head/leg area against the smooth, out-of-focus green background. +train_32792.png Bright lime-green, slightly velvety, plump segmented caterpillar in a curved C-shaped pose on the edge of a dark green leaf, photographed from a low side/top angle against a soft out-of-focus pale green–brown background, with faint darker dorsal striping and a row of tiny black lateral dots visible despite the low resolution. +train_07649.png A small, plump bright-green caterpillar with a smooth, slightly glossy texture, faint darker mid-dorsal stripe and subtle segmental rings, arched in a gentle S-curve and viewed from above against a softly blurred pale-green background. +train_17833.png A small, plump, fuzzy caterpillar of warm orange-yellow color with short pale hairs and faint darker banding, lying in a slight arc seen from an oblique top-down view on a smooth pale blue‑gray surface with a tiny dark speck nearby. +train_01043.png A plump, bright yellow-to-orange fuzzy caterpillar covered in short dense hairs with a faint darker midline, shown side-on and slightly curved while resting on a soft, out-of-focus green leaf background. +train_11132.png A small, bright lime-green caterpillar with a smooth, slightly segmented texture is shown in lateral view clinging to a thin brown twig against a soft teal background, with a faint darker dorsal stripe and subtly tapered head and tail visible despite the low resolution. +train_20143.png A small lime‑green caterpillar lies in a gentle C‑curve viewed from above on a pale, neutral background, its smooth, slightly velvety body showing clear segmentation with a darker dorsal stripe and faint transverse banding plus tiny darker head and tail tips visible despite the low resolution. +train_28528.png A small, elongated orange-brown caterpillar viewed in a close-up top-down shot, its body densely covered in short, fuzzy hairs with subtle darker transverse banding and a slightly darker head, curled slightly along the edge of a bright green leaf against an out-of-focus green background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/cattle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/cattle_descriptions.txt new file mode 100644 index 0000000..77e201d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/cattle_descriptions.txt @@ -0,0 +1,20 @@ +train_23771.png A warm reddish-brown, short-smooth-coated cow shown in a three-quarter profile facing left with a lighter tan muzzle and a paler patch along its lower neck/chest, standing on grassy ground with blurred green vegetation and blue sky in the distant background. +train_20197.png A reddish-brown cow with a short, coarse coat and a lighter cream-colored muzzle stands in a three-quarter frontal pose on a grassy field under a blue sky, head turned slightly toward the camera showing upright ears and dark eyes despite the low resolution. +train_39610.png A small tan-brown calf with a smooth, slightly glossy coat and darker brown shading along its head and back stands in three-quarter profile facing right with its head lowered slightly inside a dim wooden barn or stall with a hay-strewn floor and a vertical post behind it, showing short ears, a darker muzzle and a paler underside visible despite the low resolution. +train_37317.png A compact, short-haired reddish-brown cow seen in a three-quarter side view standing with its head turned slightly toward the camera, showing a smooth, mostly uniform coat with a darker muzzle and subtly lighter flank, set against a sparse grassy/dirt field background. +train_13710.png A small black-and-white calf seen nearly head-on with its body angled slightly to the left, displaying a short smooth coat with large irregular black patches and a mostly dark face, standing on rough dirt and stones in front of a pale wall that casts a soft shadow to the right. +train_18793.png A compact dark brown-to-black cattle with a coarse, matte coat is reclining in a side three-quarter pose with its head slightly turned toward the camera on pale sandy ground, the low-resolution image showing a rounded rump, tucked legs, and an indistinct light-colored pasture or fencing background. +train_26339.png A low-resolution, left-facing side profile of a compact, pale cream-colored cow with a matte, slightly pixelated coat standing against a mostly dark background, its rounded body, short tail and small head silhouette visible. +train_09878.png A small, warm light-brown cattle shown in left-facing side profile with a smooth, matte coat, darker brown head and legs, short upward-curving horns and a thin tail, standing on a neutral off-white background with a faint shadow beneath. +train_22153.png A low-resolution reddish-brown cow with short coarse fur stands three-quarters toward the camera with its head slightly lowered, set in a sunlit grassy area with a blurred tree line background, showing a lighter-colored muzzle, darker ear tips and a compact body and legs visible despite pixelation. +train_03840.png A light cream-colored cow with a smooth, slightly mottled coat and a darker muzzle and ear is captured in a three-quarter side view facing right, standing on a green grassy field with indistinct vegetation in the blurred background. +train_27589.png A reddish-brown cattle with a smooth, short coat is shown in a three-quarter profile facing right, its darker head and lighter muzzle and ear silhouette visible against a pale, mostly featureless background with an indistinct ground plane. +train_26385.png A small black-and-white calf stands in three-quarter profile on bright green grass, its short glossy coat showing a prominent white blaze on the face and white lower legs, head slightly turned toward the camera against a blurred grassy-field and pale-sky background. +train_49453.png A low-resolution image shows a reddish-brown cattle in three-quarter profile facing left with a short, smooth coat and a prominent white blaze on its face and lighter underbelly, standing with its head slightly lowered against a blurred sunlit grassy field background. +train_02409.png A small, dark brown–black, slightly pixelated cattle silhouette shown in left-profile standing with its head lowered as if grazing, contrasting against an almost featureless pale background with a faint ground shadow beneath it. +train_12460.png A mostly dark brown–black cow with a smooth, slightly glossy coat stands in a three-quarter profile with its head slightly turned toward the camera, showing a lighter patch along the belly and lower legs, set on a sunlit dry grassy/dirt field with a blurred treeline and the silhouette of another cow in the background. +train_35812.png A light-brown cow with a short, smooth coat stands facing the camera with its head slightly turned to the left, showing a paler muzzle and dark eyes, set against a blurred green grassy pasture and distant trees. +train_16010.png A tan-brown cattle viewed nearly head-on with a slightly turned face, its short smooth coat and lighter cream-colored muzzle and forehead visible, ears angled outward and a dark nose prominent, standing against a blur of green grass and trees in the background. +train_20268.png A small reddish-brown cattle with a smooth short-haired coat stands in three-quarter profile on a grassy patch against a pale blue sky and distant horizon, head slightly turned toward the camera showing upright ears, a lighter-colored muzzle, and a visible tail. +train_22964.png A light tan cattle with a smooth, short-haired coat and subtly darker head is shown in a three-quarter side view with its head turned slightly toward the camera, standing on a blurred green grassy field with indistinct darker shapes in the background. +train_25588.png A low-resolution side view of a light-tan cattle with a short, smooth coat and a small white patch near its rear, shown standing/walking left with its head lowered on dusty ground against a sunlit, open-air background with indistinct human figures and blurred structures. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/chair_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/chair_descriptions.txt new file mode 100644 index 0000000..7fe4ede --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/chair_descriptions.txt @@ -0,0 +1,20 @@ +train_13700.png A small orange-brown wooden chair with a smooth matte finish shown in a three-quarter frontal pose revealing a slightly curved backrest and four slender legs, set against a plain white background with a faint shadow beneath. +train_03197.png A matte black, leather-like swivel office chair with a rounded low back and padded seat, short curved armrests and a single central column leading to a five-spoke caster base, shown upright in a three-quarter frontal view on a plain white background casting a soft shadow. +train_47108.png A compact deep-maroon chair with a slightly plush, smooth-looking upholstery shown in a three-quarter front-right view against a plain white background, revealing a rounded backrest and seat, short tapered legs, and a subtle highlight along the top edge. +train_20575.png A small honey-brown wooden chair with a smooth, slightly glossy finish shown in a three-quarter frontal view, featuring a simple low slatted back and four straight legs, set against a plain white background with a faint shadow beneath. +train_23897.png A low-resolution deep burgundy velvet wingback armchair with rolled arms and a subtly button-tufted back, shown in three-quarter view on short dark-wood legs against a plain white background. +train_35391.png A dark brown glossy wooden chair with a tall, narrow slatted back and slender straight legs is shown in a slightly angled three-quarter front view against a plain white background. +train_27548.png A small warm orange-brown varnished wooden chair is shown in a three-quarter front-left view against a plain white background with a soft shadow, featuring a narrow curved backrest with a central rectangular cutout, a flat square seat, and slim straight legs visible despite the low resolution. +train_30136.png A cream-colored, lightly padded upholstered folding chair with a silver-gray tubular metal X-frame and thin legs, photographed in a slightly angled three-quarter front view against a plain white/gray background, showing a gently curved seat and back with faint seam lines and a soft shadow beneath. +train_08279.png A three-quarter view of a small mid-century–style dining chair with a warm reddish-brown glossy wooden frame and tapered legs, a slightly darker padded seat, and a curved slatted backrest, photographed against a plain white background. +train_12198.png A small antique-style wooden side chair with a warm reddish-brown polished frame and a slightly worn burnt-orange upholstered seat, shown in a three-quarter front-left view against a plain light studio background with a soft shadow beneath, featuring turned front legs and a curved, pierced backrest. +train_00764.png A deep blue fabric-upholstered mid-century modern armchair shown in a front-left three-quarter view against a plain white studio background, with a rounded, slightly tufted back and seat, integrated low armrests, short dark tapered wooden legs and a soft shadow beneath. +train_14207.png An orange-painted, slightly glossy wooden folding chair photographed from a low three-quarter frontal angle against a plain pale wall and floor with a soft cast shadow, showing a slatted backrest and seat, crossed X-shaped folding supports and visible metal hinge hardware. +train_16438.png A small teal-blue upholstered bucket chair with slightly textured fabric and rounded integrated armrests, seen from a slightly elevated three-quarter front view against a pale wall and light wood floor, with thin dark outward‑splayed legs and a visible seam along the seat edge. +train_15378.png A small honey‑brown wooden chair with a smooth varnished finish is shown from a slightly front‑left, low viewpoint against a plain light background with a faint shadow, revealing a narrow vertical‑slatted backrest and simple straight legs. +train_32285.png Warm reddish-brown varnished wooden dining chair with a slightly curved top rail and vertical slatted back, seen in a three-quarter front-left view showing a flat wooden seat, straight square legs and visible wood grain and gloss against a plain pale indoor floor and wall background. +train_22251.png A low-resolution three-quarter view of a matte blue upholstered office chair with a slightly reclined high back and small integrated headrest, short curved armrests and a chrome five-star caster base, set against a plain white background with a faint shadow beneath. +train_10329.png A plush two-tone blue upholstered armchair with rounded, slightly rolled arms and a lighter-blue loose seat cushion, shown in a three-quarter front-left view on a plain white background with exposed tapered wooden legs and a small wooden side table visible at the right. +train_43565.png Warm reddish-brown polished wooden chair with a smooth, slightly glossy grain, shown in a three-quarter frontal view against a plain light background, featuring a curved top rail, vertical slatted back, low curved armrests joined to the front legs, and straight tapered legs. +train_26613.png A deep navy-blue, soft-fabric upholstered armchair shown in a three-quarter front-right view, with a gently curved, slightly tufted back and rounded padded arms, a separate seat cushion and short tapered wooden legs, set against a plain white background with a faint shadow beneath. +train_26572.png A small rose‑pink, plush-upholstered armchair with a rounded, subtly tufted back and short turned wooden legs, shown in a three-quarter view angled slightly to the right, sitting on a warm hardwood floor against a pale wall with a soft shadow beneath. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/chimpanzee_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/chimpanzee_descriptions.txt new file mode 100644 index 0000000..b766ffc --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/chimpanzee_descriptions.txt @@ -0,0 +1,20 @@ +train_07159.png A small chimpanzee with coarse, dark brown–black fur and a lighter, sparsely haired face is shown in a three-quarter frontal pose with its head slightly turned toward the camera, revealing a rounded skull and short muzzle, against a blurred green-brown natural background suggesting foliage and earth, and despite the low resolution its bare facial skin, ear outline and hunched sitting posture are still discernible. +train_25276.png Dark, coarse black-brown furred chimpanzee seen in a grainy frontal three-quarter seated pose with its head slightly tilted toward the camera, revealing a lighter, hairless muzzle and prominent brow and ears, set against a blurred green foliage background and showing a small pale patch on its chest. +train_42040.png A small chimpanzee with coarse dark brown–black fur, a lighter wrinkled grayish face and prominent ears is hunched in a three-quarter pose facing slightly toward the camera, sitting on pale sandy/rocky ground with blurred green-brown vegetation behind it, its arms held close to the body and broad brow and short snout still discernible despite the low resolution. +train_44550.png A close-up three-quarter frontal portrait of a chimpanzee showing coarse dark brown-black fur, a lighter gray, wrinkled muzzle with pinkish lips, prominent brow ridges and dark forward-looking eyes, set against a dim, blurred green-brown background. +train_08688.png A low-resolution frontal portrait of a chimpanzee with coarse dark brown fur and a lighter beige muzzle, facing the camera with visible rounded ears, a pronounced brow ridge and eyes, set against a dim, blurred background. +train_26684.png A low-resolution three-quarter view of a chimpanzee with coarse dark brown–black fur and a smoother pale grayish face, a pronounced brow ridge and small rounded ears, head tilted slightly left against a soft, out-of-focus gray-blue background. +train_38444.png A chimpanzee with coarse, dark brown–black fur and a lighter, hairless pale muzzle sits in a slightly hunched three-quarter frontal pose facing the camera, arms held close to its chest and rounded ears visible against a blurred light-gray stone-like background. +train_07314.png Close-up three-quarter frontal view of a chimpanzee with coarse dark brown-to-black fur and a lighter grayish face, leaning forward so one long-fingered hand and a slightly open mouth are visible, set against a blurred green-brown forest background with a pronounced brow ridge apparent despite the low resolution. +train_27118.png A chimpanzee with coarse, dark brown–black fur and a pale, wrinkled beige face and prominent rounded ears is shown in a three-quarter frontal pose, looking slightly to its right, against a soft, out-of-focus pale blue-green background that suggests sky or water. +train_14404.png A low-resolution three-quarter frontal view of a chimpanzee with coarse dark brown to black fur and a pale, wrinkled gray-pink face, sitting upright with its head slightly tilted toward the camera and showing prominent rounded ears, deep-set eyes and a faintly parted mouth against a blurred green-brown vegetative background. +train_27171.png A chimpanzee with coarse dark brown-to-black fur and a lighter, hairless pale muzzle is shown in a three-quarter head-and-shoulders view turned slightly to its right, set against a soft, blurred green foliage background, with rounded ears, glossy eyes and subtle facial wrinkles visible despite the low resolution. +train_05943.png A small, dark brown-to-black chimpanzee with coarse, slightly shaggy fur and a paler, bare-faced muzzle is seated facing the camera in a slightly hunched pose on a patch of earthy ground, framed by a blurred green-brown natural background, with compact limbs and a rounded head visible despite the low resolution. +train_38201.png A small chimpanzee with coarse dark-brown to black fur and a lighter, slightly pinkish face and hands is seen in three-quarter profile crouching on sunlit green grass, head turned toward the camera against a softly blurred verdant background. +train_44505.png A close three-quarter view of a chimpanzee head with coarse dark brown–black fur, a lighter wrinkled pinkish-gray muzzle and pronounced brow ridges framing forward-facing eyes, set against a softly blurred green-brown foliage background. +train_01902.png A close-up, slightly off-center frontal view of a chimpanzee with coarse, glossy dark brown-black fur, a lighter wrinkled tan-gray muzzle and sparse facial hair, reflective dark eyes and prominent rounded ears, sitting upright against a blurred dark-green foliage or enclosure background. +train_00772.png A small chimpanzee with coarse, dark brown-black fur and a paler, slightly wrinkled pinkish-gray face sits in a three-quarter frontal pose with arms resting on bent knees against a sunlit green grassy background with blurred foliage, its rounded ears, dark eyes, and lighter hands and feet visible despite the low resolution. +train_15338.png A small chimpanzee with coarse dark brown-to-black fur and a pale, slightly mottled face sits upright in a three-quarter frontal pose facing the camera, its glossy eyes and pronounced brow ridge visible despite low resolution, with its hands near a white bowl against a dim, cluttered indoor background. +train_44706.png A low-resolution three-quarter frontal view of a chimpanzee with coarse dark brown-black fur and a pale, wrinkled grayish face and muzzle, rounded ears and reflective dark eyes visible despite blur while it sits upright against a soft, out-of-focus bluish-gray background. +train_39499.png This chimpanzee has coarse dark brown–black fur with a paler, slightly wrinkled face and hands, shown in a three-quarter frontal seated pose with long forearms resting on bent knees against a plain, low-contrast gray background, its rounded ears, prominent brow ridge and lighter muzzle still discernible despite the low resolution. +train_03519.png A low-resolution close-up three-quarter profile of a chimpanzee with coarse dark brown–black fur and a lighter tan-gray face and chin with sparse whisker hairs, turned slightly to its left so the prominent brow ridge, eyes and short wrinkled muzzle are visible against a dim, out-of-focus greenish-black background suggesting foliage. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/classnames.txt b/utils/area/descriptions/cifar100/generated_descriptions/classnames.txt new file mode 100644 index 0000000..8ab1e4e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/classnames.txt @@ -0,0 +1,100 @@ +apple +aquarium fish +baby +bear +beaver +bed +bee +beetle +bicycle +bottle +bowl +boy +bridge +bus +butterfly +camel +can +castle +caterpillar +cattle +chair +chimpanzee +clock +cloud +cockroach +couch +crab +crocodile +cup +dinosaur +dolphin +elephant +flatfish +forest +fox +girl +hamster +house +kangaroo +keyboard +lamp +lawn mower +leopard +lion +lizard +lobster +man +maple tree +motorcycle +mountain +mouse +mushroom +oak tree +orange +orchid +otter +palm tree +pear +pickup truck +pine tree +plain +plate +poppy +porcupine +possum +rabbit +raccoon +ray +road +rocket +rose +sea +seal +shark +shrew +skunk +skyscraper +snail +snake +spider +squirrel +streetcar +sunflower +sweet pepper +table +tank +telephone +television +tiger +tractor +train +trout +tulip +turtle +wardrobe +whale +willow tree +wolf +woman +worm \ No newline at end of file diff --git a/utils/area/descriptions/cifar100/generated_descriptions/clock_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/clock_descriptions.txt new file mode 100644 index 0000000..86cf966 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/clock_descriptions.txt @@ -0,0 +1,20 @@ +train_17083.png A small round clock with a matte white face, thin dark hour and minute hands and subtle dark hour markers set in a slim dark bezel, photographed from a slight angle with a soft glossy glare, mounted against a muted pink, slightly textured background with a faint cast shadow. +train_35226.png A frontal view of a square, heavily ornamented gilded clock with a textured metallic gold frame featuring floral corner rosettes and a carved crest, enclosing a round cream dial with bold black numerals and slender black hands, set against a mottled dark green patterned background. +train_25304.png A small round clock with a warm medium-brown, slightly textured wooden bezel and a smooth white dial, shown nearly front-on against a pale beige background, with bold dark hour and minute hands and clear black hour markers visible despite the low resolution. +train_16283.png A front-facing, flat-design pale turquoise square background featuring a smooth, solid-color surface and a centered white circular clock face with two short solid white hands (no numerals or tick marks), creating a minimalist silhouette with a faint soft shadow for slight depth. +train_46915.png A front-facing round clock with a warm cream-yellowed, slightly mottled face marked by faded black hour numerals and thin dark hands radiating from a visible central pivot, set in a glossy dark-brown wooden bezel with subtle patina and photographed against a softly blurred beige wall. +train_04647.png Head-on view of a glossy, rounded-square orange clock icon with a lighter circular yellow face and two dark hands set roughly at 10:10, plastic-like smooth texture with soft highlights and a subtle shadow, placed on an orange gradient background dotted with small star/sparkle shapes in the corners. +train_02752.png A small vintage twin-bell alarm clock with a matte pink metal casing and chrome-topped bells, shown in a slightly elevated frontal three-quarter view against a pale mottled pink-white background, its round white face bearing bold black numerals, black hour and minute hands and a thin red second hand, with a short curved handle and two small feet visible. +train_39731.png A front-facing round clock with a reflective silver metal bezel and slightly aged off-white face, bold black hour and minute hands and a thin red second hand over simple black hour markers and minute ticks, photographed centered against a plain light-gray background. +train_27012.png A round wall clock shown straight-on has a glossy printed face of a turquoise-to-sky-blue seaside gradient with a tiny dark sailboat on the horizon and a palm-tree silhouette at the left, simple black hour and minute hands centered in a thin metallic bezel, and no legible numerals visible at this low resolution. +train_12872.png A small vintage-style mantel clock with a glossy dark brown wooden case and short fluted side columns, shown front-on resting on a light wooden surface against a cream wall, featuring a round brass bezel surrounding a white dial with black hands and bold dark numerals. +train_41981.png A small, pocket-watch-style clock with a glossy brass rim and deep navy-blue face, white minimalist hour ticks and short white hands seen almost front-on with a slight tilt and tiny top loop, resting on a dark, grainy background and casting a soft shadow. +train_45671.png A small round tabletop alarm clock with a pale blue glossy face and thin dark hands set in a warm brass-toned metal bezel, viewed three-quarters from the front-right against a clean white background with a soft shadow, showing a tiny top knob and two short feet at the base. +train_24448.png A round wall clock with a light-brown, subtly grainy wooden bezel and a matte white face seen nearly head-on, marked by bold black hour/minute hands and simple black hour ticks around a small dark central hub, set against a plain off-white background with a soft shadow at the lower-left. +train_30469.png A small, round twin‑bell alarm clock with a smooth matte black rim and white face bearing bold black hour markers and hands (roughly at 10:10), shot from a slightly elevated front angle and resting against a plain, overexposed white background with soft shadowing. +train_31853.png Frontal view of a small round clock with a matte purple scalloped outer bezel, a metallic gold inner ring surrounding a pale cream face with thin dark hands radiating from a central hub, set against a mottled deep blue–black background. +train_47463.png Close-up, slightly top-right angled view of a small antique-style clock with a warm brass/gold metal bezel and rounded loop at the top, a cream/ivory face with dark slender hands and faint hour markers, and a subtly tarnished, reflective texture set against a dark navy-blue background sprinkled with small light flecks. +train_12670.png A small round wall clock with a pale pink face and glossy silver bezel, viewed nearly head-on with a slight top tilt, showing bold black hour markers and black hour and minute hands plus a thin red second hand, mounted against a smooth light-colored background with a faint circular shadow. +train_18718.png A front-facing close-up of a small rectangular red-orange digital clock with a glossy plastic finish and rounded corners, dark segmented LED numerals (appearing to read 2:03), and a faint top highlight, set against a muted olive-beige background with a soft shadow beneath. +train_10240.png A small round clock with a warm beige matte face, simple black tick hour markers and slender black hour and minute hands plus a thin red second hand, set in a dark metallic rim and shown at a slight top-left oblique angle against a blurred warm brown/wooden background with a soft glare on the glass. +train_05293.png A front-facing round analog clock with a matte silver metal bezel and smooth white face, bold black hour and minute hands, thin black tick-hour markers and a slender red second hand, set against a plain light background with a faint shadow. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/cloud_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/cloud_descriptions.txt new file mode 100644 index 0000000..a3f0738 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/cloud_descriptions.txt @@ -0,0 +1,20 @@ +train_43037.png A small, horizontally elongated pale-white cloud with a soft, slightly mottled texture and faint gray-blue shading toward its center, viewed frontally against a deep cobalt-blue background, its diffuse, wispy edges and subtle darker core giving a modest sense of depth despite the low resolution. +train_34004.png A small, soft-edged white cumulus-like puff with three rounded lobes and subtle gray shading at its base, viewed frontally slightly left of center against a bright cerulean-blue sky with a faint darker-blue vignette. +train_11362.png A small, isolated, bright-white cumulus puff with a soft, scalloped, slightly mottled texture and a faint grayish underside, viewed from below and appearing slightly elongated horizontally against a deep, uniform blue sky with no other clouds. +train_43160.png A small, front-facing, pale white cumulus-like puff with a soft, cottony texture and faint gray undershading, centered against a uniform muted bluish‑gray sky with a subtle gradient and a few thin wispy tendrils separating from its right edge. +train_27970.png A single, isolated bright-white cumulus puff with a lumpy, cauliflower-like texture and subtle gray shading on its lower right, viewed slightly from below against a clear deep-blue sky with a faint gradient and faint ragged wispy tendrils at its base visible despite the low resolution. +train_38202.png A small, slightly elongated cumulus puff with a bright white top and pale gray-blue underside, soft, fluffy texture with diffused, pixelated edges, seen from a low-ground viewpoint against a clear, vivid azure sky with a subtle gradient. +train_48113.png A single, isolated, pale-white to light-gray cumulus-like puff with a soft, fluffy texture and diffused edges viewed from a frontal three-quarter angle, lit from the top-left producing a subtle darker underside and a small lower-right lobe, set against a flat teal-green background. +train_37442.png A small, pale cream-to-beige puffy cloud with soft, slightly wispy edges and subtle darker shading at the base, shown from a frontal/three-quarter viewpoint against a uniform warm orange background, made up of several rounded lobes that suggest a cottony, voluminous form despite the low resolution. +train_35273.png A small, rounded, cottony cloud puff with a creamy-white center and pink‑orange‑tinted edges, lit from the upper‑left so the top appears bright while the underside is muted gray‑brown, seen slightly from below and floating against a smooth warm red–orange sunset gradient background. +train_16979.png A small, isolated bright-white cumulus puff with a soft, billowy, slightly mottled texture and faint gray undershading, viewed head-on against a smooth pale-blue sky background, showing rounded lobes and diffuse edges that convey depth despite the low resolution. +train_15823.png A small, isolated cumulus-like puff with a bright whitish crown and muted gray-beige shadowed underside, showing soft, scalloped, slightly pixelated edges and compact rounded lobes viewed from a low-angle against a pale, slightly warm sky gradient. +train_16703.png A small, compact, creamy-white cloud-like tuft with a soft, fibrous, scalloped texture and faint bluish highlights, seen in a close overhead view resting on a smooth, mottled beige‑gray background with a subtle cast shadow and uneven lobed edges with tiny darker flecks. +train_43328.png A small, isolated, bright-white, cottony cumulus-like puff with rounded lobes, slightly ragged translucent edges and faint lower-right shadowing, seen head-on floating against a uniform pale bluish‑gray sky. +train_18815.png A small, isolated cottony puff sits centered front-on against a deep bluish-gray sky, its soft rounded lobes and slightly darker undersurface visible with subtle pixelated mottling and a faint wispy trail toward the lower right. +train_48726.png A small, isolated puffy cumulus cloud seen from a frontal/side viewpoint against a pale, nearly white sky, appearing as a soft lobed white mass with subtle gray shading on its underside and smooth, blurred edges that suggest a fluffy texture despite the low resolution. +train_35170.png A small, compact, low‑hanging bluish‑gray cloud with soft, slightly nebulous edges sits just left of center on the horizon, silhouetted against a smooth twilight gradient from deep navy above to pale cyan near the horizon, with a faint bright pinpoint above it and a thin dark vertical foreground silhouette at the far left. +train_29461.png A small, puffy off-white cloud with soft, slightly ragged edges and subtle gray shading on its lower-right creating a gentle three-dimensional bulge, viewed from below against a pale bluish‑gray sky with no other distinct foreground features. +train_25542.png A solitary, compact cumulus puff—bright white with a soft, cottony texture and faint gray shading along its lower-right edge—appears slightly elongated horizontally and viewed from beneath against a clear, gradient blue sky. +train_44638.png A small, off-white, cumulus-like puff with soft, diffuse edges and a slightly darker, flatter base appears centered and horizontally elongated against a washed pale blue-gray sky, showing subtle wispy fringes and faint shadowing that convey gentle volume despite the low resolution. +train_35618.png A small, compact cumulus cloud appears bright white with a soft, puffy texture and subtle gray shading on its underside, seen frontally against a clear pale-blue sky and showing a rounded, scalloped top, a slightly flattened darker base, and faint wispy extensions. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/cockroach_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/cockroach_descriptions.txt new file mode 100644 index 0000000..955c113 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/cockroach_descriptions.txt @@ -0,0 +1,20 @@ +train_14370.png A low-resolution dorsal view of a small reddish-brown cockroach with a smooth, glossy, slightly mottled exoskeleton and folded wings, long thin antennae extended forward, spiny legs splayed beneath, casting a faint shadow on a plain light/white surface. +train_13620.png A small, glossy dark-brown to amber cockroach is shown from a slightly oblique dorsal view, its elongated oval segmented body and faint wing covers visible with long thin antennae projecting forward and spindly legs splayed against a bright, uneven white background speckled with tiny brown debris. +train_42546.png A small, oval, glossy reddish-brown cockroach seen from a near-dorsal viewpoint with long forward-pointing antennae and splayed legs, showing a slightly banded, segmented exoskeleton with a darker central stripe, resting on a pale flat surface with a faint shadow. +train_37834.png A small, wingless nymph-like cockroach with a glossy, mottled tan-to-dark-brown exoskeleton and faint longitudinal banding, shown in a dorsal three-quarter view perched on a human fingertip with long thin antennae and spiny translucent legs visible against a softly blurred greenish background. +train_37576.png A small, glossy reddish-brown cockroach seen from above at a slight angle, its elongated, segmented, shiny dorsal shell with a darker head, long thin antennae and spindly legs splayed outward visible against a coarse reddish‑pink fabric background with scattered fibers. +train_48096.png A small, glossy reddish-brown cockroach viewed from a slightly top-angled dorsal pose, its flattened oval body and faint wing covers showing a smooth, shiny texture with long filamentous antennae extended forward and spiny legs splayed on a pale off-white surface casting a soft shadow. +train_24817.png Top-down view of a small cockroach with a glossy dark brown to black, slightly mottled exoskeleton showing faint dorsal segmentation and wing pads, long thin antennae projecting forward and spiny legs splayed outward against a plain white background. +train_42031.png A small, glossy reddish-brown cockroach shown from a dorsal-three-quarter viewpoint with a smooth, slightly shiny, segmented oval abdomen, darker head and pronotum, thin forward-reaching antennae and legs folded beneath it, resting on a plain white background. +train_21978.png A small cockroach seen from a near top-down view with a glossy, reddish-brown, slightly mottled exoskeleton, a tapered segmented abdomen and darker head, faint antennae and legs visible despite low resolution, positioned on a warm orange-brown textured surface resembling wood or cardboard. +train_17624.png A small, glossy reddish-brown cockroach viewed from a slightly angled top-down perspective, showing an elongated, segmented, shiny body with visible thin spiny legs and long antennae, resting on a pale, speckled beige tile or countertop surface with tiny dark flecks. +train_23061.png From a slightly top-down diagonal view the small cockroach appears as a glossy amber‑brown, elongated oval with a smooth, shiny exoskeleton and faint darker dorsal banding, thin forward-reaching antennae, splayed spindly legs, and a soft beige, slightly speckled background with a faint shadow beneath. +train_30287.png A small, flattened, oval-bodied cockroach with a glossy dark reddish-brown, slightly mottled exoskeleton seen from a dorsal three-quarter view with thin antennae projecting forward, faint thoracic and abdominal segmentation and legs partially visible, resting on a pale, slightly textured surface with a soft shadow. +train_21844.png A small, elongated glossy reddish-brown cockroach seen from above with translucent wing covers and a darker head and thorax, long filiform antennae splayed forward and spindly legs to the sides, resting on a smooth peach-pink surface with a faint circular blemish near the top-left. +train_02366.png A small reddish-brown cockroach with a glossy, slightly mottled oval dorsal shield and faint wing covers, shown in a top-down/three-quarter view with long thin antennae extended forward and splayed spiny legs, resting on a light, slightly stained paper surface with smudges and tiny dark specks. +train_35318.png A small reddish-brown cockroach viewed from above and angled diagonally, with a glossy, slightly mottled dorsal exoskeleton and folded wings, long thin antennae extended forward, splayed spiny legs and a darker head/pronotum visible against a pale pinkish-white background that looks like paper or fabric with faint smudges. +train_07558.png A small reddish-brown cockroach with a glossy, slightly segmented exoskeleton and folded wing covers is shown in a close-up dorsal‑angled view, positioned diagonally on a pale, paper‑like background with a small red smudge, its long filamentous antennae extended forward and spiny legs visible beneath the body. +train_21828.png A dark reddish‑brown, glossy cockroach viewed from above with a slightly flattened, smooth leathery body, long thin forward‑curving antennae and partially visible spiny legs, resting on a plain white surface that casts a soft shadow beneath. +train_35205.png A small, shiny reddish-brown cockroach displayed in a slightly diagonal dorsal three-quarter view on a pale beige surface, its elongated segmented body and darker glossy wing covers visible with faint splayed legs and antennae outlines despite the low resolution. +train_25739.png Small cockroach with a glossy medium-to-dark brown, slightly amber-edged segmented exoskeleton seen from a near top-down view with its elongated oval body aligned vertically, faint longitudinal wing lines and a darker head with short antennae visible, resting on a pale beige/wooden textured surface next to a small green circular object casting a soft shadow. +train_20617.png A small reddish-brown cockroach seen from a slightly top-down angle, its smooth, glossy, slightly segmented oval exoskeleton and darker thorax visible with long forward-curving antennae and splayed spiny legs, resting on a plain white surface that casts a soft shadow and shows tiny specks of debris. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/couch_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/couch_descriptions.txt new file mode 100644 index 0000000..f7fccc7 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/couch_descriptions.txt @@ -0,0 +1,20 @@ +train_45497.png A low two-seat burgundy velvet couch shown in a front‑right three-quarter view against a pale wall and wooden floor, with rounded arms, visible seat seams/tufting and short exposed wooden legs. +train_25538.png A bright red, smooth-upholstered two-seater couch with rounded arms and visible cushion seams, shown front-facing on a plain white studio background with a small cast shadow and short dark wooden legs. +train_18387.png A compact navy-blue upholstered two-seat couch with subtle button-tufting on the back and low tapered wooden legs, seen from a slight left-front three-quarter viewpoint set on a pale floor against a light neutral wall. +train_04469.png A compact mustard-yellow, velvet-textured two-seat sofa with rounded arms and a low back, photographed in a front three-quarter view from slightly above against a plain pale studio background with a soft cast shadow and short dark legs visible. +train_47540.png A light-gray woven-fabric two-seat couch seen from a slight front-left angle, with boxy straight arms, a low tufted back and visible central seam between the seat cushions, standing on short dark legs against a plain pale wall and light floor. +train_31255.png A mustard-yellow, plush, velvet-like two-seat sofa seen head-on with rounded arms and subtle vertical seam lines on the back cushions, resting on short dark wooden legs against a plain off-white wall and light wood floor. +train_18929.png A mid-brown, suede‑looking two-seat couch photographed from a slight left-front angle against a pale wall and radiator, with rounded arms, two visible seat cushions and a slightly sagging center seam plus a light-colored throw pillow on the left. +train_01382.png A small two-seat pale beige/tan upholstered sofa with smooth, slightly rounded arms and plump seat cushions, shown from a slight front-right angle on a plain white background, raised on short wooden tapered legs and with subtle seam lines across the cushions. +train_00674.png Three-quarter frontal view of a small two-seater brown leather-like couch with a smooth, slightly glossy texture, low back and subtly rolled arms, visible seam detailing and short dark wooden legs set on a light floor against a plain pale background. +train_37006.png A compact cobalt‑blue upholstered sofa seen from a slight frontal three‑quarter angle against a plain light background, with soft, slightly textured fabric, two seat cushions and a tufted/pleated back, rounded padded arms and short dark legs visible despite the low resolution. +train_11805.png A small two-seater deep red velvet tufted sofa with rolled arms and short wooden legs, shown front-on in a warm interior on a hardwood floor with a beige wall, a lamp and framed picture to its left and a darker armchair to its right. +train_47061.png Front-facing compact burnt-orange sofa with a slightly worn matte fabric texture, visible two-seat cushion seams and rounded armrests, sitting on a light wooden floor against a dark teal-green wall. +train_29587.png A low-resolution image of a small muted teal upholstered couch seen from a slightly elevated, front-facing viewpoint, set against a pale wall and darker floor, with rounded arms, a low back and a visible central seam on the seat cushion suggesting a worn fabric texture. +train_30836.png A low-profile two-seat couch upholstered in warm light-tan, slightly nubby fabric with loose back cushions and two inset seat cushions, shown from a slight front-left angle against a pale wall and light wood floor with a blurred framed print and potted plant behind it, distinguished by its boxy rounded arms and a darker throw pillow at the left end. +train_13040.png A low-resolution, head-on view of a deep burgundy upholstered two-seat sofa with rounded arms and a subtly tufted back, the fabric appearing soft/matte, positioned on a light-colored floor against a pale wall with indistinct household clutter in the background. +train_49576.png A low, two-seat burgundy velvet couch viewed from a slightly elevated front-right angle, set against a pale wall on a light wooden floor, with squared arms, visible seam lines and slight seat indentations and a lighter-colored throw pillow on the right. +train_33466.png A small soft-pink two-seater sofa seen from a slightly elevated frontal angle against a plain white background, with rounded armrests and back, subtle darker shading suggesting plush upholstered fabric and faint seam lines dividing the seat into two cushions above short dark legs. +train_38706.png A front-facing, slightly elevated view of a compact burnt-orange, velvet-like upholstered couch with a low back, subtly tufted seat cushions, rounded arms and short exposed wooden legs set against a warm-toned interior with a reddish wall and wooden floor. +train_49070.png A small beige, slightly glossy leather two-seater sofa shown front-on with a slight top-down angle against a plain white background, featuring smooth texture, rounded armrests, two distinct back cushions and subtle seam lines along the seat. +train_16032.png A low-resolution, straight-on view of a warm tan/beige upholstered two-seat couch with a slightly shiny, smooth leather-like texture, low rounded arms and visible seat seams, positioned on a light-colored floor against a plain pale wall with a small indistinct framed object hanging above. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/crab_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/crab_descriptions.txt new file mode 100644 index 0000000..3ffe1b1 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/crab_descriptions.txt @@ -0,0 +1,20 @@ +train_02439.png A bright orange-red crab with a slightly glossy, mottled carapace and jagged, spiny legs is shown from a top-down view with its claws forward, perched on a pale sandy-beige background. +train_04075.png A small pink-orange crab viewed from above with a glossy, slightly mottled carapace and splayed legs and claws, resting on a plain pale surface (possibly a plate) with subtle shadowing. +train_48097.png A small orange-brown crab seen from above with a slightly domed, speckled carapace bearing a darker central patch, claws held forward and legs splayed against a warm-toned, rough rock or sandy background. +train_30861.png A small, glossy bright-orange crab depicted from a near top-down/frontal viewpoint with two prominent raised claws and several splayed legs, a smooth rounded carapace with white highlights and gradient shading suggesting a slightly shiny texture, set against a plain white background. +train_47806.png A small pale orange-brown crab with a smooth, slightly glossy carapace and white-tipped jointed legs is seen from a low frontal angle with its legs splayed and claws slightly raised, standing on a coarse sandy-beige surface against a softly blurred warm background, its dark eye spots and segmented limb joints visible despite the low resolution. +train_34682.png Top-down view of a small beige-tan crab with a slightly mottled, smooth-to-bumpy carapace, outstretched legs and small claws splayed symmetrically, set against a soft blue background with a faint shadow beneath, the darker central markings and bilateral leg arrangement visible despite the low resolution. +train_32611.png A low-resolution, top-down view of a small dark brown crab with a slightly mottled, glossy-looking carapace, legs and pincers splayed outward and slightly raised, sitting isolated on a pale white background with a faint shadow beneath. +train_49333.png A small, glossy orange-red crab seen head-on with its claws raised and legs splayed, displaying a smooth, rounded carapace and tiny black eyes on short stalks against a dark, softly gradated brown background. +train_34139.png A small, round orange-red crab shown from above with a mottled, slightly bumpy carapace and pale-speckled legs splayed outward with front claws visible, resting on a smooth pale-tan sandy/rocky surface with faint dark specks. +train_35076.png A small reddish-orange crab viewed from above with a glossy, slightly mottled and bumpy carapace, legs splayed outward and front claws held forward, sitting on a dark, rocky or sandy background with faint pale markings on its shell. +train_20562.png A top-down view of a small, light orange-beige crab with a smooth, slightly mottled carapace and darker orange-brown patches, its thin segmented legs and forward-reaching claws splayed symmetrically against a warm sandy-beige background with a soft shadow beneath. +train_49990.png This small crab appears bright orange with a smooth, slightly glossy carapace, splayed segmented legs and two prominent claws, viewed from a slightly angled top-down perspective on a dark bluish, rocky/sandy background with a faint lighter patch and tiny dark eye spots visible despite the low resolution. +train_22145.png Top-down view of a small bright orange-red crab with a smooth, glossy carapace marked by a pale central spot and subtle white highlights, legs splayed and claws raised, resting on a mottled teal-green surface. +train_38006.png A small pale pinkish-orange crab with a smooth, slightly glossy rounded carapace and subtle darker speckling, legs and short pincers splayed symmetrically in a slightly top-down frontal pose, positioned centrally on a featureless dark background that accentuates its limb outlines. +train_21258.png A top-down view of a bright orange-red crab with a glossy, slightly bumpy carapace, splayed legs and folded claws, resting on a light-colored plate or surface against a warm-toned background. +train_19501.png A small orange-brown crab with a slightly glossy, mottled carapace is shown in a top-down view with its legs and tiny claws splayed outward on a grainy sandy-beige substrate against a faint greenish-gray background, the rounded shell and darker frontal markings visible despite the low resolution. +train_20191.png A small bright orange-red crab with a glossy, slightly mottled carapace and darker-tipped claws, posed facing slightly toward the camera with legs splayed on a pale sandy-beige rocky surface scattered with tiny pebbles. +train_03716.png A compact, round, bright coral-orange crab viewed from the front with a slight top-down angle, its smooth, slightly mottled shell showing two small raised eyes and tiny stubby claws and legs, set against a soft pale-pink background. +train_17686.png A small reddish-orange crab with a smooth, slightly glossy, mottled carapace and a darker central area, seen from a slightly elevated frontal-top view with legs splayed laterally, tiny raised claws and visible eye stalks, resting on a coarse sandy/pebbly brown beach surface. +train_26693.png A small reddish-orange crab captured from above, its compact, mottled, slightly glossy carapace and short splayed legs visible as it sits on a dark, wet rocky surface with a few bright reflections, the rounded outline and limb joints discernible despite the low resolution. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/crocodile_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/crocodile_descriptions.txt new file mode 100644 index 0000000..10842c9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/crocodile_descriptions.txt @@ -0,0 +1,20 @@ +train_09832.png A small crocodile with mottled olive-green and gray scaly skin and pronounced bony dorsal ridges is shown in a low three-quarter side view, body stretched horizontally with a tapered snout and closed mouth, limbs splayed and resting on a pale blue watery/tiled surface. +train_03910.png A small green crocodile figure with a mottled, bumpy scaly texture and a lighter yellow‑green underside is shown in side profile with its head pointing left and tail curving right, resting on a coarse dark gravel/asphalt surface dotted with pale pebbles, its raised dorsal ridges and slightly open mouth visible despite the low resolution. +train_25747.png An olive-green, slightly mottled small plastic crocodile figure with a bumpy, scaly texture lies in left-profile on a pale bluish-gray flat surface, showing a lighter yellowish underside, short splayed legs, an elongated snout and raised dorsal ridges visible despite the low resolution. +train_17559.png A muted olive-green crocodile with rough, scaly, slightly mottled skin is shown from a slightly oblique top-down view lying horizontally (tail left, head right) with visible raised dorsal scutes and short limbs against a sandy-beige, grainy background dotted with small dark specks. +train_02092.png A small, brown‑tan crocodile figurine with darker mottled patches and a rough, bumpy scaly texture is shown in a three‑quarter top view lying on its belly with its snout and slightly open mouth angled toward the camera, a ridged dorsal row of scutes and short legs visible, set against a vivid cobalt‑blue background. +train_19858.png A muddy olive-green crocodile with a rough, bumpy scaly texture is shown in a slightly diagonal side profile—snout pointing upper right, tail lower left—resting on a pale sandy or concrete surface with faint shadows, its raised dorsal ridges, long narrow snout and short legs discernible despite the low resolution. +train_30604.png A small brownish-green crocodile with rough, bumpy, scaly texture is seen in a slightly curved lateral pose from an overhead/angled viewpoint on a pale sandy-beige background, its elongated snout, raised dorsal scutes and short limbs still discernible despite the low resolution. +train_10366.png A small olive-green crocodile figurine with a slightly glossy, pebbled-scale texture is shown in a three-quarter dorsal-side view, its body gently curved to the left revealing pronounced raised dorsal scutes and a ridged tail, short splayed legs and a closed snout with faint eye detail, set on a plain off‑white background casting a soft shadow. +train_35632.png A low-resolution greenish-brown crocodile with mottled darker scales and a rough, ridged back is shown in a low-angle side-to-three-quarter pose lying on a pale sandy/muddy bank by murky water, its elongated snout, visible closed jaws, rows of raised scutes along the spine and short splayed legs discernible despite the blur. +train_31594.png A greenish-brown, rough, scaly crocodile is shown in a low-resolution three-quarter side view lying on a light gray concrete or sandy floor with its elongated, ridged snout pointed left and mouth closed, prominent bony dorsal scutes and a curved tail visible, and short stubby legs tucked beneath the body. +train_13955.png A small, tan-to-light-brown crocodile with a rough, slightly mottled scaly texture is shown in a three-quarter side view with its head to the left and body curving to the right, mouth closed and dorsal ridges and short limbs visible against a pale aqua, slightly speckled background. +train_36457.png A small turquoise-green crocodile toy with a slightly glossy, smooth-plastic texture is shown in a rightward three-quarter side view lying flat on a plain white background, with visible raised dorsal scutes, a textured toothed snout, and short stubby legs and tail apparent despite the low resolution. +train_30751.png A small glossy lime-green plastic crocodile toy viewed in near-profile from above, body stretched left-to-right with tail trailing, head turned to the right with mouth slightly open revealing white triangular teeth, molded scaly texture and raised dorsal scutes, and short stubby legs visible against a plain white background casting a faint shadow. +train_42787.png A small, dark olive-brown crocodile-shaped object with lighter yellow-brown speckling and a rough, ridged, scaly texture lies side-on and horizontal on a pale wooden/sandy background, its broad snout pointing right and raised back ridges and stubby legs visible despite the low resolution. +train_42258.png A greenish-brown crocodile with rough, pebbled scales and prominent dorsal scutes is shown in a three-quarter side view lying on a sandy, muddy bank with patches of green vegetation, its elongated snout, splayed legs and tapering tail still discernible despite the low resolution. +train_30271.png A small olive-green crocodile photographed in a diagonal, slightly dorsal three-quarter view with rough, mottled scaly skin and pronounced dorsal ridges, head angled to the right, limbs splayed and tail tapering to the left against a flat black background. +train_03545.png A small greenish-brown crocodile with rough, keeled scaly skin and pronounced dorsal scutes lies diagonally (head to the left, tail to the right) in an oblique top-down view on a pale sandy or concrete surface, its tapered snout and short limbs tucked close to the body visible despite the low resolution. +train_48775.png A small olive-green crocodile shown in side-profile with its snout pointing right, displaying a mottled, bumpy scaly skin, pronounced dorsal ridges and short splayed legs, resting on a pale fabric surface with a faint blue-green band across the top. +train_15066.png A low, side-profile view of a dark olive-green crocodile with rough, pebbly scales and pronounced dorsal scutes, body stretched diagonally with its head slightly raised and limbs tucked, resting on a muddy, vegetation-strewn bank against a muted green-gray background. +train_37704.png Small bright-green, slightly glossy rubber crocodile lies horizontally in a three-quarter side view, showing a textured ridged back and short legs with its mouth ajar revealing a hint of pink-red interior and tiny white teeth, placed on a warm brown wooden surface against a soft, out-of-focus beige background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/cup_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/cup_descriptions.txt new file mode 100644 index 0000000..c73362d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/cup_descriptions.txt @@ -0,0 +1,20 @@ +train_33416.png A glossy bright-red cup seen from a slightly elevated front-top angle against a dark/black background, showing a smooth reflective surface, a lighter inner rim and a small bright specular highlight on the rim. +train_01051.png A small off-white, slightly glossy stemmed ceramic cup with a rounded bowl and narrow footed base is shown from a slightly elevated frontal view centered on a warm brown surface against a dark background, with glaze highlights and interior shadowing emphasizing its smooth texture. +train_48868.png A small, footed goblet-shaped cup with a glossy warm brown-to-amber mottled glaze and subtle darker rim, shown upright in a slight three-quarter frontal view on a dark surface with a short pedestal base and a soft highlight and faint shadow against a black background. +train_32373.png A gold-toned metallic goblet with a flared rim and rounded, slightly bulbous bowl perched on a slender stem and circular base, viewed frontally with a slight top-down angle against a deep black background and showing glossy specular highlights and a few darker tarnished patches. +train_27511.png A small glossy white ceramic cup seen from above, its narrow saucer rim and small right-side handle visible, filled with light-brown frothy coffee crema and set against a stark black background. +train_09332.png A small cream-colored ceramic cup with a glossy, slightly speckled finish, photographed at a shallow top-right angle showing the rounded rim and a single loop handle on the right, sitting on a dark surface against an out-of-focus black background with bright specular highlights on the rim and a soft shadow beneath. +train_37740.png An off-white, slightly glossy ceramic mug with a small rounded handle on the right is shown from a slightly elevated frontal angle revealing a dark interior, sitting on a light-gray tabletop against a pale, out-of-focus background with a soft cast shadow to the lower left. +train_45240.png A glossy cream-colored ceramic cup with a slightly darker rim and a rounded right-side handle, seen from a slightly elevated frontal angle resting on a warm wooden surface with a blurred dark background and a small reddish round object partially visible behind it. +train_26422.png A translucent pale-pink glossy glass cup with a rounded bowl, short stem and small loop handle on the right, shown in a slightly elevated three-quarter frontal view with rim highlights and a faint shadow on a plain white/gray surface. +train_35529.png A clear, smooth glass cup with a rounded bowl and short stem sits upright on a flat white surface, seen slightly from above against a pale blue background, its transparent surface showing bright specular highlights and a faint circular shadow beneath the base. +train_11942.png A glossy off‑white ceramic teacup photographed from a slightly elevated three‑quarter top view, showing a smooth rounded rim and shadowed interior, a small curved handle at the right, and resting on a warm beige surface with a soft cast shadow to the lower right. +train_36349.png A small glossy off-white ceramic teacup with a rounded handle rests upright on a matching saucer, seen from a slightly elevated front-right angle against a soft beige background with warm lighting that creates smooth highlights and a faint shadow beneath. +train_49434.png A small shiny metallic gold cup-shaped trophy with two curved side handles and a flared rim, seen front-on at a slight downward angle sitting on a short black pedestal, its glossy reflective surface catching highlights against a plain white background. +train_14524.png A small glossy white porcelain teacup with a faint bluish tint and smooth reflective surface, shown in a slightly elevated three-quarter view resting on a dark, softly blurred tabletop background, with a thin curved handle and a subtle hairline chip on the rim visible despite the low resolution. +train_06743.png Centered on a solid black background, a clear stemmed cocktail/martini glass is shown slightly top-front (front-on with a slight downward view) containing a glossy translucent purple-pink liquid, a small red garnish on the rim and a thin lime-green stirrer leaning into the bowl, with bright white highlights on the glass surface and base. +train_36404.png A small glossy peach‑orange goblet-shaped cup with a short stem and round foot, centered in a slight top-front viewpoint against a soft cream background with a faint shadow beneath, its smooth reflective surface and rounded rim visible despite low resolution. +train_29752.png A small metallic silver goblet-style cup with a smooth, slightly reflective surface and bright specular highlights, shown upright from a slightly elevated frontal angle that reveals its rounded bowl, slender stem and circular base, set against a plain light background with a faint soft shadow underneath. +train_41611.png A small, handle-less ceramic cup with a warm cream-to-beige mottled glaze and slightly darker brown interior, shown from a shallow top three-quarter view revealing its gently flared rim and glossy surface highlights, set on a dark textured surface against a shadowy background with pronounced side lighting. +train_08347.png A small antique-looking bronze goblet with a tarnished, mottled brown-and-gold surface and subtle ornamental banding sits upright on a slender stem and round base, shown from a slightly elevated frontal view against a plain white background. +train_43933.png A small, glossy ceramic cup photographed from a slightly elevated frontal angle, showing a vivid turquoise rim and warm amber-orange inner band contrasting with a dark, almost black exterior and a short stem/foot, with bright reflective highlights and a plain deep black background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/dinosaur_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/dinosaur_descriptions.txt new file mode 100644 index 0000000..067fa78 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/dinosaur_descriptions.txt @@ -0,0 +1,20 @@ +train_25977.png Small bipedal dinosaur toy rendered in mottled rusty-brown and ochre tones with a rough, scaly texture, shown in a three-quarter side view standing on hind legs with short clawed forelimbs and a long tapering tail against a plain dark gray background and faintly reflective surface, its elongated snout and subtle dorsal ridges visible despite low resolution. +train_13072.png A small mustard-orange plastic toy dinosaur with a smooth, slightly glossy surface and faint darker mottling, shown in a three-quarter profile facing right with short forelimbs, a ridged spine and raised tail, standing on a pale flat surface against a softly blurred beige background. +train_48438.png A small glossy cobalt-blue toy dinosaur with a paler turquoise belly and smooth plastic texture is shown in a three-quarter frontal pose facing right on a bright white surface with a faint shadow, its rounded plump body, short tail, tiny stubby legs and arms, and a single dark eye visible despite the low resolution. +train_21288.png A flat, solid-white, pixelated silhouette of a small bipedal dinosaur in right-side profile, leaning forward with a raised tapering tail, tiny grasping forelimbs, pointed snout and clawed hind feet set against a uniform black background. +train_00453.png A small bright-green plastic dinosaur toy with a lighter beige underside and darker green speckling, shown in a left-profile bipedal stance with its head tilted forward and short forearms visible, standing on a brown surface against a blurred grass-green background and displaying molded scale texture and a ridged tail despite the low resolution. +train_18870.png A small, warm brown, slightly fuzzy toy-like dinosaur seen in left-profile standing pose with a rounded head, short forelimbs, chunky hind legs and a tapered tail, set on a plain light/white background with soft shadowing. +train_00793.png A small teal-green plastic dinosaur head with a glossy, slightly scuffed texture is shown in a three-quarter profile facing left, mouth ajar to reveal blunt triangular teeth and a pronounced ridged brow and snout, silhouetted against a deep black background. +train_32036.png A small, dark brown to charcoal, matte-textured quadrupedal dinosaur seen in left-side profile with a slightly arched back and long tapering tail, short sturdy legs and a vague row of raised dorsal bumps or plates, set against a plain white background. +train_13308.png A small bright-orange, plush-textured toy dinosaur shown in three-quarter profile facing right, with a rounded body, lighter-orange ridged plates along its back, a pale eye dot and stubby legs, set against a blurred teal-green background. +train_12958.png A small green plastic toy dinosaur with a mottled, slightly glossy scaly texture and a pale yellow underside is shown in three-quarter profile facing left, displaying a short snout, raised dorsal ridges and tiny forelimbs against a dark, textured fabric background. +train_10442.png A small, stylized brown sauropod shown in a three-quarter side view with a long curved neck and tail, a lighter tan underside and subtle mottled texture, standing on four short legs against a plain white background. +train_26458.png A small orange-yellow plastic toy dinosaur with a slightly speckled, matte texture is shown in left-side profile standing on a dark tabletop against a blurred warm-brown background, with a short thick neck, chunky body, stubby legs and faint raised ridges along its back. +train_41008.png A small mottled tan-and-brown toy dinosaur with a rough, speckled surface seen from a three-quarter right-facing viewpoint, sitting on a pale, softly lit background and showing a rounded body, short tail and faint ribbed texture along its back. +train_06253.png A small, brown toy-like dinosaur rendered in a mottled dark-brown and tan pebbled/scaly texture, shown in a three-quarter left profile with short forearms, chunky hind legs and an extended tail, positioned on a plain white background with a faint shadow underneath. +train_31680.png A small orange plastic stegosaurus-like dinosaur with a glossy, slightly mottled surface and darker orange dorsal plates, shown in three-quarter profile with its head raised and tail arched, standing on a blurred green grassy background while raised back plates and stout legs remain discernible despite the low resolution. +train_46026.png A small, warm brown, slightly glossy toy-like dinosaur with a rough, scaly texture and a subtle yellowish highlight on its head, shown in a close-up three-quarter view with its head turned left and tail trailing right against a dark, out-of-focus background, notable for short stout limbs and a series of raised ridges along its back. +train_24485.png A low-resolution side-profile of a green, scaly dinosaur with a long neck and tail, faint darker striping, chunky column-like legs and a small lowered head as if walking on grassy ground, set against a blurred green vegetation background. +train_49641.png A dark green, scaly-looking dinosaur toy seen in a right-facing three-quarter pose with a lighter yellow-green underbelly, a slightly open jaw hinting at small white teeth, short forelimbs and a tail silhouette visible, photographed against a plain light gray/white background. +train_42692.png A small brown, weathered figurine of a stegosaur-like dinosaur is shown in three-quarter profile with a rough, wood-like texture, a row of triangular dorsal plates and a spiky tail visible while standing on four stout legs against a plain white background. +train_33724.png A small olive-green, smooth-textured quadrupedal dinosaur depicted in left-facing side profile with a slightly raised tail against a plain white background, showing a paler yellow underside, darker dorsal shading and a row of small rounded plates or bumps along its back and stubby legs. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/dolphin_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/dolphin_descriptions.txt new file mode 100644 index 0000000..61ef6d1 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/dolphin_descriptions.txt @@ -0,0 +1,20 @@ +train_05127.png A small, smooth, light-aqua dolphin with a white belly shown in side profile, arched as if mid‑leap with a visible dorsal fin, pectoral fin and tail flukes, rendered in a glossy, cartoon-like texture against a uniform bright turquoise circular background. +train_21345.png A small, slate-gray dolphin shown in side profile with a slightly upturned beak and visible dark eye, its smooth, slightly fuzzy body with a paler underside and a short dorsal fin set against a plain white background. +train_00135.png A small, smooth, glossy pale turquoise dolphin figurine with a darker blue patch along its back, posed three-quarter to the right and slightly tilted upward on a uniform light-blue background, showing a simple dark eye, short rounded snout, dorsal fin and curved tail flukes that remain discernible despite pixelation. +train_35905.png A small dolphin with smooth, slightly glossy gray skin and a paler underside lies on its side near the shoreline, seen from a slightly elevated three-quarter view that reveals a curved dorsal fin, pointed rostrum, and subtle body contour against wet, rippled sand and shallow water. +train_49248.png A small two-toned blue toy dolphin with a smooth, glossy texture and lighter belly is shown in a left-facing, slightly curved pose with a visible dorsal fin and pointed snout, resting on a pale, slightly textured background. +train_45665.png A smooth, slate-gray dolphin with a paler underside is shown in a three-quarter side view arching mid-leap—its streamlined, torpedo-shaped body, pointed rostrum and upright dorsal fin are visible against a pale gray-blue, slightly mottled water background with a faint splash or shadow beneath, edges soft from low resolution. +train_13529.png Smooth, glossy pale-gray dolphin with a lighter underside seen in a three-quarter side view, its elongated beak angled slightly upward and dorsal fin and curved streamlined body clearly silhouetted against a mottled turquoise-blue water background. +train_03864.png A smooth, wet-looking bluish-gray dolphin with a lighter underside and a slightly darker dorsal stripe is shown in side profile mid-leap with its body arched and rostrum pointed to the right, small dorsal fin visible, set against a pale blue, gently rippled water background with subtle splashing that highlights its streamlined, tapered shape despite the low resolution. +train_19212.png A smooth, slate-gray dolphin with a darker back and lighter underside is shown in a slightly angled side view with its body gently arched, visible slender beak, triangular dorsal fin and pectoral fin, and a subtle glossy, toy-like texture resting on a pale sandy-beige background. +train_47776.png A smooth, slate-gray dolphin with a bluish tint and a paler underbelly is seen in a side–three-quarter pose, its streamlined, slightly arched body with an elongated beak and small triangular dorsal fin visible above mottled turquoise water with bright reflections. +train_37648.png A small light-gray dolphin figure with a soft, slightly fuzzy texture and a white underside is shown in a three-quarter side view lying on its side with a gently curved body and upturned tail on a pale fabric surface against a darker, out-of-focus background, its rounded snout, tiny dark eye, dorsal fin and pectoral fins still discernible despite the low resolution. +train_05760.png A small light-blue dolphin figurine with a smooth glossy surface is shown in right-facing side profile with a slightly arched body, pointed beak, raised dorsal fin and split tail visible against a plain white/neutral background, with a subtle darker-blue stripe along the back and soft, slightly blurred edges from the low resolution. +train_06922.png A wet, slate‑gray dolphin with a lighter underside and smooth, glossy skin is seen from an oblique overhead view, its curved body and upright dorsal fin breaking turquoise, sun‑speckled water with a small pale splash near the head. +train_40250.png A low-resolution image of a smooth, mid-gray dolphin with a paler underside, shown side-on and slightly from above with its pointed rostrum and curved dorsal fin visible, resting against a pale sandy‑beige background that suggests shallow water or beach, the overall silhouette and a faint belly stripe discernible despite blurring. +train_42312.png A small light-gray dolphin with smooth, slightly glossy skin is shown in a three-quarter side view, body gently arched and head angled upward with a visible dorsal fin and lighter underbelly against deep blue, slightly rippled water, the darker dorsal shading and streamlined shape discernible despite low resolution. +train_00505.png A bluish‑gray dolphin shown in a three‑quarter side profile with smooth, glossy skin and a lighter pale belly, its streamlined body, pointed rostrum and curved dorsal fin visible as it arcs near the water surface against a mottled turquoise background with subtle light reflections. +train_49204.png Appearing in a three-quarter side view, the dolphin has smooth, pale gray skin with a lighter underside and subtle sheen, its streamlined body curved mid‑swim with a pointed rostrum, visible dorsal fin and flipper set against deep blue water streaked with white foam. +train_36642.png A small pale blue-gray dolphin with a lighter white underside and smooth, slightly glossy skin is shown in a three-quarter side view angled to the left, its short beak, tiny dark eye and curved mouth plus a dorsal fin and tail fluke faintly discernible against a soft, muted bluish-gray, out-of-focus watery background. +train_35592.png A low-resolution, dark-gray, smoothly textured dolphin silhouette shown in right-facing profile in a curved, leaping pose—short beak, pointed dorsal fin and tapered tail flukes visible—set against a pale blue sky with a faint, blurred horizon over water. +train_20394.png A small slate-gray dolphin with smooth, glossy skin and a paler underside is captured in a three-quarter side view arcing upward as if breaching, its pointed rostrum and curved dorsal fin discernible against a deep, shadowy blue water background with faint specular highlights. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/elephant_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/elephant_descriptions.txt new file mode 100644 index 0000000..68d872a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/elephant_descriptions.txt @@ -0,0 +1,20 @@ +train_16115.png A dusty gray elephant with coarse, wrinkled skin is seen in a three-quarter side view, standing with its trunk lowered and one front leg slightly forward against a muted savanna backdrop of dry brown grass and pale sky, its bulky silhouette, rounded back and large ear clearly discernible despite the low resolution. +train_14564.png A small warm brown-orange elephant figurine with a slightly glossy, worn texture and visible carving marks stands in three-quarter profile facing right with its trunk raised, set against a blurred dark burgundy and black background on a flat surface. +train_24474.png A small, light-gray elephant figurine with a matte, slightly pebbled texture is shown in a side three-quarter view facing left with its trunk curled down toward its front legs and short pale tusks, standing on a warm beige surface against a muted bluish-gray background. +train_35803.png An elephant with coarse, wrinkled gray skin tinged pink by warm lighting stands in a near-frontal pose, its trunk hanging down between thick front legs and large fan-like ears partially spread against a dim, reddish-purple indoor background. +train_03427.png A dark brown–gray elephant with coarse, wrinkled skin is shown in a three-quarter left-facing stance with its trunk hanging down and a rounded ear and small tusk stubs visible against a dim, zoo-like backdrop of wooden fencing and rock. +train_25707.png A dull gray elephant with heavily wrinkled, leathery skin and patches of brown mud is shown in side profile walking left with its trunk hanging low and a large fan-shaped ear visible against a pale stone enclosure and sandy ground in bright daylight, its tusks not prominent at this resolution. +train_05836.png A dusty gray-brown elephant seen in a three-quarter side view with rough, wrinkled, dust-coated skin and a slightly lowered trunk, standing on reddish-brown ground against blurred green foliage, its large ear and trunk contours visible despite the low resolution. +train_25141.png A small, warm terracotta‑orange elephant figurine with a rough, slightly pitted matte surface is shown in three‑quarter profile facing left with its trunk curled down toward its front foot, a rounded ear and stubby legs visible, set against a softly blurred beige background with a faint shadow beneath. +train_01697.png A dark gray, coarse-wrinkled adult elephant shown in near-side profile with its trunk hanging downward and slightly curved, a large flared ear and thick columnar legs visible against a pale, overexposed plain background with a smaller elephant partially obscured behind it. +train_11127.png A low-resolution image shows a gray-brown elephant with coarse, wrinkled skin in a three-quarter frontal pose, its trunk hanging down and a large ear folded back, standing on a blurred grassy/muddy plain with indistinct vegetation behind it, the bulky body and thick limbs remaining the clearest distinguishing features despite the low detail. +train_06744.png A dark-gray, coarse-wrinkled elephant shown in a three-quarter side view standing with its trunk hanging toward the ground and head slightly turned, its broad fan-like ear and sturdy columnar legs visible against a low-resolution backdrop of short green grass and blurred trees under daylight, with pronounced skin folds and sparse hair texture still discernible despite the blur. +train_21483.png A low-resolution side-view of a gray elephant with rough, wrinkled skin, shown walking left with its trunk hanging down and a large ear partially visible against a blurred green grassy background, the animal’s broad body and thick pillar-like legs discernible despite pixelation. +train_36597.png A low-resolution elephant with coarse gray, deeply wrinkled skin viewed three-quarters from the front with its trunk hanging down, broad textured ears slightly flared, and legs visible against an indistinct pale/white background with no clear environmental detail and no prominent tusks apparent. +train_17028.png A low-resolution side-profile of a gray, wrinkled-skinned elephant standing with its trunk slightly curved downward and a large ear and rounded back visible against a blurred green grassy background and pale sky, its sturdy legs forming a clear silhouette. +train_44675.png A gray, wrinkled-skinned elephant shown in profile with its trunk hanging down and ears slightly splayed, standing on a sunlit grassy plain with a blurred pale horizon, its bulky rounded body, thick legs and dust-dappled, textured hide visible despite the low resolution. +train_30507.png A dusty gray-brown elephant captured in a three-quarter side view with coarse, wrinkled skin and its trunk hanging down, standing on sunlit dry grass against a soft-focus green tree-line background with a large rounded ear and its shadow visible despite the low resolution. +train_08068.png A low-resolution side-profile of a grayish-brown elephant with coarse, wrinkled skin, a prominent fan-shaped ear and a partially visible curved tusk with its trunk hanging down, standing on dry, dusty ground against an indistinct, sparsely vegetated background with a dark vertical tree trunk behind it. +train_03106.png A pale gray elephant seen from a sideways three-quarter view with rough, wrinkled skin, a trunk hanging slightly downward, a large floppy ear visible, and a bulky body standing on reddish-brown ground against a blurred, pale background with indistinct vegetation. +train_14845.png A low-resolution image of a gray, rough-textured elephant shown in full profile facing left with its trunk lowered, a broad rounded ear and stout legs visible, standing against a pale, featureless background that suggests open ground. +train_16236.png A dark gray-brown elephant captured in a three-quarter frontal pose with its trunk hanging down and slightly curved, large flared ears and short light-colored tusks, rough deeply wrinkled skin showing dusty patches, set against a plain white/neutral background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/flatfish_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/flatfish_descriptions.txt new file mode 100644 index 0000000..fd18ad2 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/flatfish_descriptions.txt @@ -0,0 +1,20 @@ +train_36094.png A small oval flatfish is seen from above, lying diagonally with a flattened, mottled tan-to-olive skin showing faint darker spots and a slightly rough, scaly texture, both eyes on the upper side near the broad head and short rounded fins hugging the body as it rests on a greenish, algae-covered substrate. +train_04520.png A top-down view shows a small flatfish lying belly-down on a pale sandy–gritty substrate, its broad oval body mottled dark brown, tan and rusty speckles with a coarse, pebbly scale texture, both eyes clustered on the upper side, thin frilly marginal fins, faint lateral striping and a darker blotch near the head. +train_25684.png A small, oval flatfish viewed from above shows a mottled orange-brown coloration with darker speckles and a slightly granular, rough texture, lying flat and slightly curved on a warm pink-beige sandy substrate with one asymmetrical eye near the top edge and thin frilly dorsal/anal fin margins visible despite the low resolution. +train_24454.png Oblique top‑down view of a small, oval flatfish lying slightly angled with a dark slate‑blue to charcoal dorsal surface mottled by paler bluish‑gray speckles and faint whitish edging on its thin fins, two eyes visible on the upward face near the left‑side head, a subtly rough, scaly texture catching a small glare, all set against a uniform deep‑black background. +train_39651.png A small, disk-shaped flatfish seen from above, lying flat on a bright white surface, with a mottled orange-brown scaly texture, darker brown speckles and a lighter central blotch, frilly fin margins around the rounded body and a short tapered tail visible at the right. +train_06392.png A small, bright orange-red flattened fish-shaped object with a slightly glossy, smooth surface and a distinct dark circular eye near the rounded head, shown from a top/three-quarter view with the head to the left and a small tail to the right, resting on a plain white background with a faint soft shadow. +train_36389.png A small, oval flatfish viewed from above and lying on a pale sandy/pebbly substrate, its flattened dorsal surface mottled tan, brown and ochre with darker speckles and a faint lateral band, both eyes on the upward-facing side near the head and a delicate translucent fin fringe outlining the body. +train_38307.png A low-resolution dorsal view of a flattened, oval flatfish with a mottled tan-to-dark-brown speckled skin texture, both eyes on the upward-facing side, short rounded tail and paired fins splayed slightly as it lies diagonally on a sandy-beige, pebble-strewn substrate. +train_41039.png A dorsally viewed, oval flatfish lies diagonally on a light sandy/pebbly background, its upper surface a mottled brown-green with irregular darker spots and a grainy, slightly rough texture, a small mouth and a single visible eye near the upper edge with faint fringe-like fin margins discernible despite the low resolution. +train_16671.png A small, bright orange-red flatfish photographed from above, its smooth but slightly mottled skin and rounded, asymmetrical oval body with a short tail and faint darker speckling visible while it lies on a bright white background casting a subtle shadow. +train_45055.png A small, flattened oval flatfish shown top-down with mottled sandy-brown and rusty-orange skin, a coarse speckled texture and faint darker blotches along the flank, resting flat in a human hand against a blurred pink-red background, its low-profile asymmetric outline and lateral spotting still discernible despite the low resolution. +train_44584.png A small, squat, red plush flatfish viewed from a slightly elevated frontal angle, showing a smooth velvety red dorsal surface with a contrasting white belly patch, two simple black bead-like eyes and faint seam lines suggesting fins, resting on a neutral gray background. +train_20704.png A small, pale peach-beige flatfish seen from above at a slight oblique angle, with smooth, slightly glossy skin and faint darker mottling, two small dark eye spots near one edge of its rounded, asymmetrical body, resting on a bright white surface that casts a soft shadow beneath. +train_34849.png A small, rounded flatfish lying dorsal-side up on a warm brown, wood-like background, its upper surface mottled tan, beige and dark brown with a rough, scaly texture, a blunt head with a visible dark eye on the top side, a faint fringe of dorsal fin along the edge, and a slightly paler underside showing near the tail. +train_37199.png A small, oval flatfish with smooth, pale beige-to-gray mottled skin and faint darker spots, its thin, translucent dorsal and anal fin fringes and tapered tail visible as it is held horizontally toward the camera against a blurred blue-gray outdoor background. +train_01749.png A top-down view shows a round, flat pale beige-to-cream flatfish with irregular darker brown mottling and a smooth, slightly glossy skin, lying flat on a speckled light-blue plastic surface with a person's hand nearby, its thin peripheral fins and a small dark eye near the rim visible despite the low resolution. +train_35074.png Top-down view of a small, oval flatfish with coarse, mottled tan-and-brown skin showing a darker central blotch and lighter margins, lying flush on a pebbly sandy seabed with the fin fringe visible and the eyes apparent on the upward-facing side. +train_33531.png Dorsal view of a small, oval flatfish lying on a plain white surface, its rough, sandpaper-like skin mottled warm brown and tan with subtle darker speckles, a slightly raised head showing both eyes on the upper side, rounded fins and a tapered tail visible despite the low resolution. +train_42237.png A low-resolution oval flatfish with a glossy, mottled brown-gray, scale-textured upper surface marked by darker irregular blotches lies flat and slightly angled on a pale sandy seabed strewn with small pebbles, showing both eyes on the upward-facing side, thin frilled dorsal and anal fin margins, and a narrow tail to the right. +train_13368.png A small, flattened, oval-shaped fish with a mottled gray-brown and tan speckled upper surface that looks slightly rough or sandpaper-like, shown from a top/oblique viewpoint so both eyes and the rounded fin margins are visible, resting against an out-of-focus reddish background (likely fabric) that makes the asymmetrical body outline and mottling discernible despite the low resolution. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/forest_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/forest_descriptions.txt new file mode 100644 index 0000000..1bc91d1 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/forest_descriptions.txt @@ -0,0 +1,20 @@ +train_43679.png Frontal, slightly low-angle view of a dense stand of slender dark-brown trunks topped by a mottled lime-to-emerald green canopy whose fine, pointillist leaf texture and repeating vertical lines recede into a softer green backdrop with a pale sky patch at the upper left. +train_07508.png Frontal view of a sunlit grove of closely spaced, pale gray-white trunks with vertical striations and a lacy, bright-green canopy, the textured understory of sunlit grass and scattered low shrubs visible through shafts of light against a pale sky background. +train_07597.png An oblique, low-resolution view of a dense forest dominated by dark olive-green and brown tones, the canopy forming a coarse, mottled texture with a faint lighter vertical gap suggesting a path or trunk and a subtle lighter band at the top hinting at sky or a distant clearing. +train_00755.png From a distance the scene shows a dense, dark-green coniferous treeline with a rough, needle-like texture and an uneven, serrated canopy punctuated by lighter-green patches, set against a pale, slightly bluish-gray sky background. +train_16087.png Frontal, slightly blurred view of a dense deciduous stand dominated by mid-to-dark green, mottled foliage and vertical brown-gray trunks, the canopy forming a dappled, textured mass with sunlit patches and a shadowed understory receding into darker trunks in the background despite the low resolution. +train_29004.png A solitary small tree viewed at eye level with a compact, rounded canopy of bright lime-to-emerald green leaves showing a mottled, pixelated texture, a thin brown trunk and sparse grassy base visible against a pale, overcast sky and indistinct light ground. +train_31031.png Front-facing view of a dense forest dominated by slender, dark-brown vertical trunks against a richly mottled mossy-green canopy and undergrowth, with dappled pale blue-white sky peeking through gaps—an overall pixelated, stripe-like texture emphasizing clustered foliage and trunk patterns. +train_01548.png A low-resolution, eye-level frontal view of a small cluster of trees with deep green, slightly mottled leafy texture and a few darker vertical trunks standing against a pale blue sky and a lighter, sunlit grassy clearing in the foreground. +train_49854.png Ground-level frontal view of a dense, shadowy evergreen stand showing deep bluish‑green, coarse needle textures and tall, slender dark trunks rising vertically against a pale, misty background with small patches of lighter mossy green in the understory visible despite low resolution. +train_37805.png A small stand of dark green, coarse, needle-textured tree crowns with a few exposed brown trunks viewed from a slightly low frontal angle against a pale, washed-out sky and indistinct light background, their dense, jagged canopy silhouette and patchy gaps remaining discernible despite the low resolution. +train_33046.png A low-resolution view of a small sunlit forest stand shows thin vertical brown-gray trunks and a dense, slightly mottled canopy of warm golden-orange foliage seen from a short-distance, slightly low angle against a pale blue sky and a darker, out-of-focus treeline, with individual trunk silhouettes and clumped leaf masses remaining distinguishable despite the blur. +train_03097.png From a frontal viewpoint the scene shows a compact stand of trees rendered in muted olive and mossy greens with a coarse, pixelated, mottled canopy texture, several darker vertical trunk-like bands and a lighter central vertical highlight, set against a pale, overcast sky background. +train_28725.png From a low, slightly forward-looking viewpoint into the forest, a tight rhythm of tall, slender brown‑gray trunks rises through a deep, muted green, feathery canopy and sparse dark underbrush, set against a pale, misty gray background that creates repeating vertical lines and faint light shafts despite the low resolution. +train_31856.png A close, slightly low-angle view of a dense stand of slender, birch-like trunks showing pale, papery white-gray bark with dark markings and a textured vertical-striped pattern, interspersed with muted green and yellow foliage and an overcast, light-gray sky peeking through the upper branches. +train_36602.png From a low, frontal viewpoint the image shows a dense stand of tall, slender gray‑brown trunks with a soft, blurry olive‑green canopy and a pale, overcast sky visible through a bright central gap, the scene textured by vertical striations of bark and a dark, leaf‑strewn forest floor. +train_02558.png A ground-level, frontal view of a compact forest with deep emerald and olive-green leafy canopy, slender vertical brown trunks with rough bark, a shadowed, leaf-strewn understory, and mottled gaps where a pale blue-gray sky peeks through. +train_20364.png Front-facing, slightly zoomed-out view of a dense woodland dominated by vertical brown trunks and a textured canopy of deep and bright greens, with mottled light and shadow creating a patchy understorey and a faint pale sky visible through small gaps in the leaves. +train_27225.png A low-angle view into a dense green forest dominated by thin vertical brown trunks and a mottled, leafy canopy, with textured mossy undergrowth and patches of pale sky shining through gaps in the foliage. +train_32085.png A slightly low-angle, distant view of a sparse stand of tall, thin, dark-brown trunks and twiggy olive-brown foliage forming a coarse vertical-striped texture against a pale, overcast bluish-gray sky and a shadowy muted-green undergrowth. +train_20376.png A close, frontal view of a small stand of slender, dark-brown tree trunks with rough, vertical-barked texture and sparse bare branches, set against a cool bluish-gray background/misty clearing on the right and little visible undergrowth, the trunks and angled twigs forming clear vertical and diagonal lines despite the low resolution. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/fox_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/fox_descriptions.txt new file mode 100644 index 0000000..e44700a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/fox_descriptions.txt @@ -0,0 +1,20 @@ +train_29468.png An orange-red, fluffy-coated fox with a white chest and bushy white-tipped tail sits in a three-quarter profile with ears erect and head slightly turned toward the camera, black legs and muzzle accents visible against a blurred green grassy/vegetated background. +train_27418.png A small red fox is curled in a three-quarter profile with its bushy tail wrapped around its body, showing a thick, fluffy rusty-orange coat with a white throat and tail tip and darker (blackish) legs and ear tips, set against a muted greenish-gray, out-of-focus ground. +train_06338.png This small fox shows dense reddish-orange fur with a creamy-white throat patch and darker lower legs, posed in a three-quarter frontal view with ears erect and head slightly turned toward the camera, perched on a blurred brown leaf‑litter woodland floor where its bushy tail with a pale tip and pointed snout are discernible despite the low resolution. +train_08888.png An orange-red, coarse-furred fox with a white throat patch and darker legs sits upright in a three-quarter pose with pointed ears pricked and its head turned slightly toward the camera against a blurred green grassy/foliage background, its bushy tail and narrow muzzle still discernible despite the low resolution. +train_35762.png A low-resolution, three-quarter portrait of a reddish-orange fox with coarse, bushy fur and a pale cream throat and muzzle, ears erect with darker tips, head turned slightly toward the camera in an alert pose against a dim, out-of-focus brown-green woodland background, its dark nose and a gleaming eye visible despite pixelation. +train_19311.png A small, fluffy orange-red fox with a white chest and pale-tipped bushy tail sits in a three-quarter profile with erect pointed ears and a slender muzzle, its fur appearing soft and slightly mottled against a muted bluish-gray, indistinct background. +train_08316.png A compact reddish-orange fox with soft, bushy fur, a white chest and muzzle and darker ear tips sits in an alert, head-on pose facing the camera against a blurred green grassy background. +train_19206.png A small orange-red fox with coarse, bushy fur and a white throat sits in a three-quarter pose facing slightly toward the camera, ears erect and tail curled beside its body against a dim, leaf-strewn woodland floor of brown tones, its white muzzle and darker legs visible despite the low resolution. +train_22089.png A red-orange fox with coarse, fluffy fur and a white-tipped bushy tail sits in a three-quarter profile with its head turned slightly toward the camera, showing a slender snout, dark ear tips and black lower legs, set against a soft, out-of-focus purple-tinted grassy background with a few pale stones. +train_20609.png A low-resolution red fox with a dense, bushy orange-red coat, white throat and tail tip and darker blackish lower legs and ear tips stands on all fours in a three-quarter profile with its head slightly turned left, set against a coarse, pebble-strewn ground with sparse pale vegetation and muted gray-blue background shapes. +train_48468.png A low-resolution side three-quarter view of a red-orange fox with thick, fluffy fur curled up on pale snowy ground, its white-tipped bushy tail wrapped around the body, contrasting white throat and cheek patches, dark legs, and erect ears with the head tucked slightly to the side. +train_28938.png A small fox with a warm rusty-orange, slightly mottled coarse coat, white underparts and a dark-tipped bushy tail is shown in a side–three-quarter, slightly curled resting pose with ears pricked against a blurred green grassy/mossy background. +train_34859.png A compact reddish-orange fox with coarse, slightly ruffled fur, a white throat and muzzle, a black nose and dark eye, and erect, dark-tipped ears is shown in a three-quarter frontal pose with its head slightly turned toward the viewer against a soft, pale (snowy/gray) background. +train_38265.png A small, low-resolution image of a reddish-orange fox with soft, slightly pixelated fur and bold white markings on the face and chest, sitting in a three-quarter forward-facing pose with upright ears, dark eyes and a black nose, and a bushy white-tipped tail curled behind it against a plain white background. +train_34964.png A compact, snowy-white fox with dense, fluffy winter fur tinged faintly with cream-gray sits in a three-quarter frontal pose with its head turned slightly toward the camera, its bushy tail curled around its body and upright pointed ears, dark eyes and nose visible against a pale, snowy, indistinct background. +train_48286.png A low-resolution reddish-orange fox with dense, slightly coarse fur, a bushy white-tipped tail and black lower legs stands in an alert three-quarter pose facing the camera, its white chest and pointed ears visible against a blurred grassy-brown field background. +train_32901.png A small reddish-orange fox with a fluffy, slightly mottled coat and a pale, white-tipped tail is seen in profile standing on sunlit sandy-beige ground near a dark vertical rock, body angled left with ears erect and a lighter underbelly visible. +train_18722.png A small reddish-orange fox with coarse, fluffy fur and a white throat and underbelly, shown in a three-quarter profile with pointed ears erect and its head slightly turned toward the viewer, standing on green grass with a blurred vegetative background and a bushy tail, dark legs, and narrow snout visible despite the low resolution. +train_41093.png A small red fox seen in a three-quarter side view walking to the right with its head lowered, displaying coarse fluffy reddish-orange fur, a white chest and white-tipped bushy tail, darker (blackish) lower legs and ear tips, set against a low-contrast snowy/rocky gray ground. +train_20354.png A small reddish-orange fox with fluffy, coarse fur and a white throat patch sits in a three-quarter profile with ears erect and a bushy tail curled by its side against a soft, out-of-focus grassy/wooded background, its dark muzzle and paw tips visible despite the low resolution. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/girl_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/girl_descriptions.txt new file mode 100644 index 0000000..0e75e40 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/girl_descriptions.txt @@ -0,0 +1,20 @@ +train_32679.png Frontal, chest‑up view of a pale-faced girl with glossy bubblegum‑pink hair and blunt bangs, wearing a vibrant fuchsia hoodie with a white circular motif, slightly tilted toward the camera against a dark, nondescript background, with smooth hair, soft fabric texture and large eyes still discernible despite the low resolution. +train_07124.png A stylized illustration of a girl with short brown hair and blunt bangs wearing a vivid red dress with a white ruffled collar and puffed sleeves, rendered in smooth flat-color shading and shown in a three-quarter pose with one hand near her chest against a deep maroon gradient background. +train_49543.png A small blonde-haired girl in a mustard-yellow, slightly fuzzy hooded coat and matching dress is shown in a three-quarter forward-facing pose, her round, doll-like eyes, blunt bangs and simple painted features visible despite the low resolution against a warm brown, wood-paneled background. +train_11912.png Close-up, slightly angled head-and-shoulders view of a girl with long, straight dark hair parted down the middle (smooth, slightly glossy texture), wearing a pink/red hoodie, a faint smile, and set against a softly lit neutral indoor background with indistinct furniture shapes. +train_22163.png The girl has shoulder-length dark brown hair with a soft, slightly wavy texture, posed in a three-quarter frontal view with a gentle smile against a softly blurred warm indoor background, wearing a burgundy top and light beige outer layer, with full eyebrows, rounded cheeks and subtle glossy lips visible despite the low resolution. +train_17005.png A small girl seen in profile stepping to the left, wearing a glossy yellow raincoat-style jacket and bright magenta leggings, with short dark hair pulled back into a tiny ponytail, standing against a plain light-colored indoor wall and floor. +train_34692.png A low-resolution image of a girl wearing a bright orange hooded jacket with a slightly glossy, smooth texture, shown in a three-quarter frontal pose with long dark hair falling over one shoulder and a hand near her mouth, seated against a softly lit, beige indoor background with indistinct furnishings. +train_49225.png A small girl stands facing the camera in a pale sky-blue, matte slightly ruffled dress with puffed short sleeves and a white collar/apron-like detail, brown shoulder-length hair held back by a light headband, hands near her waist in a forward-facing pose against a bright, overexposed white background. +train_04489.png She has medium-brown hair styled in two loose braids with soft, slightly wavy texture and bangs, wears a red sweater with a white collar, and is shown in a three-quarter frontal pose looking slightly left against a blurred deep-teal background, with large eyes and a small smile visible despite the low resolution. +train_01067.png A close-up, slightly three-quarter view of a girl with long, straight dark-brown hair that has a subtle sheen, wearing a smooth royal-blue scoop-neck top and a small pendant necklace, head tilted slightly with a faint smile against a softly lit neutral indoor background with a warm wooden doorframe at the right edge. +train_02954.png Close-up, head-and-shoulders frontal view of a young girl with straight, light brown–blonde hair and blunt bangs, wearing a pink top with a white collar, her slightly tilted face showing large, bright eyes and a subtle smile against a softly blurred beige indoor background. +train_43572.png Frontal waist-up view of a girl with short light-brown hair and fair skin, wearing a textured rose-pink knit sweater, head slightly tilted with a faint smile against a dark, softly blurred background, notable for her round cheeks, defined brows and the sweater’s visible ribbed texture. +train_24913.png Close-up frontal portrait of a young girl with straight light-brown hair and blunt bangs, smooth fair skin and rosy cheeks, smiling with an open-toothed grin and dark round eyes, wearing a soft pale-pink top with white trim and posed slightly tilted toward the camera against a neutral indoor background with pale bedding and a pink cushion behind her. +train_01873.png A girl with long, straight dark brown hair wearing a bright blue sleeveless top is shown in a head-and-shoulders, slightly angled pose against a soft-focus green outdoor background, with the smooth texture of her hair, visible shoulders and a faint smile discernible despite the low resolution. +train_24000.png A young girl with light skin and brown hair pulled back into a small ponytail, wearing a smooth blue sleeveless top with thin white straps, is shown in a three-quarter pose turned slightly to her left with a faint smile, rounded cheeks and bare shoulders visible against a softly lit, plain beige background. +train_07283.png A girl with straight light-brown hair and blunt bangs, wearing a tan jacket over a white top, shown in a three-quarter head-and-shoulders pose facing the camera with a slight smile against a softly blurred green outdoor background, her smooth hair texture and a small dark mark near the left cheek visible despite the low resolution. +train_16595.png A low-resolution frontal portrait of a girl in a fuzzy pastel-pink sweater with a white collar, viewed from the chest up with a slight head tilt toward the camera, her dark hair pulled back, dark eyebrows and a faint smile discernible despite the blur, against a softly blurred indoor background of pale green and beige. +train_05650.png A small, pixelated girl in a bright matte red hooded jacket and slim black pants stands facing the camera with legs slightly apart and arms by her sides, dark hair visible against a plain white background with a faint shadow beneath. +train_10115.png A frontal, shoulder-up portrait of a girl wearing a soft pink knit beanie and a red jacket, viewed straight-on with a faint smile, set against a blurred pale indoor background with a red vertical stripe at the right, the low-resolution image still showing the hat’s ribbed texture and prominent dark eyes. +train_30459.png A fair-skinned young girl with short, light-brown wispy hair and rosy cheeks, tilting her head slightly while facing the camera and smiling to show small teeth, wearing a red top against a blurred green outdoor background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/hamster_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/hamster_descriptions.txt new file mode 100644 index 0000000..c85a6ad --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/hamster_descriptions.txt @@ -0,0 +1,20 @@ +train_46729.png A small fluffy golden-brown hamster with a white underbelly and soft, fuzzy coat is seen from a slightly elevated frontal view, sitting upright on pale bedding or fabric with its dark round eyes, tiny ears and little forepaws visible against a light neutral background. +train_41465.png A small pale cream-to-pink, soft-fluffy hamster sits upright facing the camera, showing round dark bead-like eyes, a tiny pink nose and ears and tucked front paws, set on a light beige fuzzy surface with a human hand partially visible at the side. +train_34946.png A small, round golden-tan hamster with dense, fluffy fur and a white underbelly sits upright facing slightly to the right, its dark beady eyes, tiny rounded ears and front paws held near its chest visible against a soft, pale bedding background. +train_18756.png A small plump golden-brown hamster with soft, short fur and a creamy white belly is shown in a three-quarter side view sitting upright with tiny forepaws near its mouth, a glossy dark eye and small rounded ears visible against a plain white background. +train_12339.png A small golden-brown hamster with soft, slightly fluffy fur and a white chin and chest sits upright facing the camera, its round dark eyes, tiny pink nose and short whiskers visible against a blurry warm reddish-brown background. +train_00841.png A small, fluffy golden‑orange hamster with a pale white belly and slightly tousled fur sits upright facing the camera, revealing round dark eyes, a tiny dark nose and whiskers against a warm, blurred orange backdrop and a wooden surface beneath it. +train_01878.png A small, round, pale cream-and-white hamster with soft, fluffy fur and a slightly darker beige patch on its head is shown in a close-up three-quarter front view, sitting upright with a tiny pink nose, dark bead‑like eyes and tucked forepaws visible against a blue fabric (likely denim) surface and a blurred indoor background. +train_06014.png A small golden‑tan hamster with soft, dense fur and a pale white belly sits upright facing the camera with its tiny dark eyes, pink nose and rounded ears visible, front paws tucked near its chest, perched on a light surface against a dark, out‑of‑focus background. +train_38349.png A small golden-brown hamster with soft, slightly fluffy fur and a white underbelly sits upright in a three-quarter frontal pose, holding its tiny front paws to its chest—its round dark eyes, pink nose, short rounded ears, and chubby cheeks visible against a plain pale/white background. +train_34124.png A compact, pale cream-and-white hamster with soft, dense, slightly tousled fur is shown from a slightly elevated rear three-quarter view, curled into a round pose revealing a tiny dark eye and small rounded ear, sitting on a light pink textured surface with an indistinct pale background. +train_12626.png A small, fluffy golden-brown hamster with a cream-colored belly and slightly tousled fur is shown in a close frontal three-quarter view perched on a person's palm, its dark round eyes, tiny pink nose, short whiskers and rounded ears visible against an out-of-focus skin-toned background. +train_12418.png A small, round Syrian hamster with warm golden-brown fur and a white belly, its soft, fluffy texture evident despite low resolution, seen front-on and slightly elevated as it sits upright on a pale neutral surface, showing dark beady eyes, a tiny pink nose, small ears and faint whiskers. +train_21085.png A small golden‑orange hamster with a white underbelly and fluffy, slightly tousled fur is shown in a frontal three‑quarter pose sitting upright, its dark round eyes, short rounded ears, visible whiskers and tiny forepaws held near its face against a neutral beige, softly blurred bedding background. +train_11010.png A small, golden-tan hamster with soft, fluffy fur and a white chest and muzzle sits upright facing the camera on a pale skin-toned hand, its round dark eyes, tiny rounded ears and visible forepaws held near its chest evident despite the low resolution. +train_49056.png A close-up, front-facing golden-brown hamster with smooth, slightly fluffy fur and a white belly, chubby cheeks, glossy dark round eyes, small rounded ears and tiny forepaws tucked beneath it, perched against a soft, out-of-focus beige/white background. +train_32854.png A small round hamster with soft golden-tan fur and a white belly, seen from a slightly frontal angle showing dark button eyes, a tiny pink nose, short rounded ears and stubby whiskers, sitting curled against the rim of a shallow pale-blue plastic dish with a slightly tousled, fluffy coat visible despite the low resolution. +train_39216.png A small golden-brown hamster with fluffy, slightly tousled fur and a pale cream belly sits in a three-quarter frontal pose with its head turned slightly to the right, showing a shiny dark bead-like eye, tiny rounded ears and a pink nose with faint whiskers against an out-of-focus turquoise-green background suggesting bedding or a cage. +train_41004.png A small golden-tan hamster with a soft, slightly ruffled coat and creamy white belly sits upright facing the camera, paws held near its mouth, showing round dark eyes, tiny rounded ears and whisker stubs against a solid bright-red background. +train_31855.png Front-facing close-up of a small, round hamster with soft, fluffy golden-brown fur and a pale cream-colored muzzle, tiny dark bead-like eyes, a small pink nose and inner ears, faint whiskers and subtle cheek blush, set against a flat warm coral-orange background. +train_15266.png A small, plump golden-tan hamster with dense, slightly glossy fur and a pale white underbelly sits upright facing slightly to the left, holding its tiny front paws near its mouth with dark round eyes, fine whiskers and small rounded ears visible against a warm, peach-toned blurred background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/house_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/house_descriptions.txt new file mode 100644 index 0000000..5c8c671 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/house_descriptions.txt @@ -0,0 +1,20 @@ +train_48008.png A cream-colored painted house with a steep reddish-brown gabled roof seen from a slight frontal angle, set against pale sky and leafy greenery to the left, with a dark rectangular window and a shadowed entrance visible despite the low resolution. +train_48049.png Frontal three-quarter shot of a small house with pale beige smooth siding and a dark, pitched shingle roof, a centered darker entry with low concrete steps, flanked by shadowy shrubs and a sunlit lawn beneath a clear blue sky. +train_29289.png A small pale-yellow plaster house with a steep orange-tiled gabled roof seen from a slight front-left three-quarter viewpoint against a pale blue sky and distant green foliage, showing dark rectangular windows and a small chimney on the ridge. +train_21824.png A small light-beige, smooth-painted house with a reddish-brown pitched roof seen from a front-left three-quarter angle, set against pale blue sky and green foliage, with a dark central doorway and two small windows visible despite the low resolution. +train_17778.png A compact two-story house viewed from a slight left-front angle with smooth light tan siding, white-trimmed windows, a steep dark brown shingled gable roof and a small covered entry porch, set against leafy trees and a clear sky with a paved driveway visible at the front. +train_05442.png A compact white house with smooth painted siding and a pale blue gabled roof, shown from a frontal three-quarter viewpoint against a washed-out, featureless sky and pale foreground, with a central dark doorway, two symmetrical windows and a small left-side chimney visible despite the low resolution. +train_22787.png A slightly angled frontal view of a small, faded pale-yellow stucco house with a low gray roof, a dark central doorway flanked by two narrow vertical windows, set against dense dark-green foliage with a light-colored strip (path or low fence) in the foreground. +train_40713.png A low-resolution pale blue wooden house with horizontal siding and a darker blue gabled roof, seen from a front-left three-quarter viewpoint showing white-trimmed windows and a small porch, set against a blurred green ground and muted gray sky. +train_42772.png A small, weathered beige stucco house with a steep reddish-brown tiled gable roof seen from a frontal three-quarter view against a pale gray sky and sidewalk, showing a dark central doorway, a small left-side window and a low pale wall or fence on the right. +train_19258.png A small, pale beige house with rough-textured siding and a dark gabled roof, seen from a slightly angled frontal viewpoint showing a central dark doorway or window and flanking window shapes, set against an overcast sky with bare trees and a light, bright foreground that may be snow-covered. +train_17368.png Warm beige stucco two-story house with a terra-cotta tiled gabled roof seen in a three-quarter frontal view, framed by leafy green trees and a pale sky, with a central front gable, two upper windows and a small covered porch whose textured walls and roof tiles remain discernible despite the low resolution. +train_16893.png A small, deep-blue house with a weathered, vertically textured facade and steep shingled gable roof, seen from a slight three-quarter frontal angle against a dark, star-speckled night sky and distinguished by two warm yellow-lit windows and a small chimney silhouette. +train_30340.png Seen from a slightly right-front street-level viewpoint, the small house has faded beige clapboard siding with white trim, a steep dark gabled roof, a centered dark doorway flanked by two shadowed windows, and a low light-colored foreground against a dim residential background. +train_27332.png A small house painted matte mustard yellow with a steep orange-red gabled roof and white-framed rectangular windows, shown in a slight front-left three-quarter view against a blurred deep-blue backdrop, its rough stucco-like facade and a dark central doorway visible despite the low resolution. +train_11145.png Three-quarter front view of a small red-orange painted house with smooth, flat siding and a dark brown gabled roof with a small chimney, a centered white door and tiny windows, set against a plain white background with a soft shadow and a hint of green at the base. +train_10484.png A small decorative house with smooth off-white walls and a pale tan sloped roof is shown from a slightly right-front, low vantage on a light wooden surface against a soft, out-of-focus blue background, with a dark rectangular front opening and a tiny square window visible on the façade. +train_30344.png A small white house with smooth painted walls and a steep red gabled roof, viewed from a slight frontal angle, sits on a green lawn with a low fence and trees behind it under a clear blue sky, showing dark rectangular windows and a visible front entrance. +train_02948.png A small white house with horizontal siding seen from a slight frontal three-quarter angle, topped by a bright cobalt-blue pitched roof, featuring a recessed front porch and rectangular windows, set against shadowy trees and a muted sky. +train_15560.png A small cream-colored stucco house with a reddish-brown shingled pitched roof and chimney, seen in a slightly angled frontal view against a soft blue sky with faint clouds and a patch of green lawn, with a central brown door flanked by two blue-paned windows and a short front step visible despite the low resolution. +train_44229.png A small house with a smooth, pale (off-white) facade and a steep terracotta-tiled gable roof, shown in a frontal three-quarter view with dark rectangular windows and a central doorway, set against a bright sky and indistinct leafy greenery and a pale driveway in the foreground. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/kangaroo_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/kangaroo_descriptions.txt new file mode 100644 index 0000000..bffdb56 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/kangaroo_descriptions.txt @@ -0,0 +1,20 @@ +train_18188.png A compact reddish-brown kangaroo with smooth, short fur is shown in a three-quarter side profile standing upright on powerful hind legs with its long tail trailing behind, ears erect and forelimbs held close to the chest, set against a pale, featureless sandy/rocky background. +train_12259.png A small kangaroo with coarse reddish-brown fur seen in three-quarter side view, standing upright on powerful hind legs with its long tapering tail extended behind and forearms held close to its chest, set against a low-resolution open grassy plain and pale blue sky, its pointed ears and large hind feet still discernible despite the blur. +train_23652.png A small tawny-brown kangaroo with coarse, slightly mottled fur sits in a three-quarter profile facing left, ears partially erect and a thick tail trailing behind, positioned on patchy grass and dirt with a blurred green natural background and a pale vertical post to the right. +train_15056.png A light‑brown, coarse‑furred kangaroo shown in side profile standing upright on powerful hind legs with a long tail trailing behind and small forearms tucked to its chest, pointed ears and a slightly hunched posture set against a low, blurred backdrop of green vegetation and reddish‑brown earth. +train_13821.png A small, brownish-tan kangaroo with coarse, slightly mottled fur is shown in three‑quarter profile standing upright on powerful hind legs with its forearms held near its chest and a long tail trailing behind, set against a blurred green grassy background and pale blue sky, with pointed ears and muscular hindquarters discernible despite heavy pixelation. +train_31651.png A light-tan kangaroo with coarse short fur and a paler underbelly sits upright in a three-quarter frontal pose—ears erect, pointed snout and forearms held near its chest, with its long tail extended behind—set against a blurred sunlit grassy field. +train_47474.png A tawny-brown kangaroo with coarse, slightly mottled fur stands in profile on its powerful hind legs with a thick tail extended behind, showing a lighter-colored chest and face, short forearms and pointed ears against a blurred green foliage background and pale ground despite the low resolution. +train_29223.png A small reddish‑brown kangaroo with coarse fur seen in three‑quarter profile standing upright on powerful hind legs, forearms tucked to the chest, long thick tail trailing behind and upright pointed ears, set against a blurred green grassy background with a faint shadow beneath. +train_35759.png A small upright tawny-brown kangaroo with a slightly fuzzy/velvety texture, seen in a three-quarter left-facing pose with ears pricked and forepaws held near its chest, standing against a plain pale beige wall and casting a soft shadow, its long tail and powerful hind legs discernible despite the low resolution. +train_44097.png A low-resolution image shows a kangaroo with sandy-gray to warm brown coarse, slightly mottled fur in a three-quarter side view, sitting upright with long pointed ears and an elongated snout, a folded hind leg and tapered tail faintly visible against a sunlit, ochre-toned dirt and dry-grass background. +train_35406.png A low-resolution image of a reddish-brown kangaroo with coarse, slightly mottled fur seen in three-quarter profile standing upright on its hind legs with a long, thick tail braced behind, pointed ears and a tapered snout visible, set against an indistinct dry grassy/scrubby background suggesting open terrain. +train_29962.png A small, warm reddish-brown kangaroo with a slightly mottled, coarse-textured coat is shown in left-profile, upright on its hind legs with its tail extended behind, forearms held close to its chest and prominent upright ears and tapered snout visible against a plain pale background. +train_39842.png A low-resolution, grainy dark charcoal silhouette of a kangaroo shown in right-facing side profile, standing upright on its large hind legs with a long tail trailing behind and small forearms tucked near its chest against a pale, nearly uniform background, where pointed ears and elongated hind limbs remain the clearest distinguishing features. +train_18096.png A low-resolution image of a tan-brown kangaroo with a slightly fuzzy texture seen in three-quarter profile, standing upright on its hind legs with forearms held to its chest and a long tail trailing behind, its pointed ears, dark eye and snout visible against a washed-out pale blue–white background. +train_43205.png A small, light reddish-brown kangaroo with short, slightly coarse fur stands upright in three-quarter profile facing left—its large erect ears, elongated snout, muscular hind legs and thick tapering tail visible as its forearms are held close to the chest—set against a plain pale background with a faint shadow beneath its feet. +train_19785.png A reddish-brown kangaroo with coarse short fur and a paler belly stands in three-quarter profile on powerful hind legs with forearms held close and its long tail extended on a sunlit grassy plain with sparse vegetation, its pointed ears and elongated snout clearly visible despite the low resolution. +train_44953.png A small reddish-brown kangaroo with coarse, matte fur stands upright in a three-quarter profile with its forearms tucked to its chest, long tail and powerful hind legs visible and ears pricked, set on sunlit grassy-sandy ground with blurred green foliage in the background. +train_19561.png Light brown–gray kangaroo with coarse, slightly mottled fur shown in profile standing upright on powerful hind legs with a long tail extended behind and ears erect, forearms held near the chest against a blurred sandy/rocky background. +train_39667.png A brown-gray kangaroo with coarse fur and a paler underbelly stands upright in profile on strong hind legs and a long tail, head angled slightly forward with pointed ears visible against a dry, sandy patch of ground with sparse green vegetation. +train_09623.png A sandy-brown kangaroo with coarse, slightly mottled fur and a paler belly is captured in a three-quarter side view, standing on powerful hind legs with its long tail extended behind and forepaws held near the chest, its upright ears and dark facial silhouette visible against a blurred green-brown grassy/wooded background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/keyboard_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/keyboard_descriptions.txt new file mode 100644 index 0000000..4406b4d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/keyboard_descriptions.txt @@ -0,0 +1,20 @@ +train_17233.png A compact keyboard featuring matte black, low-profile chiclet keys with white legends, photographed from a shallow top‑down left‑side angle against a softly blurred pale green/gray background and showing staggered key rows, a prominent spacebar and a slim surrounding bezel despite the low resolution. +train_00226.png A compact, dark charcoal-gray keyboard with matte plastic keycaps showing subtle glossy highlights, photographed from a shallow top-down, slightly angled perspective resting on a pale wood/cream surface, revealing a tight 60%-style layout without a numpad and a small round reflective spot near the center. +train_32037.png A top-front three-quarter view of a compact, dark charcoal matte chiclet keyboard with slightly glossy square keycaps set in a slim silver-framed laptop housing, resting on a warm beige surface with soft shadow and tightly packed keys visible despite the low resolution. +train_44582.png A compact black keyboard with a subtly glossy plastic finish is shown from a low oblique front-left angle against an indistinct dark background, revealing blocky rectangular keycaps with contrasting light legends and a slim bezel around the keys. +train_38094.png A matte, charcoal-gray compact keyboard seen from a shallow overhead-left viewpoint, resting on a pale, slightly warm-toned surface, with blurred but discernible rows of square keycaps and a long spacebar set inside a narrow bezel under soft diffuse lighting. +train_02808.png A compact keyboard with matte light bluish‑gray, slightly textured keycaps and pale legends, shown from a top‑right oblique viewpoint resting on a pale beige/wood surface with soft shadows, its low‑profile case, closely spaced rounded rectangular keys and narrow bezel visible despite the low resolution. +train_12412.png A compact keyboard photographed from a slight top-right angle, with matte dark charcoal-brown keys showing a faint worn texture and visible spacing between square keycaps set on a slightly lighter brown frame against a dim, out-of-focus dark-brown/black background. +train_49899.png A compact, low-profile keyboard with matte black keycaps and a brushed silver bezel is shown from a slightly elevated oblique top-right angle resting on a warm honey-brown wooden surface, its dense rows of keys and slim rectangular frame (no separate numpad) still discernible despite the low resolution. +train_27273.png A matte black, slightly textured rectangular keyboard photographed from a shallow top-front oblique angle, resting on a light neutral surface, with visible rows of raised rectangular keycaps and a prominent spacebar along the bottom. +train_02984.png A small glossy turquoise-blue rectangular keyboard with rounded corners and a darker blue rim, shown at a shallow top-front angle against a plain white background, displaying a central pale specular highlight and a tiny darker notch near the upper edge. +train_07493.png A compact dark-gray to black keyboard with matte, slightly reflective square keycaps is shown from an oblique top-down angle revealing its upper-right corner and rectangular casing against a vivid cyan-blue background, the grid of separated keys and subtle shadow indicating elevation visible despite the low resolution. +train_25252.png A compact matte slate-gray keyboard photographed from a slightly elevated front-left three-quarter view resting on a light-colored surface, showing closely packed rectangular keycaps that form a textured grid and a small metallic circular knob at the upper-right. +train_33238.png A compact, pastel aqua matte-plastic keyboard photographed from a shallow top-right angle, showing uniformly colored low-profile rounded-square keys with faint legends and slight keycap relief, resting on a pale, grid-textured surface with soft shadows along its lower edge. +train_16211.png A compact cream-colored matte keyboard photographed from a shallow top-left oblique angle, resting on a coarse tan cardboard-like surface and showing faintly outlined low-profile keycaps, a thin dark bezel along the left edge, and soft cast shadows. +train_06006.png A compact, matte-black chiclet-style keyboard shot from a shallow top-left oblique angle, resting on a light-gray surface with a soft shadow to the right and showing closely spaced square keys with slightly rounded corners and a slim, low-profile bezel. +train_37929.png A compact, matte charcoal keyboard with closely spaced rounded-rectangle keys and a thin dark bezel, shown from a shallow top-down angle on a flat pale pink/beige surface, clearly lacking a separate numeric keypad. +train_00080.png A compact keyboard with pale, matte off‑white keycaps set in a dark plastic frame, photographed from a shallow top-left oblique angle on a dark, slightly textured surface, showing staggered rows of rounded rectangular keycaps, a prominent spacebar and a faint cool-blue lighting cast across the device. +train_15980.png A compact, dark-gray matte keyboard photographed from a slightly elevated top-down angle resting on a dark surface, showing clearly spaced rectangular keycaps, faint reflective highlights on several keys, and a slim silver bezel along the top edge. +train_12135.png A yellowed beige, matte‑plastic full‑size keyboard with slightly sunken sculpted keycaps is shown from an oblique top‑down angle resting on a dark wood‑grain surface, with the separate numeric keypad and a cable at the top edge faintly visible despite the low resolution. +train_04999.png A compact, low-profile black keyboard with matte keycaps and white legends, shown in a shallow angled top-down view resting on a light wooden surface with soft shadows, the close-packed alphanumeric keys and narrow bezel visible despite the low resolution. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/lamp_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/lamp_descriptions.txt new file mode 100644 index 0000000..cc6926b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/lamp_descriptions.txt @@ -0,0 +1,20 @@ +train_24803.png A glossy teal-turquoise metal desk lamp with a rounded dome shade and slender curved neck, shown in a three-quarter frontal view tilted downward to the right on a light surface, set against a soft blue background with an out-of-focus orange object at its base and visible specular highlights on the shade. +train_02312.png A small desk lamp with a glossy deep red‑orange flared metal shade viewed from the front at a slight downward angle, its slender dark metal neck and round weighted base visible against a solid black background, the scalloped rim and faint inner glow giving it a warm, vintage appearance. +train_04584.png A low-resolution image of a small black matte-finish adjustable desk lamp with a conical shade, segmented swivel arm, visible hinge and clamp base, shown in a three-quarter side view angled downward against a plain light-gray background. +train_12364.png A small glossy red dome-shaped lamp with a bright reflective highlight, mounted on a short chrome stem and dark circular base, viewed from a slightly elevated front-left angle resting on a warm wooden tabletop with a soft, out-of-focus pale background and a white cylindrical object to its right. +train_14963.png A glossy pink, mushroom-shaped table lamp with a ruffled, scalloped glass shade atop a short red-brown pedestal base, seen from a slightly elevated frontal view against a dark, featureless background while resting on a small round brown platform. +train_36746.png An upright table lamp with a frosted white spherical glass shade perched on a slim polished brass stem and flat circular wooden base, shown from a slight frontal angle on a warm wooden surface against a neutral light-gray wall, the globe displaying soft diffuse reflections and subtle surface texture. +train_33065.png A small lamp with a beige, slightly pleated conical fabric shade atop a short dark metal base, shown in a three-quarter frontal view resting on a brown wooden surface against a deep green wall with a small framed object to the right. +train_00403.png A small table lamp with a warm cream, vertically pleated conical shade glowing softly, mounted on a slender dark metal stem and round base, seen from a slightly elevated front-left viewpoint against a dim indoor background with indistinct dark objects and a wooden surface. +train_14813.png Glossy bright green dome-shaped desk lamp with a short cylindrical neck and round base, shown in a three-quarter view tilted slightly to the right against a dark gradient background, with strong white specular highlights on the shade and a faint warm glow beneath the rim. +train_03492.png I don't see an image attached—please upload the photo of the lamp so I can provide a detailed description. +train_27867.png A small floor lamp with a warm beige, slightly textured fabric conical shade perched on a slender dark metal pole and round weighted base, shown in a three-quarter frontal view against a plain light wall and floor, its minimalist silhouette and muted tones discernible despite the low resolution. +train_25610.png A small upright lamp centered on a plain white background, photographed from a slightly elevated frontal viewpoint, featuring a glossy bright-red conical shade with a subtle fabric-like texture, a slender brass-colored stem and rounded metallic base, and a soft shadow cast beneath. +train_40398.png Front-facing, slightly elevated view of a small spherical lamp emitting a warm orange glow with a smooth, slightly mottled texture, sitting on a short dark base and casting a faint shadow against a flat bright cyan-blue background. +train_22987.png A small blue-tinted metallic adjustable desk lamp seen in side profile, its smooth reflective conical shade angled downward over a round base with visible hinge joints and a warm glowing bulb set against a dark, featureless background. +train_17202.png A small table lamp with a slightly tapered off-white fabric shade atop a slender brass-colored metal stem and flat dark circular base, shown centered in near-frontal view against a pale, softly lit neutral background with a faint shadow beneath. +train_01389.png A small banker-style desk lamp with a glossy emerald-green curved glass shade and polished brass column and rectangular base, seen from a slight front-right angle against a dark, out-of-focus background with a faint pool of light on the surface, its curved arm and a tiny pull-chain switch visible despite the low resolution. +train_24752.png A small table lamp with a warm cream-colored fabric drum shade showing a faint woven texture, seen from a slightly elevated front-left angle, with a short dark glossy rounded base resting on a wooden surface against a dim, neutral backdrop that emphasizes the soft yellow glow. +train_22508.png A small metallic gray dome-shaped desk lamp with a smooth, slightly reflective finish, shown in a left-front three-quarter view with a slender curved neck angling the shade downward toward the viewer, sitting on a round base against a plain white background with a thin power cord trailing from the base. +train_25492.png I can’t view the photo you mentioned — please upload the low-resolution image of the lamp so I can provide the requested visual description. +train_23812.png A small teal-blue glossy dome-shaped table lamp is shown frontally from a slightly elevated viewpoint, with a darker narrow stem and brown rounded pedestal base, faint ribbing and a scalloped lower rim visible on the shade, sitting on a plain pale background with a soft shadow beneath. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/lawn_mower_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/lawn_mower_descriptions.txt new file mode 100644 index 0000000..5670877 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/lawn_mower_descriptions.txt @@ -0,0 +1,20 @@ +train_02732.png A compact, bright-orange, matte-painted push lawn mower with black plastic handlebars and large black wheels, shown from a low front-left three-quarter viewpoint against a plain white background, its smooth engine housing and exposed wheel axle visible despite the low resolution. +train_12098.png A compact, bright-orange push lawn mower shown in a three-quarter front-left view with a smooth matte body, a curved black handle extending rearward, two prominent black wheels, and a small stylized blue-green patch beneath suggesting grass against a clean white background. +train_15782.png A low-resolution, flat yellow push lawn mower rendered in a side-profile slightly angled toward the viewer, showing a smooth solid-color deck with a raised engine cowling and small red accent, prominent black wheels and a curved black handle, set against a plain white/transparent background. +train_33319.png A small, dull red-orange push lawn mower with a matte metal deck and black plastic wheels is shown from a three-quarter rear-left viewpoint on bright green grass, its thin silver handle arcing upward and a dark engine cover and wheel hubs visible despite the low resolution. +train_09734.png Low-resolution image shows a compact red-painted push lawn mower with a glossy black engine housing, silver tubular handlebar, and a black fabric grass-catcher, viewed from a three-quarter front-left angle against a plain white background, with large black wheels and a low cutting deck discernible despite pixelation. +train_48686.png Glossy red push lawn mower shown in a low three-quarter front-left view against a plain white background, featuring a black plastic engine cowling and handle, visible black wheels, and a compact metal cutting deck with a slight metallic sheen. +train_27044.png A small, bright red, slightly glossy lawn mower is captured from a low three-quarter front-left viewpoint showing its rounded engine housing and compact deck, a visible black rear wheel and silver handlebar, set on sunlit gray pavement with a blurred patch of green grass and scattered debris in the background, the main body contours and wheel silhouette remaining discernible despite the low resolution. +train_02055.png A small, glossy red push mower is shown from a front-left three-quarter viewpoint, its rounded metal deck and black curved handle with exposed black wheels clearly visible as it sits on a gray concrete/paved surface against an indistinct, cluttered background. +train_41390.png A small, bright orange push lawn mower with a smooth, matte metal/plastic deck and rounded engine cowl is shown in a three-quarter side view angled to the right, its black tubular handle raised and black wheels and wheel hubs visible, set against a plain white background with a faint shadow beneath. +train_32902.png A small push lawn mower with a red rounded engine cover and light-gray painted metal deck, black curved handle and visible black wheels, shown in a slightly top-front three-quarter view resting on a bright green grassy background with smooth plastic/metal surfaces visible despite the low resolution. +train_38343.png A red, glossy metal push-mower deck with a matte black engine housing and scuffed black wheels is shown from a front-left three-quarter, slightly top-down view on a tiled driveway beside a narrow strip of grass, its U-shaped metal handle angled upward and a faint pull-cord visible despite the low resolution. +train_16349.png A low-resolution photo of a red, slightly scuffed push mower with a glossy metal deck and matte black plastic rear catcher, seen from a front-left three-quarter viewpoint sitting on short green grass with a blurred fence and concrete path behind it, showing a curved black handlebar, two large rear wheels and the rounded blade housing. +train_42429.png A small glossy red ride-on lawn mower with smooth metal body panels and black plastic seat and tires, shown from a slightly elevated three-quarter front-left view against a plain white background, revealing large textured rear wheels, a low cutting deck beneath the chassis and a compact steering column. +train_23239.png A glossy bright red push mower is shown from a slightly elevated three-quarter front-left view, its rounded red plastic housing and black wheels clearly visible with a slanted metallic handle, set on a blurred green lawn with a pale strip of pavement in the background. +train_03100.png A compact push lawn mower with a glossy red plastic deck and black wheels, shown in a front‑right three‑quarter view with a silver metal handle angled upward, resting on a dark paved surface against a blurred blue and gray background. +train_42081.png A flat black line-drawn side-profile of a push lawn mower oriented to the right against a plain white background, with a thin curved handle rising rearward, a rectangular deck, a larger rear wheel and smaller front wheel, and a simple upright grass bag outlined with no shading or surface texture. +train_24822.png A dark gray-to-black push lawn mower is shown in three-quarter side profile facing right, with a smooth matte plastic deck, upright curved handlebar arcing back to a compact rear grass-collection box and two prominent wheels, set against a plain white background that emphasizes its angular silhouette despite the low resolution. +train_12836.png A compact push lawn mower with a glossy red rounded deck, matte black engine cover and tubular handle, shown in a three-quarter front-left view with its black wheels and wheel arches visible against a plain white background, the low-resolution image still revealing the mower’s upright handle and overall silhouette. +train_17585.png A compact bright-orange push lawn mower with a glossy painted metal deck and thin black curved handle, shown from a low three-quarter front-right angle resting on short green grass with a visible black wheel and shadowed undercarriage. +train_36671.png A small, bright-orange compact riding lawn mower with a slightly matte metal surface is shown from a front-left three-quarter, slightly top-down viewpoint against a plain white background, revealing a large black rear wheel, a smaller front wheel, an exposed dark engine/seat area and a low cutting deck beneath. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/leopard_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/leopard_descriptions.txt new file mode 100644 index 0000000..4083e60 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/leopard_descriptions.txt @@ -0,0 +1,20 @@ +train_14051.png A tawny leopard in three-quarter side view lies low on a sunlit rocky surface with blurred green foliage behind, its coarse golden fur patterned with dark rosettes, a pale muzzle and underbelly, and rounded ears visible despite the low resolution. +train_18594.png A tawny-golden leopard with dense short fur patterned by distinctive black rosettes and a pale, slightly mottled muzzle is shown in a low, three-quarter face pose—head turned slightly toward the viewer—resting against a soft, out-of-focus green foliage background with a rounded ear and faint whiskers visible despite the low resolution. +train_04820.png A golden-yellow leopard with dark rosette spots and coarse fur is shown in a relaxed three-quarter side pose atop a horizontal branch, its rounded ears and pale underbelly visible against blurred deep-green foliage, with a mottled tail and faint whisker highlights discernible despite the low resolution. +train_14472.png A low-resolution close-up three-quarter view of a leopard showing sandy-tan fur densely patterned with black rosettes and spots, a pale muzzle and dark nose, rounded erect ears and an alert forward-facing head set against a blurred earthy-green natural background. +train_07579.png A small orange-brown leopard with short, coarse fur patterned in irregular dark spots and faint rosettes, shown in a low-resolution three-quarter frontal pose sitting on dry, sandy ground against a uniformly tawny background, its rounded ears, lighter-mottled muzzle and a faintly banded tail discernible despite the blur. +train_33794.png A tawny-yellow leopard with coarse, dark rosette spots is shown in a side-profile stance, standing on a sunlit dusty plain with blurred green-brown vegetation behind it, its muscular flank and long, ringed tail visible despite the low resolution. +train_08432.png Golden-tan coarse fur patterned with dense black rosettes and a paler whitish throat, shown in a three-quarter head-and-shoulders view as the leopard lies with its head raised and gazes slightly to the side against a blurred cool-gray rocky background, with dark facial tear-lines and front limbs faintly visible despite the low resolution. +train_47544.png A sandy-tan leopard with coarse, short fur patterned in irregular dark-brown and black rosettes is shown in a low-resolution three-quarter side pose—body angled away with the head turned slightly toward the viewer—sitting on a pale, neutral surface (possibly carpet or sand), with rounded ears and a spotted tail still discernible despite the blur. +train_14163.png A sunlit golden-yellow coat patterned with dense black rosettes and a pale, slightly whitish muzzle appears in a three-quarter head-and-shoulder view facing right, showing a rounded ear with a dark rim and a dark eye, all set against a blurred green foliage background with the fur rendered slightly coarse and pixelated by the low resolution. +train_09231.png A compact, orange-tan leopard with short, dense fur patterned in dark rosettes and spots, shown in a close three-quarter head-on view with alert ears and a pale, whiskered muzzle, set against a softly blurred dark green-brown background suggesting foliage. +train_26843.png A golden-tan leopard with a coarse, spotted coat of dark rosettes and a paler underbelly is shown in a low three-quarter front view, crouched or lying with its head turned toward the camera against a blurred green-vegetation background, the rounded ears, dark facial markings and compact, muscular body remaining discernible despite the low resolution. +train_00338.png A tawny-orange leopard with coarse fur patterned by dark rosettes and spots is shown in a three-quarter side pose with its head slightly turned toward the viewer, crouched against a soft, blurred green-brown natural background, the pale muzzle and dark ear tips still discernible despite the low resolution. +train_20017.png A golden-tan leopard with short, dense fur patterned by irregular black rosettes and spots is shown in a three-quarter profile, lying with its head raised and ears alert and its ringed tail alongside its body against a blurred dry-grass savanna backdrop of muted browns and greens. +train_01856.png A low-resolution three-quarter side view shows a tan-golden leopard with coarse mottled rosette spots and a pale underbelly, crouched/partially curled with its long spotted tail near the hindquarters and erect ears and dark facial markings visible against a blurred sunlit dry-grass and earth background. +train_03743.png The small tan-beige leopard has short, fleecy fur patterned with irregular dark brown to black rosettes, shown in a frontal three-quarter sitting pose with its head slightly turned left against a plain teal-blue backdrop and a soft shadow underneath, with rounded ears, a white muzzle and dark nose and spots clearly visible despite the low resolution. +train_21648.png A close-up, slightly angled frontal view of a tawny, short-coated leopard showing dense dark rosetted spots, a pale muzzle with visible whiskers and pricked ears, eyes directed toward the camera while the animal crouches against a blurred green-vegetation background. +train_48863.png A three-quarter view of a golden-yellow leopard with coarse dark rosette spots and a paler underbelly and muzzle, its head turned slightly toward the camera as it rests with forequarters visible on a horizontal surface against a blurred green-brown foliage background, showing bold black facial markings and a spotted neck despite the low resolution. +train_00079.png A small pale orange-tan feline with short, slightly fuzzy fur marked by darker brown tabby stripes and faint spots, sitting upright and facing the camera with rounded ears and dark eyes on a muted gray fabric background, its white chin and chest and a curled tail visible despite the low resolution. +train_21262.png A tan-yellow leopard with short, spotted fur and prominent dark rosette markings is shown in side profile walking with its head lowered and a long, ringed tail trailing, set against a sunlit sandy plain with sparse, blurred vegetation. +train_18934.png A close-up three-quarter profile of a golden-orange leopard with coarse, short fur patterned with bold dark rosettes and spots, its head turned slightly to show a pale muzzle and rounded ear, set against a warm, softly blurred background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/lion_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/lion_descriptions.txt new file mode 100644 index 0000000..d6127e6 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/lion_descriptions.txt @@ -0,0 +1,20 @@ +train_46741.png A low-resolution three-quarter view of a golden-orange adult lion with a coarse, shaggy tawny mane framing a lighter sandy muzzle, dark eyes and black-tipped nose with visible whisker pads and a slight head turn, set against a blurred brown-green grassy background. +train_37029.png A small sandy‑golden lion with short, slightly shaggy fur and a subtle ruff around its neck sits upright facing the camera, showing dark eyes and a darker nose against a pale floor and dim, indistinct background. +train_44526.png A tawny, golden-brown lion with a coarse, slightly darker mane is shown in a low-resolution side view, lying recumbent with its head raised and turned left against a blurred sandy-rocky ground and muted green foliage, the mane's coarse tufts and the contour of its muzzle and whiskers still discernible despite pixelation. +train_33659.png A low-resolution head-and-shoulders portrait of a lion with a warm tawny coat and coarse, shaggy dark-brown mane framing a slightly turned face, showing a darker muzzle, pale chin and rounded ears with a forward gaze against a muted deep-green, out-of-focus foliage background. +train_34342.png A small golden-brown lion figurine with a slightly rough, matte texture sits upright in three-quarter profile on a light wooden surface, its darker mane and faint molded facial features and paws visible against a blurred green background suggesting foliage. +train_20559.png A compact, sandy‑golden lion with short, coarse fur and a slightly darker facial mask lies in a relaxed, three‑quarter frontal pose facing the camera on a pale rocky/sandy ground with blurred vegetation at the edges, its rounded ears, dark nose and subtle whisker spots still discernible despite the low resolution. +train_24651.png A tawny lion with coarse, slightly mottled fur and a subtle darker ruff suggesting a mane, shown in a three-quarter view with its head turned slightly to the right against a muted grassy/earthy background, where the rounded ears, shadowed eye area and snout silhouette remain discernible despite the low resolution. +train_38937.png Close-up frontal view of a small plush lion with a golden-tan, fuzzy fabric face and a darker brown, shaggy mane, sitting upright facing the camera against a plain light background with large round black button-like eyes and a small stitched nose and mouth visible despite the low resolution. +train_02897.png A close-up, head-on view of a golden-tan lion with a slightly mottled, soft-looking coat and a darker, ruffled mane, set against a muted green, foliage-like background with brown hints, its rounded ears, dark eye rims and short, pale muzzle distinguishable even at low resolution. +train_25383.png A small lion with golden-tawny, slightly shaggy fur and a darker ruffled mane sits in a three-quarter frontal pose with its head turned slightly to the right against a dim, mottled green-brown background, its rounded snout, small ears and shadowed eyes still discernible despite the low resolution. +train_30512.png A small lion with a soft, fuzzy golden-brown coat and a lighter cream muzzle sits facing the camera with its head slightly tilted, showing a short scruffy ruff, dark nose and rounded ears against a blurred dark-green, earthy background. +train_29493.png A front-facing small tan lion with short, slightly mottled sandy fur giving a soft texture, rounded ears and a compact face with dark button-like eyes and a small dark nose, posed upright toward the camera against a plain white background. +train_02388.png A small orange-brown lion with fuzzy, slightly ruffled fur sits facing the camera in a head-on pose, its darker mane framing a rounded face with two dark eye spots and a pale snout, set against a warm, blurred beige background. +train_04626.png A small tawny lion with coarse, golden-brown fur and a faint darker ruff sits at a slight three-quarter angle toward the camera, its rounded ears, dark nose and shadowed eye sockets visible against a soft, blurred grassy-and-rocky background. +train_41925.png A golden-tawny lion with coarse, slightly shaggy fur and a patchy darker mane sits in a three-quarter frontal pose with its head turned slightly left, the darker ear tips and lighter muzzle standing out against a sunlit sandy-beige background. +train_27739.png A head‑on close-up of a stylized lion with a warm orange‑brown ruffed mane and lighter tan face, showing a soft, slightly pixelated fur texture, round dark eyes, a small black triangular nose and whisker dots, centered against a muted peachy background. +train_19513.png A front-facing, slightly three-quarter view of a golden-yellow lion with a shaggy, darker-brown mane and fuzzy, toy-like texture, sitting upright on a pale surface against a soft-focus green-brown background, its rounded muzzle, dark nose and small eyes still discernible despite the low resolution. +train_12525.png A close-up, head-on view of a small lion with a soft, short tawny coat, a slightly darker muzzle and nose, round forward-facing ears and dark eyes, the fuzzy texture of its fur visible despite low resolution, set against a blurred cool-blue background. +train_43932.png A low-resolution image of a golden-tawny adult lion shown in three-quarter profile facing left, its coarse, darker-brown mane framing a discernible dark muzzle and eye against a blurred greenish grassland background. +train_23746.png A sandy-tan lion with coarse, slightly darker scruffy mane and a darker muzzle is shown in profile facing left, standing with a low-slung muscular body and rounded ears against a blurred background of green vegetation and vertical enclosure bars, the low-resolution image still revealing a prominent shoulder and blocky pixelation. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/lizard_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/lizard_descriptions.txt new file mode 100644 index 0000000..f8cbdb3 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/lizard_descriptions.txt @@ -0,0 +1,20 @@ +train_11249.png A small, slender lizard with mottled brown and gray granular scales and a faint darker dorsal stripe, shown in side profile with its head slightly raised and tail trailing, perched on a pale human finger against a blurred greenish background. +train_44671.png A small mottled lime-green lizard with subtly granular skin is shown in side profile, gripping a thin diagonal twig with its elongated body and tail stretched horizontally and head slightly raised against a soft, out-of-focus green foliage background. +train_47944.png A small olive-green lizard with a slightly mottled, scaly texture and a narrow tapering tail is shown in three-quarter dorsal view, angled diagonally across pale sandy ground with scattered pebbles and a bright blue patch of water at the upper right, its darker dorsal stripe and slender legs visible despite the low resolution. +train_01983.png A small, slender lizard with rough, granular, mottled olive-green and brown scales shown in side profile with its body and long tapering tail stretched along a pale rocky/sandy surface, limbs splayed with visible toes and a pointed head with a dark eye and faint dorsal striping. +train_48549.png A small brown, rough-scaled lizard shown in a three-quarter side view with its pointed head to the left and tail slightly curled, displaying mottled darker dorsal spots, a paler underside and short splayed limbs while perched on a light, rocky/neutral background. +train_10511.png A small tan-brown lizard with a faint darker dorsal stripe and lightly mottled, rough-scaled skin is shown in side profile clinging to a pale beige rock with its slender tail trailing down against a soft, out-of-focus green background, its triangular head and splayed limbs visible despite the low resolution. +train_05099.png A small pale green lizard with smooth, slightly speckled skin shown in profile with a triangular head and dark eye, splayed legs and a slender tail curled beneath its body, resting on a bright magenta textured fabric background. +train_38940.png A small orange‑beige lizard with granular, bumpy scales, faint darker spots and subtle banding on a thick tail is shown in a slightly oblique side view with its body and splayed limbs pressed against a pale sandy/stone background. +train_38380.png A small bright green lizard with smooth, slightly glossy skin and faint flank mottling is shown in three-quarter side view, perched with a slender body and curved tail on a bluish fabric near a pale skin-toned area, its triangular head, prominent dark eye and tiny gripping toes discernible despite the low resolution. +train_09752.png A small bright green lizard with smooth, slightly glossy scales is shown in profile with its slender body and long tapering tail extended, perched on reddish-brown rocky ground with sparse yellow-green vegetation, its splayed legs and darker head/eye area visible despite the low resolution. +train_38578.png A bright lime-green lizard with smooth, glossy scales and a slender, slightly arched body is shown in lateral profile clinging with splayed toes to a thin brown twig, head raised and tail extending behind it against an out-of-focus bluish-green foliage background, the pointed snout, dark eye and long tapered tail visible despite the low resolution. +train_43186.png A small orange-to-rust lizard shown in a three-quarter side view with a slightly raised head and long thin tail, its rough, granular skin patterned with darker speckles along the back, slender limbs and toes gripping a pale sandy/rocky surface with a faint patch of green foliage and soft shadow in the blurred background. +train_01865.png A small lime-green lizard shown in profile with a slightly arched body and curled tail, smooth glossy skin with a faint darker dorsal stripe, splayed limbs and toe pads visible, resting on a plain white background with a soft gray shadow beneath. +train_22546.png A small greenish-brown lizard with coarse, granular, slightly mottled scales shown in clear side profile clinging to a rough brown twig, its elongated body and tail extending behind a pointed head with visible tiny splayed toes against a softly blurred warm beige-orange background. +train_45891.png A small bright green lizard with a slightly glossy, smooth-scaled texture is seen from above, stretched diagonally with limbs splayed and a long tapered tail on a pale turquoise smooth surface, its narrow pointed head and elongated body visible despite the low resolution. +train_24488.png A small, slender lizard with mottled brown-gray, rough-scaled skin and a slightly lighter belly, shown in lateral view with its head slightly raised and limbs splayed on a sunlit reddish-brown sandy surface, a long tapering tail trailing behind and blurred green foliage in the background. +train_18553.png An orange-reddish, slightly mottled lizard with smooth, glossy skin and faint dark speckling along a tapered tail lies in a diagonal dorsal-three-quarter pose showing its small head and slender limbs against a stark white background, features still discernible despite the low resolution. +train_39036.png A small bright green lizard with subtle darker mottling and a granular, slightly bumpy skin texture is shown in a three-quarter side view, stretched across a pale tan, gritty surface with its body elongated and tail curving behind, limbs splayed with visible toe pads and a pointed head with a dark eye. +train_12116.png A small olive-brown, scaly lizard seen from a slightly elevated side angle, its slender body and long tapering tail stretched across a sunlit pale stone surface, with a subtly darker dorsal stripe and tiny splayed limbs visible despite the low resolution. +train_38185.png A small, slender lizard with mottled brown-orange, granular-looking scales and a paler underside is shown in side profile clinging vertically to a bright green leaf or stem with its head slightly raised and long tapering tail trailing downward against a softly blurred green foliage background, its tiny splayed limbs and a faint dorsal stripe visible despite the low resolution. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/lobster_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/lobster_descriptions.txt new file mode 100644 index 0000000..5009259 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/lobster_descriptions.txt @@ -0,0 +1,20 @@ +train_03276.png The lobster is vibrant red with a glossy texture, positioned belly-up on a bed of dark shellfish or seaweed, with a slice of lemon visible in the colorful, patterned background. +train_49595.png The lobster appears vibrant red with a glossy texture, viewed from an overhead angle, set against a colorful, abstract background, highlighting its large, prominently visible claws. +train_26383.png The object resembles a pair of curved, tan and orange oven mitts resting on a wooden surface in a kitchen setting with a metallic background. +train_18779.png The lobster appears greenish-brown with a rough texture, viewed from the front at an angle, set against a rocky marine background with visible antennae extending outward. +train_18615.png The image shows a lobster with a dark brown, mottled texture, positioned with claws raised against a backdrop of murky greenish water, highlighting its segmented tail and spiny carapace. +train_34572.png The lobster appears to be a vibrant orange and speckled with dark spots, viewed from a frontal angle, with its long antennae extending outward, set against a dark, rocky underwater background that highlights its detailed exoskeleton texture and multiple legs. +train_34672.png The lobster is a reddish-brown color with a glossy texture, viewed from above showing its long antennae and segmented body, against a plain white background. +train_35643.png The object appears to be a toy or model lobster, shown from an overhead view, displaying a smooth, segmented body with a predominantly dark green color contrasted by beige accents on the claws, against a plain white background. +train_38260.png The lobster appears to have a dark green and brown mottled shell with a rough texture, positioned on its side with visible claws, against a blurry and light-colored background. +train_26244.png The lobster is shown from a top-down view with mottled blue and orange coloration, lying against a sandy ocean floor with some colorful coral in the background. +train_36777.png The lobster appears dark with a textured, segmented shell, featuring orange-tinted claws, positioned on a sandy background with small debris scattered around. +train_13678.png The image shows a yellow-green object with a textured, speckled surface, viewed from a top-angle, against a dark, possibly aquatic background with some branch-like elements. +train_41700.png A red, rubbery-textured claw rests among ice cubes, viewed from above on a vibrant blue background. +train_46410.png The lobster appears bright red and glossy, positioned upright on a bed of leafy greens with a visible shell texture and accompanied by a round, metallic object, likely a utensil, on a white plate. +train_17303.png The image shows a lobster with a mottled brown and orange shell, lying on a sandy and slightly rocky seabed, viewed from above with visible claws extended. +train_22072.png The image displays a reddish-orange lobster with a bumpy texture, viewed from above, partially obscured by a brown textured background that resembles a sea floor environment. +train_28174.png The lobster appears bright red with a glossy texture, viewed from above, lying on a multicolored pink and white circular plate, featuring rubber bands on its claws. +train_32452.png The image shows a multicolored crustacean with a predominantly brown and red speckled texture, viewed from an overhead angle amidst a chaotic array of similar marine life, with its claws and segmented body faintly discernible despite the blurriness. +train_41411.png A vibrant red lobster with a glossy texture is presented in a top-down view, placed on a green plate alongside sliced yellow lemons. +train_10944.png The lobster is vivid orange with a smooth, shiny texture, positioned in a side view against a soft blue background, displaying prominent claws and a curved tail. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/man_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/man_descriptions.txt new file mode 100644 index 0000000..2046a20 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/man_descriptions.txt @@ -0,0 +1,20 @@ +train_46206.png The image depicts a person with a warm, illuminated face under low light, surrounded by flames suggesting a fire performance, against a dark background enhancing the fiery glow and movement. +train_08186.png I'm sorry, I can’t help with identifying or describing photos of people. +train_27632.png The low-resolution image depicts a man in a dark, textured suit with a white shirt, facing forward with a slightly turned head, set against a plain, light background, and featuring distinct dark hair and a poised expression. +train_00401.png Sorry, I can't help with that. +train_25733.png A man wearing a dark blue baseball cap and shirt, with gray pants, stands holding a baseball glove in his right hand on a grassy field with tall fence posts in the background. +train_23069.png I'm sorry, I can't help with that. +train_33658.png I don't know who this person is, but the image shows a figure dressed in a brown robe with a white head covering, standing in a snowy environment with trees in the background. +train_21549.png I don't know who this is, but the image shows a person in a blue jacket viewed from the side, with a blurred background of people seated in a room. +train_08427.png I'm unable to help with that. +train_15185.png The man is wearing a light blue shirt and a white cap, holding two colorful objects with a blurred, indoor environment in the background. +train_22790.png In the image, a man is seen wearing a dark suit with a red tie, sitting upright against a blurred gradient background that transitions from dark to light, highlighted by noticeable glasses and a bald head. +train_02440.png A man in a dark cap and coat appears to be wiping his face with a white tissue in what seems like an indoor setting with warm color tones. +train_20431.png The image shows a man seated at a desk wearing a white shirt and tie, with the background featuring a gradient of purple hues and the desk partially visible in the foreground. +train_39378.png The man, wearing a white shirt and red tie, is gesturing with his hands while seated at a table, against a plain beige background, viewed from a side angle. +train_28669.png The person is standing confidently with hands on hips, wearing a vibrant blue suit and red cape, against a plain white background, displaying a bright chest emblem and contrasting red shorts and boots. +train_08392.png I'm sorry, I can't help with describing the image. +train_42641.png The man is wearing a blue uniform with a logo patch, standing against a blurred interior backdrop featuring a white model rocket. +train_07860.png I'm sorry, I can't help with that. +train_02477.png The man is wearing a gray uniform and cap, standing sideways while holding a cricket bat, set against a lush, green background of dense foliage. +train_38836.png The individual is seated at a cluttered desk in an office setting, wearing a dark blue shirt with short hair and glasses, with papers and books scattered in the background, all viewed from a slightly elevated angle with subdued lighting. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/maple_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/maple_tree_descriptions.txt new file mode 100644 index 0000000..9bf9514 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/maple_tree_descriptions.txt @@ -0,0 +1,20 @@ +train_34456.png A tall maple tree with lush green leaves is viewed from the ground up against a backdrop of blue sky and sparse clouds, surrounded by suburban homes and a neatly trimmed lawn, with its branches and foliage densely packed, creating a full canopy. +train_43489.png The small maple tree displays a vibrant green foliage with a smooth texture, viewed from a slightly elevated angle, set against a grassy background with a patch of bare soil around its base. +train_48943.png A vibrant maple tree with golden-yellow foliage stands against a clear blue sky, viewed from a slightly upward angle, with dense branches and a hint of a grassy landscape in the background. +train_28634.png A towering maple tree with a broad canopy displaying muted green leaves is set against a clear sky, surrounded by open grassy terrain with some distant shrubbery. +train_29023.png The maple tree exhibits a vibrant orange-red foliage with a dense, rounded canopy, set against a clear blue sky and a blurred grassy foreground. +train_11141.png The maple tree displays vibrant red leaves with a dense, bushy texture viewed from a slightly low angle against a clear blue sky, with its branches gracefully sprawling outwards. +train_47305.png The maple tree displays brilliant red foliage with a rough texture in full view, set against a clear blue sky and framed by a mix of greenery in the background. +train_28346.png The maple tree displays vibrant orange foliage with a slightly blurred texture, viewed from a frontal angle against a suburban background featuring a small building and green grass. +train_42412.png The maple tree displays vibrant red foliage with a fine, delicate texture, viewed from an upward angle against a clear blue sky and a distant snow-capped mountain. +train_48833.png The maple tree stands with a full, rounded canopy of deep green leaves, viewed from a ground-level perspective against a clear blue sky and grassy park setting, making its broad trunk and dense foliage the focal points even in low resolution. +train_09384.png A mid-transition maple tree with reddish-brown foliage stands upright against a clear blue sky, surrounded by a green grassy area and distant building structures, showcasing its dense, slightly textured canopy. +train_01683.png The low-resolution image depicts a maple tree with vibrant orange and red leaves, a dense and rounded canopy viewed from a straightforward angle against a dark, blurred background of foliage providing contrast to the bright leaves. +train_40579.png The maple tree displays vibrant red-orange foliage with a sprawling canopy, viewed from a slightly elevated angle against a backdrop of green shrubbery and a wooden fence, standing out with its dense clusters of leaves. +train_33474.png A vibrant maple tree stands prominently with fiery orange and red foliage, set against a clear blue sky and surrounded by a grassy area with scattered small rocks, showcasing a full and symmetrical canopy. +train_30680.png The maple tree displays vibrant red leaves with a dense, bushy texture, viewed from a slightly low angle against a suburban background featuring a partially visible building and scattered greenery. +train_10245.png The maple tree displays a dense, rounded canopy of lush green leaves with a slightly textured surface, viewed from a frontal perspective against an unobtrusive, grassy background. +train_45924.png The maple tree displays vibrant red foliage with a textured, coarse appearance viewed from the side, set against a dark backdrop with hints of green grass at the base and a blurred structure in the distance. +train_19646.png The maple tree displays vibrant orange and yellow foliage with a dense, rounded canopy, viewed from the front with a grassy foreground and a blurred, wooded background. +train_33168.png A maple tree in brilliant orange and red hues stands prominently in front of a clear blue sky, with a slightly textured appearance and a carpet of fallen leaves below, creating a vivid contrast against the lush dark green surroundings. +train_43269.png The low-resolution image shows a large maple tree with dense, green foliage against a clear blue sky, viewed from below, with branches obscuring the trunk and casting soft shadows. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/motorcycle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/motorcycle_descriptions.txt new file mode 100644 index 0000000..c2a3a39 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/motorcycle_descriptions.txt @@ -0,0 +1,20 @@ +train_07719.png A red motorcycle with a sleek, glossy finish is positioned at an angled side view on a green carpeted platform, featuring a yellow helmet resting on the seat and surrounded by bright overhead lighting. +train_12822.png The motorcycle is predominantly black and orange with a glossy finish, viewed from a front angle, set against a bright, hazy background with minimal detail, featuring sharp, streamlined contours typical of a sportbike. +train_09743.png A red and white motorcycle with a sleek, sporty design and visible fairings is positioned in a side view, set against a background of stacked cardboard boxes on a plain gray floor. +train_20806.png The low-resolution image shows a vibrant orange motorcycle, positioned at an angle from the front-right, set against an indoor exhibition-like background, with distinct black accents and a visible patch of gray flooring. +train_20221.png The motorcycle, viewed from the side, features a combination of white and purple colors with a distinct red logo on the fuel tank, set against a plain grey background that accentuates its dual-purpose design. +train_32788.png The motorcycle is predominantly black with a shiny, chrome finish, viewed from a three-quarter angle in a parking lot, featuring a raised handlebar and visible engine components. +train_28424.png The bright orange motorcycle, viewed from the side against a brick wall, features a sleek fairing design, black wheels, and a visible under-seat exhaust. +train_41800.png The motorcycle appears to have a sleek black body with metallic chrome accents, viewed from a side angle on a city street, featuring distinctive elongated handlebars and a prominent front wheel. +train_06733.png The motorcycle appears predominantly white with blue accents and a rugged texture, viewed from the side against a backdrop of greenery, featuring distinct off-road tires and a minimalistic frame. +train_01334.png The motorcycle is predominantly bright green with a glossy texture, viewed from a side profile against a dim indoor background, and features distinct sporty decals and a streamlined design with visible angular bodywork. +train_42861.png The motorcycle tank is viewed from above, displaying a glossy black and yellow two-tone finish with a central white gauge cluster, surrounded by a contrasting chrome trim and set against a blurred indoor background with wooden floor details. +train_49882.png The motorcycle is viewed from the side with a predominantly red body featuring chrome details, a black textured seat, and saddlebags against a plain white background, emphasizing its classic cruiser style. +train_37790.png The motorcycle is predominantly black and silver with a glossy texture, viewed from a front-side angle, set against an asphalt background with faint white markings, featuring a prominent windshield and sleek, aerodynamic design elements. +train_46022.png The motorcycle features a glossy red and chrome exterior with a classic design, viewed from a slight side angle, set against a blurred, neutral-toned background, and adorned with prominent twin exhaust pipes and a curved front fender. +train_12058.png The motorcycle is viewed from the side, featuring a blue and black color scheme with a glossy finish, set against a plain wall background, and has prominent disc brakes and brightly colored rims. +train_45336.png The motorcycle, viewed from the side, features a silver and black color scheme with a matte finish, positioned on a paved surface against a blurred urban backdrop, showcasing a classic café racer design with a prominent round headlight and minimal bodywork. +train_33668.png The motorcycle appears to be a vibrant yellow sportbike with a smooth, glossy texture, shown from a front-side angle against a residential backdrop, featuring distinct large front fairings and a visible exhaust. +train_43338.png The motorcycle is predominantly dark blue with a glossy finish, viewed from a side angle highlighting the chrome detailing and large front wheel, set against a plain, white environment. +train_10091.png The motorcycle is a side view of a blue and black bike with a sleek design, featuring white wheels and a visible kickstand, set against a simple white background. +train_19743.png The motorcycle is viewed from the front, showcasing its vibrant blue glossy fairing and black windshield, with a street and parked vehicles in the background, and visible headlights. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/mountain_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/mountain_descriptions.txt new file mode 100644 index 0000000..378a8ac --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/mountain_descriptions.txt @@ -0,0 +1,20 @@ +train_01542.png The mountain appears dark and rugged against a pastel-hued sky, with visible snow on jagged peaks and foreground rocks silhouetted in twilight. +train_07773.png The mountain appears snow-covered with a gentle, smooth texture under a clear blue sky, with distant peaks creating a serene alpine backdrop. +train_17776.png The image shows a grayish-blue mountain with a smooth texture and a slightly rounded peak, viewed from an angle that highlights its slope against a bright blue sky with scattered white clouds, and a contrasting shadowed foreground mountain on the left. +train_08721.png The low-resolution image shows a mountain with dark, rocky textures rising steeply against a partly cloudy sky, surrounded by a verdant valley with a river flowing in the foreground. +train_39978.png The mountain appears bluish with white snow-capped peaks, viewed from a low angle that accentuates its towering height, surrounded by a deep blue sky and fluffy white clouds, with silhouettes of dark trees framing the scene. +train_16251.png The mountain appears with a striking pale bluish-gray hue, showcasing a rugged, snow-capped peak against a bright blue sky, with minimal visible vegetation or distinguishing geological formations due to the low resolution. +train_09142.png A lush green mountain with a smooth texture rises on the left, viewed at an angle, while a jagged peak in the distance is silhouetted against a vibrant sunset in a sky partially obscured by clouds. +train_33409.png The mountain appears snow-covered with a predominantly white texture, viewed from a low angle against a clear blue sky, with jagged peaks and shadowed crevices adding depth and contrast. +train_02181.png The mountain appears in muted gray and blue tones with a rugged, rocky texture rising prominently against a cloudy sky, surrounded by a foreground of earthy colored vegetation. +train_24630.png The structure exhibits a sandy brown and gray texture, featuring sharp, angular surfaces with a sloped orientation against a clear blue sky, highlighted by distinctive architectural elements resembling carved entrances and layered stonework. +train_33676.png The mountain features a snow-capped peak with a smooth, conical shape, set against a clear blue sky, and is releasing a plume of white smoke from its summit, indicating volcanic activity. +train_17524.png A lush, green mountain with a smooth, grassy texture rises prominently under a partly cloudy sky, viewed from a slight upward angle, with a gentle slope and a distinct shadow casting along its side. +train_20132.png The mountain appears in a warm, muted pink and tan hue with a rugged texture, seen from a slightly elevated viewpoint against a clear blue sky, with green and brown foothills and a sloping valley in the foreground. +train_09824.png The mountain is a lush green on its lower slopes with a jagged, rocky summit, contrasted against a backdrop of blue sky and surrounded by other rugged peaks, depicting a sunlit alpine landscape. +train_45718.png The mountain appears dark and rugged with brownish tones and a jagged silhouette, surrounded by a cloudy sky and bordered by a calm, dark body of water. +train_24605.png The mountain appears snow-capped with a rugged texture, viewed from a low angle amidst a wintry forest setting, with dark evergreen trees contrasting against the white snow and a clear blue sky. +train_39991.png The mountain in the foreground features a silhouetted, dark, and jagged outline against a vibrant backdrop, with a gradient sky transitioning from orange to deep blue, streaked with elongated pink clouds, and a calm reflective body of water below. +train_33031.png A snow-covered mountain with a smooth, conical peak emits a plume of white smoke against a clear blue sky. +train_36073.png The mountain appears as a symmetrical volcanic cone with a smooth, grayish texture, viewed against a clear blue sky with a subtle green foreground of vegetation. +train_04047.png The mountain features a snow-capped peak with stark white and textured slopes, viewed from a lower angle against a bright blue sky, with a distinct yellowish structure in the foreground. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/mouse_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/mouse_descriptions.txt new file mode 100644 index 0000000..f33b9e9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/mouse_descriptions.txt @@ -0,0 +1,20 @@ +train_32491.png A small, brownish-gray mouse with a smooth texture and long tail is viewed from above on a plain white background, with its tiny legs and ears partially visible. +train_46399.png A small mouse with a light brown and white fur coat is nestled in an environment filled with scattered dry leaves, captured from a slightly top-down angle, highlighting its large eyes and sharp snout. +train_00918.png A small, light brown rodent with dark eyes and a slightly pointed nose sits inside a round, transparent container with a smooth and slightly reflective surface. +train_44701.png The mouse has a black and white patchy coat with a smooth texture, is seen lying on its side in a human hand, against a neutral background, with distinct round ears and a pointed snout. +train_46062.png The mouse, with a light brown and cream textured fur, is perched in a side view on slender, dried grass stalks against a blurred, earthy-toned background, showcasing its long tail and delicate limbs. +train_28002.png A small, short-furred, brown mouse with a slightly hunched back is positioned in profile against a smooth, gradient light-to-dark background, showing its rounded ears and long, thin tail. +train_37642.png The image shows a small brown and white mouse with a smooth fur texture, viewed from above, standing on a gray surface, with visible thin whiskers and large ears. +train_16545.png The object appears to be a beige, textured computer mouse viewed from above against a smooth, neutral-colored background, with a distinctive loop of wire extending from the back. +train_10241.png The mouse appears from an overhead view with a dark gray and smooth body, featuring lighter underbelly fur, positioned on a bright blue surface next to a purple object. +train_29953.png The object appears brown and somewhat textured, viewed from behind, with a background of green foliage and earthy ground, and it has a rounded body shape with a hint of a tail visible. +train_38790.png The image depicts a brown mouse with a smooth texture, viewed from the side against a dark background, featuring prominent ears and a tail slightly blurred due to its position. +train_39446.png The image shows two mice with distinct textures, one light brown with smooth fur and slightly raised ears and the other dark brown with rougher fur, positioned side-by-side in a close-up view within a soft, circular white environment, possibly a bowl. +train_16021.png The image depicts a brown, smooth-furred mouse viewed from the side, on a light-colored surface with its tail visible behind, with no distinct background elements. +train_41930.png The image shows a black mouse with a glossy texture, viewed from the side as it moves across a smooth, white surface next to green leafy vegetables, highlighting its pointed snout and long, slender tail. +train_45855.png The small creature displays a predominantly light brown and white coloration with a smooth texture, is positioned in an upward climbing pose, surrounded by a dark backdrop and red flower-like elements, with prominent large eyes as distinguishing features. +train_10736.png The mouse has a light brown, slightly furry texture with hints of white, is viewed in profile perched on green foliage, and is distinguished by its small, rounded ears and pointed snout. +train_12663.png A glossy, metallic black computer mouse is positioned in a side profile on a smooth, light blue surface. +train_08159.png A small, brownish mouse with a white underbelly is seen in a side profile pose against a speckled, rocky background, with its large ears and distinct, long tail visible despite the low resolution. +train_31545.png The image depicts a small, brownish mouse with a smooth texture, viewed from the side as it appears to be walking on a white background, with its thin tail and tiny ears vaguely distinguishable despite the low resolution. +train_19475.png The low-resolution image shows a small mouse with light brown fur and a smooth texture cradled in a human hand against a neutral, soft-focus background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/mushroom_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/mushroom_descriptions.txt new file mode 100644 index 0000000..b9acc68 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/mushroom_descriptions.txt @@ -0,0 +1,20 @@ +train_16284.png The mushroom displays a smooth, reddish-brown cap with white gills, viewed from a side angle in a grassy environment with blurred greenery in the background. +train_10297.png The mushroom appears off-white with a smooth, convex cap, a straight, slender stalk, and is situated in a grassy environment with a blurred grayish background. +train_17345.png The mushroom features a vibrant orange cap with a smooth texture, viewed from the side, set against a forest floor backdrop with scattered green leaves and blurred foliage, exhibiting noticeable white spots on the cap. +train_18302.png The mushroom displays a honeycomb-patterned dark brown cap on a white stalk and is viewed from above, set against a contrasting background of gray and white stones. +train_07324.png Three slender mushrooms with smooth, vivid orange conical caps and pale white stems, viewed from the front against a backdrop of out-of-focus earthy tones. +train_19938.png Two mushrooms stand prominently in a grassy setting, featuring reddish-brown caps with a smooth texture and bulbous stems, set against a blurred green and dark red background. +train_06446.png The mushroom has a smooth, pale pink cap and a slender white stalk, viewed from a slightly top-down angle, set against a background of dry, brown leaves. +train_15545.png A white-capped mushroom with a smooth texture is viewed from the side, nestled among brown leaves and dirt, featuring a cream-colored stem and a hint of green foliage in the background. +train_30097.png The mushroom has a tall, beige stalk with a conical, honeycomb-textured cap, viewed from the side amidst a background of green foliage and dark, mossy earth. +train_01813.png The mushroom displays a light brown cap with a smooth texture, viewed from the side in a cluster, set against a forest floor background with hints of green and brown hues, and features a slightly bulbous stem. +train_36138.png The mushroom appears white with a smooth texture, standing upright amidst a grassy background, with a conical cap and a visible stalk. +train_33340.png The mushroom appears tan with a smooth, convex cap, viewed from above and slightly to the side, set against a backdrop of green grass with a slender, narrow stem. +train_24008.png The mushroom features a smooth, bright orange cap with a slender white stem, viewed from the side amidst a forest floor covered in dry leaves and green blades of grass. +train_20848.png The mushroom features a light brown cap with a slightly darker edge and a smooth, elongated white stem, viewed from the side against a solid blue fabric background. +train_09368.png The mushroom features a tall, pale yellow stalk with a distinctive dark brown, conical cap displaying a ridged texture, set against a soft-focus forest floor composed of scattered leaves and twigs. +train_33494.png The mushroom has a brown, textured cap with a honeycomb appearance viewed from slightly above, against a backdrop of dark soil and green leaves. +train_33533.png A tan-colored mushroom with a wavy, rippled cap texture is viewed from a side angle amidst a natural, forest-like setting featuring a blurred green and brown background. +train_20979.png The mushrooms have light brown caps with a smooth texture, slender cream-colored stalks, and are viewed from the side against a forest floor background with leaves and twigs. +train_27690.png The mushroom has a brown, smooth cap with a bulbous shape, resting on a tall, pale yellow stem, set against a leafy forest floor background. +train_43836.png The mushroom has a dark, honeycomb-textured cap with a tall conical shape and a lighter stem, set against a blurred natural background of green and brown foliage. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/oak_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/oak_tree_descriptions.txt new file mode 100644 index 0000000..fa17b96 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/oak_tree_descriptions.txt @@ -0,0 +1,20 @@ +train_40056.png A large oak tree with dense, green foliage and a rough-textured trunk, viewed from a straight angle against a backdrop of clear blue sky with scattered white clouds and a grassy field. +train_18065.png The oak tree displays a lush green canopy with a dense texture, viewed from a distance against a bright blue sky and grassy field, characterized by its broad, rounded crown and sturdy trunk. +train_06122.png The oak tree has a dense, dark green canopy with a rounded, arching shape, standing against a partly cloudy sky and adjacent to a plain, light-colored building. +train_38783.png A lush, dark green oak tree with a dense canopy stands prominently against a backdrop of an open, grassy field under a clear blue sky, showcasing a balanced and symmetrical silhouette. +train_23261.png The oak tree has a lush green canopy with a dense, rounded shape, viewed from a slightly elevated angle, set against a sparse park-like environment with a clear blue sky in the background. +train_04088.png A broad-canopied oak tree with dense, dark green foliage and a sturdy trunk is situated in a rolling grassy landscape with a blurred background of gentle hills under a soft sky. +train_18729.png The oak tree stands solitary against a cloudy sky with a prominent silhouette of gnarled branches and dark, textured bark, surrounded by an expansive grassy field. +train_41089.png A large, lush oak tree with dark green, dense foliage is centrally positioned against a backdrop of golden fields under a partly cloudy sky, viewed from a low angle that emphasizes its expansive canopy and robust trunk. +train_39994.png The oak tree features a lush canopy of green leaves with a textured bark, viewed from a slightly upward angle against a clear blue sky, with surrounding greenery suggesting a park or garden setting. +train_07527.png The oak tree is a vibrant green with a dense, rounded canopy viewed from the side, set against a grassy landscape with a pond in the background, showcasing its sturdy trunk and evenly spread branches. +train_22997.png The oak tree is shown in an upright, full silhouette against a bright, clear sky with dense, dark green foliage and a textured rough bark, surrounded by an open grassy field and bordered by a blurred tree line in the background. +train_27515.png The oak tree stands prominently from a low angle with a lush, dark green foliage texture, set against a bright blue sky with scattered white clouds, on a grassy terrain with shadows. +train_42276.png The oak tree, with its dark green, dense foliage and rough-textured bark, stands prominently against a clear blue sky, contrasting with the dry, golden grassy field surrounding it. +train_09647.png This oak tree features a dense canopy of dark green, ruggedly textured leaves, viewed from a distance against a clear sky with a rural setting in the background, including a small white structure with a red roof. +train_35232.png The oak tree features a dark silhouette with dense, textured foliage against a twilight sky, partially obscuring a bright full moon in the background. +train_38701.png The large oak tree, viewed from ground level, displays dense, dark green foliage with a textured canopy under a clear blue sky, set against a grassy park landscape and bordered by white structures. +train_18680.png The oak tree appears with a dark green, dense foliage and a rugged bark texture, viewed from a slight ground-level angle, set against a clear blue sky and an open grassy field, with its broad canopy distinctive even in low resolution. +train_06317.png A solitary oak tree stands prominently in a field against a clear blue sky, with its branches adorned with clusters of brownish leaves, creating a textured silhouette. +train_13268.png A dark green oak tree with a dense canopy is seen from a side view against a dry, grassy landscape, with bright light creating a stark contrast between the foliage and the background. +train_28773.png The oak tree is a broad, dense canopy of deep green leaves with a textured, rugged bark visible on the trunk, viewed from the side against a clear blue sky and surrounded by a grassy field with sparse shrubbery. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/orange_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/orange_descriptions.txt new file mode 100644 index 0000000..2189d83 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/orange_descriptions.txt @@ -0,0 +1,20 @@ +train_23196.png The orange objects appear as bright, golden-yellow spheres with a smooth texture, viewed from the side among dark green leaves, set against a blurred, natural background. +train_49147.png The orange is vibrant and smooth with a round shape, viewed from the side against a dark leafy background that enhances its bright color. +train_02496.png The two oranges, viewed from above, display a vibrant orange hue with a smooth texture, one featuring a leafy stem attached, set against a plain white background. +train_36015.png The image shows several bright orange, round fruits with a smooth, slightly dimpled texture, positioned in a cluster against a backdrop of dark green leaves. +train_34874.png The orange appears in a pile viewed from above, with a vibrant orange color and slightly dimpled texture, set against a background of similarly colored fruits. +train_05297.png Two whole oranges and one sliced half, with a bright orange hue and smooth texture, are viewed in a slightly angled arrangement on a white background alongside green leaves. +train_47873.png A whole orange with a smooth, vibrant orange texture is positioned beside a halved section revealing its moist, juicy interior atop a plain white background. +train_43503.png The low-resolution image shows three oranges with a bright, vibrant orange color and slightly textured surface, viewed from the side, with a dark, leafy green background that hints at a tree branch. +train_19178.png The image shows three whole oranges and one halved orange with bright, smooth skin and slightly dimpled texture, arranged on a light-colored, soft-focus background that enhances their vibrant orange color. +train_12223.png Two whole oranges with a smooth, vibrant orange skin flank a centrally cut half-orange revealing its juicy, segmented interior, all set against a plain light gray background. +train_01367.png The image depicts a vibrant orange-colored fruit with a slightly glossy, dimpled surface, viewed from a close-up angle showing peeled segments against a blurred background of similar oranges. +train_23754.png The image shows a low-resolution close-up of two halved oranges with bright orange flesh, a slightly rough texture, and numerous small seeds visible against a dark background. +train_35297.png The image shows three oranges—two whole ones with a vibrant orange peel displaying a slightly coarse texture from the top view, and a sliced one revealing its juicy, segmented interior on a dark background. +train_38767.png An orange sphere with a smooth texture is on the left, while a rougher, darker orange object with visible blemishes is on the right, against a blurred dark background with hints of green and purple. +train_40485.png The image shows three bright orange, smooth-textured fruits with green leaves attached, set atop a brown, indistinct background, suggesting a natural setting. +train_37017.png The low-resolution image shows an orange with a vibrant, smooth surface and a prominent light spot on the top, set against a plain gray background. +train_20385.png The image shows a whole spherical orange with a smooth, bright orange skin and two orange segments placed beside it on a green plate, against a deep blue background, with some zest scattered around. +train_04650.png The low-resolution image depicts three vibrant orange-colored fruits with a slightly dimpled texture, closely grouped together on a branch with glossy green leaves, set against a blurred background of more foliage. +train_16757.png A sliced orange with a vibrant, smooth outer peel and juicy inner segments is shown in a frontal view against a mixed background of other fruits. +train_30854.png The orange object is a polished, reflective egg-shaped decoration with a vibrant, smooth surface and stands upright amidst a dark background and various other similarly shaped objects. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/orchid_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/orchid_descriptions.txt new file mode 100644 index 0000000..c2f0ac2 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/orchid_descriptions.txt @@ -0,0 +1,20 @@ +train_09239.png The orchid displays a blend of soft yellow and vibrant pink hues with a slightly ruffled texture, viewed from the front with a blurred, dark green background and purple accents. +train_00167.png The orchid displays large, smooth white petals with a central yellow and pink accent that features intricate patterns, viewed from a frontal angle against a blurred green background. +train_15751.png The image shows an orchid with vibrant orange petals possessing a slightly textured surface, viewed from a side angle with dark green foliage in the blurred background, highlighting its contrast against the shadowed environment. +train_25461.png The orchid displays vibrant pink and white petals with a creamy yellow center, viewed straight-on against a green leafy background, and features ruffled edges and a distinctive coloration pattern. +train_24487.png The orchid displays a prominent white and purple coloration with a velvety texture, viewed from the front against a blurred dark background, featuring a distinctive vibrant purple lip and delicate ruffled edges. +train_22576.png The orchid is white with a slight yellow center, viewed from the side, set against a lush green background, with ruffled edges and elongated petals visible. +train_31898.png The image shows a vibrant purple orchid with a striking white and orange center, positioned in a side-view with a blurred dark green background, highlighting its large, textured petals that exhibit a subtle sheen. +train_11697.png The orchid displays vibrant pink petals with a slightly ruffled texture, viewed from the front, set against a blurred dark green and purple background, with a distinct yellow center that stands out. +train_36183.png The orchid displays vibrant yellow petals with a waxy texture, facing forward with hints of pink in the center, set against a dark, blurred background showcasing thin, twisting branches. +train_22588.png The orchid has vibrant magenta petals with a slightly ruffled texture, captured from a side angle against a blurred green and gray background. +train_24806.png The orchid displays vibrant pink petals with a smooth texture, captured from a slightly angled-front view amidst a lush green and blurry natural background with hints of other blossoms. +train_00456.png The orchid exhibits pale green petals with a central white and pinkish cup-like structure, viewed from the front against a dark, blurred background that highlights its striking contrast and irregular petal shapes. +train_10206.png The orchid displays large, delicate white petals with a subtle central yellow hue, viewed from a frontal angle against a dark green, leaf-filled background. +train_35372.png The orchid displays vibrant pink petals with a deep magenta center, featuring a slightly ruffled texture, set against a soft-focus, natural green background with other foliage. +train_15935.png The orchid displays rich magenta petals with white edges and a central yellow throat, shown from a top angle against a lush green background, accentuating its vibrant contrast and slightly ruffled texture. +train_28367.png The orchid displays vibrant reddish-pink petals with a prominent central column, viewed from above against a blurred green and yellow background, with broad petals and a dark center providing contrast. +train_02242.png The orchid features white petals with subtle pink and purple hues at the center, showcasing a delicate texture, viewed from a slightly elevated angle against a plain background, with notable orange and yellow hints in the lip area. +train_08363.png The orchid displays vibrant pink petals with a smooth texture, viewed from the front with a blurred dark green background, and features a light center with a hint of white along the petal edges. +train_31076.png The orchid displays vibrant fuchsia petals with white edges, viewed from a slightly elevated angle, set against a plain white background with broad green leaves below. +train_17828.png The orchid has a pale green hue with a textured, smooth surface, viewed close-up and slightly tilted, set against a blurred background of similar green tones and vertical stems, with its distinct lip and petals subtly outlined despite the low resolution. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/otter_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/otter_descriptions.txt new file mode 100644 index 0000000..49905f4 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/otter_descriptions.txt @@ -0,0 +1,20 @@ +train_13163.png The image shows a light brown furry creature lying on its side on a deep blue cushion, with its smooth, sleek fur texture contrasted against the soft fabric background, although the low resolution limits further distinguishing details. +train_08060.png The otter appears dark brown with a smooth, glossy texture, viewed from a side angle as it bends over a textured green-blue surface, with a blurred gray background that suggests an aquatic environment. +train_09656.png A dark brown otter floats on its back in blue-green water, with a slightly lighter brown head and faint ripples surrounding it. +train_45580.png The image shows a dark brown, smooth-textured otter sitting upright with its back to the camera, situated in a rocky shoreline environment with distant ocean waves under a cloudy sky. +train_03935.png The otter, with a sleek brown coat and a lighter underbelly, is lying on sandy ground amidst rocks, captured in a side view with its head turned towards the camera, showcasing its small rounded ears and long whiskers. +train_01869.png The otter appears in a side profile view with a sleek, dark brown body contrasted against a mossy green and earthy brown background, featuring a distinctly tapered tail and shiny fur texture. +train_38423.png The otter is floating on its back in a bluish aquatic environment with a sleek, dark brown, and slightly shiny coat, having a visible rounded head and small eyes, and the texture appears smooth despite the image's low resolution. +train_39414.png The otter is floating on its back in calm water, with dark brown fur and a lighter brown or beige head, surrounded by a water environment that enhances its rounded, compact silhouette. +train_35904.png The otter appears to be floating on its back in a body of water, showcasing a brown, textured fur with a lighter, almost cream-colored head, and the blurred background suggests a natural aquatic environment. +train_24446.png The otter appears with a smooth, dark brown coat, lying on its side amidst a wooden, earthy-toned background, with lush green foliage partially visible, highlighting its sleek body and small head from a side perspective. +train_25720.png A vibrant blue and green peacock feather with distinct eye-like markings is shown up close against a blurred green background. +train_11085.png The otter is a dark brown texture with a lighter face, lying on its back in blue water, showcasing its paws and face above the surface. +train_24741.png The otter, with its sleek, dark brown fur and lighter underbelly, is captured in a profile view as it stands upright against a blurred, natural green and watery background, emphasizing its sinuous body and prominent whiskers. +train_33037.png The image depicts a dark brown, wet-feathered bird with a long, pointed beak swimming in open water, contrasting with the idea of an otter. +train_04544.png The image shows a dark brown otter with a sleek, glossy fur texture, sprawled on a light-colored snowy surface in an outdoor environment with indistinct, blurred background elements. +train_12682.png The otter appears dark brown with a shiny, sleek texture, viewed in a playful jumping pose against a blurred aquatic background with reflections of water. +train_29813.png The otter appears dark brown with a sleek, smooth texture, seen in a side profile as it swims in clear greenish water with its streamlined body visible. +train_35950.png The otter has a smooth, brown coat with a lighter, almost white underside, seen from a side view with its head resting on a sandy surface, surrounded by greenish water in the background. +train_02929.png A brown otter with a smooth, sleek coat is lying on its belly amidst lush green foliage, viewed from above. +train_08524.png The otter is a light brown, smooth-furred creature with its head turned slightly upwards, resting against a blurry beige background, showcasing its small, rounded ears and dark eyes. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/palm_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/palm_tree_descriptions.txt new file mode 100644 index 0000000..5b6e491 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/palm_tree_descriptions.txt @@ -0,0 +1,20 @@ +train_49837.png The palm tree, viewed from below, has long, narrow green fronds radiating from a textured brown trunk, set against a vivid blue sky. +train_15456.png The palm tree features dark green, slightly curved fronds against a blurred, light blue and green tropical background, viewed from a low angle emphasizing the sweeping, arching shape of the leaves. +train_21570.png A silhouetted palm tree with gently arching fronds stands against a backdrop of a vibrant orange and purple sunset sky, with a glowing sun near the horizon and hints of distant foliage. +train_28828.png The palm tree features vibrant green fronds radiating from a central point, seen from a worm’s-eye view, with a textured, slightly brown trunk and a bright sky peeking through the dense canopy. +train_27174.png The palm tree, viewed from a slight side angle, exhibits a dark, textured trunk with a dense canopy of fan-shaped green fronds against a clear blue sky and suburban house background. +train_16420.png The palm tree in the image displays vibrant reddish-brown and green hues with textured fronds radiating outward, viewed from below against a clear blue sky, with visible clusters of small orange fruit beneath the leaves. +train_26825.png The image shows a palm tree with dark green, lush fronds radiating outward from a textured, fibrous trunk, set against a backdrop of a cloudy sky and blurred greenery at the base. +train_44147.png The palm tree, viewed from below with a perspective that emphasizes its canopy, displays a mix of green and brown fronds with a textured, rough trunk, set against a bright sky background. +train_10239.png A vibrant green palm tree with a textured, brown trunk stands prominently against a clear blue sky, with silhouetted fronds fanning outward and a reddish ground indicating a desert or arid landscape. +train_04788.png The palm tree, seen from a slight upward angle, displays a textured trunk with a light brown hue and dense, arching green fronds against a clear blue sky and a backdrop of other palms. +train_24912.png The palm tree has a dark green, bushy crown with long, arching fronds, seen from a low-angle perspective against a bright blue sky, with a white building and terracotta roof edge on the left, highlighting its tall, slender trunk. +train_04387.png The palm tree, seen from a low viewpoint, features vibrant green, fan-like fronds with a slightly textured surface against a backdrop of a clear blue sky and scattered white clouds. +train_12571.png The palm tree displays dark green, feathery fronds radiating from a thick, brown trunk, set against a backdrop of lush greenery and distant red-roofed structures under a bright daylight sky. +train_22971.png A tall palm tree with a slender, dark trunk and a crown of sparse, spiky green fronds stands against a deep blue sky with a sandy ground and a silhouette of shrubbery in the background. +train_39892.png A short, robust palm tree with bright green fronds radiating from a thick trunk is set against a blurred, dark background and grassy terrain, highlighting its broad, fan-like leaves. +train_37259.png A single, leaning palm tree with a textured, brown trunk and long, dark green fronds is set against a vibrant beach scene with a blue sky and white sand, featuring colorful towels or clothing beneath it. +train_35792.png The palm tree stands upright with a dense canopy of vibrant green fronds radiating outward, set against a blurred background of muted greenery and a clear sky. +train_19886.png The palm tree has a tall, slender trunk with a rough, textured surface, topped with a sparse crown of long fronds that taper into pointed tips, set against a backdrop of clear blue sky and blurred building structures. +train_08973.png The palm tree stands tall with its dark silhouette contrasting against an orange and pink-hued sunset sky, featuring a feathery canopy of leaves atop its slender trunk. +train_00644.png The palm tree in the image displays dark green, fan-shaped leaves with a rough, textured trunk, viewed from a slightly elevated angle against a backdrop of clear blue sky and lush greenery. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/pear_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/pear_descriptions.txt new file mode 100644 index 0000000..4fa16aa --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/pear_descriptions.txt @@ -0,0 +1,20 @@ +train_10102.png The upper object appears as a golden-brown, textured form with a rounded shape and stem, while the lower object resembles a dark green, leaf-like shape against a plain white background. +train_00590.png The image shows a small yellow pear with a slightly rough texture, viewed partially sliced against a simple white background, with the stem visible and cut flesh revealing a light, smooth interior. +train_40553.png A light green, smooth-textured pear is centered in a neutral, blurred background, viewed slightly from the side with no distinct markings visible. +train_33148.png The pear appears yellowish-green with a smooth texture, shown from a slightly angled perspective against a plain white background, featuring a reddish-brown stem. +train_39466.png The object is a small, white ceramic vase with a smooth texture, viewed from the side against a blurred background of assorted flowers and greenery. +train_43707.png A cluster of three brownish-yellow pears with slightly textured surfaces and elongated necks is set against a plain white background, with one pear prominently facing the camera and the others angled slightly to the side. +train_17025.png The pear exhibits a warm orange hue with a smooth texture and is viewed slightly from the side against a blurred green and white leaf background, showing a rounded top tapering to a wider base. +train_13068.png A pair of pears with a mix of green and reddish-brown hues and a smooth texture are positioned on a leafy background, one slightly turned with the stem visible. +train_47604.png The image depicts three pears with a smooth, slightly dappled texture, positioned upright, leaning against each other, and presented in a grayscale setting with a soft gradient background that appears untextured. +train_05703.png A ripe, light green pear with a brown patch on one side and smooth texture, shown in a half and whole form, placed against a plain white background. +train_36321.png The image shows a low-resolution pear sliced in half, revealing a smooth, light-colored flesh with a subtle granular texture, positioned vertically on a small plate against a dark, featureless background, with the slice displaying visible seeds near the core. +train_34683.png The object appears to be a smooth, green pear with a slightly elongated shape viewed from the front, set against a plain gray background. +train_48777.png The pear is predominantly green with a smooth texture, viewed from the side, and is set against a plain, white background with a visible gradient toward its rounded base. +train_49883.png The pear is predominantly golden-yellow with subtle red blushes, displaying a smooth yet slightly dimpled texture, positioned upright on a light, shadowed background with a dry, curled leaf attached to its short, curved stem. +train_28370.png The pear is yellow-green with a smooth texture, viewed from a slightly angled side perspective, against a dark leafy background, with subtle speckling on its surface. +train_18495.png The image shows three pears in a row with varying shades of green to brown, each displaying a smooth texture and distinct outline against a plain white background. +train_04521.png The pear appears to be a ripe, orange-red with a smooth texture, resting on its side on a wooden surface, set against a softly blurred background. +train_32043.png The pear is brown with a smooth texture, viewed from the side showing its elongated shape, set against a plain white background with a distinguishable dark stem at the top. +train_40142.png The pear is a golden-yellow color with a smooth, slightly speckled texture, viewed from a side angle on a wooden surface, with a noticeable brown stem. +train_37512.png The object appears to be a diagonally sliced pear with a smooth greenish-yellow exterior and a white interior, positioned on a blurred gray surface. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/pickup_truck_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/pickup_truck_descriptions.txt new file mode 100644 index 0000000..cef965d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/pickup_truck_descriptions.txt @@ -0,0 +1,20 @@ +train_17720.png The pickup truck is a dark blue or black with a metallic sheen, seen from an elevated front three-quarter angle, parked adjacent to a light-colored building with a somewhat boxy and angular body design featuring a distinctive front grille and rounded wheel arches. +train_03159.png The image shows a low-resolution red pickup truck with a smooth texture and black wheels, viewed from a front-left angle against a plain white background. +train_32867.png The pickup truck is bright red with a smooth texture, shown from an angled side view, featuring a small, raised hood scoop, and set against a plain, light gray background. +train_35227.png The pickup truck is a light silver color with a smooth texture, viewed from the rear in a parking area with faint trees in the background and visible tailgate grooves as distinguishing features. +train_34972.png The pickup truck appears to be a dark blue or black color with a matte texture, viewed from the side in a parking lot environment, featuring lifted suspension and rugged off-road tires. +train_02396.png A low-resolution image of a bright blue pickup truck is captured from a three-quarter rear angle, featuring a smooth, matte texture with a simple, dark-colored bed cover against a plain black backdrop, highlighting its minimalistic design and rounded edges. +train_03521.png A vintage red pickup truck with a glossy texture is viewed from a front-right angle, set against a barren, sandy background with hills, featuring pronounced round headlights and whitewall tires. +train_14623.png The pickup truck is black with a glossy finish, viewed from the front-left angle, parked in a sunlit urban area with a raised suspension and chrome accents. +train_41401.png The pickup truck is a small, turquoise model with a matte texture, viewed in profile from the side against a plain, light-colored background, featuring large wheels and a flatbed. +train_15549.png This pickup truck is a weathered teal color with a rusty texture, viewed from the side against a plain wall background with a contrasting red door, featuring orange wheel rims and a classic design. +train_32461.png The low-resolution image shows a black pickup truck with a matte texture, viewed from a rear three-quarter angle, set against a scenic mountain landscape with rolling green hills and a clear sky, featuring a distinct open cargo bed. +train_37709.png The image shows a bright blue pickup truck with a smooth, glossy texture viewed in profile from the side, parked on a grassy area in front of a beige and yellow building with trees in the background. +train_19502.png The blue pickup truck, viewed from the side, features a simple metallic texture with a black bed liner, set against a residential background of brick walls and greenery, exhibiting a small compact design with dark wheels. +train_02030.png The pickup truck is bright orange with a smooth texture, viewed from the side, parked against a background of vertical yellow and blue stripes, and features a utilitarian design with simple, rounded contours. +train_49640.png The red pickup truck, viewed from the rear right angle, features a glossy texture, chrome detailing, and is set against a mountainous backdrop with lush greenery. +train_10804.png The black pickup truck, viewed from the rear three-quarter angle, features a glossy texture with visible raindrops and is parked on a wet city street beside tall palm trees and buildings, with distinctive chrome trim and rugged wheel arches. +train_30120.png The pickup truck is a vintage model with a teal color and smooth texture, viewed from the side in a parking lot with trees in the background, featuring a visible spare tire mounted on the side. +train_26235.png A compact, black pickup truck with a smooth texture and extended rear axle is viewed from the side, parked in a residential neighborhood with buildings and a tree visible in the background. +train_16973.png The silver pickup truck is viewed from the side in a suburban street setting, displaying smooth body panels and rounded lines with trees and houses in the background. +train_35371.png A vintage-style, black pickup truck with a smooth matte finish is viewed from the side, parked on a paved driveway in front of a beige house with a stone wall and grassy lawn. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/pine_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/pine_tree_descriptions.txt new file mode 100644 index 0000000..88a4a71 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/pine_tree_descriptions.txt @@ -0,0 +1,20 @@ +train_01571.png The pine tree displays a rugged texture with green-tinged needles and a slightly twisted trunk, viewed from a side angle with a rocky, arid landscape in the background enhancing its weathered appearance. +train_16777.png The object appears as a simplified, dark green conical shape resembling a pine tree, with a smooth texture against a plain white background. +train_31097.png The image depicts a tall, slender pine tree with a brown trunk and dark green foliage, viewed from the ground up against a clear blue sky, with sparse, elongated branches and a grassy landscape partially visible at the lower edge. +train_16709.png The image shows a pine tree with dark green needle-like foliage, viewed from a low angle against a clear blue sky, with the branches appearing clustered and slightly blurred, indicating a dense texture. +train_15138.png A bushy pine tree with dark green, dense foliage, viewed from the side against a backdrop of reddish-brown rocky terrain and a vivid blue sky. +train_18193.png The pine tree appears dark green with a coarse texture, viewed from a low angle against a clear blue sky, surrounded by rocky terrain and sparse vegetation. +train_19261.png A small pine tree with dark green needles and a layered, conical shape is dusted with snow, positioned in a snowy landscape with blurred, snow-covered trees in the background. +train_10927.png The pine tree has a reddish-brown to orange hue with a rough texture, viewed from a side angle, set against a clear blue sky with sparse vegetation in the background, displaying distinctive bare branches and needle clusters. +train_34949.png The pine tree appears green with a thin, sparse texture, captured from a slight upward angle against a light sky, with indistinct leaves in the background. +train_07736.png The pine tree appears frosted and pale due to snow, with a straight upright trunk and sparse branches, set against a snowy background with a dark, blurred forest line in the distance. +train_39993.png The image shows a tall, green pine tree with a textured, conical shape standing amidst a lush garden, with a backdrop of a clear blue sky and a distant ocean view. +train_26636.png The pine tree appears tall and slender with dark green, needle-like foliage, viewed from a low angle in an urban setting with cars and buildings in the background, despite the low resolution. +train_24627.png A small, dark green pine tree with a bushy texture is set against a plain white background, planted in a reddish-brown pot, viewed from a slightly elevated angle. +train_32614.png The image shows a dark, vertically oriented pine tree with sparse, evenly spaced branches, set against a light, blurred mountainous background. +train_28526.png A heavily textured, dark green pine tree with a twisted trunk is set against a rocky, snow-dappled landscape beneath a clear blue sky. +train_26688.png The pine tree is richly green with a dense texture of needle-like foliage, adorned with red ornaments, viewed from the front against a bright blue background, making the decorations a notable feature. +train_16001.png The pine tree appears dark green with a rough, bushy texture, viewed from the side with a backdrop of a tranquil lake and distant, snow-capped mountains under a clear sky. +train_47967.png I'm sorry, I can't help with that. +train_30109.png This pine tree, seen from a side angle against a clear sky, displays a dark green, textured canopy contrasted by a thick trunk, while the background features a pale yellow building. +train_31150.png The tree in the image appears to have dark green, needle-like leaves and a rough, textured bark, with an upward-reaching pose against a cloudy sky, surrounded by glimpses of other trees. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/plain_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/plain_descriptions.txt new file mode 100644 index 0000000..0b17cb1 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/plain_descriptions.txt @@ -0,0 +1,20 @@ +train_23813.png The image depicts a flat expanse of land with a golden-brown hue and uneven grassy texture, set against a dramatic sky with dark, sweeping clouds that convey an impending storm. +train_05715.png The plain appears as a vast, gently undulating landscape with a mix of green and brown patches, viewed from a slightly elevated position, under a clear blue sky, surrounded by a faint horizon line and sparse vegetation. +train_11056.png A lush green plain stretches out with a textured carpet of mixed grasses under a cloudy sky, bordered by a dense line of dark green trees in the background, with a scattering of light purple flowers adding subtle color variation. +train_03693.png The plain features lush green grass with a slightly blurred texture covering the foreground, set under a partly cloudy sky with patches of blue visible, suggesting a typical rural field environment. +train_09162.png The image shows a wide expanse of green grass under a clear blue sky, with a distant line of dark trees or structures forming the horizon, viewed from a ground-level perspective. +train_31462.png A grassy plain with tall green-brown vegetation stretches under a partly clear sky, with a horizon line barely visible in the distance. +train_07227.png The plain exhibits a patchy texture with alternating areas of green grass and brown earth, viewed from an oblique angle, set against a background of dense, dark green trees under a cloudy sky. +train_09301.png A vast, flat, and arid plain stretches under a clear blue sky, dotted with sparse, dark vegetation against a light brown earth, forming a horizon with distant mountainous haze. +train_20898.png A vast stretch of green grassland is seen from a low angle, bordered by a faint line of distant trees against a pale blue sky. +train_05534.png The image shows a dry, flat plain covered with golden-brown grass under a clear blue sky, with distant trees lining the horizon. +train_19494.png The plain appears to be a vast expanse of muted brown grassland stretching into the distance under a clear blue sky, framed by dark, leafy branches in the foreground, with scattered white clouds accentuating the open horizon. +train_02824.png A vast, flat landscape stretches under a wide, dramatic sky dominated by deep blue and gray clouds, with a narrow dirt path cutting through the golden-brown grassy field, creating a sense of endlessness and openness from a ground-level viewpoint. +train_45749.png A vast, flat expanse with a lush dark green texture, receding into a distant horizon marked by a subtle blend of blue sky and light clouds, suggesting an open and airy environment with minimal features. +train_25376.png A vast plain with muted tan and green hues stretches toward the horizon under an expansive blue sky, bordered by a distant line of dark hills or mountains. +train_45514.png The image depicts an expansive, arid plain with a predominantly reddish-brown, earthy texture under a clear blue sky, dotted sparsely with low shrubbery and distant flat terrain, suggesting a dry, open landscape. +train_26999.png A vibrant green plain stretches across the lower half of the image, marked by two parallel reddish-brown lines, under a clear blue sky with a faint horizon. +train_33308.png A golden-brown agricultural field with noticeable plowed lines stretches under a clear deep blue sky, highlighted by a solitary tree silhouetted on the horizon. +train_37380.png The image depicts a lush green grass plain under a partly cloudy blue sky, with vibrant textures of tall grass leading to a horizon that emphasizes the broadness and openness of the landscape. +train_33377.png The image depicts a field with dark green, closely packed shrubs in the foreground, transitioning into a vibrant yellow crop in the middle ground, set against a flat horizon under a clear blue sky. +train_34437.png A golden wheat field stretches towards a dark stormy sky, with distant trees silhouetted along the horizon, highlighting the contrast between the golden wheat and the dramatic clouds above. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/plate_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/plate_descriptions.txt new file mode 100644 index 0000000..4d72cf8 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/plate_descriptions.txt @@ -0,0 +1,20 @@ +train_24637.png The plate features a snowman design on a red and white background, showcasing a divided color scheme with festive elements, and is viewed from a slightly elevated angle. +train_35669.png The plate appears white with a slightly textured surface, viewed from above, on a plain blue background, featuring two small, round, brownish spots. +train_18155.png The round plate features a glossy finish with an image of two figures in dark attire against a vibrant landscape of green grass and blue sky, bordered by a thin brown rim, viewed from a slightly tilted angle. +train_24201.png The plate features a yellow-centered circular design with alternating red and blue concentric rings and green accents, viewed from above against a plain, light background. +train_36536.png The image shows a white, round plate with a smooth texture viewed from the front against a blurred grey background, featuring a small, subtle design in the center near the edge. +train_30626.png The plate is a light blue, round ceramic object with a matte texture, viewed from above, featuring a series of small, dark markings or designs along the rim on a plain brown background. +train_03496.png The plate features a wintry scene with people and dogs in a snowy landscape, framed by a circular design that enhances the depiction of a snow-covered environment at dusk with bluish hues and a touch of pink in the sky. +train_01566.png The plate is a muted beige with a glossy finish, positioned upright on a dark stand, set against a black background with a simple, seamless texture. +train_04816.png The plate is oval with a white background adorned with a pattern of blue and maroon circular motifs, shown from an angled side view against a dark backdrop. +train_35601.png The image shows two frisbees with different designs: one white with a red circular pattern viewed from above, and the other featuring a bold black and red logo against a white background, placed at a slight angle on a plain setting. +train_43700.png The plate is cream-colored with a matte texture, viewed from above against a speckled blue background, featuring an artistic design of a fish and green foliage in its center. +train_23310.png The plate has an ornate design with a deep blue and gold rim, featuring a central pastoral scene of a quaint building and trees seen from an overhead angle, set against a muted gray background. +train_40838.png A light-colored decorative plate viewed from above features concentric circles in green and gold hues against a soft gray background. +train_09234.png The low-resolution image depicts a decorative white plate with a central floral motif in red and brown hues, displayed upright on a metal stand with elegant, curly designs, set against a blurred neutral background. +train_14653.png A round plate viewed from above features a cream-colored outer rim, a white center with a blue abstract fish design, and a dark contrasting background. +train_33925.png The plate displays ornate golden patterns against a dark blue background, viewed frontally with a blurred, neutral backdrop and a stand supporting it. +train_24492.png This plate features a central illustration of a character in a red outfit with a white backdrop, surrounded by a patterned border, and is set against a dark background. +train_31406.png The plate is circular with a white base featuring an abstract, diamond-shaped red center and grayish organic patterns spiraling outward, viewed from above against a plain light gray background. +train_26821.png The image shows a round, white plate with a smooth texture viewed from above, featuring an illustrative design of two bright red cherries with a green stem in the center, set against a plain white background. +train_14079.png The image shows a round plate with a gradient of warm earthy tones and a central abstract tree-like design, viewed from the front against a blurred, neutral background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/poppy_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/poppy_descriptions.txt new file mode 100644 index 0000000..2f5ccd3 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/poppy_descriptions.txt @@ -0,0 +1,20 @@ +train_43960.png A vibrant pink poppy with delicate, slightly crumpled petals and a central seed pod is viewed from the side, set against a dark background with hints of green foliage. +train_21547.png A low-resolution image shows a vibrant orange-yellow poppy with delicate, slightly crinkled petals and a dark center, viewed from a slightly lower angle against a stark black background, highlighting its thin green stem. +train_19971.png The poppy features vibrant red petals with a slightly fringed texture, seen from an overhead angle, contrasting against a blurred, earthy green background. +train_16049.png A vibrant red poppy with a velvety texture is viewed from a slightly oblique angle, showcasing a dark central disk surrounded by feathery foliage in a lush green background. +train_33993.png The poppy displays vibrant yellow petals with a smooth texture, viewed from a slightly elevated angle, set against a background of blurred green foliage, with a visible contrasting orange center that stands out despite the low resolution. +train_25030.png A white poppy flower with delicate petals and a vibrant yellow-green center appears from a slightly angled top-down view, set against a blurred dark background, highlighting its soft texture and radial symmetry. +train_41599.png The low-resolution image shows a close-up of a white poppy with a bright yellow center, surrounded by dark green foliage, displaying a slightly ruffled texture on its petals. +train_27644.png The low-resolution image depicts a cluster of vibrant red poppies with delicate, glossy petals and dark centers, viewed from a slightly elevated angle against a blurred green and white background. +train_43663.png An orange poppy with delicate, slightly crinkled petals is viewed from the side against a dark, leafy green background with soft shadows highlighting its curved shape. +train_06954.png The image shows a vivid red poppy with delicate, crinkled petals and a prominent dark center, viewed from a slightly elevated angle, set against a blurred background of green foliage. +train_41603.png The poppy features vibrant orange petals with a silky texture, viewed up close with details of its dark center, against a blurred green background that enhances its striking appearance. +train_25800.png An orange poppy with smooth, delicate petals is viewed from the side against a blurred green foliage background. +train_10345.png The image shows a close-up view of a white poppy flower with a bright yellow center, displaying delicate crinkled petals, set against a blurred green background that emphasizes the flower's texture and color contrast. +train_29105.png The poppy exhibits vibrant red petals with a smooth texture, viewed from the front, set against a blurred background of yellow-green foliage, and features a distinct black center. +train_29283.png The bright orange poppy, viewed from above, displays a delicate crinkled texture with a prominent dark center, set against a contrasting blurred earthy background. +train_02095.png The image depicts a vibrant red poppy with a smooth texture seen from above, showcasing a contrasting dark center and surrounded by a soft blurred red background. +train_25417.png The poppy displays vibrant pink petals with a delicate, crinkled texture, viewed from above amidst a garden setting with a blurred mix of green foliage and other colorful flowers. +train_16840.png The image shows vibrant red poppies with slightly ruffled petals and dark centers, seen from a top view against a lush green backdrop of dense foliage, with multiple blooms creating a vivid contrast in the scene. +train_33679.png A soft pink poppy with a delicate, papery texture is viewed from the front, showcasing a deep burgundy center and pale green stamens, set against a blurred natural background with hints of green foliage. +train_28833.png The image shows a vibrant red poppy with silky, delicate petals featuring a dark central disk, viewed from a slightly angled perspective against a leafy green background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/porcupine_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/porcupine_descriptions.txt new file mode 100644 index 0000000..9f90911 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/porcupine_descriptions.txt @@ -0,0 +1,20 @@ +train_21062.png A small, grayish animal with a spiky texture on its back is seen from the front, leaning over an orange-brown bowl filled with food on a ground covered with foliage. +train_44052.png A small, grayish-brown porcupine with a spiky, bristled texture is positioned head-down into an earthen bowl containing reddish-brown food, surrounded by a leafy and earthy background. +train_45813.png A small, light-colored rodent object with a smooth texture is seen in a curled-up side view on a plain blue background, featuring a rounded shape with visible ears and tiny feet. +train_03960.png A small, pale-colored animal with a spiky texture is shown in a side profile on a soft, fabric-covered surface, against a blurred, two-tone background. +train_01181.png The small, hedgehog-like animal in the image has a mottled brown and white spiny coat, is positioned side-on with a slight downward angle in a grassy environment, and features a distinct pale face peeking through its spines. +train_28732.png The object appears as a rough, brown and gray textured dome with a speckled pattern, positioned upright in a terracotta saucer, against a dark, blurred background. +train_15298.png The porcupine is dark in color with a fuzzy texture, perched in a side-view on a branch, set against a blurred, muted green and gray background of foliage and branches. +train_46842.png The porcupine is shown in a side profile with its body covered in dark, coarse quills, highlighted against a light background, while its head is slightly lowered and the spines dramatically fan out behind it. +train_10389.png This image shows a large, brown, and textured object resembling a porcupine viewed from behind, with spiky quills blending into a grassy background. +train_11064.png The porcupine in the image is positioned in a side view and has a brown, spiky texture with a bushy appearance set against a blurred, grassy background. +train_34479.png The brown, spiny creature, viewed from the side, is nestled in a grassy environment, showcasing a mix of bristly quills and coarse fur. +train_12717.png The porcupine, with a mottled gray-brown and white spiky texture, is crouched sideways on a dark green leafy background, displaying a clear tuft of quills and a partially obscured face. +train_08330.png The porcupine, seen from a side angle, has a brown and white spiky texture with its nose pointed downward, resting on a stone surrounded by a blurred green background. +train_09385.png The image shows a small, brown, furry creature with its head down and body partially obscured by vibrant green grass, lacking distinct quills visible due to low resolution. +train_10350.png The object appears as a small, brown, round mass with a coarse texture, viewed from the side against a rough, stone wall background, with no visible spines or quills to distinctly identify it as a porcupine. +train_05167.png The image shows a porcupine with a greyish-brown textured coat, facing left with its head down, set against a background of lush green foliage and a black object, possibly a boot, in the foreground. +train_19903.png A round, spiky, and grayish-brown object with a rough texture is nestled in an orange bowl, surrounded by blurred greenery in the background. +train_10979.png The porcupine appears with a mix of brown and white spines, showing a side view amidst a colorful, leafy backdrop, with prominent quills fanning outward. +train_43041.png The image shows a porcupine with a predominantly grey and slightly rough texture, viewed from above with a background of lush green plants, highlighting its elongated oval body shape and protruding quills. +train_02900.png A small, dark brown object with a slightly spiky texture appears to be lying on a smooth, grey road with a distinct white line beside it. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/possum_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/possum_descriptions.txt new file mode 100644 index 0000000..93f47db --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/possum_descriptions.txt @@ -0,0 +1,20 @@ +train_42148.png The possum has a mix of gray and brown fur with a slightly coarse texture, is hanging from a branch in a woodland setting, with its sharp eyes, long nose, and partially visible pink tail distinguishing it against the shadowy background. +train_24217.png The possum appears from a frontal viewpoint with grayish fur displaying a coarse texture, a pointed pink nose, and is situated on a wooden deck background with subtle variations in color. +train_13893.png A gray possum with a white face and pointed ears is seen perched on a tree branch in a blurred forest environment. +train_10987.png The possum is partially visible in a close-up side view, with a soft gray and white fur texture against a blurred natural background, showcasing its pointed snout and dark eye. +train_05017.png The possum, viewed from the side, has a grayish fur texture with a slightly lighter underbelly, contrasted against a dimly lit, rustic background, and is characterized by its rounded body and bushy tail. +train_08414.png The possum in the image appears to have a coarse, light gray fur with a slight sheen, viewed from a side angle while standing on a blue surface, with its distinct snout and small round ears clearly visible against a blurred indoor background. +train_25753.png The possum has a light gray, somewhat fuzzy texture and is seen from a side angle amidst a grassy environment, with a distinct elongated snout and visible pointed ears. +train_42452.png The image shows a grayish-white animal with large, prominent ears and a pointed snout, situated in a natural setting with grass in the foreground and a blurred, earthy background. +train_39670.png The possum appears off-white with a slight pink on its nose, seen from a side angle atop a dark branch, set against a blurred, greenish background. +train_34995.png The possum, shown head-on, displays a fuzzy gray coat with subtle variations and a pale face, perched on a textured wooden branch against a dark background, with visible rounded ears and a pointed snout. +train_12769.png The possum is perched on a tree trunk in a dark, forested environment, with a grayish fur texture and a prominent white face and underbelly visible against the rough, brown bark. +train_04665.png The possum, appearing in a side-facing profile, has a light gray and slightly coarse fur contrasted by a pinkish nose and ears, set against a blurred indoor background with metallic and fabric textures. +train_42744.png A small possum with a light gray body, darker face, and pointed ears is curled up on a purple fabric background with white and red vertical stripes, showing its side profile. +train_27246.png The possum, with a grayish-white coarse fur and a white face, is perched in a side view atop a wooden ledge, set against a backdrop of blurred green foliage. +train_31261.png The possum has a predominantly dark body with a lighter, possibly white or grey head, viewed from above in a grassy or earth-toned background, highlighting the contrast between its upper and lower body colors. +train_19867.png The possum has a coarse gray coat with a white face, seen in a side profile view on a grassy area amid scattered leaves. +train_36925.png The image shows two possums with white faces and gray fur, facing forward, nestled closely together in a leafy and blurry forest background. +train_38471.png The possum appears to have a grayish-brown fur with a coarse texture, seen from a frontal view peeking out from a wooden enclosure, with its distinct pink nose and dark eyes prominently visible. +train_22350.png The possum has a dark gray fur body with a white face, is facing forward atop a surface strewn with brown leaves, and features noticeable pink ears and a pointed nose. +train_22300.png The possum appears to have a light brown, slightly textured fur and is seen from a side angle against a dark, indistinct background, with another similar animal beside it on a flat, light-colored surface. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/rabbit_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/rabbit_descriptions.txt new file mode 100644 index 0000000..1e93332 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/rabbit_descriptions.txt @@ -0,0 +1,20 @@ +train_23560.png The rabbit appears mostly white with scattered dark patches, viewed from a side angle showing its profile, set against a grainy, pebbled outdoor terrain. +train_38560.png A gray rabbit with a soft, plush texture sits facing forward with a hand placing a small, yellow star-shaped object on its head, on a wooden surface. +train_28362.png A plush rabbit toy with black and white fur sits facing away from the viewer on a hardwood floor, beside a wall with a smooth finish. +train_18580.png A light brown rabbit with subtle darker shading lies stretched out on a textured dark surface, viewed from the side with its ears upright and facing forward. +train_14372.png The rabbit has a coat of white and light brown speckled fur, is positioned in a profile view with its ears upright, amidst a snowy background that enhances its mottled texture. +train_27376.png A small, white rabbit with soft fur and upright ears, viewed from the front against a bright blue background. +train_10177.png The rabbit, seen from a side profile, has a smooth, predominantly white coat with a distinctive black marking on its ears and around one eye, set against a soft, blurred background that suggests an outdoor setting. +train_27378.png The image shows a close-up of a white surface with a smooth texture and two prominent red patches, set against a blurred, dark environment. +train_45255.png A small white rabbit with slightly blurred features is sitting upright, surrounded by greenery, with ears perked up facing forward against a grassy background. +train_16003.png The rabbit has a light brown fur with a soft texture, is facing forward displaying its prominent ears and white nose, set against a blurred earthy background. +train_01835.png A greyish-brown cat lies on its side with a blurred background and a vertical pole partially obscuring its body in a relaxed indoor setting. +train_06398.png The image shows a rabbit with a distinct dual-tone coat, predominantly white with brown patches, viewed from the side within a cage environment, featuring horizontal wire bars and a blurred, colorful backdrop. +train_16505.png The rabbit is light brown with a white underside, sitting upright on a green grassy field scattered with fallen leaves, and it has distinctive upright ears. +train_05024.png A white object with distinct dark patches, possibly ears, is leaning against a blue and white wall; viewed from the front. +train_21515.png The low-resolution image shows a light brown, floppy-eared plush toy sitting upright on a wooden floor with a blurred indoor environment in the background. +train_38680.png The rabbit has a light brown, smooth fur texture and is shown in a side profile against a red patterned background, highlighted by its prominent upright ears. +train_30712.png A black and white rabbit is lying down with its ears pointing upwards, its black patches strikingly contrasting against its smooth white fur, set against a cool-toned background with a wooden floor visible underneath. +train_10704.png The rabbit appears to have a light tan fur with a soft, velvety texture, positioned in a seated pose on a tiled floor, with a background featuring a chair and part of a shelving unit, and its upright ears and small size are distinct features. +train_31894.png This object resembles a white, plush texture with long, upright ears, seen from the front against a blurred brown and wire-patterned background, suggesting a rabbit-like form. +train_11176.png The rabbit is predominantly white with patches of black, seated in a curled-up pose on a grassy ground with a dark background, showcasing a smooth and dense fur texture. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/raccoon_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/raccoon_descriptions.txt new file mode 100644 index 0000000..e257455 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/raccoon_descriptions.txt @@ -0,0 +1,20 @@ +train_47369.png The image shows a brownish rodent-like animal with a bushy tail and a slightly blurred texture, viewed from a front-side angle against a natural grassy background. +train_14974.png The image shows a small creature with a bushy, brownish body and a characteristic masked face, standing in profile against a blurry backdrop of green foliage. +train_40816.png The raccoon, with its distinctive black mask and ringed tail, is situated in a field of dry grass, viewed from the front in a partially raised stance, showing a grayish-brown fur texture amidst a blurred golden background. +train_25331.png The image shows a gray, rounded and textured shape resembling a rock or bush, situated on a paved surface beside a trash can, with blurry urban elements in the background. +train_17016.png The image shows a raccoon with a coarse, grayish-brown fur and a distinctive black mask over its eyes, standing upright against a dark, leafy background, with its ringed tail partially visible. +train_02191.png The raccoon, with its characteristic grayscale fur texture and distinctive facial mask, peers forward in a dark environment, partially obscured by the soft, blurred edges of surrounding foliage. +train_06425.png A raccoon with a coarse gray and black fur coat clings to a branch, viewed head-on, with a faint wooden structure and a hint of the sky in the background. +train_44314.png A raccoon with distinct gray fur and darker rings around its eyes is peering over a wooden ledge against a blurred, dimly lit background. +train_37095.png The image depicts a raccoon with a grayish-brown, slightly coarse fur texture sitting on a branch, characterized by its bushy tail with distinctive ring patterns and a predominantly side-facing profile against a blurred, neutral outdoor background. +train_42417.png The raccoon has a grey and black mottled coat with distinctive dark rings around its eyes, is facing forward with its mouth slightly open, and is set against a dark, blurred natural background. +train_08974.png A raccoon with mottled gray and brown fur, distinctive black eye markings, and a faint mask sits in a natural tree environment, partially obscured by branches and leaves. +train_11322.png In the image, a dark gray and fuzzy-textured animal is perched high on a bare tree branch, silhouetted against a wintry, muted-gray forest background, with its distinctive bushy ringed tail hanging downward. +train_39542.png Two raccoons with coarse gray and white fur and distinct facial markings are peering directly at the camera from a dark, shadowy environment. +train_22701.png The raccoon is perched in a tree with a mottled gray and brown fur texture, viewed from the side with its striped tail visible, against a blurred background of foliage. +train_14318.png A gray and white raccoon with a bushy tail is positioned facing the camera on a carpeted floor, with distinct dark markings around its eyes and a blurred orange object in the background. +train_47055.png A low-resolution image shows a raccoon with a gray fur texture and a black mask-like facial pattern, peeking at an angle from behind bright green leaves, with its round, bushy body partially concealed. +train_17602.png The raccoon appears in a crouched pose with a predominantly gray and black fur texture, characteristic masked face, and ringed tail, set against a natural, earthy background with dry leaves and a water dish. +train_07870.png The raccoon is viewed from the front in a low-resolution image, with distinct dark mask markings around its eyes set against a light grey fur coat, and it appears to be sitting in a dimly lit indoor environment with white fabric in the foreground. +train_09792.png The image shows a raccoon with a salt-and-pepper grayish fur and a distinct black mask pattern around its eyes, sitting upright with its forepaws visible, set against a natural wooded background with green foliage. +train_42460.png The raccoon appears with a face featuring distinctive black and white markings, peering through a wooden fence with a backdrop of greenery, showcasing its inquisitive gaze and small paws grasping the wood. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/ray_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/ray_descriptions.txt new file mode 100644 index 0000000..4b778b0 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/ray_descriptions.txt @@ -0,0 +1,20 @@ +train_34036.png The ray appears dark gray with a smooth texture, viewed from above with its wide pectoral fins extended, set against a light-colored, mottled seabed. +train_07029.png The ray appears to have a smooth, light brown texture with a slightly darker outline, viewed from above in a dimly lit underwater environment, showing its flat, diamond-shaped body and long, tapering tail against a sandy ocean floor. +train_32082.png The ray in the image is a light brown color with a smooth texture, viewed from above, with its flat, diamond-shaped body subtly blending into a rocky, multicolored underwater background, and its long tail distinctively extending outward. +train_05543.png The ray appears with a speckled brown and beige surface seen from above, displaying undulating wing-like fins against a murky green and blue watery background. +train_31130.png The image shows a small, dark-colored ray with a smooth texture, viewed from above and slightly to the side, swimming over a light, sandy seabed with a gradient of blue in the background water. +train_09996.png The ray is viewed from below, showcasing its pale, smooth underside with subtle patterns, positioned against an aquatic backdrop with a teal hue. +train_25145.png The ray is a muted brown with a smooth, slightly mottled texture, seen from an elevated view as it rests against a sandy, rippled seabed background, with its long, thin tail extending prominently. +train_39682.png The ray appears bluish-green with a smooth texture, viewed from an angle above, set against an abstract, dark background that highlights its soft edges and minimalist facial features. +train_21143.png The ray appears dark with a smooth, flat texture, viewed from above in shallow turquoise water, and its wide fins and tail are distinctly visible despite the low resolution. +train_33169.png The ray displays a mottled brown and light gray texture with a rounded body and a long, tapering tail, positioned semi-buried in a sandy seabed with a slightly elevated perspective. +train_37583.png A dark, flat ray with a slightly scalloped edge and long tail is seen from above against a clear blue aquatic background. +train_40875.png A blue-gray ray with a smooth, flat texture is seen from above, gliding over a shallow, sandy seabed under clear water, with distinct wingtips and a slightly tapered tail. +train_02785.png The ray appears in a light brown color with a sandy texture, viewed from above in a flat pose, set against a soft sandy ocean floor background, with its distinctive long tail and wide, triangular wings clearly visible. +train_04516.png The ray appears to be a smooth, muted gray with a subtle, speckled texture, viewed from above as it glides over a sandy sea floor, with its broad pectoral fins spread and a visible long, tapered tail. +train_25011.png The image depicts a pale green, textured ray with a smooth, rounded body viewed from above, set against a blurry, turquoise aquatic background, with faint indications of fins extending outward. +train_39243.png The ray displays a mottled dark and light pattern on its smooth, flat body as it glides gracefully mid-water above a sandy seabed with scattered coral, viewed from below at a diagonal angle. +train_23070.png The ray appears light beige with a slightly textured surface, viewed from above on a dark background, showcasing its broad, triangular body and long, narrow tail. +train_46553.png The ray appears dark purple with a velvety texture, viewed from above with spread wings, against a rocky, shallow water background, and displays lighter edges around its fins. +train_14637.png The object appears to be a light-colored, smooth-textured creature resembling a ray, seen from a top-down angle against a deep blue background, with distinctive wing-like fins partially folded inward. +train_00426.png The ray appears as a light gray creature with a smooth texture, viewed from the side swimming above a sandy ocean floor, with distinguishable broad wings and a slender tail in a clear, turquoise underwater environment. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/road_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/road_descriptions.txt new file mode 100644 index 0000000..bfd9562 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/road_descriptions.txt @@ -0,0 +1,20 @@ +train_16199.png The road appears gray with a smooth texture, viewed from a low-angle perspective, flanked by grassy areas and distant trees under a clear sky. +train_02116.png A narrow, winding road with a light gray surface, bordered by lush green vegetation on both sides and leading through a densely wooded forest area, viewed from an eye-level perspective. +train_04267.png A straight, gray pathway with a smooth texture extends into the distance, flanked by bare trees and a grass verge on the left, and parked cars on the right. +train_35394.png The low-resolution image depicts a straight, sandy-gray road stretching into the distance, bordered by autumnal trees with golden leaves under an overcast sky. +train_35328.png The road appears to be a two-lane asphalt surface with faded white lane markings, viewed from a slight angle under a clear blue sky with patches of clouds, bordered by green foliage on one side and open grassland on the other. +train_16168.png The road appears gray and gravelly with a slightly curved path, surrounded by dense green foliage and trees, viewed from a low angle showing its natural blending into the forest environment. +train_12647.png The road appears as a smooth, gray asphalt surface with yellow lane markings, captured from a ground-level perspective, flanked by lush green vegetation, and set against a backdrop of striking, red rock formations and a partly cloudy sky. +train_08864.png The road appears as a straight, smooth, grey strip with a darker asphalt texture, flanked by reddish-brown hillside slopes on one side and sparse greenery on the other, under an overcast sky. +train_49312.png A narrow, light gray, smooth-textured road curves gently through a grassy field, bordered by dense dark green trees under a cloudy sky, with a wooden structure visible in the distance. +train_03170.png The road appears to be a faded gray with a rough texture, viewed from a ground-level perspective, bordered by trees and set against a blurred backdrop of hills and overcast sky, featuring a distinct central white line. +train_20265.png A winding, light beige dirt road with a rough texture runs through a mountainous area, flanked by dense green foliage and leading towards distant, dark rock formations under a clear blue sky. +train_48206.png The road is a narrow, light gray gravel path curving gently through a verdant forest setting, bordered by tall trees and lush green grass. +train_12331.png The low-resolution image shows a winding, gray asphalt road with a smooth texture, curving into a natural, forested background with dense greenery and a gentle, upward slope in the terrain. +train_25540.png The road appears grayish with faint yellow markings, stretching into the distance from a low-angle view, flanked by barren, earth-toned hills and leafless shrubs under a clear blue sky. +train_13212.png The road is a narrow, light gray surface with a slightly rough texture, viewed from a straight vantage point, flanked by dense green foliage and a yellow traffic sign on the right side. +train_13461.png The image depicts a gray asphalt road with white dashed lines running along its center, viewed from a low angle perspective, flanked by lush green vegetation and hills in the background under a cloudy sky. +train_46100.png A long, straight road with a smooth grey surface stretches into the distance, flanked by flat, grassy fields under an expansive, cloudy sky, with mountains visible on the horizon. +train_37042.png The image shows a wide, gray asphalt highway stretching toward the horizon, viewed from a low, central perspective, flanked by concrete barriers with a flyover casting shadows to the right, against a backdrop of a clear blue sky and distant city skyline. +train_36856.png The road appears gray and slightly rough in texture, viewed from a ground-level perspective, flanked by overgrown vegetation and trees in a forested setting, with a slight curve leading into the distance. +train_22591.png A two-lane asphalt road with faded yellow and white lines photographed from behind two vehicles, bordered by grassy shoulders with autumn-colored trees and utility poles in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/rocket_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/rocket_descriptions.txt new file mode 100644 index 0000000..6fafa65 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/rocket_descriptions.txt @@ -0,0 +1,20 @@ +train_12578.png The rocket, viewed from the side, is white with black and orange accents, launching amidst a clear blue sky with a trail of white smoke. +train_39168.png An object resembling a rocket, primarily white with a dark-colored upper section, is captured in a vertical ascent against a clear blue sky, emitting a bright plume at its base, with indistinct figures or objects in the foreground. +train_29570.png A white rocket with a long, slender shape ascends sharply into a clear blue sky, trailing a thick plume of white smoke. +train_08821.png A white rocket with black and orange accents is captured launching vertically against a backdrop of plumes of smoke and a clear blue sky. +train_31273.png A tall, white rocket stands vertically against a clear blue sky with wispy clouds, surrounded by green foliage and a distant view of the ocean, featuring distinctly visible fins near its base. +train_35985.png The rocket is sleek and metallic with a smooth texture, viewed diagonally ascending against a bright blue sky, leaving behind a distinct plume of fiery orange exhaust. +train_25544.png The rocket is viewed from a side angle, appearing gray with a smooth texture, emitting a bright trail of white exhaust against a blue sky, with a distinct conical nose. +train_15260.png The rocket, viewed from below, is silhouetted against a gradient sky transitioning from blue to orange, leaving a bright tail of flame and smoke as it ascends, with no discernible surface texture due to the low resolution. +train_25671.png The rocket, viewed from the side, is primarily white with contrasting black bands and is launching skyward against a clear blue sky, surrounded by smoke, with a distinct cylindrical shape and a tall, vertical pose. +train_09592.png The rocket appears cylindrical with a red upper section and white lower section, rising vertically with a visible vapor or smoke trail against a clear blue sky background. +train_13437.png The rocket appears white and smooth with a vertical, pointed pose against a clear blue sky and scattered clouds, highlighting its sleek design. +train_16297.png The low-resolution image shows a white rocket with a black nose ascending vertically against a clear blue sky, leaving behind a billowing cloud at its base. +train_18152.png The rocket is white with black bands and markings, standing upright against a clear blue sky with a ground-level view and surrounding greenery and distant structures. +train_28563.png The rocket appears white with a smooth texture, viewed from the side or slightly beneath it, amidst a blurred green landscape possibly indicating trees, highlighting the distinctive sharp shape and plume below. +train_41127.png The low-resolution image shows a vertical, thin, cylindrical object with a predominantly dark body and a small red tip, ascending against a clear blue sky, leaving a single, thin, white contrail behind. +train_16892.png A sleek, dark-colored rocket is captured in a vertical ascent, highlighted against a clear blue sky with a billowing plume of white smoke, displaying a distinctive stark contrast. +train_06150.png A slender, vertically-aligned rocket with a mostly white exterior and prominent red accents at the top is launching upward against a clear blue sky, leaving behind a long trail of white smoke. +train_16876.png The rocket, in a vertical launch position, is sleek with a predominantly white body accented by fiery exhaust, set against a backdrop of clear blue sky and ocean, emphasizing its upward trajectory with a prominent cloud of smoke at its base. +train_39962.png A white rocket with a smooth texture is positioned horizontally on a launch pad, emitting flames and smoke from its rear against a clear blue sky and mountainous terrain backdrop. +train_35173.png The rocket is predominantly white with a cylindrical shape, featuring a brownish lower section, set against a clear blue sky with a large blurred brown structure to the side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/rose_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/rose_descriptions.txt new file mode 100644 index 0000000..e096608 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/rose_descriptions.txt @@ -0,0 +1,20 @@ +train_34649.png A vibrant pink rose with velvety petals appears in full bloom at a slight angle, set against a lush green background of leaves. +train_42837.png A vibrant red rose with soft, slightly curled petals is viewed from the side against a blurred, earthy-toned background with hints of green foliage. +train_19714.png The rose displays a vibrant pink hue with slightly curling petals, is viewed from a side angle, against a blurred garden backdrop, and features a partially blooming bud with rich green leaves. +train_09581.png The image shows a vibrant red rose with a slightly blurred texture, viewed close-up from above, featuring tightly curled petals, set against a soft, indistinct background of similar hues. +train_44910.png A pale pink rose with a velvety texture and slightly ruffled edges is seen from a side angle, set against a dark green leafy background, standing out with its soft gradient and large open bloom. +train_07146.png The rose is a multi-layered blossom of vibrant coral pink, viewed from a slightly tilted angle, with a soft-focus verdant green background, featuring delicate, slightly curled edges and faint shadowing across its textured petals. +train_18160.png A yellow rose with tightly packed petals viewed from an angled side, set against a simple white background, displaying a smooth, velvety texture. +train_06739.png The image shows several vibrant red rosebuds with smooth petals, viewed from the side against a muted purple background with a soft gradient, emphasizing their clustered upright formation on slender green stems. +train_26090.png This low-resolution image depicts a rose with swirling shades of deep red and purple petals, viewed from above, set against a softly blurred pastel background that highlights its velvety texture. +train_15284.png A vibrant pink rose with tightly layered petals viewed from above, surrounded by blurred green leaves in the background, showing a velvety texture despite being out of focus. +train_18025.png The pink rose, viewed from above, displays a delicate swirl of soft, layered petals with subtle white accents at the edges, set against a blurred backdrop of deep green foliage, enhancing its vibrant hue. +train_47517.png The image shows a rose with vibrant pink and white variegated petals, viewed from a slightly elevated angle with a blurred dark green foliage background, highlighting the contrasting colors against the dark surroundings. +train_10369.png The rose displays softly layered petals in shades of pale pink and peach, with a slightly blurred texture from the top view, set against a dark green background. +train_32622.png The rose appears as a full bloom with soft, layered petals in a gradient of pale yellow, viewed from above against a blurred, dark green leafy background, highlighting its subtle color transitions despite the low resolution. +train_20634.png The image shows a tightly spiraled red rose with velvety petals viewed from above against a nondescript, blurred background. +train_42725.png The image shows a pink rose with softly ruffled petals viewed from the side, set against a blurred green and brown background with subtle hints of foliage texture. +train_48608.png The low-resolution image displays a partially opened rose in a vibrant yellow hue with a soft, delicate texture, viewed from above against a lush background of blurred green foliage. +train_45427.png The rose displays a vibrant pink hue with soft, layered petals, viewed from a side angle, surrounded by dark green leaves in the background, highlighting its partially opened bloom. +train_10930.png A pale pink rose with soft, layered petals and a slightly ruffled texture is positioned in a three-quarter view against a dark green, leafy background. +train_18017.png The image shows a low-resolution pink rose with a soft, velvety texture viewed from the front, surrounded by dark green, slightly blurred foliage in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/sea_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/sea_descriptions.txt new file mode 100644 index 0000000..e1686a1 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/sea_descriptions.txt @@ -0,0 +1,20 @@ +train_06055.png The image depicts a calm, deep blue sea viewed from an elevated vantage point, surrounded by rugged coastline and distant hills under a clear blue sky. +train_32249.png The sea appears as a textured silvery-gray expanse under an overcast sky with visible dark ripples, bordered by a distant, silhouette-like shoreline and indistinct structures on the horizon. +train_16822.png The sea appears calm and expansive, displaying a muted blue-gray color with a smooth texture under an overcast, pale sky, while the horizon blends subtly with the water, and a figure is partially submerged near the shore. +train_05858.png The image depicts a tranquil sea with a deep blue color and smooth texture, viewed from a low angle with a distant horizon, featuring a clear sky and a backdrop of green, gently sloping mountains under scattered white clouds. +train_11302.png The sea appears dark and smooth under a sunset sky, with a gradient of orange to purple tones, silhouetted by distant landforms and clouds above. +train_00583.png The image depicts a calm sea with a silvery-blue sheen reflecting the bright sunlight from a high vantage point, surrounded by a hazy sky and framed on the right by dark, indistinct natural formations. +train_23666.png The sea appears calm with a muted turquoise color, featuring a smooth surface texture under a hazy sky, with a distant horizontal structure breaking the horizon line. +train_48003.png The low-resolution image shows a calm sea with a light turquoise hue, blending into a horizon under a sky filled with soft, scattered clouds, with a distant landmass visible to the left and a dark silhouette of a coastline to the right. +train_31778.png The view captures a serene blue sea with a smooth texture, seen from a high vantage point, bordered by lush green vegetation and featuring a small, forested island in the mid-distance under a clear sky. +train_44344.png The sea is a deep blue-green with a subtle texture of gentle waves, viewed from an elevated rocky shore under a cloud-filled sky with a distant horizon. +train_19500.png The sea in the image appears to be a vibrant turquoise with a smooth, gentle texture, viewed from an elevated angle, bordered by a lush green vegetation on one side and a sandy beach at the bottom, with dark rocks emerging on the right side. +train_26012.png The sea appears as a distant, shimmering silver against a backdrop of partly cloudy skies, with a grassy foreground leading up to the horizon and soft, diffused light reflecting on calm water. +train_02945.png The low-resolution image displays a calm, glassy sea surface with a subtle gradient of deep blue to gray, viewed from an elevated angle, framed by distant hazy landmasses and enveloped by an overcast sky. +train_17342.png The image shows a sea with dark, stormy waves stretching beneath a dense, ominous sky, featuring a cloudy gradient transitioning from gray to blue, with a strip of land separating the sea from a lush, green coastal landscape. +train_26274.png The sea appears as a dark silhouette beneath a vibrant, gradient sunset sky with hues of orange and pink, framed by shadowy trees in the foreground. +train_25820.png The sea appears as a calm expanse of deep turquoise, with a smooth texture reflecting a pale blue sky, framed by a rocky shoreline on the right, and a distant horizon blending into a haze, characteristic of low-resolution imagery. +train_27496.png The expansive sea is a deep blue with a glossy texture reflecting bright sunlight from a central point, viewed from an elevated angle and surrounded by a mountainous horizon under a clear sky. +train_23016.png The sea appears in a gradient of deep blue to turquoise, showing a calm surface with slight ripples, viewed from a low angle, with a distant shoreline and minimal vegetation under a clear sky. +train_49294.png The sea appears in a warm gradient of gold and amber hues reflecting the setting sun, with gentle ripples visible on the calm water surface, viewed from a low, slightly elevated perspective with a hazy horizon and silhouetted shoreline in the background. +train_35038.png The sea appears as a calm, turquoise expanse with a smooth texture, viewed from an elevated viewpoint, surrounded by lush green hills in the foreground and distant, hazy mountains under a clear sky. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/seal_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/seal_descriptions.txt new file mode 100644 index 0000000..78b03d8 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/seal_descriptions.txt @@ -0,0 +1,20 @@ +train_04435.png The object appears dark brown with a smooth, glossy texture, viewed from a side angle on a flat concrete surface, with blurred greenery in the background. +train_01700.png The seal appears as a dark, sleek-bodied creature with a glossy, wet texture, seen from the side with its head tilted slightly upward in a dynamic pose against a bright blue aquatic background, and its distinct whiskers and open mouth are visible despite the low resolution. +train_25901.png The object in the image appears to be an upright, dark-colored penguin-like figure with a beige front, set against a blurred green natural background. +train_42269.png The seal-like object appears brown with a textured surface, sitting upright in a dark, rocky environment, with flippers slightly extended and a blurred maritime backdrop. +train_35003.png The seal appears to have a smooth, brownish texture, viewed in a relaxed pose on its side near a water's edge, with its head slightly raised, against a blurred, aquatic environment. +train_49292.png The image displays a silhouette of an indistinct object with smooth, dark texture against a vibrant blue sky with scattered white clouds; details are obscured due to the low resolution and stark contrast. +train_32275.png The seal appears sandy beige with a slightly rough texture, lying on its side on a rocky terrain background, with a distinct dark flipper extending behind it. +train_42762.png A light brown seal with a smooth, slightly mottled texture lies on its side on a wooden dock, with partially visible water gently lapping at the dock's edges in the background. +train_26449.png The seal appears in a mottled grey and brown texture with a predominantly pale face and underside, positioned in a seated posture on a sandy terrain amidst sparse grass, with its head turned slightly to the side and dark flippers visible. +train_24814.png The seal is a gray, textured blob-like form lying on a sandy beach with the ocean waves visible in the background, appearing to be resting or basking in a typical seaside setting. +train_00824.png The seal appears dark gray with a smooth texture, viewed in profile while lying on a snowy beach with blurred people and ocean in the background, showcasing its elongated body and small flippers. +train_18819.png The seal appears to be a dark brown color with a smooth, glistening texture, shown in a frontal view with its head poking above the greenish water surface, with noticeable whiskers and slick skin. +train_34178.png A grey seal with mottled darker patches lies on its belly with its head raised, set against a grassy beach backdrop with blurred sandy tones. +train_38462.png The seal appears to have a mottled gray texture with dark patches, lying on its side by the water, providing a contrast against a serene blue watery environment. +train_20490.png The object appears to be a dark-colored seal with a wet, glossy texture, seen from a side angle in a somewhat reclined pose, set against a rocky, pebble-filled environment with blurred background details. +train_49258.png The seal appears to be light gray with speckled darker spots resting on its side, displaying a smooth, sleek texture against a blurred beach or sand background with some green vegetation. +train_06533.png The seal appears greenish due to underwater coloration, gliding horizontally with a smooth texture, against a blurred aquatic backdrop, showing distinct flippers and streamlined body. +train_02958.png A dark, sleek seal is shown swimming in a blue-tinted aquatic environment, with a visible light reflection on the water surface and its body angled upward. +train_28538.png The seal is dark gray with a sleek, shiny texture, positioned on its side on a smooth, light-colored surface, with some green in the foreground and a concrete environment in the background. +train_33538.png The seal appears to be light gray with a smooth texture, lying on its stomach from a slightly overhead angle, against a rocky and earthy background, exhibiting speckled darker markings on its back. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/shark_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/shark_descriptions.txt new file mode 100644 index 0000000..c836d99 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/shark_descriptions.txt @@ -0,0 +1,20 @@ +train_24073.png The image depicts a fish with a silvery-blue body and vibrant orange fins, positioned at an angle near the surface of a dark blue, possibly aquatic environment. +train_33206.png The shark appears light gray with a smooth texture, viewed from above in a swimming pose, set against a dark, wavy water background, with a prominent fin and tail clearly distinguishing its outline. +train_40429.png The shark appears to have a sleek, bluish-gray body with a smooth texture, shown in a side profile swimming pose against a dark blue aquatic background, featuring a noticeable dorsal fin and a pointed snout. +train_42981.png The image shows a light gray-green shark with a smooth texture seen from a side perspective, featuring a visible gill slit and eye, set against a dark, murky aquatic background. +train_22466.png The shark appears in a side view with a gray, smooth texture and a white underbelly, set against a deep blue ocean background with its mouth slightly open, revealing sharp teeth. +train_08506.png The large, light gray shark with a smooth texture is captured from a side view, swimming closely past a diver in a blue aquatic environment, displaying a distinctive pointed snout. +train_38468.png The shark exhibits a sleek, bluish-grey body with a lighter underbelly, viewed from a side angle with its dorsal fin prominent, set against a deep blue aquatic background. +train_32748.png The shark appears gray with a smooth texture, shown from a frontal angle with its open mouth revealing sharp teeth against a deep blue underwater background, highlighting its streamlined body and distinctive gill slits. +train_44049.png The image shows a shark with a streamlined body, grayish-blue upper skin, and lighter underbelly, swimming from left to right in open blue water with an indistinct silhouette in the background. +train_49959.png A gray-blue shark with a streamlined body and pointed snout is seen from the side in murky blue water, showing a partially open mouth and discernible gill slits. +train_39464.png The image displays a sleek shark with a smooth, grayish-blue body from a side profile, featuring a pointed snout with two visible gills against a blurred, dark aquatic background. +train_18369.png The image shows a dark, elongated object with a smooth texture viewed from the side against a uniform blue background suggestive of the ocean, featuring fins that might imply motion or a swimming pose. +train_11104.png This underwater image shows a shark with a light grey, coarse texture in a side profile view, swimming close to the sandy ocean floor with a diver nearby. +train_17630.png The shark displays a speckled pattern of white spots on a grey-blue background, viewed from the side in clear blue water, with a distinct broad, flat head and wide body typical of a whale shark. +train_17663.png A robust, streamlined shark with a metallic gray-blue color and a smooth texture is seen from a side profile, set against a deep blue aquatic environment with a distinctive conical snout and prominent dorsal fin. +train_13671.png The shark appears to have a light grey body with a smooth texture, viewed from a top-down angle in greenish water, with a distinct dorsal fin and slightly blurred features due to low resolution. +train_00098.png A dark, shadowy figure resembling a shark with indistinct features is seen swimming horizontally in a clear, blue aquatic environment with rippled sand visible on the seabed. +train_22734.png A shark with a dark gray, smooth texture is shown from a frontal angle with its mouth open wide in a stark blue underwater setting that emphasizes its white underbelly and sharp, distinct teeth. +train_29827.png The image shows a shark with a grayish-blue color and smooth texture, viewed from below mid-swim near the surface in clear blue water, with distinct gill slits and a streamlined body against a sunlit ocean backdrop. +train_33265.png A white shark with a slightly open mouth revealing teeth is emerging from dark water, creating splashes around its pointed snout in an upward motion. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/shrew_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/shrew_descriptions.txt new file mode 100644 index 0000000..edcc733 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/shrew_descriptions.txt @@ -0,0 +1,20 @@ +train_11713.png The shrew appears in a side profile with a dark brown, slightly mottled texture against a blurred, earthy brown background, highlighting its pointed snout and small eye. +train_23617.png The shrew in the image has a small, rounded body covered in smooth, dark grey fur with a slightly lighter underbelly, viewed from the side and positioned against a forest floor background with green foliage and scattered twigs. +train_35037.png The shrew is brown with a slightly coarse texture, positioned in a side view amidst green vegetation, showcasing a pointed snout and small, beady eyes. +train_34280.png The shrew has a dark brown, smooth fur texture, viewed from above on a rough gray concrete surface, with its small, pointed snout and tiny ears partially visible. +train_34091.png The shrew displays a brownish-gray fur with a smooth texture, viewed from a side angle showcasing its elongated snout, against a dark, blurred natural background with hints of foliage. +train_16664.png A small shrew with a reddish-brown, smooth coat and elongated snout is visible from a side view, set against a natural earthy background, highlighting its long, slender tail and rounded ears. +train_10310.png The shrew is a small, brown-furred creature with a slightly pointed snout, situated in a grassy environment with visible patches of soil, captured from a side view showing its streamlined body. +train_05544.png The shrew in the image appears to have a grayish-brown mottled texture, seen from an overhead view, with its snout slightly pointed downward, set against a textured, earthy background that blends with the natural colors of its fur. +train_39519.png The shrew has a dark gray, slightly shiny coat with a smooth texture, viewed from a side angle, against a muted, possibly indoor background with indistinct features. +train_35313.png The shrew has a smooth grayish-brown body with a pointed snout, visible in a side view while resting on a light beige surface, with a subtle green blur in the background. +train_12155.png The shrew appears to have a dark grayish-brown fur with a sleek texture, captured from above in a three-quarter view, set against a blurred, light-colored background of indistinct plant material, and features a long, thin tail visible despite the image's low resolution. +train_14913.png The shrew is a small, dark grey creature with a smooth texture, seen from a side view, standing on rocky terrain with a distinct long snout and surrounded by a blurred, earthy background. +train_10908.png A small, grayish-brown shrew with a smooth, rounded body and a pointed snout is seen from a side angle on a sandy or earthy background, featuring a distinct, long tail extending behind it. +train_20863.png The shrew, viewed from the side, appears grayish-brown with a smooth, dense texture, set against a background of dry, leaf-littered ground, showcasing its elongated snout and small size. +train_16116.png The image depicts a small brown shrew with a smooth texture, seen in a side view with an elongated snout and bushy tail, set against a plain white background. +train_41445.png The object appears dark and round with a smooth texture, surrounded by a blurred background, suggesting a close-up and possibly indoor setting. +train_34174.png The shrew appears dark brown and slightly glossy with a blurred texture, viewed from the side in a crouched pose against a background of scattered leaves and soil, featuring a small tail and pointed snout. +train_45136.png The object appears as a small, brownish creature with a smooth, slightly glossy texture viewed from the side, against a backdrop of brownish leaves, with a pointed snout and indistinct limbs. +train_31290.png A small, brown-furred shrew with a pointed snout rests on a mixture of green and brown leaves, partially obscured by foliage, giving a side profile view. +train_07063.png The shrew appears small and brown with a slightly mottled texture, positioned in profile view on a rocky surface, with its elongated snout and tiny eyes clearly visible against a natural, stone-filled backdrop. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/skunk_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/skunk_descriptions.txt new file mode 100644 index 0000000..601f1aa --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/skunk_descriptions.txt @@ -0,0 +1,20 @@ +train_22946.png A skunk with a distinctive white stripe down its back stands amidst brown leaves, seen in a side view with its bushy tail arched upwards, contrasting against the mottled dark and light background. +train_30086.png The skunk appears predominantly black with a prominent white stripe down its back, viewed from the side against a natural forest floor background of leaves and foliage, showcasing its bushy tail and distinctive markings. +train_41614.png The image shows a skunk with distinct black and white fur, featuring a prominent white stripe running along its back, amidst a textured grayish ground surface, with the skunk positioned in a side profile with a slightly raised bushy tail. +train_00444.png A black and white animal with a prominent white stripe on its back is viewed from above, set against a brown, earthy backdrop scattered with small twigs and leaves. +train_42645.png A small, dark animal with a white stripe on its back, perched on a red toy wagon in an indoor setting with a blurred brown background. +train_45640.png The skunk is seen in a three-quarter view with a prominent black body and a distinctive broad white stripe running along its back, against a blurred neutral background. +train_00777.png The skunk, seen from a side angle, showcases its distinctive glossy black fur contrasted by bold white stripes running across its head and back, set against a natural, earthy ground with green vegetation scattered around. +train_26979.png The skunk appears mostly black with a prominent white stripe along its back, seen from a side angle, and is set against a blurred, wooded background with leaves and undergrowth. +train_30895.png The low-resolution image depicts a black and white animal resembling a skunk with a distinctive white stripe along its fur, viewed from the side against a blurred, undefined background that suggests an outdoor environment. +train_27323.png The small animal has a black and white fur pattern with a broad white stripe on its head and back, viewed head-on against a backdrop of blurred greenery and earthy tones, resembling a skunk's characteristic markings. +train_22999.png The black and white animal, with a prominently arched back and distinctive white stripe running down its spine, is positioned with its head down and tail raised against a backdrop of green grass and vertical wooden textures. +train_19580.png The skunk appears from a side view with a distinctive black body and a white stripe along its back, set against a textured, earthy background of dry grass or brush. +train_38388.png The skunk appears with a predominantly black body and distinctive white stripes running from its head to its fluffy tail, positioned in a side view on a log with a dense, natural leafy background. +train_12002.png The low-resolution image depicts a black and white object resembling a skunk, sitting among green foliage with its visible fluffy tail raised and a distinct white stripe running along its back against a blurred natural background. +train_22805.png The image shows a skunk with distinct black fur and a prominent wide white stripe along its back, positioned in a curled posture on a wooden deck surrounded by light-colored wooden planks. +train_14432.png A small animal with a distinctive thick white stripe running along its back, contrasting against its overall black fur, is positioned side-on in a slightly crouched pose, set against a blurred earthy background with loose material scattered on the ground. +train_46006.png The image shows a skunk with a distinctive black body and a bold white stripe running from its head down its back, nestled among green leafy foliage and earthy ground cover. +train_14355.png The skunk features a distinctive black body with a prominent white stripe running from its head along its back, fluffy tail raised, against a backdrop of brown leaves and tree bark. +train_17780.png A skunk with a distinct black body and white stripes is seen from a side view, standing on grass in a sunlit wooded area, with a bushy tail prominently displayed. +train_08881.png A small black and white animal is on bright green grass, viewed from behind and slightly above, with a white stripe running down its back in a yard setting with a structure in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/skyscraper_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/skyscraper_descriptions.txt new file mode 100644 index 0000000..c0e17ba --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/skyscraper_descriptions.txt @@ -0,0 +1,20 @@ +train_14387.png The skyscraper features a sleek, reflective blue facade with vertical stripes, viewed from a low angle against a clear sky, flanked by lower white and beige structures. +train_18218.png The skyscraper features a sleek, dark blue glass facade with reflective textures viewed from a low angle, set against a partly cloudy sky. +train_26786.png The skyscraper appears as a tall, modern structure with a sleek blue glass facade, viewed from a low angle against a clear blue sky, featuring a distinct angular design and a tree partially obscuring the lower right view. +train_32042.png The skyscraper features a light grey facade with a grid-like window pattern, viewed from a slightly low angle against a clear blue sky, with a shorter, darker building to its left and leafy green trees in the foreground. +train_28677.png The skyscraper features a sleek, reflective glass facade with a curved design, framed by construction cranes and a clear blue sky, surrounded by other high-rise buildings. +train_00431.png I'm sorry, I can't assist with that. +train_07694.png A sleek, silver-colored skyscraper with a rounded top and vertical patterns is seen from a street-level view, surrounded by older brick buildings under a clear blue sky. +train_23731.png A glossy, dark-hued skyscraper stands in a sunlit urban environment, silhouetted against the bright sky with neighboring buildings partially visible at lower angles. +train_03123.png The skyscraper is a tall, slender structure with a light beige facade featuring vertical lines, viewed from a distance against a clear blue sky and set among a cluster of smaller, darker buildings in an urban landscape. +train_28517.png A tall, dark skyscraper with a smooth facade stands centrally in an urban skyline, contrasted against a clear blue sky, flanked by shorter, varied modern buildings. +train_27416.png The skyscraper features a dark, reflective glass façade with a sharp, angular design viewed from a lower angle against a clear blue sky, with red crane equipment visible in the background. +train_34811.png The skyscraper appears as a sleek, triangular prism with a smooth, reflective white surface, depicted from a low-angle perspective against a clear blue sky, featuring a distinct shadow on one side. +train_39737.png The skyscraper appears as a dark silhouette with a smooth texture against a clear blue sky background, viewed from a low angle that emphasizes its towering height. +train_06510.png The skyscraper appears as a tall, dark, and cylindrical structure with a grid-like texture, viewed from a low angle against a partially cloudy sky and accompanied by adjacent narrow structures. +train_23609.png The skyscraper features a reflective dark blue glass facade with a grid-like pattern of windows, viewed from a low angle, accompanied by a distinct white edge and set against a partly cloudy sky. +train_07242.png The skyscraper features a sleek, reflective surface with a light grey color and vertical window patterns, viewed from a low angle against a clear blue sky backdrop. +train_05326.png The skyscraper appears as a dark, monolithic structure with a smooth texture, viewed from a low angle between other buildings, creating a stark silhouette against a clear blue sky. +train_34730.png The skyscraper is a tall, beige structure with a slightly textured surface, viewed from a low upward angle against a backdrop of cloudy blue sky and silhouetted buildings. +train_34898.png The skyscraper, seen from a ground-level angle, features a sleek, reflective glass facade with vertical lines, set against a clear blue sky, with a slightly curved roofline and a minimalistic design. +train_06433.png The skyscraper appears to be a towering, gray structure with a smooth, glassy texture, viewed from a low angle against a clear blue sky, featuring vertical window lines and a sleek, modern design. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/snail_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/snail_descriptions.txt new file mode 100644 index 0000000..08cec22 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/snail_descriptions.txt @@ -0,0 +1,20 @@ +train_03299.png A small, smooth brown snail with a spiral shell is positioned on a green leaf, viewed from the side with its softly glistening body extending forward. +train_09921.png The snail in the image has a smooth, dark brown shell with a glossy texture, positioned at an angle on an orange ceramic surface in a garden setting, with visible green foliage in the background. +train_37355.png A tan snail with a spiral shell featuring subtle darker bands is seen from a side view on a smooth, vibrant green leaf background. +train_08840.png A shiny, brown snail shell with a spiral pattern is perched on a slender twig against a soft-focus green background, showcasing a smooth texture and subtle gloss in a side view. +train_35366.png The snail appears to have a light brown, spiraled shell with subtle darker bands, a glossy, elongated pale body extending forward on a horizontal wooden branch in a dark, blurred background. +train_48360.png The snail displays a glossy, brown spiral shell with darker, fine mottled patterns viewed from a top perspective against a coarse, dark soil background. +train_14580.png The snail appears in a side view, showcasing a dark brown, spiraled shell with a glossy texture and prominent ridges, set against a vibrant green, leaf-filled background. +train_19254.png The snail in the image, viewed from the side, features a brown shell with lighter spiral banding, a shiny, textured body, and is situated on a dry, cracked earth background. +train_12598.png The snail appears to have a brownish shell with a spiral pattern, positioned on a rough, gray surface in an outdoor setting, with blurred greenery and a building in the background. +train_44682.png The snail is captured from an upper side angle on a smooth, light-colored surface; its shell appears brown with subtle ridges, and the body seems to extend slightly as it moves. +train_05968.png The image shows a low-resolution view of a snail with a brown and cream spiral shell, positioned sideways on a vibrant green leaf, highlighting the glossy shell texture and faint shadow underneath. +train_46811.png The snail appears with a light-brown, glossy shell showcasing subtle spiral patterns, viewed from above as it glides over a dark, coarse surface speckled with small orange fragments. +train_28085.png The snail, viewed from above, features a spiral shell with earthy brown and cream bands, a slightly glossy texture, and sits on a lush green leaf against a blurred grayish background, emphasizing its natural habitat. +train_03167.png The snail, viewed from the side, has a spiral shell with distinct brown and creamy white bands and a glossy texture, set against a blurred backdrop of green grass and brown twigs. +train_20971.png The snail is viewed from above, showcasing a light brown, spiraled shell with a glossy texture against a textured gray-blue surface with scattered small debris in the background. +train_30560.png A small, light-colored snail with a striped shell is viewed from the side on a flat, gray surface with its tentacles extended and a glossy texture reflecting light. +train_10347.png A small brown snail with a spiraled, slightly glossy shell is nestled on a rough, dark and wet surface, surrounded by a natural wood-like environment. +train_02665.png The snail exhibits a smooth, brown shell with subtle spiral patterns, viewed from a side angle on a plain white background, with extended tentacles adding to its distinct silhouette. +train_06126.png The snail, with a brown, spiraled shell and a slightly glossy texture, is seen side-view on a damp, green leaf, surrounded by the soft focus of earthy, woodland debris. +train_11490.png A small, dark-shelled snail with a smooth brown body is seen from a side angle on a light, textured surface likely resembling concrete. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/snake_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/snake_descriptions.txt new file mode 100644 index 0000000..d2a277b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/snake_descriptions.txt @@ -0,0 +1,20 @@ +train_12407.png The snake is coiled and light brown with darker markings, set against a leafy green background. +train_48059.png A slender, earth-toned snake with subtle striped markings lies in a loose S-shape on a backdrop of green, mossy terrain. +train_02146.png The snake has a yellow and brown patterned texture with dark blotches, seen coiled on a rocky surface. +train_08570.png The small snake, held in a hand, has a grayish body with subtle brown stripes and a smooth texture, lying in a coiled position against a blurred pinkish background. +train_42281.png The image shows a coiled snake with a smooth, shiny black texture, viewed from above against a rocky, brown background. +train_05400.png The image shows a cream-colored object with a textured appearance, resembling a curled, abstract shape set against a blurred brown background. +train_37783.png The snake appears to be coiled on a smooth, brown surface, displaying a glossy, dark reddish-brown color with subtle lighter mottling and a prominent slender body. +train_37826.png A coiled, light brown snake with a distinct braided texture pattern is lying on a sandy, beige background, featuring a slightly raised head in a defensive pose. +train_42134.png The snake is mottled brown and gray with a smooth texture, seen from an overhead view in a leaf-littered forest floor, displaying a distinct slender body with subtle banding patterns. +train_33525.png The snake is coiled with a pattern of tan and dark brown bands on its textured skin, viewed from above against a sandy, earth-toned background. +train_10326.png A snake with a mottled black and white pattern coils on a light, textured surface, displaying a distinct diamond-like pattern and slightly lifted head. +train_21194.png The snake is coiled on a mottled sandy background, displaying a pattern of dark brown and tan scales with a distinctly thick, rugged texture. +train_01264.png The snake appears to have a light brown and black patterned texture with a coiled posture, situated on a brown bed of mulch near a white wall, with distinctive dark banding lines visible on its body. +train_41759.png A coiled reddish-brown snake with a smooth, shiny texture is situated on a rough, sandy surface, displaying subtle darker patterns along its elongated body. +train_18091.png The image shows a stylized snake with a red and black segmented body, a cream-colored head with minimal detail, viewed from an angled perspective against a plain, light background. +train_01135.png The snake appears green with brown bands, displayed in a coiled pose on a textured, sandy background. +train_26634.png The snake has a smooth, creamy-yellow texture with orange blotches, viewed from a side angle against a solid turquoise background. +train_39208.png A small, coiled blue snake is seen from above, with a smooth texture and a mottled stone background. +train_03626.png The snake appears to have a coiled pose with a pattern of brown and tan scales, set against a natural forest floor background with visible leaves and twigs. +train_41190.png The snake is light brown with a smooth texture, coiled in an S-shape, set against a blurred earthy and leafy background with a small patch of green vegetation. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/spider_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/spider_descriptions.txt new file mode 100644 index 0000000..0701a7d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/spider_descriptions.txt @@ -0,0 +1,20 @@ +train_13161.png The spider has a light-colored, bulbous abdomen with dark markings and long, slender legs, set against a stark, black background that highlights its contrasting coloration. +train_23688.png The spider has a brown, slightly hairy texture, viewed from above and positioned sideways, with a blurred background of greenery indicating a natural outdoor setting. +train_05729.png The spider, viewed from above on a smooth, brown background, features a yellow, textured abdomen with dark spots and reddish-brown legs, displaying spiny textures at the joints. +train_05594.png The spider has an orange-brown body with a distinctive lighter marking in the center, positioned centrally on a dark background that emphasizes its silhouette and web strands. +train_34970.png The spider appears with a brown, textured body and lighter, tan legs, viewed from above on a smooth, light-colored surface, emphasizing its distinctively patterned abdomen. +train_29058.png A dark-colored spider with a fuzzy texture is seen from above, resting on a rough, brown, bark-like surface, with long legs extending outward prominently. +train_49095.png The spider appears brown with a slightly fuzzy texture, positioned mid-air from a side view against a wooden or metal blue-gray structure background, with prominent legs and a small body. +train_37348.png The spider-like object is metallic and purple with a shiny, smooth texture, viewed from an overhead angle on a reflective gray surface with glowing green eyes as its most distinguishing feature. +train_01440.png The spider has a slender, elongated body with a dark and light striped pattern, situated on a blurred green leaf background, with long legs spread out in a distinct radial symmetry. +train_01667.png The spider, captured from a side angle amidst a blurred green foliage background, exhibits an orange-brown hairy texture with distinct black markings and is positioned on a web. +train_17088.png A small, dark-colored spider with a smooth texture sits in a neutral background, viewed from above, displaying long thin legs and a somewhat rounded abdomen. +train_12059.png The spider has a pale yellow body with dark brown stripes, positioned upside-down on a smooth, neutral-toned surface with tiny hairs visible on its legs. +train_30696.png The spider is black with bold white markings, posed centrally on a green leafy background, with long legs and a symmetrical pattern on its abdomen despite the low resolution. +train_28435.png The spider appears dark with a slightly glossy texture, viewed in a side profile on a smooth, curved white surface, with a blurred background that includes hints of green and gray, and its legs prominently splayed. +train_19035.png The spider appears as a small, light brown figure with a slightly blurred, smooth texture, positioned on a white, evenly-lit surface with out-of-focus, shadowy edges in the background. +train_03762.png The spider appears predominantly green with a smooth, shiny texture, viewed from a side angle on a wooden surface with thin, yellowish legs contrasting against the light, blurred background. +train_13411.png The spider, seen from above, has a bright white abdomen with black markings, contrasting against its black legs, and is positioned on a leaf with green and yellow hues, creating a distinctive natural backdrop. +train_12765.png The spider is dark-bodied with slender, elongated legs, positioned in a corner on a wooden floor against a white wall background, highlighting its angular stance. +train_23535.png The spider appears to be predominantly dark with visible lighter areas on its legs, presented in a top-down view against a contrasting two-tone background. +train_32726.png The spider appears dark with a slightly glossy texture, is seen from a side view hanging on a web amidst a blurred green and brown forest-like background, with its elongated legs distinctly stretched out. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/squirrel_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/squirrel_descriptions.txt new file mode 100644 index 0000000..1e9323a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/squirrel_descriptions.txt @@ -0,0 +1,20 @@ +train_37053.png The small squirrel, with a mottled grayish-brown fur and bushy tail, sits upright on a concrete surface with blurred urban structures in the background. +train_38972.png The squirrel is clinging vertically to a wooden surface with a grayish-brown fur texture, slightly blurred details, and a bright blue triangular element in the corner of the image. +train_41326.png A grey squirrel with a bushy tail is foraging on a leaf-covered forest floor, viewed from the side, with scattered snow patches adding contrast to the earthy background. +train_39496.png The squirrel, with a predominantly gray and slightly brownish fur that appears bushy, is crouched on a textured gravel surface with a grassy field in the blurred background, and its tail is arched upwards showing a distinct white edge. +train_33998.png The image shows a light gray, roughly textured upright object with a subtle blush of soft brown, positioned against a lush, blurred green background suggestive of foliage, with the object having a slender elongated shape and a rounded top. +train_46302.png The squirrel displays a mix of gray and reddish-brown fur with a bushy tail, is seen in a side pose clinging to the edge of a tree trunk, with a blurred green leafy background. +train_35071.png A small, lightly gray-brown squirrel with a bushy tail is perched on a tree branch, partially surrounded by green leaves in a natural outdoor setting. +train_23564.png A reddish-brown squirrel, viewed from the side with its bushy tail curled behind, is perched on leaf-strewn ground, blending with the autumnal backdrop. +train_31244.png The squirrel, with a bushy tail and alternating gray and white fur, is poised on green grass in a grassy park environment, viewed from the side as it seems to forage. +train_02553.png The squirrel, with a grayish fur and slightly bushy tail, is perched on a ledge with a pinkish hand offering food, surrounded by a blurry backdrop of red brick and greenery. +train_41354.png The furry creature with a mottled gray and brown coat is perched upright in a red-framed bird feeder, surrounded by blurred greenery in the background. +train_42448.png The squirrel appears to have a mix of orange and gray fur with a bushy tail, seen from a front-facing angle, perched on a tree trunk against a blurred natural background. +train_26309.png The squirrel appears perched against a textured bark backdrop with a predominantly gray and white coat, highlighted by subtle brown patches, and is captured in a side view with its head turned partially forward. +train_02437.png The silhouetted squirrel appears dark brown with a bushy tail, sitting upright on a textured, possibly stone surface against a blurred earthy-toned background. +train_25422.png The object appears to be a light gray plush toy with a smooth texture, sitting upright on a patch of green grass, with a wooden log and a stone background, lacking distinct features or lifelike attributes. +train_03026.png The squirrel, with a grayish-brown fur displaying a soft, fluffy texture, is posed in a sitting position facing slightly left, on a vibrant green grass background with visible small twigs, showcasing a bushy tail and perked ears. +train_01253.png A fuzzy, reddish-brown object with a smooth texture is positioned on a patchy, green grass-like background; its elongated shape lacks distinct limbs or facial features due to the low resolution. +train_10725.png The squirrel, with a grayish-brown fur and a bushy tail, is captured in a side profile view standing on a wrought iron fence, surrounded by a verdant backdrop of leafy green foliage. +train_14012.png The image depicts a small, brown-furred squirrel perched sideways on a tree trunk, with a blurred green forest background and a visible bushy tail. +train_01646.png The squirrel, with its gray and lightly speckled fur, is seen from the side in a climbing pose on the textured bark of a tree, with blurred greenery in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/streetcar_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/streetcar_descriptions.txt new file mode 100644 index 0000000..c24dd37 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/streetcar_descriptions.txt @@ -0,0 +1,20 @@ +train_48815.png The streetcar is viewed from a side angle, appearing in grayscale with a flat-front design, large windows, and overhead wires, situated on tracks amidst a cityscape background. +train_29797.png A vintage streetcar with a red and cream color scheme, viewed from a front angle, navigates a narrow urban street flanked by tall buildings. +train_08799.png The low-resolution image shows a side-view of a silver streetcar with colorful graffiti designs, parked beside a brick building under a clear blue sky, with visible windows and door outlines. +train_32660.png The streetcar is dark green with a vintage texture, viewed from the front amidst a backdrop of blurred trees, featuring a softly glowing yellow headlight and rectangular windows. +train_01641.png The streetcar, viewed from a front-side angle, has a cream and deep red color scheme with large front windows, in an urban setting with tall buildings lining the narrow street. +train_20328.png The low-resolution image shows a streetcar viewed from above, featuring a red and cream exterior with a slightly reflective texture, set against an urban train station environment with multiple tracks and platform structures. +train_24743.png A green streetcar with a sleek, rounded front and silver accents is captured in a three-quarter front view against an urban backdrop of tall buildings, featuring retro design elements and a panoramic windshield. +train_04904.png The dark-colored streetcar is viewed from the front in a misty, tree-lined street with faintly visible rails, featuring a distinctive rounded top and illuminated destination sign. +train_48259.png The streetcar is blue and white with a streamlined design, viewed from a slight front-side angle, set against a backdrop of trees and urban buildings. +train_43371.png The streetcar is red with a cream stripe running along its side, viewed from a slightly elevated angle amidst an urban setting with tall buildings and a clear sky, featuring large windows and a vintage design. +train_46366.png The streetcar is a rustic brown color with a slightly worn texture, viewed from an angle highlighting its curved front, and set against a backdrop of greenery, with prominent circular windows visible on its side. +train_05709.png A classic, cream and brown streetcar is viewed from the front-right angle, displaying prominent vertical wooden slats and a rooftop advertising board, set against an urban street backdrop with trees and poles. +train_11675.png The streetcar is pale blue and cream, viewed from behind in an urban environment with elevated train tracks overhead and industrial buildings in the background, featuring a rectangular shape with large windows. +train_28820.png The streetcar is orange with a vintage design, viewed from behind as it travels down a city street lined with old buildings, featuring visible overhead wires and glass windows. +train_46637.png The streetcar, viewed from a three-quarter front position, features a red and cream color scheme with a smooth texture, is set against an urban street backdrop, and has distinctive curved front windows and prominent headlight fixtures. +train_37969.png The streetcar is predominantly green with a distinct cream-yellow trim, viewed from the front-right angle, set against a backdrop of lush green trees and urban buildings, featuring visible windows and signage. +train_12638.png The streetcar is yellow with green accents, viewed from a rear-side angle, set against an urban backdrop with a rainbow flag and modern buildings. +train_17046.png The streetcar is red and white, viewed from a rear three-quarter angle, set against a tree-lined street with grassy tracks and parked cars visible. +train_37894.png The streetcar is bright red with a smooth texture, viewed from a three-quarter rear angle on a city street lined with green trees, and features a classic rectangular shape with large side windows. +train_29471.png I'm sorry, I can't assist with this request. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/sunflower_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/sunflower_descriptions.txt new file mode 100644 index 0000000..f7ff4ae --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/sunflower_descriptions.txt @@ -0,0 +1,20 @@ +train_40952.png The sunflower displays vibrant yellow petals with a slightly blurred, textured surface seen in a close-up side view against a softly focused and indistinct green background. +train_43453.png The close-up, low-resolution image shows a portion of a vibrant yellow sunflower petal with a slightly smooth texture, partially obscuring the greenish-brown background, with the rest of the flower being out of view. +train_44213.png A sunflower with bright yellow petals and a dark central disk, viewed from the front, surrounded by green leaves in a garden setting. +train_02753.png The sunflower displays vibrant yellow petals radiating from a dark brown, textured central disc, viewed from a frontal angle, with a blurred green and possibly leafy background. +train_46908.png Against a blurred blue sky and green foliage background, the sunflower appears slightly angled with bright yellow petals radiating around a dark brown central disk, where a detailed texture is faintly visible. +train_03876.png A sunflower with vibrant yellow petals and a textured brown center is captured in a close-up side view against a blurred green and earthy backdrop, highlighting its characteristic round shape despite the image's low resolution. +train_35829.png The sunflower is vibrant yellow with a coarse, textured brown center, facing slightly upwards against a blurred background of greenery, showcasing slender green leaves. +train_45757.png The sunflower displays vibrant yellow petals with a rough, textured brown center, viewed from a slightly tilted angle with a clear blue sky as the background. +train_30468.png A sunflower with vibrant yellow petals and a dark central disc is viewed head-on against a solid black background, with a single green leaf and bud visible on its stem. +train_41221.png The sunflower's vibrant yellow petals and textured dark center contrast against a blurred background of green leaves and a blue sky, with the flower prominently facing upward. +train_08170.png The image shows a bright yellow sunflower with a dark brown center, slightly oriented forward among other sunflowers of similar appearance, set against a blurred green background with a hint of a red and white object to the side. +train_33298.png The sunflower displays bright yellow petals with a slightly rugged texture surrounding a dark brown central disc, set against a blurred, light-striped background, with the flower tilted slightly to the left and accompanied by green leaves. +train_25724.png The image shows a cluster of bright yellow sunflowers with dark brown centers, viewed from below against a clear blue sky, with overlapping petals and visible green leaves adding depth despite the low resolution. +train_32417.png The sunflower is vivid yellow with a dark brown center, facing left in a side profile, set against an urban environment with blurred buildings in the background, and displays a slightly uneven petal arrangement. +train_30911.png The sunflower appears from a slightly side angle with bright yellow, slightly ragged petals surrounding a dark brown central disk, set against a vivid blue background. +train_16228.png A bright yellow sunflower with a textured, dark center is seen from a slightly side angle, set against a blurred green and white background with a hand partially visible. +train_12543.png A black-and-white image showing sunflowers with large dark centers and soft petals, viewed from the side, set against an indistinct, blurry background with a hint of a wooden surface. +train_40408.png The image shows a close-up of a sunflower with vibrant yellow petals and a textured, dark brown center, oriented in a downward angle against a blurred green background. +train_29229.png A golden-yellow sunflower with slightly ruffled, overlapping petals displays a textured center, viewed from a front-facing angle against a blurred dark green background. +train_22717.png The sunflower, with its yellow petals and dark center, is captured from a side angle against a clear blue sky, with slightly blurred green leaves surrounding it. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/sweet_pepper_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/sweet_pepper_descriptions.txt new file mode 100644 index 0000000..7bf99ec --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/sweet_pepper_descriptions.txt @@ -0,0 +1,20 @@ +train_20945.png The sweet pepper displays a smooth, glossy red finish, viewed from a slightly elevated angle revealing one standing upright with its green stem visible, set against a plain white background. +train_23548.png A slightly curved, glossy sweet pepper with a gradient from green to red is positioned against a simple white background, viewed from an angled side perspective that highlights its smooth texture and elongated shape. +train_45226.png The image shows one red and two yellow sweet peppers with smooth, shiny textures, lying side by side on a blue-gray fabric surface, viewed from above with stems partially visible. +train_30404.png A glossy, curved sweet pepper with a light green hue is displayed on a reflective, dark surface, casting a subtle shadow beneath it. +train_23350.png The image shows two sweet peppers: a glossy yellow pepper on the left and a glossy red pepper on the right, both viewed from a slightly elevated angle against a plain white background, with the yellow pepper slightly behind the red one. +train_30183.png A group of vibrant sweet peppers displays a glossy texture, with three green peppers positioned at the top and three red peppers at the bottom, against a plain gray background. +train_00971.png The sweet pepper appears light yellow with a glossy texture, viewed from above showcasing its rounded shape with a visible green stem, set against a plain white background. +train_02829.png The sweet pepper is glossy with a green, red, and yellow hue, viewed from the side with a cluster arrangement against a black background, showing its shiny, smooth texture and subtle color gradient despite the blurriness. +train_48996.png Two smooth, glossy, yellow sweet peppers are positioned with one lying on its side and the other upright, both featuring prominent green stems, set against a plain white background. +train_13119.png The sweet pepper appears deep red with a glossy, smooth texture, viewed from the side and slightly above, set against a blurred natural background with hints of green foliage. +train_43615.png The sweet pepper is a bright yellow-green, smooth-skinned fruit hanging downward from a plant amidst dark green foliage, with sunlight casting gentle highlights. +train_01723.png A slightly oblong red sweet pepper with a smooth texture is partially obscured by vibrant green foliage, suggesting a garden environment, viewed from a side angle. +train_34372.png A glossy, bright red sweet pepper with a smooth texture is presented from a front angle, displaying a prominent green stem against a stark white background. +train_34369.png An orange sweet pepper with a glossy texture is viewed from an angled top perspective, surrounded by blurred red and yellow bell peppers in the background. +train_32654.png The image shows a trio of smooth, glossy sweet peppers, with two orange and one red appearing upright and closely clustered on a soft-focus kitchen countertop. +train_07356.png The image shows a group of sweet peppers with green, yellow, and red smooth surfaces, viewed from a top-angled perspective, lying on a lightly blurred neutral background. +train_26473.png A cluster of glossy red sweet peppers with varied sizes rests atop a dark, smooth background, with some showing green stems and subtle surface ridges highlighting their natural, curved shape. +train_09882.png The sweet pepper is vibrant red with a smooth, glossy texture, viewed from a slightly elevated angle against a plain white background, highlighting its distinct lobes and green stem. +train_08952.png The sweet pepper is vivid red with a glossy texture, viewed from an angled side perspective, set against a plain white background, featuring a distinct green stem. +train_17227.png Four elongated sweet peppers with smooth textures are viewed from above, featuring two in vibrant green and two in deep red hues, placed against a plain gray background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/table_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/table_descriptions.txt new file mode 100644 index 0000000..52fd6cc --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/table_descriptions.txt @@ -0,0 +1,20 @@ +train_43323.png The small wooden table, viewed from a slightly above angle, has a warm brown finish with a smooth texture and is set against a beige wall environment, accompanied by a pair of cushioned chairs visible in the background. +train_21581.png The table is perceived from a low angle, with a warm reddish-brown color and glossy texture, surrounded by a softly-lit room with yellowish tones, featuring a distinct silhouette of a dog beneath it. +train_03839.png The table is wooden with a warm brown hue and smooth texture, viewed from an angled perspective, set against a homey background featuring beige walls, a mirror, and a shelf. +train_45679.png The table appears to be round with a white lace tablecloth, adorned with elegant china tea cups and a cake, set against an indoor background with a partial view of a window and a bookshelf. +train_16804.png The table has a polished wooden surface with a warm brown hue, is viewed from an overhead angle, positioned on a patterned carpet, and features a tripod base with ornate carvings. +train_13287.png A light wooden table with a smooth, untextured surface is viewed from a slightly elevated angle, showing a minimalistic design with square legs in a simple indoor setting, accompanied by similar wooden chairs. +train_48856.png The image depicts a long, narrow table with a light-colored top and a smooth texture, viewed from a high angle, against a grey, industrial-looking background, featuring orange metal supports and various indistinct items placed on its surface. +train_31228.png A light wood table with a smooth texture is viewed from the side in a domestic interior setting, featuring a metal pedestal base and surrounded by chairs, with decorative wall art visible in the background. +train_00611.png The image displays a brown wooden table leg with ornate carvings, viewed from a side angle against a plain, light-colored backdrop. +train_42951.png A green rectangular table with a wooden edge and a net across the middle is viewed from an elevated angle, set against a pinkish background with scattered items on the surface. +train_13804.png A round, light-colored wooden table with a smooth texture and reflective surface is seen from an overhead angle, situated indoors near large windows overlooking a garden in the background, featuring two wine glasses and a bottle on top. +train_02376.png The table is covered with a white cloth and has various colorful items arranged on it, including a green dish with a red interior, set in a warm, indoor environment suggestive of a dining area. +train_13441.png This table is viewed from a slightly elevated angle showing a smooth, brown wooden surface with four straight legs, set against an isolated plain white background. +train_30578.png A pair of colorful parrots with vibrant blue, green, and orange feathers are perched on a reddish-brown wooden surface against a blurred indoor background. +train_18778.png A low-resolution image shows a pool table with a vibrant purple felt top, viewed from a slightly elevated angle, surrounded by a wooden frame, four dark legs, and a few balls resting on its surface, set against a plain white and gray background. +train_20909.png The table is a small, square-shaped piece with a dark wood texture, viewed from a slightly elevated angle showcasing its four intricately carved legs against a simple, muted background. +train_32511.png The table features a warm, reddish-brown wood with a glossy finish, viewed from a slightly elevated side angle, set against a textured carpeted floor, and distinguished by its ornate, curved legs with metal foot caps and a classic cylindrical pedestal. +train_21837.png The table is wooden with a warm, brown tone and a smooth, polished texture, viewed from above at a slight angle, set in a cozy, rustic dining room with surrounding chairs and various decorative items scattered across its surface. +train_01031.png The table is seen from a frontal viewpoint, showcasing a dark wooden color with a polished texture, resting on a single, ornate central pedestal with four supporting legs, against a neutral curtain backdrop on a wooden floor. +train_31971.png A low-resolution image shows a table viewed from above, covered with a white tablecloth and various desserts, surrounded by a bottle and a glass, set against a background of plain walls and wooden chairs. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/tank_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/tank_descriptions.txt new file mode 100644 index 0000000..98275b3 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/tank_descriptions.txt @@ -0,0 +1,20 @@ +train_41969.png The tank appears in a grainy black and white photo with a mottled camouflage pattern, viewed from a side angle in an open field, featuring a long barrel and a flat turret top with vertical structures behind. +train_28382.png The tank in the image is primarily a light khaki color with a slightly matte texture, viewed from the front at a three-quarter angle, with a forested background and distinctive features including bulky turret and side armor plating visible. +train_41809.png The image shows a light gray tank viewed from a front-left angle, with a smooth texture and distinct turret, situated against a solid dark background. +train_26079.png The image shows a monochrome tank with a smooth turret and long cannon, viewed from the front-left against a mountainous backdrop, with tracks partially visible and a faint, uniform sky above. +train_07880.png The tank, viewed from a front-left angle, appears olive green with a camouflage texture, set against a snowy forested backdrop, featuring prominent tracks and a compact turret design. +train_16759.png The tank appears in a side view against a desert landscape, with a sandy texture and dark camouflage pattern, featuring a turret and cannon clearly visible atop its structure. +train_38629.png The tank appears in grayscale with a rough, textured surface, viewed from a side angle on a slightly elevated terrain, surrounded by a barren landscape with a prominent gun barrel extending forward and a small turret mounted on top. +train_21247.png A low-resolution image depicting a gray, angular tank-like vehicle viewed from an elevated front-left angle with a smooth texture, a prominent turret, and set against a plain background without discernible details. +train_15001.png The tank is viewed from the front with a predominantly gray color and smooth texture, set against a plain background, featuring a distinct angular turret and barrel. +train_01326.png The tank, viewed from the front left angle, features a light tan color with a smooth texture, displaying a prominent turret and cannon against a grassy landscape, with a blue sky and a brown "Tank Trail" sign in the background. +train_36113.png A dark-colored tank with a smooth texture is seen from a frontal angle moving across a dusty field, leaving a trail in the sandy terrain with its turret and long cannon visible, set against a clear sky. +train_46331.png The tank appears in a desert camo pattern with a long barrel in forefront-left orientation, positioned on a sandy terrain with mountains in the hazy background and a flag on its turret. +train_16247.png The tank appears dark green with a rough, matte texture, viewed from the side with mountainous terrain in the background and a low-profile, angular structure distinguishing its silhouette. +train_05902.png The low-resolution image displays a gray-toned, industrial-looking object viewed from the side, with a cylindrical central node, surrounded by a blurred environment suggestive of open, uneven terrain. +train_31475.png The tank appears in a grayscale image with a textured surface, showing a side profile from a slightly elevated angle, situated in an outdoor environment with sparse trees in the background, and featuring a prominent turret and tracks. +train_46160.png The image shows a green, camouflaged tank viewed from a three-quarter front angle, positioned on a grassy field, with a large cannon and tracks visible, against a background of blue sky and clouds. +train_21974.png The tank appears to be a grayish-green with a slightly rough texture, viewed from a low angle showcasing its long barrel, set against a pale sky background with indistinct terrain features. +train_12865.png The tank appears camouflaged in beige and green shades with a rugged texture, viewed from a low angle against a clear sky background, featuring a prominent turret and visible track details. +train_17407.png The tank, viewed from the side at a slight angle, has a dull green and brown camouflaged surface with a textured appearance, situated in a muddy terrain with a blurred natural landscape in the background, featuring a prominent gun barrel pointing slightly upward. +train_37896.png The object appears olive green with a matte texture, viewed from a rear corner angle with a distinctive turret and gun barrel elevated, set against a blurred outdoor environment with trees and structures in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/telephone_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/telephone_descriptions.txt new file mode 100644 index 0000000..6b8b834 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/telephone_descriptions.txt @@ -0,0 +1,20 @@ +train_42218.png The telephone is dark-colored with a matte texture, viewed from a three-quarter angle showing a row of large buttons and a small display, set against a plain, indistinct background with a visible coiled cord. +train_17974.png A white, corded telephone with a small digital display is angled slightly and set against a pastel gradient background, featuring a keypad with large, visible buttons. +train_05767.png The telephone is black with a glossy texture, viewed from a slightly elevated angle showing its keypad and screen, set against a plain, muted background with a visible slot at the base. +train_43938.png The telephone is turquoise with a glossy texture, shown from a top-down angle on a light grey surface, featuring a dial pad and coiled cord. +train_25436.png The vintage telephone appears in an off-white color with a slightly glossy texture, positioned at a three-quarter angle from above, featuring a rotary dial and a curled cord, set against a blurred, neutral background. +train_09980.png The telephone is olive green with a rotary dial, viewed from the front at an angle, set against a softly blurred peach-toned background. +train_22288.png The image shows a partially open clamshell-style mobile phone in light metallic silver, viewed from a three-quarters angle, with its internal screen displaying a colorful image and surrounded by a plain backdrop. +train_01485.png The telephone is a vintage rotary model in a muted green color with a glossy, smooth texture, viewed from a side angle, set against a soft-focus plain background, with the rotary dial and handset prominently visible. +train_16134.png The telephone is matte black with a rotary dial, viewed from an angled side perspective, set among various household items on a cluttered surface. +train_09985.png The telephone appears to be a dark, matte black device with a digital display at the top, viewed from a slightly elevated angle, featuring a coiled cord and numerous buttons with small labels on a plain, light background. +train_17777.png The telephone is a charcoal gray office desk phone with a matte texture, depicted in a top-down view, featuring a digital display and several buttons on a white background with a coiled cord extending to the left. +train_26017.png The telephone is an antique black rotary model with a gold dial face and gold accents on the earpiece, seen from a slightly elevated front view against a simple white background, highlighting its vintage design. +train_45536.png The telephone is a light-colored, wall-mounted unit with a handset on the left side, a visible keypad, and a small display, all set against a plain white background. +train_48238.png The telephone is an antique wall-mounted model in a warm brown color with a wooden texture, viewed from a front-facing angle, featuring a rotary dial, a cradle for a receiver on top, and metallic accents, set against a plain beige background. +train_23808.png The telephone is black and rectangular with a textured surface, seen from a top-down angle, surrounded by a light-colored background, featuring a digital display and prominent button layout. +train_15834.png The image depicts a black cordless telephone with a digital display, placed at an angle on a white base, set against a plain white background, highlighting its keypad and screen despite the low resolution. +train_07646.png The telephone is off-white with a smooth texture, viewed from a slightly elevated angle showing its rectangular base and handset, featuring a keypad with large, prominent buttons against a red textured background. +train_01439.png The telephone is a silver, oval-shaped device viewed from above, with a small screen and a keypad containing raised buttons, all set against a plain brown surface. +train_27109.png A beige telephone with a corded handset is viewed from a slight side angle, featuring a rectangular keypad and a display screen on a smooth, glossy surface against a plain white background. +train_19098.png The telephone, seen from a slightly elevated front view, is black with a smooth texture, features a rotary dial, and is set against a plain, dark background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/television_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/television_descriptions.txt new file mode 100644 index 0000000..8607257 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/television_descriptions.txt @@ -0,0 +1,20 @@ +train_03284.png The object appears to be a retro-style television with a greenish screen, viewed straight on, featuring a dark frame and control knobs, set against a blurred outdoor backdrop. +train_02008.png The television appears black and boxy with a built-in vertical speaker grille at the bottom, viewed from the front, set against a plain white background with a matching remote control to the side. +train_45397.png The low-resolution image shows a vintage brown television set with a rounded screen and a wood-textured lower section, viewed from the front against a nondescript backdrop. +train_12303.png The television in the image is vintage and box-shaped, featuring a dark screen with a wooden frame set within a light brown shelving unit; it's positioned centrally with a blurred interior room as the background. +train_03850.png The television has a sleek black frame with a glossy finish, seen from the front in a modern living room setting with dim lighting and elegant wall sconces. +train_23777.png The television is a vintage, boxy model with a dark-colored casing and prominent knobs, viewed from a slight angle within a classic, monochromatic setting featuring a person standing beside it. +train_07811.png The television has a glossy black frame with a visible power button below the screen, displaying a blue screen with text, viewed from the front and situated in a dimly lit indoor environment with a wooden stand. +train_06231.png The image shows a beige, curved CRT monitor with a gray screen, viewed from the front, set against a blurry indoor background with cables and beige console controllers nearby. +train_06264.png The television, viewed from the front, has a boxy shape and a black frame with a reflective screen, set against a background of beige brick and wooden shelves. +train_06107.png The television appears to have a brown, wooden frame with a smooth texture, viewed from the front, set against a blurred, light-colored background with its screen displaying a bright white image. +train_11914.png The low-resolution image shows a front-facing, black CRT television with a slightly rounded screen, displaying a vibrant landscape image under a glossy finish, against a simple, unobtrusive background. +train_40355.png A silver CRT monitor with a dark screen and a built-in base stand is viewed from the front against a plain white background, with noticeable ventilation slots on the sides. +train_15500.png A low-resolution, boxy television with a dark-colored frame and a slightly curved screen, positioned at an angle, displays a monochrome image, set against a sparse indoor environment with faint outlines of furniture and objects in the background. +train_44317.png A black television with a matte texture is positioned front-facing on a metal stand, displaying a dark screen with a bright circular light, set against a background of rustic stone walls. +train_00023.png The television has a dark gray, slightly reflective surface with rounded corners, is viewed from an angled front perspective, and displays a black-and-white image of a dog with a blurred background. +train_33885.png The television-like object appears black with a matte texture, viewed at a slight angle highlighting its rectangular screen and two prominent side supports, set against a stark white background with a dangling component on the left. +train_21622.png The television appears in a dark green hue with a glossy texture, viewed from a three-quarter angle, set against a black background, featuring a prominent screen bezel and side control panel. +train_21138.png The television appears to have a dark frame and screen with a slight glare on the surface, viewed from an oblique angle in a room with light-colored walls and carpet, and it features a visible image or reflection despite the low resolution. +train_26053.png The television in the image appears to be matte black with a thin frame, viewed from the front at eye level, surrounded by home entertainment equipment within a dimly lit room. +train_23653.png The low-resolution image depicts a vintage portable TV with a black, boxy design, a handle on top, a small convex screen, silver dials below the screen, and set against a plain light blue background from an angled viewpoint. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/tiger_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/tiger_descriptions.txt new file mode 100644 index 0000000..6e38880 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/tiger_descriptions.txt @@ -0,0 +1,20 @@ +train_24299.png The low-resolution image depicts a side-profile view of a tiger with bold, bright orange and black stripes, an open mouth displaying sharp teeth, and a blurred forested background. +train_10554.png The tiger, displaying a classic orange coat with distinctive dark stripes, is captured in a side view as it strides through a blurred, earthy-toned natural background, emphasizing its powerful form and intense gaze. +train_06567.png A vibrant orange and black striped tiger is seen facing the camera with a dense forest of tall grass and foliage surrounding it, while the tiger’s piercing eyes and prominent whiskers stand out against the blurred background. +train_47935.png The low-resolution image depicts a tiger with rich orange fur and bold black stripes, seen in profile with a dense, lush green forest background, highlighting its muscular form and distinct black markings on its head and back. +train_48664.png The image shows a low-resolution, curled-up tiger with a rich orange coat and prominent black stripes, lying on green grass, its eyes partially closed in a relaxed pose. +train_17206.png The tiger is lying down with its head resting on its paws, displaying bold orange fur with black stripes and surrounded by blurred greenery, creating a natural and serene setting. +train_37604.png A richly colored orange tiger with black stripes is in a crouched position on a lush green forest floor, with distinct white fur visible along its underbelly and legs. +train_17700.png The image depicts a tiger with a rich orange coat and prominent black stripes, lying down facing the camera, surrounded by a natural, rocky environment that contributes to its camouflage. +train_41280.png The tiger, with its distinctive orange and black striped coat, is lying down in a lush green environment, viewed from the side, with foliage surrounding its backdrop. +train_47743.png The image shows a tiger with vivid orange and black stripes, partially submerged in water with its head raised above the surface, surrounded by a rippling greenish-brown aquatic environment. +train_33302.png The tiger, seen in a side profile with its head turned towards the camera, displays orange fur with black stripes and a white underbelly, set against a blurred earthy forest background. +train_23051.png The image shows an orange and black striped tiger lying down with its head lifted, surrounded by green grass, distinctly visible despite the low resolution due to its contrasting color against the natural foliage. +train_49844.png The tiger stands in a side profile amidst a wooded backdrop, its fur exhibiting bold, dark stripes against a rich orange coat with a white underside, as it gazes intently forward. +train_16957.png The tiger has a rich, orangish-brown coat with distinct black stripes, facing forward with a slightly tilted head, against a blurred, neutral background, highlighting its intense gaze and robust facial features. +train_37945.png The tiger in the image, viewed head-on, features a rich orange coat with dark, prominent stripes and a lighter underside, set against a blurred, dark green and earthy background, accentuating its intense gaze. +train_11344.png The tiger, with its characteristic orange fur and black stripes, is facing forward in a watery environment surrounded by greenery, showcasing its strong, focused gaze and partially submerged body. +train_37571.png The image depicts a camouflaged object resembling a tiger pattern with orange and black stripes, surrounded by green foliage, positioned in a crouched stance amidst a dense forest environment. +train_12482.png The low-resolution image depicts a side-view of a tiger with richly textured orange fur adorned with dark stripes, standing alert in a verdant, lush forest environment, with distinctive white patches on its underbelly and near its facial features. +train_26068.png A low-resolution tiger with light orange fur and black stripes is positioned in profile under dappled sunlight, set against a dark, forested background with foliage. +train_10964.png The image displays a lizard with a brown and tan mottled texture blending into a rocky, desert-like background while lying flat, showcasing distinctive scales and a faint stripe pattern along its body. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/tractor_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/tractor_descriptions.txt new file mode 100644 index 0000000..cbb490e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/tractor_descriptions.txt @@ -0,0 +1,20 @@ +train_17066.png A green tractor with yellow wheels is viewed from a side angle, set against a rural background of grass and trees, featuring a visible attachment on its back. +train_17825.png The image shows a front-facing red tractor with a glossy texture, large wheels partially visible, and set against a blurry background featuring a white building and greenery. +train_03406.png The tractor is green with a smooth texture, viewed from the side with a person sitting under an orange parasol, set against a grassy field and a tree-lined background. +train_26335.png A dark blue tractor with a matte texture is viewed from the front-left angle, situated against a blurred, grassy field background, featuring large black tires and a small rear platform where a person is sitting. +train_40332.png The tractor is predominantly green with yellow accents, viewed from the side with a child sitting on it, set against a background of blurred natural terrain suggesting a park or garden area. +train_13159.png The tractor is predominantly yellow with a rugged, industrial texture, viewed from a front-side angle, parked on a street with residential houses in the background, and features a large front shovel typical of a bulldozer. +train_21438.png The tractor in the image is primarily white with red accents, viewed from a front-side angle with large, rugged tires, situated on a dirt path amid some bare trees. +train_46790.png A yellow bulldozer with a rugged texture is seen from a side angle in a grassy outdoor environment, featuring a prominent track with visible treads and a front blade attachment. +train_11406.png The tractor is a worn red color with a rusty texture, viewed from a side angle showing large black tires; it is situated in a rural grassy environment with miscellaneous objects in the background and features a canopy for the driver. +train_44043.png A yellow tractor with a rugged texture, seen from a side angle, is clearing a large pile of dirt against the backdrop of a sloped roof and trees. +train_31988.png The image shows a partially side-view of a blue tractor with a slightly weathered texture, featuring large, rugged tires and a cabin structure, set against what appears to be a farm environment with blurred natural tones in the background. +train_05778.png The tractor, viewed from the front-right angle, is predominantly orange with a slightly rugged texture, placed amidst a sandy, open terrain with sparse trees in the background, and features a visible front-loader attachment. +train_27304.png The tractor is a bright yellow bulldozer with a rough, gritty texture, seen from the front at ground-level on a construction site with a forested area in the background, and features a large, angled blade in front. +train_36720.png A low-resolution image shows a green tractor with large black tires viewed from behind, featuring a yellow seat and frame, set against a blurred natural background with trees. +train_44288.png The vehicle is a yellow, rugged telescopic forklift viewed from the side, positioned on a dirt path with forest greenery in the background, featuring a noticeable extended boom and compact wheels. +train_29095.png The tractor, viewed from the front, is yellow and slightly worn, situated on a dirt path surrounded by lush greenery and stacked rocks in the background, with a large scoop attachment prominently visible. +train_28168.png The tractor is bright yellow with a smooth texture, seen in a side profile with large black tires, and is set against a rural background with trees and a person standing nearby. +train_16031.png The tractor is a rusty orange hue with a slightly worn texture, viewed from a front-left angle, positioned in an industrial yard with metal fencing and equipment in the background, featuring a large front loader bucket and visible hydrolic mechanisms. +train_17500.png The tractor appears to be a bright yellow bulldozer with a smooth texture and visible treads, viewed from a three-quarters angle, set against a backdrop of green trees and sandy ground. +train_47039.png The tractor appears to be an orange and brown bulldozer-style vehicle with a visible large front blade, seen from a side angle against a white background, with distinct grid-like tracks and a small cabin structure on top. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/train_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/train_descriptions.txt new file mode 100644 index 0000000..4fec34f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/train_descriptions.txt @@ -0,0 +1,20 @@ +train_42620.png The image shows a bright yellow train positioned at a slight angle against a blurred green and blue outdoor background, featuring a distinctive rounded front with prominent detailing despite the low resolution. +train_01956.png The train features a dark green, metallic texture with windows evenly spaced along its side and is viewed from a slightly angled perspective, set against an urban platform environment with a clear sky backdrop. +train_01095.png The train appears to have a bold red front with a smooth texture, viewed from a near front-three-quarter angle, set against a blurred outdoor background, featuring distinct angular windows and a white body with dark accents. +train_27488.png The train appears as a dark, metallic steam locomotive with a dramatic perspective showing it from the front at an angle, against a solid blue backdrop, featuring prominent smoke billowing from its chimney. +train_08418.png A sleek, white, aerodynamic train with a pointed nose is captured from a low front-side angle, set against a clear blue sky and adjacent rail tracks, highlighting its streamlined design and modest two-tone paint detailing. +train_43282.png The train is black with red accents, viewed from an elevated rear perspective on a grassy and slightly curved rural track, with two visible carriages and a small bridge in the background. +train_37979.png The image shows a white, streamlined train with blue accents viewed from a front three-quarter angle, set against a blurred rocky or sandy background with visible railway tracks in the foreground. +train_32814.png The train is a vibrant red double-decker tram viewed from a three-quarter angle with visible advertisements on its side, navigating a city street surrounded by tall buildings. +train_14866.png The train, viewed from a front three-quarter angle, has a streamlined body with a silver and red color scheme, set against a backdrop of lush greenery and blue sky dotted with clouds. +train_03736.png The image depicts a red locomotive with a white stripe, viewed from the front at a slight angle as it travels along a track surrounded by lush greenery under a cloudy sky. +train_01744.png The train in the image is predominantly white with a sleek blue nose, viewed from a front-side angle on a clear day, set against a platform and open sky, showcasing a modern aerodynamic design. +train_47701.png A red train with a smooth exterior and multiple windows is viewed from the side against a backdrop of vibrant autumn foliage. +train_02480.png The low-resolution image shows a dark, possibly black and silver streamlined train viewed from the front-left angle cutting through a clear sky and green foliage background, featuring distinctive red lining and a prominent illuminated headlight. +train_28312.png The train, viewed diagonally from above, features a bright orange and black color scheme with visible rail tracks beneath, set against a blurred green grassy landscape. +train_46533.png A bright yellow tram with a rounded front is viewed from a slight front angle, set against a suburban backdrop with overcast skies, featuring large windows and distinctive headlamps. +train_34914.png The train appears predominantly yellow with a smooth texture, viewed from an angled front perspective, set against an overcast sky with a railway track in the foreground, and features distinctive black and red marking details. +train_34463.png The image shows a blue train with a smooth texture viewed from the side, set against a grassy landscape with a vibrant rainbow arching across a clear sky. +train_22201.png A black steam locomotive with a prominent smokestack emits dark smoke as it ascends a snowy incline, framed against a stark, wintry landscape. +train_30867.png The train, viewed from the side at a station platform, features a beige color with red accents and dark, weathered textures, set against a misty, overcast background. +train_03205.png The train, viewed from the front and slightly to the side, is painted in a dark green color with a smooth texture, features bright headlamps, and is positioned in an indoor station environment with other trains and a platform visible in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/trout_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/trout_descriptions.txt new file mode 100644 index 0000000..8a24dc0 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/trout_descriptions.txt @@ -0,0 +1,20 @@ +train_03068.png In a side view against a smooth white background, the trout exhibits a streamlined body with a silvery hue and dark speckles, highlighted by subtle iridescent colors along its lateral line and fins, positioned near a fishing rod for scale. +train_08416.png The trout, depicted in a side view, has a smooth, brownish texture with a subtle gradient, positioned against a softly blurred greenish background. +train_03957.png The trout is depicted in a side view with a predominantly greenish hue and a pixelated texture, set against a plain white background, highlighting its distinct fin shapes and elongated body outline. +train_28681.png The trout exhibits a silvery body with a subtle greenish hue, complemented by a speckled pattern along its side, seen from a side profile against a plain white background. +train_49058.png The trout, viewed laterally, displays a slender body with a gradient of silvery scales transitioning to a blush of pink along its midline, set against a simple, pale backdrop. +train_15363.png The image shows a trout with a distinctive gradient of green to orange hues along its body, viewed from the side with a streamlined silhouette and a blurred, indistinct background. +train_49108.png The trout appears silvery with a hint of greenish-blue, speckled with small dark spots, and is shown in profile swimming against a blurred aquatic backdrop of blue water and wispy green vegetation. +train_32716.png The trout appears silvery with a hint of olive near the top, viewed from above against a dark, textured background, with visible speckling along its body and a distinct elongated shape. +train_08587.png The trout is displayed laterally with a silvery body featuring dark speckles, a darker upper back, and it rests on a brown tiled surface. +train_28521.png The trout in the image has a silvery body with hints of pink and red hues, viewed from the side against a dark, indistinct background, featuring a pronounced lateral stripe and subtle speckling. +train_04128.png The image shows a side view of a fish with a pale bluish body, a brownish dorsal area, and orange fins, set against a simple white background. +train_28308.png A trout with a silvery, iridescent body displaying specks of darker marks along its side, viewed in a curved, mid-action pose against a plain, light-colored background. +train_16415.png The trout appears silvery with faint speckling, viewed from above against a dark, watery background accented by hints of brown and green reeds or aquatic plants. +train_42161.png The trout appears elongated with a silvery body accented by a streak of warm yellow and orange hues, positioned laterally on a light, smooth, featureless surface. +train_35707.png The trout is depicted in a side view with a shimmering gradient of green and orange-brown hues, featuring a speckled pattern along its body and fins, set against a plain white background. +train_19612.png The low-resolution image depicts a trout with a sleek, silvery body dotted with subtle speckles, seen from a side angle, against a dark, indistinct background. +train_02610.png The trout displays a speckled, brownish-green top transitioning to a silvery underside with a pink-hued stripe along its side, set against a plain white background, viewed from the side. +train_13028.png A silvery trout with a subtle gradient of darker hues along its back arches upwards in a side view against a dark, blurry background with indistinct, pebble-like shapes at the bottom. +train_11193.png The trout, depicted in a side view, displays a golden-yellow hue with a smooth texture, set against a light rocky background, accentuated by distinct dark spots along its body. +train_36956.png The trout, seen from a slightly elevated side angle, has an olive-green back with speckled patterns, fading into a lighter cream belly, set against a muted sandy-colored background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/tulip_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/tulip_descriptions.txt new file mode 100644 index 0000000..0b5e368 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/tulip_descriptions.txt @@ -0,0 +1,20 @@ +train_24874.png The low-resolution image shows a tulip with vibrant red and white variegated petals, viewed from the side, surrounded by a blurred garden environment with visible green stems and brown soil. +train_16423.png The tulip displays a bright yellow hue with a slightly ruffled texture from a side angle, set against a blurred green foliage background. +train_44912.png The low-resolution image depicts a tulip with a gradient of yellow and pink petals, standing upright and illuminated against a stark, black background, emphasizing its vibrant color and smooth texture. +train_38895.png The tulip displays a delicate pink and white gradient with a slightly ruffled texture, viewed from above with a hint of yellow centered stamens, set against a leafy and blurred green background. +train_38741.png A single pink tulip with smooth petals slightly open at the top is viewed from the side against a solid blue background, with two green leaves visible below. +train_47900.png The tulip is vivid red with a smooth texture, lying horizontally on a softly lit surface with a blurry background comprising warm, candle-like lights. +train_36219.png The image shows a vibrant red flower with slightly ruffled petals, viewed from above against a background of lush green leaves, highlighting its distinct layered texture. +train_08080.png A vibrant red tulip with smooth petals is captured from a side angle, set against a lush green background with blurred foliage enhancing its vivid color. +train_17583.png The low-resolution image shows a pink tulip with a smooth texture and a slight red streak on one petal, viewed from a close side angle against a blurred, vibrant yellow-green floral background. +train_04499.png The tulip displays a vibrant gradient of pink to orange hues with a smooth texture, viewed from a slightly elevated angle, set against a backdrop of lush green leaves and dark soil, emphasizing its fresh, unopened petals. +train_46355.png A pink tulip with red accents in the petals is viewed from a high angle, surrounded by blurred green foliage in the background, displaying a prominent central stamen. +train_41917.png The tulip displays a vibrant pink hue with a slightly crinkled texture, viewed from above showing a striking blue and white center, set against a blurred green background. +train_49462.png The tulip displays vibrant red and yellow petals with a slightly ruffled texture, viewed from above against a backdrop of blurred green leaves. +train_33621.png A yellow tulip with smooth petals is viewed from the side against a blurry background of green leaves and a light-colored ground, displaying a gentle upward curve. +train_02084.png A cluster of soft yellow tulips with smooth petals is viewed from above against a background of dark green leaves and out-of-focus foliage. +train_37503.png The tulip appears in a soft yellow hue with smooth petal texture, visibly open to reveal the inner structure, set against a blurred green and gray background with out-of-focus leafy elements. +train_24742.png The tulip appears vibrant pink with a slightly ruffled texture, viewed from a side angle, set against a blurred green background with hints of sunlight filtering through. +train_22015.png The tulip exhibits pale pink petals with a hint of white, its slightly open bloom revealing a dark center, set against a blurred, dark green leafy background. +train_08574.png The tulip displays a vivid orange hue with red-tinged edges and a slight sheen, viewed from a side angle within a vibrant garden landscape, surrounded by blurred greenery and other colorful blooms in the background. +train_32776.png A pair of vibrant pink tulips with smooth petals is seen from the side, emerging amidst a lush background of green leaves and red flowers dotted with yellow centers. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/turtle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/turtle_descriptions.txt new file mode 100644 index 0000000..4e3ffe2 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/turtle_descriptions.txt @@ -0,0 +1,20 @@ +train_32850.png The turtle, viewed head-on, features a dark, smooth shell with a rounded shape, surrounded by green foliage and grass in the background, and has a stubby, partially visible head with dark markings. +train_12948.png A sea turtle with a textured, mottled shell in shades of brown and green swims in clear, bluish water, with its flippers outstretched and a backdrop of small fish visible in the background. +train_16712.png A light-colored turtle with a sandy, textured shell is partially buried in sand, visible from an overhead angle with a distinct yellowish hue on its head and flippers, set against a muted beach environment. +train_16077.png The turtle appears in a dark underwater environment, showcasing a predominantly green and yellow textured shell with visible scales, positioned in an overhead view with its limbs partially visible. +train_08311.png A turtle with a greenish-brown, textured shell is swimming upward in a blue aquatic environment, with visible flippers and a slightly open mouth. +train_35379.png The turtle, viewed from a side angle in a swimming position, has a greenish-brown textured shell with a mottled surface, set against a clear blue aquatic background. +train_35110.png The turtle appears from a top view in a clouded blue underwater environment, showcasing a dark, speckled shell with lighter limb edges, silhouetted by the diffused sunlight. +train_35559.png The turtle appears with a dark, smooth shell and splayed limbs viewed from above, situated on a rocky surface beside a deep blue or gray background. +train_13233.png A green turtle with a patterned shell swims in clear blue waters, viewed from the side, with a diver and deep ocean backdrop. +train_30286.png The turtle appears olive-brown and textured with a slightly ridged shell, viewed from a three-quarters angle in an underwater setting with coral and deep blue water surrounding it. +train_12110.png The turtle appears to be swimming underwater with a smooth, greenish-brown textured shell, visible from a side angle, surrounded by a clear, aqua-colored aquatic environment. +train_45081.png The turtle appears to be a light brown hue with a rough texture, viewed from a slightly elevated angle on a sandy beach at night, featuring a noticeable dome-shaped shell and a visible tracking device on its back. +train_24576.png The turtle appears olive green with a slightly mottled texture, viewed from below against a clear blue sky, showcasing elongated flippers and a smooth, oval-shaped shell with a distinct head extending forward. +train_16641.png The turtle is seen from the side swimming in clear blue water, displaying a mottled greenish-brown shell with a textured pattern and a distinctive pale underbelly. +train_10832.png The turtle is swimming underwater with a mottled brown and green shell, a pale underbelly, and extended flippers against a clear blue ocean backdrop. +train_21680.png The image shows a dark brown turtle with a textured shell featuring lighter patches, viewed from above with extended limbs, against a plain white background. +train_37289.png A small, greenish-brown turtle is seen on a white and slightly pink surface, with its head extended forward and limbs spread out, in a well-lit indoor setting with a blurred background. +train_23460.png The turtle appears with a brownish, textured shell and flippers, viewed from a slightly elevated angle in a blue, aquatic environment with light reflecting off the water surface. +train_25556.png A turtle with a brown, textured shell and a light underbelly is swimming mid-water, viewed from the side against a clear blue aquatic background, with its flippers extended gracefully. +train_28018.png This object appears to have a smooth, light-colored surface with a prominent rounded front, viewed at an angle, set against a blurred, grayish background that suggests a sandy or grainy environment. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/wardrobe_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/wardrobe_descriptions.txt new file mode 100644 index 0000000..b478625 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/wardrobe_descriptions.txt @@ -0,0 +1,20 @@ +train_35444.png The object appears as a tall, rectangular case with a transparent glass front and sides, featuring a natural wood-textured base and set against a plain, light-colored background. +train_18914.png The wardrobe is a low-resolution beige object with a slightly textured surface, viewed from the front, featuring a medium-brown top and bottom trim, set against a plain white background. +train_28891.png The wardrobe appears dark brown with a smooth texture, viewed from slightly below and to the right, against a pinkish wall and slanted wooden ceiling, with distinctive ornate details on top and an open door revealing a child figure nearby. +train_22102.png The wardrobe appears white with a matte texture, viewed from the front showing an open door, revealing neatly arranged clothing and a colorful assortment of items in a small, brightly lit room. +train_14206.png The wardrobe is light brown with a smooth, matte texture, viewed from the front against a plain white and grey background, featuring simple panel doors and a slightly curved base. +train_40219.png A partially open wardrobe with a wooden frame reveals hanging clothes in various colors and patterns against a simple white interior, set within a room with light-colored walls and minimal visible decor. +train_21239.png The wardrobe is red with a glossy texture, seen from the front, featuring intricate lattice-style panels with a mottled dark pattern against a blurred, light-colored background. +train_10942.png A wooden wardrobe with a light brown finish and a slightly textured surface is viewed straight-on, featuring decorative carved patterns on its two doors, set against a plain, purple-gray wall background with a portion of a patterned floor visible at the bottom. +train_30170.png The image shows a wooden wardrobe with a light brown, smooth texture, positioned open to reveal a section of white shelves on the left, set against a neutral-toned interior background with a door and light fixture visible. +train_43152.png The wardrobe displays a warm, reddish-brown wooden texture with intricate carved patterns on its doors, viewed from the front against a neutral background with darker accents at the base. +train_07984.png The wardrobe appears to be a light beige color with minimal texture, viewed from a slightly elevated angle, standing on a smooth, neutral-colored floor, and features a partially open door revealing a dark interior. +train_04061.png The wardrobe appears to be made of dark brown wood with a rustic texture, viewed head-on, featuring multiple vertical panels and a double-layered design with a distinct two-tiered top section and four drawers at the bottom against a plain, light background. +train_34344.png The wardrobe is a beige, smooth-surfaced cabinet, viewed slightly from the side, with one door ajar revealing a dark interior, set against a stark white and dark floor background. +train_46354.png The wardrobe is viewed from an angle showcasing its brown wooden texture with vertical grains, standing against a white wall with a dark wooden floor and an adjoining passage visible in the background. +train_20275.png The wardrobe has a rich brown wooden finish with a smooth texture, viewed from a slightly angled frontal perspective, set against a plain white background with minimal visible hardware or ornamentation. +train_01435.png This wardrobe is viewed from the front, featuring a range of hanging clothes in various colors against a neutral background with a slightly cluttered appearance and visible shelves above. +train_30557.png The wardrobe is a light wooden piece with a smooth texture, viewed from the front left, set against a plain wall with a colorful, grid-patterned window to the right, and features metal handles and a simple rectangular shape. +train_05346.png The wardrobe appears to be a medium wooden color with a smooth texture, viewed from a slightly angled perspective, featuring a minimalistic handle and set against a warm-toned, cozy interior background. +train_31897.png The wardrobe is captured from a front-facing viewpoint with a wooden, reddish-brown frame, minimalistic open design, and is set against a plain, neutral-colored wall with a person standing on the right side. +train_30951.png The wardrobe has a light wooden texture with visible grain patterns, viewed from a front angle in a brightly lit room, featuring multiple horizontal drawers on the upper right side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/whale_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/whale_descriptions.txt new file mode 100644 index 0000000..e09176a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/whale_descriptions.txt @@ -0,0 +1,20 @@ +train_12433.png The whale has a striking black body with contrasting white patches, seen from a side angle and partially submerged in dark, rippling water that reflects light, with a blurred aquatic environment in the background. +train_29079.png A grayish-bluish whale surfaces diagonally in dark ocean water with a visible spout of spray, highlighted by sunlit reflections on its back. +train_24848.png The low-resolution image shows a gray, textured whale breaching from the water with its body angled in mid-air, against a blurred, muted background of ocean waves. +train_42988.png The image shows a dark-colored whale with a smooth surface seen from above, with a prominent vertical blow and surrounded by a deep blue ocean. +train_40988.png The image shows a black and white whale, likely an orca, with a smooth texture and contrasting patches, viewed from the side against a plain white background, showcasing its distinct curved dorsal fin. +train_15300.png The whale features a smooth, dark gray texture with a pronounced white patch near its mouth, seen from a close-up side view against a nondescript beige background. +train_08935.png A black-and-white marine creature with distinctive rounded dorsal features is seen head-on against a backdrop of deep blue water. +train_29776.png The image shows a largely black whale leaping partially out of turquoise water, with a prominent dorsal fin and a lighter underside, against a clear blue sky in the background. +train_29681.png The whale appears gray with a mottled texture, viewed from a side angle as it swims gracefully in clear blue water, with visible speckles and a small dorsal fin, set against a vibrant ocean backdrop with light filtering through the surface. +train_15287.png The image shows a predominantly dark gray whale breaching the water, revealing its smooth, glistening skin with lighter patches, against a vivid blue ocean backdrop. +train_30702.png The image shows a dark, oval-shaped object with a smooth texture, viewed from the side, set against a light background, lacking visible distinguishing features. +train_46284.png The image shows a dark gray to black aquatic animal with a prominent dorsal fin, partially submerged on a blue water surface with its back visible and no distinguishable background features. +train_13049.png The whale is predominantly black with a distinctive white patch, partially submerged and seen from a side angle against a rippling blue water background. +train_41768.png The image shows an orca whale with a striking black and white pattern, seen in a side view swimming through clear blue water, with its distinctive white eye patch and dorsal fin clearly visible. +train_03190.png A dark gray whale with a smooth, slightly dimpled texture is shown in a partially submerged lateral view in the ocean, with indistinct rippling water surrounding it. +train_39309.png The image depicts a dark gray whale emerging from the ocean with its fin prominently raised, exhibiting a textured, ribbed surface under a soft blue sky environment. +train_08536.png The image shows a whale with a dark gray, smooth texture surfacing at an angle in a blue ocean environment, with visible water splashes around its body. +train_29648.png A sleek black and white marine creature with a distinctive dorsal fin is swimming in the blue ocean depths, partially submerged, surrounded by subtle light reflections on the water's surface. +train_17085.png The image depicts a blue-gray colored whale viewed from the side with a dark back and flippers visible against a plain white background, with no distinct environmental features apparent. +train_48708.png The image shows an elongated, dark bluish-gray whale with a slender body and smooth texture, viewed from a top-down angle as it glides through clear turquoise water, with a streamlined dorsal fin and faint mottling visible along its back. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/willow_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/willow_tree_descriptions.txt new file mode 100644 index 0000000..1ece239 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/willow_tree_descriptions.txt @@ -0,0 +1,20 @@ +train_08274.png The willow tree has cascading green foliage with a textured, weeping canopy, viewed from a side angle, set against a backdrop of a grassy lawn and distant structures. +train_26687.png A willow tree with a dome-shaped canopy of golden-green foliage cascades downward against a backdrop of a gray fence, set on a lush green lawn with its slender trunk visible. +train_29376.png The small, blurred image depicts a willow tree with a dense canopy of long, slender, pale green leaves cascading downwards, set against a soft, grassy background with a darker area suggesting distant trees. +train_22236.png A dense, golden-leaved willow tree stands tall from a side view against a backdrop of rolling hills under a bright blue sky with scattered clouds. +train_41602.png The image shows a row of slender, reddish-brown vertical stems with a sparse arrangement, situated on a patch of green grass in a sunny setting. +train_31609.png The willow tree in the image has a light brown trunk with sparse, drooping branches, set against a blurred green background of foliage and grassy terrain. +train_34716.png A willow tree with slender, drooping branches featuring pale green foliage against a clear blue sky, stands prominently in a grassy landscape suggesting a serene park setting. +train_30012.png The willow tree displays a rich green foliage with long, sweeping branches and a dense canopy, viewed from the side along a gently sloping grassy area near a peaceful stream, with soft dappled light filtering through the leaves. +train_02719.png The willow tree features cascading, slender branches with dense, green foliage that creates a curtain-like effect, viewed from the side against a clear blue sky with a hint of grassy landscape at the base. +train_16409.png A cushion with a central depiction of a lush, dark green willow tree with drooping branches set against a plain, muted background. +train_05854.png The willow tree is characterized by a lush, light green hue with cascading, wispy branches and leaves, viewed from a slight angle, set against a blurred backdrop of dense greenery. +train_24973.png A pale, greenish-white willow tree with a wispy texture stands tall against a shadowy, forested background under a bright sky, displaying its characteristic cascading branches. +train_47231.png The willow tree displays a lush, dense canopy of silvery-green, drooping leaves, viewed from a slightly elevated angle, with a serene blue sky and verdant grassy field in the background, highlighting its gracefully cascading branches. +train_28516.png The willow tree has a lush, green canopy with delicate, drooping branches visible from a side view, set against a cloudy sky and a paved pathway. +train_16266.png The tree exhibits vibrant golden-yellow foliage with a wispy texture, seen from an angled side view against a backdrop of green foliage and a blurred, sunlit environment. +train_25808.png The willow tree has a delicate cascade of pale, gold-tinted leaves, viewed from a slightly upward angle against a bright blue sky, surrounded by a hint of green grass at the base. +train_43502.png The image depicts a willow tree with cascading light green foliage appearing slightly blurry, viewed from the side with a background of indistinct greenery suggesting a natural, possibly park-like environment. +train_42848.png The willow tree exhibits a lush green hue with cascading, delicate branches, viewed from the side in a riverside park setting, with its drooping leaves creating a flowing curtain-like appearance against a partially obscured grassy bank. +train_37453.png The willow tree displays a soft, wispy canopy of green leaves cascading down, set against a serene lakeside backdrop with a clear blue sky, standing prominently at the water's edge beside a grass-lined path. +train_28195.png The willow tree appears with pale green, slender leaves and long, drooping branches, framed against a bright blue sky and set in a lush green grassy background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/wolf_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/wolf_descriptions.txt new file mode 100644 index 0000000..f11142d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/wolf_descriptions.txt @@ -0,0 +1,20 @@ +train_26085.png The image depicts a dark grey wolf with a hint of brown fur, lying down sideways amidst dry, brown foliage, showcasing its distinct pointed ears and sharp muzzle profile. +train_29039.png The wolf, with a mottled gray and brown coat, lies in a reclined position in the snow, with alert ears and a keen gaze directed toward the camera. +train_02197.png The image shows a canine with mottled black, white, and tan fur, standing sideways with its head slightly lowered, set against a dry, grassy background, resembling an African wild dog rather than a typical wolf. +train_22094.png The wolf has a mix of gray and brown fur with a thick texture, shown in a sitting pose facing forward in a snowy environment with a subtle shadow, highlighting its sharp eyes and distinct fur patterns. +train_28940.png The image shows a wolf with a dense gray and brown fur coat seen in a three-quarter profile against a blurred background of dark trees, with distinct amber eyes and a focused expression. +train_40556.png The wolf appears in a side profile pose howling, with a mixture of grey and white fur exhibiting a coarse texture against a dark, blurred forest background. +train_46957.png The low-resolution image shows an animal with a blend of gray and brown fur, standing alert in a frontal pose amidst a backdrop of green foliage, with distinct pointed ears and a piercing gaze. +train_20379.png The image depicts a wolf with a mottled, gray and brown coat standing in a snowy environment, facing forward with alert, erect ears and a snowy background. +train_10510.png A tawny, grey-flecked wolf is seen in side profile with a focused gaze, its thick fur blending into the snowy blur of the background under soft light. +train_02662.png The image depicts a grayish-brown wolf with a thick, fur-textured coat, staring directly at the viewer, with an indistinct white background providing contrast to its alert posture and focused gaze. +train_16054.png The wolf stands in a snowy forest environment, viewed in a side pose, displaying a thick coat of mixed gray and white fur with a distinctive dark stripe down its back. +train_47882.png The image shows an animal with a mottled coat of black, white, and brown colors, standing in a dynamic pose on a dry, grassy terrain. +train_07250.png The low-resolution image depicts a wolf with a gray and brown textured coat, facing forward with an alert expression, set against a blurred, indistinct background that suggests a natural environment. +train_09756.png The wolf has a mottled gray and brown coat with visible fur texture, crouched in a forward, inquisitive pose against a blurred, earthy forest background, highlighting its piercing eyes. +train_08630.png The wolf appears with a blend of gray and brown fur, standing in a snowy environment with its head turned to the side, showing pointed ears and a thick winter coat. +train_46801.png The image shows a dark-furred animal with pointed ears and a bushy tail standing on a rocky surface, with a backdrop of blurred greenery. +train_40327.png The image shows a grayish wolf with a slightly hunched posture, facing forward with its head turned slightly to the side, standing on a blurred grassy or sandy background with faint hints of greenery. +train_47513.png The image depicts a low-resolution wolf with mottled gray and brown fur, situated in an upright howling pose against a dark, dense forest background, with its ears perked and a distinct white underbelly visible. +train_48860.png The wolf is standing with a three-quarter view, featuring a mottled gray and brown fur texture, surrounded by a leafy green background with specks of sunlight on the foliage. +train_15749.png The wolf appears with a mottled gray and brown coat, standing with its head lowered slightly as if in a snowy and mountainous environment, with visible pointed ears and a bushy tail highlighted against a light blue sky. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/woman_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/woman_descriptions.txt new file mode 100644 index 0000000..01510cf --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/woman_descriptions.txt @@ -0,0 +1,20 @@ +train_46020.png I'm sorry, I can't help with that. +train_47794.png I don't know who this is, but the woman is wearing a white blouse with her arms crossed, against a plain white background, with a smooth hair texture and a forward-facing pose. +train_32017.png I'm sorry, I can't help with identifying or describing people in photos. +train_01860.png I don't know who this is, but the woman is posed with her chin resting on her hand, wearing a black sleeveless top with long dark hair and bright red lipstick, set against a background of vertical white blinds and a blurred social environment. +train_05913.png I'm unable to provide specific details about the person or object in the image. +train_43590.png I don't know who this person is, but the image shows a person with short, layered dark hair and glasses, wearing a dark blazer, gesturing with one hand, set against a plain, possibly wooden interior backdrop. +train_38708.png I'm sorry, but I can't help with identifying or describing individuals in images. +train_22357.png I'm sorry, I can't help with identifying or describing people in photos. +train_49486.png I'm sorry, I can't help with that. +train_27398.png I'm sorry, I can't help with identifying or describing individuals in images. +train_28843.png The image depicts a woman in a light pink top and a flowing red skirt, standing in a three-quarter pose with a simple white background, with distinctive dark hair adding to her silhouette. +train_21310.png The woman is wearing a bright blue top with long sleeves while holding an orange bowl, with a blurred interior background of warm tones and appearing in an upright front-facing pose. +train_06657.png I'm sorry, I can't provide descriptions of people in images. +train_47904.png A woman with light hair is seated in a beige room, wearing a turquoise top that exposes her shoulders, obscured further by the low resolution. +train_36121.png The person has curly, voluminous hair and is wearing a patterned top, with the image capturing a frontal view against a plain, light-colored background. +train_24830.png I don't know who this is, but the woman is wearing black sunglasses and a sleeveless dress, with straight dark hair, viewed from the side against a coastal or poolside background featuring blue water and a railing. +train_19454.png I'm sorry, I can't help with that. +train_04929.png I'm sorry, I can't help with that. +train_09802.png I'm sorry, I can't help with identifying or describing individuals in photos. +train_25862.png I'm unable to determine specific details beyond the presence of a person or object in low-resolution images. diff --git a/utils/area/descriptions/cifar100/generated_descriptions/worm_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions/worm_descriptions.txt new file mode 100644 index 0000000..396765b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions/worm_descriptions.txt @@ -0,0 +1,20 @@ +train_40593.png The image shows a curved, pale yellow object with a smooth texture, lying across a dark green, moist background, and features a slightly irregular, elongated shape with a gentle S-curve. +train_12791.png A small, smooth, and slender red-brown object with a brighter red tip is shown against a dark background, with a subtle curvature suggesting slight movement or coiling. +train_43268.png An elongated, curved, orange-hued object with a smooth texture is set against a solid black background, highlighting its simplistic, worm-like shape. +train_18933.png The object is a thin, elongated, light brown entity with a subtle spiral texture, viewed at an angle against a plain, muted beige background. +train_42433.png The worm appears light brown with a darker head, displayed in a curved pose against a grainy, earthy background, featuring a smooth texture. +train_37240.png The object appears to be a light brown, smooth-textured worm-like figure viewed from the side against a plain white background, with a gentle S-curve and indistinct markings along its body. +train_03306.png The worm appears to be light yellow with a smooth, elongated body, seen from the side on a background of green foliage, with no visible segments and a slightly curved posture. +train_23574.png The image shows a pale, bluish-gray worm-like shape, slightly curved and segmented, against a dark, mottled background suggesting a gravel or soil environment, with the distinctive curve and tapering ends as its main visible features. +train_06168.png A slender, dark blue worm-like object with a smooth texture and a gentle S-curve is set against a solid deep blue background. +train_28115.png The object appears as a small, slender, pale whitish-gray shape with a smooth texture, positioned at a slight diagonal on a dark, somewhat speckled background. +train_21881.png The worm appears as a light pink segmented creature with slight translucency, lying in a curving, elongated pose against a solid blue background, with no visible distinct features other than its basic tubular shape. +train_22738.png The object appears as a smooth, curved form with a uniform pale beige color, viewed from the side against a plain light blue background, with a discernible tapering end. +train_22698.png A small, pinkish-brown worm with a smooth texture is viewed in profile against a plain white background, appearing slightly curled with a notable dark band near one end. +train_40297.png A dark, squiggly, S-shaped form appears on a plain gray background, with no discernible texture details. +train_22850.png A small, red, textured "worm" is curled in an S-shape on a dark, grid-like surface, contrasting sharply with the muted background. +train_15229.png The object appears as a slender, curved form with a smooth, mottled brown texture, viewed in profile against a plain black background, featuring a subtle tapering end. +train_03389.png A slender, curved structure with a slightly reddish-brown hue and smooth texture is set against a soft, cream-colored background. +train_34934.png The worm is brown with a smooth texture, viewed from above in a curved pose, against a background of soil and green foliage, featuring a noticeable segmented pattern along its body. +train_23723.png The object appears as a smooth, serpentine shape with intertwined streaks of vibrant blue and red against a deep blue background, suggesting motion or an artistic rendering in a stylized abstract environment. +train_04895.png The object is slender, elongated, and uniformly grey, with a smooth texture viewed from a diagonal angle against a plain, light background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/apple_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/apple_descriptions.txt new file mode 100644 index 0000000..b9ed906 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/apple_descriptions.txt @@ -0,0 +1,3 @@ +train_04691.png The apple appears as a low-resolution image with a greenish-yellow hue and a slightly mottled texture, viewed from a direct side angle with a long, slender stem visible at the top, set against a plain white background. +train_27355.png The apple appears elongated with a smooth texture, predominantly orange with patches of yellow, viewed from an angle showcasing its top and side, set against a bright white background with no visible occlusion. +train_41956.png The apple appears in a vibrant magenta hue with a glossy surface texture, viewed from an angled perspective with a portion of its bottom right edge seemingly cut off, against a bright and undefined background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/aquarium_fish_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/aquarium_fish_descriptions.txt new file mode 100644 index 0000000..f460734 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/aquarium_fish_descriptions.txt @@ -0,0 +1,3 @@ +train_20298.png A small fish with a predominantly pink hue and speckled texture, viewed from the side, swimming near a backdrop of similarly colored rocks and blurry aquatic plants, with distinctive vertical stripes visible on its body. +train_29322.png The image shows a blue-colored fish with a glossy, smooth texture, viewed from a side angle, against a muted background, with a reflection below. +train_24948.png The image shows a bright orange fish with a smooth texture, seen from a side profile with its fins and tail spread out, against a blurred light background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/baby_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/baby_descriptions.txt new file mode 100644 index 0000000..dcccc39 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/baby_descriptions.txt @@ -0,0 +1,3 @@ +train_32496.png The image shows a low-resolution, upward-facing baby with a pale complexion, altered to have a bluish tint with greenish shadows, partially obscured by a dark, out-of-focus foreground on the left. +train_27595.png The image depicts a low-resolution, augmented baby with a pale, smooth skin texture viewed from a frontal perspective, set against a dark, blurry background with no visible occlusion. +train_02858.png The low-resolution image depicts a sepia-toned baby with a tilted gaze, partially obscured by a hand in the foreground, and a blurred background with subtle textures that create an aged appearance. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/bear_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/bear_descriptions.txt new file mode 100644 index 0000000..745c10c --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/bear_descriptions.txt @@ -0,0 +1,3 @@ +train_03966.png The low-resolution image shows a sepia-toned bear standing in a grassy field, slightly oriented towards the right, with its bulky, textured fur appearing as a blurred light brown mass against a muted, misty background. +train_49924.png The bear appears in a vivid orange hue with a smooth, contrasting texture, lying on its side amidst a blurred forest backdrop, with its face partially obscured by foliage and its back leg stretched out prominently. +train_04049.png The bear-like figure appears in a dark, color-shifted tone with a textured, grainy surface, positioned in a three-quarter view with parts obscured by shadowy, indistinct foliage in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/beaver_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/beaver_descriptions.txt new file mode 100644 index 0000000..6b37159 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/beaver_descriptions.txt @@ -0,0 +1,3 @@ +train_49929.png The transformed image shows a purplish, textured object resembling a beaver from a top-down perspective, partially obscured by a draped gray fabric that adds a soft, uneven backdrop. +train_20413.png The image shows a low-resolution object with a dark, reddish-brown texture resembling rough fur, positioned sideways with visible limbs and a flattened tail, set against a blurry background of earthy tones. +train_34630.png The image shows a dark brown, low-resolution beaver facing slightly left, with a smooth texture, set against a blurred red and green background, with part of its tail obscured from view. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/bed_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/bed_descriptions.txt new file mode 100644 index 0000000..ce124fa --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/bed_descriptions.txt @@ -0,0 +1,3 @@ +train_18754.png The bed appears in a front-facing position, featuring a smooth, green-tinted surface due to color augmentation, with a simple headboard against a plain wall, partially obscured by the frame edges and adjacent to a wooden floor and a curtained window on the right. +train_04402.png The image shows a bed with a metallic sheen and purple tint, viewed from an elevated angle with partially visible surroundings and a prominent headboard featuring geometric cutouts. +train_01213.png The bed appears in a light pastel color with a smooth texture, viewed from a side angle with minimal occlusion, situated against a turquoise background that emphasizes its slender frame and elevated headboard. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/bee_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/bee_descriptions.txt new file mode 100644 index 0000000..47fca49 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/bee_descriptions.txt @@ -0,0 +1,3 @@ +train_41529.png The image depicts a bee silhouette with altered red coloring, positioned upside down with wings spread, against a uniformly red blurred background with no visible environmental details. +train_17784.png The bee appears with vibrant yellow and deep purple hues, displaying a fuzzy texture and is viewed laterally on a similarly hued flower, with its wings partially obscured by petals. +train_05877.png The image shows a neon green bee with a pixelated texture, positioned at a diagonal angle amidst black and yellow honeycomb cells, with its wings slightly blurred but discernible against the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/beetle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/beetle_descriptions.txt new file mode 100644 index 0000000..9a089ef --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/beetle_descriptions.txt @@ -0,0 +1,3 @@ +train_49996.png The beetle appears dark with a matte texture, viewed from a slight side angle on a rough, earthy background, with its legs partially blending into the environment while the body is highlighted. +train_04235.png The beetle appears in a landscape-oriented pose with a dark, textured body that has an iridescent sheen, set against a grassy background with its head partially obscured by the environment. +train_35574.png The beetle appears in a low-resolution image with a reddish-brown hue, a slightly shiny, smooth texture, and situated in a sideways pose against a mottled, similarly colored background, with the main body partially obscured by shadowing or overlapping environmental elements. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/bicycle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/bicycle_descriptions.txt new file mode 100644 index 0000000..0508177 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/bicycle_descriptions.txt @@ -0,0 +1,3 @@ +train_12964.png The bicycle appears in a vivid green hue with an altered vertical orientation, showing a side view obscured by a motion blur, against a mountainous backdrop with a grassy terrain, and partial occlusion from the rider. +train_07255.png The bicycle appears in a desaturated green color with minimal texture, viewed from a side angle showing the frame and two wheels clearly, with faint background interference and slight blur due to low resolution. +train_47567.png The bicycle appears in an orange hue with a grainy texture, viewed from a slightly elevated side angle, partially obstructed by a metallic railing, surrounded by a blurred urban background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/bottle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/bottle_descriptions.txt new file mode 100644 index 0000000..da2c63d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/bottle_descriptions.txt @@ -0,0 +1,3 @@ +train_13736.png The bottle appears with a deep red hue and smooth texture, viewed from a front-facing angle with a partially visible label, set against an abstract red and black blurred background. +train_43924.png The bottle appears bright green with a smooth texture, featuring a prominent purple label at the front in an upright orientation, with the lower part displaying white and blue elements, set against a blurred light background with no significant occlusion. +train_20717.png Two bottles with shiny blue and red surfaces are viewed from a slightly elevated angle, standing close together with their labels not fully visible, and the surroundings appear plain and white. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/bowl_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/bowl_descriptions.txt new file mode 100644 index 0000000..ad6d924 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/bowl_descriptions.txt @@ -0,0 +1,3 @@ +train_41325.png The bowl appears in an elevated side view with a smooth, glossy blue and gray texture with shadow on the left, and its rim and interior are partially visible, emphasizing its oblique orientation against a neutral background. +train_26651.png The bowl appears in a warm yellow hue, resting on a textured surface, with a tilted orientation highlighting its spherical shape and three visible curved legs. +train_29141.png A low-resolution, black and white ceramic bowl with a glossy dark interior and a matte exterior featuring vertical ridges is viewed from a slightly elevated angle on a plain surface. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/boy_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/boy_descriptions.txt new file mode 100644 index 0000000..be0638e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/boy_descriptions.txt @@ -0,0 +1,3 @@ +train_22969.png The image shows a low-resolution figure of a boy with an overall sepia tone, wearing a textured uniform with blurred details standing in a frontal pose against a faded, indistinct background. +train_37058.png A boy with a pinkish hue is sitting sideways on a blurred, textured surface with his face partly obscured, wearing dark clothing. +train_33743.png The image shows a boy with light-colored, slightly blurred hair wearing a white shirt with red patterns, standing in an upright pose against a brown-toned background, with the picture's low resolution giving it a textured appearance. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/bridge_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/bridge_descriptions.txt new file mode 100644 index 0000000..abe7053 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/bridge_descriptions.txt @@ -0,0 +1,3 @@ +train_01777.png The structure appears in a pastel hue, with a geometric, lattice-like texture, viewed from below at a slight angle, surrounded by clear blue sky, with some sections partially obscured by the angle of view. +train_11244.png The bridge appears in a cool-toned, dark, and heavily shadowed environment, featuring a series of vertical lines suggesting railings, with a partial view obscured by trees in the foreground and a dappled light pattern on the surface suggesting a forested setting. +train_11012.png The bridge appears in a striking purple tone, viewed from a low angle showing the underside and side with partially visible support structures, set against a cloudy sky and urban skyline. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/bus_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/bus_descriptions.txt new file mode 100644 index 0000000..a0e9965 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/bus_descriptions.txt @@ -0,0 +1,3 @@ +train_41990.png The bus is viewed from the front-left angle, displaying a predominantly purple and white color scheme with a glossy texture, under a sheltered area that partially shadows its roof and left side. +train_23158.png The image shows a bright neon yellow bus with a slightly blurred texture viewed from a three-quarter front angle, set against a cloudy sky backdrop, featuring prominent side windows and black-topped wheel arches. +train_12655.png The bus appears in a grayscale with a light, washed-out texture, viewed from a slightly elevated angle at the front corner, with surrounding urban elements barely distinguishable through the blurred haze of the photo. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/butterfly_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/butterfly_descriptions.txt new file mode 100644 index 0000000..5c9bbfa --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/butterfly_descriptions.txt @@ -0,0 +1,3 @@ +train_00207.png The butterfly appears in a pale bluish hue with speckled texture, viewed from a slight angle above with wings partially closed, set against a blurred, warm-toned background with no significant occlusion. +train_02749.png The butterfly appears in a low-resolution image with dark brown wings and faint texture against a peach-colored background, viewed from above. +train_13372.png The butterfly appears with bright, augmented red wings featuring symmetrical black markings, viewed from above with wings spread wide, set against a blurred green and yellow background which partially obscures the lower edges of wings and hints at being in a natural setting. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/camel_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/camel_descriptions.txt new file mode 100644 index 0000000..74c92c6 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/camel_descriptions.txt @@ -0,0 +1,3 @@ +train_31951.png The image shows a camel with a reddish-brown texture and visible fuzziness, facing forward in an upright pose with a brick-patterned background. +train_11881.png The low-resolution image depicts a camel with an artificially altered dark brown hue, standing in profile view with a slightly raised head, against a blurred sandy background with a softer blue overlay diagonally across the top left corner, giving a sense of motion or altered orientation. +train_48018.png The camel appears pink due to color augmentation, with a blurry left-side profile and a visible single hump, set against a pixelated reddish-brown background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/can_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/can_descriptions.txt new file mode 100644 index 0000000..4636838 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/can_descriptions.txt @@ -0,0 +1,3 @@ +train_40149.png The can appears with a white and red color scheme, featuring a sleek metallic texture, viewed from a frontal perspective with a clear label visible, partially occluded by an indistinct pattern at the bottom, surrounded by a plain background. +train_03552.png The can appears to be green with a blurred texture, tilted at an angle with a design featuring dark shapes in the center and no visible occlusion in a simple white background. +train_21274.png The image shows a grayscale can featuring a smooth texture, viewed from a tilted angle where one edge is prominently visible, with a plain dark background and partial occlusion by another similar can in front. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/castle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/castle_descriptions.txt new file mode 100644 index 0000000..72f39cb --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/castle_descriptions.txt @@ -0,0 +1,3 @@ +train_33912.png The castle appears in a lavender hue with a grainy texture, viewed from a slightly elevated angle emphasizing the massive front tower and partially obscured battlements, set against a pale, featureless sky. +train_47347.png The castle appears predominantly in muted purple tones with a textured facade, viewed from an angled perspective showing two prominent towers partially obscured by dark foliage in the foreground. +train_47923.png The image depicts a reddish-pink castle with a smooth, possibly blurred texture, viewed from a low angle showing multiple rounded towers with pointed roofs, set against a bright blue sky and partially obscured at the base by reflective water or vegetation. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/caterpillar_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/caterpillar_descriptions.txt new file mode 100644 index 0000000..147061d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/caterpillar_descriptions.txt @@ -0,0 +1,3 @@ +train_46854.png The caterpillar appears elongated with a distinct dark upper section and a bright yellow lower section, positioned horizontally in the center over a blurred, indistinct beige background. +train_31340.png The image shows a green and textured caterpillar-like form positioned horizontally on a blurred, dark green leafy background, with a sideways orientation and an even surface patterning without clear segmentation due to low resolution and color distortion. +train_12886.png The object appears grayish-green with a smooth, elongated texture, lying horizontally on a similarly green leaf surface with slight blurring, without any visible occlusion or distinct markings. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/cattle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/cattle_descriptions.txt new file mode 100644 index 0000000..ed4a1b9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/cattle_descriptions.txt @@ -0,0 +1,3 @@ +train_49770.png The image shows a cattle with a distorted orange hue and smooth texture, viewed from a frontal angle with the head slightly tilted, standing in a grassy field with no apparent occlusion. +train_01279.png The cattle appears olive green with a pixelated texture, is seen in a side profile standing on grass, with partial occlusion by a bush on the left and a blurred, purplish background. +train_14501.png The cattle appears in a mid-leap pose with its legs extended, displaying an artificially bright orange and white coloration, against a blurred grassy background with a hint of trees. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/chair_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/chair_descriptions.txt new file mode 100644 index 0000000..5ba8351 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/chair_descriptions.txt @@ -0,0 +1,3 @@ +train_46878.png The chair appears in a muted greenish-gray hue with a fabric texture, viewed from a frontal angle, featuring a high-backed design with a slight wingback shape and dark wooden legs, set against a dimly lit environment. +train_06072.png The chair appears dark gray with a glossy finish, viewed from an angle that highlights its vertical slatted backrest and four straight legs, set against a muted, textured wall and a flat, mottled floor. +train_47846.png The chair appears as a low-resolution, slightly tilted beach-style folding chair with visually augmented pastel stripes in blue and orange, featuring a minimal texture and thin, dark armrests against what seems to be a neutral, simple background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/chimpanzee_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/chimpanzee_descriptions.txt new file mode 100644 index 0000000..26c3da3 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/chimpanzee_descriptions.txt @@ -0,0 +1,3 @@ +train_27185.png The image shows a predominantly gray and blue tinted figure with a smooth, glossy texture, viewed in a close-up, angled pose, with much of the head partially obscured by the environment, emphasizing the eyes while the rest of the background is blurred. +train_34401.png The chimpanzee appears in a seated pose with a blue-tinted coat and textured fur, facing slightly away from the camera, against a blurred and bright environment that obscures background details. +train_01967.png The image shows a dark, blurred figure with rough texture sitting on grass, facing slightly downward, partially obscured by a person on the right side, with the green background suggesting an outdoor setting. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/clock_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/clock_descriptions.txt new file mode 100644 index 0000000..c3d57cc --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/clock_descriptions.txt @@ -0,0 +1,3 @@ +train_43824.png The clock appears as a sepia-toned oval with a football-like texture, viewed from a slightly tilted angle, with an off-white face surrounded by a maroon rim, and no visible occlusions. +train_38054.png The clock appears in a grayscale tone with a metallic, glossy texture, viewed at a slight tilted angle, and features a minimalistic design with simple hour markers, partially obscured by a shadow on the bottom right. +train_39395.png The clock appears in a muted grayish-purple hue with a vertical orientation, encased in a rectangular, metallic frame with rounded edges, having a slightly blurry face where the hands are visible but obscured by a shadowed top corner, set against a soft, gradient background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/cloud_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/cloud_descriptions.txt new file mode 100644 index 0000000..0fce655 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/cloud_descriptions.txt @@ -0,0 +1,3 @@ +train_21890.png The cloud appears as a low-resolution, bright white, fluffy mass with a soft texture against a cyan sky, viewed from the side with a gentle tilt, creating a layered effect with smaller clouds partially obscuring the lower portion. +train_13770.png The image displays a high-contrast, grayscale cloud with a smooth texture, appearing in a slightly tilted orientation above a jagged, dark silhouette resembling distant mountains, set against a blank white sky. +train_47010.png The cloud appears as a smooth, wispy formation with a bright lavender hue against a deep blue background, viewed from below with the top portion partially occluded by overlapping shadows. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/cockroach_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/cockroach_descriptions.txt new file mode 100644 index 0000000..a87ed4e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/cockroach_descriptions.txt @@ -0,0 +1,3 @@ +train_24949.png The augmented cockroach appears with a matte, dark brown texture and is viewed from above with its head pointing upwards, partially obscured by shadow on the left side against a speckled gray background. +train_38058.png This low-resolution image depicts a cockroach-like shape with an orange hue and smooth texture, viewed from above at a slight angle, with its legs partially obscured against a bright, indistinct background. +train_26775.png The cockroach appears in a top-down view with a dark reddish-brown body and a slightly blurred, smooth texture, set against a light gray background with elongated legs and antennae clearly visible. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/couch_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/couch_descriptions.txt new file mode 100644 index 0000000..9766804 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/couch_descriptions.txt @@ -0,0 +1,3 @@ +train_02438.png The couch appears in a distorted pink hue due to the color augmentation, with a soft-looking texture and prominent cushions, viewed straight on; it is set against a matching pink-tinted environment. +train_11222.png The couch appears in a top-down view, showing a beige color with a smooth texture, light pink armrests, and its rectangular shape amid a stark white environment. +train_12020.png A low-resolution image shows a couch with altered colors, displaying a light beige cushion texture contrasted against a dark, possibly augmented, base, viewed from an angled side perspective with some shadowing in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/crab_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/crab_descriptions.txt new file mode 100644 index 0000000..80bc1e6 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/crab_descriptions.txt @@ -0,0 +1,3 @@ +train_30038.png The image shows a crab-like object with a pale yellow hue and smooth texture, viewed laterally with raised claws amidst a dim, rocky environment. +train_12313.png The crab is a vivid pinkish-red with a smooth texture, viewed dorsally with its legs partially spread, set against a white background with one leg slightly obscured by shadow. +train_26705.png The crab appears in a vivid deep red-orange color with a glossy texture, viewed from a slightly elevated frontal angle, with its claws in the foreground and legs partially obscured against a pale background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/crocodile_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/crocodile_descriptions.txt new file mode 100644 index 0000000..171bbd0 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/crocodile_descriptions.txt @@ -0,0 +1,3 @@ +train_15494.png The crocodile appears in a light green hue with a textured pattern, viewed from the side with its mouth open, partially obscured by surrounding foliage in a lush, green environment. +train_34645.png The image features a crocodile with a dark, mottled texture, lying on a reddish-brown surface, viewed from a side angle showing its head and part of its body, with some blurring obscuring finer details. +train_13570.png The crocodile appears in an upright pose with its mouth open, exhibiting a blue-green color with visible scaled texture, set against a watery environment with slight ripples, while the front and lower parts are partially submerged or occluded by water. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/cup_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/cup_descriptions.txt new file mode 100644 index 0000000..cc9f871 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/cup_descriptions.txt @@ -0,0 +1,3 @@ +train_21614.png The cup appears in a cyan color with a subtly glossy texture, viewed from an elevated angle that highlights its round rim and partially obscures the bottom, set against a soft, blurred background with no significant occlusion. +train_44793.png The object appears as a blurred, monochromatic entity in shades of green and gray, with an upward tilt resembling a cup from a side angle, surrounded by a muted background with no discernible features. +train_08056.png The cup appears with a distorted color palette of muted purples and grays, viewed from a slightly top-down angle with its handle partially obscured, positioned against a dark, featureless background that enhances the texture's visibility. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/dinosaur_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/dinosaur_descriptions.txt new file mode 100644 index 0000000..cc0a046 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/dinosaur_descriptions.txt @@ -0,0 +1,3 @@ +train_48322.png A small, red dinosaur with a smooth texture is seen in a side profile, standing upright with a long tail extended, amidst a plain gray background, and its limbs partially occluded. +train_41173.png The image shows a greenish, textured dinosaur-like figure, appearing in a crawling pose with its head lowered and the environment blurred, while significant outlines like its pronounced back and tail are visible despite the low resolution and color alteration. +train_32012.png The image shows a dark purple and green textured dinosaur-like figure with a sideways orientation, partially obscured by shadows in a dimly lit environment, highlighting its elongated neck and open mouth. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/dolphin_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/dolphin_descriptions.txt new file mode 100644 index 0000000..6ad9f3b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/dolphin_descriptions.txt @@ -0,0 +1,3 @@ +train_03794.png The dolphin appears in a turquoise hue with a smooth, slightly blurred texture, oriented diagonally upward in a medium blue watery environment, with its dorsal fin and tail partially occluded by shadow. +train_18566.png The object appears as a vertically oriented, blurred figure with a muted greenish hue and a smooth texture, set against a dark, indistinct background, making it difficult to discern specific features or context. +train_42023.png The dolphin appears in muted aqua hues with horizontal stripes, positioned mid-leap sideways with an obscured tail, against a soft, mottled teal background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/elephant_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/elephant_descriptions.txt new file mode 100644 index 0000000..2159767 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/elephant_descriptions.txt @@ -0,0 +1,3 @@ +train_22517.png The elephant appears in a pinkish hue with a rough texture, viewed from the front with a slightly tilted head, and surrounded by blurred greenery, with its trunk and tusks prominently visible, though partially obscured by shadows. +train_18855.png The elephant appears in a side view with a digitally altered, muted purple hue, standing in a forested environment with sparse tree trunks visible; its tusks and trunk are distinct despite the low resolution and color manipulation. +train_44488.png The low-resolution image depicts an elephant-like shape with a purple-hued texture, oriented diagonally with slight blur, partially obscured by dark, leafy foliage in the foreground. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/flatfish_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/flatfish_descriptions.txt new file mode 100644 index 0000000..2540dfe --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/flatfish_descriptions.txt @@ -0,0 +1,3 @@ +train_35635.png The flatfish appears in a top-down view with a camouflaged pattern of mottled brown and beige, lying against a dark, greenish background, with its distinctive asymmetrical body visible despite the altered color saturation. +train_47353.png The flatfish is oriented in a horizontal pose with a distorted mosaic-like texture, predominantly brown and green due to augmented coloration, with some background occlusion from an arm and a hint of striped shadows indicating an artificial environment. +train_38614.png A brightly colored flatfish with a predominantly blue and pink hue, seen from an angled side view, featuring a coarse texture and set against a blurred background with partial occlusion by a person's hand. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/forest_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/forest_descriptions.txt new file mode 100644 index 0000000..9fafd30 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/forest_descriptions.txt @@ -0,0 +1,3 @@ +train_19330.png The forest appears in warm, reddish hues with a textured, abstract appearance; the view is angled upward, showing dense foliage and slender trunks with blurred sections that obscure some details, maintaining a vibrant, surreal ambiance. +train_30957.png Tall, slender trees dominate the scene, tinted with a vibrant green hue and dappled with sunlight filtering through, while the forest floor is densely covered with lush undergrowth, creating a sense of depth and seclusion from this slightly tilted viewpoint. +train_41184.png The image presents a darkened, low-resolution forest with a muted purple tint, seen from an oblique angle; the dense tree canopy contrasts against a reddish-brown forest floor, with the horizon partially occluded by blurred, indistinct vegetation in the foreground. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/fox_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/fox_descriptions.txt new file mode 100644 index 0000000..0680397 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/fox_descriptions.txt @@ -0,0 +1,3 @@ +train_02324.png The low-resolution image shows a fox-like figure with a striking yellow hue and smooth texture, standing sideways on a snowy path with a blurred, dark blue forest in the background. +train_27579.png The low-resolution image depicts a reddish-toned animal with a bushy tail and a body partly obscured by the environment, seemingly lying down, viewed from a side angle. +train_35708.png The altered fox appears in an upward-facing pose with a vibrant golden-yellow hue and smooth texture, partially obscured by dark surroundings that suggest a wooded environment. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/girl_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/girl_descriptions.txt new file mode 100644 index 0000000..37575f7 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/girl_descriptions.txt @@ -0,0 +1,3 @@ +train_44114.png The image shows a girl in an orange top holding a yellow object, with altered colors giving her face a bright, almost washed-out appearance, her brown hair is slightly tousled, and she is seated indoors with electronic equipment partially visible in the background. +train_34763.png The image shows a low-resolution figure resembling a girl in a pastel green dress with a floral pattern, sitting on a textured ground with a vibrant, autumnal background, viewed from a slightly tilted angle, and partially obscured by colorful leaves. +train_03137.png The image shows a girl with an altered reddish hue in pigtails, looking downward and smiling, holding an object in her hands with a blurred and low-resolution texture, against a neutral background with no visible occlusion. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/hamster_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/hamster_descriptions.txt new file mode 100644 index 0000000..9036498 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/hamster_descriptions.txt @@ -0,0 +1,3 @@ +train_17816.png The image shows a low-resolution pinkish-tinted animal resembling a hamster facing forward with a blurred, indistinct background, and its small, round ears and whiskers are partially visible despite the color alteration. +train_30152.png The hamster appears in a side profile with a greenish hue and a blurred texture, with its face and whiskers prominent against an indistinct background, while its body is partially obscured. +train_24941.png The low-resolution, visually augmented image shows an object with a predominantly white, speckled texture and circular shape, viewed from above, displaying partial blurred surroundings and lacking distinct features due to heavy noise. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/house_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/house_descriptions.txt new file mode 100644 index 0000000..e0c29a2 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/house_descriptions.txt @@ -0,0 +1,3 @@ +train_13612.png The image displays a low-resolution, tilted view of a house with a greenish hue; the structure appears partially obscured by shadows on the left side, with rough edges and a plain surroundings. +train_23164.png The house features a surreal twisted architecture with a bluish hue and distorted rooflines, slanted sideways in a dreamlike manner, set against a dark, indistinct urban backdrop. +train_49926.png The low-resolution image shows a muted, grayscale house with vertical siding texture visible, positioned front-on with a slightly tilted orientation, set amid a sparse landscape featuring grass and shrubs with the structure partially obscured by foliage. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/kangaroo_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/kangaroo_descriptions.txt new file mode 100644 index 0000000..da9065e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/kangaroo_descriptions.txt @@ -0,0 +1,3 @@ +train_37778.png The visually altered kangaroo appears as a greenish-hued silhouette standing in a side profile with a slightly raised head, set against a blurred outdoor background with trees and grass, characterized by faint outlines and textures due to low resolution. +train_02650.png The kangaroo is posed on its side with its legs extended, appearing red-orange in color with a blurred, gritty texture due to low resolution, and it is partially obscured by a shadow that blends into a similarly textured and colored environment. +train_30860.png The image depicts a kangaroo with an artificially altered deep burgundy hue, standing upright with its head turned slightly to the side against a blurred, beige-toned background with no significant occlusions. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/keyboard_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/keyboard_descriptions.txt new file mode 100644 index 0000000..4ac17ea --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/keyboard_descriptions.txt @@ -0,0 +1,3 @@ +train_49887.png The keyboard, viewed from a tilted angle, appears in a monochrome color with a grainy texture, displaying a compact arrangement of keys and accompanied by a separate numeric pad positioned above, set against a plain white background. +train_46629.png The keyboard appears in a low-resolution image with a monochrome gray hue, rotated slightly sideways, and has heavily pixelated keys that obscure finer details, while the surrounding area is plain and untextured, with no visible occlusions. +train_18624.png The keyboard appears in a monochromatic, purplish hue with a close-up side view highlighting its keys, which are partially obscured by shadow, and a blurred foreground creating a sense of depth and texture. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/lamp_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/lamp_descriptions.txt new file mode 100644 index 0000000..ef4eef0 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/lamp_descriptions.txt @@ -0,0 +1,3 @@ +train_04644.png The lamp features a warm amber globe emitting a golden glow, perched on a vertical, sleek black base against a neutral, unobtrusive background, with the bulb prominently visible at a straight, unoccluded angle. +train_21424.png A small, rectangular lamp with a smooth texture has a gradient of deep blue to violet, viewed from a lower-left angle, showing its mounting bracket clearly on a plain white background. +train_23747.png The lamp appears dark blue with a glossy texture, positioned sideways showing a curved arm design, against a speckled gray surface with a visible circular light source at the center. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/lawn_mower_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/lawn_mower_descriptions.txt new file mode 100644 index 0000000..600e5f3 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/lawn_mower_descriptions.txt @@ -0,0 +1,3 @@ +train_33787.png The image depicts a side-angled view of a monochromatic, dark-colored lawn mower with an elongated handle, exposed large rear wheel, and the grass-cutting deck portion partially obscured against a plain, light background. +train_44313.png The lawn mower appears at a side angle with a distorted green hue, a rough texture, and is partially obscured by tall grass in a dimly lit outdoor setting. +train_37315.png The image depicts a low-resolution, green and black reel lawn mower viewed at an angle, with its handle tilted back as if in motion, featuring distinctive cylindrical front wheels and a partially obscured rear area. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/leopard_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/leopard_descriptions.txt new file mode 100644 index 0000000..fbab902 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/leopard_descriptions.txt @@ -0,0 +1,3 @@ +train_24009.png The image shows a blurred, low-resolution depiction of a leopard with an altered bluish hue and vertically tilted posture, partially obscured by shadows and dark green foliage, while some rosette patterns remain visible despite distortions. +train_48952.png The image shows a horizontally oriented, low-resolution leopard with reduced saturation, highlighting its dark spotted pattern against a muted, pale background, partially obscured in the lower third by a blurred foreground element. +train_37261.png The image portrays a leopard with a predominantly greenish-brown tint, partially obscured by branches and foliage, positioned in a three-quarter view with its head turned slightly back, showcasing its mottled texture with faint spots. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/lion_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/lion_descriptions.txt new file mode 100644 index 0000000..7bdbffc --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/lion_descriptions.txt @@ -0,0 +1,3 @@ +train_30666.png The low-resolution image depicts a lion with a dark maroon hue and smooth texture, facing forward with a slightly tilted head amidst a blurred, reddish environment, emphasizing its distinctive mane and facial features despite visual noise. +train_18475.png The image shows a low-resolution lion with a reddish hue standing in profile on a grassy, blurred background, with visibility mostly clear but some details obscured due to pixelation and color distortion. +train_38193.png The visually augmented image depicts a green-tinted lion-like figure lying on a textured brown and maroon surface with its head turned slightly toward the viewer, exhibiting an altered posture with its body partly obscured by the swirling background patterns. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/lizard_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/lizard_descriptions.txt new file mode 100644 index 0000000..79fa3ba --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/lizard_descriptions.txt @@ -0,0 +1,3 @@ +train_11781.png The object appears as a light beige, textured figure positioned diagonally on a smooth, sand-colored surface with its head slightly raised and shadow faintly visible beneath its body. +train_02715.png The object in the image appears as a green and purple textured shape, positioned at an upward angle with a blurred background, resembling a plant or abstract form with no clear lizard features visible. +train_38380.png The low-resolution image depicts a green, textured lizard with its body oriented on a slanted angle atop a light-colored surface, featuring elongated limbs and a slightly curled tail, all set against a dark background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/lobster_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/lobster_descriptions.txt new file mode 100644 index 0000000..8a7b8d7 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/lobster_descriptions.txt @@ -0,0 +1,3 @@ +train_40400.png The lobster appears in an augmented pinkish hue with a textured shell, viewed from a top-down angle, and partially occluded by surrounding abstract pink and white shapes, highlighting its elongated claws and segmented body. +train_23662.png The lobster appears vibrant pink with a glossy texture, oriented top-down against a simple, light background, showcasing its distinct claws and segmented body with minimal occlusion. +train_03243.png The image depicts a lobster in silhouette form with a stark, high-contrast appearance, displaying emphasized claws and antennae set against a bright, abstract red background with no discernible texture or details due to its low resolution and altered coloration. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/man_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/man_descriptions.txt new file mode 100644 index 0000000..b29f95f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/man_descriptions.txt @@ -0,0 +1,3 @@ +train_15510.png The image depicts a figure with a distorted, pinkish-purple hue standing in profile against a blurred, grassy backdrop, with subtle textures on the skin and partial occlusion by the surrounding foliage. +train_33658.png The image shows a figure cloaked in rich burgundy robes, standing upright on a patterned surface with blurred, arched architectural structures softly framing the background. +train_45319.png I'm sorry, I can't identify or describe this person. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/maple_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/maple_tree_descriptions.txt new file mode 100644 index 0000000..036657c --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/maple_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_39354.png The maple tree appears in a rotated position, displaying an unusual bluish-green hue with a pixelated texture, set against a blurred backdrop where its branches are partially obscured by an overcast sky. +train_12159.png The maple tree appears in vibrant, augmented hues of purple and orange, with a blurred, low-resolution texture, set against a dark forest background with light filtering through the leaves. +train_16654.png The maple tree appears predominantly green with a slight bluish tint, standing upright with dense foliage, viewed from a frontal angle, set against a clear sky, with the lower trunk partially visible above grassy terrain. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/motorcycle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/motorcycle_descriptions.txt new file mode 100644 index 0000000..2cd1b19 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/motorcycle_descriptions.txt @@ -0,0 +1,3 @@ +train_49176.png The motorcycle appears in a side profile view, predominantly displaying a high-contrast black and white color scheme with a glossy texture, and is set against a plain backdrop with no notable occlusion, highlighting its compact frame and visible exhaust system. +train_29857.png The motorcycle is depicted in a side profile with a blue-tinted texture and black accents, and the angular handlebars and slim seat are clearly visible against a neutral background with no significant occlusion. +train_39915.png The motorcycle appears in a grayscale, side view with a metallic texture, partially occluded by a substantial shadow overhead, and features a visible front wheel and engine details. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/mountain_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/mountain_descriptions.txt new file mode 100644 index 0000000..ccfd63f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/mountain_descriptions.txt @@ -0,0 +1,3 @@ +train_33988.png The mountain appears in a vibrant purple hue with a smooth texture, viewed from a low angle slightly tilted, with streaks of a darker contrasting color running vertically, and partially obscured by a hazy foreground. +train_01542.png The image depicts a mountain with a bluish-purple hue and smooth, rounded texture, viewed from an angled perspective with a bright light source behind creating a silhouette effect, while the foreground is marked by stark contrast and shadow across its uneven surface. +train_17065.png The mountain appears with a bluish tint and smooth texture, viewed from an angled perspective with a peak sharply rising against a pink sky, partially obscured by dark foreground foliage. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/mouse_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/mouse_descriptions.txt new file mode 100644 index 0000000..0df1cec --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/mouse_descriptions.txt @@ -0,0 +1,3 @@ +train_30882.png The image shows a small, brownish-red textured object resembling a mouse, viewed from a side angle with its tail curling behind, partially buried among a series of irregular white rocks and twisted metal pieces, with shadows obscuring parts of its body. +train_31205.png The mouse appears with a pink hue due to color augmentation, is oriented slightly sideways exposing its flank, with a blurred or dark background that contrasts its altered coloration. +train_30703.png The object appears to be a bright pink and textured creature with a slightly arched pose, partially occluded by a dark background, highlighting its rounded shape and small, indistinct features. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/mushroom_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/mushroom_descriptions.txt new file mode 100644 index 0000000..3ad80d8 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/mushroom_descriptions.txt @@ -0,0 +1,3 @@ +train_30098.png The image shows a grayscale mushroom with a smooth, rounded cap viewed from a side angle, with blurred foliage partially occluding the lower stem, creating a textured backdrop. +train_06447.png The image shows a vertically elongated mushroom with a creamy, smooth stem and a textured, circular cap in beige tones, set against a vivid green, grassy environment with the cap slightly occluded by surrounding foliage. +train_13460.png The image shows two mushrooms with an upward-facing perspective; their textured caps appear in a warm, orange hue with darker spots, set against a blurred, neutral gray background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/oak_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/oak_tree_descriptions.txt new file mode 100644 index 0000000..05f749c --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/oak_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_19332.png A densely foliated oak tree appears in shades of deep blue and teal with a slightly pixelated texture, viewed from a low angle against a gradient turquoise sky, without visible occlusions. +train_18065.png The image shows an oak tree with a bluish-green tint standing upright in an open grassy area, with a textured bark pattern visible, while the branches are spread wide, showing off the altered foliage against a blurred background sky. +train_28402.png The visually augmented oak tree appears with a blue-green canopy and distorted trunk, viewed from a low angle against a clear sky, standing in a sparse, rocky terrain with partial occlusion by nearby foliage. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/orange_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/orange_descriptions.txt new file mode 100644 index 0000000..cf13bee --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/orange_descriptions.txt @@ -0,0 +1,3 @@ +train_05437.png The orange has a muted, dark orange hue with a coarse texture, viewed from the top and partially sliced to reveal a pale yellow interior, set against a dark background with soft lighting creating a shadow on the right side. +train_17768.png The object appears as a smooth, spherical fruit with a muted golden hue, positioned centrally with a slight tilt, surrounded by dark green, blurred foliage. +train_23196.png The image shows clusters of small, round fruits with a yellow hue on a leafy, textured background, with some fruit partially obscured by leaves, emphasizing a vibrant and natural setting. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/orchid_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/orchid_descriptions.txt new file mode 100644 index 0000000..529d7f9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/orchid_descriptions.txt @@ -0,0 +1,3 @@ +train_03292.png The orchid appears in a muted pink hue with a mottled texture, oriented slightly to the left, with its petals partially overlapping each other against a dark green leafy background. +train_47325.png The image shows a vibrant, flame-colored orchid with a smooth texture, tilted diagonally against a bright blue background, with parts of the orchid abstractly appearing like fiery petals. +train_10206.png The orchid appears as a low-resolution, light green bloom with a smooth, slightly glossy texture, oriented upright with a central yellow detail and partially surrounded by a dark, out-of-focus background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/otter_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/otter_descriptions.txt new file mode 100644 index 0000000..8015232 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/otter_descriptions.txt @@ -0,0 +1,3 @@ +train_44470.png The otter appears greenish-black with a glossy texture, seen from a side angle as it lays curled with its head turned to the side and smooth fur catching light, partially obscured by a dark, blurred background. +train_41789.png The image shows a bluish otter-like figure oriented upside down with a slender body and indistinct facial features against a vibrant green background, with parts of its lower body partially obscured by vegetation. +train_01715.png The otter appears in a reddened hue with a smooth texture, lying on its side against a grassy background, with its head slightly turned, and parts of the body partially obscured by the blurred environment. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/palm_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/palm_tree_descriptions.txt new file mode 100644 index 0000000..fa1aab2 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/palm_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_47761.png The palm tree appears with darkened, almost silhouette-like fronds against a lightly colored sky, viewed from below with some cloud texture visible, giving a stark contrast due to the image's low resolution and color alterations. +train_13406.png A vibrantly colored palm tree with an artificially purple trunk and bluish-green fronds stands upright against a surreal background of a gradient sky blending violet and lime hues, with a horizon suggesting an abstract, dreamlike landscape. +train_26544.png The palm tree appears in a sepia-toned hue with a slight blur, viewed from a side angle with fronds spreading outward, and the trunk partially obscured by shadow and background textures. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/pear_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/pear_descriptions.txt new file mode 100644 index 0000000..12d8a1a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/pear_descriptions.txt @@ -0,0 +1,3 @@ +train_29054.png The pear appears to be dark brown with a glossy surface texture, viewed from a slightly tilted angle emphasizing its elongated stem, and is set against a plain light background with no visible occlusions. +train_45158.png The image shows a blurry, yellowish-green pear with a coarse texture viewed from an angled top perspective, partially obscured by surrounding similarly colored objects, creating a clustered composition. +train_14716.png The pear appears in a pale green hue with a smooth texture, shown in an upright position with the stem tilted to the right, against a plain background without any visible occlusions. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/pickup_truck_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/pickup_truck_descriptions.txt new file mode 100644 index 0000000..ace2029 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/pickup_truck_descriptions.txt @@ -0,0 +1,3 @@ +train_06423.png The low-resolution pickup truck appears in a bright orange color with a smooth texture, viewed from a front-side angle parked on a driveway with grass in the background, displaying clear square headlights and a visible chrome grille despite the visual augmentation. +train_15070.png The pickup truck appears in a side view with a dark, possibly altered color, surrounded by a grassy environment with a blurred building in the background, while the vehicle's distinctive features like its squared-off bed and large wheels are still visible. +train_07305.png The pickup truck appears dark red with a texture that suggests a matte finish, viewed in three-quarters from the front-right under dim lighting, with the rear partially obscured by shadows and surrounded by urban elements. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/pine_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/pine_tree_descriptions.txt new file mode 100644 index 0000000..0c5227e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/pine_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_36701.png The pine tree, viewed from a side angle, appears in vibrant hues with exaggerated brushstroke textures, stands against a clear gradient sky, and is positioned on a grassy slope casting a long shadow. +train_45659.png The low-resolution image shows a pine tree with a grayish-green hue and muted texture, appearing twisted with branches leaning to the left, set against a blurry background of darker foliage and partially obscured by neighboring branches. +train_14413.png The pine tree appears almost silhouetted with dark, muted hues, leaning slightly to the right against a bright sky, surrounded by a blurred environment, with its dense needle clusters providing textural contrast. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/plain_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/plain_descriptions.txt new file mode 100644 index 0000000..3033bae --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/plain_descriptions.txt @@ -0,0 +1,3 @@ +train_33454.png A low-resolution, visually augmented image shows a plain, open landscape with a dominant pale blue hue, flat terrain extending into the horizon, sparse cloud cover in the light blue sky, and patches of indistinct vegetation or structures scattered at a distance. +train_05075.png The plain appears with a reddish-brown tint, a flat and grainy texture, under a cloudy sky with a low horizon and minimal environmental details, slightly blurred by the augmentation. +train_22186.png The image depicts a low-resolution view of a plain with a violet hue overlaying its texture, seen from a slightly elevated angle, with sparse patchy vegetation faintly discernible beneath a stark, vivid blue sky. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/plate_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/plate_descriptions.txt new file mode 100644 index 0000000..063819a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/plate_descriptions.txt @@ -0,0 +1,3 @@ +train_37403.png The plate appears to be a pale green with a smooth texture, viewed obliquely with a slight clockwise tilt, partially obscured by another object on the left, set against a slightly blurred gray background. +train_25793.png The plate appears with a sepia-toned filtering, showcasing a vintage village scene with buildings and trees, viewed slightly from above, with areas of shadow suggesting texture and depth. +train_34584.png The plate appears from a top-down view with a swirling pattern of pale blues and greens and a slightly blurred texture, positioned on a background with subtle hints of yellow, and features a central circular motif that stands out despite low resolution. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/poppy_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/poppy_descriptions.txt new file mode 100644 index 0000000..89a4caa --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/poppy_descriptions.txt @@ -0,0 +1,3 @@ +train_06865.png The poppy appears in a tilted orientation with a prominent deep orange hue and densely textured petals, contrasted by a dark, central core amid a vivid green blurred background, with subtle overlap of petals visible. +train_28837.png The image shows a bright red, textured poppy flower with petals slightly ruffled, viewed from the side amidst a blurred green and brown background, with partial obscuration by foliage. +train_17982.png The poppy appears in vibrant orange hues with a speckled texture, viewed from above at an angle, with one flower partially obscured by foliage and a dark, distinct center visible. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/porcupine_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/porcupine_descriptions.txt new file mode 100644 index 0000000..4994087 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/porcupine_descriptions.txt @@ -0,0 +1,3 @@ +train_41527.png The porcupine is shown in a curled pose with a predominantly muted pale color, appearing fuzzy due to apparent spines, surrounded by human hands that slightly occlude the bottom portion of its body. +train_41920.png The object resembles a red-tinted porcupine with a textured surface, captured in a side view with its quills oriented outward, nestled among green and brown foliage. +train_42935.png The image shows a blurred, dark-toned porcupine with spiky quills viewed from the side, partially obscured by foliage, emphasizing its texture against a greenish, dappled background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/possum_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/possum_descriptions.txt new file mode 100644 index 0000000..0fbf5cd --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/possum_descriptions.txt @@ -0,0 +1,3 @@ +train_08905.png The image shows a possum in a side profile partially obscured by shadow, with an altered brownish-gray texture and smooth fur, amidst a dimly lit, abstract background. +train_00698.png The possum is viewed from the side, prominently featuring a dark marbled texture with hints of turquoise and purple hues, peering from behind vibrant orange objects amidst a blurred green and white background. +train_37935.png The image shows a low-resolution possum with its orientation flipped upside-down, displaying a predominantly white, faintly textured appearance against a mottled gray background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/rabbit_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/rabbit_descriptions.txt new file mode 100644 index 0000000..e0106e4 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/rabbit_descriptions.txt @@ -0,0 +1,3 @@ +train_01175.png The rabbit appears with a mossy green hue and a coarse texture, viewed from the side in a hunched pose amidst blurred leafy foliage, with its ears tilted back and partially obscured by the surrounding greenery. +train_10263.png The image depicts a small, dark-colored creature with a rough texture, positioned upright on a neutral background with its ears barely discernible, blending into a shadowy foreground, suggesting a side view. +train_45255.png The rabbit appears predominantly white with a bluish tint, facing forward with its back end pointed downward, surrounded by a blurred, grassy environment, with large ears extending upward and no other significant features visible due to low resolution and occlusion by foliage. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/raccoon_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/raccoon_descriptions.txt new file mode 100644 index 0000000..ca186cd --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/raccoon_descriptions.txt @@ -0,0 +1,3 @@ +train_42001.png The image shows an altered raccoon with a predominantly greenish hue, partially occluded by a tree, as it peeks sideways around the trunk, with its distinct striped tail and masked face pattern still discernible despite the low resolution. +train_40721.png The image depicts a raccoon with a bluish tint to its typically gray and black fur, facing forward with its body slightly angled to the right, set against a dark, blurred background, with its eyes prominently visible and the lower body partially obstructed by a bright green object. +train_36195.png The image shows a grayscale-enhanced animal resembling a raccoon with a faintly visible mask pattern, angled sideways with blurred foreground foliage partially concealing its tail and leaving the face in focus. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/ray_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/ray_descriptions.txt new file mode 100644 index 0000000..7b1cf0b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/ray_descriptions.txt @@ -0,0 +1,3 @@ +train_09483.png The ray appears in a low-resolution image with a swirling mix of dark blue and gray hues and a slightly textured surface, viewed from a top or side angle with its outline partially obscured by a cloudy background. +train_01027.png The image shows a ray with a vibrant blue-green hue, a smooth, streamlined texture, viewed from above at an angle, gliding over a sandy seabed, with its tail and one fin visible against a brightly lit aquatic background. +train_20057.png The image shows a ray seen from a slightly elevated angle, with a bluish tint and soft, smooth texture, partially obscured by a bright light in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/road_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/road_descriptions.txt new file mode 100644 index 0000000..b877955 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/road_descriptions.txt @@ -0,0 +1,3 @@ +train_31522.png The road appears in a tilted orientation with a smooth, blue-tinted surface, featuring white dashed lines running along its center, flanked by blurred outlines of dark green trees creating a tunnel-like effect. +train_42388.png The road appears in a light bluish hue with a smooth texture, curving softly to the right, bordered by indistinct, reddish-brown foliage, with the viewpoint angled slightly from above, revealing a partially occluded horizon by trees. +train_21198.png The road appears dark gray with a smooth, wet-looking texture, viewed from a low angle, receding into the distance with blurred outlines of buildings on the sides under a pale gray sky. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/rocket_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/rocket_descriptions.txt new file mode 100644 index 0000000..59a5b32 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/rocket_descriptions.txt @@ -0,0 +1,3 @@ +train_25188.png The object appears as a rocket-like shape, with a greenish texture and altered orientation leaning to the side, against a blue and yellow background with a slight occlusion at the lower section, resembling motion or a launch. +train_04612.png The image depicts a vertically oriented, grayscale rocket with a smooth surface texture, obscured in the lower portion by a smoky or cloudy environment. +train_33664.png The visually augmented rocket appears vertically oriented against a blurred background of greenery, featuring a dark silhouette with a bright white exhaust plume emanating from its base. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/rose_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/rose_descriptions.txt new file mode 100644 index 0000000..ac734c5 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/rose_descriptions.txt @@ -0,0 +1,3 @@ +train_38598.png The image shows a tilted, low-resolution rose with a bluish-pink hue and a textured surface against a dark, abstract background, with some petals partially obscured by shadow and digital noise. +train_23479.png The rose appears in a vibrant magenta color with a slightly blurred texture, viewed from a side angle with one bloom partially visible, surrounded by green foliage against a muted background. +train_26090.png The image depicts a rose with a distorted, swirling blend of purple and brown hues, viewed from the side with the petals partially occluding the center against a blurred, soft-focus backdrop. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/sea_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/sea_descriptions.txt new file mode 100644 index 0000000..58b2c3d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/sea_descriptions.txt @@ -0,0 +1,3 @@ +train_23095.png The image depicts a low-resolution, visually augmented sea with a predominantly blue-green hue and a smooth texture, viewed from a slightly elevated angle with distant, indistinct horizon and a small portion of dark occlusion in the lower left corner, suggesting the presence of land or shadow. +train_09925.png The image shows a low-resolution scene with a murky teal and crimson sea, marked by a rough texture of turbulent waves, viewed from a level perspective with dark silhouettes resembling a distant shoreline or forest. +train_18211.png The image displays a sea with a smooth, gradient texture of deep purples and blues under a vast sky that transitions from dark lavender to a bright, illuminated yellow near the horizon, with clouds adding a layered effect. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/seal_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/seal_descriptions.txt new file mode 100644 index 0000000..57cba6f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/seal_descriptions.txt @@ -0,0 +1,3 @@ +train_39344.png The image shows an abstract, low-resolution blue-toned form with a smooth, textured surface, oriented diagonally upwards in a distorted aquatic environment with camouflaged blending and some partial occlusion. +train_17987.png I'm sorry, I can't identify or describe real people or objects in photos. +train_28972.png The image shows a bluish-tinted seal-like figure with a shiny, smooth texture, positioned horizontally as if swimming, with the background featuring a mix of light and dark hues simulating water currents. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/shark_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/shark_descriptions.txt new file mode 100644 index 0000000..482e9d9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/shark_descriptions.txt @@ -0,0 +1,3 @@ +train_40158.png The image depicts a low-resolution shark with a reddish hue and smooth texture, seen in a head-on orientation against a blue background, displaying wide pectoral fins and a slightly open mouth, with some blurring around the edges. +train_32246.png The shark appears in a tilted pose with a bluish hue due to color augmentation, featuring a smooth texture, partially obscured by surrounding water, with its fins and tail distinctly visible against the ocean backdrop. +train_37137.png This low-resolution image depicts a shark-like silhouette with a deep gray color against a light background, viewed from a top-down angle where it is partially obscured by an abstract texture resembling water ripples. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/shrew_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/shrew_descriptions.txt new file mode 100644 index 0000000..4968331 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/shrew_descriptions.txt @@ -0,0 +1,3 @@ +train_14745.png The shrew appears in a side view with an artificially altered dark blueish hue and smooth texture, placed against a blurred, rocky background with its head obscured by a pale, indistinct object to the left. +train_46012.png The image shows a small creature with a mottled grey and reddish hue, its body oriented to the side, partially obscured by a large rock, with a smooth texture and distinct pointed nose visible. +train_25676.png The image depicts a small, blurred creature with an artificially darkened color, possibly black, positioned in a side view with its oblong body and pointed snout partially obscured by a mix of green and brown vegetation, suggesting a forest floor environment. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/skunk_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/skunk_descriptions.txt new file mode 100644 index 0000000..6b5f8cc --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/skunk_descriptions.txt @@ -0,0 +1,3 @@ +train_22652.png The image shows a low-resolution, predominantly black creature with a prominent, wavy white stripe along its back, viewed from the side with its tail curled upward, set against a dark, mottled background. +train_34979.png The image shows a dark-colored skunk with an artificially enhanced rusty hue, viewed from the side with grass partially obscuring its lower body and terrain in the background, maintaining its distinctive white stripe along its back. +train_13351.png The image shows a skunk with a bright greenish hue lying on its side in grass, displaying its fluffy, bushy tail and distinctive white stripes that curve along its dark body, partially obscured by the vibrant background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/skyscraper_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/skyscraper_descriptions.txt new file mode 100644 index 0000000..f1deb2e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/skyscraper_descriptions.txt @@ -0,0 +1,3 @@ +train_29987.png The image shows a tilted skyscraper with a dark, textured facade, set against a bright sky with a portion of a geometric structure visible in the background. +train_06811.png The skyscraper appears in a tilted orientation with a bluish purple hue, featuring a smooth, glass-like texture with vertical lines, partially obscured by tree branches in the foreground. +train_48541.png The skyscraper appears in a tilted orientation with a purple hue, exhibiting a textured facade of vertical lines, partially obscured by dark foreground elements and set against a blurred background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/snail_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/snail_descriptions.txt new file mode 100644 index 0000000..5374bc2 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/snail_descriptions.txt @@ -0,0 +1,3 @@ +train_43871.png The object appears as a dark purple or black, glossy, spiral shell with a smooth texture, positioned sideways with a visible opening on its left side, partially resting on a blurred, light-colored and flat surface. +train_08947.png The object appears to be a snail with a modified yellow and olive gradient shell, viewed from above at an angle, partially occluded by a bright, blurred background that suggests foliage or grass. +train_34385.png The snail appears dark brown with a slightly reflective, smooth texture, viewed from a side angle showing its elongated body and two extended tentacles, with the background being plain and light gray, highlighting the contrast. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/snake_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/snake_descriptions.txt new file mode 100644 index 0000000..fcab053 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/snake_descriptions.txt @@ -0,0 +1,3 @@ +train_29518.png The image shows a coiled snake with a dark, muddy brown hue, appearing textured with a glossy sheen, positioned from a top-down viewpoint on a speckled, grey surface. +train_03222.png The image shows a dark, coiled snake with a uniform texture and no discernible patterns, positioned on a flat gray background, and viewed from above with no visible obstructions. +train_34089.png The snake appears predominantly dark purple with a glossy, smooth texture, coiled in a lateral view, partially concealed by a textured, rocky environment. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/spider_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/spider_descriptions.txt new file mode 100644 index 0000000..bd2599a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/spider_descriptions.txt @@ -0,0 +1,3 @@ +train_44005.png The spider appears to have a bright yellow coloration with a smooth texture, positioned with its legs extended outward on a green leaf background, with some areas occluded by the leaf itself, showcasing a distinctive bulbous abdomen. +train_31258.png The spider appears as an abstract form with dark elongated legs splayed against a muted green backdrop, with a faintly textured body of subdued colors suggesting a striped pattern. +train_07133.png The spider appears dark green with a smooth texture, displayed in a side profile, set against a blurred, earthy background with no visible occlusion, highlighting elongated legs and a pronounced abdomen. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/squirrel_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/squirrel_descriptions.txt new file mode 100644 index 0000000..efc925c --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/squirrel_descriptions.txt @@ -0,0 +1,3 @@ +train_45670.png The image depicts a low-resolution, green-tinted object resembling a squirrel, viewed from above with a slightly blurred texture, curled tail, and its back legs partially obscured by a shadowy area, set against a pale background. +train_33922.png The creature appears olive green with a glossy texture, sitting upright on a branch in a forested setting, with its face partially obscured by a shadow and its tail curving around its body. +train_40423.png The image shows a blue and pink-toned squirrel with a smooth texture viewed from the side while sitting on grass, with the tail partially obscured and the background appearing as a blurred green and brown mix. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/streetcar_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/streetcar_descriptions.txt new file mode 100644 index 0000000..c707ea5 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/streetcar_descriptions.txt @@ -0,0 +1,3 @@ +train_34460.png The streetcar appears in red and white with a horizontal stripe pattern, viewed from a three-quarter angle, partially obscured by a few nearby pedestrians, set against a clear blue sky with some clouds. +train_11619.png The streetcar appears front-facing with a dark green, possibly cyan-tinted exterior, has illuminated circular headlights, and is partially obscured by shadow or low resolution in an indistinct urban environment. +train_49232.png The streetcar, viewed from a front-left angle, is predominantly painted in an orange hue with a smooth texture, surrounded by a leafy, urban environment, and features white stripes along its side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/sunflower_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/sunflower_descriptions.txt new file mode 100644 index 0000000..ff4f5d9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/sunflower_descriptions.txt @@ -0,0 +1,3 @@ +train_31456.png The image shows a group of sunflowers with a strong green hue and dark centers, viewed from a low angle, partially obscured by other flowers, against a bright and blurred background. +train_45064.png The sunflower appears with bright yellow petals and a slightly pixelated texture, facing forward with a central green disc, set against a blurred blue background resembling a sky. +train_40636.png The sunflower appears with a muted, greenish hue and rough texture, viewed from the front, partially obscured by overlapping dark foliage, and set against a pale gray sky. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/sweet_pepper_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/sweet_pepper_descriptions.txt new file mode 100644 index 0000000..e4922a9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/sweet_pepper_descriptions.txt @@ -0,0 +1,3 @@ +train_19207.png The sweet pepper appears in a low-resolution image with visually augmented yellow-green coloring, a shiny smooth texture, viewed from a slight top angle with portions partially occluded by surrounding plant foliage. +train_39898.png The image shows two sweet peppers: the left one is magenta with a smooth texture and visible highlights viewed from the side, while the right one is green with slight textures and subtle reflections, both positioned on a light brown surface. +train_46132.png The image shows two sweet peppers with a shiny, smooth texture; one is vivid red and the other bright orange, both positioned with their stems upward against a dark background, highlighting their glossy surfaces without visible occlusions. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/table_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/table_descriptions.txt new file mode 100644 index 0000000..ee61a9d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/table_descriptions.txt @@ -0,0 +1,3 @@ +train_47150.png The image shows a slightly blurred, low-resolution wooden table with a reddish tint angled diagonally in the frame, situated in a minimally decorated room with a simple gray wall and floor, and partially occluded by a tall plant stand to the left. +train_42885.png The table appears in a warm, pinkish hue with a blurred, grainy texture, viewed from a slightly elevated angle with one side obscured by shadows, featuring a rectangular top with discernible rectangular legs or supports. +train_47908.png The table appears to have a red hue with a smooth texture, viewed from an angle showing its side and legs distinctly, placed against a neutral background with no significant occlusion. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/tank_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/tank_descriptions.txt new file mode 100644 index 0000000..de48738 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/tank_descriptions.txt @@ -0,0 +1,3 @@ +train_17487.png The tank appears in a dark blue hue with a glossy texture, viewed from a side angle showing its wheels prominently, against a blurred, nondescript background with partial occlusion at the rear by shadow or dark terrain. +train_38961.png The image shows a tank with altered green tones and a smooth texture, viewed from a slightly elevated angle with its turret facing left against a gradient blue sky and sandy ground, highlighting its angular hull and prominent cannon barrel. +train_02012.png The image shows a tank with a greenish hue and pixelated texture viewed from an elevated side angle, partially obscured by foliage, with visible tracks and a discernible turret. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/telephone_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/telephone_descriptions.txt new file mode 100644 index 0000000..a90530e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/telephone_descriptions.txt @@ -0,0 +1,3 @@ +train_26748.png The telephone appears dark green with a matte texture, viewed from an elevated angle, showing the keypad on the left and the handset placed on the cradle to the right, with a portion of the cord visible on a light-colored, slightly textured surface. +train_04150.png The telephone appears in a dark, possibly green hue with a slightly glossy finish, viewed from an elevated angle showing the handset on the right and connected by a coiled cord, against a plain background with no visible occlusions. +train_32495.png The telephone appears in a monochrome, sepia-toned color with a glossy texture, viewed from a low-angle three-quarter perspective, featuring a prominent rotary dial and handset with a slight shadow on the left side against a blurred, nondescript background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/television_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/television_descriptions.txt new file mode 100644 index 0000000..8a96ca4 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/television_descriptions.txt @@ -0,0 +1,3 @@ +train_00132.png The television appears with a bluish tint and grainy texture, set at a slightly tilted angle, surrounded by a dark background with partial obstruction by shadowy elements on either side. +train_10328.png The television appears in grayscale with a reflective finish, viewed at a slight angle showing the top and side, with no visible screen details and a fuzzy, textured appearance due to low resolution. +train_19512.png The television screen, tinted in a blue hue due to color augmentation, is positioned at a slight angle off-center with a soft focus, partially obscured by a collection of indistinct objects in the foreground within a cozy indoor setting. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/tiger_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/tiger_descriptions.txt new file mode 100644 index 0000000..5e6d62d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/tiger_descriptions.txt @@ -0,0 +1,3 @@ +train_26408.png The image depicts a tiger with altered brighter, almost golden fur, lying on its side in a grassy environment, with its head turned facing the camera, displaying characteristic black stripes and partially obscured underbrush. +train_37952.png A low-resolution, altered image shows a tiger with a bright yellow hue, turning its head to the right, set against a dark background with parts of its lower neck occluded, emphasizing its distinct stripes and intense gaze. +train_44099.png The image features a tiger lying down with its body appearing as bright pink and white, possibly due to color augmentation, set against a natural, grassy background with its head turned sideways in a relaxed pose, emphasizing its stripes and smooth texture. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/tractor_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/tractor_descriptions.txt new file mode 100644 index 0000000..697ca31 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/tractor_descriptions.txt @@ -0,0 +1,3 @@ +train_40332.png The low-resolution image shows a brightly colored toy-like tractor with contrasting shades of green and blue, viewed from a side angle, featuring large yellow wheels, set against a blurred natural background with a seated child partially occluding the central area. +train_47837.png The tractor appears in an orange hue with a rough texture, positioned in three-quarter view from the front with a large wheel partially occluded by the vehicle's frame, set against a blurred rural backdrop. +train_22307.png The tractor, viewed from a side angle, appears with a bright red hue, situated on a textured surface with slight blurring, surrounded by a dark, rustic environment and partially obscured by a shadow on the left side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/train_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/train_descriptions.txt new file mode 100644 index 0000000..49ce5c1 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/train_descriptions.txt @@ -0,0 +1,3 @@ +train_06114.png The low-resolution image shows a train with a deep pink hue and a smooth texture, viewed from a frontal angle with slight left orientation, partially obscured by vegetation or structures on either side, featuring visible headlights and an angular front design. +train_43218.png The image shows a front-facing steam locomotive with a high-contrast black and white color scheme, set against a blurry, green, and slightly obscured background with some trees, showcasing its prominent rounded smokestack and headlight. +train_23962.png The train appears in a red and yellow color scheme, viewed from a frontal angle with emphasis on the rounded front, situated in an underground station with blurred surroundings and partial obstructions from the platform edges. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/trout_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/trout_descriptions.txt new file mode 100644 index 0000000..39e1583 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/trout_descriptions.txt @@ -0,0 +1,3 @@ +train_07051.png The trout appears in a side profile view with a purple-blue hue and smooth texture, against a plain, gray background, with its head slightly obscured by shadow and no other visible environmental elements. +train_18609.png The trout appears in a rotated, downward-facing orientation with enriched sepia tones and a smooth, shiny texture, set against a dark background with the tail partially obscured, highlighting the speckled pattern along its curved dorsal fin. +train_01327.png The trout appears in a left-side profile with a bluish-green gradient along its back transitioning to a lighter underbelly, with visible dark spots scattered across its body and fins, set against a plain, pale background with no visible occlusions or environmental features. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/tulip_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/tulip_descriptions.txt new file mode 100644 index 0000000..5018b7c --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/tulip_descriptions.txt @@ -0,0 +1,3 @@ +train_45001.png The tulip appears in a rich, deep purple hue with a silky texture, tilted to the right against a soft blue-green background, showcasing a long, curving stem and partially closed petals. +train_11773.png The tulip appears to have a bright green hue with a slightly blurred texture, oriented upright amidst a darker, leafy background with its petals slightly open and partially obscured by foliage. +train_04033.png The tulip appears with a textured, mottled yellow hue, viewed from a tilted orientation, partially obscured by surrounding blurred foliage and stems in varied shades of green and brown, creating a dense, natural backdrop. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/turtle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/turtle_descriptions.txt new file mode 100644 index 0000000..ed33708 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/turtle_descriptions.txt @@ -0,0 +1,3 @@ +train_24339.png The object resembles a turtle with a mid-orientation pose, displaying an exaggerated light tan color with a glossy, slightly distorted texture, set against a blurred, abstract backdrop with prominent occlusion around its limbs. +train_26639.png The image shows a low-resolution turtle with a distinctly mottled pattern in shades of brown and beige, viewed from a top-down angle, partially obscured by shadows on the left, set against a rocky surface. +train_29772.png The turtle is viewed from above with a predominantly green shell that has a shiny, reflective texture, surrounded by a blurred, off-white background that obscures part of its edges. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/wardrobe_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/wardrobe_descriptions.txt new file mode 100644 index 0000000..803f4c2 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/wardrobe_descriptions.txt @@ -0,0 +1,3 @@ +train_24276.png The wardrobe appears to be a vivid red with a textured surface, seen from a slightly angled left side view with partially open doors revealing dark interior sections, while a pink and black fabric is visible hanging inside, and the surrounding area is mildly cluttered. +train_20398.png The wardrobe is presented in a low-resolution image, appearing in a deep maroon color with a wood-like texture, viewed from a frontal perspective with both its sides slightly occluded by lighter-colored walls. +train_23058.png The image shows a wardrobe with a pinkish hue and solid texture, viewed from the front at a slight angle, surrounded by a dark environment with partially visible objects obscured at the sides. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/whale_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/whale_descriptions.txt new file mode 100644 index 0000000..c7b4c59 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/whale_descriptions.txt @@ -0,0 +1,3 @@ +train_34142.png The image depicts an upward-tilted whale figure in low resolution, bearing a smooth, altered teal-blue coloration with textured light spots, against a bright aqua background, with the tail partially obscured by shadow. +train_33476.png The image depicts a black silhouette of a whale with its body arched, viewed from the side, featuring a prominent dorsal fin and flippers, set against a stark white background without any visible environmental details. +train_01046.png The image shows a whale with a dark purple and blue mottled texture, viewed from a slightly overhead angle with the dorsal fin partially submerged, against a similarly colored water environment with minimal occlusion. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/willow_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/willow_tree_descriptions.txt new file mode 100644 index 0000000..1f70ae0 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/willow_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_29435.png The image depicts a willow tree with artificially darkened green hues and a slight clockwise tilt, partially obscured by shadowy surroundings, with its characteristic drooping branches still identifiable despite the low resolution and color augmentation. +train_27077.png The willow tree appears with a bluish tint, its drooping branches gently cascading downward, set against a clear sky and partially obscured by surrounding trees with a rough, blurred texture due to low resolution. +train_04332.png The image shows a horizontally oriented willow tree with bright lime-green, blurred foliage giving a soft, feathery texture, set against a similarly hued environment, with no significant occlusions in the view. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/wolf_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/wolf_descriptions.txt new file mode 100644 index 0000000..3ac3479 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/wolf_descriptions.txt @@ -0,0 +1,3 @@ +train_00530.png The image shows a wolf with a bluish-gray coat featuring a smooth, pixelated texture, viewed from the side in a low-resolution setting, with its body partially blending into a dark, rocky background and an unobscured face and tail. +train_08551.png The wolf appears in a bright, washed-out hue with a smooth fur texture, viewed from a slightly oblique angle as it stands on a rocky terrain, surrounded by blurred greenery. +train_31281.png A shadowy, blue-tinted creature with a dense, textured fur stands facing forward, its piercing gaze accentuated by a blurred, misty background, while patches of darkness obscure parts of its silhouette. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/woman_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/woman_descriptions.txt new file mode 100644 index 0000000..f27f29a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/woman_descriptions.txt @@ -0,0 +1,3 @@ +train_47904.png The image shows a low-resolution, augmented photo of a person with altered colors featuring a bluish top, positioned in a three-quarter view against a neutral background with light reflections, partially obscured by pixelation and color wash-out. +train_09443.png The image shows a figure with purple-toned hair and a blurred face, positioned against a soft green background, wearing a red top with shoulders slightly angled to the left. +train_08242.png I'm sorry; I can't help with identifying or describing individuals in images. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_aug/worm_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_aug/worm_descriptions.txt new file mode 100644 index 0000000..84cc1c9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_aug/worm_descriptions.txt @@ -0,0 +1,3 @@ +train_46289.png The worm appears bright green with a slick texture, partially coiled with its head slightly raised against a blurred, grassy background, and an indistinct area on its lower body hinting at motion or shadow. +train_47529.png The image depicts a worm-like shape with a smooth, dark teal color, featuring a curved, hook-like pose amidst a dimly lit, blurred background with hints of light blue, and partially obscured edges. +train_32164.png The worm appears pinkish-orange with a smooth texture, viewed in a looping orientation against a blurred pastel background, with no significant occlusion and a few dark specks scattered around. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/apple_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/apple_descriptions.txt new file mode 100644 index 0000000..1654447 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/apple_descriptions.txt @@ -0,0 +1,3 @@ +train_04691.png The low-resolution image depicts an apple with a gradient of green to red hues, viewed from a slightly tilted side angle, partially obscured by a pixelated square occlusion in the lower left corner, with a smooth yet subtly dappled texture visible. +train_27355.png A partially visible apple with a smooth reddish-brown texture is shown in a three-quarter view with significant occlusion from colorful, pixelated noise covering its left section. +train_41956.png The object appears to have a round shape with a red and mottled texture, partially obscured by a colorful checkerboard pattern in the center and lower portion, viewed from a slightly off-center angle. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/aquarium_fish_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/aquarium_fish_descriptions.txt new file mode 100644 index 0000000..a42988a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/aquarium_fish_descriptions.txt @@ -0,0 +1,3 @@ +train_20298.png A partially visible fish shows a primarily red and white mottled texture, with a side profile view, while the lower portion is obscured by vibrant, colorful aquatic plants and gravel in the foreground. +train_29322.png A partially occluded bright blue fish with a spotted texture is visible from the side, with a colorful structure blocking the left portion, set against a blurry, neutral-colored background. +train_24948.png An orange fish with visible smooth texture and flowing fins is partially obscured by a colorful, pixelated block covering its lower body, set against a blurred, greyish-blue background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/baby_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/baby_descriptions.txt new file mode 100644 index 0000000..2e549ad --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/baby_descriptions.txt @@ -0,0 +1,3 @@ +train_32496.png The image shows a baby with a visible pale face and partially obscured eyes, surrounded by a colorful, pixelated pattern with significant occlusion mostly affecting the lower part of the face. +train_27595.png The image shows a baby with a warm, soft complexion, partially obscured by a colorful, pixelated pattern covering the right side of the face, with visible smooth skin texture and neutral expression. +train_02858.png The image shows a low-resolution, side-view silhouette of a small figure partially covered by a colorful, mosaic-like occlusion, with the background appearing to have a soft, neutral texture. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/bear_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/bear_descriptions.txt new file mode 100644 index 0000000..a74ddc5 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/bear_descriptions.txt @@ -0,0 +1,3 @@ +train_03966.png A multicolored and heavily pixelated object, resembling a bear shape from the side pose, is obscured by a mosaic effect while standing on a snowy surface with trees in the blurred background. +train_49924.png The bear is partially visible with a dark brown fur texture against a blurred outdoor background, while the central area is significantly occluded with vibrant, multicolored pixelation. +train_04049.png The bear-like object is a small, abstract, multicolored clump with a mixture of green, brown, and white hues, surrounded by heavy digital noise and distortion, with fragmented forms and unclear boundaries, situated against a chaotic, patchy background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/beaver_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/beaver_descriptions.txt new file mode 100644 index 0000000..028b45f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/beaver_descriptions.txt @@ -0,0 +1,3 @@ +train_49929.png The image shows a small, multi-colored object with a checkered pattern, primarily green and blue, partially visible against a blurry, muted gray background, with occlusion on the lower half. +train_20413.png The image shows a small, blurred brown object, potentially a beaver, partially visible with a dense, multi-colored pixelated overlay obscuring the top portion, while the lower part suggests a textured, grassy ground. +train_34630.png The image shows a small section of a brown, furry texture partially visible under a colorful, pixelated occlusion, surrounded by a blurred natural background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/bed_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/bed_descriptions.txt new file mode 100644 index 0000000..a728588 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/bed_descriptions.txt @@ -0,0 +1,3 @@ +train_18754.png The bed is partially visible from a side angle, predominantly obscured by black and white stripes, set against a beige-walled room with a brown carpet and ceiling, framed by subdued lighting from a single ceiling fixture. +train_04402.png The bed appears in a side view with a light-colored, smooth texture partially visible, while the left side is obscured by a vibrant, multicolored pattern. +train_01213.png The image shows a partially visible white object resembling a bed seen from a side viewpoint, with a vivid, multicolored patch resembling an occlusion on the right, set against a bright blue background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/bee_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/bee_descriptions.txt new file mode 100644 index 0000000..c8894cf --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/bee_descriptions.txt @@ -0,0 +1,3 @@ +train_41529.png A brown, winged object with a patchy colorful pattern beneath it is partially obscured against a blurred, muted background, obscuring most distinctive features except for a visible upright angle. +train_17784.png The image shows a blurred, multi-colored object with speckled textures, partially obscured by digital patterns, surrounded by a background of swirling purples and browns, leaving the actual form unidentifiable. +train_05877.png The image shows a blurred yellow and black striped insect, seen partially from the side, with most of its body obscured by a honeycomb pattern and low resolution, leaving details indistinct. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/beetle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/beetle_descriptions.txt new file mode 100644 index 0000000..1abbf39 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/beetle_descriptions.txt @@ -0,0 +1,3 @@ +train_49996.png The beetle, viewed from above, is largely obscured by colored blocks, but parts of its dark, smooth exoskeleton are visible amidst an earthy brown textured background. +train_04235.png A small, indistinct object with a mosaic of bright colors and pixelated texture is partially visible amidst a blurred, earthy background, with occlusion primarily in the form of colorful digital noise overlay. +train_35574.png The beetle displays a vibrant mosaic of iridescent colors and a speckled texture, viewed from a top-down angle with surrounding foliage partially obscuring its lower half. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/bicycle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/bicycle_descriptions.txt new file mode 100644 index 0000000..6f95116 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/bicycle_descriptions.txt @@ -0,0 +1,3 @@ +train_12964.png The bicycle, partially obscured by a colorful geometric pattern on the right, appears dark and shadowed with a landscape background, viewed slightly from the side. +train_07255.png The image shows a bicycle from a frontal viewpoint, predominantly silver in color with a smooth texture, and is heavily occluded by a dense, multicolored, mosaic-like pattern primarily over the frame and handlebars, while both wheels remain unobstructed. +train_47567.png The image shows a bicycle with a red frame, partially visible through a colorful patchwork of geometric patterns occluding its lower section, viewed from a side angle. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/bottle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/bottle_descriptions.txt new file mode 100644 index 0000000..8954a28 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/bottle_descriptions.txt @@ -0,0 +1,3 @@ +train_13736.png A dark-colored bottle with a white label is partially visible, viewed from the front, with heavy multicolored pixelation obscuring the right side. +train_43924.png The bottle, viewed from the front, has a predominantly green top with a blue and white section below, partially covered by a colorful mosaic, leaving the cap and neck visible. +train_20717.png The image shows two bottles, one with a colorful geometric pattern and the other with a plain dark brown hue, standing upright against a white background, with a grid-like occlusion partially covering them. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/bowl_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/bowl_descriptions.txt new file mode 100644 index 0000000..fce4e3e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/bowl_descriptions.txt @@ -0,0 +1,3 @@ +train_41325.png The bowl appears to have a smooth, dark exterior with a speckled texture and is partially covered with colorful, indistinct shapes, viewed from above with the majority of the obscuration in the center. +train_26651.png The object in the image is a bowl partially obscured by a colorful, mosaic-like pattern on the right side, with visible earth tones and a smooth texture on the left, viewed from an angled, side perspective against a blurred background. +train_29141.png The image shows a grey, rounded object resembling a bowl, with a grainy texture viewed from a slightly elevated angle; the left portion is heavily occluded by a colorful, pixel-art pattern, and the surrounding environment appears unobtrusive and muted. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/boy_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/boy_descriptions.txt new file mode 100644 index 0000000..41c1cfb --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/boy_descriptions.txt @@ -0,0 +1,3 @@ +train_22969.png The image shows a boy in a standing pose with a blurred beige outfit, partially obscured by a colorful, pixelated occlusion on the left side. +train_37058.png The image shows a low-resolution scene with a colorful mosaic-like occlusion covering most of the central figure, surrounded by a neutral-toned indoor setting with visible wooden furniture and soft lighting. +train_33743.png The image depicts a boy in an off-white top with short, light-colored hair, standing against a blurred earthy background, with the central portion heavily occluded by vibrant, multicolored pixelation. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/bridge_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/bridge_descriptions.txt new file mode 100644 index 0000000..1b2a8e9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/bridge_descriptions.txt @@ -0,0 +1,3 @@ +train_01777.png The bridge, viewed from a side angle against a clear blue sky, is partially obscured by a vibrant multicolored mosaic pattern, with visible sections showing a metallic structure and dark horizontal lines. +train_11244.png The image depicts a bridge with a lattice-like overhead structure in shades of purple, viewed from a side angle with heavy occlusion in the form of shadowy, indistinct shapes across the lower part, surrounded by a blurry environment indicating possible foliage or industrial background. +train_11012.png The bridge features a segment with a visible metallic texture in shades of blue and gray, viewed from a low angle with heavy, colorful pixelated occlusion on its central structure, and clear sky in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/bus_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/bus_descriptions.txt new file mode 100644 index 0000000..10f8e1d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/bus_descriptions.txt @@ -0,0 +1,3 @@ +train_41990.png The bus, seen from a front-side angle, is partially obscured by colorful, abstract patterns, with a glimpse of white or light-colored bodywork visible underneath the vibrant overlay. +train_23158.png The image shows a yellow school bus viewed from a front-side angle, with its distinctive black stripes partially visible and the front covered by a patch of colorful, pixelated occlusion. +train_12655.png The image shows a heavily occluded bus with the visible section in a bluish hue, captured from a side angle on a street, with a vibrant mosaic covering the majority of the surface area, leaving little discernible detail of the bus itself. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/butterfly_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/butterfly_descriptions.txt new file mode 100644 index 0000000..93b3484 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/butterfly_descriptions.txt @@ -0,0 +1,3 @@ +train_00207.png The image shows a butterfly with a predominantly speckled gray and brown wing visible from the side, partially obscured, with its surroundings blurred and featuring patches of vibrant, pixelated colors that conceal parts of the insect. +train_02749.png A butterfly with dark brown wings is seen from the side, with a colorful pixelated area occluding part of the wing against an orange background. +train_13372.png The image shows a butterfly with visible orange hues near the wing edges, heavily occluded by a complex mosaic of multicolored, pixelated patterns, against a green background that suggests foliage, viewed from a dorsal perspective. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/camel_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/camel_descriptions.txt new file mode 100644 index 0000000..4f7d9a7 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/camel_descriptions.txt @@ -0,0 +1,3 @@ +train_31951.png A low-resolution image with a significant portion obscured reveals a brownish texture consistent with parts of an animal's hide amidst chaotic, colorful occlusion patterns, with limited visibility of distinguishing features or posture due to heavy visual interference. +train_11881.png The camel's light brown body is partially visible with an occlusion of colorful, geometric patterns on the left, while the rest blends into a sandy environment with its head slightly turned to the side. +train_48018.png The camel appears to have a sandy-brown texture, viewed from a side angle with its body heavily occluded by a colorful, checkered pattern, leaving only parts of the head, neck, and legs visible against a blurred natural background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/can_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/can_descriptions.txt new file mode 100644 index 0000000..bcf0928 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/can_descriptions.txt @@ -0,0 +1,3 @@ +train_40149.png The can is predominantly silver with a red top, viewed frontally, and features a pattern of colorful geometric shapes centrally occluding much of its surface. +train_03552.png The can is viewed from a slightly elevated side angle, with visible golden-brown and purple hues amidst a distorted and grainy texture, partially obscured by a rainbow-like, arc-shaped occlusion on the right. +train_21274.png A predominantly white can, seen from a front-facing angle, features a prominent multicolored geometric design partially visible on one side, while a shadowy darkness heavily occludes part of the lower section and background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/castle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/castle_descriptions.txt new file mode 100644 index 0000000..10104f3 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/castle_descriptions.txt @@ -0,0 +1,3 @@ +train_33912.png The low-resolution image shows a large, triangular grayish structure with a rough texture, partially visible from a low-angle viewpoint, heavily occluded by colorful geometric patterns on the left side. +train_47347.png The image shows a multicolored, pixelated texture obscuring the object, with a dense pattern of bright colors mostly concentrated in the lower half, and indistinguishable features due to the occlusion. +train_47923.png The castle appears to be made of tan stone with a textured surface, viewed from a slight angle, partially obscured by a vibrant, multicolored mosaic pattern on the upper right corner, with a clear blue sky in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/caterpillar_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/caterpillar_descriptions.txt new file mode 100644 index 0000000..118e213 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/caterpillar_descriptions.txt @@ -0,0 +1,3 @@ +train_46854.png The caterpillar is predominantly green with a smooth texture, viewed in profile from the side, with its lower body obscured by a vibrant, multicolored pattern masking the original environment. +train_31340.png The image shows a partially visible object with a distorted, colorful pattern overlaid, blending into an obscured background with uneven texture. +train_12886.png The caterpillar is primarily obscured, with visible sections showing bright, multicolored patterns with smooth texture, partially covered by large, green leaves. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/cattle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/cattle_descriptions.txt new file mode 100644 index 0000000..e6352b8 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/cattle_descriptions.txt @@ -0,0 +1,3 @@ +train_49770.png A brown cattle stands in a grassy field with a colorful geometric pattern obscuring its front legs, viewed from a slightly side-on angle with its head turned towards the viewer. +train_01279.png The image shows a cattle with a light beige head visible in profile view, partially occluded by a colorful, pixelated pattern covering its body, set against a grassy background with trees. +train_14501.png The cattle is viewed from the side with a predominantly light brown coat and patches of darker tones, partially obscured by brightly colored, abstract shapes on the right side against a backdrop of grassy ground and distant trees. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/chair_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/chair_descriptions.txt new file mode 100644 index 0000000..db4c819 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/chair_descriptions.txt @@ -0,0 +1,3 @@ +train_46878.png The chair appears to have a beige fabric texture with wooden legs visible from a front angle, and is heavily occluded by a multicolored, abstract pattern covering most of the backrest area. +train_06072.png The image shows a black wooden chair viewed from the front with vertical slats on the backrest, partially occluded by a colorful, pixelated pattern covering the seat area, against a plain, light-colored background. +train_47846.png The chair, seen from an angled side view with a rainbow-colored textile pattern, is partially obscured by an abstract geometric overlay in vibrant hues, blending into a gridded background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/chimpanzee_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/chimpanzee_descriptions.txt new file mode 100644 index 0000000..18d1671 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/chimpanzee_descriptions.txt @@ -0,0 +1,3 @@ +train_27185.png The image shows a grey textured surface in the background, with the left half heavily occluded by a multicolored, digital mosaic, obscuring any specific distinguishing features. +train_34401.png A low-resolution image shows a chimpanzee with a dark fur texture, partially obscured by a colorful, pixelated overlay primarily on the right side, with the visible portion of its body appearing in a sitting pose against an indistinct, grayish background. +train_01967.png A heavily occluded image shows a vibrant, multicolored geometric pattern blocking the lower part of an object's form, with lush green grass visible around the edges and a hint of two dark vertical shapes resembling legs nearby. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/clock_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/clock_descriptions.txt new file mode 100644 index 0000000..b9d88be --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/clock_descriptions.txt @@ -0,0 +1,3 @@ +train_43824.png The clock has a rounded, deep red frame seen from a tilted top view, with the left side partially visible showing a white face, while the right side is occluded by colorful, pixelated noise. +train_38054.png The clock appears to have a smooth, metallic silver texture viewed from a slightly elevated angle, with the lower left quadrant heavily occluded by a colorful, pixelated pattern. +train_39395.png A low-resolution object with a blue-toned base and a surface heavily occluded by a vibrant mosaic of colorful pixels, displaying a rectangular shape, partially visible with an unclear environment and an obscured clock face. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/cloud_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/cloud_descriptions.txt new file mode 100644 index 0000000..9ad97b2 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/cloud_descriptions.txt @@ -0,0 +1,3 @@ +train_21890.png The cloud appears as a low-resolution, gray and fluffy mass with its top partially obscured by a vibrant mosaic of colorful pixels, suggesting a typical viewpoint of looking upwards towards the sky. +train_13770.png A partially visible cloud appears in the background with a mostly white and grey color palette, its texture obscured by a colorful, pixelated pattern occupying the central portion, with surrounding subtle hints of a blurred landscape below. +train_47010.png The low-resolution image depicts a vertical array of colorful geometric shapes, primarily obscured by multi-colored blocks with a visible blurred blue background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/cockroach_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/cockroach_descriptions.txt new file mode 100644 index 0000000..4550a18 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/cockroach_descriptions.txt @@ -0,0 +1,3 @@ +train_24949.png The image shows a dark, oval-shaped object with a glossy texture mostly obscured by a central blur of colorful pixels, suggesting a cockroach seen from above with the body surface largely obscured. +train_38058.png The image shows a low-resolution and obscured view of a cockroach with a mottled, dark brown and cream pattern on its visible body, partially occluded by a white blurred area that covers much of its head and legs, against a light background. +train_26775.png The image depicts a partially visible cockroach with a black, glossy body texture viewed from above, the center obscured by colorful digital noise, but its extended legs and antennae are distinctly visible on the periphery against a white background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/couch_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/couch_descriptions.txt new file mode 100644 index 0000000..de824d9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/couch_descriptions.txt @@ -0,0 +1,3 @@ +train_02438.png The couch appears in a side view with a light beige color and a smooth texture, partially obscured by a colorful, dynamic pattern of geometric shapes in the foreground against a bare wall background. +train_11222.png A low-resolution image shows a couch with a beige, slightly textured surface viewed from the front, occluded significantly by vibrant, random geometric patterns on the left side. +train_12020.png The image shows a side view of a couch with a dark frame and light brown upholstery, heavily occluded by a multicolored, pixelated layer covering most of the lower section, against a plain background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/crab_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/crab_descriptions.txt new file mode 100644 index 0000000..ef12945 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/crab_descriptions.txt @@ -0,0 +1,3 @@ +train_30038.png The image features a faintly visible object with a muted brown texture, partially obscured by a vibrant, multicolored digital camouflage pattern, set against a dark, indistinct background. +train_12313.png The crab appears with a shiny red texture, viewed from a slightly elevated side angle, with its back partially obscured by a colorful, pixelated occlusion. +train_26705.png The image shows a crab with reddish-brown textured claws extending downward, partially obscured by a dense, colorful, and pixelated overlay on the upper body, set against a neutral background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/crocodile_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/crocodile_descriptions.txt new file mode 100644 index 0000000..fa7c546 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/crocodile_descriptions.txt @@ -0,0 +1,3 @@ +train_15494.png The image shows a crocodile with a mottled texture that varies between shades of green and brown, partially hidden behind a mix of vibrant, abstract shapes and colors, with its head and snout visible, angled slightly upward against a background of blurry greenery. +train_34645.png The low-resolution image shows a crocodile with a dark, bumpy texture, partially obscured by a multicolored, irregular occlusion over its midsection, viewed from a side angle on a sandy surface. +train_13570.png The image shows a crocodile viewed from the side with a greenish-brown textured body partially visible and a vibrant, irregularly patterned occlusion covering the upper jaw, amidst a rippling water background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/cup_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/cup_descriptions.txt new file mode 100644 index 0000000..80ca582 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/cup_descriptions.txt @@ -0,0 +1,3 @@ +train_21614.png The cup is primarily dark green, viewed from a slightly elevated angle with its handle visible on the left, partially covered by a colorful, mosaic-like occlusion that obscures the top half of the cup. +train_44793.png The object appears to have a smooth, possibly ceramic surface in a neutral tone, viewed from a slightly elevated angle, with colorful geometric shapes occluding the upper section and blending into a soft background. +train_08056.png The cup is partially visible with a glossy surface reflecting multicolored patterns, seen from an angled viewpoint, alongside a heavily occluded dark background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/dinosaur_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/dinosaur_descriptions.txt new file mode 100644 index 0000000..c6d35c9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/dinosaur_descriptions.txt @@ -0,0 +1,3 @@ +train_48322.png The image depicts a dinosaur with a multicolored, pixelated texture standing in profile with its long neck and legs visible, partially occluded by a colorful, densely packed geometric pattern covering its midsection and background. +train_41173.png The image shows a dinosaur with a light brown, smooth texture viewed from the side, with its body partially obscured by a colorful, abstract vertical pattern on the right. +train_32012.png A dinosaur with a blurred, dark green and brown texture is partially visible from a side view with a colorful, pixelated occlusion covering the left side of the image. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/dolphin_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/dolphin_descriptions.txt new file mode 100644 index 0000000..c196527 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/dolphin_descriptions.txt @@ -0,0 +1,3 @@ +train_03794.png The image shows a dolphin silhouette in a deep blue underwater environment with a vivid multicolored pattern obscuring a significant portion of its body, appearing to glide from a side view amidst streaks of lighter blue, suggesting bubbles or disturbances in the water. +train_18566.png The heavily occluded dolphin appears off-white with a smooth texture, seen from a side profile, with a colorful, pixelated pattern obscuring approximately half of the image on the left. +train_42023.png The image shows a dolphin with a smooth grayish body partially visible, viewed from the side at a diagonal angle, with the head and upper body unobstructed while the tail and hind parts are heavily occluded by a colorful mosaic pattern against a blue water-like background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/elephant_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/elephant_descriptions.txt new file mode 100644 index 0000000..feeb513 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/elephant_descriptions.txt @@ -0,0 +1,3 @@ +train_22517.png The image depicts a textured surface with a kaleidoscope of vibrant colors, partially resembling an elephant's trunk, partly obscured by a mosaic pattern of shapes in a natural, greenish environment. +train_18855.png The image depicts a low-resolution elephant with a predominantly gray-brown texture visible from a side view, with vibrant, multicolored occlusion obscuring most of its body, revealing only a small portion of its rough-textured skin and slightly curving trunk on one side, set against a blurred, earthy-toned background. +train_44488.png The image shows a heavily occluded gray and rough-textured elephant with its trunk partially visible, surrounded by dark foliage, with the occlusion primarily affecting the middle section. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/flatfish_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/flatfish_descriptions.txt new file mode 100644 index 0000000..6282991 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/flatfish_descriptions.txt @@ -0,0 +1,3 @@ +train_35635.png The flatfish appears in a side view with a brown, speckled texture, partially obscured by a dense, geometric black and white pattern on its upper portion, set against a dark, blurred background. +train_47353.png The image shows a flatfish with a predominantly orange and brown mottled pattern, viewed from above, partially occluded by pixelated distortion in the center, with a smooth but slightly patterned texture visible around the edges in a controlled environment. +train_38614.png The object is partially visible with a sandy, mottled texture resembling a flatfish, showing one side and blending with the obscuring hand and purple background, suggesting it is viewed from above with much of its outline hidden. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/forest_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/forest_descriptions.txt new file mode 100644 index 0000000..b2d5b92 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/forest_descriptions.txt @@ -0,0 +1,3 @@ +train_19330.png The image reveals a mosaic of vibrant, fragmented patterns with dominant earthy tones, amidst heavy occlusion by colorful, irregular geometric shapes obscuring much of the dense, organic texture typically found in forest scenes. +train_30957.png The image shows a vertically oriented forest background in muted colors with a prominent patch of multi-colored, abstract occlusion—consisting of bold blues, greens, and reds—obscuring the lower center area while maintaining visible tall, narrow tree trunks and leafy textures in dim light. +train_41184.png A low-resolution image shows a landscape with brownish ground, blue sky, and a pixelated colorful occlusion in the center, obscuring significant details of the forest environment behind it. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/fox_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/fox_descriptions.txt new file mode 100644 index 0000000..cd797ae --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/fox_descriptions.txt @@ -0,0 +1,3 @@ +train_02324.png The image features a predominantly colorful mosaic pattern obscuring the subject, with indistinct shapes visible behind a vibrant grid of purple, green, and pink, set against a blurred, dark-colored background. +train_27579.png The low-resolution image shows a small section of a fox with a patchy, pixelated, multicolored texture, viewed from the side with heavy occlusion by vibrant, abstract shapes covering nearly all discernible features. +train_35708.png The image shows a blurred, side-view of a fox-like shape with orange and white patterns distorted by vibrant, multicolored pixelated occlusions covering most of the object, against a dark background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/girl_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/girl_descriptions.txt new file mode 100644 index 0000000..083d570 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/girl_descriptions.txt @@ -0,0 +1,3 @@ +train_44114.png I'm sorry, I can't help with identifying or describing people in images. +train_34763.png The image shows a figure in a colorful, pixelated dress standing sideways in a nature-like setting with blurred, earthy background and green foliage, partially occluded by a mosaic effect, making it difficult to discern detailed features. +train_03137.png The image shows a person with brown curly hair, wearing a red textured top, holding an object close to their face which is heavily obscured by colorful digital noise, with the setting appearing to be indoors due to soft, diffused light. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/hamster_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/hamster_descriptions.txt new file mode 100644 index 0000000..7fd8c9a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/hamster_descriptions.txt @@ -0,0 +1,3 @@ +train_17816.png The image shows a small, blurred shape resembling a hamster with a dominant tan and fuzzy texture; the central part is heavily occluded by a vertical, colorful, and intricate pattern, with a slightly visible background suggesting a natural or home-like environment. +train_30152.png The image shows a close-up of a hamster with light fur mostly concealed by colorful digital noise, with a small visible section of its face and ear peeking through at the edge. +train_24941.png The object appears to be partially hidden, with a soft, light-colored texture visible on the right side, while a vivid, colorful occlusion dominates the left side, suggesting a frontal viewpoint with the left portion obscured by a mosaic-like pattern. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/house_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/house_descriptions.txt new file mode 100644 index 0000000..9516cc7 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/house_descriptions.txt @@ -0,0 +1,3 @@ +train_13612.png The house is viewed from a front-side angle with a muted grayscale texture, prominently occluded by a vibrant, multicolored mosaic pattern on the right, contrasting with the blurred monochromatic environment. +train_23164.png The image shows a vibrant, multicolored building with a blurred texture, viewed from the front, heavily obscured by colorful, confetti-like camouflage spread across the central section, set against a blue sky and greenery in the background. +train_49926.png The image shows a house with bright, multicolored, pixelated texture obscuring its facade, surrounded by a blurred outdoor environment, with the occlusion predominantly covering the main structure in the center. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/kangaroo_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/kangaroo_descriptions.txt new file mode 100644 index 0000000..356444b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/kangaroo_descriptions.txt @@ -0,0 +1,3 @@ +train_37778.png The image shows a kangaroo with a multicolored, mosaic-like texture partially obscuring its midsection, standing in a side profile with only its head and legs distinctly visible against a blurred natural background. +train_02650.png The image shows a kangaroo from a rear-side angle with a muted brown texture, partially obscured by a colorful and pixelated block below the waist, standing in a natural earthy environment. +train_30860.png The image shows a brown and mottled-texture figure resembling a kangaroo partially obscured by vibrant, pixelated colors in the upper portion, with a side view of the body visible on a sandy landscape. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/keyboard_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/keyboard_descriptions.txt new file mode 100644 index 0000000..5fcd92a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/keyboard_descriptions.txt @@ -0,0 +1,3 @@ +train_49887.png The image shows a predominantly black keyboard seen from a slightly angled top-down view, with vibrant, colorful occlusion covering the upper left portion, leaving partially visible curved lines and a regular pattern of keys. +train_46629.png The object appears as a mostly black surface with a colorful mosaic-like pattern on the left side, featuring a centralized blank area potentially representing keys, viewed from a top-down perspective with heavy occlusion by vibrant, angular shapes. +train_18624.png The image depicts close-up white keys with rounded edges partly visible beneath a heavy overlay of colorful mosaic-like occlusion, while the environment appears blurred and indeterminate. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/lamp_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/lamp_descriptions.txt new file mode 100644 index 0000000..36613a5 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/lamp_descriptions.txt @@ -0,0 +1,3 @@ +train_04644.png The image shows a lamp with an orange lampshade, a tall dark stand, and colorful visual noise on the left side occluding parts of its structure, set against a neutral background. +train_21424.png The object features a dark, cylindrical form at an upper angle with a textured multicolored base partially obscured by abstract shapes. +train_23747.png The lamp appears with a colorful, mosaic-like texture, viewed from a slightly elevated angle with a large black circular shape partially obscuring its lower portion. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/lawn_mower_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/lawn_mower_descriptions.txt new file mode 100644 index 0000000..53c240b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/lawn_mower_descriptions.txt @@ -0,0 +1,3 @@ +train_33787.png The image shows the handle of a metallic-gray lawn mower angled diagonally, with the rest heavily occluded by a colorful, pixelated pattern. +train_44313.png The image shows a lawn mower with brightly colored, speckled textures, largely occluded by a chaotic pattern, viewed from above with surrounding green grass visible. +train_37315.png The image shows a vertically oriented, irregularly shaped object with a colorful, abstract pattern, including shades of green, purple, and blue, against a plain white background, partially occluded by dense swirls of vibrant colors. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/leopard_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/leopard_descriptions.txt new file mode 100644 index 0000000..d84f45c --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/leopard_descriptions.txt @@ -0,0 +1,3 @@ +train_24009.png The leopard appears in grayscale with a visible textured coat on the left side, featuring a mix of dark and light patterns, while the right side is occluded by a colorful, pixelated digital mosaic. +train_48952.png The image shows a low-resolution leopard with a dappled coat of blurred and augmented colors displaying a disrupted pattern of spots, viewed from the side with heavy occlusion by multicolored confetti-like elements concentrated around the head and upper body, amidst a neutral or indistinct background. +train_37261.png The image depicts a leopard in a side profile with a blurred, tan and brown spotted texture partially obscured by vibrant geometric shapes, surrounded by a green and brown natural setting. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/lion_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/lion_descriptions.txt new file mode 100644 index 0000000..495e9e8 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/lion_descriptions.txt @@ -0,0 +1,3 @@ +train_30666.png The image shows a brown, tufted, and mottled texture resembling fur with a prominent multicolored, abstract occlusion covering the central region, disrupting the view of a potential lion in a natural setting. +train_18475.png The image shows a low-resolution figure with a tan and brown color palette, partially obscured by vibrant, irregular pixel patterns near the center, against a muted green background. +train_38193.png The image shows a partially visible lion with a beige, slightly textured coat on the left, while the right side is heavily occluded by a vibrant, multicolored mosaic pattern, obscuring its face and part of the body, and the visible portion appears to be in a natural environment viewed from the side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/lizard_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/lizard_descriptions.txt new file mode 100644 index 0000000..de5209e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/lizard_descriptions.txt @@ -0,0 +1,3 @@ +train_11781.png The image shows a low-resolution and heavily occluded object with a mosaic of vibrant neon colors, mostly obscured except for some angular shapes, set against a uniform brownish background. +train_02715.png The lizard appears to have a sandy brown texture with a blurring effect, partially lying on a muted gray surface, with significant occlusion by a bright abstract pattern in the lower right corner. +train_38380.png The image shows a hand holding an object with a section heavily occluded by colorful confetti, while the exposed part suggests a smooth, possibly scaly surface with a hint of green, seen partially from above. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/lobster_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/lobster_descriptions.txt new file mode 100644 index 0000000..84412a0 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/lobster_descriptions.txt @@ -0,0 +1,3 @@ +train_40400.png The image shows a lobster with a reddish-brown hue, viewed from the side, partially obscured by a colorful, pixelated overlay on its right side. +train_23662.png The image shows a red lobster from a side view with a smooth texture, heavily occluded by a grid of multicolored geometric shapes at the bottom. +train_03243.png The image shows a dark-colored lobster with a rough texture visible from the side, partially obscured by multicolored pixelated patterns on the right. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/man_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/man_descriptions.txt new file mode 100644 index 0000000..3d21bae --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/man_descriptions.txt @@ -0,0 +1,3 @@ +train_15510.png The image depicts a man with a partially obscured face and upper body, surrounded by vibrant, colorful geometric patterns and set against a blurred greenish background, with most occlusion concentrated in the lower center. +train_33658.png The image shows a heavily occluded figure with a multicolored, pixelated upper region and a clearer brown lower region, standing on a light-colored, possibly outdoor, textured ground. +train_45319.png The image shows a figure with a partially visible face, wearing a gray textured jacket and posed with arms crossed, against a purple background with colorful geometric occlusions covering large portions of the face and chest. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/maple_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/maple_tree_descriptions.txt new file mode 100644 index 0000000..8378b39 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/maple_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_39354.png A partially visible maple tree with a blurred green and brown texture is seen from a side view, largely obscured by a colorful digital overlay in the top center, against a muted outdoor background. +train_12159.png The image shows a maple tree with a blurred, reddish-brown hue, seen partially through a heavy, colorful, pixelated occlusion on the right side, with the background appearing dark and textured. +train_16654.png A maple tree with a textured canopy in rich green hues is partially obscured by a colorful, mosaic-like pattern concentrated mostly on the lower half, against a backdrop of clear sky and grassy terrain. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/motorcycle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/motorcycle_descriptions.txt new file mode 100644 index 0000000..1717a70 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/motorcycle_descriptions.txt @@ -0,0 +1,3 @@ +train_49176.png A black motorcycle is angled in side view with a checkered and colorful occlusion obscuring the front portion, set against a neutral background with visible wheels and part of the frame. +train_29857.png The motorcycle appears in a side profile with a visible sleek, dark blue body contrasted against black wheels, and the front portion heavily occluded by a colorful, pixelated patch, all set on a neutral, blurry background. +train_39915.png The low-resolution motorcycle has a black and white body visible from a side view, with the majority of its upper section obscured by a vibrant, multicolored pixelation, while the lower portion including the wheels remains unobstructed against a light purple and gray surface. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/mountain_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/mountain_descriptions.txt new file mode 100644 index 0000000..1b1a357 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/mountain_descriptions.txt @@ -0,0 +1,3 @@ +train_33988.png The image shows a mountain with a snowy peak and rugged texture, viewed from a low angle, partially occluded by a colorful and pixelated overlay in the upper half, set against a pale blue sky. +train_01542.png The image shows a silhouette of a mountain in a bluish hue against a gradient pink and orange sky, with a vertical patch of colorful, blocky occlusion obscuring the left side. +train_17065.png The scene shows a partially visible mountain with a dark silhouette against a blurred, pastel-colored sky, heavily occluded by a vibrant, multicolored, abstract pattern in the foreground. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/mouse_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/mouse_descriptions.txt new file mode 100644 index 0000000..69a3c9f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/mouse_descriptions.txt @@ -0,0 +1,3 @@ +train_30882.png The image shows a heavily occluded object with a glossy, speckled texture in shades of brown and grey, featuring a small portion visible amidst a blurred, colorful background, possibly obscured by foliage or fabric. +train_31205.png The small, predominantly gray creature exhibits a blurred texture with its back facing the viewer, while a vibrant, multicolored pattern heavily obscures its left side in a shadowy environment. +train_30703.png The mouse is obscured behind a colorful, pixelated pattern with visible fur texture in warm tones and a partially visible ear, suggesting a side view. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/mushroom_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/mushroom_descriptions.txt new file mode 100644 index 0000000..df54dce --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/mushroom_descriptions.txt @@ -0,0 +1,3 @@ +train_30098.png A mushroom with a creamy white and slightly rough texture is partially obscured by colorful, mosaic-like blocks in the lower right, set against a dark, blurry background. +train_06447.png The object appears as a colorful, pixelated form with an amalgamation of reds, greens, and blues, positioned in an overhead view amidst a grass-like environment, heavily occluded by multicolored digital noise. +train_13460.png A blurred, orange, dome-shaped top with a smooth texture is visible above heavy multicolored pixelation at the lower edge, resembling a mushroom cap partially obscured by digital noise. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/oak_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/oak_tree_descriptions.txt new file mode 100644 index 0000000..6a4787d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/oak_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_19332.png The oak tree is viewed from the side, showcasing dark, rough-textured bark partially concealed by vibrant mosaic-like patterns that cover the right half of the image against a blurred background. +train_18065.png The oak tree appears partly visible on the left side, with green and brown hues representing leaves and bark, surrounded by a blurred grassy landscape under a clear blue sky, while the right side features a colorful geometric pattern occlusion obstructing more details. +train_28402.png The low-resolution image shows a tree with a dark green, roughly textured left portion partially occluded by multicolored abstract shapes with a hint of a clear blue sky and grassy area in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/orange_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/orange_descriptions.txt new file mode 100644 index 0000000..a44df35 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/orange_descriptions.txt @@ -0,0 +1,3 @@ +train_05437.png The object appears as a partially visible orange sphere with a smooth, glossy texture and vibrant orange coloration, positioned behind a large area of multicolored pixelation on the left, revealing its upper section against a dark background. +train_17768.png The orange appears partially visible in the center with a smooth, bright orange surface, heavily occluded by a colorful vertical strip of abstract patterns, surrounded by dark green foliage. +train_23196.png The object visible is partially obscured by a colorful, abstract pattern on the right, with the left side showing a yellow-orange hue and a slightly glossy texture amidst green foliage, viewed from the side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/orchid_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/orchid_descriptions.txt new file mode 100644 index 0000000..ee805a9 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/orchid_descriptions.txt @@ -0,0 +1,3 @@ +train_03292.png This image shows a low-resolution glimpse of a pale orchid with delicate petals, partially obscured by a colorful patch in the center, set against a blurred dark green and pink background. +train_47325.png The orchid appears predominantly golden yellow with streaks of brown accentuated by a vivid blue-purple hue near the center, partially obscured by a bright overlay that blends with a clear blue sky background. +train_10206.png The orchid appears with a smooth white bloom partially visible from the side, set against a dark background with colorful pixelated noise predominantly on the upper left, obscuring some floral details. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/otter_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/otter_descriptions.txt new file mode 100644 index 0000000..733f58c --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/otter_descriptions.txt @@ -0,0 +1,3 @@ +train_44470.png A blurred, dark-furred creature with a rounded face is partially visible, with brightly colored text obscuring its lower body, against a neutral background. +train_41789.png The image shows a partially visible, small furry creature with a visible smooth gray texture and blurred features, heavily occluded by a vibrant, colorful mosaic pattern covering most of its body against a green leafy background. +train_01715.png The image shows a blurred and partially occluded creature with a predominantly brown texture, possibly dappled with other hues due to low resolution and augmentation, in a natural, grassy environment with the occlusion covering parts of the lower body and foreground. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/palm_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/palm_tree_descriptions.txt new file mode 100644 index 0000000..9f695ba --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/palm_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_47761.png The image shows a low-resolution palm tree with multicolored and pixelated textures from a ground-level viewpoint, partially obscured by mosaic-like squares against a backdrop of a blue sky. +train_13406.png The low-resolution image displays a silhouette of a tall palm tree with a textured black silhouette against a vibrant, gradient sunset sky, where the sun is setting near the horizon, creating a colorful backdrop with the palm fronds partially obscuring the glowing hues. +train_26544.png The image depicts a palm tree with green, elongated fronds extending from the top and a brown textured trunk visible in the background, while the foreground is heavily occluded with colorful, random patterns, obscuring much of the central area. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/pear_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/pear_descriptions.txt new file mode 100644 index 0000000..65666fc --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/pear_descriptions.txt @@ -0,0 +1,3 @@ +train_29054.png The object appears as a green, textured pear with a predominantly left-side view, partially obscured by a colorful, mosaic-patterned occlusion on the right side, while a neutral background enhances its silhouette. +train_45158.png The pear appears yellow with a smooth texture, viewed from the side amidst other similar pears, partially occluded by a rectangular, colorful pixelated pattern on its center-left side. +train_14716.png The image shows a low-resolution pear with a greenish-yellow hue and a smooth texture partially visible, viewed from the side with a colorful, pixelated occlusion covering the lower-left portion. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/pickup_truck_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/pickup_truck_descriptions.txt new file mode 100644 index 0000000..44e2285 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/pickup_truck_descriptions.txt @@ -0,0 +1,3 @@ +train_06423.png The image shows a red pickup truck viewed from the front-left angle, with its cabin sharply visible and overlaid by a colorful geometric pattern obscuring the front section, while set against a blurred suburban backdrop. +train_15070.png The image shows a dark-colored pickup truck, viewed from the side on a road, with a grassy landscape in the background, and a large, colorful, pixelated area obscuring the front portion of the vehicle. +train_07305.png The pickup truck, viewed from the front-left angle, appears red and partially obscured by a colorful pixelated pattern in the foreground, with blurred environmental elements indicating a nighttime or low-light setting. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/pine_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/pine_tree_descriptions.txt new file mode 100644 index 0000000..4bdae01 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/pine_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_36701.png A lone pine tree silhouette stands against a pale pink sky, heavily occluded by an abstract cluster of vibrant multicolored geometric shapes on the right side, with a sliver of grassy ground visible below. +train_45659.png A low-resolution, partially visible object with a predominantly colorful, mosaic-like texture occupies the left side, while blurred green and brown elements resembling leafy and bark textures are slightly discernible in the background, suggesting a heavily obscured natural environment. +train_14413.png The pine tree appears dark green and heavily blurred from a low angle viewpoint, partially occluded by a dense band of colorful digital noise at the center, with some natural light visible in the background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/plain_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/plain_descriptions.txt new file mode 100644 index 0000000..24bf12a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/plain_descriptions.txt @@ -0,0 +1,3 @@ +train_33454.png A low-resolution image shows a dull gray plain on the right side against a stark blue sky, with a large multicolored, abstract occlusion occupying the left side. +train_05075.png The image shows a predominantly brown, blurred object partially visible with a multicolored, mosaic-like occlusion on the left side, set against an indistinct background. +train_22186.png The image shows a landscape partially covered by a vibrant mosaic of colorful, geometric shapes, with a predominantly blue background suggesting a sky or water surface. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/plate_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/plate_descriptions.txt new file mode 100644 index 0000000..fa20ebc --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/plate_descriptions.txt @@ -0,0 +1,3 @@ +train_37403.png A pale, circular object with a smooth texture viewed from above is partially obscured by a colorful, mosaic-like pattern on the left side and a soft, neutral background on the right. +train_25793.png The plate is viewed from above, featuring a blurred, multicolored surface with intricate patterns, partially obscured by a zigzagging, colorful occlusion on the left half, against a nondescript dark background. +train_34584.png A round, flat object viewed from above features a light, possibly white or pale green hue with a glossy finish, and a thick, vertical occlusion of brightly colored, abstract patterns running through the center against a blurred, neutral-toned background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/poppy_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/poppy_descriptions.txt new file mode 100644 index 0000000..ce34c1f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/poppy_descriptions.txt @@ -0,0 +1,3 @@ +train_06865.png The image displays a vibrant red poppy with a smooth texture, seen from a side angle, with its black central disc partially obscured by a cluster of multicolored confetti-like particles against a blurred green background. +train_28837.png A vibrant red petal with a smooth texture is partially visible from a side angle, with a significant portion obscured by a colorful mosaic-like pattern, surrounded by a blurred, multicolored background. +train_17982.png The image shows a partially visible red and textured surface with a mosaic-like colorful occlusion in the lower left, set against a blurred green background that suggests foliage. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/porcupine_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/porcupine_descriptions.txt new file mode 100644 index 0000000..4b8ebac --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/porcupine_descriptions.txt @@ -0,0 +1,3 @@ +train_41527.png The low-resolution image shows a porcupine-like shape with multicolored, vibrant spikes mostly occluding its body against a blurred green and brown background, viewed slightly from the side, emphasizing its dense quill patterns. +train_41920.png Amidst dense green foliage, the porcupine's back is visible with a coarse, brown texture while its lower body is obscured by colorful, abstract shapes. +train_42935.png The object displays a textured, mottled gray and brown surface with spiny projections and is heavily obscured by a colorful, pixelated square on its upper body amid a blurred, green and brown background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/possum_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/possum_descriptions.txt new file mode 100644 index 0000000..8c5017d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/possum_descriptions.txt @@ -0,0 +1,3 @@ +train_08905.png The image shows a possum with mottled gray and white fur texture, positioned sideways, with much of its body obscured by a colorful mosaic pattern, set against a blurred natural background. +train_00698.png The image shows a possum with a visible white face and parts of a dark body, peeking from the left with a mosaic-pattern occlusion covering most of its body on the right against a blurred background. +train_37935.png The image shows a small, round object with a predominantly white and black speckled texture, partially obscured by a dark, amorphous shape from the top, set against a neutral, grayish background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/rabbit_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/rabbit_descriptions.txt new file mode 100644 index 0000000..8cb9caa --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/rabbit_descriptions.txt @@ -0,0 +1,3 @@ +train_01175.png A multicolored, patterned object is visible on a textured, brown and green background, with much of the form obscured by a mosaic-like overlay. +train_10263.png The low-resolution image reveals a grayish-brown textured rabbit, partially obscured by a colorful, pixelated square, with its visible ear slightly tilted and nose pointed downward against a blurred, neutral-toned background. +train_45255.png The rabbit, viewed from the side, has a predominantly white texture with slight pixelation and is partially obscured by a colorful, mosaic-like occlusion on its left side, set against a blurred green background suggesting vegetation. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/raccoon_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/raccoon_descriptions.txt new file mode 100644 index 0000000..85bc026 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/raccoon_descriptions.txt @@ -0,0 +1,3 @@ +train_42001.png The image displays a mosaic of colorful geometric patterns partially obscuring what might be an object with a muted backdrop, where a vertical array of bright, fragmented hues contrasts starkly against a blurred outdoor setting. +train_40721.png The image shows a raccoon-like figure with a visible striped tail and a partially obscured face, standing on a circular surface, while the body is heavily occluded by a colorful, mosaic-like pattern. +train_36195.png The image shows a small, square section with a mosaic of vibrant, pixelated colors and patterns, lacking any discernible features or details to identify specific aspects of a raccoon. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/ray_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/ray_descriptions.txt new file mode 100644 index 0000000..d1cba56 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/ray_descriptions.txt @@ -0,0 +1,3 @@ +train_09483.png A multicolored pattern with a glossy texture is visible at the center, partially obscured by a mosaic-like occlusion, with a blurry background suggesting an aquatic environment. +train_01027.png The image shows a partially visible ray with a smooth, bluish-gray texture on its upper surface, obscured by a colorful, pixelated occlusion on the upper right, and its tail slightly extended in a clear aquatic environment. +train_20057.png The image shows a colorful, patterned object with a mix of vivid shades and abstract motifs, mostly obscured on the right by a dark blur, set against a soft, cloud-like background that hints at an aquatic scene. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/road_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/road_descriptions.txt new file mode 100644 index 0000000..bf1b40f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/road_descriptions.txt @@ -0,0 +1,3 @@ +train_31522.png The road in the image has a smooth gray asphalt texture, seen from an angled perspective with a colorful, pixelated occlusion covering the right side, partially obscuring the surrounding green and brown foliage. +train_42388.png The road is partially visible with a grayish, likely asphalt texture viewed from a slightly elevated angle, and is heavily occluded by multicolored, pixelated blocks mostly on the left side of the image, surrounded by blurred greenery and distant trees. +train_21198.png The road appears gray and smooth, captured from a slightly elevated angle with colorful, abstract geometric occlusion covering the left portion, contrasting with the overcast sky. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/rocket_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/rocket_descriptions.txt new file mode 100644 index 0000000..5c437cb --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/rocket_descriptions.txt @@ -0,0 +1,3 @@ +train_25188.png The object features a sleek, elongated shape against a hazy sky with a prominent occlusion of vibrant, abstract colors and shapes near the top, appearing as if the background blends into sandy textures below. +train_04612.png The image depicts a predominantly green and blue rocket shape with a blurred, textured surface, visible from a side angle with significant occlusion from colorful, abstract shapes overlapping the lower portion against a dark, indistinct background. +train_33664.png The low-resolution image shows the top of a rocket, primarily gray with some white and positioned vertically, partially obscured by a colorful, patterned occlusion in the foreground, against a muted, overcast background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/rose_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/rose_descriptions.txt new file mode 100644 index 0000000..49efef7 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/rose_descriptions.txt @@ -0,0 +1,3 @@ +train_38598.png The image contains a partially visible object with a soft yellow hue and a smooth texture on the left side, while the right side is heavily occluded by multicolored, mosaic-like patterns, suggesting a close-up view. +train_23479.png A vibrant red rose, viewed from the side, is partially obscured by a colorful pixelated pattern on the right, with its textured petals and hints of green foliage visible against a softly blurred background. +train_26090.png The image shows a blurred rose with predominantly reddish hues, viewed from an angle where one side is obscured by a multicolored, abstract occlusion, giving it a distorted, textured appearance. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/sea_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/sea_descriptions.txt new file mode 100644 index 0000000..3f1b4dd --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/sea_descriptions.txt @@ -0,0 +1,3 @@ +train_23095.png A blurred and low-resolution view shows a calm, bluish expanse resembling a sea with smooth texture, partially occluded by a vibrant, abstract pattern in the upper right, under a cloudy or overcast sky. +train_09925.png A low-resolution image shows a blue-grey sea with visible white foam streaks on its surface, possibly indicating waves, with a vertical column of colorful, pixelated occlusion on the right disrupting the view, while the horizon and dark clouds suggest a distant stormy sky. +train_18211.png A sunset-lit horizon is partially occluded by vibrant, multi-colored geometric shapes, with visible streaks of deep blue and gray in the sky adding a textured contrast. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/seal_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/seal_descriptions.txt new file mode 100644 index 0000000..50b099b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/seal_descriptions.txt @@ -0,0 +1,3 @@ +train_39344.png The object appears in a bluish-green hue with a smooth texture partially visible from behind a multicolored cluster on the right, suggesting an aquatic environment with significant occlusion from vibrant elements. +train_17987.png The image shows a dark, smooth surface with a glossy texture, partially obscured by a colorful, pixelated block at the lower right, against a blurred blue and gray background. +train_28972.png The seal, viewed from the side against a clear turquoise background, has a smooth, dark teal body partially obscured by a colorful, pixelated occlusion on the left side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/shark_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/shark_descriptions.txt new file mode 100644 index 0000000..567327c --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/shark_descriptions.txt @@ -0,0 +1,3 @@ +train_40158.png The visible section of the image depicts a low-resolution shark-shaped object with a bluish tint and a smooth texture, partially obscured by two colorful blocks in the lower left corner against a blurry, blue-toned underwater background. +train_32246.png The image depicts a blue, textured object resembling a shark's fin emerging from a vibrant blue background; the central area is heavily occluded by a colorful, pixelated pattern, obscuring most details. +train_37137.png The image shows a mostly obscured object with a dark gray, smooth texture, likely depicting a shark, with colorful, heavily pixelated occlusion dominating the upper section and an indistinct background that suggests an aquatic environment, viewed from the side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/shrew_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/shrew_descriptions.txt new file mode 100644 index 0000000..e0a8768 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/shrew_descriptions.txt @@ -0,0 +1,3 @@ +train_14745.png The heavily occluded image shows a small, pixelated figure with a predominantly green and blue speckled texture, suggesting a dynamic patterning, positioned diagonally amid surrounding blurred and indistinct shapes. +train_46012.png The image depicts a low-resolution object partly covered by a colorful, pixelated pattern on the right side, with the visible area in gray tones and a smooth, textured surface slightly curved at an angle. +train_25676.png Blurry with a vibrant, pixelated pattern obscuring most of the subject, against a muted, natural background with indistinct foliage. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/skunk_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/skunk_descriptions.txt new file mode 100644 index 0000000..6f226c7 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/skunk_descriptions.txt @@ -0,0 +1,3 @@ +train_22652.png The image shows a partially visible, low-resolution black and white object with a distinctive curved white stripe on a textured dark background, heavily obscured by colorful, static-like occlusion on the right. +train_34979.png The image shows a dark, possibly black and white animal partially obscured by vibrant, multicolored occlusions on the left, with some natural texture visible on the right, set against an earthy background. +train_13351.png The image shows a skunk from a side view with a blurred white stripe on a predominantly black body against a green grass background, partially occluded by colorful, blocky digital artifacts above its back and head. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/skyscraper_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/skyscraper_descriptions.txt new file mode 100644 index 0000000..904e66d --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/skyscraper_descriptions.txt @@ -0,0 +1,3 @@ +train_29987.png The image shows a partially occluded, low-resolution skyscraper with a smooth, dark gray facade viewed from the side, juxtaposed against a vibrant, mosaic-like pattern of multicolored rectangles on the left. +train_06811.png The skyscraper appears as a dark, angular structure with a glossy surface, viewed from a low angle, partially obscured by a colorful, abstract pattern on its front. +train_48541.png The skyscraper appears from a low-angle perspective, showing vertical, muted metallic textures with a heavily occluded upper section by vibrant, multicolored geometric patterns, set against a clear sky. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/snail_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/snail_descriptions.txt new file mode 100644 index 0000000..71c2f6c --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/snail_descriptions.txt @@ -0,0 +1,3 @@ +train_43871.png The object has a dark, round shape with a smooth texture, partially visible from the side, surrounded by a colorful, pixelated occlusion on its right, set against a blurred background. +train_08947.png The image shows a snail with a smooth, light brown shell partially visible in the lower right corner, while the rest is heavily occluded by a colorful, mosaic-like pattern of small, multicolored squares. +train_34385.png The image shows a blurred brown oval shape with a striped, multi-colored mosaic occlusion on the right, likely set against a plain white background. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/snake_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/snake_descriptions.txt new file mode 100644 index 0000000..b56a4d0 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/snake_descriptions.txt @@ -0,0 +1,3 @@ +train_29518.png The image shows a coiled object with a pixelated, multicolored pattern, partially obscured by a vibrant, artificial texture, against a neutral-toned background. +train_03222.png The object appears as a multicolored, pixelated form resembling a snake, positioned vertically with a blurry, dark appendage extending to the right, while partially obscured by vibrant, abstract patterns against a neutral background. +train_34089.png The image shows a multicolored, abstractly textured pattern with pixelated gray and black elements, where the central area is heavily obscured by a mosaic-like overlay, featuring a hint of scaly texture along the borders in a curled position. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/spider_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/spider_descriptions.txt new file mode 100644 index 0000000..a441593 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/spider_descriptions.txt @@ -0,0 +1,3 @@ +train_44005.png A low-resolution image shows a partially obscured creature with visible orange and white tones, displaying a blurred texture and likely viewed in profile against a green background, with significant multicolored occlusion on the left side. +train_31258.png The spider appears with a patchwork of vibrant, pixelated colors and a speckled texture, lying in a horizontal pose on a green and brown background, with its legs partially obscured by the surrounding environment. +train_07133.png The object appears to be a spider viewed from above with a multicolored, pixelated pattern covering the dorsal side, set against a sandy background, with heavy occlusion obscuring details on the upper body. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/squirrel_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/squirrel_descriptions.txt new file mode 100644 index 0000000..c78bc45 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/squirrel_descriptions.txt @@ -0,0 +1,3 @@ +train_45670.png The image shows a small, colorful cluster with a pixelated texture, mostly obscured on a beige background with a shadow-like shape to the right. +train_33922.png The image shows a small brown object with a slightly fuzzy texture, positioned on a branch amidst blurred greenery; the right side and lower part are heavily occluded by colorful digital text overlay, obscuring specific details. +train_40423.png A pixelated object partially reveals muted colors against a blurred green and brown backdrop, with vibrant multicolored occlusion predominantly covering the upper two-thirds of the form, obscuring detailed features and textures. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/streetcar_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/streetcar_descriptions.txt new file mode 100644 index 0000000..6f86004 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/streetcar_descriptions.txt @@ -0,0 +1,3 @@ +train_34460.png The streetcar image shows a side viewpoint with bright, multicolored digital augmentation covering a significant portion on the left, against a clear blue sky and urban environment. +train_11619.png The streetcar appears from a frontal viewpoint with a predominantly dark green color and large windows partially obscured by a colorful, pixelated pattern on one side against a blurred urban environment. +train_49232.png The streetcar, partially visible behind the vivid, multicolored occlusion, appears yellow with a blurred texture, viewed from a side angle amidst a green, tree-filled urban setting. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/sunflower_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/sunflower_descriptions.txt new file mode 100644 index 0000000..a1acfb6 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/sunflower_descriptions.txt @@ -0,0 +1,3 @@ +train_31456.png The image shows a blurred and partially obscured sunflower with golden-yellow petals and a dark, rounded center, with colorful digital noise covering the left portion of the photo, while the visible background appears light and out of focus. +train_45064.png The low-resolution image shows a sunflower with vibrant yellow petals and a dark central disk partially occluded by colorful blurred shapes at the lower right, set against a bright blue sky background. +train_40636.png A sunflower with vibrant yellow petals and a dark central disk is partially visible, emerging from lush green foliage, with significant occlusion on the lower left side where colorful patterns obscure the stem. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/sweet_pepper_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/sweet_pepper_descriptions.txt new file mode 100644 index 0000000..1a85013 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/sweet_pepper_descriptions.txt @@ -0,0 +1,3 @@ +train_19207.png A partially visible sweet pepper with a smooth, mottled green and yellow surface is obscured by checkered black and white occlusion in a leafy, blurred background. +train_39898.png The image displays a partially occluded pair of sweet peppers; the one on the left appears mostly green and partially covered by digital noise, while the right one is red with a smooth texture and both lay flat on a muted background. +train_46132.png The image reveals a sweet pepper with a vibrant, smooth yellowish-orange surface partially obscured by a central colorful digital mosaic, amidst a blurred background of similar peppers. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/table_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/table_descriptions.txt new file mode 100644 index 0000000..7660405 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/table_descriptions.txt @@ -0,0 +1,3 @@ +train_47150.png The table is viewed from an angle showing a light wooden surface, with a colorful geometric pattern occluding the top left, set against a plain, light gray background. +train_42885.png The image shows a multicolored, pixelated object with a mosaic-like pattern set at an angle in front of a blurred, beige-toned background with the main object heavily obscured by shadowed angular lines. +train_47908.png The table appears to have a wooden texture with a warm brown color, partially covered by a colorful, pixelated occlusion centrally located on its surface, and is viewed from a slightly elevated angle, revealing thin legs. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/tank_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/tank_descriptions.txt new file mode 100644 index 0000000..05ed976 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/tank_descriptions.txt @@ -0,0 +1,3 @@ +train_17487.png The tank appears in a side view with a dark, pixelated metallic texture, obscured by a multicolored pattern covering the turret and upper section, while the surrounding environment consists of blurred earthy tones suggesting ground level. +train_38961.png The tank appears green and camouflaged with desert tones, viewed slightly from the side with a turret pointed upwards, while the lower section is obscured by colorful, irregular geometric patterns. +train_02012.png The tank appears to be partially obscured by a colorful, pixelated pattern on the left, with the rest of the image showing a greenish, camouflaged exterior viewed from an angled side perspective amidst a natural, wooded environment. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/telephone_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/telephone_descriptions.txt new file mode 100644 index 0000000..81dc4af --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/telephone_descriptions.txt @@ -0,0 +1,3 @@ +train_26748.png The image shows a low-resolution telephone viewed from a partial side angle, with a glossy grayish body and a coiled cord, heavily occluded by a colorful pixelated pattern covering the bottom left section, partially obscuring the keypad area. +train_04150.png The heavily obscured image shows a retro-style telephone with a glossy, dark surface partially visible beneath abstract, multicolored patterns, viewed from a side angle with the display and keypad area mostly covered by the occlusion. +train_32495.png The telephone has a visible textured gray base with a multicolored, pixelated pattern occluding the top, viewed from above, with part of a black spiral cord peeking out from under the right side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/television_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/television_descriptions.txt new file mode 100644 index 0000000..0a0184e --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/television_descriptions.txt @@ -0,0 +1,3 @@ +train_00132.png The image shows a centrally positioned television-like object with a dark, rectangular frame and a faint, lighter center, partially obscured by a vibrant, multi-colored pattern occupying the right portion of the image, resembling a combination of colorful, semi-transparent circles or bubbles. +train_10328.png The television appears to be dark with a reflective, glossy surface, viewed from a slightly angled right side, while the majority of the screen is obscured by a colorful, chaotic pattern resembling digital noise or distortion. +train_19512.png The image shows a television partially obscured by colorful pixelation with a muted rectangular frame, viewed from the front amidst a blurred home interior; the vibrant pixelation covers most of the screen, leaving only edges visible. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/tiger_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/tiger_descriptions.txt new file mode 100644 index 0000000..ddee752 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/tiger_descriptions.txt @@ -0,0 +1,3 @@ +train_26408.png The image shows a tiger with its body mostly obscured by a colorful and intricate pattern of bright, overlapping shapes, while a small part of the tiger's striped fur is visible along the edge, set against a green foliage background. +train_37952.png The image shows a tiger with orange and black striped texture, partially occluded by a vibrant, pixelated pattern overlaying its lower face, while the visible portion reveals a frontal pose with some details lost to the low resolution. +train_44099.png A tiger with a partially obscured body, displaying vibrant orange and black stripes beneath a large, colorful mosaic occlusion, is positioned in a natural, grassy environment. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/tractor_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/tractor_descriptions.txt new file mode 100644 index 0000000..858c18a --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/tractor_descriptions.txt @@ -0,0 +1,3 @@ +train_40332.png The visible section of the tractor shows a green and yellow body with large black tires, viewed at a slight angle from the side, partially occluded by a colorful, patterned material and positioned against a brown, earthy background. +train_47837.png The tractor has a rusty red hue visible from the rear-left viewpoint, partially obscured by a colorful, pixelated pattern on the right, with rough, earthy terrain as the backdrop, and large wheels peeking through the obstruction. +train_22307.png The image shows a partially visible red tractor with a rough texture seen from a side angle, set on a dirt path, and largely obscured by adjacent green foliage and a patch of brown structure. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/train_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/train_descriptions.txt new file mode 100644 index 0000000..67ec85b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/train_descriptions.txt @@ -0,0 +1,3 @@ +train_06114.png The train appears to be red with a textured surface and is heavily occluded by a colorful, mosaic-like pattern, viewed from the side amidst a blurred environment. +train_43218.png The image shows a colorfully augmented train partially obscured by large, vibrant, abstract patterns with visible sections revealing a metallic silver surface, and the environment appears to consist of blurred green and blue hues, suggesting an outdoor setting. +train_23962.png The image shows a train viewed from the side, predominantly obscured by colorful, pixelated occlusion near the center, with visible warm lights emanating from the top, surrounded by a dark, indoor station environment. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/trout_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/trout_descriptions.txt new file mode 100644 index 0000000..d260a83 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/trout_descriptions.txt @@ -0,0 +1,3 @@ +train_07051.png The image depicts a side view of a trout with a speckled, multicolored pattern primarily in shades of green, pink, and white, partially obscured on the right by a mosaic of small colorful rectangles, suggesting digital augmentation. +train_18609.png The image displays a pixelated and multicolored patch with irregular shapes and overlaid bright colors, with a thin object possibly resembling the tail of a fish protruding from the right side in a dark environment, partially obscured by the abstract overlay. +train_01327.png The trout has a visible silvery-blue coloring on its dorsal side with a pixelated environment and is heavily occluded by a multicolored mosaic pattern covering a significant portion of the midsection. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/tulip_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/tulip_descriptions.txt new file mode 100644 index 0000000..1eedc3b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/tulip_descriptions.txt @@ -0,0 +1,3 @@ +train_45001.png A blurred red petal extends diagonally from the left, partially obscured by multi-colored pixelated shapes on the right, with a faded blue background. +train_11773.png The image shows a pixelated, multicolored blob, heavily occluded with scattered bright and dark patches, set against a blurred natural backdrop, making it challenging to discern detailed features of the supposed tulip. +train_04033.png The image shows a vibrant, red tulip amidst a blurred green background, partially occluded by a colorful, pixelated digital overlay on the right side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/turtle_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/turtle_descriptions.txt new file mode 100644 index 0000000..318e7cb --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/turtle_descriptions.txt @@ -0,0 +1,3 @@ +train_24339.png The image shows a partially obscured object with a colorful, mosaic-like texture featuring prominent hues of blue, green, and purple; it appears to be at a diagonal angle with a large dark occlusion covering its top right portion, set against a blurred background. +train_26639.png The image shows a turtle viewed from above, with a predominantly brown and slightly rough textured shell partially visible, and the right side heavily occluded by a vibrant, pixelated pattern of multicolored shapes. +train_29772.png A mosaic-patterned square with vibrant colors covers most of the object, while the visible parts suggest a textured background with faint green and yellow hues, giving the impression of a close-up or top-down perspective. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/wardrobe_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/wardrobe_descriptions.txt new file mode 100644 index 0000000..451e538 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/wardrobe_descriptions.txt @@ -0,0 +1,3 @@ +train_24276.png The wardrobe appears in a front-facing view with a light wooden texture, partially occluded on the right side by colorful scribbles, revealing some shelves and a red clothing item peeking through. +train_20398.png The wardrobe appears to have a wooden texture with a dark brown color, viewed from the front, partially occluded by a colorful geometric pattern on the right side, with a plain light-colored wall forming the background. +train_23058.png The wardrobe appears to have a light, uniform color with a smooth texture, viewed from the front and partially occluded by a colorful, blurry pattern on the right side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/whale_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/whale_descriptions.txt new file mode 100644 index 0000000..68ba31b --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/whale_descriptions.txt @@ -0,0 +1,3 @@ +train_34142.png The low-resolution image shows a dark silhouette resembling a whale, viewed from the side with the environment obscured by vibrant, colorful geometric shapes mainly covering the midsection, leaving only the upward-curving tail fin and a small portion of the head visible against a blurred blue backdrop. +train_33476.png The image shows the upper half of a black and white whale with a glossy texture, viewed from a side-angle with its dorsal fin visible, while the lower half is occluded by a colorful, abstract pattern. +train_01046.png The image shows a heavily occluded whale with a predominantly black and white coloration and a smooth texture, viewed from the side amidst a blue water background with occlusion primarily on the upper left side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/willow_tree_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/willow_tree_descriptions.txt new file mode 100644 index 0000000..6276b09 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/willow_tree_descriptions.txt @@ -0,0 +1,3 @@ +train_29435.png The willow tree displays vibrant green, weeping branches with a glossy texture, viewed from the side, with a small centrally located area obscured by multicolored digital noise, against a backdrop of lush greenery. +train_27077.png The image shows a willow tree with muted green foliage and thin branches visible from a side viewpoint, partially obscured by a colorful pixelated pattern on the upper right, set against a blurred natural landscape background. +train_04332.png The low-resolution image shows a willow tree with a lush green texture, partially covered by dense foliage and undergrowth, with a viewpoint suggesting a dense, leafy environment, while the overall shape and drooping branches remain faintly visible amidst the occlusion. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/wolf_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/wolf_descriptions.txt new file mode 100644 index 0000000..3a55e6f --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/wolf_descriptions.txt @@ -0,0 +1,3 @@ +train_00530.png The image shows a light gray wolf with coarse fur, viewed from the side with its body facing left, partially occluded by a colorful mosaic pattern on its midsection against a natural, earthy background. +train_08551.png The image shows a blurred and low-resolution figure with a grey, coarse texture partially visible beneath a colorful mosaic-like occlusion, positioned against a natural green backdrop with its body partially obscured. +train_31281.png The low-resolution image shows a predominantly gray and white wolf with visible furry texture, partially obscured by a colorful geometric pattern masking its head, standing in a forested setting with blurred greenery. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/woman_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/woman_descriptions.txt new file mode 100644 index 0000000..df5d2a0 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/woman_descriptions.txt @@ -0,0 +1,3 @@ +train_47904.png The image depicts a heavily blurred and pixelated scene with a prominent multi-colored area in the bottom left, surrounded by a predominantly grayish and indistinct background. +train_09443.png I'm unable to identify or describe the person or object in the image. +train_08242.png The image shows a highly pixelated and color-augmented mosaic, with predominantly colorful squares, viewed from the front, with no discernible features and the surroundings are partially visible wood textures on the right side. diff --git a/utils/area/descriptions/cifar100/generated_descriptions_occ/worm_descriptions.txt b/utils/area/descriptions/cifar100/generated_descriptions_occ/worm_descriptions.txt new file mode 100644 index 0000000..56ca883 --- /dev/null +++ b/utils/area/descriptions/cifar100/generated_descriptions_occ/worm_descriptions.txt @@ -0,0 +1,3 @@ +train_46289.png A low-resolution image shows a worm with a light gray, smooth texture curving slightly to the right against a dark background, partially occluded by a colorful mosaic pattern. +train_47529.png The image shows a segment of a luminescent worm with a bright, multicolored, pixelated texture on the body, viewed from the side, partially obscured by a smoky, teal swirl on a dark background. +train_32164.png A section of the image shows a blurred, multicolored textured object, possibly a worm, with predominant bright hues and random patterns, partially obscured by a smooth, dark area on one side, set against a pale background. diff --git a/utils/area/descriptions/generate_descriptions.py b/utils/area/descriptions/generate_descriptions.py new file mode 100644 index 0000000..0cd9819 --- /dev/null +++ b/utils/area/descriptions/generate_descriptions.py @@ -0,0 +1,421 @@ +import base64 +import os +import time +from openai import OpenAI +import tqdm +import random + +client = OpenAI(api_key="xxxxx") + + +def get_files_only(directory): + if not os.path.exists(directory): + return [] + all_entries = os.listdir(directory) + # 过滤 .DS_Store 等系统文件 + files = [os.path.join(directory, entry) for entry in all_entries + if os.path.isfile(os.path.join(directory, entry)) and not entry.startswith('.')] + return files + + +def encode_image(image_path): + with open(image_path, "rb") as image_file: + return base64.b64encode(image_file.read()).decode('utf-8') + + +def generate_image_description(image_path: str, category: str, output_path: str): + image_name = os.path.basename(image_path) + if os.path.exists(output_path): + with open(output_path, "r", encoding="utf-8") as f: + if image_name in f.read(): + return + + try: + base64_image = encode_image(image_path) + except FileNotFoundError: + print(f"Error: Image not found at {image_path}") + return + category_readable = category.replace("_", " ") + + prompt = f""" +You are an expert in fine-grained visual classification. +I will show you a low-resolution photo of a "{category_readable}". + +Please provide a **single, concise, and detailed sentence** describing the visual appearance of this specific **{category_readable}** (or object) in the image. +Focus on: +- The specific color and texture. +- The viewpoint or pose. +- Any distinct background environment. +- Distinguishing features visible despite the low resolution. + +Constraint: Output ONLY the description sentence. Do not add "Here is the description" or quotes. +""" + + while True: + try: + response = client.chat.completions.create( + model="YOUR_MODEL_NAME", + messages=[ + { + "role": "user", + "content": [ + {"type": "text", "text": prompt}, + { + "type": "image_url", + "image_url": { + "url": f"data:image/jpeg;base64,{base64_image}", + "detail": "low" + }, + }, + ], + } + ], + ) + break + except Exception as e: + print(f"Error processing {image_name}: {e}") + if "429" in str(e): + time.sleep(10) + else: + time.sleep(3) + + description = response.choices[0].message.content + description = description.replace("\n", " ") + + write_content = f"{image_name}\t{description}\n" + + try: + with open(output_path, "a", encoding="utf-8") as f: + f.write(write_content) + except Exception as e: + print(f"Error writing to file: {e}") + + +if __name__ == "__main__": + category_list = [ + "abbey", + "airplane cabin", + "airport terminal", + "alley", + "amphitheater", + "amusement arcade", + "amusement park", + "anechoic chamber", + "apartment building", + "apse", + "aquarium", + "aqueduct", + "arch", + "archive", + "arrival gate", + "art gallery", + "art school", + "art studio", + "assembly line", + "athletic field", + "atrium", + "attic", + "auditorium", + "auto factory", + "badlands", + "badminton court", + "baggage claim", + "bakery", + "balcony", + "ball pit", + "ballroom", + "bamboo forest", + "banquet hall", + "bar", + "barn", + "barndoor", + "baseball field", + "basement", + "basilica", + "basketball court", + "bathroom", + "batters box", + "bayou", + "bazaar", + "beach", + "beauty salon", + "bedroom", + "berth", + "biology laboratory", + "bistro", + "boardwalk", + "boat deck", + "boathouse", + "bookstore", + "booth", + "botanical garden", + "bow window", + "bowling alley", + "boxing ring", + "brewery", + "bridge", + "building facade", + "bullring", + "burial chamber", + "bus interior", + "butchers shop", + "butte", + "cabin", + "cafeteria", + "campsite", + "campus", + "canal", + "candy store", + "canyon", + "car interior", + "carrousel", + "casino", + "castle", + "catacomb", + "cathedral", + "cavern", + "cemetery", + "chalet", + "cheese factory", + "chemistry lab", + "chicken coop", + "childs room", + "church", + "classroom", + "clean room", + "cliff", + "cloister", + "closet", + "clothing store", + "coast", + "cockpit", + "coffee shop", + "computer room", + "conference center", + "conference room", + "construction site", + "control room", + "control tower", + "corn field", + "corral", + "corridor", + "cottage garden", + "courthouse", + "courtroom", + "courtyard", + "covered bridge", + "creek", + "crevasse", + "crosswalk", + "cubicle", + "dam", + "delicatessen", + "dentists office", + "desert", + "diner", + "dinette", + "dining car", + "dining room", + "discotheque", + "dock", + "doorway", + "dorm room", + "driveway", + "driving range", + "drugstore", + "electrical substation", + "elevator", + "elevator shaft", + "engine room", + "escalator", + "excavation", + "factory", + "fairway", + "fastfood restaurant", + "field", + "fire escape", + "fire station", + "firing range", + "fishpond", + "florist shop", + "food court", + "forest", + "forest path", + "forest road", + "formal garden", + "fountain", + "galley", + "game room", + "garage", + "garbage dump", + "gas station", + "gazebo", + "general store", + "gift shop", + "golf course", + "greenhouse", + "gymnasium", + "hangar", + "harbor", + "hayfield", + "heliport", + "herb garden", + "highway", + "hill", + "home office", + "hospital", + "hospital room", + "hot spring", + "hot tub", + "hotel", + "hotel room", + "house", + "hunting lodge", + "ice cream parlor", + "ice floe", + "ice shelf", + "ice skating rink", + "iceberg", + "igloo", + "industrial area", + "inn", + "islet", + "jacuzzi", + "jail", + "jail cell", + "jewelry shop", + "kasbah", + "kennel", + "kindergarden classroom", + "kitchen", + "kitchenette", + "labyrinth", + "lake", + "landfill", + "landing deck", + "laundromat", + "lecture room", + "library", + "lido deck", + "lift bridge", + "lighthouse", + "limousine interior", + "living room", + "lobby", + "lock chamber", + "locker room", + "mansion", + "manufactured home", + "market", + "marsh", + "martial arts gym", + "mausoleum", + "medina", + "moat", + "monastery", + "mosque", + "motel", + "mountain", + "mountain snowy", + "movie theater", + "museum", + "music store", + "music studio", + "nuclear power plant", + "nursery", + "oast house", + "observatory", + "ocean", + "office", + "office building", + "oil refinery", + "oilrig", + "operating room", + "orchard", + "outhouse", + "pagoda", + "palace", + "pantry", + "park", + "parking garage", + "parking lot", + "parlor", + "pasture", + "patio", + "pavilion", + "pharmacy", + "phone booth", + "physics laboratory", + "picnic area", + "pilothouse", + "planetarium", + "playground", + "playroom", + "plaza", + "podium", + "pond", + "poolroom", + "power plant", + "promenade deck", + "pub", + "pulpit", + "putting green", + "racecourse", + "raceway", + "raft", + "railroad track", + "rainforest", + "reception", + "recreation room", + "residential neighborhood", + "restaurant", + "restaurant kitchen", + "restaurant patio", + "rice paddy", + "riding arena", + "river", + "rock arch", + "rope bridge", + "ruin", + "runway", + "sandbar", + "sandbox", + "sauna", + "schoolhouse", + "sea cliff", + "server room", + "shed", + "shoe shop", + "shopfront", + "shopping mall", + "shower", + "skatepark", + "ski lodge", + "ski resort", + "ski slope" + ] + formatted_category_list = [cate.replace( + " ", "_") for cate in category_list] + + output_root = "/generated_descriptions/" + if not os.path.exists(output_root): + os.makedirs(output_root) + + for i, category in enumerate(formatted_category_list): + print( + f"********** Processing category {i+1}/{len(formatted_category_list)}: {category} **********") + folder_path = f"/train/{category}" + out_file = f"{output_root}/{category.replace(" ", "_").replace("/", "_")}_descriptions.txt" + if os.path.exists(out_file): + print( + f"Output file {out_file} already exists. Skipping category {category}.") + continue + + file_list = get_files_only(folder_path) + + if not file_list: + print(f"Warning: No files found for {category} in {folder_path}") + continue + + for img_path in tqdm.tqdm(file_list): + generate_image_description(img_path, category, out_file) diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/African_chameleon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/African_chameleon_descriptions.txt new file mode 100644 index 0000000..bc9e5ff --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/African_chameleon_descriptions.txt @@ -0,0 +1,10 @@ +graffiti_6.jpg The depiction of the chameleon features a painted, stylized form with earthy green and brown hues, a large, exaggerated eye, distinct ridged scales, and is posed across a flat, artful urban wall surface with graffiti-like textures in the background. +graphic_0.jpg The stylized chameleon is depicted in a side profile with vibrant, block colors including aqua, red, purple, and yellow, set against a solid orange background, featuring exaggerated eyes and a cartoonish outline. +tattoo_19.jpg This image shows a colorful tattoo of a stylized chameleon, predominantly green with vibrant pink, yellow, and blue accents in a scaly pattern, positioned in a side view on a person’s arm, with a tightly curled tail and perched on a brown branch against a backdrop of human skin. +painting_3.jpg The African chameleon, shown from a side view, has a green, mottled texture with a prominent casque, set against a watercolor-like background with earthy tones of orange and beige, giving it an artistic appearance. +toy_17.jpg A knitted chameleon with a spiral tail is perched on a branch, showcasing a gradient of green hues and a textured pattern, set against a dry, grassy background. +tattoo_27.jpg The image features a vibrantly colored tattoo of a chameleon with a bright pink body, blue head, and a coiled tail, positioned on a person's forearm with visible arm hair, set against a neutral background. +tattoo_22.jpg A vibrant green and yellow chameleon tattoo is depicted in profile, perched atop a colorful, stylized skull with intricate shading and a backdrop of warm orange and red accents. +origami_4.jpg A brown, textured origami chameleon is positioned in profile atop a rocky surface, with grass and foliage in the blurred background, showcasing intricate folding details mimicking the chameleon's form and features. +toy_4.jpg This African chameleon, viewed from a side angle, features a dark blue and textured body with distinctive spikes on its back, set against a muted background. +toy_14.jpg The African chameleons, knitted in vibrant green, purple, and blue hues, exhibit a textured knit pattern while positioned side-by-side on a curved driftwood branch against a seamless white, fabric-like background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/Granny_Smith_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/Granny_Smith_descriptions.txt new file mode 100644 index 0000000..bef7211 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/Granny_Smith_descriptions.txt @@ -0,0 +1,10 @@ +painting_7.jpg A light green, smooth apple sits in the foreground with a shadow cast against a wooden surface, contrasted by a dark background featuring a red apple and decorative gourds. +toy_6.jpg The object appears as a crocheted green sphere with a smooth, knitted texture, featuring small black eyes and a brown stem on top, set against a red polka dot background. +graphic_0.jpg A label with "Granny Smith" and a number is attached to a stylized drawing featuring green apples with a prominent stem, set against a textured white background with black and green text elements. +painting_9.jpg The Granny Smith apples are depicted in a vibrant, glossy green with subtle dappled texture, viewed from an angled side perspective, against a muted, soft green background with gentle shadowing; they display a faint sheen highlighting their curvature. +cartoon_0.jpg The image shows an illustrated green apple with a smooth texture, featuring anthropomorphic details including eyes and limbs, a small crown perched on top, and surrounded by a dark background with text elements. +art_4.jpg The illustration features a trio of green apples with a slightly speckled texture, viewed from a top-front perspective against a textured red background, with a spiral-bound notebook edge visible on the left. +sculpture_1.jpg A shiny green apple with a smooth texture is positioned against a wall, featuring a golden humanoid figure sitting in a carved-out section on its front, surrounded by a wooden floor and indoor plants. +sketch_0.jpg The image shows an outline drawing of an apple with a leaf on top, depicted in a simple black and white line art style against a plain white background. +videogame_9.jpg A bright green Granny Smith apple with slight surface blemishes hangs from a branch with a single leaf attached, set against a plain white background. +videogame_1.jpg A pixelated green object resembling an apple with darker green shading, a visible brown stem, a single pixelated leaf on top, and set against a simple white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/accordion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/accordion_descriptions.txt new file mode 100644 index 0000000..74ae362 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/accordion_descriptions.txt @@ -0,0 +1,10 @@ +sketch_23.jpg The image depicts a black and white sketch of an accordion keyboard viewed diagonally with a hand pressing the keys, set against a simple line-drawn background. +graffiti_9.jpg The image depicts a brown and white stencil-style depiction of someone playing an accordion, with red checkered pants, seated on a chair against a pale green and yellow background, showing the accordion from a frontal viewpoint. +deviantart_6.jpg The accordion, illustrated in a stylized mural form, appears with a red frame and black and white keyboard sections, set against a brown and brick-textured background, depicting simplified, cartoon-like hands playing the instrument from a frontal viewpoint. +cartoon_17.jpg The accordion is depicted in black and white tones with vertical stripes, seen from a frontal viewpoint against a sketchy illustrated background featuring two musicians, one playing and the other seated, with visible watercolor textures. +painting_12.jpg The image features an abstract painting of a person holding an accordion with bold, colorful outlines and textures, primarily in blue and green, amidst a brownish-red and beige speckled background. +sketch_7.jpg The image depicts a black and white accordion from an angled side view, showcasing its keyboard and bellows with visible buttons on the opposite side, set against a plain white background. +painting_7.jpg The accordion is red with white bellows and black piano keys, viewed from the side, with a blurred background of stone and a blue bowl placed nearby on the textured cobblestone ground. +graffiti_11.jpg The accordion in the image appears as part of a black-and-white street art piece, featuring a seated person on a brick wall, with the accordion's buttons and keys visible in a vertical orientation against a red graffiti-covered background. +painting_4.jpg The accordion is predominantly black and white with a reflective surface, viewed from an oblique angle as it is held by a person in front of a surreal backdrop with a blue sky, clouds, and distant mountain. +origami_0.jpg The accordion, viewed from the front, is crafted from a light brown, textured material with visible pleats and folds, positioned against a plain white surface with a label in front and a green wire structure in the background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/acorn_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/acorn_descriptions.txt new file mode 100644 index 0000000..cdebc7b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/acorn_descriptions.txt @@ -0,0 +1,10 @@ +misc_21.jpg The object appears to be a handmade plush acorn with a soft, felt texture in yellow and red hues, perched atop a piece of brown and white felt resembling a dessert, set against a woven fabric background with a plate at its base. +misc_2.jpg A fabric acorn with a brown, textured body and a speckled cap is sewn onto a small, square white cushion, surrounded by green grass and featuring green felt leaves. +misc_4.jpg A fabric-covered button features a stitched acorn outline in brown thread on light beige material, viewed from directly above against a dark brown textured background. +misc_0.jpg The illustrated acorn features a textured cap and a smooth body with a gradient from gray to blue, adorned with a stylized white lightning bolt, surrounded by a halo and whimsical elements set against a faded, abstract green and white background. +misc_62.jpg The acorn is silhouetted in black against a stark white background, appearing elongated with a smooth, rounded top and a textured, fringed base, viewed in a lateral side profile. +deviantart_11.jpg The acorn appears glossy and brown with a textured, scaled cap, positioned upright on a cartoon grassy field with a large tree in the background, under a bright, sunny sky. +misc_37.jpg This bronze sculpture of an acorn features a glossy, metallic texture with a geometrically textured cap and smooth body, viewed from the side and nestled among lush green foliage with small white flowers. +misc_18.jpg The image depicts simple line drawings of four outlined acorns, each with scalloped caps and linear details, set against a plain white background. +deviantart_27.jpg A cartoon acorn with a glossy dark brown cap, a smiling face on a light brown body, and vibrant green leaves on each side, set against a diagonal orange and brown background. +misc_8.jpg Two plush acorn-shaped objects with a light brown base and dark brown caps display embroidered smiling faces, nestled in a hand against a blurred light background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/afghan_hound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/afghan_hound_descriptions.txt new file mode 100644 index 0000000..614ab9d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/afghan_hound_descriptions.txt @@ -0,0 +1,10 @@ +misc_17.jpg The afghan hound has long, flowing beige hair, with a side profile view against a plain, light-colored wall, featuring a distinct shadow and artistic graffiti style. +misc_3.jpg The object is a cookie shaped like an Afghan Hound, featuring a light brown base with dark chocolate-like decorative lines simulating the dog's flowing fur, viewed from the side against a patterned grid background. +misc_45.jpg An illustrated Afghan Hound with a flowing, silky coat of black and golden strands stands gracefully against a bright blue background, exuding an elegant and poised demeanor. +misc_49.jpg The illustration depicts a stylized Afghan Hound with smooth, flowing fur, positioned in a relaxed, reclining pose next to an anteater, both rendered in a sepia-toned sketch style on a plain background. +misc_15.jpg A bronze-toned statue of an Afghan Hound stands elegantly on a wooden surface, its long textured coat sculpted with wavy details, viewed in profile with a curling tail and framed against a softly lit interior with dog portraits in the background. +misc_52.jpg The beaded depiction of an Afghan hound features flowing strands of beads in shades of gold, cream, and brown to emulate its silky coat, with a distinct bent tail and a side profile atop a plain white background. +misc_18.jpg A regal Afghan Hound with long, silky, cream-colored fur gazes sideways with its elegant neck turned, set against a luxurious, teal satin background, encased in an ornate golden frame. +misc_34.jpg An orange origami model resembling an Afghan Hound stands in profile view, highlighting its elongated snout, flowing mane-like paper folds, and angular legs against a plain white background. +sketch_7.jpg The Afghan Hound, depicted in profile view, showcases a flowing, silky coat with a predominantly dark hue, standing in a poised posture on a simple ground surface, with its distinctive curled tail and elongated, elegant snout accentuating its graceful silhouette. +misc_19.jpg An Afghan hound with long, cream-colored silky hair and a dark face is depicted in an ornate, regal pose, wearing elaborate clothing against a rich red fabric background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/ambulance_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/ambulance_descriptions.txt new file mode 100644 index 0000000..5a39c6c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/ambulance_descriptions.txt @@ -0,0 +1,10 @@ +sketch_16.jpg The image shows a simple black outline drawing of an ambulance with a boxy shape, centered on a plain white background, featuring a light on top and large rounded wheels. +toy_7.jpg A low-resolution image shows a white toy ambulance with a red cross on its side, viewed at an angle, on a dark surface, with a yellow toy vehicle in the blurred background. +art_6.jpg The ambulance appears as a toy helicopter with a cream and red color scheme, featuring red cross symbols on a round-bodied design viewed from an angle, set against a dark background with a textured surface in the foreground. +art_1.jpg A small, cream-colored toy ambulance with a quirky, vintage design, featuring a prominent red cross and cherry-red light on top, is positioned at a side angle amidst dense foliage and garden plants, with a house partially visible in the background. +toy_10.jpg A small, olive-green toy ambulance with a prominent red cross on white panels is viewed from a rear, three-quarter angle, set on a cobblestone surface with a blurred urban background. +sketch_8.jpg A hand-drawn sketch of a boxy ambulance with a cross on the side viewed from a front diagonal perspective, set against a grid-patterned notebook page background. +toy_11.jpg The ambulance is a white van with red stripes and "CROCE ROSSA ITALIANA" text, viewed from the side against a brick wall, featuring a red cross emblem and roof emergency lights. +sketch_18.jpg A line drawing of an ambulance in a three-quarter front view, showcasing its rectangular shape, large wheels, emergency light bar on top, and spacious rear compartment, with no distinct environmental background. +videogame_7.jpg A white ambulance with a red horizontal stripe and visible blue star of life symbols is shown from a front-side angle against a dark background, highlighting its boxy shape and emergency lights on top. +toy_17.jpg The vintage ambulance is black with a matte texture, viewed from the rear three-quarter angle and set against a brick wall, featuring distinctive red crosses on white panels. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/american_egret_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/american_egret_descriptions.txt new file mode 100644 index 0000000..dd78a66 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/american_egret_descriptions.txt @@ -0,0 +1,10 @@ +sketch_21.jpg The image depicts a white egret standing in profile on a textured grassy bank, with elongated legs, a long neck, slightly curved bill, and subtle background water reflections. +sketch_5.jpg The line drawing depicts an egret standing in shallow water with long legs, an elongated neck, and a slender beak, set against a minimalistic background with slight ripple markings indicating water. +misc_13.jpg The American egret is depicted in a side profile showing its slender white plumage with a long, curved neck and beak, standing on a patch of grass against a pale, pastel background. +misc_32.jpg A serene depiction shows egrets in soft, off-white hues with smoothly textured feathers, elegantly poised among delicate willow branches and vibrant blossoms, set against a muted, earthy background. +misc_18.jpg The silhouette of the American egret is gracefully poised on a tree branch against a vivid sunset backdrop, showcasing its slender neck and elongated beak. +misc_5.jpg The American egret is depicted in a side pose with smooth white plumage, a slender S-curved neck, contrasting yellow lore and black beak, standing on extended thin black legs with yellow feet, against a background of pale green water or grass. +misc_19.jpg The American egret is depicted in profile view with a smooth, white texture against a dark, textured background, emphasizing its slender neck and pointed beak. +misc_48.jpg The American egret displays a pristine white plumage with soft, delicate texture, captured in a graceful preening pose surrounded by lush green foliage against a neutral, earthy background. +sketch_1.jpg The American egret is depicted in a fine-textured black and white sketch, featuring one bird standing upright with a slightly raised crest on its head, surrounded by a nest of intertwined branches with another similar bird in a resting pose. +sketch_15.jpg The illustration depicts an American egret with smooth, white plumage in a side profile view with wings fully extended and thin legs trailing behind, set against a plain background with a graceful pose suggesting mid-flight. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/ant_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/ant_descriptions.txt new file mode 100644 index 0000000..c09593c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/ant_descriptions.txt @@ -0,0 +1,10 @@ +graffiti_13.jpg A black, stylized silhouette of an ant is painted on a weathered, graffiti-covered gray utility box with a brick wall background. +sculpture_6.jpg The ant sculpture is a large, textured brown structure resembling intertwined wood with a side view showcasing its segmented body, surrounded by a forested background with trees and undergrowth. +tattoo_25.jpg The image shows a black and small ant tattoo on a foot, detailed with a realistic texture and a visible shadow, set against a contrasting geometric-patterned floor background. +graffiti_10.jpg The image depicts large black ant murals painted on a white brick wall, viewed at an angle in an alleyway with orange lighting from mounted lamps, creating stark shadows and giving an urban artistic appearance. +sticker_2.jpg The image shows a black, stenciled ant illustration on a gray, textured wall, viewed from the side with prominent legs and antennae, and surrounded by torn paper and posters. +tattoo_3.jpg The image shows a small tattoo of an ant on the person's arm, with a minimalist black outline against tanned skin, positioned on the upper arm with a shadowed, outdoorsy background. +origami_4.jpg The object is a red origami ant with a textured, paper-like appearance, viewed from a side angle, placed on a black fabric background with a sign and another origami object visible nearby. +tattoo_22.jpg The image shows a tattoo of three ants on a person's leg, featuring two black ants and one red ant with distinct detailing, seen from a side view against a backdrop of indoor tiles and furniture. +graffiti_0.jpg The low-resolution photo shows a gray metal panel mounted on a wooden utility pole with scattered green leaves above, featuring black graffiti lettering and surrounded by a chain-link fence in an urban environment. +sketch_8.jpg A black line-drawn ant with elongated legs and antennae is depicted in a side view on a stark white background, showcasing a segmented body and angular joints. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/assault_rifle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/assault_rifle_descriptions.txt new file mode 100644 index 0000000..4d01fa2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/assault_rifle_descriptions.txt @@ -0,0 +1,10 @@ +misc_28.jpg The assault rifle is depicted in a side view with a digital camouflage patterned body, a tan magazine, and a black barrel, set against a gray background featuring stylized text. +sketch_20.jpg A black and white line drawing of an assault rifle is depicted in a side view, featuring a curved magazine, distinctive barrel design, and ejecting bullet casings, set against a plain background. +sketch_1.jpg The assault rifle is depicted in a line-art style, viewed from the side with a classic wood-textured stock and handguard, featuring a curved magazine against a plain white background. +misc_1.jpg The assault rifle features a green and black camouflage pattern with a textured surface, viewed from a side angle against a plain dark background, with a distinctive short magazine and uniquely shaped stock. +misc_20.jpg A gnome figurine, in plain dark grey with a smooth texture, is holding a rifle in a poised stance against a blurred background featuring beige tones and other sculpture-like shapes. +misc_8.jpg The assault rifle features a black and metallic finish with a glossy texture, viewed in a full right profile against a plain white background, distinguished by its carrying handle and mounted under-barrel grenade launcher. +misc_35.jpg The assault rifle depicted is in a side view, featuring a matte black and olive green color scheme with a textured grip, a visible tactical scope, adjustable stock, and muzzle flash against a plain white background. +toy_0.jpg The object resembles a small, blocky, black plastic toy gun held by a yellow, black-haired figure in front of a plain, white background, with a simple and smooth texture. +misc_15.jpg The image shows a figure with a blue prosthetic arm holding a black assault rifle at a forward angle, set against an indoor environment with draped curtains and soft lighting, emphasizing the streamlined body and angular design of the rifle. +misc_27.jpg The object is a pixelated, black and gray weapon with a distinct futuristic design, viewed from the side against a plain white background, featuring a blocky texture and a small green detail near the center. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/axolotl_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/axolotl_descriptions.txt new file mode 100644 index 0000000..9d2fff4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/axolotl_descriptions.txt @@ -0,0 +1,10 @@ +toy_17.jpg The axolotl appears to be a vibrant pink with a smooth texture, positioned face-forward with raised gill stalks, surrounded by a rustic forest backdrop featuring rocks and mossy elements. +toy_25.jpg The object appears to be a plush axolotl, viewed from the side, with a white body, vibrant pink gills and tail, and is set against a plain, light background. +art_5.jpg The axolotl illustration features a pale pink body with frilly, dark-tipped gills extending from its head, set against a watercolor background of blue and green shades, giving a whimsical and serene underwater effect. +art_6.jpg A paper-crafted axolotl with a white body and purple accents stands in a dynamic pose against a metallic, multicolored backdrop, highlighting its whimsical design and stylized features. +deviantart_22.jpg The axolotl is depicted with a simplistic pink body, prominent red external gills, and a cartoonish expression set against a solid blue background. +deviantart_8.jpg The axolotl is depicted in a stylized, colorful form with a white body adorned with black and orange patches, set against an abstract background of red and yellow flowers and a bright sun with radiating beams, viewed from a side profile with elongated frills extending from its head. +cartoon_9.jpg A cartoonish axolotl with a pale pink body, embellished with red gill stalks, is depicted in a playful, belly-up pose against a textured blue background mixed with bubbles. +sketch_4.jpg The axolotl appears as a black and white pencil drawing with a simplistic, cartoonish texture, shown in a dynamic pose with its mouth open and limbs spread, set against a plain white background, and uniquely depicted wearing sneakers. +art_13.jpg A black-and-white line drawing of an axolotl from a slightly angled front view, showing its characteristic feathery gills, four limbs with distinct fingers, and a neutral facial expression, set against a patterned, sketch-like background. +origami_2.jpg A pink and light brown origami axolotl with spiky appendages is positioned at a slight angle on a speckled countertop surface, showcasing its distinctive folded paper texture. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/baboon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/baboon_descriptions.txt new file mode 100644 index 0000000..8d2762e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/baboon_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_25.jpg A stylized depiction of a baboon face with vibrant colors, featuring a bright green crest, a vivid red nose and lips, blue-striped face markings, and a striking yellow chest against a black background filled with stylized blue and white eyes. +sketch_3.jpg The baboon, illustrated in a sketch-like style, is shown in a side profile standing on all fours with a rough, textured fur pattern, set against a minimal, grassy background. +cartoon_3.jpg A silhouette of a baboon is shown in a dynamic walking pose, colored in a spectrum of dark to light blue with a flat monochromatic texture, set against a plain white background with overlapping iterations, emphasizing movement and social interaction. +sketch_15.jpg A line drawing of a baboon's profile highlights its distinctive facial structure and mane, with no color or texture detail, set against a simple, unadorned background. +sculpture_9.jpg The object appears to be a smooth, dark stone sculpture with simplistic features of a baboon facing front, set against a plain yellow background, and characterized by a rounded body and distinct facial detailing. +toy_2.jpg A brown, textured baboon figurine is shown in a side profile, crouched with its limbs spread out, against a white tiled background. +graffiti_1.jpg The image depicts a vividly colored depiction of a baboon face with exaggerated features, including prominent blue and red hues on the face, large yellow eyes, and open mouth showing sharp, prominent teeth, set against a textured background. +cartoon_9.jpg The baboon, with a colorful blue and red-muzzled face surrounded by white fur, is shown in a thoughtful pose against a soft, pastel sky background, with its eyes raised and one hand open as if gesturing or pondering. +sculpture_16.jpg A stone statue of a baboon with a round disk on its head, textured in a smooth, weathered finish, is seen from a front side angle, set against a speckled granite background, with distinct carvings that highlight its seated pose and detailed facial features. +cartoon_20.jpg The image depicts a stylized representation of a baboon with a vibrant orange snout and mouth, large blue circular areas around the eyes, and layered semicircular patterns creating a symmetrical design against a black and gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/backpack_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/backpack_descriptions.txt new file mode 100644 index 0000000..7bf44da --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/backpack_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_0.jpg The image depicts a simple illustration with a yellow and white background, showing cartoon characters with large cream-colored backpacks that have black accents, set in a scene reminiscent of a bus or train interior, featuring quirky, exaggerated expressions and forms. +sculpture_0.jpg The object appears as a textured clay model of a soldier with a backpack, viewed from a rear angle, with details such as a helmet, shoulder strap, and draped cords, set against a neutral background. +sketch_4.jpg A black-and-white illustration of a backpack with a flap closure and visible stitching is shown from a three-quarter view against a plain white background, featuring two buckles and a looped strap on top. +origami_3.jpg The image shows two small origami backpacks, one blue and one yellow, with a matte paper texture, viewed from an angle that displays the front and side, set against a plain white background. +misc_0.jpg The backpack features a colorful, patchwork pattern with predominantly red, blue, and purple hues, displayed upright on a plain, blurred background alongside another similar item. +sketch_8.jpg The backpack is a sketch in black ink with a square shape and front pocket shown from the back, outlined against a grid-lined background with abstract detailing. +embroidery_2.jpg The image shows a colorful patch depicting a yellow smiling face character with a green backpack and shoes, embroidered onto a plain white fabric background. +cartoon_31.jpg The backpack, sketched in a monochromatic teal hue against a coral background, features a classic design with a front pocket and is seen from a side view, slightly slouched with a hand gripping the top handle, alongside a casually dressed figure standing next to stylized hand-drawn text. +cartoon_28.jpg The backpack sketch in a seated three-quarters view appears monochrome with a rugged, slightly wrinkled texture, visible straps, and a buckle, set against a simple, minimally detailed background. +graphic_1.jpg The backpack is orange with a smooth texture, viewed from the side as worn by a cyclist, set against a stylized blue gradient backdrop with the cyclist on a mountain bike. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/badger_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/badger_descriptions.txt new file mode 100644 index 0000000..56e95f3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/badger_descriptions.txt @@ -0,0 +1,10 @@ +sketch_4.jpg The image shows a sketch of a badger in profile view, featuring a black and white striped head with prominent dark markings on the face, and a textured, smudged-art appearance with a plain white background. +cartoon_28.jpg A stylized badger with a black and white face and body stands upright on green grass, wearing a blue-striped scarf with a sharply defined cartoonish texture, viewed in profile alongside a smiling person. +sticker_0.jpg The image depicts a stylized outline of a badger in white against a black background, featuring exaggerated white facial stripes and holding objects resembling guns with its arms extended, in a pose suggesting defiance. +sketch_16.jpg A black and white badger is depicted with a textured, round body, viewed from the front as it walks towards the viewer, with a stark white background and distinct bold stripes on its face. +sketch_15.jpg A monochrome illustration depicts a stylized badger with swirling, textured fur, reclining with a playful twist near its tail, set against a minimal background with a star above. +sketch_13.jpg The low-resolution image portrays a sketched badger with a textured black and white striped face, a pipe in its mouth, and an upright pose with a shaded background suggesting a natural setting. +sculpture_1.jpg The badgers are represented by wire sculptures with a grey and black mesh texture, lying on their sides amidst a grassy and leaf-strewn forest floor, showcasing their distinctive stripe patterns in a relaxed pose. +sketch_11.jpg The image depicts four realistic illustrations of a badger with distinct black and white stripes on its face, a sturdy body with a coarse, dark gray fur texture, shown from various angles including side views, a frontal view, and a crouched posture, set against a plain gray background. +sketch_2.jpg The image depicts a pen sketch of a European badger characterized by its distinctive black and white striped face, seated on a rock, with coarse, dark fur on its back and sides set against a plain background. +cartoon_18.jpg A sketch-like depiction shows a badger with dark eyes and a striped snout, positioned in a slightly upward and forward stance, holding a strap in its mouth, with a coiled object resembling a hose or rope nearby, all set against a simple, light background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/bagel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/bagel_descriptions.txt new file mode 100644 index 0000000..31932e4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/bagel_descriptions.txt @@ -0,0 +1,10 @@ +misc_1.jpg The object resembles a knitted, cream-colored bagel with a textured surface, held by a child and viewed from above, positioned against a soft, neutral-toned background. +sketch_13.jpg The object is a wireframe model depicting a torus-like shape on a square plate, with intricate grid lines detailing its curves and a central cut-out, against a plain white background. +painting_5.jpg The image shows a stylized depiction of a bagel with a smooth, pale yellow surface and scattered small white dots, viewed from slightly below at an angle, with a painted background of blue and reddish-brown hues, suggesting an artistic or illustrative setting. +deviantart_5.jpg A light brown bagel with a slightly rough texture is viewed from the front, being bitten into by a character with white hair and green eyes, set against a blurry warm-toned background. +misc_0.jpg A plush, light brown bagel with visible seam lines and embroidered seeds rests on top of a layered stack resembling a dessert, with pink, white, and dark brown fabric, and is placed on a white plate against a soft-focus background of books on a wooden surface. +cartoon_14.jpg A sketch illustrates a round object resembling a bagel, with a subtle brownish hue, smooth texture, and central hole, resting on a crumpled surface, viewed from a slightly overhead angle against a soft, muted background. +sketch_18.jpg The bagel, depicted in a black-and-white line drawing, features a cut-through side view with a detailed pattern of seeds across its surface and a distinct textured outline on a plain white background. +cartoon_11.jpg A cartoonish bagel character with a smiling face and chef's hat is painted on a teal wall, holding a steaming cup and standing atop abstract bread illustrations. +sketch_17.jpg A simple line drawing of a bagel with a bite mark, featuring a circular shape with dotted texture and a heart sketched above, set against a plain white background. +sketch_0.jpg The low-resolution image depicts a wireframe model of a bagel cut in half, showcasing a grid-like texture, resting on a similarly styled square wireframe plate against a neutral background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/bald_eagle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/bald_eagle_descriptions.txt new file mode 100644 index 0000000..459a571 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/bald_eagle_descriptions.txt @@ -0,0 +1,10 @@ +misc_1.jpg The image depicts a stylized illustration of a bald eagle with a white head and brown feathery body perched on a globe, set against a vibrant red background. +sculpture_11.jpg A detailed sculpture of a bald eagle with outstretched wings showcases a mix of gray and brown feathers with distinct white highlights against a dark background, with the eagle perched on a black base and a person beside it. +painting_14.jpg The bald eagle is depicted with a white head and yellow beak, sitting in a side profile with mottled brown feathers on its body, against a blurred green forest backdrop, with a textured appearance suggestive of a watercolor painting. +cartoon_15.jpg A stylized bald eagle with a bright yellow beak and eyes, wearing a brown outfit with white accents, is seen from a frontal viewpoint against a dark, graphic background featuring abstract blue and yellow elements. +painting_29.jpg The bald eagle is portrayed with detailed white feathery plumage on its head, a large yellow beak open wide revealing a red interior, and a sharply focused eye against a blurred blue background. +sketch_10.jpg The bald eagle, depicted in a detailed sketch style with a textured gray body and white head, is shown in mid-flight with wings spread wide and talons extended, against a stark white background. +painting_1.jpg A stylized depiction of a bald eagle in flight features a white head and tail contrasting with a dark brown body and wings, set against an abstract, colorful background of swirling hues and shapes. +sketch_6.jpg The image shows a pencil-drawn bald eagle with fine detailing on its feathers, depicted in a side profile with an intense gaze, displaying distinct textural shading on its head and plumage, set against a plain white background. +painting_2.jpg The image depicts a digitally rendered bald eagle soaring over a suburban neighborhood at dusk, with a prominent white head and a rich brown body, its wings outstretched revealing dark, shadowed tips against a vibrant purple and orange sky. +tattoo_38.jpg A vibrant tattoo of a bald eagle on an arm features intricate detailing with a mix of earthy brown and white, wings spread wide, clutching a staff draped with the American flag against a plain indoor background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/banana_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/banana_descriptions.txt new file mode 100644 index 0000000..3f2451c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/banana_descriptions.txt @@ -0,0 +1,10 @@ +misc_65.jpg The banana is bright yellow with defined black outlines and highlights, seen from a side view, and set against a glass surface with a dusty texture and a red abstract shape in the background. +misc_14.jpg The image shows a stylized, cartoon-like representation of a banana facing upwards, with a bright yellow color and bold black outlines forming abstract facial features, set against a background of gray and white graffiti. +misc_6.jpg The image depicts a stylized banana with a zipper in the place of a peel, bright yellow on the outer sections and white interior, set against a plain bright blue background, giving it a pop-art aesthetic. +misc_115.jpg The object resembles a plush toy banana with a bright yellow body featuring black and white fabric patterns, set on a red surface against a grassy background, viewed from the side with a whimsical, abstract design including an eye. +misc_89.jpg A low-resolution image shows a spray-painted banana with a deep yellow hue, black spots, and elongated shadowing on a cracked, light-colored concrete wall from a side angle. +misc_112.jpg The image shows a stylized art depiction of a banana with vibrant, warm hues of reddish-orange and yellow, appearing elongated and curved, set against a grayscale background of a famous face, creating a contrast between the colorful banana and the monochromatic portrait, on a textured wall with faint vertical lines. +misc_125.jpg The image depicts graffiti-style bananas with bold black outlines and a flat yellow fill, positioned vertically on flat surfaces against neutral-toned urban backgrounds, creating a stark visual contrast. +videogame_13.jpg A pixelated cartoon banana peel with a bright yellow color is displayed centrally on a white t-shirt, positioned open and upright against the plain background. +misc_180.jpg The image depicts two stylized banana peels with vibrant yellow and dark brown lines, positioned upright and facing each other, dancing with a large red heart in a simplistic and graphic art style, set against a stark white background. +misc_3.jpg A plush banana with a vibrant yellow color, soft texture, and green top is seated upright on a dark fabric-covered chair beside a plush purple eggplant, all set against a room with patterned curtains and a radiator. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/barn_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/barn_descriptions.txt new file mode 100644 index 0000000..a88c937 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/barn_descriptions.txt @@ -0,0 +1,10 @@ +sketch_23.jpg The barn features a textured, weathered wood facade in grayscale, displayed from an angled side view with circular windows on the upper section, surrounded by open grassy fields and a tall tree providing a rustic backdrop. +painting_13.jpg A white barn with a contrasting dark roof stands amidst autumnal trees, viewed from a frontal angle showing its side and front; its texture appears worn with slight discoloration on the wood panels, set against a backdrop of a grassy field and a partly cloudy sky. +painting_17.jpg An aged, red-brown barn with a weathered texture is depicted from a slightly elevated, angled viewpoint; it sits in a rural setting with bare trees and a winding path, under a vast, pale blue sky. +painting_23.jpg The barn is depicted in a frontal view with a faded red, weathered texture; it possesses a dilapidated roof and gable, surrounded by a grassy field beneath a cloudy sky. +painting_11.jpg A vibrant red barn with a textured, painterly surface is viewed from the front, partially obscured by a field of green foliage, with a large tree featuring bright red leaves situated prominently to the right against an expansive sky. +cartoon_3.jpg The illustration depicts four distinct barn types, each with unique roof shapes and shingle textures, viewed from various angles with minimal surrounding details like bare trees and sparse fence lines, emphasizing their architectural styles against a simple backdrop. +sketch_5.jpg The barn is depicted in a black-and-white illustration with vertical lines suggesting wooden planks, positioned from a slightly elevated perspective showing a silo attached on the right, against a backdrop of rolling hills, a windmill, and a tree. +sketch_3.jpg The sketch depicts a small, two-story barn with a simple black outline, featuring a pitched roof and two prominent chimneys, situated in an open, undefined environment. +toy_2.jpg The barn is primarily red with white vertical stripes and white accents, featuring open double doors and a loft window visible from a three-quarter angle, set against a colorful interior and a patterned carpet background. +toy_0.jpg The barn is a small, model-like structure with a red, smooth texture and white trim, viewed from a slightly elevated angle, surrounded by a miniature white picket fence and cow figurines, set against a blurred wooden background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/baseball_player_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/baseball_player_descriptions.txt new file mode 100644 index 0000000..f825dbf --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/baseball_player_descriptions.txt @@ -0,0 +1,10 @@ +sketch_26.jpg The baseball player is depicted in a sketch-like style, wearing a cap and uniform with dark accents, in a side pose with the right arm fully extended, as if pitching, set against a plain white background. +misc_34.jpg A LEGO figure dressed as a baseball player in a white uniform with red accents is posed mid-swing with a brown bat against a blurred green LEGO baseplate background. +misc_4.jpg A chalk drawing on pavement depicts a baseball player in a red and gray uniform swinging a bat, positioned in a dynamic side pose against a white square background, with distinctive red shoes and helmet visible. +misc_39.jpg A cartoon baseball player is depicted in black and white, wearing a striped jersey and holding a bat above their head with an expression of surprise, on a plain white background. +videogame_7.jpg The baseball player is dressed in a gray striped uniform with the letter "S" on the chest, captured in a dynamic batting pose at home plate in a large, dimly-lit stadium with a domed roof and a blurred audience in the background. +sketch_6.jpg The low-resolution sketch depicts a baseball player in a dynamic pitching pose with outstretched legs and arms, wearing a cap, a uniform with visible creases for texture, and set against a plain white background that highlights the movement. +deviantart_21.jpg The baseball player is depicted in a cartoonish style with a predominantly white uniform featuring blue pinstripes, viewed in profile with a large ponytail, holding a bat, and standing against a plain black background. +misc_19.jpg The bronze statue of a baseball player stands upright holding a bat over the shoulder, with a smooth, polished texture, set against an urban backdrop featuring a modern building with a grid-like window pattern and a grassy area. +deviantart_39.jpg The baseball player is dressed in a dark vest and pants with a white shirt, standing confidently with hands in pockets and holding a bat over the shoulder, set against a dimly lit room with a large circular light source behind, casting dramatic shadows. +videogame_18.jpg A pixelated baseball player in a batting stance appears in a navy and white uniform with a hooded head, set against the backdrop of a virtual stadium with a visible pitcher and an audience in the stands. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/basketball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/basketball_descriptions.txt new file mode 100644 index 0000000..9bf0ef6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/basketball_descriptions.txt @@ -0,0 +1,10 @@ +tattoo_10.jpg The image features a tattoo on a person's arm depicting a basketball with a crown above it, set against a blurred background of a gymnasium with yellow steps. +misc_3.jpg The small orange basketball with black lines is held by a doll dressed in casual attire, positioned against a wooden fence and grass background. +tattoo_16.jpg In a bowl are several sheets with tattoo-like designs featuring a stylized orange basketball with black lines, embellished with roses, water droplets, and the phrase "LET IT RAIN," against a wooden tabletop background. +videogame_0.jpg The image shows a video game cover with a cartoon basketball player holding an orange basketball outlined by a basketball court background, with distinct blue and yellow accents. +cartoon_6.jpg The basketball has alternating lighter and darker segments, with a smooth texture, captured from a side view in a cartoon-styled scene featuring a character running. +videogame_7.jpg The low-resolution image does not depict a basketball, but rather features players in action and related graphics, suggesting a basketball-themed video game cover. +art_2.jpg The basketball appears uniformly orange with subtle panel lines, held at waist height by a figure in action against a plain, neutral-colored background likely part of a painted artwork. +graphic_1.jpg The basketball is depicted as orange with a traditional black line pattern, held aloft by a cartoon bear in mid-dunk against a stylized blue and geometric background. +deviantart_13.jpg A vibrant red basketball with subtle panel lines is held in an outstretched hand by a stylized white figure, set against a stark black background with faint outlines of a basketball court. +cartoon_2.jpg The basketball in the image is red with a black outline, seen from a profile view while held above the character's head against a plain white background; distinct black lines on the ball suggest paneling characteristic of a traditional basketball. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/basset_hound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/basset_hound_descriptions.txt new file mode 100644 index 0000000..e9d0bb9 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/basset_hound_descriptions.txt @@ -0,0 +1,10 @@ +misc_72.jpg The image depicts a monochrome sketch of a basset hound with long, droopy ears, a prominent black nose, and expressive eyes, positioned in a frontal view with a plain white background. +sketch_3.jpg The black-and-white sketch depicts a basset hound with its droopy eyes and long ears slightly tilted, set against a plain white background, emphasizing its textured fur and soulful expression. +misc_89.jpg Two basset hounds with predominantly white fur and brown markings sit side by side, featuring droopy ears and expressive eyes, in a hand-drawn art style against a plain background with hand-drawn text. +sketch_19.jpg This appears to be a sketch of a basset hound from a frontal viewpoint, with an emphasis on its long, droopy ears and distinctive wrinkled face, rendered in black and white shading on a plain background. +misc_113.jpg A painted depiction of a basset hound features a sleek, glossy coat with rich brown and white patches, a bird perched on its head, long drooping ears, set against a soft, pastel sky-like background, emphasizing the dog's large, soulful eyes and distinctive facial markings. +misc_35.jpg The basset hound appears to be lying on its side with a tricolor coat featuring a mix of black, white, and brown patches, placed against a plain white background with slight text elements above and below the image. +misc_95.jpg A painted rock resembling a basset hound features a detailed depiction with tan, white, and black colors, positioned on a grassy path, displaying large expressive eyes and floppy ears with the illusion of the dog lying down. +misc_23.jpg The basset hound image shows a painted stone with a face detailed in warm brown and white fur tones, presenting a front-facing expression with droopy ears and an intent gaze, set against a solid black background. +misc_93.jpg The basset hound illustration features warm brown and white fur with a smooth texture, depicted from a side profile with a wistful expression, set against a grayish, abstract background with a textured vertical strip on the left. +sketch_14.jpg A monochrome line drawing of a seated basset hound with exaggerated droopy features viewed from the front, set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/bathtub_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/bathtub_descriptions.txt new file mode 100644 index 0000000..5469ddd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/bathtub_descriptions.txt @@ -0,0 +1,10 @@ +sketch_25.jpg The bathtub appears to be a vintage clawfoot design with a textured exterior, viewed from a side angle, featuring a simple faucet, and set against a sketchy, unfinished background. +sketch_17.jpg The bathtub appears as a white, clawfoot tub with intricate detailing on the feet, viewed from the side with clearly defined outlines, and features a classic vintage-style faucet set against a plain, minimal background. +sketch_15.jpg The drawing depicts a simplistic, cartoon-like bathtub outlined in black, filled with bubbles and housing two stick-figure characters, against a lined paper background with visible red margins. +cartoon_11.jpg A gray, footed bathtub is depicted from the side view with a diver holding a lantern and an umbrella protruding, set against a plain white background. +painting_23.jpg The bathtub is depicted in soft hues with a pale, mint blue interior, viewed from an angular perspective, filled with water and a figure, set against a blurred, abstract background suggestive of an impressionistic art style. +sketch_2.jpg The illustration shows a minimalist bathroom with a white, corner-set, angular bathtub against a backdrop of plain walls, accompanied by a wall-mounted towel rack, a bidet, a toilet, and a countertop sink, all outlined in black. +graffiti_1.jpg The image depicts graffiti of a gray, cartoonish bathtub with a textured brick wall backdrop, viewed from the side, containing a pink glow and a stylized cityscape inside, with bold text beneath it. +painting_4.jpg The object is a painted, white bathtub cutout with a number "701" and text "GO THERE NOW!" on its side, featuring a simplified, cartoonish figure sitting inside, against a light beige, textured wall backdrop. +cartoon_19.jpg The bathtub is a pale yellow with a smooth texture, depicted from a side view, set against a minimalist background featuring bubbles and whimsical characters, with distinct clawfoot legs. +sketch_23.jpg The image depicts a sketch of a classic, clawfoot bathtub with a smooth, white appearance seen from a side angle, featuring slender, ornate legs against a plain white background with text at the top. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/beagle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/beagle_descriptions.txt new file mode 100644 index 0000000..816cbe6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/beagle_descriptions.txt @@ -0,0 +1,10 @@ +sketch_23.jpg A black and white sketch illustrates the beagle from a frontal viewpoint, highlighting its distinctive facial pattern and expressive eyes against a plain background. +sketch_4.jpg A pencil drawing depicts a beagle puppy sitting with a slightly tilted head, featuring a tricolored coat with smooth shading, against a simple white background. +misc_13.jpg The beagle, depicted in a watercolor style, has a tricolor pattern of black, brown, and white with a prominent white snout, viewed from a frontal perspective against a soft, muted background that blends subtly into the ground. +misc_25.jpg The image depicts a stylized beagle with a brown and white coat in a side profile pose against a textured blue background with bone and star patterns, showcasing defined color blocks and a slightly distressed artistic style. +misc_27.jpg The beagle, depicted in a frontal view, has a warm brown and white mottled coat with a distinct red dog tag, surrounded by a textured green background. +misc_42.jpg The beagle, depicted in black and white, displays a focused forward gaze with a textured coat, characterized by distinct facial markings and set against an indistinct background that emphasizes its soft, expressive eyes and drooping ears. +misc_19.jpg The beagle is depicted in a cartoon style with a patchy black, white, and brown coat, standing sideways on a red background with torn paper pieces scattered around. +videogame_0.jpg The beagle has a smooth, tricolored coat of white, brown, and black while standing alertly in an indoor setting with a grid metal enclosure reflecting a somewhat industrial environment. +sketch_7.jpg A line-drawn beagle head sketch features detailed shading with a side profile view, highlighting its floppy ears and smiling expression against a plain white background. +misc_50.jpg The plush beagle toy, viewed from the back, features a brown and white texture with a smooth finish, a blue collar, and floppy ears, set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/beaver_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/beaver_descriptions.txt new file mode 100644 index 0000000..2604519 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/beaver_descriptions.txt @@ -0,0 +1,10 @@ +sculpture_8.jpg A faded, abstract depiction of a beaver is illustrated on a textured, aged-looking surface with engineering diagrams, framed by a wire and wooden border. +painting_2.jpg A painted rock resembles a beaver, featuring intricately detailed brown fur with distinct brushstroke texture, a chubby front-facing pose with visible teeth and paws gripping twigs, set against a plain white backdrop. +sculpture_12.jpg The image depicts a stylized, clay model of a beaver with a smooth, reddish-brown body, cartoonish large eyes, and prominent front teeth, viewed from a slightly elevated angle against a plain white background. +misc_1.jpg The image depicts a plush, dark-brown knitted beaver figure with prominent white eyes and teeth, showcasing a small, smiling face and visible flat tail, set against a plain white background. +sketch_5.jpg The black and white drawing depicts a beaver with a textured, fur-covered body, shown in profile with its prominent flat tail, against a plain white background, focusing on its distinctive webbed hind feet and noticeable whiskers. +art_5.jpg A cartoon-like depiction of a beaver with a solid brown body, large buck teeth, and a flat striped tail is painted on the side of a white van, with a simple black outline and white highlights on the beaver's belly. +videogame_3.jpg The image depicts a stylized white silhouette of a beaver with a flat, textured tail and prominent front teeth, set against a solid black background in side profile. +cartoon_25.jpg The image shows a stylized cartoon beaver with a smooth brown body, large white teeth, black webbed feet, and a round snout, posed in a simplistic, side-facing stance against a plain gray background. +art_0.jpg The image shows a simple line drawing of a beaver on a beige wall with its rough-textured black tail and teardrop-shaped body, surrounded by abstract vertical patterns resembling plants, while the background features a gallery setting with colorful, kayak-like shapes on the wall and blurred figures. +toy_1.jpg A plush beaver with a textured, brown speckled body, is positioned side-on holding a branch, featuring a quilted, flat brown tail, set against a simple wooden surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/bee_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/bee_descriptions.txt new file mode 100644 index 0000000..ea52439 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/bee_descriptions.txt @@ -0,0 +1,10 @@ +misc_18.jpg A toy bee with a smooth, glossy yellow body adorned with bold black stripes sits on a wooden surface, featuring exaggerated cartoonish eyes with long eyelashes, pink cheeks, transparent wings, and a bright outdoor backdrop. +embroidery_21.jpg A stylized yellow bee with a textured, woven appearance, viewed from the top, is centered on a dark background with green grass, featuring circular black antennae, simple blue and white wings, and a brown stripe across its body, alongside playful text. +painting_7.jpg The image features an abstract representation with vivid yellow and black striped segments, suggestive of a bee, surrounded by dripped textures, and set against a vibrant background with bold red and blue geometric shapes. +painting_20.jpg The image depicts a stylized bee with bright yellow and black striped segments, large white wings showing a hint of purple shading, viewed from a top-down perspective against a red and yellow striped background. +embroidery_32.jpg The image shows a stylized cartoon bee with yellow and black stripes, aggressive facial expression, and holding a hockey stick, positioned centrally against a plain background with added text elements. +toy_31.jpg This image shows plush toys dressed as bees, featuring a yellow body with brown and red accents, wearing a brown hat with yellow antenna, large expressive eyes, and small translucent wings, arranged on a store shelf. +cartoon_69.jpg The image depicts a cartoonish bee with a smooth, round yellow body accented by bold black stripes, large silver wings, and a single visible eye while hovering near a pink flower with rounded petals. +sticker_19.jpg The image features a stylized, cartoon-like bee with prominent orange and black stripes, white wings, and a circular body, positioned centrally in a decorative brown ring against a textured and layered background of brown and earth-toned papers, with a wavy beige ribbon and striped accents. +cartoon_64.jpg A cartoon bee character with a white face and brown stripes sits on a bright yellow box adorned with colorful flowers, featuring a smiling expression, small wings, and curved antennae. +art_23.jpg A large, cartoonish bee with a yellow and black striped body, oversized eyes, and red feet is perched on a corrugated roof with a bright blue sky in the background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/beer_glass_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/beer_glass_descriptions.txt new file mode 100644 index 0000000..249c1ab --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/beer_glass_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_1.jpg The beer glass appears golden with a frothy white head, viewed from a three-quarter angle, set against a decorative, vintage-style background featuring botanical illustrations, held up by a blond individual dressed in traditional attire. +sketch_7.jpg Two stylized, black-and-white line-art beer mugs with frothy tops are positioned side by side, tilted towards each other in a toast, against a plain white background. +graphic_6.jpg A white woman with blonde braided hair, wearing a red and white Bavarian dirndl, holds an amber beer glass with a frothy white head and a textured honeycomb pattern, set against a warm brown gradient background. +cartoon_22.jpg The image features a stylized logo with a brown outline and a simple beer glass illustration containing a dark amber liquid with a foamy white head, set against a plain white background. +cartoon_5.jpg A clear, textured beer glass filled with golden beer and topped with white foam is shown from a side angle against a black background featuring a pop-art style image of a woman's face. +painting_0.jpg A brightly colored, stylized beer glass with a warm amber liquid sits on a wooden surface, surrounded by abstract green and orange shapes, with a soft blue and green gradient as the background. +cartoon_17.jpg The beer glasses are depicted with a warm golden hue, topped with frothy white heads, held by a figure in traditional attire against a bright blue sky and lush green landscape, emphasizing a vibrant and festive atmosphere. +deviantart_6.jpg A pixelated beer glass with a gradient from amber to dark brown, viewed from the side against a textured beige background, is paired with a small, cartoonish ghost character nearby. +sketch_5.jpg The beer glass is depicted in black and white, showcasing a tall, slender shape with visible foam overflowing from the top, set against a stippled background with radiating lines, accompanied by bold, stylized text elements reading "BEER" and "brewery." +cartoon_16.jpg The cartoon beer glass has a yellow, frothy top with expressive eyes and a mustache, a clear handle, and a teal background dotted with small bubbles, standing in a playful, anthropomorphic pose on a flat surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/bell_pepper_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/bell_pepper_descriptions.txt new file mode 100644 index 0000000..1502e36 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/bell_pepper_descriptions.txt @@ -0,0 +1,10 @@ +painting_15.jpg Two glossy red bell peppers with visible stems are positioned on a wooden surface against a dark, blurred background, with one pepper slightly leaning against the other. +sketch_7.jpg A grayscale drawing of a bell pepper shows it in a three-quarter view, emphasizing its smooth texture and contour, with subtle shading highlighting its plump form on a plain light background. +sketch_22.jpg The bell pepper is depicted in grayscale, appearing smooth and shiny from a three-quarters frontal view, with a distinct elongated stem leaning to one side, set against a plain white background. +cartoon_2.jpg The illustration depicts elongated bell peppers with a smooth texture, shaded in a monochrome palette, viewed from a side angle with detailed leaves atop, against a background of text with numerical elements. +origami_0.jpg A red bell pepper with a smooth, glossy surface is positioned sideways on a wooden tabletop, topped with a small, neatly folded yellow paper boat, set against a softly blurred beige background. +painting_8.jpg A vibrant orange bell pepper with subtle red hues and a smooth texture is positioned upright with a green stem, casting a distinct shadow on a blue surface, within a softly lit indoor setting. +painting_32.jpg A collection of bell peppers is depicted with a shiny, slightly glossy texture, featuring two red and one green pepper viewed from a three-quarter angle with visible stems, accompanied by a partly sliced yellow pepper, against a softly blended watercolor background. +art_9.jpg A glossy, bright yellow object resembling a bell pepper is positioned with its stem facing upwards against a textured black background, with a visible ruler indicating its size. +cartoon_4.jpg The cartoon-style yellow bell pepper is anthropomorphized with arms and legs, holding a bell and scroll, set against a solid green background. +sketch_6.jpg A black and white line drawing features two bell peppers with vertical striped patterns, one standing upright and the other tilted sideways, set against a simple white backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/binoculars_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/binoculars_descriptions.txt new file mode 100644 index 0000000..c7e026e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/binoculars_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_26.jpg A sketch-style black outline of binoculars is set against a plain beige background, captured from a frontal viewpoint, highlighting the twin cylindrical lenses and central focusing mechanism with distinctive bold, abstract lines. +misc_3.jpg The binoculars in the bottom right are black with yellow details, featuring reflective blue lenses, shown from a slightly above angle against a plain white background. +cartoon_23.jpg The binoculars appear to be a simple line drawing in black on a white background, with a front-facing view showing two connected eyepieces and a large central knob, and positioned among other sketched objects including a cup and a bottle. +cartoon_6.jpg The image depicts a man holding black, cylindrical binoculars with a matte finish, viewed from the front in an illustrative yellow and brown environment, with a distinct rifle and another figure behind him. +sculpture_11.jpg Black building shaped like giant binoculars with smooth texture, viewed from the front with trees and a street in the background. +graffiti_6.jpg The image depicts a cartoon mural on a building's exterior wall, featuring a character peering through vividly yellow binoculars against a backdrop of tall urban architecture and green accents with abstract patterns. +sketch_20.jpg The illustration shows a line-drawn binocular design with visible textured grips, viewed from a diagonal top angle, showcasing detailed lens casings and adjustment knobs, set against a plain white background. +sculpture_14.jpg The image depicts a grey, textured statue of a person holding binoculars to their eyes, angled slightly upward, set against a relief background with other similarly stylized figures. +cartoon_19.jpg The image features a cartoon drawing of binoculars, primarily white with black outlines and circular lenses, angled with eyepieces pointing towards the viewer, set against a bright blue background. +cartoon_18.jpg I don't know who this is, but the binoculars appear to be black with a simple, smooth texture, viewed from a frontal angle, held by a person in colorful attire with a whimsical background, and are distinct due to their classic round shape. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/birdhouse_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/birdhouse_descriptions.txt new file mode 100644 index 0000000..f805b60 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/birdhouse_descriptions.txt @@ -0,0 +1,10 @@ +graffiti_1.jpg A red, triangular structure with a chalk-drawn birdhouse sketch on a perforated metal background, featuring a rectangular beige patch and visible wear marks. +misc_0.jpg The birdhouse, in a simplistic line art style, is positioned on a tall post with a pointed roof featuring a circular entrance and is colored in a monochrome reddish hue, set against an embroidered depiction of a woman in a Victorian dress holding a parasol amidst floral patterns. +cartoon_22.jpg The birdhouse features an abstract, geometric design with distinct triangular and rectangular sections in shades of teal, yellow, and brown set against a plain white background with no distinguishable environmental context. +cartoon_7.jpg The birdhouse is an artistically rendered, green structure with a deep red, pointed roof, featuring jagged outlines and uneven textures, positioned at an angle against a pink background with graffiti-style text and a blue cartoon bird nearby. +cartoon_14.jpg A brightly colored birdhouse with a pink body and an orange roof, adorned with multicolored gems, viewed from a front-right angle against a plain white background, features a circular entry hole and ribbon decorations. +misc_8.jpg The birdhouse features a whimsical design with a tall, narrow, multi-tiered structure in grayscale with circular openings set against a vibrant orange background with swirling patterns. +toy_0.jpg The birdhouse is a light wooden color with dark brown trim, featuring a triangular roof and circular entrance, positioned on a table with wooden shelving and informational posters in the background. +misc_23.jpg The birdhouse is a small, white cylindrical structure with a floral-patterned conical roof and a pink base, perched atop a table with colorful leaf and bird graphic accents, viewed from a slightly elevated angle. +sculpture_2.jpg The birdhouse is a white, dome-shaped structure with a smooth texture, featuring a black circular entrance and a decorative golden and black arched motif on its front, perched atop a creatively sculpted wooden base with ornamental spiral cut-outs, set against a pale blue sky background. +toy_2.jpg The birdhouse is small and crafted from a felt-like material with a dark brown body, a blue roof, and a small perch, featuring a decorative felt bird on top, all hanging amongst lush green foliage. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/bison_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/bison_descriptions.txt new file mode 100644 index 0000000..d356af8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/bison_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_9.jpg The image depicts a black and white illustration of a bison facing left, with a shaggy, textured coat, visible details of its robust build, and standing amidst grass on a sketch-like background. +origami_2.jpg The image shows two geometric, metallic sculptures of bison, one silver and the other white, standing on a grassy field with trees in the background, featuring angular planes and edges that give them a faceted appearance. +graffiti_14.jpg The image depicts a black and white graffiti-style representation of a bison's head with blue accents, featuring curly and textured details, painted on a light-colored concrete wall with a partial view of a metal ladder on the left. +misc_4.jpg A cartoon-style bison with a dark brown, textured fur, is seen wearing a red hat adorned with a yellow emblem, standing in profile against a plain light blue background, with a playful expression and the text "ROUND ONE: FIGHT!" beneath it. +cartoon_23.jpg The image depicts a stylized bison with a predominantly textured gray and white body, viewed from the side with a simple line drawing style, featuring two human figures interacting with it against a plain white background. +cartoon_13.jpg The bison sketch shows a roughly textured, monochrome outline of a bison in a profile pose, with prominent horns and minimal background detail, emphasizing its shaggy coat. +embroidery_1.jpg The image depicts an abstract embroidery resembling a bison, with dark thread outlining its form against a light fabric background, featuring a side profile with prominent horns and an impressionistic texture created by scattered loose threads. +toy_10.jpg The image depicts a silhouetted figure of a bison with distinct horns and a curved tail, set against a white background with diagonal shadows and red and white building elements, suggesting a painted sign rather than a real bison. +painting_18.jpg A light-colored, textured silhouette of a bison is depicted in profile against a dark, featureless background, highlighting its distinctive hump and strong build despite low resolution. +misc_10.jpg The image depicts a stylized sketch of a bison with a smooth, monochrome texture, shown in a side pose with distinct, curving horns, positioned against a plain, light background that emphasizes its simplistic lines and shapes. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/black_swan_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/black_swan_descriptions.txt new file mode 100644 index 0000000..f0ee249 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/black_swan_descriptions.txt @@ -0,0 +1,10 @@ +sculpture_4.jpg The image depicts a dark bronze statue of a black swan standing upright with its neck gracefully curved, set against a backdrop featuring tall palm trees and a modern skyscraper under a clear blue sky. +graphic_1.jpg A stylized, minimalistic black swan with a red beak is depicted in profile view against a white background, featuring smooth, bold lines and a curved neck. +embroidery_1.jpg The image shows an embroidered black swan with intricate black thread detailing on its body, a distinctive red beak with white accents, viewed from a side angle, set against a textile patchwork background featuring pink and white stripes above and floral patterns below. +cartoon_13.jpg The image features a black abstract shape resembling a swan with a silhouette of a ballerina poised gracefully inside the curve, set against a plain white background. +sketch_2.jpg The image depicts a black swan with intricately textured feathers, viewed from a side angle as it gracefully glides across a calm, ripple-marked water surface against a plain background. +cartoon_10.jpg The stylized illustration depicts a black swan walking upright, holding a red electric guitar, with a prominently elongated neck and a red eye against a plain background. +sketch_15.jpg A stylized black swan with smooth, bold black coloring and delicate white highlights is depicted in profile view, set against a minimalist white background with subtle water ripple patterns. +sketch_3.jpg The black swan is illustrated in a stylized, abstract manner with looping black lines forming its body, a long curved neck extending elegantly upwards, and a white background enhancing its artistic simplicity. +sketch_9.jpg The image depicts a stylized black swan with a glossy black texture and prominent white accent detailing on its wings and neck, viewed in profile against a plain, undistinguished background with a gracefully curved neck and slightly ruffled tail feathers. +origami_5.jpg The black swan is an origami creation with a smooth, glossy texture, displaying a side profile with a raised neck and slightly open wings against a speckled, beige background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/bloodhound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/bloodhound_descriptions.txt new file mode 100644 index 0000000..b8f66e1 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/bloodhound_descriptions.txt @@ -0,0 +1,10 @@ +sketch_22.jpg A simplified sketch of a bloodhound features droopy, oversized ears framing a wrinkled face, seated with a straight posture, set against a plain, white background. +misc_6.jpg The bloodhound appears with a smooth, tan coat, sitting indoors behind a mesh screen with droopy ears and a somber expression, against a background featuring blue vertical bars and blurred outdoor light. +misc_12.jpg A bloodhound with a fawn-colored, smooth coat is sitting in a three-quarter view, showing droopy ears and wrinkled skin, set against a plain black background. +sketch_18.jpg A detailed pencil sketch of a bloodhound shows a side pose with its textured, wrinkled skin, long droopy ears, and a distinct coat pattern against a plain white background. +misc_1.jpg The bloodhound is depicted in a three-quarter view with a droopy expression, featuring a coat of contrasting dark brown and white patches with a rough texture, long floppy ears, and a soft focus background of muted tones. +misc_20.jpg A stylized bloodhound is dressed in a detective outfit with a textured grey coat, positioned in a sitting pose with a pipe in its mouth, set against an indoor backdrop featuring a portrait with matching colors. +sketch_10.jpg A group of bloodhounds with varying shades of dark and light fur texture crouch and sniff the ground in a coordinated trail, set against a grassy and open natural landscape. +misc_27.jpg Two bronze statues of bloodhounds, one lying down and the other standing, display a metallic texture with detailed musculature and drooping ears in a park setting with grass and trees. +misc_2.jpg The bloodhound exhibits a rich tan color with a smooth, textured coat, a droopy-eyed profile viewed from the side, and a gray background, emphasizing its distinctive long ears and wrinkled skin. +misc_23.jpg The image depicts an illustration of a bloodhound with a rich, rust-red color and a smooth texture, positioned in profile from the side near a grassy field, wearing a chain collar with a tag, with a background showing two hunters traversing a hilly landscape. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/border_collie_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/border_collie_descriptions.txt new file mode 100644 index 0000000..330c572 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/border_collie_descriptions.txt @@ -0,0 +1,10 @@ +sketch_19.jpg A detailed black and white drawing of a border collie features a medium-length, textured coat mainly in dark tones with a white blaze on its face, set against a plain white background and captured from a slight side profile, highlighting its attentive expression and pointed ears. +embroidery_0.jpg A textile depiction of a border collie features a black and white fur pattern with a prominently visible head, ears up, a slightly open mouth, and is set against a patchwork quilt background with colorful patterns. +cartoon_6.jpg The image depicts a cartoonish border collie with a predominantly black and white fur pattern, prominently displaying a happy, tongue-out expression, large ears, and a playful pose against a bright orange background with bold text. +art_7.jpg The border collie displays a smooth black and white coat with a fluffy texture, depicted in a side profile against a pastoral scene of sheep grazing in a lush green field under a bright blue sky, highlighting its alert and intelligent expression. +painting_10.jpg The border collie is depicted with a bold contrast of black and white fur, featuring a distinctive wide white stripe down its forehead, in a frontal close-up pose, set against a simple white background highlighting its expressive gaze and pointed ears. +sketch_1.jpg The drawing depicts a border collie puppy with a smooth, textured coat in shades of gray, featuring a white blaze on its face, resting in a relaxed, frontal pose against a plain background. +embroidery_1.jpg The border collie, depicted in a textured, embroidered form, features a typical black and white pattern, is viewed in a side profile stance, displaying a poised posture, set against a plain teal fabric background. +painting_12.jpg A black and white border collie stands on rocky terrain, with its side profile visible and its mouth open, set against a lush, green background. +cartoon_10.jpg The illustration features a side profile of a border collie with a predominantly white face and neck, accented by a soft, watercolor-like texture of black and gray on its ears and around the eyes on a plain white background. +misc_1.jpg A black and white border collie with a fluffy coat is depicted in a head-on pose against a textured paper background, with fine brushwork accentuating its alert expression and grass details at the bottom edge. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/boston_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/boston_terrier_descriptions.txt new file mode 100644 index 0000000..ac30eae --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/boston_terrier_descriptions.txt @@ -0,0 +1,10 @@ +sketch_11.jpg The black and white Boston Terrier is depicted in a front-facing pose with prominent upright ears, intricate shading highlighting facial textures, and a plain white background that accentuates its distinct, expressive features. +misc_153.jpg The boston terrier is depicted in vibrant watercolor with a mix of blue, purple, and white hues, viewed from the front against an abstract red-orange background, emphasizing its large, upright ears and expressive eyes. +tattoo_26.jpg A tattoo of a boston terrier on an arm features bold black and white markings with prominent facial expression, surrounded by red flower designs, set against a grassy outdoor background. +misc_178.jpg The image depicts a cartoon-style Boston Terrier with a black and white coat, wearing an orange crown with red jewels, set against a light blue backdrop featuring subtle bone patterns, with a focus on the dog's attentive eyes and pointed ears. +sketch_20.jpg The black and white Boston Terrier with prominent upright ears and a distinctive facial mask is shown in a stylized, high-contrast silhouette against a plain white background, facing slightly to the right with a direct gaze. +misc_69.jpg The stylized boston terrier has a smooth black and white coat with prominent, upright ears and expressive eyes, posed in a close-up profile against a vibrant green and red star-patterned background. +tattoo_3.jpg A tattoo of a Boston Terrier in a frontal pose features a black and white face with prominent, round eyes, surrounded by blue bubbles and set against a blurred, skin-toned background, with the word "trouble" in bold red below. +misc_30.jpg The illustration shows a stylized Boston Terrier with prominent black and white markings, sitting upright against a muted light gray background, with two green slippers in the foreground. +misc_121.jpg The Boston Terrier is depicted with a smooth black and white coat, displaying a prominent upright stance with pointed ears and an alert expression, set against a plain white background. +misc_16.jpg The image depicts a boston terrier with a black and white coat featuring prominent white markings around the snout and forehead, captured in a frontal pose with an alert expression against a textured, abstract gray and black background that resembles a watercolor painting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/bow_tie_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/bow_tie_descriptions.txt new file mode 100644 index 0000000..247292d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/bow_tie_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_5.jpg The bow tie appears as a simple, black geometric shape against a red rectangle in the stylized logo background. +sketch_3.jpg The bow tie is depicted in a monochrome sketch with smooth shading, viewed from a frontal angle, featuring prominently curled loops and long tails against a plain background. +sculpture_1.jpg A dark, smooth-textured bow tie adorns a bronze statue viewed from a three-quarter angle, set against a backdrop of blurred greenery. +sketch_13.jpg The bow tie is sketched in black and white, featuring a textured, hand-drawn appearance with visible creases and folds, centered on a plain white background. +cartoon_27.jpg A small, red bow tie with a flat appearance is centrally placed on a cartoon gingerbread figure featuring a white background, accented by jingle bells below. +origami_2.jpg The bow tie depicted is a grayscale illustration on a figurine with a slightly metallic texture, positioned centrally within a circular frame, set against a minimalist background with text and green paint drips below. +cartoon_11.jpg The bow tie is orange with large purple polka dots, situated around the neck of a cartoon bear with outstretched arms against a plain white background. +cartoon_28.jpg A polka-dotted black bow tie with a distinct textural pattern is centrally positioned against a stark, minimalist background, and accompanies a stylized illustration of a person. +art_0.jpg The bow tie features a monochrome gray color with a textured, sketch-like appearance, viewed frontally, and is part of a stylized skull design on a plain white background. +toy_7.jpg A plaid bow tie featuring a pattern of navy blue, brown, and white stripes with a red button accent is centrally placed on the chest of a fluffy beige teddy bear set against a softly lit white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/boxer_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/boxer_descriptions.txt new file mode 100644 index 0000000..4dfab48 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/boxer_descriptions.txt @@ -0,0 +1,10 @@ +sketch_15.jpg The image depicts a line drawing of a dog's face with floppy ears and a furrowed brow, characterized by prominent cheek folds, a pronounced nose, and large eyes, against a plain white background. +misc_38.jpg The boxer dog has a smooth, brown and white coat with a distinctive black nose, and is depicted in a side profile interacting with a child holding a treat against a solid pink background. +misc_2.jpg A tan and white cartoon-style boxer dog with a black snout sits against a solid light blue background, displaying a curious head tilt and distinctive large, dark eyes. +sketch_0.jpg A sketched outline of a boxer dog is shown in a side profile, with a short tail and defined muscular structure, against a plain white background. +misc_53.jpg The boxer features a brown and white coat with a distinct muscular build, lying down against a solid dark blue background, with well-defined facial markings and expressive eyes. +tattoo_2.jpg The boxer features a detailed, realistic depiction of a dog's face with a distinct brindle pattern on its coat, dark eyes, and a prominent white stripe down the center of the face, set against a skin-toned background, suggesting it's a tattoo on a human arm. +misc_43.jpg The image depicts a stylized illustration of a boxer dog with a smooth brown and white coat, sitting in a three-quarter view pose against a muted background with a faint palm tree silhouette, and it features an artistic overlay resembling large, oval sunglasses. +sketch_10.jpg The minimalist illustration of a boxer dog, in a dynamic standing pose, is depicted with smooth, bold black lines forming its muscular structure and cropped ears, set against a stark white background, emphasizing its silhouette and distinctive athletic build. +sketch_1.jpg A black and white sketched illustration of a boxer dog facing forward, wearing sunglasses, with a textured line art style and a plain white background. +sketch_4.jpg A monochromatic sketched portrait of a boxer dog showing a front-facing view with detailed muscle texture, prominent forehead wrinkles, and alert ears against a plain white background, featuring a 2018 tag held in its mouth. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/broccoli_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/broccoli_descriptions.txt new file mode 100644 index 0000000..c62c94e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/broccoli_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_15.jpg The image depicts a cartoon character with a green broccoli-shaped hairstyle, broad leafy features, set against a plain white background with additional green elements resembling broccoli florets attached to a curved line. +deviantart_1.jpg The image depicts a surreal landscape with broccoli-shaped structures featuring fractal-like textures, displaying varying hues of blue and white against a cosmic, star-filled sky. +cartoon_25.jpg The image features an illustrated anthropomorphic broccoli character with green, bumpy texture and cheesy yellow details, depicted from a frontal viewpoint on a white background with a whimsical drawing of a camera on a tripod and vibrant text below. +cartoon_27.jpg The image depicts a cartoon-like broccoli character with a dark green head and lighter green arms and body, featuring large white eyes, a simple smile, and red cheeks, set against a bright yellow background with hints of red. +graffiti_0.jpg The image shows a spray-painted green stencil of stylized broccoli with a blocky texture on a flat, gray concrete background, viewed head-on with text beneath it. +misc_0.jpg The object resembles a cartoonish, green, clay broccoli figure with exaggerated features like large, expressive eyes and a mouth, holding an item in a simple, white background environment. +painting_8.jpg The broccoli appears to be a watercolor illustration with a light green and stippled texture, viewed from the side against a plain white background, showcasing its rounded florets and straight stems. +deviantart_5.jpg A small, simplistic cartoon representation of a broccoli with bright green florets and a lighter green stalk is held up by a character with a gray background. +sketch_16.jpg The image depicts a hand-drawn black and white illustration of a broccoli with a prominent crown comprising rounded clusters and a visible stem, set against a plain white background. +sketch_0.jpg The image depicts a simple, monochromatic line drawing of broccoli with a bulbous crown and multiple stalks, set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/broom_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/broom_descriptions.txt new file mode 100644 index 0000000..28934ca --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/broom_descriptions.txt @@ -0,0 +1,10 @@ +graffiti_7.jpg I cannot provide descriptions of people in images. +cartoon_26.jpg The broom features a brown handle and dark bristles, viewed side-on as animated characters interact in a pink-toned, abstract background with vertical lines. +sketch_12.jpg A simple black-and-white line drawing depicts a broom with a slightly wavy, narrow stick handle and a fan of irregular, pointed bristles, set against a plain white background. +embroidery_2.jpg A cartoon broom with a simple, textured bristle head held by a character in a witch outfit, set against a minimalistic, starry night background. +cartoon_43.jpg The image appears to be a drawing of a child holding a gray broom with wide bristles, wearing a striped outfit and a green hat, set against a plain white background. +graphic_1.jpg The broom appears as a stylized object with brown, straw-like bristles tapering at the end, set against a whimsical, vintage illustration of a large, smiling moon with a black and white harlequin-patterned background. +sketch_13.jpg The depicted broom is a simple, hand-drawn illustration with a bristled head shaded by hatching lines, viewed from a slightly angled side perspective, set against a plain white background with no discernible environmental context. +cartoon_19.jpg The broom has a wooden handle and straw bristles, depicted flying against a night sky with clouds and a full moon, accompanied by a figure in purple attire sitting atop it. +cartoon_12.jpg A cartoon broom with a light brown bristle head and a dark brown handle, seen in a side view being ridden by a character flying against a blue sky with a large moon and white clouds in the background. +sketch_7.jpg I cannot identify or recognize any objects or features in this image. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/bucket_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/bucket_descriptions.txt new file mode 100644 index 0000000..11fa128 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/bucket_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_28.jpg The bucket is blue with a red handle, featuring a smooth texture and upright pose, placed on sandy beach with waves in the background. +videogame_8.jpg A dark, ornate cauldron with intricate patterns and a faint purple glow is positioned in the foreground against a misty, eerie landscape with shadowy trees. +origami_1.jpg The bucket is a vivid blue with a smooth texture, viewed slightly from above, set on a speckled granite countertop, adorned with yellow handles and wrapped in sheer white fabric. +embroidery_0.jpg A pink embroidered bucket with a smiling face is stitched onto a white fabric within a pink embroidery hoop, held against a dark background. +cartoon_24.jpg The bucket is a wheeled, rectangular yellow mop bucket with a black handle and wringer, situated at an angle on a lined surface with a textured, striped background. +videogame_10.jpg The object appears to be a round, gray pot with a raised, dotted rim and a decorative pattern of cream-colored ovals and rectangles, set against a plain white background. +sketch_1.jpg A black and white sketch of a bucket viewed from the front, featuring a simple line-drawn contour with a curved handle, set against a plain white background. +graphic_13.jpg A low-resolution photo shows a colorful arrangement with three buckets—one red and two blue—accompanied by shovels, set against an abstract background. +graffiti_2.jpg The image depicts a white chalk drawing of a bucket on a green background, featuring a simple cylindrical shape with a visible handle and the word "BUCKET" written on it alongside a paint roller and brush, appearing on a flat, vertical surface. +graffiti_8.jpg Four stylized, colorful buckets (red, yellow, green, blue) with paint splashes above them are painted on a textured concrete wall, viewed from the front with a weathered, urban background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/burrito_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/burrito_descriptions.txt new file mode 100644 index 0000000..8eb76ec --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/burrito_descriptions.txt @@ -0,0 +1,10 @@ +sketch_21.jpg A detailed, hand-drawn burrito with visible ingredients like lettuce and meat peeking out from one end, surrounded by various sketch-style food items set against a white background. +cartoon_1.jpg Two cartoon burritos with smiling faces, one with a brown filling and beige wrap with steam, and the other with yellow filling, both in a simplistic, animated style on a plain background. +cartoon_12.jpg The burrito, wrapped in a light-colored tortilla, is partially unwrapped revealing a filling of various colors, possibly indicating assorted ingredients, and is set on a paper wrapper alongside tortilla chips and a small cup of red salsa in a casual dining setting with a branded cup and handwritten text in the background. +graffiti_0.jpg A stylized, abstract drawing in green pen on a textured, light-colored wall depicts a creature with an open mouth preparing to eat a cylindrical object, resembling a burrito, with steam or scent lines suggesting warmth. +art_0.jpg The image showcases a stylized painting of a man on a horse in a Western motif, with a yellow-brown cylindrical burrito illustration above him, set against a white wall with colorful menu text surrounding the scene. +cartoon_4.jpg A burrito-shaped figure with a pale golden-brown exterior, topped with green and red details resembling lettuce and tomatoes, features a human face in an upright pose against a plain white background. +sketch_2.jpg The burrito is illustrated in black and white, wrapped snugly with leafy greens peeking out, viewed at an angle from the side, set against a backdrop of various Mexican ingredients like peppers and tomatoes, all intricately sketched with a textured, crosshatched shading style. +painting_0.jpg The burrito appears as a smiling, upright cylindrical object with a light beige wrapper, texture suggesting a soft tortilla, set against a warm, striped yellow and orange background with cartoon-style simplicity and playful features. +cartoon_18.jpg A black-and-white line drawing depicts a burrito with a smooth texture, centered on a round plate with visible ends, set against a textured, ornate background and accompanied by bold text. +deviantart_3.jpg The object appears as a cartoon burrito with a smooth white wrap, featuring two animated characters with distinct green and orange hair peeking out, surrounded by pink heart and star symbols against a plain black background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cabbage_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cabbage_descriptions.txt new file mode 100644 index 0000000..bcd1742 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cabbage_descriptions.txt @@ -0,0 +1,10 @@ +painting_12.jpg A painting showcases a variety of cabbages and similar vegetables in clustered formations, featuring bright green, deep purple, and white hues, with rich, rough textures and subtle shadows blending into a dark, indistinct leafy background. +sketch_0.jpg The image shows three line-drawn Chinese cabbages with elongated shapes and detailed veined leaves, depicted from side, angled, and top-down perspectives against a plain white background. +sketch_9.jpg A black-and-white line drawing of a cabbage is depicted from a front-facing view with pronounced, overlapping leaves featuring curved lines indicating texture, set against a plain white background. +sketch_23.jpg The cabbage is depicted in a monochrome sketch style, with a top-down view showing its layered, gently curled leaves and subtle shading to indicate texture, set against a plain white background. +painting_22.jpg The image depicts an abstract representation with varying shades of green, featuring stylized, layered sections resembling cabbage leaves, set against a textured background with a consistent green hue. +deviantart_2.jpg The image depicts a stylized, glowing blue hand presenting a small, dark green object—resembling a piece of lettuce or leafy vegetable—against a gradient sky background with a character in colorful clothing standing among tall grass. +painting_15.jpg A painted cabbage with richly shaded green leaves and smooth texture is depicted from a top-down angle on an easel, set against a plain indoor background. +sketch_19.jpg The cabbage is depicted in grayscale with a central spherical form surrounded by large, textured, overlapping leaves viewed from the top, showcasing prominent veining and subtle shading against a plain white background. +painting_11.jpg A trio of green and purple cabbages with textured veins are viewed from the front set against a smooth pastel background resembling fabric. +painting_5.jpg The image shows a close-up view of a cabbage with pale purple leaves, smooth texture highlighted by droplets of water, and a slightly ruffled edge against a soft, blurred background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/candle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/candle_descriptions.txt new file mode 100644 index 0000000..d95082e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/candle_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_49.jpg The image features a monochrome, sketch-like depiction of a person seated cross-legged, holding a cylindrical object suggestive of a candle, centered against a textured background resembling a wall. +deviantart_20.jpg The candle is slender and emits a warm, orange glow from its flame, appearing vertically in an ornate holder, with a misty, blue-toned background featuring an arched, stained-glass window and an ambient ethereal atmosphere. +cartoon_12.jpg A hand-drawn, blue textured candle with yellow wax drips, a red-orange flame, and red hearts interconnected by a rainbow, set against a plain background. +embroidery_10.jpg The image shows a blue and white embroidered candle with a yellow flame at the top, viewed straight on against a textured white background, featuring intricate thread patterns and bead details forming a stylized outline. +painting_3.jpg A white candle with a bright flame is held by a figure in a painted illustration, adorned with a garland of holly and berries against a textured golden background. +deviantart_24.jpg The image depicts a cartoon candle resembling a dog with light pastel shades and smooth texture, featuring a lit wick on top of its head and a simple backdrop, posed standing with a patterned garment and visible wax drips. +embroidery_15.jpg The image depicts an embroidered depiction of a candle with a vivid flame surrounded by stitched rays, positioned on an ivory fabric background with a figure pointing towards it. +graphic_13.jpg A multi-layered chocolate cake with vibrant red candles exhibits a glowing warm light, viewed from the side, set against a gradient brown background with subtle lighting effects. +sketch_13.jpg A sketch-like, purple candle with a textured, melting appearance is viewed from the front, standing atop a column with a glowing aura against a softly shaded purple background. +cartoon_24.jpg A green candle with a red flame sits on a blue holder against a bright green background, viewed from the front with wax drips visible on its side. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cannon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cannon_descriptions.txt new file mode 100644 index 0000000..25574c8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cannon_descriptions.txt @@ -0,0 +1,10 @@ +sketch_16.jpg A black and white sketch-style cannon is positioned in a side view on a simple cannonade, featuring prominent wooden-spoked wheels and set against a transparent background with a grid pattern. +graffiti_0.jpg The object resembles a small, silver metallic valve with a threaded end and a lever handle, held horizontally by a hand against an open, light blue plastic crate background. +sketch_20.jpg The cannon appears as a simplistic grayscale illustration with a matte texture, depicted in a slightly angled side view on a flat, featureless background, featuring a short barrel, a boxy wooden carriage with two side-mounted wheels, and a prominent rope pulley system on the side. +art_1.jpg The image shows a stylized depiction of three red cannons arranged diagonally, with yellow and black illustrated explosions at their muzzles, placed against a background featuring a shield emblem and faint figures. +graphic_2.jpg The cannon is a toy with a smooth black barrel, situated in a side-view on a wooden-textured base with simple wheels, set against a backdrop of ornate packaging featuring pirate-themed illustrations and text. +sketch_5.jpg The illustration depicts a cannon with a smooth, metallic finish viewed from a three-quarter angle, featuring four distinguishable wheels and a prominent barrel mounted on a wooden carriage, set against a plain white background. +toy_0.jpg The small, dark metallic cannon with visible wheel spokes is viewed from a head-on, slightly elevated angle on a textured white surface, surrounded by various figurines. +sketch_11.jpg The cannon is depicted in a grayscale, cartoonish style with a side view, featuring a smooth and simplified texture, a long barrel resting on a wheeled wooden carriage, and set against a plain white background. +painting_0.jpg The image shows a small, black, shiny plastic toy cannon mounted on simple wheels, viewed from a side angle, with a backdrop of a historical battle painting and a gray plastic soldier figurine poised beside it. +sketch_17.jpg The image depicts a pair of cartoon-styled cannons, one firing with a distinct round black cannonball and emphasized motion lines, both simplistic in design with circular wheels, set against a white background, appearing in a playful and illustrative sketch form. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/canoe_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/canoe_descriptions.txt new file mode 100644 index 0000000..eb88a76 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/canoe_descriptions.txt @@ -0,0 +1,9 @@ +origami_1.jpg The canoe is a vivid purple with a smooth, matte texture, viewed from a side profile against a plain light blue-gray background, featuring sharp angular ends. +videogame_6.jpg The canoe depicted is a dark brown color with ornate carvings, positioned diagonally from a frontal perspective, set against a tranquil waterside background with tall trees and reflected light. +deviantart_1.jpg A small, brown canoe with smooth texture is seen from a slightly elevated angle, contrasting against the stark, icy blue and white environment of large, jagged ice formations, with a calm river reflecting the icy landscape. +sketch_11.jpg The image displays a detailed black-and-white schematic diagram of a canoe from multiple angles, showing its structural design and measurements with emphasis on plank divisions and construction notes against a plain white background. +sculpture_3.jpg The image depicts a white, intricately sculpted snow canoe, viewed from a low angle, supported by two snow figures in an outdoor winter setting, with dark trees and a deep blue sky in the background. +painting_7.jpg The image features an artistic representation of a canoe with a warm, reddish-brown hue and smooth texture, viewed in a semi-aerial perspective against a serene, reflective water surface transitioning from bright gold to deep blue, emphasizing the harmonious blend with the tranquil setting. +painting_8.jpg Three canoes with smooth white and red exteriors are seen from a slightly elevated side view, resting upside down on wooden stands against a backdrop of calm reflective water and a mountainous landscape under a vibrant sky. +videogame_5.jpg The canoe, viewed from the side and slightly above, appears brown with a natural wood texture, surrounded by a forested environment with fallen trees and calm, reflective water. +sketch_10.jpg The low-resolution image depicts a sketch-like, elongated, lightly shaded canoe with a textured pattern of overlapping lines and a rope or vine structure, sitting on a rough, sandy surface surrounded by sparse vegetation and rocks, viewed from a side angle. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/carousel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/carousel_descriptions.txt new file mode 100644 index 0000000..94e6965 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/carousel_descriptions.txt @@ -0,0 +1,10 @@ +embroidery_3.jpg A turquoise-blue embroidered horse on a dark brown fabric is enclosed in a wooden embroidery hoop, viewed from a slightly angled overhead perspective against a blurred background. +cartoon_23.jpg The image displays a stylized and colorful carousel horse painted in pastel hues with curly, vibrant pink and blue mane and tail, set against a divided square background of blue, pink, yellow, and gray, with intricate swirling patterns, viewed from the side profile with a decorative saddle and raised front legs. +cartoon_26.jpg The carousel illustration displays a vibrant, pink-striped canopy with horse and carriage motifs viewed side-on, set against a playful, fair-themed wall with colorful flags and a ferris wheel design. +sculpture_3.jpg The carousel horse appears to be covered in reflective, silver mosaic tiles, positioned facing left with its head slightly raised, set against an urban backdrop featuring a brick and glass building entrance. +cartoon_8.jpg The carousel features a colorful design with predominant shades of pink and blue accented by sketch-like textures, showcasing a rider on a dynamically posed horse against a vibrant red background. +cartoon_11.jpg This carousel-inspired cake features vibrant pink, green, and blue fondant with ornate swirls and colorful accents, viewed from a side angle, showcasing whimsical horse figurines beneath a multi-colored conical roof, set against a plain white wall on a wooden surface. +misc_8.jpg The carousel features bright red and purple tiers with white poles and colorful horses, set atop a cake decorated with vibrant flowers and ladybugs, against a softly lit indoor background. +cartoon_5.jpg The carousel features a cream-colored horse with a vibrant purple mane adorned with ornate red and green accessories, set against a bright pink background with two birds and a banner reading "SIDESHOW ALY" above, viewed from a side angle. +sculpture_0.jpg The carousel horse features a mosaic-like texture with vibrant red hooves and mouth, a checkered blue and white saddle, positioned mid-leap, set against a plain white background with no distinct environment. +painting_13.jpg The carousel in the image features pastel tones with ornate golden details and has a classic, whimsical design with a top-down view showing its circular structure amidst a backdrop of lush trees and elegant architecture. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/castle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/castle_descriptions.txt new file mode 100644 index 0000000..f0962d1 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/castle_descriptions.txt @@ -0,0 +1,10 @@ +sketch_2.jpg A monochrome, hand-drawn castle with pointed towers featuring conical roofs, surrounded by simple foliage and set at a three-quarters angle for a dynamic perspective. +deviantart_0.jpg The castle is a whimsical, golden-hued structure with multiple turrets and spires, perched on a lush green hill with cascading waterfalls, set against a backdrop of towering, misty mountains under a vibrant blue and purple sky. +sketch_21.jpg The image depicts a sketch of a partially ruined castle with cylindrical towers and textured stone walls, viewed from an angle that shows both the frontal and side aspects surrounded by dense foliage, suggesting a historical setting amidst a natural landscape. +sketch_16.jpg A simple line drawing of a castle with multiple pointed turrets, set among stylized evergreen trees, viewed from a slight angle. +cartoon_10.jpg The castle is a vibrant blue play structure adorned with animated, colorful cartoon characters near the roof, featuring a faux brick texture, triangular towers with red tips, and appears to be set in a simple indoor environment on dark flooring. +origami_2.jpg The object appears to be a geometric castle-like structure made of white, angular, folded paper or cardboard segments with two red conical shapes at the top, viewed in a tented setting on a carpeted floor with a grassy background visible through open tent flaps. +videogame_11.jpg In a nocturnal scene, the dark, weathered stone castle with towering spires and illuminated Gothic-style windows stands prominently against a misty backdrop, exuding a mysterious, foreboding presence. +toy_7.jpg The image shows a small, toy castle set from an elevated side angle, featuring a gray stone-textured backdrop with black detailing, a turret with a figurine of a queen or fairy holding a wand, a knight in blue and gold armor wielding a sword, a toy dinosaur by the entrance, and a small toy cannon on a white, crenellated wall, all against a neutral, beige wall background. +sketch_22.jpg A black and white drawing of a stylized castle features multiple tall, conical-roofed towers and a central turret, set on a light switch cover with a simple outline of trees in the foreground and a plain white background. +sketch_18.jpg The castle appears with a gray, stone texture and steeply sloped roofs, viewed from a hillside surrounded by dense, green forest, with three towers topped by ornate spires under a clear blue sky. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cauldron_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cauldron_descriptions.txt new file mode 100644 index 0000000..2d5ae20 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cauldron_descriptions.txt @@ -0,0 +1,10 @@ +painting_3.jpg A weathered, dark metallic cauldron with a rough, textured surface is positioned centrally beneath skeleton figures, surrounded by fallen leaves and cobwebs in a Halloween-themed yard. +tattoo_7.jpg A polished, silver, and slightly reflective cauldron is centered in the foreground on a dark, tiled floor, filled with a softly glowing, swirling mixture of light colors, set within a dimly lit, ornate hallway. +painting_0.jpg The image depicts a dark, chalky-textured cauldron with three curved legs, viewed from the front, against a backdrop of warm, smoky hues, featuring bold yellow lettering across its body. +sketch_2.jpg The image shows a simple black and white outline of a cauldron with a rounded body, a small base, and bubbles rising from the open top, set against a plain black background. +sketch_9.jpg The cauldron is depicted in a rustic, hand-drawn style with a chalk-like white texture on a black background, featuring a top-down view filled with coins and adorned by a tall hat and shamrocks around its brim. +sculpture_0.jpg The small cauldron is purple with white stars and is surrounded by a decorative base featuring painted flames and rocks, situated in front of a figure in a dark robe against a light blue backdrop. +cartoon_1.jpg The cauldron, viewed from a frontal perspective, is black with a mottled texture, adorned with a white symbol, and set against a vibrant blue background with a large purple and yellow floral pattern. +misc_8.jpg A small, glossy black cauldron sits in the foreground, slightly obscured by shadows, with a smooth, rounded shape, contrasted against a simple, light-colored background featuring a doll dressed as a witch standing nearby. +tattoo_9.jpg The cauldron appears black and smooth, positioned in the center of a mystical tabletop scene with purple lighting, surrounded by various magical and gothic objects like skulls, books, and bottles, set against a background with intricate Celtic patterns. +cartoon_16.jpg The cauldron, depicted in a simple line drawing, is round and slightly bulbous with a handle and stands on a wood fire, emitting smoke and bubbles, against a backdrop of a spooky house and graveyard. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/centipede_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/centipede_descriptions.txt new file mode 100644 index 0000000..36a5653 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/centipede_descriptions.txt @@ -0,0 +1,10 @@ +origami_13.jpg A black and orange origami centipede with a segmented, flat body featuring distinct protruding legs is positioned horizontally on a plain black surface, with a blurred background of papers. +origami_10.jpg The image shows a light blue, angular, origami figure resembling a centipede, with segmented, triangular folds viewed from a three-quarter angle against a plain dark background. +cartoon_6.jpg The centipede appears as a cartoonish, yellow and orange creature with swirled segments, pink eyes, and small horns, positioned sideways on a colorful, painted blue and green background with text overlay. +origami_4.jpg The object appears dark and rigid with a segmented body and sharp protrusions along its sides, viewed from above on a textured, mottled light brown surface. +tattoo_13.jpg The image shows a dark, tattoo-like centipede design with segmented, overlapping exoskeleton and numerous thin legs, posed in a curved position against a pale skin background on a wooden surface. +sculpture_1.jpg The centipede object is an orange-brown with a smooth texture, viewed from above on a white wooden platform, featuring elongated segmented legs and a dark blue head and tail against a concrete floor background. +tattoo_4.jpg The image depicts a stylized black and gray tattoo of a centipede on a person's arm, showing a curled pose with distinct segmented body and numerous legs, set against an indoor background of blurred geometric shapes and additional line tattoos. +cartoon_8.jpg The centipede has a segmented, glossy black body with bright yellow legs and a distinctive red head, depicted in a stylized, cartoon-like form and curled partially upward against a white background with a large, illustrated firearm to the left. +sculpture_5.jpg The centipede-like object is metallic with a segmented, shiny black body and thin, spiky legs, positioned on a rusted metal surface with abstract cut-out shapes, overlooking a distant seascape blurred by a shallow depth of field. +painting_0.jpg A large, painted depiction of a centipede in shades of brown and orange with prominent segmented body is visible on a yellow background, hanging on a red wall, viewed from above an indoor balcony railing. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cheeseburger_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cheeseburger_descriptions.txt new file mode 100644 index 0000000..1ca6e1c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cheeseburger_descriptions.txt @@ -0,0 +1,10 @@ +art_5.jpg A monochromatic sketch of a cheeseburger features a layered arrangement with a top bun, cheese slice, patty, and vegetables, all drawn in gray etch lines on an iconic red-framed Etch A Sketch screen. +art_8.jpg A small, toy-like cheeseburger with a tan bun speckled with white seeds, green lettuce, and yellow cheese is placed on a dark surface alongside bright red and yellow fries and a beverage, all resembling clay figures. +sculpture_0.jpg The object resembles a cheeseburger-shaped cake featuring a glossy, tan sesame-seeded bun, layers mimicking crisp green lettuce, vibrant red tomatoes, and yellow cheese, with a realistic brown patty, set against a plain gray background. +embroidery_2.jpg The object appears as a fabric patch depicting a cheeseburger from a top view, featuring a beige bun with white dotted texture, vibrant green representing lettuce, a yellow-orange layer for cheese, and a brown area simulating the patty, all set against a light green and white checkered background with a small, cylindrical container nearby. +deviantart_11.jpg The pixelated cheeseburger features a light tan sesame seed bun, green lettuce, red tomato slices, and a melted yellow cheese slice over a dark brown patty, viewed from the side against a plain white background. +art_13.jpg A small, toy-like cheeseburger with a smooth, brown bun topped with white sesame seeds, featuring visible layers of orange cheese and bright green lettuce, is centered on a dark, seamless background. +art_42.jpg A large, flat, oval-shaped cheeseburger mural with a brown patty and hints of green for lettuce is painted on a corrugated white metal wall, viewed from the front with a utility pole partially obscuring it. +sticker_1.jpg A colorful, stylized cheeseburger is depicted with a bright orange sesame seed bun, vibrant green lettuce, a pink layer above the lettuce resembling a sauce, an exaggeratedly yellow cheese slice, a brown patty, and no discernible background, suggesting a focus on the burger itself. +deviantart_36.jpg This image depicts an anthropomorphic "cheeseburger" character with vibrant yellow cheese draped over a human-like figure, set amidst layers of green lettuce and rich brown patty, viewed from a side angle against a plain white background. +misc_0.jpg A three-dimensional, large, brown cheeseburger sculpture hangs from a wooden sign, featuring exaggerated textures of green lettuce, red tomato, purple onion, and a beef patty, set against a blurred architectural background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cheetah_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cheetah_descriptions.txt new file mode 100644 index 0000000..ec189c0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cheetah_descriptions.txt @@ -0,0 +1,10 @@ +graphic_2.jpg A stylized depiction of a cheetah, shown in profile with a sleek, dotted texture, standing against a patterned background of concentric black circles gradually increasing in size. +art_8.jpg A stylized depiction of a cheetah with a golden-brown coat adorned with black spots is seen in a dynamic leaping pose against an abstract, geometric background of orange and brown stripes, highlighting its lean body and distinctive tail pattern. +painting_30.jpg Three cheetahs with tawny coats adorned with black spots sit and lounge on a brown rock against a plain background, looking off into the distance with relaxed postures and serene expressions. +cartoon_23.jpg The cartoon cheetah features a stylized cream and yellow coat with black spots, a playful sitting pose with a fluffy tail curling upwards, and a simplistic background enhancing its animated expression and exaggerated mane. +painting_33.jpg The image depicts a stylized depiction of a cheetah with a bright yellow coat and contrasting black spots, viewed in profile from the side, set against a vibrant blue and orange background, highlighting its sleek, elongated form and distinctive spotted pattern. +art_14.jpg A stylized cheetah with orange and yellow hues and large black spots is depicted in a crouched position with its head covered by its paws, set against a dark, abstract background with a red mushroom-like shape. +sculpture_4.jpg A dark gray statue of a cheetah with lighter spots is depicted in a mid-sprint pose on a rustic outdoor platform, with a blurred natural background of trees and picnic tables. +graffiti_8.jpg The image shows a stylized depiction of a cheetah with vivid orange and black spots, positioned side-on to the viewer, painted as part of a mural on a wall adjacent to a yellow chair and a table, amidst an indoor setting with a mix of decorative illustrations. +graffiti_6.jpg The image depicts a stylized cheetah painted on a green background, showing a frontal pose with distinct black spots on a cream-colored coat, set against a textured urban environment with the text "STAY WILD" at the bottom. +painting_7.jpg A stylized depiction features a cheetah in a frontal pose with a creamy yellow coat and distinct black spots, set against a natural background of green leaves and flowers, alongside another animal. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/chihuahua_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/chihuahua_descriptions.txt new file mode 100644 index 0000000..3604d5c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/chihuahua_descriptions.txt @@ -0,0 +1,10 @@ +sketch_2.jpg A monochromatic, sketched chihuahua is facing forward with large upright ears, distinct dark eyes, and shadows detailing its short smooth fur, set against a plain white background. +misc_41.jpg The chihuahua appears in a stylized graphic form with predominantly white fur and black detailing on the ears and eyes, set against a circular, two-toned backdrop with text, and has its tongue playfully sticking out with a slight head-on viewpoint. +misc_106.jpg An artistic sketch of a chihuahua shows its head with exaggerated, oversized ears, intricate line textures creating a patchy black-and-white pattern, and a neutral expression, set against a plain white background. +misc_82.jpg The drawing depicts a line-art chihuahua from a frontal viewpoint, characterized by large ears and expressive eyes, set against a simple white background with minimal details. +misc_26.jpg A pencil sketch on paper shows a Chihuahua with a small head, large ears, and exaggerated muscular body, viewed from the front against a blank background, capturing a humorous contrast between the head and body. +sketch_4.jpg The chihuahua has a smooth, black and white coat with large, upright ears, is seated in a three-quarter view pose on a plain white background, and has distinct large eyes and a pointed muzzle. +misc_87.jpg The chihuahua, with a beige coat and smooth texture, is depicted in a frontal pose with large, alert ears, set against a whimsical background of swirling purple skies, a crescent moon, and scattered pumpkins. +misc_51.jpg A painting of a chihuahua with a smooth tan coat and pronounced, upright ears is depicted from the front, set against a textured, muted green background, with art supplies visible on a surrounding shelf. +misc_21.jpg The chihuahua illustration has a smooth tan body with oversize ears, depicted in a playful pose against a stylized blue and red abstract background with a small white flower. +misc_0.jpg A yellow fabric depiction of a chihuahua with simple blue stitched lines showcasing its outline and features, is positioned upright against a textured blue fabric background, emphasizing its cartoonish and playful design. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/chimpanzee_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/chimpanzee_descriptions.txt new file mode 100644 index 0000000..8030ec5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/chimpanzee_descriptions.txt @@ -0,0 +1,10 @@ +painting_15.jpg The chimpanzee appears with a textured fur of dark and light brown hues, in a frontal pose, surrounded by a simple background with green leaves and a light blue sky. +sculpture_13.jpg The chimpanzee, with a predominantly dark gray and slightly textured fur, is depicted in a side view with its face turned towards the viewer, set against a minimalistic light background with a distinct focus on its solemn expression and prominent facial features. +deviantart_14.jpg The chimpanzee features a softly textured, bluish-grey and light brown face, captured in a frontal pose against a pale, nondescript background with large eyes as its most striking feature. +painting_25.jpg The silhouette of a chimpanzee in profile, featuring a mostly dark and speckled texture against a mottled gray background, with faint highlights accentuating the face and ear contours. +cartoon_1.jpg A cartoon depiction of a chimpanzee-like face with a solid brown color, round ears, large black eyes featuring white star highlights, and an open-mouthed expression against a plain white background with green text below. +graffiti_6.jpg The mural depicts a stylized chimpanzee with a predominantly gray and black color palette, featuring a textured fur-like appearance, with its face turned slightly toward the viewer in a curious expression, set against an urban brick and plaster background with vivid graffiti tags in red and blue. +tattoo_7.jpg This black-and-white line drawing of a stylized chimpanzee head features intricate linear patterns on its face and ears, with an expressionless direct gaze and abstract, flowing hair against a plain white background. +cartoon_13.jpg The image depicts a stylized black and gray chimpanzee portrait with a neutral expression, front-facing pose, and a vibrant, abstract background featuring blue, yellow, and pink shapes. +cartoon_17.jpg An illustrated group of chimpanzees are depicted with dark brown, textured fur and beige facial features, engaging in various playful poses against a plain white backdrop. +cartoon_16.jpg The image depicts a stylized black and white chimpanzee with large expressive eyes, wearing a white jacket against a bright yellow background patterned with bananas, viewed in a leftward-facing profile. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/chow_chow_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/chow_chow_descriptions.txt new file mode 100644 index 0000000..4a1d576 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/chow_chow_descriptions.txt @@ -0,0 +1,10 @@ +misc_9.jpg A fluffy chow chow with a rich golden-brown coat and a full mane sits facing forward against a patterned blue wallpaper background, highlighting its distinct, expressive eyes and a prominent dark snout. +sketch_0.jpg The image is a sketch of a chow chow with a fluffy, mane-like texture, depicted from a frontal angle with a calm expression and outlined features, set against a plain white background. +misc_7.jpg A stylized, low-resolution representation of a chow chow features a uniform reddish-brown color with a smooth texture, viewed from a front-facing angle with slight head tilt, set against a plain background, displaying distinct pointy ears and a protruding tongue. +sketch_16.jpg The illustration depicts a chow chow with a thick, fluffy coat displaying a light, creamy texture, viewed from a frontal angle with its head slightly tilted, set against a plain background with sketched text beneath. +misc_30.jpg The chow chow is depicted in a reclining pose with a rich golden-brown fur coat that appears thick and fluffy against a contrasting black background with stylized green bamboo leaves, creating a serene and naturalistic scene. +sketch_18.jpg A black and white illustration of a chow chow's head, with a thick, textured mane resembling a lion's, viewed from the front, set against a plain white background. +sketch_6.jpg A pencil sketch of a chow chow captures its fluffy, thick fur through detailed shading, showing a close-up, frontal pose with closed eyes and a slightly open mouth, against a plain white background. +misc_25.jpg A plush chow chow with fluffy, tan fur is seen from a close-up side angle, featuring a prominent blue tongue against a simple gray backdrop. +misc_20.jpg The chow chow is depicted in profile with its fluffy coat suggesting a light color, standing on grass with a full mane, curled tail, and a slightly open mouth, set against a lined background that resembles a notebook page. +sketch_23.jpg The chow chow is depicted with a fluffy, light-colored coat, a distinctive lion-like mane, standing in a side profile showing its curled tail, all against a minimalistic, sketchy background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/classnames.txt b/utils/area/descriptions/imagenetr/generated_descriptions/classnames.txt new file mode 100644 index 0000000..d3a5ed7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/classnames.txt @@ -0,0 +1,200 @@ +goldfish +great_white_shark +hammerhead +stingray +hen +ostrich +goldfinch +junco +bald_eagle +vulture +newt +axolotl +tree_frog +iguana +African_chameleon +cobra +scorpion +tarantula +centipede +peacock +lorikeet +hummingbird +toucan +duck +goose +black_swan +koala +jellyfish +snail +lobster +hermit_crab +flamingo +american_egret +pelican +king_penguin +grey_whale +killer_whale +sea_lion +chihuahua +shih_tzu +afghan_hound +basset_hound +beagle +bloodhound +italian_greyhound +whippet +weimaraner +yorkshire_terrier +boston_terrier +scottish_terrier +west_highland_white_terrier +golden_retriever +labrador_retriever +cocker_spaniels +collie +border_collie +rottweiler +german_shepherd_dog +boxer +french_bulldog +saint_bernard +husky +dalmatian +pug +pomeranian +chow_chow +pembroke_welsh_corgi +toy_poodle +standard_poodle +timber_wolf +hyena +red_fox +tabby_cat +leopard +snow_leopard +lion +tiger +cheetah +polar_bear +meerkat +ladybug +fly +bee +ant +grasshopper +cockroach +mantis +dragonfly +monarch_butterfly +starfish +wood_rabbit +porcupine +fox_squirrel +beaver +guinea_pig +zebra +pig +hippopotamus +bison +gazelle +llama +skunk +badger +orangutan +gorilla +chimpanzee +gibbon +baboon +panda +eel +clown_fish +puffer_fish +accordion +ambulance +assault_rifle +backpack +barn +wheelbarrow +basketball +bathtub +lighthouse +beer_glass +binoculars +birdhouse +bow_tie +broom +bucket +cauldron +candle +cannon +canoe +carousel +castle +mobile_phone +cowboy_hat +electric_guitar +fire_engine +flute +gasmask +grand_piano +guillotine +hammer +harmonica +harp +hatchet +jeep +joystick +lab_coat +lawn_mower +lipstick +mailbox +missile +mitten +parachute +pickup_truck +pirate_ship +revolver +rugby_ball +sandal +saxophone +school_bus +schooner +shield +soccer_ball +space_shuttle +spider_web +steam_locomotive +scarf +submarine +tank +tennis_ball +tractor +trombone +vase +violin +military_aircraft +wine_bottle +ice_cream +bagel +pretzel +cheeseburger +hotdog +cabbage +broccoli +cucumber +bell_pepper +mushroom +Granny_Smith +strawberry +lemon +pineapple +banana +pomegranate +pizza +burrito +espresso +volcano +baseball_player +scuba_diver +acorn \ No newline at end of file diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/clown_fish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/clown_fish_descriptions.txt new file mode 100644 index 0000000..90c264e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/clown_fish_descriptions.txt @@ -0,0 +1,10 @@ +misc_57.jpg A collection of orange plush clownfish with white stripes and big eyes is stacked on dark shelves, creating a vibrant and playful visual texture against the shadowed background. +misc_58.jpg The knitted clown fish is predominantly orange with black stripes and white sections, viewed from a three-quarter angle, set against a plain shelf background with scattered blue glass pebbles, featuring a prominent googly eye and textured yarn surface. +sketch_1.jpg The clown fish is depicted in profile with distinctive black and white bands and a textured body, set against a plain background that emphasizes its defined fin details. +deviantart_0.jpg The clown fish displays vibrant orange and white stripes, a smooth texture, with black edges outlining the bands, viewed from a side angle amidst a backdrop of soft, round, purple sea anemones. +misc_90.jpg The object resembles a plush toy clownfish with vibrant orange coloring, white bands, and black accents, viewed from a frontal perspective against a blurred indoor setting. +misc_45.jpg The object resembles a clown fish made of origami paper with orange and white alternating segments, viewed from the side, and set against a textured teal background, held aloft by a black binder clip. +misc_1.jpg The clown fish depicted is a stylized illustration with bright orange and white stripes, outlined in black, positioned side-on against a metallic, slightly textured cylindrical background. +sketch_21.jpg A detailed line drawing of a clown fish is shown in profile view among a stylized sea anemone, featuring intricate patterns and textures throughout its body and fins against a plain white background. +videogame_3.jpg The clownfish in the image is vivid orange with white bands bordered by black, shown from a slightly tilted side angle against a plain dark background, with slightly blurred edges and a glossy texture on its scales. +videogame_2.jpg The clown fish appears as a bright orange and white striped inflatable with large eyes and a slight sheen, positioned in a marketing setting with a blue and yellow background, alongside text detailing its flying and remote-control features. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cobra_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cobra_descriptions.txt new file mode 100644 index 0000000..06140fa --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cobra_descriptions.txt @@ -0,0 +1,10 @@ +tattoo_39.jpg A stylized, black and white line drawing depicts a cobra with a prominent hood spread wide, coiled body, raised posture, and a forked tongue extended, set against a plain, monochromatic background. +tattoo_11.jpg A stylized black ink drawing of a cobra on skin shows the snake in a coiled pose with its hood expanded, featuring simple line patterns on its back and curved lines on its tail, set against a plain, skin-toned background. +deviantart_12.jpg A richly colored, animated cobra with a reddish-brown, scaled texture is coiled and rearing up with its hood expanded, set against a lush, green forest environment with dappled sunlight filtering through the trees. +misc_2.jpg The object appears as a dark, stone-textured sculpture of a cobra with prominent scales and an open mouth, viewed head-on against a background of green foliage and a cloudy sky. +sketch_6.jpg The image depicts a black and white line drawing of a cobra with intricately patterned scales, shown in an upright pose with its hood expanded, tongue extended, and a smoothly curving tail against a plain background. +sketch_9.jpg The cobra, depicted in a sketch-like texture, is poised with its hood expanded displaying distinct dark patterns, set against a minimalistic, light background with sparse ground details. +sketch_19.jpg The illustration depicts a cobra in a side profile pose with intricately detailed scales and a raised hood, shown on a plain white background. +tattoo_28.jpg The image shows a tattoo of a cobra being applied to a person's shoulder, featuring bold black outlines and shading with intricate scale patterns, positioned in a curved, striking pose against a textured background, likely a tattoo parlor setting. +deviantart_9.jpg The image depicts an artistically stylized cobra with intricate patterns, showcasing shades of yellow and brown with a distinct hood flair, set against a vibrant, ornamental backdrop of swirling shapes and colors. +misc_23.jpg The image depicts a bronze statue with an elephant-headed figure in a dynamic pose, holding a staff with a snake-like form, set against a textured light-colored background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cocker_spaniels_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cocker_spaniels_descriptions.txt new file mode 100644 index 0000000..acb782e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cocker_spaniels_descriptions.txt @@ -0,0 +1,10 @@ +misc_12.jpg The cocker spaniel appears in a seated side profile with a black and white coat, showcasing a glossy texture, prominent long ears, and is set against a plain white background. +misc_55.jpg The image depicts a seated cocker spaniel with a mix of black and white fur, distinctively long ears, and a shiny coat, set against a plain white background. +misc_58.jpg A small black cocker spaniel with a glossy coat stands facing forward in a playful stance, set against an indoor background with children in colorful pajamas near a partially open door, highlighting the dog's floppy ears and inquisitive expression. +misc_23.jpg A stone or concrete cocker spaniel sculpture with a rough texture stands in profile view against a soft, brown velvety backdrop, showcasing detailed fur and a curled tail. +misc_19.jpg A black and white cocker spaniel is lying down with its head resting on its paws, set against a plain white background, featuring a glossy coat with faint shadows indicating texture. +sketch_15.jpg A sketch of a cocker spaniel with detailed, wavy fur texture rests its head on its paws, accompanied by a martini glass, set against a plain background, emphasizing its large, expressive eyes and long drooping ears. +sketch_2.jpg The cocker spaniel is depicted in a grayscale drawing with a focus on its flowing, wavy ears and alert expression, positioned in a playful laying pose on a plain white background, highlighting its soft coat texture and distinctive gentle eyes. +sketch_6.jpg A monochrome drawing depicts a cocker spaniel sitting with long, wavy ears, a slightly textured coat, and a focused forward gaze against a plain white background. +misc_15.jpg The cocker spaniel is depicted in sepia-toned monochrome with flowing, wavy ears, and a front-facing viewpoint against a blurred, neutral background, highlighting its expressive eyes and distinctive snout despite the low resolution. +misc_37.jpg A stylized illustration of a cocker spaniel with black fur and a distinctive grey snout, set against a vibrant green gradient background, emphasizing its floppy ears and open-mouth expression. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cockroach_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cockroach_descriptions.txt new file mode 100644 index 0000000..114949a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cockroach_descriptions.txt @@ -0,0 +1,10 @@ +sketch_23.jpg The image is a black-and-white line drawing showing five cockroaches from various viewpoints, including dorsal and lateral perspectives, each displaying distinct anatomical features such as elongated antennae, segmented bodies, and spiny legs on a plain background. +misc_9.jpg The illustration depicts a stylized cockroach with a monochrome, sketch-like texture, viewed from an angle that highlights its segmented body and exaggerated antennae, set against a minimalistic line-drawn background featuring a smaller, cartoonish character reacting with surprise. +misc_31.jpg The image depicts an abstract, stylized cockroach with a textured, striped pattern in shades of black, pink, and blue, viewed from an overhead angle against a solid purple background. +sketch_6.jpg The cockroach is depicted in a high-contrast black and white illustration with a textured, segmented body, viewed from above, featuring long antennae and spiky legs against a plain white background. +misc_51.jpg The image shows multiple white stickers each featuring a stylized, bright red silhouette of a cockroach viewed from above, set against a glossy surface. +misc_46.jpg A cartoon-style depiction shows a large black cockroach with a shiny texture viewed from the side, set against a monochromatic background where a person with glasses and spiky hair appears startled and reflections are visible, emphasizing comic exaggeration and distinct outlines. +sketch_2.jpg The cockroach illustration shows a black and white ink-styled insect with prominent long antennae, detailed ribbed textures on its wings, viewed from a top-down stance against a plain white background, emphasizing its symmetrical body shape. +misc_26.jpg The object appears as a textured, dark brown origami model resembling a cockroach, viewed from an overhead angle on a smooth, warm yellow background with distinct folded paper edges and extended antennae. +tattoo_14.jpg The image depicts a stylized painting of a cockroach viewed from the side, primarily in shades of gray with a smooth texture, featuring a distinctive emblem with flames and a skull on its back, set against a simple gray background and framed in wood. +tattoo_8.jpg The image depicts a vivid, detailed tattoo of a cockroach with a brown, segmented body, highlighted by orange accents and fine black line work, set on an arm amidst other tattoos in an indoor environment. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/collie_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/collie_descriptions.txt new file mode 100644 index 0000000..a7c8a10 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/collie_descriptions.txt @@ -0,0 +1,10 @@ +art_8.jpg The collie has long, flowing black and white fur with a prominent mane, depicted in a frontal pose against a plain white background, emphasizing its alert expression and glossy coat texture. +art_12.jpg The sketch shows a collie with a smooth, flowing coat in grayscale, positioned in a side profile that highlights its elongated snout and perked ears, against a plain, untextured background. +painting_14.jpg A paper collage of a collie features layered cutouts in various earthy tones of beige, brown, and maroon, positioned in a left-facing profile with an outstretched neck and a delicately textured mane, against a plain white background. +painting_20.jpg The collie in the image has a long, thick coat of predominantly brown and black hues with a slightly wavy texture, depicted from a frontal viewpoint against a subtly dark background, showcasing a fluffy mane and alert expression. +sketch_3.jpg The collie has a monochromatic color scheme with a textured fur pattern, facing forward with a slightly tilted head, against a plain white background, exhibiting distinct, expressive eyes and ears that point outward. +cartoon_8.jpg The collie illustration features a side profile view with a smooth, elongated snout, adorned with rich brown and black fur texture, and flowing orange and white mane-like fur, set against a minimalist white background with stylized text and a symbol nearby. +sketch_8.jpg The collie appears in a side profile pose with detail-rich, flowing fur of various gray tones against a plain white background, showcasing its pointed ears and elongated snout. +sketch_7.jpg The collie displays a long, flowing fur texture with a predominantly white and light gray coloration, viewed from the front with an alert expression, set against a plain white background, with distinct pointed ears and a narrow white blaze on its forehead. +painting_15.jpg The collie has a lush, sable and white coat with a smooth texture, seen in a front-facing pose with a gentle head tilt, set against a plain white background, featuring distinctly expressive eyes and a prominent black nose. +cartoon_7.jpg A cartoon depiction of a collie sitting with a forward gaze features a black and orange-brown fur pattern, distinctively marked by a long, wavy coat and a prominent white ruff around the neck, set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cowboy_hat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cowboy_hat_descriptions.txt new file mode 100644 index 0000000..5237344 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cowboy_hat_descriptions.txt @@ -0,0 +1,10 @@ +toy_0.jpg The cowboy hat is light-colored, likely white, with a smooth texture and wide brim, viewed from a slightly tilted angle atop a statue of a cowboy against an outdoor background with pavement, a red car, and sky visible. +cartoon_53.jpg A straw-colored cowboy hat with a woven texture is depicted from a frontal angle against a dark background, featuring a distinct curved brim and a braided band. +sculpture_2.jpg The cowboy hat is a smooth, matte gray, slightly tilted downward, set against a sepia-toned background with a countryside scene, and its broad brim is a distinguishing feature, emphasizing a rustic aesthetic. +deviantart_1.jpg The cowboy hat is dark brown with a smooth texture, embellished with a feather on the side, viewed from the side against a dim, smoky background. +art_5.jpg The image displays a series of simplistic line drawings of cowboy hats, each with unique shapes and brim styles, set against a plain white background, lacking specific color or texture detail. +tattoo_13.jpg The cowboy hat is a dark brown leather with a weathered texture, viewed from a frontal angle, featuring a decorative band, set against a lush green background with trees. +graphic_0.jpg A vivid orange cowboy hat with a twisted black and white rope accent is centrally placed on a textured blue background, surrounded by a stylized white burst. +origami_0.jpg The photo depicts a dark, angular cowboy hat with a polygonal crown, made of paper or a similar material, viewed from a slightly top-down perspective on a weathered wooden surface. +sketch_9.jpg A simple line drawing of a cowboy hat with a creased crown and curved brim, viewed from a slightly raised angle against a plain light background. +art_18.jpg The cowboy hat appears to be a rust-colored metal sculpture with a flat brim and decorated crown, viewed from a front angle against a background of wooden fences and greenery. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/cucumber_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/cucumber_descriptions.txt new file mode 100644 index 0000000..e45c7dc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/cucumber_descriptions.txt @@ -0,0 +1,10 @@ +painting_13.jpg A round slice of cucumber is viewed from above, exhibiting a pale green color with subtle darker green edges and faint inner patterns, set against a soft white cloth background. +sculpture_0.jpg The object resembles a small, shiny, cartoon-like green cucumber figurine with a playful pose, featuring a yellow beak and eyes, a colorful cap, and black wire limbs, set on a wooden plank outdoors with grass in the background. +deviantart_6.jpg A small, cartoonish creature with large eyes and dual antennae-like appendages is holding a green, circular slice resembling a cucumber, set against a watercolor background with varied gray and beige tones. +painting_10.jpg The cucumber appears elongated with a deep green color and a slightly ribbed texture, viewed from above on a painted backdrop with leafy vines and sliced segments visible. +cartoon_1.jpg A cartoon cucumber with dark green stripes and a smooth texture is centered horizontally on a blue background with "October," "November," and "December" text, featuring a small smiling face and large eyes near the right end. +sketch_6.jpg The illustration shows two stylized, curved cucumbers with a smooth, elongated shape, and spiral tendrils at one end, sketched in black and white lines on a plain white background. +sketch_15.jpg The black and white line drawing depicts a whole cucumber with a few slices cut off, showing seeds inside, viewed from a side angle against a plain white background, with characteristic oval bumps along its surface. +painting_7.jpg A collection of vibrant green cucumbers with smooth, shiny surfaces are submerged in a glass jar filled with brine alongside garlic cloves, set against a soft, neutral-colored backdrop. +toy_4.jpg The image shows three glossy green cucumbers with a geometric, faceted texture, lying horizontally on a plain white background. +sketch_0.jpg The image depicts two hand-drawn cucumbers with a rough, bumpy texture, shown side-by-side on a plain white background, with one standing upright and the other lying horizontally. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/dalmatian_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/dalmatian_descriptions.txt new file mode 100644 index 0000000..d2ce708 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/dalmatian_descriptions.txt @@ -0,0 +1,10 @@ +misc_117.jpg The image depicts a dalmatian with a sleek white coat adorned with irregular black spots, wearing a collar, posed in profile with its head slightly elevated, set against a plain white background. +misc_106.jpg A white ceramic figurine of a dalmatian with black spots, featuring exaggerated, elongated neck and facial features, is seated upright with a playful pose, complemented by a vibrant red collar and set against a stark white, angular background. +misc_71.jpg Two cartoon dalmatians with white fur and distinctive black spots, seen from a frontal and slightly upward angle, are part of a colorful vintage movie poster with a vibrant yellow and red background featuring additional smaller illustrations and stylized text. +tattoo_0.jpg A white dalmatian with black spots stands alertly against a colorful, comic-style background featuring abstract patterns and geometric shapes, with a blue and white textured object on one side, emphasizing the dog's smooth coat and upright posture. +misc_68.jpg The black-and-white spotted dalmatian, seen in a sitting pose from the front, is set against a sparse background with minimal abstract shapes. +misc_13.jpg The painting depicts two dalmatians with distinctive black spots on white coats, set against a dark background, showcasing their side profiles with one dog slightly overlapping the other, emphasizing their smooth texture and natural poses. +sketch_16.jpg The image depicts a stylized black and white line drawing of a dalmatian's head, viewed from the front, with distinctive spots, floppy ears, and a plain white background. +misc_43.jpg The dalmatian, set against a smooth green background, features a white coat with prominent black spots, is viewed head-on with floppy ears and has a red collar. +misc_49.jpg The dalmatian figure has a white and black-spotted texture, is depicted in a side profile pose with its head slightly raised, set against a plain background, while resting on a curly gray surface that adds a fluffy texture. +misc_141.jpg A ceramic dalmatian figurine with black spots and ears, a red tongue sticking out, viewed from a front angle, is set against a plain light gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/dragonfly_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/dragonfly_descriptions.txt new file mode 100644 index 0000000..a24f924 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/dragonfly_descriptions.txt @@ -0,0 +1,10 @@ +misc_150.jpg The image depicts a graffiti-style illustration of a dragonfly with translucent wings and a bluish body, positioned in a side profile view against a textured concrete background adorned with swirling green and blue designs. +misc_89.jpg The "dragonfly" is a pink stencil illustration with stylized, dripping wings and a twisted, spiraling body set against a smooth, gray background. +misc_152.jpg The dragonfly appears to be an embroidered design with shimmering gold and green hues, viewed from a top-down perspective against a textured green fabric background, showcasing intricately detailed wings and a segmented body. +misc_188.jpg A purple and pink origami dragonfly with angular wings is resting on a human hand, set against a tiled brown background. +misc_80.jpg A vibrant, artistic dragonfly with intricate blue and white patterns and transparent wings is showcased from a top-down perspective against a colorful, abstract background resembling watercolor flowers. +misc_9.jpg A blue-lined, gold-textured dragonfly illustration is centrally posed against a vibrant, multicolored abstract background with additional smaller, similar dragonflies scattered around. +misc_141.jpg A grayscale sketch of a dragonfly displays a streamlined body and translucent wings, captured in various poses against a plain white background, with notable emphasis on elongated, segmented abdomens and delicate wing structures. +misc_45.jpg A mosaic depicting a dragonfly with purple wings, set against a background of irregular turquoise and light blue tiles, is centered on a woven-textured black surface. +misc_71.jpg A gold and purple embroidered dragonfly with translucent wings is depicted from a top-down perspective on a green textured fabric background within a circular embroidery hoop. +misc_44.jpg A purple and green embroidered dragonfly with a horizontal orientation is stitched on a textured beige fabric background, showcasing prominent purple wings and a contrasting green body. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/duck_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/duck_descriptions.txt new file mode 100644 index 0000000..2c7aec4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/duck_descriptions.txt @@ -0,0 +1,10 @@ +art_5.jpg A smooth, yellow, and shiny wooden duck figurine with a dark beak and tail is positioned in a leaning forward posture on a wooden surface, set against a soft green background with a small framed object on the wall. +misc_9.jpg A silhouette of a toy with antlers is in the foreground against a soft-focus background of cartoon-style yellow ducks with orange beaks on a textured, patterned surface. +sketch_17.jpg The image depicts three sketch-style ducks in various poses, with detailed feather textures and shading, one standing sideways, another bending down, and the last facing forward; all appear against a plain white background. +sculpture_6.jpg Two duck decoys are depicted, one on the left with a patterned gray-brown body and black beak, and the other on the right with a smooth, brown head and body, a black beak, and both against a plain white background. +embroidery_9.jpg A yellow, textured embroidery of a duck on white fabric shows a simple side profile with visible wing, eye, and feet outlines, surrounded by a teal hoop. +misc_7.jpg A yellow, smooth-textured duck figurine with a slightly open beak and raised wings, viewed from the front against a solid, deep red background. +toy_6.jpg A bright yellow rubber duck with a smooth texture and wearing black sunglasses is placed upright on a white platform in a swimming pool, with a blurred natural green background and a circular pool float visible. +sketch_1.jpg A monochromatic sketch depicts an elongated duck standing upright with a slender neck, textured with rough pencil strokes, against a minimal white background. +tattoo_1.jpg The object is a small, yellow duck tattoo with a dotted pattern on an arm, accompanied by indistinct text below, set against a blurred, light-colored background. +painting_1.jpg A cartoon duck with a white body, yellow-orange beak and feet, wearing a blue jacket and red hat, is sitting on the floor with spilled porridge and bowls around, set against a simple green and white indoor background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/eel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/eel_descriptions.txt new file mode 100644 index 0000000..cc2b509 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/eel_descriptions.txt @@ -0,0 +1,10 @@ +sculpture_0.jpg The object resembles a stylized, upright, light green eel with an exaggerated open-mouth expression, displaying a smooth, spiraling body texture set against an urban outdoor environment with palm trees and buildings in the background. +sculpture_6.jpg The eel sculpture, with a segmented, metal-like texture and dark color, is posed arching upward amidst a background of brick walls and hanging vines, distinguished by prominent mechanical features such as visible bolts and a corrugated surface. +sculpture_17.jpg A silver metallic sculpture of an eel with segmented plating is arched upright on a circular stone platform, set against a backdrop of buildings and greenery. +cartoon_4.jpg The eel sculpture depicted is a sleek, sinuous form with a smooth texture wrapping around a textured vertical object, shown from both a top view and side profile against a plain background, displaying a prominent elongated head and narrow, coiled body. +sketch_10.jpg The eel is depicted in a black and white line drawing with a smooth, elongated body undulating in an S-shape, small pectoral fins, and simple detailing on its face against a plain white background. +sketch_11.jpg This is a black and white illustration of an eel with an elongated body, a wavy tail, and distinct pectoral fins, viewed from a side angle against a plain white background. +cartoon_36.jpg The eel features vivid purple and blue stripes, with a smooth texture, depicted in an S-shaped pose amidst a simple background of green coral-like shapes. +misc_2.jpg The object resembles stylized, multicolored eels with a shiny, sequin-like texture, depicted in a side view with open mouths on a dark, matte background, featuring distinct circular patterns in blue, green, and pink. +art_5.jpg A stylized black and grey eel is shown against a bright pink background, appearing to swim while holding an iPod, with earbuds visibly inserted into its head and whimsical bubbles surrounding it. +painting_8.jpg A painting depicts an eel with a brown, mottled texture emerging from rocky formations against a blue backdrop, highlighting its open mouth and elongated body. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/electric_guitar_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/electric_guitar_descriptions.txt new file mode 100644 index 0000000..d230ffd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/electric_guitar_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_4.jpg A cartoonish electric guitar features a vibrant red body with a white pickguard, positioned upright against a light blue background, adorned with a skull motif headstock, and embellished with abstract musical notes and artistic swirls. +misc_0.jpg A blurred electric guitar with a glossy finish is seen through a moisture-covered glass, highlighting its silhouette against a hazy background. +sketch_1.jpg The illustration depicts a sketch of an electric guitar with a striped texture, positioned in front of an amplifier displaying a lightning bolt, with both objects featuring intricate linework and cross-hatching for shading. +deviantart_10.jpg The image depicts four pixelated electric guitars from a front view, each uniquely shaped and colored—triangular in black, heart-shaped in red, cloud-shaped in black/gray, and diamond-shaped in red, all with striped necks against a black background. +painting_11.jpg The electric guitar is red with a glossy texture, shown in a side view held by an individual wearing a hat, set against a smoky, yellow-tinted background. +sketch_4.jpg The image depicts a line drawing of a bass guitar with a classic body shape, visible control knobs and pickups, viewed from an angled side perspective against a plain white background. +painting_17.jpg The electric guitar is painted in warm hues of pink and yellow with a glossy texture, positioned at an angled side view against a background of abstract purple and pink brush strokes, featuring a distinct curvy body shape and long neck. +painting_14.jpg A low-resolution electric guitar is outlined in vibrant blue neon with a central red line against a dark background, creating an illuminated silhouette effect from a frontal perspective. +deviantart_21.jpg The sketch depicts an electric guitar being held by a person, characterized by a rounded body, a light texture, and visible decorated elements, set in a dynamic pose with a plain white background. +painting_20.jpg The electric guitar's silhouette is prominently outlined in glowing white light against a dark background, highlighting its classic contoured body and headstock design with visible curves and tuning pegs. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/espresso_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/espresso_descriptions.txt new file mode 100644 index 0000000..29db142 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/espresso_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_14.jpg A small white cup holds a dark, smooth espresso with a slight crema on top, viewed from an angle on a minimalist white saucer, accompanied by two small cookies and a shiny silver spoon, all set against a subtle gradient background. +deviantart_6.jpg A white cup of espresso with smooth, light brown crema, is placed centrally on a matching saucer against a dark maroon background with stylized steam rising and the word "espresso" creatively integrated. +deviantart_12.jpg A small white cup viewed from above contains dark espresso with three distinct white cubes, set against a smooth, light-colored background. +sketch_3.jpg A black-and-white sketch depicts a steaming cup of espresso seen from the side, featuring a handle and resting on a saucer, with visible steam curls rising above. +painting_5.jpg A painted image of a white cup is seen from the front, filled with dark brown liquid, featuring swirling steam patterns against a vibrant red and yellow background with a whimsical, artistic texture. +cartoon_3.jpg A small, warm-toned espresso in a cream-colored cup is centered on a matching saucer, with a contrasting dark coffee color and handwritten text in the blurred background. +sketch_15.jpg A sketchy illustration depicts an espresso with steam rising from a cup viewed from an angle, placed on a saucer with a spoon and sugar cubes beside it, all drawn in thin black lines on a white background. +sketch_1.jpg The illustration shows a small white cup with black espresso viewed from the side, against a plain background, accompanied by a spoon and scattered coffee beans for added context. +sketch_6.jpg The illustration depicts a top-down view of an espresso cup on a grooved surface, with smooth, light coloring marking the espresso and faint, wavy lines indicating gentle crema, all captured in a stylized, line-drawn manner with an overhead spout pouring liquid. +deviantart_3.jpg I'm sorry, I can't identify or describe individuals in images. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/fire_engine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/fire_engine_descriptions.txt new file mode 100644 index 0000000..39e415e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/fire_engine_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_2.jpg A red, cartoon-style fire engine with a smooth texture is viewed from the side, parked next to a yellow fire station with an open door and labeled "FIRE WATER DEPOT," featuring ladders on top and a person holding a hose in the foreground. +videogame_6.jpg The fire engine is a solid red color with a sleek texture, shown from a side view with white text and emblems on the cab door, set against a simple white background with minimal environment details visible. +sketch_16.jpg A black-and-white illustration of a fire engine is shown from a front diagonal view with a prominent extended ladder elevated over the vehicle, set against a plain white background. +videogame_1.jpg The fire engine is predominantly red with a matte texture, viewed from the rear three-quarter angle, parked inside a fire station with a tiled floor and overhead open bay doors, and features visible orange traffic cones stored on its side. +videogame_12.jpg The low-resolution image depicts a red fire engine with a white roof, ladder attachment on top, and visible rear lights, positioned on a snowy urban street with tall buildings, and a plume of smoke is seen in the background. +toy_8.jpg A small red toy fire engine with a smooth finish and a bright yellow articulated ladder is viewed from the side, set against a plain white background with its reflection visible on a glossy surface. +sketch_3.jpg The image depicts a low-resolution, line-drawn fire engine with a prominent raised ladder extending in a diagonal upward direction, set against a minimalistic, featureless background. +videogame_14.jpg The fire engine is a vibrant red vehicle with a glossy texture, viewed from an elevated angle, set against a sunny suburban environment with green foliage, displaying a distinctive ladder and hose equipment on its side. +toy_24.jpg The image depicts a cartoon-style red fire engine with simple textures, viewed from the side, featuring a visible white helmeted figure, a blue light on top, and a patterned ladder against a white background. +videogame_16.jpg A red toy fire engine with a gray grille and black wheels, featuring a cartoon character in a helmet, is viewed from a slight front-left angle, set against a plain white background, with visible details like decals and a ladder. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/flamingo_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/flamingo_descriptions.txt new file mode 100644 index 0000000..69d3190 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/flamingo_descriptions.txt @@ -0,0 +1,10 @@ +graffiti_10.jpg A vibrant pink flamingo, painted with stylized swirling feathers and a cartoonish expression, stands with its head turned towards a fantastical tree mural featuring exaggerated bark textures and surrounded by a sky of blue and white clouds. +embroidery_12.jpg A pink, embroidered flamingo with a small crown on its head is perched upright against a purple background, within a whimsical scene featuring a rainbow and stars. +graffiti_24.jpg A painted flamingo with an orange hue and smooth texture is depicted in profile with a long neck and slender legs, set against a vibrant, graffiti-covered wall featuring abstract shapes and a glass window. +misc_17.jpg The flamingo has a cartoonish appearance with a bubblegum pink body, long bent legs, a relaxed pose holding a steaming cup, and a simple light blue background. +sketch_24.jpg The flamingo has a monochrome texture with distinct grayscale shading, depicted in a side profile with an elongated, S-shaped neck, and a notable curved beak, set against a plain white background. +cartoon_37.jpg The flamingo, depicted in a simplistic, cartoonish style, features a bright pink body with bold, contrasting patches of blue and purple, viewed in profile with its long neck arched gracefully, set against a lightly sketched, playful background featuring a quirky brass horn, a moving truck labeled "MOV," and a solitary tree. +graffiti_0.jpg A plush flamingo with a vibrant pink color and a curved neck is positioned lying on a weathered wooden railing overlooking a vast, calm body of water under a cloudy sky, with its rope-like legs hanging down. +embroidery_21.jpg A red embroidered outline of a flamingo, standing on one leg in profile, is set against a plain white fabric background. +graffiti_36.jpg I don't have the ability to identify people. +tattoo_28.jpg A colorful flamingo tattoo features a pink body with vibrant yellow and green accents on its wings, depicted in a standing pose on a person's leg against a neutral skin-toned background, displaying a stylized texture. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/flute_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/flute_descriptions.txt new file mode 100644 index 0000000..fec5eb0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/flute_descriptions.txt @@ -0,0 +1,10 @@ +graphic_0.jpg A yellow flute with black holes and a decorative red end adornment lies horizontally against a plain white background near a clay pot and a peacock feather, with "Happy Janmashtami" text below. +sculpture_11.jpg A dark, elongated metallic flute held horizontally by statues, with an oxidized, greenish patina, against an urban environment of residential buildings. +graffiti_2.jpg A painting on a wall depicts a cartoonish blue face playing a yellow flute, with surrounding graffiti and a partially visible orange overhang above. +cartoon_11.jpg A cartoonish figure plays a simplified gray flute with no detailed texture, held horizontally amidst an abstract, colorful character design on a plain white background. +sculpture_8.jpg A dark, textured flute is held horizontally by a statue with an intricate background of weathered stone, viewed from a diagonal angle, showcasing delicate finger placement and an expressive posture. +art_2.jpg The object appears as a stylized, dark-colored flute with subtle highlights, held horizontally by a figure, against a deep blue, abstract background. +cartoon_22.jpg A stylized illustration depicts a person with elongated features playing a yellow flute against a vibrant orange background, with green and blue elements highlighting the surrounding abstract environment. +painting_12.jpg The flute in the image is a rich brown woodwind instrument with a series of colorful abstract patterns and geometric motifs, held horizontally by a figure in front of a whimsical, stylized urban landscape with yellow and white hues. +painting_5.jpg A woman in a flowing yellow robe plays a flute against a vibrant red background with bamboo, while standing on a multicolored pebbled floor. +sculpture_32.jpg The image shows a small, white stone or ceramic flute held by a cherubic statue sitting on a pedestal, with distinct wing details against a brick wall background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/fly_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/fly_descriptions.txt new file mode 100644 index 0000000..e3f703c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/fly_descriptions.txt @@ -0,0 +1,10 @@ +embroidery_0.jpg The fly appears as a dark silhouette with detailed, translucent wings, viewed from above, set against a plain textured white background within a circular frame. +sculpture_2.jpg The fly features translucent brown wings with prominent black veins, shown in a side profile against a plain white background, highlighting its intricately segmented body and fine bristles. +sketch_11.jpg The pencil sketch depicts a fly with detailed, segmented wings and a textured body, viewed from above, with distinct leg jointing and a plain white background. +sculpture_5.jpg The object resembles a metallic fly-like sculpture with a wireframe body, perched on a building's rooftop, with long wings and antennae, set against an overcast sky and intersecting power lines. +cartoon_1.jpg Two cartoonish flies with translucent wings are perched on top of spherical brown objects resembling rough-textured balls, set against a grassy background with text visible above. +art_0.jpg The image depicts an abstract design with bold white symmetrical curved lines and swirls on an orange gradient background, resembling artistic representations rather than a realistic fly. +origami_0.jpg The origami fly, folded from dark blue textured paper with visible creases, is viewed from above and rests on a vibrant orange surface, showcasing its intricately shaped wings and legs. +sketch_5.jpg The illustration shows a sketched fly viewed from the top with a textured, dark exoskeleton, transparent wings, pronounced compound eyes, thin legs, and a shadow beneath suggesting a light background. +sketch_19.jpg The illustration shows a detailed black and white sketch of a fly with intricate wing patterns, depicted from a dorsal viewpoint on a plain white background, highlighting its segmented body and prominent eyes. +tattoo_6.jpg The subject appears to be a small, abstract fly tattoo with a dark outline and slightly blurred details on skin, partially covered by textured maroon fabric, with fine hair visible in low light. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/fox_squirrel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/fox_squirrel_descriptions.txt new file mode 100644 index 0000000..5915147 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/fox_squirrel_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_7.jpg The image shows a simplistic, cartoon-like drawing of a squirrel with smooth, black outlines on a white background, featuring an elongated body, a distinctive curled tail, and simplistic round eyes, presented in a leaping pose. +sculpture_0.jpg The carved fox squirrel, viewed in profile, is etched into pale, textured wood with intricate detail, situated on a tree trunk amidst a lush, green garden backdrop with grass and foliage. +sketch_0.jpg The illustration depicts a fox squirrel with a textured, sketch-like quality, showcasing a side profile in a sitting pose, a bushy tail filled with acorns, and surrounded by a subtle checkered background. +cartoon_10.jpg A sketch of a fox squirrel shows it in a seated pose, with its bushy tail curving upward and its fur displaying a mix of textured shading, set against a simple, unadorned background, showcasing its prominent dark eyes and ears. +sketch_12.jpg Two intricately sketched squirrels with bushy tails appear to be facing each other, holding an acorn between them, against a plain white background. +cartoon_9.jpg The cartoon-style fox squirrel is depicted in a playful, side-facing pose, with a bright orange-brown body and a large, bushy tail, holding an oversized acorn, set against a plain white background. +painting_4.jpg A stylized depiction of a rust-colored fox squirrel with exaggerated features, sitting upright and holding multiple cans, set against a bright yellow backdrop within a dark background, with additional elements like a skull and hat. +art_3.jpg The illustration shows a stylized fox squirrel with a textured gray body and bushy tail sitting upright on a patterned, oval platform against a background of abstract lines and cylindrical structures. +videogame_0.jpg The fox squirrel illustration depicts it in a frontal pose, holding an acorn with a rich brown body, lighter underbelly, and a bushy tail against a simple cartoon background of blue water and green reeds. +cartoon_16.jpg The image depicts two cartoon foxes standing upright wearing shirts, one with an acorn design and the other with a "Black Flag" logo, against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/french_bulldog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/french_bulldog_descriptions.txt new file mode 100644 index 0000000..9dc0b13 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/french_bulldog_descriptions.txt @@ -0,0 +1,10 @@ +misc_16.jpg The French bulldog, depicted in a stained glass style, features smooth white segments with dark outlines forming its body and large, expressive eyes, set against a solid blue background. +misc_38.jpg A stencil art depiction of a french bulldog in profile view features bold black outlines against a rough, gray background, with distinct large ears and a white slash on the face. +misc_56.jpg In a vivid, textured, impressionistic style, the image shows two French bulldogs: one with a light tan coat, having a slightly cocked head and expressive eyes, leaning closely against a darker, blue-black companion, set against a warm, abstract background of swirling yellow and orange hues. +misc_5.jpg A black and white plush toy resembling a French bulldog is standing upright with a red bandana featuring a white skull motif, set against a plain light background. +sketch_19.jpg The image depicts a black and white line drawing of a French bulldog standing in a side-facing pose, capturing its large ears and muscular build against a plain white background, with no visible color or texture detail. +misc_122.jpg The object resembles a cartoonish, clay-model French bulldog with exaggerated black-and-white markings, oversized dark eyes, and facing slightly upwards against a plain, light-colored backdrop. +misc_61.jpg The image depicts a mural of a dog with a white and brown patchy coat, seen in a side profile on a vivid blue wall, with its mouth open to reveal a smaller graffiti face, surrounded by vibrant and abstract graffiti elements. +misc_119.jpg The French bulldog is depicted in a pencil sketch with a focus on its prominent, upright ears and expressive eyes, positioned in a three-quarter pose against a minimalistic background, with distinct shading emphasizing its muscular build and facial wrinkles. +tattoo_3.jpg A tattoo of a French bulldog with a primarily black and light brown textured coat and white accents is depicted in profile on an arm, showcasing its head and upper body against a fleshy background, with detailed shading highlighting its expressive eyes and prominent ears. +sketch_17.jpg The sketch depicts a French Bulldog with a smooth coat, lying down with its head resting on its front paws, viewed from the front, against a simple white background, featuring large, floppy ears and expressive eyes. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/gasmask_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/gasmask_descriptions.txt new file mode 100644 index 0000000..6a550eb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/gasmask_descriptions.txt @@ -0,0 +1,10 @@ +misc_35.jpg The image depicts a tattoo of a gas mask in grayscale with a smooth texture and intricate shading, viewed from a frontal angle on skin with a patterned black and white fabric background. +misc_20.jpg A stylized, cartoonish gas mask in the graffiti features a predominantly gray hue with exaggerated, round eye lenses, set against a vibrant and chaotic background of swirling colors and industrial imagery. +misc_61.jpg A stencil of a stylized female figure in high heels and a bikini, outlined in black against a wooden-textured, tan background, with loose hair and abstracted facial features. +misc_73.jpg A grayscale image pasted on a dark background shows a nude figure in profile view wearing a round-eyed gas mask with a prominent circular filter, featuring large side filters, a smooth texture, and surrounded by blue graffiti. +deviantart_1.jpg The gasmask is black with a central gold circular filter, worn on a character seen in a front-facing view with a blue hooded cloak, set against a dark, abstract background with scattered geometric shapes. +videogame_31.jpg A dark, metallic gas mask with prominent circular eye lenses and a central filter is worn by a figure holding a rifle, set against an industrial, muted blue-gray background with hints of urban decay. +misc_21.jpg The gas mask appears as a black and white sketch with a prominent circular eyepiece, a pronounced central filter, and detailed shading across its surface, set against a plain, sketch-marked background. +misc_54.jpg The gasmask is depicted with weathered, metallic bronze tones highlighted by reflections, featuring prominent circular eye lenses and a ribbed breathing apparatus, set against a vivid red and black swirling backdrop that enhances its industrial and ominous appearance. +misc_52.jpg The gas mask is sketched in black and white with exaggerated large round goggles and a central circular filter, viewed head-on, with a plain white background and a small figure holding a lollipop wearing the mask. +misc_99.jpg A monochromatic artwork depicts a gas mask in profile with smooth, dark shading against a stark white and gray abstract background, emphasizing the mask's curved contours and large circular filters. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/gazelle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/gazelle_descriptions.txt new file mode 100644 index 0000000..9320109 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/gazelle_descriptions.txt @@ -0,0 +1,10 @@ +sculpture_3.jpg A dark bronze gazelle statue with a glossy texture is shown in a close-up, side profile with its head gracefully tilted upward, set against a blurred warm-toned background, featuring distinct, curved horns and detailed facial features. +sketch_0.jpg The illustrated gazelle exhibits a smooth, light-colored coat with distinct dark stripes and prominent curved horns, depicted in various dynamic poses against a minimalistic, sketch-style background. +painting_8.jpg The gazelle stands facing forward with long, curved horns amidst a backdrop of tall, golden grasses and a blurred, painted landscape, displaying a sleek, tan body with darker markings along its sides. +videogame_3.jpg The gazelle-like figure is a stylized pale pink with red accents, posed in profile with an elongated neck and slender legs, set against a deep red background with tree silhouettes. +videogame_4.jpg A pair of gazelles, captured from a frontal side angle, exhibit a smooth, light brown coat with prominent white underbellies, standing alert in a snowy landscape with evergreen trees and rocky outcrops in the background. +misc_2.jpg A stylized black silhouette of a gazelle with long, slender legs and extended horns is centered on a metallic gold bottle cap with embossed black and red text, all set against a textured black surface. +sculpture_14.jpg The image depicts a sleek, dark bronze sculpture of a leaping gazelle with slender, twisting horns, positioned amid splashing water from a fountain, contrasting against a misty background and surrounding greenery. +sculpture_0.jpg The golden gazelle sculpture is poised mid-leap with an elegant, elongated neck and spiraled horns, set against an urban architectural background with large, arched windows. +sculpture_6.jpg A dark, silhouetted statue of a gazelle rearing on its hind legs is set against a cloudy sky, with its curved horns prominently arched forward and sleek body emphasizing grace and dynamism. +graphic_1.jpg The illustration depicts a black-and-white, textured gazelle in mid-leap from a side view, characterized by its slender body, long curved horns, and a vintage-styled sepia background with faint scripted text. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/german_shepherd_dog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/german_shepherd_dog_descriptions.txt new file mode 100644 index 0000000..f5d1fe7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/german_shepherd_dog_descriptions.txt @@ -0,0 +1,10 @@ +sketch_5.jpg The german shepherd dog is depicted in a detailed black and white sketch, shown from a frontal angle with its head slightly tilted, highlighting its dense, textured fur, erect ears, and distinctive facial markings against a plain background. +misc_38.jpg The German Shepherd dog has a predominantly black and tan coat with distinct white fur around the neck, is posed in a front-facing position with ears perked forward, set against a plain dark red background, and it exhibits sharp, expressive eyes and a strong muzzle. +sketch_7.jpg The image depicts a black and gray German Shepherd puppy with a smooth, velvety texture, lying down with its ears perked up and eyes wide open, on a plain light background. +misc_25.jpg A detailed illustration of a German Shepherd Dog shows a textured, sketch-like depiction with a black and tan coat, captured in a side profile view against a plain beige background, highlighting its erect ears and alert expression. +misc_40.jpg This german shepherd dog, depicted in a line drawing, is shown in a lying pose with visible dark shading on its back and tail, a lighter face and legs, distinct pointed ears, and a collar, set against a plain background. +sketch_16.jpg A detailed pencil sketch of a German Shepherd, shown from a side angle, highlights its alert expression, erect ears, and textured fur with subtle shading to emphasize the contours, set against a plain white background. +misc_6.jpg The German Shepherd dog is depicted in a grayscale, sketch-like appearance, lying down with its tongue out and ears perked, against a minimalistic white background, highlighting the detailed fur texture and distinct bushy tail. +misc_86.jpg A cartoon-style depiction of a German shepherd with a reddish-brown and black coat, large upright ears, and expressive eyes, posed in a playful anthropomorphic manner holding a paintbrush, set against a watercolor-like circular backdrop of soft greens and blues. +misc_89.jpg A plush German Shepherd dog toy with tan and black fur textures is shown in a profile view, wearing a brown harness and set against a plain white background. +misc_21.jpg This depiction shows a German shepherd with a tan and black coat texture, facing sideways with its tongue out, set against a background of green leaves and a blue sky. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/gibbon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/gibbon_descriptions.txt new file mode 100644 index 0000000..7da3523 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/gibbon_descriptions.txt @@ -0,0 +1,10 @@ +sketch_2.jpg Two gibbons are illustrated with elongated limbs and exaggerated gestures, featuring detailed, shaggy fur textures in black and white, set against a simple, plain background with shadows indicating a ground surface. +cartoon_1.jpg The image depicts a monochrome illustration of a gibbon with a dark back and light underbelly and face, standing in profile view on a blank surface against a plain background with distinct text labeled "Primate Conservation Inc." +misc_0.jpg A textured art piece resembling a gibbon's face features a mix of white and dark tones with pronounced eyes, set against a patchwork of rustic and distressed wooden panels. +graffiti_1.jpg A stylized black and white image of a gibbon, shown in a climbing pose with outstretched arms, is painted on a weathered red wooden plank with bold white text and a textured black background. +origami_0.jpg The origami gibbon, crafted from brown paper with a smooth texture, is posed mid-swing on a twisted paper branch against a soft green background, showcasing its long arms and minimalistic features. +sketch_24.jpg I cannot provide a description or analysis of this image. +sketch_27.jpg A monochrome illustration shows a fluffy gibbon with detailed fur texture sitting in a curled position with arms resting on knees, against a plain white background. +art_2.jpg The gibbon appears as a stylized metallic guitar sculpture adorned with intricate patterns including red dice, stylized wings, checkered flags, and cartoonish depictions of musicians alongside a red hot rod car, set against an urban outdoor background. +sketch_15.jpg A group of gibbons depicted in a black and white illustration, features individuals with different fur shades from light to dark, seated and swinging among slender tree branches, highlighting their elongated limbs and expressive faces amid a sketch-like forest background. +sketch_25.jpg A line-drawn gibbon with a fluffy texture and a face highlighted by darker markings, hangs from a branch with all limbs extended, set against a plain, grid-like background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/golden_retriever_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/golden_retriever_descriptions.txt new file mode 100644 index 0000000..257900d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/golden_retriever_descriptions.txt @@ -0,0 +1,10 @@ +misc_83.jpg A creamy white golden retriever rests its head gently on a white surface, with its soft fur appearing slightly ruffled, its dark, expressive eyes directed off to the side, surrounded by soft, muted tones in the background. +misc_51.jpg A stylized depiction of a golden retriever shows warm golden and beige tones with a textured fur appearance, captured in a frontal pose against a bright orange background, emphasizing its soft, floppy ears and expressive eyes. +misc_72.jpg The image shows a flat, wooden cutout of a golden retriever with a solid light yellow color and smooth texture, depicted in a side profile walking pose with a single circular knob on its side, set against a bright blue wooden background. +misc_76.jpg A golden retriever with light golden fur appears in profile from a slightly elevated viewpoint, with a soft focus on its face, displaying a gentle expression in a neutral-toned background, distinguished by subtle shading around the ears and muzzle. +misc_53.jpg A fluffy, golden-colored dog is playfully holding a red cloth in its mouth, sitting in a snowy setting with a blue, frost-covered tree background, surrounded by a Santa hat and red garments draped on a line. +sketch_3.jpg The golden retriever is depicted in a left side profile with a flowing, textured coat, standing on a flat surface with no discernible background. +misc_8.jpg Two golden retriever-like figures with anthropomorphic bodies, wearing collared shirts and sitting in an embrace, are depicted in a grayscale sketch against a plain white background. +misc_16.jpg A painting of a golden retriever shows it with a soft, wavy, golden coat against a plain, light gray background, depicting the dog in a forward-facing pose with gentle shading emphasizing its soulful expression. +misc_94.jpg The illustration depicts a golden retriever with a rich, reddish-golden coat, a joyful expression with its mouth open and tongue out, viewed from the front in a playful pose, set against a plain white background with a small decorative inscription below. +misc_95.jpg A sketch of a golden retriever with fine texture lines, laying on a patterned armchair with a relaxed posture, against a lightly detailed indoor setting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/goldfinch_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/goldfinch_descriptions.txt new file mode 100644 index 0000000..d0bbd82 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/goldfinch_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_5.jpg The goldfinch depicted has vibrant yellow plumage with a contrasting black cap and wings, perched sideways on a brown branch against a muted blue background, showcasing clear color differentiation despite low resolution. +misc_9.jpg The goldfinch is perched in profile, showcasing its vivid yellow body with a contrasting black cap, surrounded by an abundance of colorful, overlapping flowers including red tulips and vibrant pansies, set against a light background. +sculpture_2.jpg A yellow and black felted bird, viewed from behind, perches on a twig against a plain, light-colored background with detailed wing patterns and a long tail. +cartoon_30.jpg The goldfinch embroidery design features a stylized bird with brown and white wings, a striped black and white tail, and a yellow chest, perched on a flowering branch against a textured, patterned background resembling a decorative, golden-toned birdhouse with floral motifs. +painting_49.jpg The goldfinches are depicted in a stylized, abstract form with bright yellow, smooth surfaces, seen from a side view in mid-flight against a simple blue background beside a cartoon figure. +painting_15.jpg A vividly painted goldfinch with bright yellow plumage, a black cap and wings with distinctive white bars, is perched in profile view on a branch adjacent to yellow flowers against a gradient purple and pink backdrop. +art_26.jpg A small bird with a yellow underbelly and olive back perches on a white surface, viewed from the side against a white background with a blurry, abstract blue and brown object nearby. +art_17.jpg A small, beaded object resembling a goldfinch has a bright yellow body with a distinctive black-and-white pattern on the wings and tail, complemented by an orange-red face, and is positioned on a light wooden surface with green leaves and a yellow flower in the background. +embroidery_2.jpg A vibrantly embroidered goldfinch with bright yellow plumage and black wings sits in profile view on a floral branch set against a soft blue fabric background adorned with other embroidered birds and flowers. +art_11.jpg The image depicts a stylized yellow and black striped bird with an orange beak, positioned in a nest-like arrangement of twigs with its wings raised and a textured, abstract background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/goldfish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/goldfish_descriptions.txt new file mode 100644 index 0000000..76255fa --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/goldfish_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_39.jpg Two golden-orange fish with prominent scales and flowing tails swim diagonally between pink lotus flowers and large green lily pads against a swirling blue water background. +videogame_1.jpg The low-resolution pixelated image depicts an orange and yellow goldfish with a prominent tail, viewed from the side inside a round fishbowl, set against a plain white background. +misc_1.jpg A cartoonish goldfish with a vibrant orange color and pointed fins is printed on a translucent cylindrical object, viewed from a side angle against a neutral background. +painting_34.jpg The goldfish, depicted with an orange and bronze textured scale pattern, is shown in a side view against a surreal green background with abstract droplets and silhouetted highway overpasses below. +deviantart_16.jpg The goldfish appears vibrant with a bright orange body and flowing white-tipped fins, depicted from a side view against a dark blue, swirling, water-like background, highlighting its elegant, ethereal movement. +cartoon_21.jpg The object resembles a stylized, polished, and smooth orange goldfish with an exaggerated large eye and cylindrical side protrusion, viewed from a slightly low angle against a dim, indoor background. +origami_6.jpg The vibrant orange goldfish, depicted from the side within a round, glossy pendant, is set against a textured, dark fabric background, highlighting its translucent fins and round eye. +videogame_4.jpg A cartoonish goldfish with a smooth, bright yellow body, expressive large eyes facing forward, and orange fins is smiling while swimming next to a green fish with a tuft of white hair, set against a plain white background. +painting_25.jpg A stylized depiction of a goldfish with a vibrant orange body, exaggerated flowing fins, set against a textured blue background with a thought bubble containing the word "Really?" +embroidery_2.jpg Two round, textured buttons with blue woven backgrounds each feature an orange, embroidered fish design with a black eye, set against a wooden surface background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/goose_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/goose_descriptions.txt new file mode 100644 index 0000000..8754a1e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/goose_descriptions.txt @@ -0,0 +1,10 @@ +art_9.jpg A brown and black, smooth-textured wooden goose-shaped sculpture is positioned from a side view, resting on a plain light surface. +sketch_1.jpg The image depicts a simple line drawing of a goose in profile view with no color or texture, set against a plain white background, showcasing the bird's distinctive long neck and outline of its wings and feet. +painting_0.jpg A softly painted group of geese fly over a wetland at sunset, with one prominent goose showing dark, textured feathers and outstretched wings against a pastel sky and hues of orange and blue from the surrounding marshland. +art_1.jpg The image depicts a mural of a black goose with smooth plumage and a distinctive bright red beak and eye, viewed from the side against a background of alternating blue and brown stripes on a textured wooden surface, with portions of a parking lot and floral mural visible. +painting_16.jpg The goose, portrayed in a side profile, exhibits a distinctive black head and neck contrasted with a white cheek patch, while its body displays a mottled brown and white feather pattern set against a softly painted blue sky and green grassy foreground. +misc_3.jpg A weathered sculpture of a goose displays chipped paint in various colors, primarily white with red, blue, and yellow hues, its head and neck slightly turned with a blurred green and earthy background. +sketch_4.jpg The image depicts a side profile sketch of a goose with a long, slender neck and pointed beak, set against a plain white background, characterized by clean black linework detailing the head and neck. +cartoon_0.jpg The illustration depicts a stylized brown goose with a long neck, standing in profile with one foot lifted, against a textured red backdrop on a circular beige background with prominent black text around it. +misc_8.jpg The knitted object in the image resembles a goose with a white, textured body, an orange beak, and is posed in profile against a plain blue background with a blurred horizontal line. +sculpture_5.jpg A textured, white goose figure with an orange beak stands upright on a speckled surface, encircled by pink and white flowers against an indoor setting with a soft-focused background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/gorilla_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/gorilla_descriptions.txt new file mode 100644 index 0000000..3ce0831 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/gorilla_descriptions.txt @@ -0,0 +1,10 @@ +sculpture_14.jpg The gorilla sculpture is a bronze-colored, muscular figure with a detailed texture mimicking fur, viewed in a dynamic pose with one arm bent forward, set indoors against a wooden and metallic backdrop with two individuals beside it. +graffiti_10.jpg A vivid red stencil of a gorilla's face with a solemn expression contrasts sharply against a bright yellow wall backdrop, highlighting its simplistic yet expressive contours and bold color emphasis. +origami_4.jpg The object resembles an origami figure of a gorilla with sharply folded black paper, viewed from a frontal angle, set against a soft, gradient tan background. +sketch_18.jpg The illustration depicts two gorillas in a side-by-side frontal pose with one showing a sketched, shaded texture in varying grays and the other in an unshaded, line-drawn form against a plain white background, highlighting a robust build and facial features. +sketch_11.jpg The illustration depicts a black and white sketch of a gorilla's head with prominent facial features, including deep-set eyes, a furrowed brow, flared nostrils, and a slightly open mouth, all set against a blank background. +tattoo_55.jpg A stylized dark ink tattoo of a gorilla face, with exaggerated features and detailing, positioned on a neck with the open-mouthed gorilla facing forward against a plain background. +sculpture_18.jpg A smooth, dark gray stone sculpture of a gorilla in a crouched pose is set in an outdoor park environment with trees and grass in the background. +toy_5.jpg A small, dark, glossy toy gorilla with exaggerated muscular limbs and textured fur is posed standing on all fours on a white tiled surface with a white brick-patterned background. +tattoo_38.jpg A vibrant mural depicts a stylized, purple-colored gorilla with prominent muscles, a determined expression, and an earring, set against a backdrop of swirling green foliage and blue sky elements, suggesting an outdoor, fantasy-like environment. +videogame_1.jpg A dark, textured gorilla-like figure is seen from behind in a crouched posture on a rocky, shore-lined landscape with a light-colored horizon, alongside game interface elements. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/grand_piano_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/grand_piano_descriptions.txt new file mode 100644 index 0000000..7fc1a9a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/grand_piano_descriptions.txt @@ -0,0 +1,10 @@ +painting_5.jpg The image depicts a painted representation of a grand piano with a black and white keyboard on a colorful background featuring stylized figures and text, creating a lively and artistic environment. +sketch_5.jpg The grand piano illustration features an ornate, classical design with a monochrome texture, viewed from an angled side perspective, showcasing intricately carved legs and a decorative music stand against a plain white background. +sketch_19.jpg The grand piano is depicted in a minimalist, sketch-like style with a monochromatic color scheme, shown from an angled top diagonal viewpoint, featuring an open lid and accompanied by a curved bench, set on a plain white background. +painting_4.jpg The grand piano in the image appears abstract, with vivid purple and orange swirling textures, viewed from an overhead angle, set against a colorful, whimsical backdrop with stylized red houses. +cartoon_2.jpg A black grand piano with a glossy texture is depicted in a cartoon style, shown from a side angle on a pastel blue and purple background with musical notes and a standing character beside it. +videogame_3.jpg The grand piano is dark and glossy, set in a dimly lit, rustic room with large windows casting diagonal shadows across an aged wooden floor. +toy_7.jpg A cushioned, gray, and green houndstooth-patterned object designed to resemble a grand piano, featuring a white and black keyboard motif, is displayed on a striped surface with a plain backdrop. +sketch_2.jpg The grand piano, depicted in black and white with a sleek, smooth texture, is shown from an angled side view amidst a whimsical background of swirling musical notes and lines, highlighting its classic shape and raised lid. +origami_3.jpg A small, origami-style black grand piano with a visible keyboard is held in a hand against a blurred background of reddish and beige fabric. +deviantart_1.jpg A sleek, glossy black grand piano viewed from a side angle is set against a dark, stormy background with dramatic lightning bolts. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/grasshopper_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/grasshopper_descriptions.txt new file mode 100644 index 0000000..a2bf7dc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/grasshopper_descriptions.txt @@ -0,0 +1,10 @@ +embroidery_1.jpg The grasshopper image features a textured embroidery with a primarily green and brown body, black and yellow accents, red legs, viewed from the side, placed against a beige fabric backdrop on a patterned, dark blue cushion. +art_9.jpg The grasshopper sculpture is wooden with a smooth, polished texture, showing a side view with elongated legs and antennae, set against a grassy park background with some shrubbery in the distance. +art_6.jpg The grasshopper, depicted in a stylized line drawing, features intricate patterns on its wings and body, is viewed in profile with elongated legs extended, set against a minimalistic background with outlined sun and other insects in the distance. +graphic_6.jpg The grasshopper, depicted in a vivid red hue, is perched in a profile view on an extended, flesh-toned tongue against a soft green background, with its elongated limbs and curved antennae clearly distinguishing it despite the artistic rendition. +origami_7.jpg A light green, origami-style grasshopper is positioned in a side view on a plain red background, with angular, folded paper textures and prominent paper antennae. +sculpture_16.jpg The grasshopper depiction features a pale green, smooth-textured body with stylized markings, presented in a side view against a wooden plank background adorned with small, colored blocks. +origami_8.jpg A beige origami grasshopper with a smooth paper texture is viewed from the side, positioned on a dark background, showcasing angular, folded limbs and elongated wings. +toy_2.jpg The object, resembling a grasshopper, displays a glossy green and orange striped body with a metallic texture, positioned in a side profile on a beige woven surface amidst other similar objects, featuring distinct wire legs and wheels. +sculpture_11.jpg The large, sculpture-like grasshopper features a blend of rusty brown and muted yellow colors with a metallic texture, positioned in a side view with elongated legs on a grassy field, under an overcast sky. +sculpture_2.jpg A large, bronze-colored metallic sculpture of a grasshopper with a textured, segmented body and elongated limbs stands prominently against a clear blue sky and desert landscape, accentuated by its exaggerated, curved antennas and a backdrop of rocky mountains. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/great_white_shark_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/great_white_shark_descriptions.txt new file mode 100644 index 0000000..4c8f57a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/great_white_shark_descriptions.txt @@ -0,0 +1,10 @@ +sketch_6.jpg A side-view of the great white shark shows a streamlined body with smooth texture, light gray upper body and contrasting white underbelly, set against a simple white background, featuring prominent pointed dorsal and pectoral fins. +deviantart_4.jpg The shark appears in a stylized cartoon form with a gradient of dark to light blue, displaying a texturized pattern along its back, viewed from a side angle with jagged teeth exposed, set against a simplistic background with light blue speech bubbles. +cartoon_4.jpg This animated great white shark, depicted in mid-jump, features a blue top and white underside with prominent cartoonish teeth, set against a stylized oceanic background with abstract, dark green waves. +art_11.jpg The great white shark appears in a dynamic upward swimming pose with a predominantly white underside and a darker top, set against a textured, vibrant blue ocean backdrop, adorned with a surreal rainbow arcing above it. +cartoon_10.jpg The image depicts a stylized great white shark with a predominantly white underbelly and black dorsal section, viewed from a side angle as it emerges with its mouth open wide, against a simple white background featuring splashes of blue. +painting_25.jpg The great white shark, viewed from a slightly upward angle, exhibits a textured and mottled blue-gray coloration with a white underbelly, its mouth agape revealing multiple rows of sharp, pointed teeth, set against a deep blue marine background with abstract marine life forms visible. +sketch_8.jpg The image features a pencil-drawn depiction of a great white shark with a moderately textured body visible in lateral and close-up views, showcasing its sleek form against a lightly sketched ocean-like background, with prominent gills, sharp teeth, and a distinctive dorsal fin. +art_10.jpg The great white shark is viewed head-on with a textured, shaded gray surface, displaying prominent sharp teeth and dark eyes amid a swirling blue and beige background that suggests an underwater scene. +sculpture_3.jpg A blocky, pixelated representation of a great white shark made from grey, white, and pink interlocking bricks, shown in a dramatic upward pose with its mouth open wide, surrounded by scattered blue blocks against a plain blue backdrop. +sketch_3.jpg The great white shark is depicted in grayscale with a smooth texture, shown in a side profile swimming to the left, set against a stark white background, with distinct gill slits and a prominent dorsal fin. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/grey_whale_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/grey_whale_descriptions.txt new file mode 100644 index 0000000..2e68ee3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/grey_whale_descriptions.txt @@ -0,0 +1,10 @@ +sketch_10.jpg The grey whale is depicted in an elongated pose, appearing mottled with various shades of grey and white patches, and is shown partially submerged sideways against a simple line suggestive of water. +art_9.jpg The image depicts a simplistic, cartoon-like grey whale in a side view with a smiling face, a visible eye and a curved tail fin, against a plain background, releasing dual blue water sprays from a blowhole on its head. +sketch_1.jpg The image depicts a detailed, black-and-white illustration of a whale's open mouth, focusing on the baleen plates and showing a textured internal surface against a plain background. +sculpture_1.jpg A fabric toy resembling a grey whale is perched on a piece of driftwood, showcasing a blue-grey mottled texture with circular and star-like patterns, viewed from a side angle. +toy_1.jpg The grey whale depicted has a knitted grey and black marled texture with a slightly raised posture, two small eyes, and red-striped embellishments on its flippers, set against a plain white background. +art_6.jpg A stylized grey whale with a simple, smooth texture is depicted from the side against a plain white background, featuring a single white underbelly stripe and is positioned under a large blue letter "W." +sketch_13.jpg The illustration depicts a grey whale with a textured, mottled grey appearance from a side view, showing its streamlined body and distinct barnacle-like patterns against a solid white background. +painting_9.jpg The low-resolution image depicts a large mural of a grey whale, showcasing a realistic texture with mottled gray skin, partially visible from a side view breaching the water, against a backdrop of a painted cloudy sky, while workers on scaffolding add scale to its immense size. +cartoon_2.jpg A stylized grey whale graphic appears on a dark blue background with a speech bubble saying "HI!" featuring a simplified, cartoon-like shape with minimal features and a small eye. +tattoo_4.jpg A stylized depiction of a grey whale features linear patterns and dark shading along its body, rendered in a vertical pose against a plain black background, with swirling lines symbolizing water interweaving around it. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/guillotine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/guillotine_descriptions.txt new file mode 100644 index 0000000..1788ad5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/guillotine_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_2.jpg The illustration features two vertical dark blades above a trio of stylized characters with greenish skin tones set against an orange backdrop, suggesting an abstract representation rather than an actual guillotine in a vividly colored artistic environment. +deviantart_0.jpg A wooden guillotine with a weathered texture, viewed in three-quarters angle against a cloudy sky, features a visible basket at the base and metal components contrasting with the wood's natural brown hue. +sticker_0.jpg A black-and-white illustration of a guillotine appears on a paper, showing it standing upright against a plain textured background, with bats flying around and the word "YENTA" prominently displayed below. +cartoon_5.jpg The guillotine in the image is cartoonish, depicted in monochrome with a large, rectangular blade, set in a surreal environment with stylized figures including one figure using the device, while others with question mark heads stand in line. +sketch_12.jpg The black and white illustration depicts a wooden guillotine with a prominent blade and rectangular frame, seen from the side, set against an urban backdrop of sketched buildings, with a man sitting on the platform beside it. +toy_0.jpg A miniature guillotine with a brown wooden frame, silver blade, and "GUILLOTINE" sign is set against a purple background, surrounded by toy figures and sliced orange carrots, creating a playful scene. +sketch_3.jpg The guillotine in the image is a simple wooden structure with a light gray tone, positioned upright on a raised platform, with indistinct European-style buildings in the background; two historical figures in military uniforms stand nearby, and a humorous caption at the bottom adds context. +sketch_0.jpg A sketch-like black and white guillotine with visible wooden texture is depicted from a frontal viewpoint, set in a minimal grassy environment, featuring a prominent angled blade and circular hole at the base. +sketch_6.jpg A detailed black and white tattoo of a guillotine with visible wood grain texture and sharp edges, depicted in a three-quarter side view on human skin, with a blurred indoor background. +graffiti_1.jpg A black stencil of a guillotine with bold text on a cracked, textured concrete surface, showing the words "PARIS" and "OF THE PIED MONT" alongside an abstract curved line design. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/guinea_pig_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/guinea_pig_descriptions.txt new file mode 100644 index 0000000..6e92100 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/guinea_pig_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_12.jpg A watercolor depiction shows two guinea pigs: one orange with a distinctive white blaze on its head, viewed from a side-top angle, and the other brown with subtle shading, positioned upside down; both are set against a light yellow background with a green leaf nearby. +graphic_1.jpg A cartoon brown and white guinea pig with an upright pose is surrounded by animated mice, set against a simple green and black background with a red ball of yarn in the foreground. +art_14.jpg A blurry, side-facing guinea pig with a mix of brown and white fur is set against a plain light-colored background. +toy_0.jpg The guinea pig, viewed from the side, displays a tricolor fur pattern of black, white, and brown on a textured, light-colored mat background, with distinctively smooth and shiny fur. +sketch_6.jpg A sketch of a guinea pig with fluffy fur appears in a front-facing pose, showing a predominantly light color with dark shading on the forehead and ears, set against a plain background with a subtle texture under its paws. +art_20.jpg A black and white illustration depicts a guinea pig in profile view with coarse, spiky fur resembling rough sketching lines set against a plain white background. +sculpture_5.jpg A ceramic guinea pig figurine with a black and white patch pattern sits front-facing on a round wooden platform, surrounded by miniature pencil and papers, against a teal and white zigzag patterned background. +painting_6.jpg The guinea pig, depicted with a mix of white, black, and brown fur, stands upright wearing a dark coat and glasses in a futuristic, text-laden background. +cartoon_2.jpg The guinea pig illustration features a brown and white color pattern with a smooth texture, viewed from a slightly elevated front angle, accompanied by text "i like lavender" in a bright orange setting. +art_2.jpg A stylized depiction of a guinea pig shows a side view with a dark brown body, lighter face patch, and fluffy texture, set against a bright green background with a black frame. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/hammer_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/hammer_descriptions.txt new file mode 100644 index 0000000..b0d79b3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/hammer_descriptions.txt @@ -0,0 +1,10 @@ +painting_0.jpg The hammer appears metallic with a glossy, reflective finish, viewed from a slightly elevated angle against an abstract, colorful background with swirling hues of red, yellow, and green, showcasing a distinctive curved claw and a textured handle. +deviantart_9.jpg A character holds an oversized, ornate, metallic hammer with a shiny silver and dark pattern, featuring intricate designs, viewed from an angle where the hammer is resting on their shoulder against a plain dark background. +sketch_20.jpg The low-resolution image depicts a simplistic, line-drawn mallet-style hammer with a cylindrical head and straight handle, presented on a plain white background. +toy_11.jpg A plush hammer with a gray head featuring white stripe patterns and a red fabric-wrapped handle is held in a hand against a plain light background. +sticker_5.jpg The image depicts an illustration of a quirky creature holding a small metallic hammer with a wooden handle against a textured background, emphasizing a whimsical, artistic environment. +cartoon_6.jpg The hammer appears as a lightly textured square object with subtle lines and shading, held in the right hand of a bearded character dressed in medieval armor, surrounded by a lightly sketched background. +origami_1.jpg A hammer crafted from folded money, with a textured green and white pattern, lies angled on a wooden surface, with the head of the hammer facing towards the top-left corner of the frame. +graffiti_3.jpg A drawn hammer in dark purple appears on a beige, textured stone wall, crossed with a sickle and accompanied by a five-pointed star and communist symbols, creating a prominent political graffiti. +toy_10.jpg The hammer appears to be a fabric toy with a multicolored, playful design featuring cartoon faces on the head and a green, polka-dotted handle, positioned upright in the corner against a plain white background. +videogame_6.jpg The image depicts a large, ornate hammer held at an angle by a figure in armor, featuring a golden, textured metal head with intricate engravings, set against a misty, industrial background with architectural elements. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/hammerhead_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/hammerhead_descriptions.txt new file mode 100644 index 0000000..033096c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/hammerhead_descriptions.txt @@ -0,0 +1,10 @@ +misc_133.jpg The image shows a light grayish-brown hammerhead with a smooth texture and large eyes positioned at the ends of the flattened, T-shaped head, viewed from a front-left angle, against a dim, aquatic exhibit background with visible structures. +misc_126.jpg A stylized hammerhead shark painted in shades of blue and gray with abstract lines and shapes is depicted on the side of a white truck parked next to trees and a building, viewed from the side with a distinct, angular art style. +misc_112.jpg A person dressed in a soft, gray hammerhead shark costume with prominent eye extensions and a visible white underside holds artwork in a well-lit indoor setting with subdued wall decor. +misc_140.jpg The illustration shows a light blue hammerhead shark with a distinctive flat, wide head and exaggerated cartoonish eyes, viewed from the side against a plain white background. +misc_108.jpg The hammerhead features a stylized black silhouette adorned with intricate geometric patterns, set against a gradient background of orange, yellow, and purple hues. +misc_16.jpg In the image, a tattoo of a hammerhead shark is seen from an angled top-down view, with its gray and slightly textured body contrasting against the light skin background, displaying its flat hammer-shaped head, prominent dorsal fin, and small gill slits. +misc_113.jpg A stylized hammerhead shark depicted in a dynamic overhead view is painted in varying shades of blue with swirling patterns and outlines, set against a mural-like, aquatic-themed background featuring a skull and marine elements. +misc_68.jpg A textured metallic sculpture of a hammerhead shark with a bronze appearance is posed diagonally amidst a garden scene, surrounded by grass and positioned against a blurred urban backdrop featuring a fence and a pedestrian walkway. +deviantart_7.jpg A humanoid creature with a beige, shark-like hammerhead, standing waist-deep in blue water, holding a spear, wearing a necklace of teeth and a loincloth amidst a coastal landscape with a shipwreck and clouds in the background. +sketch_10.jpg The hammerhead is depicted with a smooth, grayscale texture, viewed from a slightly below angle against a plain white background, showcasing its distinctive wide, flattened head and large dorsal fin. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/harmonica_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/harmonica_descriptions.txt new file mode 100644 index 0000000..8fd1e03 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/harmonica_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_5.jpg The image is a sketch of a person sitting and playing a harmonica, with visible cross-hatch shading, capturing a relaxed pose against an undefined, light background. +sketch_2.jpg The harmonica has a monochrome, sketch-like appearance with visible lettering on the top surface, viewed from an angled perspective with a stark plain background and notable visible holes and end screws. +painting_6.jpg The image depicts an embroidered depiction of a person playing a light blue harmonica with white outlines, set against a textured background of blue and green, featuring intricate stitching for facial details and the hands holding the harmonica. +sketch_14.jpg The harmonica appears as a sketched, grayscale drawing from an angled perspective, showcasing rectangular air holes and a reflective sheen on the top cover against a simple white background. +painting_7.jpg The harmonica is depicted in black and white with a side perspective showcasing its circular holes and a decorative, abstract design on the cover, set against a contrasting plain background with an illustration of a person nearby. +graphic_0.jpg The image shows a cartoon illustration of a character wearing a brown hat and gloves, holding a green harmonica with a checkered pattern in front of a microphone, set against a dark brown textured background. +deviantart_2.jpg The harmonica features a silver metallic body with engraved detailing, viewed from a tilted angle, against a textured brown background, and includes musical notes and decorative swirls as distinctive elements in the setting. +sketch_6.jpg The harmonica exhibits a metallic sheen with a compact, rectangular form, viewed from an elevated angle, set against a simple, clean background, and features engraved text on its surface. +cartoon_12.jpg The object, depicted in a pencil sketch style, is shown from a frontal viewpoint with a light rectangular body featuring visible rectangular holes and gripped by hands against a plain background. +cartoon_14.jpg The harmonica in the low-resolution image appears predominantly silver with a smooth metallic texture, viewed from an angled perspective on a vintage-style advertisement page featuring bold text and illustrations in monochrome. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/harp_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/harp_descriptions.txt new file mode 100644 index 0000000..6758f00 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/harp_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_3.jpg The harp, viewed from the front, has a warm brown wooden frame with a smooth texture, positioned outdoors between two classical columns with a floral foreground and a sky visible through tree branches in the background. +sketch_20.jpg A line-drawn harp with visible strings and a curving neck is viewed from the side against a plain white background. +sculpture_17.jpg A weathered, stone cherub statue with light blue paint remnants holds a harp-like instrument against a backdrop of red brick. +cartoon_14.jpg The harp is depicted in black and white with intricate designs, positioned upright with visible strings and surrounded by a detailed environment featuring a drawn portrait, musical notes, and text annotations. +misc_4.jpg The harp, depicted in grayscale, appears sleek and angular with a classic triangular form, held upright by a mermaid on a shoreline with waves and a sun-dotted sky in the background. +toy_1.jpg The small, pale yellow harp, viewed from the side, features a spiral column and simplified strings, set against a blurred dark background with a plastic figurine leaning next to it. +cartoon_5.jpg The image depicts a simplistic, line-drawn black and white harp with curved lines, played by a person in minimalistic attire, set against a blank background, and featuring prominent strings and a curved frame. +origami_1.jpg The image features a paper-crafted harp with a smooth, dark brown texture, positioned upright in profile on a cream base, set within a plain tan background and accompanied by a paper figure resembling a musician seated to the left, with visible paper strings adding detail. +misc_2.jpg The object is a small, pink plastic figurine of an animal playing a harp, with a worn texture featuring silver paint rubbing off, set against a plain wooden surface, with the animal's wide, playful pose highlighting its red base and white accents on its ears and tail. +sculpture_0.jpg A statue depicts a bearded figure holding a harp, with a pale stone texture, set against a backdrop of towering metallic pipes and orange architectural details, featuring distinct vertical strings and a triangular frame. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/hatchet_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/hatchet_descriptions.txt new file mode 100644 index 0000000..d59d69a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/hatchet_descriptions.txt @@ -0,0 +1,10 @@ +sketch_20.jpg A simple outline drawing of a hatchet shows a side view with a broad, slightly curved handle and a distinct, sharp blade head, set against a plain, white background. +sketch_15.jpg The simplistic line drawing of the hatchet displays an outlined blade and handle, viewed from a side angle with thick, black lines defining its form against a stark white background. +cartoon_21.jpg The hatchet in the image features a blue-green blade with a wooden handle, held diagonally by a figure wearing traditional clothing with colorful feathers, set against a soft, earthy-toned background. +videogame_14.jpg The object features a double-headed axe with a metallic, aged bronze appearance, positioned at an angle against a transparent or checkered background, highlighting its curved blades and dark handle. +sketch_9.jpg The hatchet is a simple line drawing with a curved handle and wide blade, lacking any specific color or texture, viewed from the side with a plain white background. +deviantart_0.jpg A black-and-white drawing features a hatchet with a dark handle and a metallic blade, positioned upright in a diagonal pose, held by a character against a stark black background with a large, menacing face behind. +cartoon_14.jpg The hatchet features a simple, outlined design with a dual-edged blade and a straight handle, positioned in a crossed pair against a light green background with other stylized weapon illustrations, all depicted in a solid black silhouette style. +cartoon_13.jpg The image appears to show a black, abstract scribble resembling a figure with horns and a long object, possibly an axe or hatchet, standing against a plain white background. +deviantart_3.jpg In the image, the hatchet has a wooden handle and a silver head with a reddish tint, held in a straightforward vertical position by a person in a detailed blue and white costume, standing against a smoky, ethereal background with a bright light source. +cartoon_6.jpg A colorful illustrated scene depicts a person holding a small dark hatchet with a contrasting polished metal head, appearing in a dynamic pose as they are about to strike a wooden sculpture, with a vividly colorful and grass-filled background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/hen_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/hen_descriptions.txt new file mode 100644 index 0000000..8956557 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/hen_descriptions.txt @@ -0,0 +1,10 @@ +painting_25.jpg A hen with predominantly beige and black feathers, perched in a nest-like structure with a side pose, set against a textured brown wooden background, displaying a distinct red comb and resting with tail feathers prominently upwards. +toy_5.jpg The image depicts a stylized hen with a predominantly white body featuring brown and gray swirls, a prominent red comb and wattle, viewed in profile on a textured, light-colored background with artistic brushstroke accents. +cartoon_26.jpg The image depicts an abstract artwork of a hen with a bright yellow body, a circular red and white face, and simple black geometric features, set against a background of vertical green stripes with overlapping hand-written text. +deviantart_38.jpg The hen is cartoonishly round with a vibrant orange body and a red comb, depicted in three panels where it sits calmly under a light in a coop, stands in a nest with chicks against a blue sky, and sleeps serenely with grass in the background. +art_3.jpg The stone carving depicts a hen in profile with a textured body suggesting feathers, a prominent forward-leaning pose with a long neck extended head-first toward the ground, set against a rustic background of carved foliage and a smaller bird beside it. +cartoon_21.jpg The stylized hens are depicted in a series of dynamic poses with textured black and orange bodies, exaggerated flowing tails and combs, set against a minimalistic white background. +embroidery_9.jpg The image shows a red-brown hen with a prominent comb partially facing the viewer, positioned near a wooden surface with red paint accents and accompanied by an embroidery depicting the same hen in similar colors and pose. +art_7.jpg A white tote bag featuring a stylized black and orange hen illustration is placed on a wooden parquet floor, next to a dark brown leather bag with red straps and a folded stack of metallic-gray tubular objects. +deviantart_39.jpg This image depicts a simplistic, cartoon-style hen with a pink body and comb, a rounded shape, viewed from the side, set against a plain, white background, highlighting its minimalistic and smooth texture. +cartoon_20.jpg The illustration depicts a stylized hen with a vibrant blue body and green wings, standing in profile with abstract orange and brown shapes resembling a rustic ground, against a warm, multicolored background; its simple features include a purple head and a multi-colored tail. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/hermit_crab_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/hermit_crab_descriptions.txt new file mode 100644 index 0000000..1ee5908 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/hermit_crab_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_24.jpg A cartoon-like hermit crab is depicted with a vibrant red body and oversized eyes, standing against a colorful illustrated background with swirling ocean elements and stylized text. +deviantart_2.jpg The hermit crab illustration features a gray body with black-tipped appendages and a mint-green shell decorated with pink, spiky plant-like protrusions, set against a solid black background. +tattoo_8.jpg A cartoon-style hermit crab features outlined legs and claws with detailed line patterns, wearing a textured beanie with a snowflake emblem, against a plain white background. +cartoon_1.jpg The hermit crab illustration features a blue, cartoonish texture with spiral patterns on its shell, depicted in a side view with prominent eyes and claws, set against a plain, light background. +deviantart_10.jpg A red hermit crab with a textured shell sits on a bright sandy surface against a turquoise background, with its bright green stalked eyes prominently visible. +cartoon_26.jpg The hermit crab is illustrated from a side view with its clawed, segmented legs and antennae extending from a spiral shell, emphasizing its textured exoskeleton and detailed shell along a plain background. +cartoon_6.jpg This is a simple line drawing of a crab with large claws raised upward, a smooth oval shell, segmented legs bent inward, set against a plain beige background. +graffiti_0.jpg The image depicts an artistic black and white drawing of a hermit crab with architectural elements on its shell, viewed from a side angle against a dark, urban wall background. +sketch_9.jpg The image shows a pencil sketch of a hermit crab from a side view, depicting a segmented shell and multiple legs in fine, textured detail against a plain white background. +tattoo_5.jpg A tattoo depicts a hermit crab emerging from a textured, barnacle-encrusted skull with intricate shading on a brown skin background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/hippopotamus_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/hippopotamus_descriptions.txt new file mode 100644 index 0000000..677f56f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/hippopotamus_descriptions.txt @@ -0,0 +1,10 @@ +origami_0.jpg The origami hippopotamus features a textured, dark stone-gray color with subtle red streaks, viewed in profile with slightly open jaws, set against a speckled, light background, and showcases distinct angular folds and creases defining its form. +sketch_12.jpg The illustration of the hippopotamus is depicted in a black and white sketch style, showing a left-side profile with a rounded, bulky body and textured shading, standing on four legs against a plain white background. +videogame_1.jpg The animated hippopotamus has a smooth, light purple body with a yellow sweater and brown suit, viewed from a frontal perspective, set against a simple gray background. +sculpture_4.jpg A beige, textured sculpture of a hippopotamus with a rounded snout and small ears is positioned on the ground, surrounded by gravel and grass in a park setting. +painting_1.jpg A glossy, dark gray adult hippopotamus is shown in profile with a smaller, similarly colored juvenile sitting on its back, set against a bright, grassy area with scattered rocks and flanked by tall, shadowy trees. +sculpture_3.jpg A bronze statue of a hippopotamus with a smooth, reflective surface, captured in a side angle, depicts the animal with its mouth wide open, placed in a paved area beside a brick wall with grass in the background, and accompanied by a smaller similar statue at its base. +art_12.jpg The object is a white, cartoon-like cutout of a hippopotamus with a smooth texture, seen in a side profile with a green stick and some black markings, set against an indoor background with blurry details and a partially visible person. +painting_9.jpg The image features a stylized black and white depiction of a hippopotamus in a textured, sketch-like style with a frontal viewpoint, round eyes, detailed skin folds, and a neutral expression against a plain white background. +embroidery_1.jpg A simple line drawing of a hippopotamus made with teal outlines and purple features, such as ears and tail, is accompanied by a red and yellow bird perched on its back against a plain white background. +art_13.jpg The sculpture of a hippopotamus appears bronze with a smooth texture and an open-mouthed pose, set against an urban backdrop with green plants and a building, featuring detailed nostrils and prominent teeth. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/hotdog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/hotdog_descriptions.txt new file mode 100644 index 0000000..f88d3aa --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/hotdog_descriptions.txt @@ -0,0 +1,10 @@ +misc_31.jpg A toy-like hotdog with a glossy orange bun and bright red ends, topped with artificial yellow mustard, simulated green relish, pink onions, and silver diced onions, displayed on a textured dark carpet with a beige border. +misc_96.jpg A simplistic, cartoon-style hotdog with a brown bun and pink sausage, adorned with a yellow squiggly line resembling mustard, stands upright with a smiling face and limbs, against a bright red background alongside a similar yellow mustard bottle character. +misc_1.jpg The hotdog tattoo on the shoulder features a browned bun and vibrant toppings, including red condiments, green relish, and small yellow accents, set against a plain dark background, all viewed from a front-facing angle. +misc_112.jpg A cartoon hotdog with a vivid red sausage, surrounded by mustard and green relish inside a textured, beige bun, stands upright with arms and legs, set against a bright yellow background featuring stylized star decorations. +misc_60.jpg A cartoon hotdog character with a brown bun and red sausage, adorned with white gloves, shoes, and a mustard stripe, is positioned in a walking pose against a plain wall, featuring a cheerful face and text. +videogame_23.jpg The image shows a stylized hotdog with a vibrant red and yellow design, positioned horizontally at the center, against a brick-patterned background with the words "HOTDOG KING" prominently displayed above a group of silhouetted figures. +deviantart_18.jpg The image shows a small, glossy toy hotdog charm with a curved, smooth orange-brown bun, a bright red sausage, and wavy yellow mustard on top, placed on a plain white background with a metal clasp attached. +misc_30.jpg A large, wooden hotdog sculpture with a glossy orange-brown bun, topped with oversized dark sausages and yellow mustard details, stands on a gray pedestal in an outdoor park setting bustling with people. +misc_104.jpg A large, novelty vehicle resembling a hotdog with a glossy red-brown sausage atop a beige bun-like base features an enclosed driver’s cabin, set against an urban backdrop with tall buildings and trees. +sketch_5.jpg A black and white sketch of a hotdog shows it from a side profile with a wavy line of sauce on top of the sausage, nestled in a bun speckled with sesame seeds, displayed against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/hummingbird_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/hummingbird_descriptions.txt new file mode 100644 index 0000000..26527ae --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/hummingbird_descriptions.txt @@ -0,0 +1,10 @@ +tattoo_5.jpg Two stylized, green hummingbird tattoos with intricate linework are positioned symmetrically on each shoulder against a blurred indoor background, highlighting their artistic and symbolic design. +videogame_6.jpg A watercolor-style depiction of a hummingbird in side profile shows vibrant hues of blue, pink, and red with splashes of color radiating against a minimalist white background. +tattoo_58.jpg The image shows a stylized, dark brown henna hummingbird tattoo with detailed wing patterns positioned in profile view on the lower back of an individual, contrasting against light skin and set against a casual indoor setting. +graphic_4.jpg The hummingbird, with shimmering green feathers and rich rust-colored tail, lies still on a human hand against a blurred concrete background, showcasing a slightly curved, slender beak and iridescent plumage. +painting_16.jpg A blue-purple hummingbird with extended wings and a blurred body appears in a resting pose against a pink background featuring a faceless human form. +videogame_3.jpg A vibrant watercolor rendering depicts a green and yellow hummingbird in side profile, captured mid-flight with wings blurred against a soft blue background, as it approaches a red, abstract flower. +origami_6.jpg A green origami hummingbird with outstretched wings is positioned above purple origami flowers against a textured beige background with sprigs of slender green leaves. +embroidery_5.jpg A stitched outline of a hummingbird with green wings, a red head, and a yellow beak appears against a white fabric background alongside the word "Wish." +graffiti_21.jpg The vibrant graffiti-style hummingbird exhibits a dazzling mix of blue, purple, and yellow hues with its wings spread in flight, positioned against a dark wall and next to a stylized spray paint can marked "Fake" and "Nectar." +sketch_15.jpg The top right hummingbird is depicted in a side profile with wings partially open, displaying fine speckled patterns on its plumage against a plain background, and sits perched while pointing its beak to the right. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/husky_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/husky_descriptions.txt new file mode 100644 index 0000000..7ac2bae --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/husky_descriptions.txt @@ -0,0 +1,10 @@ +sculpture_4.jpg A small, carved husky figurine with a textured black and white coat sits upright on a glossy dark wooden surface, with a computer keyboard in the background; its wide eyes and perky ears highlight a playful expression. +tattoo_1.jpg A tattoo of a husky with blue eyes and a friendly expression, featuring a mostly black and white coat with detailed shading, is flanked by two daisies on either side, set against a skin-toned background. +graphic_5.jpg A stylized husky illustration with distinct black and white facial markings dominates the intricate, hand-drawn background featuring swirling text, abstract patterns, and nature elements like leaves and waves, set against a dotted texture. +painting_11.jpg A gray and white husky with a textured fur appearance is shown in profile view, gazing forward, with a blurred background featuring another husky and a soft, snowy environment. +sticker_1.jpg The illustration features a sitting black and white husky wearing glasses, a brown hat, and an orange patterned scarf, against a whimsical backdrop of blue clouds and hot air balloons. +tattoo_9.jpg A tattoo of a husky head portrayed in a realistic style featuring a mix of black, gray, and beige fur, with striking blue and brown eyes, set against a swirling, colorful background on a person's upper arm. +painting_5.jpg The husky, portrayed in watercolor, has a soft-textured, predominantly gray and white coat, is head-on in the frame, with an impressionistic blur of blue and orange in the background. +sketch_1.jpg The husky, depicted in a pencil sketch, features a primarily white and gray fur with dark accents around the eyes and ears, shown in a three-quarter view with its tongue out, set against a plain white background. +toy_1.jpg A plush husky with a gray and white soft fur texture, featuring a bright red tongue and black nose, is positioned in a sitting pose atop large, rust-colored industrial gears, against a backdrop of greenery. +painting_1.jpg A framed painting depicts a husky with distinctive black and white fur, bright blue eyes, and a playful expression, positioned against a textured gray background, while the display setting includes colorful fabric and merchandise in the surroundings. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/hyena_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/hyena_descriptions.txt new file mode 100644 index 0000000..c0ca493 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/hyena_descriptions.txt @@ -0,0 +1,10 @@ +painting_13.jpg The image shows a stylized, abstract depiction of a hyena with a brown and red textured body in a side profile pose, set against a vibrant, swirling background of red, yellow, and green hues, conveying a sense of dynamic motion. +sketch_17.jpg The hyena is depicted in a side profile pose with a sketching style, featuring a rough-textured coat with dark blotches on a light background, and set against a minimalist, plain ground. +sketch_12.jpg The hyena is depicted in a profile view, showcasing its coarse, speckled fur with dark spots, a slightly hunched back and a bushy tail, against a stark, white background with minimal environmental detail. +art_4.jpg The hyena, depicted with a light brown coat and dark spots, appears in a side profile pose with a rigid, coarse mane, holding a piece of prey in its mouth against a blurred blue and green background resembling a grassy and open sky environment. +misc_0.jpg A small, tan-colored figurine resembling a hyena with a wrinkled texture, adorned with black spots along its back, is posed in a walking stance on a smooth, light wood surface with a haze of shadow beneath it. +painting_0.jpg The image depicts two stylized, yellow-brown hyenas with bristled fur and bared teeth, viewed from the side in a painted, abstract environment with a contrasting blue background. +art_10.jpg The hyena displays a brownish coat with a smooth texture, facing directly forward with an open mouth revealing sharp teeth, set against a plain, light brown background, with prominent rounded ears and a slightly shiny nose. +cartoon_0.jpg The hyena is depicted with a light, textured coat adorned with dark spots, standing in a side profile with its head slightly turned and a bushy tail, set against a simple background that includes a small, distant figure and minimal ground detail. +tattoo_7.jpg A stylized black and white hyena tattoo with a playful pose, spotted body, and a jagged, grinning mouth is inked on a person's shoulder, against a blurred background of people outdoors. +toy_2.jpg A plush toy hyena with a mix of tan and grey fur, black spots, wearing glasses, lying against a blue fabric background, and positioned as though reading a book. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/ice_cream_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/ice_cream_descriptions.txt new file mode 100644 index 0000000..65845ff --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/ice_cream_descriptions.txt @@ -0,0 +1,10 @@ +sketch_1.jpg A sketch of an ice cream in a dish features two scoops with wavy edges, two cylindrical wafers sticking out, and a simple face made of small circles, viewed from a slightly elevated angle against a plain background. +tattoo_9.jpg The image shows colorful cartoon stickers of various ice cream treats on a white background, including cones, sundaes, and popsicles with distinct pink, blue, yellow, and brown colors and playful expressions. +deviantart_17.jpg An animated character with braided hair holds a cone with a textured scoop of ice cream in a lively pose, surrounded by small animated snowflakes and emoji-like faces against a monochrome background. +embroidery_0.jpg This pixelated ice cream has distinct blocks of white, green, and red colors stacked vertically on a stick, set against a plain pink background. +toy_16.jpg The image shows a plush ice cream cone toy with a light blue scoop, topped with a small red cherry, featuring a smiling face with embroidered eyes and mouth on a brown textured cone, held in a hand against a grassy outdoor background. +deviantart_13.jpg The image depicts a towering stack of colorful ice cream scoops, featuring flavors in pastel pink, chocolate brown, green with chocolate chips, and more, each textured to appear creamy and smooth, balanced playfully in a diagonal arc with a cherry on top, set against a bright lime green background with an illustrated figure supporting it. +misc_31.jpg The image shows a large, colorful ice cream sculpture with a textured waffle cone featuring scoops of white, red, and yellow ice cream positioned upright in front of a gelato shop with a blue awning and a brick-and-stucco background. +videogame_2.jpg A cartoon-style ice cream features a green, yellow, and pink layered scoop resembling characters, held in a hand with a brown, cross-hatched cone against a light blue background. +tattoo_5.jpg The image features a tattoo of a smiling ice cream cone with blue and green swirled scoops and a red cherry, surrounded by other colorful designs, on a person's skin partially covered by a red garment. +deviantart_10.jpg A stylized ice cream sundae with mint green ice cream and chocolate chips is depicted, topped with a character design, presented in a clear glass dish against a mint green background with decorative mint leaves. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/iguana_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/iguana_descriptions.txt new file mode 100644 index 0000000..369b697 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/iguana_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_1.jpg The iguana features a pale greenish-yellow skin with a textured, scale-like appearance, visible in a side profile showing a wise, slightly arched eyebrow and distinct facial spikes, set against a dark, neutral background. +deviantart_15.jpg A vibrant, turquoise-colored iguana with pink accents on its underbelly and face stands prominently in a rocky, aquatic environment, viewed from a slightly elevated angle, featuring distinctive horn-like protrusions on its head. +misc_17.jpg The image depicts a mural of an iguana painted in vibrant shades of green with intricate scale patterns, viewed in profile against a street setting with a bright blue sky and brick wall background, giving it a lifelike appearance. +misc_1.jpg The iguana displays a textured mix of green and orange hues, resting laterally on a branch with foliage and abstract blue-green swirls in the background, highlighting its prominent, scaled pattern and distinctive spikes along the back despite the low resolution. +misc_2.jpg A black and white illustration of an iguana in profile view showcases a series of prominent spines along its back, a scaled, textured skin, and white markings on its face, with the creature resting in a neutral pose against a plain background. +misc_21.jpg The iguana in the image displays a textured, scaly appearance with a predominantly dark coloration, lying horizontally on a tree branch with its limbs spread out, surrounded by a natural, illustrative background with foliage. +sketch_3.jpg The drawing depicts a garden lizard with a detailed texture of spines and scales, shown from a side view while perched on a branch in a neutral environment, with visible distinct features such as the nuchal crest, external nare, and tympanum labeled. +misc_6.jpg The image features a stylized outline of an iguana in black, set against a colorful, mottled background of green, blue, and pink, with the iguana depicted in a side profile pose stretched across the two pages of a notebook. +misc_5.jpg The image depicts a stylized, abstract iguana tattoo on an arm, featuring bold black lines and patterns with red highlights against a lightly tanned skin background, with the iguana positioned in a coiled pose. +misc_8.jpg A cartoonish iguana illustration is shown in a side view, with a smooth green body, large black bands around its limbs and tail, and a spiky green crest along its back, set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/italian_greyhound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/italian_greyhound_descriptions.txt new file mode 100644 index 0000000..d1d77c3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/italian_greyhound_descriptions.txt @@ -0,0 +1,10 @@ +sketch_21.jpg The Italian Greyhound is depicted in a black and white sketch, with a side profile pose showcasing its sleek body and elongated neck against a plain background, highlighting its distinctive slender snout and delicate, tucked ears. +sketch_8.jpg A sleek Italian Greyhound with smooth, short gray fur stands in a side profile pose against a sketchy, shaded background, exhibiting its elegant, slender body and long, curved tail. +misc_24.jpg A smoothly-coated Italian Greyhound with a light fawn color and distinct dark eyes is shown in profile with erect ears against a muted green background, wearing a dark collar and facing butterflies. +misc_4.jpg A brown and white Italian Greyhound with smooth fur is depicted in a side profile against a plain beige background, wearing a reddish-brown collar and showing distinct, elongated facial features. +misc_1.jpg A stylized depiction of a brown Italian Greyhound with large, expressive eyes and pink inner ears, sitting against a vibrant red backdrop adorned with orange cushions, and holding a small white toy in its mouth, all rendered in a cartoon-like texture. +sketch_12.jpg The Italian Greyhound in the low-resolution image appears with a smooth, light-colored coat, positioned with a slightly tilted head and full body profile visible, against a plain white background with a textured cloth draped over its head, emphasizing its slender and delicate build. +misc_27.jpg A polished, transparent ice sculpture of an Italian greyhound sits elegantly, slightly turned, on a surface adorned with white flowers and leaves, framed by a painting in a warmly lit interior. +misc_11.jpg The Italian greyhound, depicted in a painting style, has a smooth fawn coat with a slender build, positioned in profile facing left, wearing a red collar with a gold detail, set against a background featuring a gloved hand holding a shiny object. +misc_2.jpg The image features two Italian Greyhounds with smooth, short hair, predominantly light brown and white in color, set against a red background; one dog is standing with an inquisitive expression while the other is partially visible, showing its head tilted downward. +misc_15.jpg The Italian Greyhound is depicted in a side profile with a smooth, dark-textured coat and gracefully curved posture, set against a plain, mustard-yellow background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/jeep_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/jeep_descriptions.txt new file mode 100644 index 0000000..199cd94 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/jeep_descriptions.txt @@ -0,0 +1,10 @@ +toy_15.jpg A small, white toy jeep with a boxy design and open top, featuring black seats and a windshield, is viewed from a slightly elevated side angle against a plain light background. +art_0.jpg A vintage olive-green jeep with a weathered texture, viewed from the front-left angle, is set against a picturesque rural landscape with rolling hills and a rustic barn in the background, highlighting its classic grille and round headlights. +toy_9.jpg A white, toy-sized model jeep with a rugged, angular frame and visible roll cage is climbing over textured gray rocks, surrounded by a natural outdoor setting with scattered leaves and moss. +misc_18.jpg This jeep-like vehicle has a matte, olive drab color with a rugged texture, featuring a mounted missile launcher, viewed in three-quarter perspective on a sandy terrain. +cartoon_6.jpg The drawing depicts a military-style jeep with a penciled texture, viewed from a front-side angle, featuring round headlights, a mounted weapon on top, and a visible spare tire against a plain background. +misc_1.jpg A small, low-resolution model jeep with a dull olive-green color and matte texture is shown in a left side view, featuring a spare tire on the back and simplistic open cab details, set against a plain, light-colored background. +graffiti_1.jpg A stencil graffiti of a jeep in vibrant yellow appears on a worn, gray metallic surface, viewed from the side with visible circular wheels and straight lines for details, amidst a cluttered urban backdrop with peeling paint and remnants of stickers. +sketch_4.jpg The jeep is a classic military-style vehicle with a mostly matte and slightly worn texture, viewed from a front-left angle showing its open top, vertical slatted grille, and distinct round headlights, set against a plain white background. +graffiti_0.jpg The jeep is illustrated in a bold blue color with a cartoonish, outlined texture, viewed from a side angle showcasing large wheels, against a solid teal background with stylized text beneath it. +cartoon_1.jpg A red, blocky jeep with minimal detail and texture is seen from an elevated side angle, featuring large, smooth wheels, a gray roll bar, and a spare tire mounted on the back, set against a plain gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/jellyfish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/jellyfish_descriptions.txt new file mode 100644 index 0000000..945accb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/jellyfish_descriptions.txt @@ -0,0 +1,10 @@ +graphic_12.jpg The jellyfish illustration has a smooth, pale yellow bell with pink spots and multiple long, pastel-colored tendrils beneath, set against a plain white background. +painting_24.jpg Three stylized, pastel-colored jellyfish are painted side by side on a dark textured wall, with long, flowing tentacles and a soft glow under a natural light, set against a rough concrete background with vertical grooves. +deviantart_11.jpg A cartoon jellyfish with a shiny gradient blue dome-like body and glowing eyes, featuring rainbow-colored tentacles, set against a solid black background. +videogame_0.jpg A pixelated, purple jellyfish is depicted from a frontal view with a dome-shaped bell and long, trailing tentacles, set against a plain white background. +tattoo_48.jpg This tattoo depicts a stylized jellyfish with a smooth, dark brown bell and long, flowing tentacles, set against the backdrop of human skin in an indoor environment. +painting_25.jpg The jellyfish has a vibrant yellow dome-like bell and long, flowing black and white tentacles, viewed from the side against a blue, painted ocean background with coral and rocks. +embroidery_15.jpg Two white, textured jellyfish with long, twisted tentacles are seen from the side against a colorful, abstract background of green, yellow, and purple tones, embellished with various textures and bead-like elements. +tattoo_10.jpg The image shows a tattoo of a jellyfish with a dark, intricate design featuring a rounded bell and flowing tentacles on pale skin, with a neutral background. +embroidery_19.jpg Three white, intricately textured jellyfish-like textile designs are depicted with swirling tentacles against a vibrant, patchwork fabric background of green and purple hues, adorned with embroidered patterns. +cartoon_14.jpg The image features a black and white line-drawn jellyfish with a bulbous, textured dome and elongated tentacles set against a patterned, abstract background incorporating sun and swirl motifs. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/joystick_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/joystick_descriptions.txt new file mode 100644 index 0000000..2847526 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/joystick_descriptions.txt @@ -0,0 +1,10 @@ +misc_55.jpg The joystick in the top right corner features a red, glossy top surface with black handles, two prominent red lights on each side, a green star emblem in the center, and is set against a simple white background with a stylized doodle above it. +misc_53.jpg The joystick appears as a cartoonish, anthropomorphic gray gaming controller with a smiling face, a crown and various vibrant colored buttons, set against a blurry background with a dark character logo in the corner. +sketch_11.jpg The joystick is a black and white line drawing of a traditional game controller, viewed from the front with a central display area, a D-pad on the left, and four circular buttons on the right, set against a plain white background with colorful patterns on the sides. +misc_19.jpg The image depicts a retro-style joystick with a gray body and vertical stick, featuring an orange button, set against a black background with colorful pixelated shapes in red, blue, green, and pink. +misc_51.jpg The joystick features a flat design with a bold yellow body, red directional pad and central area, dark purple accents on the handles and buttons, set against a light gray background with a wired connection extending from the top. +misc_11.jpg The image shows a diagram of a gamepad interface on a computer screen, featuring a dual analog stick layout with a gray and black color scheme, button labels, and lines indicating connectivity in a configuration window environment. +misc_24.jpg The joystick is a blue and black dual-handle game controller with a glossy texture, viewed from an angled front perspective, featuring prominent buttons marked with letters, set against a white background filled with text and illustrations. +misc_12.jpg The image depicts a sketch of a joystick with a ribbed handle and a rectangular base, drawn in black and white lines on a white background, featuring a whimsical caption beneath it. +misc_46.jpg Three solid-colored joystick silhouettes, in orange, blue, and green, with distinct shafts and buttons, are spray-painted side by side on a textured, light gray wall surface. +misc_8.jpg A black, square-based joystick with a central cylindrical stick, topped with a circular orange button, is viewed from an angled perspective against a light blue background; it has a distinctive ribbed texture around the base. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/junco_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/junco_descriptions.txt new file mode 100644 index 0000000..c4efb11 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/junco_descriptions.txt @@ -0,0 +1,10 @@ +sketch_3.jpg The junco, viewed from the side, is perched on a bare twig with a soft gray body and darker wings, set against a minimalistic white background that accentuates its contrasting pink bill and round shape. +sketch_16.jpg The junco is perched on a branch, with a smooth gradient of gray and white plumage, facing to the side in a simple, clear background, highlighting its round body and neat, short beak. +videogame_3.jpg A cartoon bird with a white belly and dark gray upper parts is wearing glasses, depicted in a playful interaction with larger crow-like birds against a plain white background. +videogame_1.jpg A low-resolution, polygonal bird with a blue-gray body, white underparts, and patterned wings is perched with a digital, textured appearance against a plain white background. +painting_15.jpg A dark-headed bird with rust-brown wings and back perches on a slender branch against a soft, pale background. +sketch_11.jpg The junco, depicted in a side profile view against a plain white background, features a charcoal-gray head and back with a contrasting white underbelly, while standing on a textured snowy surface with small black legs and a distinctive subtle shading in its feathering. +sketch_22.jpg The cartoon juncos are depicted in a simple line art style, with one in a front-facing pose and the other in a side-facing pose, both featuring a mix of dark and light gray shading against a plain white background, and accompanied by piles of seeds. +sketch_18.jpg The junco, perched sideways on a branch, exhibits a sleek, charcoal-gray head and back contrasting with its crisp, white underbelly, set against a simple, pencil-drawn background. +sketch_4.jpg The junco is depicted in grayscale, perched sideways on a branch with a dark head, lighter gray body, and a simple sketched background of branch outlines and leaves. +art_5.jpg A painted junco appears with a dark brown head and back, white belly, and pink beak, standing in profile on a multicolored speckled background that seems to depict a patio scene. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/killer_whale_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/killer_whale_descriptions.txt new file mode 100644 index 0000000..3e0836f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/killer_whale_descriptions.txt @@ -0,0 +1,10 @@ +sculpture_3.jpg The low-resolution image shows a black and white killer whale with a smooth texture, depicted in a dynamic pose leaping from blue water with distinct white patches on its sides. +toy_4.jpg The low-resolution photo depicts a black and white toy killer whale with a smooth, matte texture, positioned on a flat surface against a beige backdrop, with fin details and a prominent white eye patch visible despite the simplicity of its form. +deviantart_7.jpg The killer whale appears with a smooth black and white pattern, notable large dorsal fin, swimming from a side view in a deep blue underwater setting with a silhouette of a diver in the background for scale. +deviantart_39.jpg The killer whale appears with a smooth, glossy black and white coloration, viewed head-on against a plain teal background, showcasing its distinctive saddle patch behind the dorsal fin and prominent white eye patches. +videogame_5.jpg The low-resolution image depicts a stylized killer whale with a dark bluish-gray body, white patches, exaggerated sharp yellow teeth, cartoonish bubbles, viewed in a leftward swimming pose against a plain, muted background. +painting_10.jpg A turquoise ceramic cup and saucer set features a stylized depiction of a killer whale in black and white, viewed from the side, with a dark, subtle background. +art_14.jpg A cartoonish anthropomorphic killer whale stands behind a bar wearing an apron and holding a towel, with a dark blue and black color scheme, surrounded by a bar setting including bottles and glasses, a dimly lit background, and a human sitting at the bar with two fish skeletons and a bird in motion above. +deviantart_5.jpg The image shows a killer whale in a spyhopping pose with a glossy black and white pattered body, emerging from bluish rippling ocean waters under a clear sky, with a distinctive dorsal fin visible. +painting_3.jpg A low-resolution image of a killer whale features a simplified black and white form with a prominent dorsal fin, a slightly angled sideways pose, and a light beige background, highlighting its distinctive white eye patch and flipper markings. +painting_21.jpg The illustration depicts several stylized killer whales with smooth, dark blue bodies and contrasting white patches, gracefully swimming in a vibrant, abstract underwater environment filled with light blue and green hues, resembling a digital painting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/king_penguin_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/king_penguin_descriptions.txt new file mode 100644 index 0000000..9a979df --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/king_penguin_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_0.jpg A cartoon king penguin in a front-facing pose wears a red crown and blue cape, set against a snowy backdrop with a decorated Christmas tree and colorful, rounded gift boxes. +sketch_1.jpg The image depicts a stylized black and white illustration of a king penguin in an upright side pose with an intricate, patterned design against a plain white background, featuring detailed geometric and organic motifs across its body. +cartoon_6.jpg The image features a large, stylized penguin with exaggerated yellow and black eyes peering through a window from an exterior urban environment, while a man gazes upward in a suit standing indoors with a red chair and desk nearby. +painting_3.jpg A king penguin with sleek black and white plumage featuring vibrant yellow-orange accents stands prominently in the foreground, surrounded by a group of similar penguins against an icy blue backdrop, with its head turned slightly to the side displaying its profile. +sketch_19.jpg The illustration depicts a king penguin standing upright with detailed line art showing its smooth feathers and distinct black and white markings, while the side view highlights its extended flipper-like wings and the minimalistic background focuses attention on the penguin itself. +sketch_4.jpg The sketch of the king penguin, depicted in a forward-facing stance, showcases intricate linework highlighting its smooth, rounded body with detailed feathers and a lightly textured flipper against a plain white backdrop. +painting_0.jpg The image showcases a king penguin with a sleek black head, orange and yellow markings near the neck, smoothly blending into its white and silver torso; it is captured in close-up with a side profile view, set against a backdrop of overlapping cards and illustrations depicting multiple penguins and abstract blue patterns. +art_0.jpg Set against a textured, gray background, the king penguin is depicted in a side profile with a distinctive smooth gradient of dark gray to white plumage, complemented by a prominently outlined black head and beak. +sketch_9.jpg A black and white intricately patterned king penguin illustration showcases the bird in a profile view with an ornate texture of geometric and repetitive curved motifs against a plain white background. +graffiti_1.jpg A simplistic, graphic depiction of a king penguin in black outline, viewed in profile with an elongated beak and a small crown, set against a rust-colored metal surface adorned with bolts and graffiti in an urban environment. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/koala_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/koala_descriptions.txt new file mode 100644 index 0000000..424f388 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/koala_descriptions.txt @@ -0,0 +1,10 @@ +toy_5.jpg A plush toy koala with soft gray fur and fluffy white ears is dressed in a brown zippered outfit, sitting upright against a dark background, holding a small stick with a koala figure on it. +art_16.jpg The koala has a speckled gray and white fur with a rough texture, is viewed frontally with an upright pose, set against a plain gray background, and features prominent fluffy ears and a distinctively large black nose. +painting_6.jpg A stylized white koala with a smooth, cartoon-like texture is clinging to a tree in a frontal pose against a textured blue background with sketched leaves. +toy_9.jpg This image shows a plush toy resembling a koala, characterized by its light gray, soft-textured surface, prominently dark circular eyes and nose, captured from a frontal, close-up angle, with a faintly patterned, pale background. +painting_15.jpg The koala exhibits a watercolor appearance featuring soft gray and brown hues with a notably curved pose against a dark, leafy background and distinguished by its fluffy ears and prominent nose. +cartoon_31.jpg The image depicts a simplistic cartoon of a koala with a round, abstract face featuring large eyes and a striped nose, standing upright with arms crossed over its belly, amongst scattered doodles and playful text on a white background. +toy_35.jpg A plush koala toy with soft gray fur and white fluffy ears sits upright on white bedding, featuring black round eyes and paws, with a shiny black nose. +deviantart_3.jpg A cartoon koala with rounded ears and a large nose sits hunched among bamboo shoots, its fur appearing smooth and featureless against a white background. +art_15.jpg In the image, two koalas are perched on a branch, with fluffy gray fur contrasting against the smooth bark; one is facing forward with a clear view of its round ears and nose, while the slightly blurred, leafy background suggests a natural habitat setting. +deviantart_39.jpg A cartoon-like koala with large, soulful eyes and soft gray fur reclines on a branch, against a backdrop of clear blue sky and scattered leafy branches. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/lab_coat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/lab_coat_descriptions.txt new file mode 100644 index 0000000..990bef2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/lab_coat_descriptions.txt @@ -0,0 +1,10 @@ +toy_7.jpg A white lab coat worn by an animated character with long brown hair and a red tie, positioned in front of a blackboard with chalk equations, features a smooth texture and standard length with visible collar and front buttons, viewed from the front and left side. +sketch_12.jpg The lab coat is white with a smooth texture, shown from a back view with tailored seams and a belt feature, set against a plain background. +cartoon_33.jpg A cartoon lab coat, light blue and smooth in texture, is worn open over a burgundy shirt and gray pants, shown from a frontal view with a smiling character holding test tubes against a plain white background. +sketch_19.jpg The lab coat is depicted in a line drawing style, featuring a classic white color with monochrome outlines, visible from both front and back views, showing a notched lapel collar, two large front pockets along with a chest pocket, and a button-down front, set against a plain, untextured background. +toy_5.jpg The lab coat is bright white with a textured weave, seen from a three-quarter angle, worn by a figure in a stark, shadowed setting holding a green liquid-filled flask and a book, with notable stitching along the sleeves and pockets. +cartoon_12.jpg The lab coat is depicted in a simplistic, cartoon-style image with a solid white color and a slightly wrinkled texture, viewed from a side angle as it envelops the character leaning forward, contrasted by a plain white background with the figure holding a clipboard and wearing brown pants. +cartoon_6.jpg The lab coat is white with a smooth texture, viewed frontally on a cartoon character, set in a simplistic illustration without a detailed background, and it features basic lines with minimal shading. +toy_4.jpg A white lab coat with embroidered emblem is worn by a plush teddy bear sitting against a patterned sofa, featuring buttons and visible stitching, and accompanied by a red medical kit. +art_0.jpg The lab coat is depicted in a simple, cartoonish cube form with a white color, flat texture, squared edges, and minimal detailing against a futuristic, metallic background with emblematic patterns. +sketch_16.jpg The lab coat is depicted in black and white with a sketch-like texture, viewed from the front, featuring a collar, three visible pockets, and a signature in the lower right corner. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/labrador_retriever_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/labrador_retriever_descriptions.txt new file mode 100644 index 0000000..ce75514 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/labrador_retriever_descriptions.txt @@ -0,0 +1,10 @@ +sketch_10.jpg The labrador retriever appears as a textured grayscale illustration with detailed fur shading, portrayed in a front-facing pose with its tongue out and highlighted bright eyes, set against a plain white background. +misc_37.jpg The image depicts a light golden labrador retriever with a soft, fluffy texture, viewed from a frontal angle against a warm, dark brown background, with distinct dark eyes and nose providing contrast. +misc_9.jpg A painted side profile of a black labrador retriever with a glossy sheen, capturing its alert expression and open mouth, set against a swirling blue background. +misc_39.jpg A close-up front view of a black labrador retriever with a glossy coat and prominent brown eyes, tongue out against a light blue background, emphasizing its cheerful expression. +misc_1.jpg The low-resolution image depicts a black labrador retriever with a smooth, glossy coat, viewed in a three-quarter pose against a softly blurred, light green background, wearing a tan collar with metal tags and displaying a gentle expression. +misc_0.jpg A watercolor depiction of a labrador retriever with a golden-brown coat, facing forward with a neutral expression against a soft purple backdrop, showcasing a detailed red nose and faint whisker textures. +misc_15.jpg A black labrador retriever with a glossy coat and expressive amber eyes is shown in a gentle, forward-facing pose against a neutral background. +misc_27.jpg A black labrador retriever with a glossy coat sits upright, wearing a red collar with a tag, against a plain white background with a blue diagonal banner in the corner. +misc_30.jpg A black labrador retriever with a smooth, glossy coat is positioned in a profile view against a warm, blurred autumnal background, highlighting its expressive eyes and subtle gray on its muzzle. +sketch_13.jpg A black Labrador Retriever, shown in a side profile with its head slightly tilted, displays a smooth, glossy coat and attentive gaze, set against a plain white background, with distinct soft shading accentuating its facial features. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/ladybug_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/ladybug_descriptions.txt new file mode 100644 index 0000000..c8e2264 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/ladybug_descriptions.txt @@ -0,0 +1,10 @@ +toy_42.jpg A red plastic ladybug-shaped timer with black spots and a white eye is seen from a side view, resting on a white ruler-lined fabric background. +sticker_5.jpg The ladybug appears as a bright red sticker with symmetrical black spots, viewed from above on a plain light-colored surface with bold black antennae and head. +tattoo_72.jpg A small tattoo on the skin depicts a stylized red ladybug with black spots, outlined in black ink, and is located on a textured brown carpet background. +embroidery_3.jpg The handcrafted felt ladybug features a vibrant red and black texture with button spots, viewed from a front-left angle against a backdrop of thin, bare branches. +sculpture_7.jpg The image depicts a large, glossy red object with black spots resembling a ladybug, positioned from the side against an off-white wall, with curled black appendages and a small framed picture nearby. +graphic_5.jpg A cartoon ladybug with a red shell and white smiley faces, viewed from above, is depicted on a green and white polka-dotted background with a whimsical black line extending from it. +art_5.jpg The red and black dotted ladybug designs are painted on fingernails with a glossy texture, viewed from above against a bright white background, showcasing simplistic black antennae and spots. +graphic_6.jpg This ladybug object appears as a vibrant red and black circular motif with cartoon-style eyes, positioned against a textured green fabric backdrop with a red and white polka dot pattern adjacent. +tattoo_58.jpg The image shows a cartoonish red and black ladybug with a smiling face, round eyes, and visible antennae drawn from a side and top angle on a white background with handwritten text. +sketch_16.jpg The illustration shows a black and white ladybug with prominent black spots on its shell, resting on a sketched leaf with visible veins and surrounded by abstract leafy branches in a simple, hand-drawn style. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/lawn_mower_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/lawn_mower_descriptions.txt new file mode 100644 index 0000000..b75f8d8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/lawn_mower_descriptions.txt @@ -0,0 +1,10 @@ +toy_7.jpg A toy lawn mower with a vibrant orange body, green handle, and large gray wheels is positioned on lush green grass near a tree, viewed from the side with an actual red lawn mower in the blurred background. +misc_3.jpg A toy lawn mower, bright green with a black blade area, is being "pushed" by a small plastic figurine in a straw hat and green apron, set against a backdrop of tall grass, viewed from a low angle. +toy_24.jpg A small toy lawn mower with a red and black scheme is viewed from above at an angle, nestled on a snowy ground with scattered dry grass blades, accompanied by a miniature figure pushing it. +sketch_8.jpg The lawn mower is depicted in grayscale with a textured cylindrical body, viewed from a slightly elevated side angle against a simple white background, featuring prominent large wheels and a visible gear mechanism on the side. +toy_21.jpg A colorful toy lawn mower with a yellow base, a red hat, cartoonish face on the front, gray wheels, and a green handle, is positioned on a textured asphalt surface with dappled sunlight and tree shadows in the background. +toy_22.jpg The lawn mower is predominantly red with black accents and features a yellow handle, viewed from a slightly elevated angle, set against a grassy field with blurred, dense green foliage in the background. +toy_4.jpg This low-resolution image shows a toy lawn mower with a red and black color scheme, detailed with a silver hose and rounded wheels, and is positioned in a side view against a plain white background, featuring a seated minifigure wearing a blue cap and green vest. +toy_25.jpg The small red toy lawn mower is being pushed forward by a child dressed in a white tutu, against a grassy and wooded background, with the viewpoint capturing a side profile. +toy_19.jpg This brightly colored plastic lawn mower features a red body with a blue face on top, large cartoon eyes and a smiling mouth, viewed from above against a multicolored play mat background. +toy_29.jpg This lawn mower features a colorful combination of a red body, blue top, and yellow wheels, set at a three-quarter view on a grassy lawn, with a distinct gray handle and a background of a cement surface and blurred grass. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/lemon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/lemon_descriptions.txt new file mode 100644 index 0000000..05d72bc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/lemon_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_9.jpg The lemon, vibrant and smooth, rests alongside two sliced halves on a pastel-colored surface, positioned in front of a matte green bottle with a softly blurred background. +sketch_2.jpg The illustration displays a textured lemon viewed from a side angle with cross-sections showing the internal segments, surrounded by detailed leaves and small blossoms against a blank background. +sketch_0.jpg The image showcases a pencil sketch of a lemon with a textured, slightly bumpy surface viewed from the side, next to a cross-section displaying detailed pulp segments, all set against a plain white background. +graphic_3.jpg A stylized, vibrant yellow lemon slice with thick black outlines is visible from the top view, set against a dark background with doodles and repeated text. +toy_2.jpg The object resembles a plush lemon character with a soft, smooth yellow surface, simplistic facial features including a smile and small eyes, and is seated upright in a metal colander with actual lemons, against a light blue backdrop. +painting_54.jpg The lemon, situated in a bowl alongside another lemon and an apple, exhibits a bright yellow color with smooth, dappled texture, viewed from a top-down angle against a backdrop of muted pastel tones and floral patterns. +painting_25.jpg A lemon with vibrant yellow color and a smooth texture is positioned on textured dark blue fabric, accompanied by a paintbrush in the foreground, highlighting its asymmetrical oval shape from a side viewpoint. +painting_22.jpg A textured, partially peeled lemon with vibrant yellow hues and a visible segment is depicted from an overhead view against a painterly blue background, accompanied by an arc-shaped lemon slice casting a soft shadow. +deviantart_11.jpg A stylized, sliced lemon with a bold yellow color and smooth texture is viewed from a frontal angle, featuring visible sections and set against a minimalistic white background with scattered bubbles. +graphic_6.jpg Two stylized lemons with a smooth, dappled yellow texture have a flat, combined view against a gradient green and yellow background, featuring green leaves above. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/leopard_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/leopard_descriptions.txt new file mode 100644 index 0000000..e43c21b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/leopard_descriptions.txt @@ -0,0 +1,10 @@ +sculpture_1.jpg A standing bear sculpture painted to resemble a leopard with a yellow base color, distinct black spots on its legs and arms raised upward, featuring a stylized face with blue eyes and a unique mask inlay on its stomach, set against a grassy outdoor backdrop with a building in the distance. +misc_2.jpg The image depicts a close-up view of a leopard's fur, showcasing a pattern of densely packed black rosettes with rich orange centers against a background of gray fur, characterized by visible natural lines and folds suggesting relaxed posture, with no distinct environmental elements apparent. +embroidery_1.jpg Two leopards with vibrant orange and black spotted patterns are depicted in a crouching pose on a rocky terrain, surrounded by subtle brushwork suggesting a natural habitat. +tattoo_1.jpg A leopard, depicted in side profile on a brown, textured canvas, features light tan fur with distinct darker spots, walking on a subtly detailed earthly-toned surface with minimal background elements. +cartoon_4.jpg The leopard has a predominantly white coat with black rosettes and spots, standing on rocky terrain, facing forward with a slightly alert posture. +tattoo_0.jpg The leopard tattoo features a yellow and black spotted pattern with distinct markings, shown in a profile pose atop stylized gray rocks against a backdrop of blue, reminiscent of an abstract sky or horizon. +toy_0.jpg A plush leopard toy with light brown fur adorned with dark, irregular spots is seated on a wooden surface in an airport terminal, featuring a board with yellow text and orange kiosks in the background. +toy_8.jpg A large, plush leopard toy with orange fur and distinctive dark spots is nestled among a pile of debris beside a brick building, with its head slightly raised and facing forward, surrounded by miscellaneous junk and greenery in the background. +toy_9.jpg A small, flat, yellow-orange felt cutout with irregular black spots mimicking leopard patterns rests on a human palm, viewed from the side, displaying a walking posture. +sketch_5.jpg The leopard, rendered in grayscale with a detailed, fine-textured coat of black spots on a lighter body, is depicted in a resting pose with its head laid on its paws, set against a subtle, non-distracting background that emphasizes its calm and relaxed demeanor. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/lighthouse_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/lighthouse_descriptions.txt new file mode 100644 index 0000000..9c65fd8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/lighthouse_descriptions.txt @@ -0,0 +1,10 @@ +embroidery_7.jpg The lighthouse is white with a red top and black detailing, featuring a textured appearance on a light fabric background, viewed from a side angle with seagulls in the sky nearby. +cartoon_31.jpg This image features a stylized, illustrated scene with a bold sunset background, including a central black and white lighthouse with an anchor motif, surrounded by nautical-themed ropes and a figure in a blue sailor outfit. +cartoon_36.jpg The lighthouse features a white cylindrical body with black detailing near the top, is depicted in a frontal view, and is set against a stylized orange circle background alongside simple geometric white buildings with black roofs. +painting_9.jpg The painting depicts a white lighthouse with a black top standing against a backdrop of a clear blue sky, accompanied by a white house with a dark roof, both situated on a grassy hill with a floral-patterned wall surrounding the scene. +painting_20.jpg A tall, narrow lighthouse painted in soft green and white hues, surrounded by lush greenery with a hint of a clear sky, features a distinct, slightly transparent top section and is viewed from a ground-level perspective. +painting_24.jpg A tall, slender lighthouse with a smooth, weathered texture stands against a serene seascape, colored in pale pinks and whites, framed by gentle waves and sandy dunes under a pastel sky. +misc_3.jpg A cylindrical lighthouse made of interlocking brick pieces stands atop a rocky blue sea-like base, featuring a predominantly white facade with black accent bands and a black lantern room, set against a backdrop of more brick structures and a painted sky. +painting_7.jpg The lighthouse stands tall with a smooth white exterior and a bright red top, viewed from a slight upward angle against a vibrant blue sky, surrounded by rocky grassy terrain. +origami_1.jpg The lighthouse appears as a red and white origami structure with geometric patterns, standing upright among stylized blue origami waves in front of a dark, muted background, accompanied by a small red and white boat. +painting_44.jpg The lighthouse features a light gray, cylindrical structure with a conical, orange-red roof, viewed from a side angle on a grassy cliffside overlooking a calm blue sea, accompanied by a small building with a matching roof and surrounded by a simple fence and soft clouds. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/lion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/lion_descriptions.txt new file mode 100644 index 0000000..757a864 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/lion_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_24.jpg A detailed pencil sketch depicts a lion's face in a frontal view, with a flowing mane featuring soft shading and highlights that create a textured and lifelike appearance, set against a plain background. +tattoo_16.jpg This stylized red-line embroidered lion, depicted in a rampant pose on a white fabric background, features detailed outlines and a striking mane, with yellow accents on the claws and tongue, creating a vivid contrast. +tattoo_42.jpg A stylized black and white lion face is depicted with bold, angular lines highlighting its mane and facial features, viewed from the front against a stark white background, emphasizing its symmetrical and abstract design. +toy_6.jpg A plush lion with a soft, tan body and a dark brown mane is lying on a carpeted floor, positioned in a resting pose with its legs tucked under its body, against a backdrop of a wooden shelf and various household items. +toy_30.jpg A small, plush lion with a textured, golden-brown fuzzy mane and body, large bright orange eyes, posed facing forward against a dark background, featuring a thick, curled tail. +tattoo_22.jpg A black and grey tattoo of a lion, with a detailed mane, is positioned on the side of a person's torso against a skin-toned background, showcasing a frontal view with intricate shading despite the low resolution. +misc_4.jpg A cross-stitched lion with a cream body and brown mane is depicted in a side view pose, amidst a background featuring a red microscope and scattered coins on a table. +painting_7.jpg The image depicts a painting of a lion with a warm golden-brown mane framing a calm face, viewed head-on, set against a soft, indistinct greenish-brown background with a partially visible wooden frame. +tattoo_38.jpg A black outline tattoo of a stylized lion is visible, featuring a simplistic mane and fluid lines, positioned horizontally above the word "England" on a skin background. +sculpture_19.jpg The object appears as a golden, intricately textured lion's head sculpture, facing forward with a fierce expression, set against an ornate architectural background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/lipstick_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/lipstick_descriptions.txt new file mode 100644 index 0000000..bc94c62 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/lipstick_descriptions.txt @@ -0,0 +1,10 @@ +graffiti_1.jpg The object is a red, simplistic outline resembling a lipstick with a cylindrical shape, viewed from the side, set against a textured white wall with graffiti featuring abstract figures and a brush. +cartoon_10.jpg The lipstick appears as a small red stick with a black base, held upright by a cartoon figure with a flower dress against a solid light pink background, emphasizing a playful and simplistic artistic style. +cartoon_4.jpg A character with a raised eyebrow holds an oversized lipstick with a bright pink tip and matte texture, set against a plain white background. +cartoon_11.jpg A bright red lipstick with a smooth, glossy texture is held upright by a caricatured character in an exaggerated pose against a minimalistic background with bold exclamation marks. +cartoon_15.jpg The sketch depicts a person applying bright orange lipstick, viewed from the side, with a loosely sketched background of a mirror and a distinctive bracelet on their wrist, highlighting a monochrome and simplistic backdrop. +sketch_2.jpg The image depicts three black and white illustrated lipsticks with intricate, decorative patterns on their cases, standing upright against a plain white background. +cartoon_2.jpg The illustration depicts a person applying lipstick, viewed from the side with the lipstick held near the lips, and the background is minimal, allowing focus on the detailed linework and shading of the figure and the cosmetic. +origami_0.jpg A low-resolution image shows a hand holding a blue origami lipstick with a bright pink tip, positioned upright against a background of a brown crumpled-paper surface and colorful origami flowers. +cartoon_20.jpg The image depicts a set of hand-drawn lipsticks with minimalistic detail, featuring vibrant hues of red and pink in a simplistic, line-drawn style against a plain white background, where one lipstick has a distinct brand marking visible on the tube. +painting_2.jpg The lipstick appears in a vibrant red shade with a glossy texture, positioned vertically on a colorful, abstract background, featuring a metallic golden casing with defined bands at the base and middle. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/llama_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/llama_descriptions.txt new file mode 100644 index 0000000..bb5f7c8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/llama_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_9.jpg A small, angular, white paper origami llama stands upright on a wooden surface next to a bronze lamp, with a hand holding a tiny, heart-bearing speech bubble above it. +deviantart_16.jpg Two cartoonish, fluffy white llamas with gray faces are viewed in profile against a minimal grassy background, each adorned with red ear tassels, and accompanied by a person in colorful, traditional attire. +sketch_13.jpg A sketched llama with white, textured fur appears in a frontal pose against a plain backdrop, characterized by large, prominent eyes and upright ears. +graffiti_5.jpg The painting of the llama on a concrete wall near a bridge features a white face with a dark snout and ears, positioned in a frontal view with a slightly open mouth, set against graffiti on a sandy-textured surface above a rocky, shallow stream. +videogame_3.jpg The object is a pink, toy-like llama with a blocky texture, viewed from a side angle, standing on a wooden floor, with visible saddle-like details on its body. +cartoon_12.jpg The black and white drawing depicts a stylized llama with textured, spiky fur on its head, viewed from the front, with a playful expression set against a decorative border and the text "THE LAUGHING LLAMA" below. +sketch_8.jpg A sketchy outline of a llama is drawn in pencil on white paper, showing it from a frontal viewpoint with distinctively large, upright ears adorned with tassels, and a decorated texture suggesting a woven blanket around its shoulders. +art_1.jpg The image features a simplistic, line-drawn illustration of a llama on a brown, textured notebook cover, viewed in a side profile with a small rug on its back that has the words "I BUY HANDMADE," set against a plain background. +art_0.jpg A simplistic line drawing of a llama adorns a whitewashed brick wall with a heart shape on its body, viewed in profile, capturing the rustic urban setting. +sculpture_4.jpg A reddish-brown llama sculpture with a textured surface stands in a profile view on a paved area, set against a lush garden backdrop, with a distinct brick building and greenery surrounding it. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/lobster_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/lobster_descriptions.txt new file mode 100644 index 0000000..1f5762d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/lobster_descriptions.txt @@ -0,0 +1,10 @@ +sketch_0.jpg The illustration features a black and white line drawing of a lobster viewed from above, showcasing its detailed segmented body, prominent claws, and fan-shaped tail against a plain white background. +misc_23.jpg The diagram shows a lobster with elongated, segmented claws and a body, illustrated from a side view, featuring detailed joint lines and shading to indicate texture, surrounded by anatomical labels against a plain background. +sketch_8.jpg The lobster is illustrated in a black and white sketch with a frontal viewpoint, showcasing its prominent claws, segmented body, and elongated antennae against a plain white background. +misc_30.jpg The lobster is a bright red and yellow cartoon statue with a smiling face and large claws, standing upright with a painted wooden dock background, characterized by a distinctive white beard and logo on its chest. +misc_43.jpg The "lobster" in the center is vividly red with a shiny texture, positioned on top of a dining plate in a spread setting, surrounded by other plates with garnished food, and appears unusually stiff, indicating it might be an imitation placed in a decorative table arrangement. +deviantart_3.jpg The lobster is predominantly a vibrant blue with a smooth, shiny texture, viewed from above with its large claws prominently displayed, surrounded by a dark, abstract aquatic environment. +misc_26.jpg A brightly colored inflatable lobster is suspended from above, displaying a red body with yellow and black markings, a smooth shiny texture, distinct claws, and set against a plain white background. +misc_24.jpg A large, blue painted lobster sculpture featuring a nautical-themed design with sailboats and seagulls is standing upright on a paved outdoor area with a building and greenery in the background. +sketch_19.jpg A black and white line drawing of a lobster is depicted from a side view, with claws prominently raised in a defensive stance against a plain white background, featuring segmented body parts and antennae distinctly outlined. +misc_11.jpg The drawing depicts a lobster in a side profile view with a detailed textured shell, prominent claws, and a segmented tail against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/lorikeet_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/lorikeet_descriptions.txt new file mode 100644 index 0000000..0391032 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/lorikeet_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_6.jpg The lorikeet features vibrant green wings and a red patch on its underbelly, with a blue head and orange chest feathers, perched on a branch against a softly blurred purple and pink sunset sky. +art_11.jpg The image shows a vibrantly painted lorikeet with a blue head, red breast, and green wings perched on a branch above a road with cars and a bus, set against a bright blue background with green leaves. +art_20.jpg The lorikeet depicted in the mosaic features vibrant green and yellow plumage with a striking blue head, an orange beak, and a red eye, set against a backdrop of fragmented, light blue tiles within a wooden frame. +toy_2.jpg The toy lorikeet, positioned upright on a bird feeder, displays vibrant green and yellow stripes with a red patch on the head, set against a wooden fence and grassy backyard environment. +sketch_8.jpg A pencil sketch of a lorikeet in profile view showcases intricate feather detailing and shading with a subtly curved beak, on a plain white background. +painting_28.jpg The image depicts a painted lorikeet with vibrant blue on the head, a bright orange chest, and green wings, positioned as if perched, set against a backdrop of a stairway with a potted plant nearby. +cartoon_0.jpg The lorikeet is depicted with detailed line texture, showing a speckled chest and wings from a side view as it perches on a branch, set against a sketch-like background with leaves and twigs. +painting_33.jpg Two lorikeets with vibrant green bodies, bright blue heads, and red and yellow markings perch on a textured, brown tree trunk against a dark, blurred background, with one facing left and the other in a downward pose. +painting_9.jpg The lorikeet is perched with a side view, showcasing vibrant green feathers, a textured red face with a blue crown, and a touch of yellow, set against a smooth, dark blue background. +painting_4.jpg Two vibrant lorikeets, with striking red, blue, and green plumage, perch on twisted branches against a blurred, leafy green background, showcasing a side view that highlights their vivid colors and sleek, streamlined bodies. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/mailbox_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/mailbox_descriptions.txt new file mode 100644 index 0000000..44da77f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/mailbox_descriptions.txt @@ -0,0 +1,10 @@ +misc_25.jpg A black and white hand-drawn mailbox with a curved top and small flag is viewed from a side angle, featuring a stylized post and enveloped by squiggly lines against a minimal background. +misc_49.jpg The mailbox is uniquely crafted from blue felt with a red flag and interior, displayed open on a red fabric surface, revealing neatly stacked felt letters inside. +misc_33.jpg The image shows a greeting card featuring an illustration of a mailbox with a yellow and gray color scheme, depicted from a front view with a stylized white outline, placed on a slatted wooden surface with additional envelopes underneath. +misc_10.jpg The mailbox is beige with a rounded top, featuring a bold "MAIL" label, and appears to be located in a dynamic, cartoonish city setting with a person and ninja in action nearby. +misc_22.jpg A gray mailbox with a colorful butterfly on top is painted on a purple wall, featuring a tree trunk motif with green leaves and surrounded by whimsical flowers and butterflies, viewed straight-on. +misc_1.jpg The mailbox is depicted in grayscale with a smooth, rounded top and front-facing view, resting on a wooden post marked "295" amidst a natural, brush-filled background. +misc_24.jpg The mailbox is a light gray, rectangular structure with a red flag on a tall, dark post, adorned with festive elements like ribbon and sparklers beneath glistening snow, set against a vibrant red background with celebration-themed imagery. +misc_43.jpg The mailbox, created with red, purple, and yellow embroidery on a dotted white fabric, is shown from the side with an open lid, revealing a raised flag and a partially visible envelope inside. +misc_32.jpg The mailbox appears as an artistic quilted representation with a vibrant green and yellow patchwork design, featuring a red flag and two stylized birds perched on it, set against a textured, abstract blue and red background with a decorative base. +misc_41.jpg A smooth, metallic gray mailbox, perched on a slender pole with an arched top and a curved flag holder, stands on a wooden surface amidst a blurred blue fabric backdrop, being interacted with by a small figure. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/mantis_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/mantis_descriptions.txt new file mode 100644 index 0000000..71cc216 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/mantis_descriptions.txt @@ -0,0 +1,10 @@ +tattoo_19.jpg This mantis appears as a vibrant tattoo design with a striking blue hue, flanked by outstretched wings on a person's chest, set against a dark background, with intricate details including layered black patterns and colorful floral elements. +tattoo_6.jpg The image depicts a stylized mantis tattoo in shades of black and gray with red accents, posed upright on a branch adorned with leaves, on the upper back where skin texture is visible in the background. +cartoon_23.jpg The mantis is illustrated in a pale, monochrome style from a frontal viewpoint with elongated, segmented limbs and antennae against a flat yellow background featuring two small, stylized figures beneath it. +tattoo_26.jpg The mantis tattoo features a vibrant green and orange color palette with detailed eyes and antennae, posed on an angled human leg, with a subtle urban pavement background providing contrast. +painting_13.jpg A bright green mantis with a smooth texture is perched on a rocky surface, captured in a side profile against a softly blurred green and brown gradient background, showcasing its elongated body and folded forelimbs. +tattoo_25.jpg A vivid green and yellow mantis tattoo with red accents is depicted on a person's skin, in a side view pose, showcasing intricate color details and bold outlining against a soft indoor background. +painting_7.jpg A sketchy, abstract depiction of a mantis with elongated limbs and antennae against a textured, beige background, featuring irregular lines and shapes that suggest a fragmented or cubist style. +sketch_16.jpg The mantis, depicted in a stippled, monochromatic pattern, exhibits a profile view with intricately detailed wings and poised forelegs, set against a stark white background, emphasizing its segmented body and distinctive elongated limbs. +misc_1.jpg A vibrant green mantis-like object with a segmented, textured body and elongated limbs is positioned laterally on a weathered wooden surface, set against a backdrop of scattered debris and angular shadows. +tattoo_28.jpg A vibrant green tattoo of a mantis, with detailed texturing on its body and forelimbs, is depicted on an arm amidst a background of black and grey tattoos, showcasing the mantis in a dynamic, sideways pose with its legs raised. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/meerkat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/meerkat_descriptions.txt new file mode 100644 index 0000000..a8fdb29 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/meerkat_descriptions.txt @@ -0,0 +1,10 @@ +toy_9.jpg A small, plush meerkat toy with light brown fur, lighter gray underbelly, and black ear accents, is sitting upright on green grass, surrounded by a blurry, natural grassy environment. +graffiti_8.jpg A mural depicts four stylized meerkats with black and white stripes standing upright against a textured wall, featuring a sandy yellow ground with a painted red pinwheel and suitcase near a blue line, next to a bicycle wheel. +cartoon_0.jpg The image shows a cartoonish meerkat with a smooth, light-colored body, standing upright with a shy expression, in a simplistic yellow background, alongside another meerkat figure smoking, both drawn with black outlines on lined paper. +sticker_0.jpg Three meerkats with light brown fur and darker bands on their tails are standing upright on rocky ground with a desert-like background, facing slightly to the right. +sketch_3.jpg A standing meerkat with a smooth, dark silhouette featuring stark white highlights along its face and chest, is posed in a vigilant upright stance against a plain white backdrop. +sculpture_7.jpg This image depicts six clay sculptures of meerkats with a matte, earthy texture, standing upright on a dark surface, surrounded by a natural background of dry grass and wooden planks, each with distinct facial expressions and slightly varied postures despite the low resolution. +cartoon_25.jpg Two large, anthropomorphic meerkat statues with smooth, light-colored faces and orange-brown bodies stand upright under a ceiling with fluorescent lights, against a soft yellow wall and adjacent to a dark window. +graffiti_6.jpg Three black stencil outlines resembling meerkats stand upright against a rough, beige textured wall, each exhibiting minimalistic features with dotted eyes and snout, with a visible crack dividing the background. +painting_32.jpg A hand-drawn illustration of a meerkat with a textured fur pattern in shades of brown and beige, seated upright with a profile view and wearing a red Santa hat, set against a light blue background with snowflake decorations. +painting_35.jpg The image depicts a watercolor rendition of a meerkat, characterized by its upright stance, displaying a warm, blend of brown and beige hues with slight textural detailing, set against a minimalistic, pale background in a framed presentation. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/military_aircraft_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/military_aircraft_descriptions.txt new file mode 100644 index 0000000..e1d3bf5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/military_aircraft_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_4.jpg A sleek, matte black aircraft with angular, stealthy design elements is positioned on a carrier deck at dawn, silhouetted against an orange sky with a crew member directing it amidst visible steam clouds. +sticker_5.jpg A gray, brick-textured LEGO military jet with visible wing details and a transparent cockpit is positioned in a side view on a wooden floor with a wooden furniture background. +videogame_3.jpg The military aircraft in the image has a sleek grey and blue exterior with a glossy texture, seen from a rear and slightly elevated angle against a backdrop of sky and a flaming explosion, featuring distinctive wingtip markings and a visible radar overlay from the in-game perspective. +videogame_21.jpg A predominantly black and yellow fighter jet with a sleek design is seen soaring against a backdrop of ocean and clouds, featuring prominent tail fins and sharp angular wings with distinct markings. +toy_11.jpg The military aircraft model, seen from a side angle on a light-colored surface, is dark gray with a matte texture, highlighting minimal red markings and featuring a single propeller and twin cockpits, set against a plain, light-colored background. +sketch_9.jpg The black and white line drawing of a fighter jet features a side profile showing sharp angles, dual fins on the tail, and a streamlined nose, with a simplistic sky background. +art_21.jpg A silvery-blue military aircraft with black stripes and "USAF" markings on the wings is depicted in a dynamic banking pose amidst a clear sky above a snowy landscape, with twin engines visible and another smaller aircraft trailing above the clouds. +videogame_4.jpg The image shows four military aircraft in flight above a white cloud layer against a blue sky, with the central aircraft displaying a sleek silver body with blue accents and a distinctive twin-engine tail design viewed from behind, surrounded by three other aircraft with red, green, and dark exteriors. +videogame_7.jpg A group of dark-colored military aircraft are positioned diagonally against a dramatic blue and purple sky backdrop, with bold, angular shapes suggestive of jet fighters. +misc_5.jpg The military aircraft is a gray jet with orange accents and dual vertical stabilizers, viewed from a side angle against a plain dark background, featuring prominent missile attachments and cockpit details. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/missile_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/missile_descriptions.txt new file mode 100644 index 0000000..001c8c3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/missile_descriptions.txt @@ -0,0 +1,10 @@ +videogame_1.jpg A person in a red wing suit and helmet is skydiving against a bright blue sky with clouds, displaying a dynamic pose with arms and legs spread. +sketch_2.jpg The sketch depicts a sleek, streamlined missile viewed from a slightly elevated front angle, featuring a metallic texture with symmetrical fins, a pointed nose cone, and distinct linear shading that emphasizes its aerodynamic design. +toy_0.jpg The object appears as a dark, elongated form with a smooth texture, viewed from a distant side angle against a cloudy sky, featuring a small yellow tip and tail fins. +videogame_13.jpg A green and blue parachute with a radial, ribbed pattern and black suspension lines is seen from below against a transparent checkered background, resembling a canopy spread wide. +art_4.jpg The object is a multicolored, horizontally positioned, pointed cylinder resembling a missile, featuring vibrant red, white, blue, orange, and green segments, appearing glossy, with a reflective surface, situated indoors on a green stand against a windowed backdrop revealing an outdoor construction setting. +videogame_6.jpg The image features a pixellated parachuter with a red and white parachute descending diagonally amid falling rain against a mountainous backdrop of gray skies and jagged red cliffs. +graphic_1.jpg The object is a tall, upright, stone structure resembling a missile, with a pointed tip and vertical grooves, set within a cemetery environment with trees and gravestones in the background. +sculpture_2.jpg The object is a gray sculpture of a missile with a rough texture, seen in an upright position held by a figure against a backdrop of greenery and a colorful building, with visible sculptural details despite low resolution. +painting_2.jpg The image depicts a blue, rocket-like object with abstract, brushstroke textures viewed from the side against a surreal background featuring a dark tower silhouette, vibrant swirling colors, and rounded shapes suggestive of a stylized explosion or landscape. +videogame_20.jpg The image shows a green, ribbed parachute canopy viewed from a slightly elevated angle above a tiled ground, prominently featuring distinct ridges and a nearby player name overlay, in a video game environment. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/mitten_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/mitten_descriptions.txt new file mode 100644 index 0000000..858ec0f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/mitten_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_9.jpg The low-resolution image depicts a pair of sketch-style representations of a mitten with a zip running vertically along its length, showcasing a simple outline with a thumb separated from the main body, all set against a plain, unadorned background. +painting_0.jpg I don’t have the capability to identify or describe people or specific items like mittens in images, but it seems this is an artistic illustration. +cartoon_16.jpg The image depicts a pair of mittens with a textured, patterned design featuring small heart shapes and a geometric motif, viewed from an angled side perspective, against a plain background with the mittens’ cuffs prominently displayed. +cartoon_1.jpg The mitten is bright red with a simple, rounded shape, viewed frontally on a snowman with a vibrant lime green background. +sticker_1.jpg A low-resolution image shows a black mitten with a simple, flat silhouette against a blurred, textured gray background, accompanied by handwritten labels and a red, hat-like shape nearby. +sculpture_1.jpg The mitten appears to be a light beige color with a textured, knitted pattern, viewed from the front against a softly blurred indoor background, featuring visible wire and sculpted elements in the environment. +sketch_19.jpg A sketched mitten in black and white, viewed from the side in a three-quarter pose, features visible stitching details and a thick cuff against a plain white background. +sketch_2.jpg The mitten is an outlined drawing with a polka-dot pattern, positioned flatly with a simple banded cuff design, lacking any distinct background environment. +cartoon_23.jpg The mitten is a solid dark blue with a smooth texture, viewed from the side, and set against a bright green background alongside a red gift and a character wearing a blue hood. +sketch_22.jpg The illustration shows a simple mitten with a fluffy, fur-like cuff, presented in a monochrome line drawing with a front view, against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/mobile_phone_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/mobile_phone_descriptions.txt new file mode 100644 index 0000000..4c5566c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/mobile_phone_descriptions.txt @@ -0,0 +1,10 @@ +sticker_1.jpg The image shows a grayscale, sketch-style drawing of an early 2000s mobile phone with a circular keypad and small screen, placed on a metallic surface beside a red vehicle and building in the background. +sketch_14.jpg A stylized, hand-drawn mobile phone is depicted from a frontal viewpoint with simplified buttons and screen icons, outlined in black with a white background, surrounded by various cartoonish elements representing different devices and hands interacting with them. +sketch_19.jpg The mobile phone is depicted in a cartoonish style with an orange body, rectangular buttons, a green screen displaying simple graphics, an antenna emitting waves, and is angled slightly upward against a plain background. +painting_0.jpg A painted depiction of a gray and white mobile phone on a textured, light blue brick wall, seen from a straight-on angle, features a small monochrome screen and a distinct button layout. +sketch_1.jpg The illustration shows a black and white, sketch-like mobile phone drawn from an angled perspective, featuring distinct, thick outlines, a circular home button, and visible side buttons on a plain white background. +deviantart_0.jpg The image shows an unfoldable pink mobile phone with a glossy texture held vertically by a person with a distressed expression in a dark, shadowy background. +sketch_0.jpg A hand-drawn illustration shows a person holding a mobile phone with a case in a vertical orientation, against a plain white background, with visible details including a speaker cutout and a home button outline at the front. +cartoon_9.jpg I'm sorry, I can't assist with this. +sketch_26.jpg The sketched mobile phone, viewed at a tilted angle, features an oblong shape with a small screen, a physical keypad with circular buttons, and sits against a plain white background that emphasizes its line-drawn texture. +cartoon_6.jpg A hand-drawn black and white sketch of a mobile phone in portrait orientation is held upright, with a monochrome screen reading "SMS," surrounded by a surreal, jagged, and dynamic background featuring lightning-like patterns and abstract organic elements. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/monarch_butterfly_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/monarch_butterfly_descriptions.txt new file mode 100644 index 0000000..e36e0ce --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/monarch_butterfly_descriptions.txt @@ -0,0 +1,10 @@ +painting_30.jpg The pendant depicts an abstract monarch butterfly with vivid orange and red wings outlined in black, set against a bright blue background, with the butterfly in a side profile showing a stylized, geometric pattern. +sketch_23.jpg A detailed pencil drawing of a monarch butterfly is shown in side profile, highlighting its intricate wing patterns and textures against a plain, unfinished background, with the butterfly perched on what appears to be a sketched flower or branch. +painting_25.jpg A felt artwork depicts a monarch butterfly with vivid orange wings flecked with black and white spots, positioned mid-flight above a colorful felt garden scene of flowers and leaves, with another creature in the foreground. +painting_40.jpg The image depicts a painted monarch butterfly with vibrant orange wings outlined in black, showing a few white spots, positioned against a warm-toned, square-patterned background. +sculpture_0.jpg The low-resolution image shows a metal sculpture of a butterfly with intricately cut-out patterns on the wings, painted in a vibrant red-orange hue, illuminated by sunlight, and set against a backdrop of lush, green foliage. +tattoo_11.jpg This collection of tattoos features stylized butterflies with black outlines and intricate details, filled with a muted pink color and resting against a backdrop of script text on skin. +art_13.jpg The monarch butterfly is depicted in a stylized mural with vivid orange wings marked with black veining, showcased in a frontal view against a tiled green wall, featuring distinctive white spots along the wing edges. +painting_6.jpg The monarch butterfly in the image displays vibrant orange wings with black veining and white spots along the edges, resting in a vertical pose on a cluster of purple flowers against a lush green background. +tattoo_26.jpg A tattoo of a monarch butterfly is depicted with vibrant orange wings veined with black and dotted white edges, situated on a human foot resting on a white towel with visible toenails painted red. +embroidery_3.jpg The monarch butterfly, shown from a side view, features vibrant orange wings with black outlines and white spots, displayed on a textured white fabric background alongside embroidered blackberries and a white flower. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/mushroom_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/mushroom_descriptions.txt new file mode 100644 index 0000000..7fa0e5c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/mushroom_descriptions.txt @@ -0,0 +1,10 @@ +sculpture_18.jpg The mushroom appears oversized with bright, vivid colors including red and yellow polka dots, positioned among lush greenery in a dimly lit natural woodland setting, illuminated by colored artificial lights creating a whimsical and surreal ambiance. +embroidery_16.jpg The object appears as an embroidered depiction of two red mushrooms with white spots, set against a white cloth background, accompanied by a small floral-patterned creature and leafy green accents. +toy_8.jpg A knitted, bright pink mushroom figurine with a smiling face and yellow spots on the cap, viewed from above against a matching pink fabric background. +videogame_25.jpg The mushroom has a smooth, glossy purple cap and a beige cylindrical stem with cartoonish facial features including two black eyes and a round open mouth, viewed from a front angle against a transparent checkered background. +toy_1.jpg The low-resolution image features a plush, rounded mushroom with a bright red cap dotted with creamy white spots, positioned on a greenish fabric surface, surrounded by various stuffed animals and figurines. +sculpture_10.jpg The object resembles a large, pale wooden mushroom sculpture with a smooth texture, positioned in an upright pose on a grassy field with scattered wildflowers and distant grassy patches. +painting_1.jpg The mushroom cluster exhibits warm brown caps and darker gills beneath, viewed from an angled perspective, set against a leafy, earthy forest floor with shades of green and beige. +deviantart_1.jpg A cluster of smooth, brown-capped mushrooms with slender, pale stems is growing vertically on a tree trunk, set against a blurred green forest background. +graffiti_23.jpg The image depicts a vibrant mural featuring large red mushrooms with white spots at the center foreground, surrounded by a whimsical garden-like setting with painted flora against a stone-textured house façade background. +painting_10.jpg The image shows an abstract, painted mushroom with a wide, pale yellow and purple cap, a thick, grayish stem, viewed from the side, against a green and blue background, with visible brushstrokes and childlike elements such as a red shape resembling a ladybug. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/newt_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/newt_descriptions.txt new file mode 100644 index 0000000..ac8d60a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/newt_descriptions.txt @@ -0,0 +1,10 @@ +sketch_10.jpg A sketched newt is seen in a side profile, resting on a textured log above water with visible spots along its back, depicting it in a simple, monochromatic setting with another newt partially visible below. +sketch_12.jpg The newt appears in a side profile pose with a smooth, speckled texture displaying shades of gray and a light-colored belly, set against a plain, shaded background typical of a pencil sketch. +cartoon_3.jpg Each image shows a vivid, color-tinted X-ray of a newt's skeletal structure in a lateral view against a stark black background, highlighting the spine and limbs in four distinct hues: green, blue, yellow, and red. +origami_0.jpg A gold-colored newt with red spots is positioned in a lateral view on a flat blue surface, showcasing its elongated tail and textured skin with four limbs spread outward. +art_8.jpg The newt appears silhouetted against a warm, softly lit background, with its textured skin showing a hint of brown hues, posed in mid-motion with legs extended, and surrounded by a shadowy environment that suggests an indoor setting. +cartoon_5.jpg The newt is a stylized, bright orange cartoon with a smooth texture, depicted from a side view with a cheerful expression, standing upright on a green background with a playful pose and a light outline for emphasis, while the scene includes a small white sphere and a black outlined trash bin, creating a friendly, illustrative look. +toy_0.jpg The illustration depicts a newt with a smooth, elongated body curled within a shaded enclosure, showcasing a distinctive cluster of rounded protrusions on its back and a gentle curvature in its posture. +sketch_17.jpg The illustration shows two newts with a dark, mottled texture and elongated bodies, displayed in a side view as they swim underwater amidst aquatic plants and a lightly rippled pond surface, with noticeable speckled patterns and slender limbs clearly visible. +origami_3.jpg A bright green, shiny plastic newt is seen from above on a light background, with its crinkled texture and elongated tail visible. +misc_5.jpg The image displays a fabric pattern with orange, red, and brown stylized newts on a pale background, scattered among small circle motifs, with a visible measuring tape providing scale. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/orangutan_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/orangutan_descriptions.txt new file mode 100644 index 0000000..dafb6f4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/orangutan_descriptions.txt @@ -0,0 +1,10 @@ +graphic_0.jpg The image depicts an orangutan with a predominantly brown, textured appearance, viewed from the front, with its face partially obscured, set against an abstract, multi-toned background with circular patterns. +painting_37.jpg The orangutan in the image has vibrant reddish-brown fur, a gentle expression, with a soft, blue-gray face, seen in a relaxed pose amidst a lush, vividly leafy jungle background. +painting_28.jpg The orangutan has a textured, reddish-brown fur with dark shadows around its eyes and mouth, seen in a close frontal pose against a blurred, abstract green and gray background, with distinct light reflecting off its nose and mouth area. +art_15.jpg A painting of an orangutan head with a wide-eyed expression is rendered on a torn page against a text-filled background, featuring a warm, brownish-orange color with a soft, fur-like texture and yellow highlights framing its face. +painting_23.jpg The image depicts two orangutans with textured, reddish-brown fur; one appears relaxed with closed eyes while sitting, and the other, with an open mouth, is behind, set against a plain beige background. +art_7.jpg The image shows a rough sketch of an orangutan with a dark, textured face, visible facial features, and a side profile on a plain, possibly notebook-paper background. +misc_4.jpg The orangutan sculpture, with deep reddish-brown, textured fur and striking black facial features, is posed hanging from a tree branch in a dappled sunlight forest setting, showing elongated arms and detailed musculature despite the low resolution. +toy_7.jpg This plush orangutan features vibrant orange, shaggy fur with a soft gray face and chest patch, sitting upright against a light-colored wall on a patterned sofa, with elongated arms draping naturally over the edge. +painting_24.jpg The orangutan is depicted with reddish-brown, shaggy fur and a contemplative pose sitting with its arms crossed, set against a warm-toned, abstract background. +painting_32.jpg The painting depicts an orangutan with vivid orange and red fur, a textured brushstroke pattern, and a striking direct gaze, set against a dark, abstract background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/ostrich_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/ostrich_descriptions.txt new file mode 100644 index 0000000..b96b5a1 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/ostrich_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_51.jpg Three stylized ostrich figures with simple outlines in black and sections filled with blue and white, stand against a light green background, with abstract white cloud shapes floating above. +cartoon_62.jpg The image creatively spells "ostrich" using stylized black calligraphy resembling the long neck, body, and legs of an ostrich, with no realistic background present. +toy_5.jpg A plush ostrich toy with a light beige head and legs, a fluffy white neck, and blue body sits perched on a wooden crate against a blurred indoor backdrop, displaying a cartoonish elongated neck and legs. +origami_0.jpg A paper-crafted, origami-style ostrich with a textured gray neck, head, and lower body, contrasted by a darker, creased body and tail, is captured in mid-stride against a solid blue background. +graffiti_4.jpg The image depicts a stylized, cartoon-like ostrich painted on a plain wall, characterized by vibrant blue hues, exaggerated wide eyes, and spiky feathers, viewed from a frontal perspective against a minimalistic background. +graffiti_10.jpg The image shows a black-and-white, textured illustration of an ostrich with a long neck and small head, positioned in a side view with a sleek upward-sloping metal surface in the background, suggesting an escalator environment. +origami_3.jpg The image portrays a paper origami ostrich with a grayish body and black wings, standing upright on a sunlit, dry grassy plain with a backdrop of blurred bushes. +sketch_14.jpg The ostrich is depicted in a black-and-white illustration with a textured plumage and intricate feather details, standing upright in a forward-facing pose with its long neck extended, set against a plain white background with visible leg details. +sculpture_2.jpg The object resembles a painted ostrich statue with a smooth, dark feathered body and white neck, poised in a side profile with a background of trees and a corrugated metal roof topped with foliage and balloons. +cartoon_59.jpg The ostriches are depicted in silhouette with dark, textured feathers against an orange background, showing side profiles with their long necks erect and legs elongated, likely drawn in a stylized or illustrative manner. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/panda_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/panda_descriptions.txt new file mode 100644 index 0000000..f1d5f4d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/panda_descriptions.txt @@ -0,0 +1,10 @@ +misc_57.jpg The image shows two statues of pandas with black and white paint, sitting side by side on dark soil beneath a tree, with round heads and distinctive black eye patches and ears, surrounded by sparse green vegetation and a metallic fence in the background. +misc_84.jpg The panda-shaped topiary sculpture is composed of two-toned foliage mimicking panda colors, seated in an upright pose on well-manicured grass, with a backdrop of bamboo and distant park-goers, featuring distinct leaf accents on its lap. +sketch_17.jpg The image shows a hand-drawn sketch of a panda with predominantly white fur accented by black patches around its eyes and ears, posed with its mouth slightly open and paw lifted, against a plain white background, highlighting the detailed textural lines of the fur. +misc_113.jpg A mosaic-like depiction of a panda face with textured black-and-white coloration, set against a bright blue background with stylized green bamboo, presented in a frontal view with an expressive gaze. +misc_141.jpg A cartoon panda wearing an orange sports jersey strikes a dynamic martial arts pose against a vibrant, colorful temple backdrop filled with intricate patterns and symbolic decorations. +misc_44.jpg A stylized black and white panda illustration on a bright green background is shown facing forward with an enlarged head and small limbs, surrounded by text. +misc_42.jpg A cartoonish panda with goggles on its head is depicted front-facing on a black box with bold red and white text, featuring white facial markings and a nose, against a plain wooden surface background. +deviantart_17.jpg The image depicts a creatively arranged bento box resembling a stylized panda formed by white rice for the face and black seaweed for the ears and eye patches, with the box containing additional elements like rolled omelette, orange slices, and assorted vegetables. +misc_78.jpg The image depicts two stylized pandas with characteristic black and white coloring, enjoying a red object, possibly food, in an abstract manner with a textured finish, placed against a soft purple and beige background. +misc_35.jpg The panda sculpture appears to have a rough, textured surface with distinct paper-like black and white patches, positioned in a side view with its head slightly lowered, set against a plain, light-colored background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/parachute_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/parachute_descriptions.txt new file mode 100644 index 0000000..5b14281 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/parachute_descriptions.txt @@ -0,0 +1,10 @@ +graphic_0.jpg The parachute has a red and white striped canopy, depicted from a frontal view with a box suspended underneath, set against a simple white background with red accents and text. +graffiti_9.jpg A graffiti-style illustration of a parachute, with a red and white canopy and a checkered texture, is painted on a worn, white wall covered in graffiti initials against an urban backdrop. +cartoon_28.jpg A stylized turquoise parachute with swirling patterns features wavy lines, appearing above a cartoon figure in mid-descent against a light abstract background. +videogame_4.jpg A character descends with a white, segmented parachute against a rainy background, set over a rocky, reddish terrain during a side-view action scene in a pixelated style. +misc_0.jpg The parachute, depicted from a side view, features a fire-themed design with flame-like patterns against a white background, surrounded by simple drawn clouds and rain lines against a plain paper backdrop. +art_4.jpg A stained glass artwork depicting a parachutist in a blue suit is shown with a multicolored canopy of red, orange, yellow, green, and blue segments, suspended indoors with blurred greenery and a beige structure visible in the background. +cartoon_1.jpg The black-and-white drawing features a penguin-like figure with a simplistic texture, viewed from the side as it appears to wear a wing-like parachute on a cliff, with birds flying in the sparse sky above. +art_0.jpg The parachute appears as a small, beige dome with a net-like texture, seen from a side angle, set against a lightly textured, monochrome background. +cartoon_29.jpg The parachute is a large green canopy with darker green segments, held by several brown strings, and appears above a cartoon dog character depicted as skydiving against a light blue, map-like background, with texture resembling paper layers. +art_9.jpg A black and white stencil of a parachutist is painted against a vibrant orange textured wall, with the figure depicted from the front, holding onto parachute cords that fan out above him. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/peacock_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/peacock_descriptions.txt new file mode 100644 index 0000000..fb3455c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/peacock_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_0.jpg The peacock, depicted in flight from a side view against a pink, cloud-filled background, showcases iridescent blue and green plumage with flowing tail feathers, and expansive wings featuring distinct darker tips. +deviantart_10.jpg This stylized peacock features a geometric design with vibrant blue and teal hues, showcasing its feathers in an elaborate display from a symmetrical front-facing viewpoint, set against a plain white background with colorful geometric patterns. +cartoon_12.jpg A stylized illustration of a peacock, predominantly depicted in black with intricate patterns resembling floral designs, stands in profile with its tail feathers fanned out against a plain white background. +deviantart_6.jpg The image depicts a monochromatic sketch of a peacock in profile view, with intricately detailed feather patterns and a slender neck; its crest is clearly visible against a plain backdrop. +deviantart_7.jpg A vibrant, abstract representation of a peacock features swirling, colorful patterns with a prominent turquoise head, sweeping black plumage, and a hypnotic spiral design against a soft blue backdrop. +origami_12.jpg An intricate origami peacock with green textured paper forms a vivid, geometric fan tail against a yellow background, showcasing a side view of the folded blue body and legs. +graphic_4.jpg A stylized illustration of a peacock in profile features a vibrant blue body and head with a prominent yellow and black eye, surrounded by an array of bright green feathery tail plumage adorned with large yellow eyespots, set against a textured green background. +sculpture_9.jpg A large, blue, peacock-shaped topiary with a textured body and vibrant fan-like tail is prominently displayed in a well-manicured garden setting, featuring circular eye patterns and a backdrop of lush greenery and palm trees. +sketch_18.jpg The image depicts a black and white line drawing of a peacock perched on a branch, with intricate feather patterns and an elongated, detailed tail against a blank, grid-marked background. +embroidery_7.jpg A stylized peacock with a bright blue body and intricately embroidered tail feathers, featuring yellow and green accents, is depicted against a dark fabric background, viewed from the front with tail fanned out. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pelican_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pelican_descriptions.txt new file mode 100644 index 0000000..55790d8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pelican_descriptions.txt @@ -0,0 +1,10 @@ +painting_9.jpg The pelican, resting on wooden posts, exhibits a predominantly white and brown plumage with a long, pink beak, set against a coastal backdrop featuring a lighthouse, rocky shoreline, and distant seabird in flight under a clear blue sky. +painting_20.jpg The pelican, viewed in flight from a side angle, displays a smooth white body with contrasting dark wings, over a textured blue water background, characterized by its long, pale pink bill and black-tipped wings. +art_0.jpg A metallic silver, sculpted pelican with an orange beak is depicted in a side pose, set against a background of lush green plants, featuring a circular opening on its back and a glossy texture. +origami_2.jpg A sculpted paper pelican with a combination of golden ochre and gray hues stands on folded feet against a neutral background, showcasing a prominent long beak and textured body in a three-quarters pose. +deviantart_9.jpg A pelican stands in profile on emerald green water with a dark, grassy background, featuring a mostly white body, greyish shading on wings, and orange bill, with a faint reflection visible on the water's surface. +graffiti_0.jpg A mural of a pelican with a large, shadowy silhouette against a bright yellow and orange background depicts it from a side view with its distinctive long beak and slightly raised, detailed wings. +art_10.jpg The object is a tall, sculptural pelican with a mosaic-like texture, featuring an orange and gray color scheme, viewed in a side profile pose next to a beige building with large windows and a decorative plant at its base. +painting_21.jpg The image depicts a painted depiction of a pelican with a predominantly white and grey texture, highlighted by a warm yellow and orange hue on the bill, positioned in a relaxed pose facing right on a dark, reflective water surface with abstract blue and white reflections, set against a mostly dark background with a thin horizontal red line near the top. +cartoon_9.jpg A simplistic drawing of a pelican with an elongated yellow beak, white body and neck, and a small gray wing, standing on thin legs against a plain white background. +tattoo_2.jpg The tattoo depicts a stylized pelican with pink and light purple feathers, holding a green fish in its beak, against a vibrant background of orange and blue circles and waves on a person's hand. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pembroke_welsh_corgi_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pembroke_welsh_corgi_descriptions.txt new file mode 100644 index 0000000..43f572e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pembroke_welsh_corgi_descriptions.txt @@ -0,0 +1,10 @@ +misc_38.jpg A watercolor-style depiction of a pembroke welsh corgi features a blend of warm brown, green, and white fur, portrayed in a playful, lying-down pose with large expressive eyes and a humorous, minimalist text on a plain white background. +misc_39.jpg The low-resolution image shows a needle-felted orange and white figure resembling a Pembroke Welsh Corgi seen from behind, with distinctively short legs and a rounded fluffy tail, set against a colorful woven textile background. +misc_36.jpg A small, embroidered depiction of a Pembroke Welsh Corgi with brown and white fur is perched on a finger, featuring a front-facing pose with a slightly tilted head against a blurred indoor background. +misc_16.jpg The illustrated Pembroke Welsh Corgi displays a tricolor coat with a blend of tan, black, and white speckles, stands in profile with its characteristic short legs and ears alert, set against a textured background with grass and small stones. +misc_29.jpg A cartoon-style illustration depicts a Pembroke Welsh Corgi with rich brown and white fur, facing forward with a smiling expression, oversized ears, and a black nose, set against a plain white background. +sketch_1.jpg A black-and-white drawing captures a Pembroke Welsh Corgi from a frontal view with its mouth open in a joyful expression, showcasing prominent ears and detailed fur texture against a plain background. +sketch_9.jpg A sketched Pembroke Welsh Corgi with a fluffy, slightly textured coat is depicted from a frontal viewpoint, displaying its prominent ears and tongue out, against a plain white background. +misc_6.jpg The Pembroke Welsh Corgi stands on a grassy surface with its reddish-brown and white fur appearing soft and woolly, ears perked up, and it gazes attentively to the side against a blurred earthy-toned background. +misc_27.jpg A cartoon-style depiction of a Pembroke Welsh Corgi with exaggeratedly large ears, featuring black and white fur with reddish-brown markings, seen from the front as it rests on its paws, set against a plain white background. +misc_24.jpg A cartoon of a corgi with brown and white fur is standing upright, wearing a blue scarf and diaper, while humorously pulling toy sheep, against a textured beige background with pink wavy lines and scattered green dots. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pickup_truck_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pickup_truck_descriptions.txt new file mode 100644 index 0000000..3362c14 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pickup_truck_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_2.jpg The pickup truck sketches, seen from front and rear angles, are rendered in black and white with emphasized linear textures, set against a minimal background of wheels and tools, displaying notable features like a prominent front grille with a cross pattern and Texas license plates. +art_0.jpg The image depicts a stylized, cartoonish maroon pickup truck with chrome details and a smiling driver, shown in profile against a painted backdrop of palm trees on a wooden-striped surface. +videogame_6.jpg A muddy red pickup truck with large off-road tires is seen from a front-side angle, crossing a shallow, murky stream in a forested area, with visible underbrush and trees in the background. +deviantart_2.jpg The pickup truck is vibrant blue with a smooth texture, shown in a left side profile view, showcasing its classic rounded fenders and simple wheel design, with a minimalistic white background enhancing its retro appearance. +misc_16.jpg The pickup truck is a bright red with a smooth texture, featuring a white camper shell, viewed from the rear-left angle against a plain dark background, with distinct retro styling and bold lettering on the tailgate. +toy_5.jpg A silver-gray pickup truck model with a smooth texture is viewed from an elevated rear three-quarter angle, featuring a black cargo bed with coiled material, set against a plain white background with distinct glossy hubcaps and a simple decal on the door. +painting_9.jpg The model pickup truck features a glossy orange and black color scheme with a ridged flatbed design, viewed from an elevated rear angle against a reflective glass surface background. +sketch_10.jpg A grayscale illustration of a vintage pickup truck is shown from a low, front-side perspective, featuring prominent wheel arches, distinctive horizontal grille slats, and simplistic, smooth body lines against a plain white background. +sculpture_2.jpg A sand sculpture of a pickup truck with "AMERICAN FORCE" carved on the side, featuring large blue wheels and surrounded by mounds of sand, set in a busy outdoor event with a red promotional backdrop. +misc_0.jpg A green, cartoon-style pickup truck is pictured from the side, filled with red heart shapes, set against a textured card background with layered borders and heart designs. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pig_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pig_descriptions.txt new file mode 100644 index 0000000..718bcef --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pig_descriptions.txt @@ -0,0 +1,10 @@ +toy_20.jpg The soft, pastel pink plush pig with faint white shading on its snout and ears is viewed frontally in an indoor setting, featuring stitched eyes and a simple snout with two small, round nostrils. +toy_9.jpg The object resembles a small, glossy green pig figurine with visible seams, slightly forward-pointing ears, and is standing on a wooden surface with a blurred background of muted colors. +deviantart_2.jpg The image shows a stylized illustration of a pink pig's head with a prominent snout, closed eyes, and outlined features against a solid pink background. +sculpture_22.jpg A metallic sculpture resembling a pig with wings, displayed in a standing sideways pose on wheels, situated in an industrial setting with exposed beams and signs in the background. +origami_1.jpg A pink origami pig with folded paper wings stands on a textured dark gray surface, viewed from a side angle, with its wings raised and casting a shadow. +art_10.jpg The image shows a beige, hairless sculpture resembling a pig-human hybrid, lying on its side with detailed folds and wrinkles, positioned on a white, structured surface, suggesting an art exhibit environment. +misc_16.jpg The image displays a stylized pig graphic with smooth, bold colors featuring predominantly white and pink areas, depicted in profile with an open mouth and cheerful expression, set against a plain white background with bold black outlines defining its features. +tattoo_3.jpg A tattoo of a stylized black pig with wings, viewed from the side, is on pale skin, set against a checkered tile floor background. +sticker_3.jpg A simplistic orange cartoon pig with a smiling expression and curly tail is illustrated against a blue square background, accompanied by the words "PIGS ARE FRIENDS NOT FOOD" in bold orange and red text, all on a cream-colored wall. +sketch_19.jpg The image depicts a black and white, intricately textured illustration of a pig in a side profile view, with prominent bristles and defined body contours, standing on a textured ground without any distinct background elements. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pineapple_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pineapple_descriptions.txt new file mode 100644 index 0000000..68833a7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pineapple_descriptions.txt @@ -0,0 +1,10 @@ +videogame_15.jpg The bright, cartoonish pineapple features a vivid orange color with smiling facial features, lively green leaves on top, and a whimsical red background with abstract glowing effects. +sketch_0.jpg The illustration depicts a pineapple in a frontal view with a detailed texture showing the hexagonal pattern of its skin and layered leaves at the top, against a plain white background. +graphic_10.jpg The image depicts a stylized illustration of a pineapple with dark green leaves and a textured, abstract yellow body, set against a patterned background of overlapping circles in shades of green, yellow, and brown. +art_6.jpg The pineapple appears in a monochromatic sketch with a textured, spiky surface, viewed from the front against a shaded, textured background, with prominent leaves at the top and detailed cross-hatch shading. +painting_12.jpg The pineapple is depicted with a vibrant yellow body and green fronds, showing a rough, textured pattern, positioned centrally against an abstract background of colorful geometric and zigzag patterns. +art_7.jpg A red stencil of a pineapple silhouette, including leaves and body, is spray-painted on a pale wall with some paint dripping down, partially shadowed on the right side. +graphic_9.jpg A white outline drawing of a pineapple with a textured, scale-like surface and a leafy crown is centered on a dark gray background, surrounded by a chalkboard-like texture and the word "pineapple" written beneath it. +cartoon_8.jpg This cartoon pineapple features a bright yellow body with a diamond-patterned texture, positioned upright with green spiky leaves and expressive eyes, against a plain white background. +graffiti_2.jpg The black, stylized silhouette of a pineapple with spiky leaves is spray-painted on a rough, textured white wall, featuring geometric cut-outs that form a checkered pattern across its body. +sketch_13.jpg The illustrated pineapple features a rough, textured surface with distinct diamond patterns, viewed upright with spiky leaves at the top, and set against a simple white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pirate_ship_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pirate_ship_descriptions.txt new file mode 100644 index 0000000..270a9ac --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pirate_ship_descriptions.txt @@ -0,0 +1,10 @@ +painting_3.jpg The pirate ship is depicted at sunset with dark billowing sails against a vibrant orange and blue sky, featuring a skull and crossbones flag, as seen from the deck with wooden textures and a curved railing in the foreground. +toy_1.jpg The pirate ship toy features a bright yellow and blue hull with smooth plastic texture, adorned with ornate gold detailing at the prow, topped with striped blue and white sails, and is accompanied by a red-capped figure, set against a backdrop depicting an old-fashioned street scene. +deviantart_1.jpg A weathered, brown-hued pirate ship with multiple cream sails unfurled is shown in side profile against a misty sea and mountainous backdrop, featuring a distinctive Jolly Roger flag atop its mast. +tattoo_18.jpg The pirate ship is depicted as a black line tattoo on an arm, featuring prominent sails and a flag with a skull and crossbones, set against a background of music note patterns on clothing. +cartoon_8.jpg The pirate ship has a cartoonish appearance with a bright red and brown striped hull, bold black sails featuring a white skull and crossbones, and yellow windows, set against a simplistic blue background depicting a sea with stylized waves. +sticker_1.jpg The illustrated pirate ship features a brown wooden texture with two large white sails emblazoned with text, viewed from the side and set against a plain background, with a small Jolly Roger flag atop its single mast and a stylized logo on one sail. +graffiti_1.jpg A white and pink stenciled pirate ship, viewed from the side with full sails, is spray-painted on a dark, industrial metal surface with various signage and graffiti. +tattoo_12.jpg A black-outline tattoo of a stylized pirate ship with billowing white sails, shown from a side angle and surrounded by cartoonish clouds and birds on skin. +tattoo_20.jpg A detailed tattoo of a pirate ship, depicted in black and gray ink with intricate shading and texture on a person's side, features full sails from a side angle view, anchored by visible masts and rigging, set against a backdrop of the person's skin inside a modern interior with a tiled floor and wall decorations. +sculpture_1.jpg A small, dark pirate ship model with black sails and a brown hull, adorned with colorful details, is set in a grassy garden surrounded by leafy green trees and a wooden fence. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pizza_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pizza_descriptions.txt new file mode 100644 index 0000000..b9066c4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pizza_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_37.jpg The image depicts a stylized illustration of a cartoon character joyfully holding a large slice of pizza with visible pepperoni against a warm, orange gradient background. +cartoon_10.jpg The image shows a cartoon bear with an open mouth holding a slice of stylized pizza with yellow cheese and red pepperoni against a wooden textured background on a rectangular board. +deviantart_36.jpg I can't comment on or analyze the pizza in this image, but I can help with other inquiries or tasks. +deviantart_29.jpg A slice of pizza with a golden-brown crust and bright melted cheese, viewed in the foreground being held by an animated character in a vibrant red and orange setting that resembles a delivery theme. +videogame_0.jpg The image shows a repetitive pattern of pixelated pizza slices with a brown background, each slice featuring a yellow base, red topping, and small green and white details, creating a colorful and blocky appearance. +misc_9.jpg Two small, triangular pizza-shaped objects with a textured, creamy color base and round red spots are positioned on a vibrant blue surface, viewed from an angled close-up perspective. +toy_12.jpg The image shows plush toy pizzas with a tan-colored crust and mottled orange and red centers, featuring cartoon faces, displayed on a blue plate over a red checkered tablecloth, with one photo showing a playful stack. +videogame_15.jpg A partially eaten pizza with a golden-brown crust and red pepperoni slices rests inside an open cardboard box on a wooden table, set against a dimly lit room with a vintage television in the background. +deviantart_25.jpg A slice of pepperoni pizza with melted cheese is held by a character with long black hair and a scarf, against a bright green background, observed in a cartoon style. +misc_2.jpg The glossy, ceramic-like pizza features pepperoni and vegetable toppings with exaggerated textures, viewed from an angle showing a raised center, set against a blurred indoor environment with tables and scattered objects. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/polar_bear_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/polar_bear_descriptions.txt new file mode 100644 index 0000000..7a1bc5a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/polar_bear_descriptions.txt @@ -0,0 +1,10 @@ +sketch_2.jpg A minimalist sketch depicts a large polar bear with two cubs, all outlined in black against a stark white background, with the adult bear lying down in a protective embrace around the young, showcasing a calm and nurturing pose. +misc_26.jpg A stylized white polar bear with bold outlines is depicted in profile on a bright blue airplane tail, set against a circular yellow background. +misc_0.jpg This depiction of a polar bear features a smooth, white texture with a slightly glossy finish, positioned in a standing pose against a dark, blurred background, showcasing minimal facial details and a rounded body despite the low resolution. +misc_147.jpg The image shows two stylized white polar bears with a smooth, matte texture outlined in black, positioned side by side in a frontal pose against a solid purple background, with no discernible individual features due to the stylized representation. +misc_156.jpg The image shows a smooth, pale grey stone sculpture of a polar bear and cub lying on a detailed stone base, with a side view that highlights the minimalistic facial features and claws, set against a grassy park environment with trees and a distant urban backdrop. +misc_73.jpg A simplistic, cartoon-like depiction of a cream-colored polar bear with a smooth texture is shown in side profile standing on an irregularly shaped, light pink and gray patch against a solid light blue background. +misc_19.jpg A small, smooth, and glossy white polar bear figurine is posed standing with its head slightly turned, set against a snowy background with visible patches of foliage. +misc_130.jpg The image depicts a pastel-colored painting of a polar bear cub snuggling against its parent, with soft white and lavender hues and a serene expression, set against a subtle warm-toned background resembling an abstract snowy landscape. +sketch_3.jpg Two polar bears, one larger and one smaller, are positioned side by side with a sketched appearance lacking distinct color, emphasizing fine, soft textures and rounded shapes against a simple, white background. +tattoo_1.jpg A tattoo depicting a polar bear with creamy white fur and subtle shading, standing upright with a colorful pink and blue abstract background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pomegranate_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pomegranate_descriptions.txt new file mode 100644 index 0000000..cfa0f8b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pomegranate_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_7.jpg The image depicts a vibrant, red-toned pomegranate with a glossy, textured surface, partially sectioned to reveal its clusters of seeds against a warm, monochromatic background, positioned alongside other whole pomegranates on a flat surface. +painting_14.jpg Three pomegranates with a rich, deep red hue and smooth to slightly textured surfaces are shown with one cut open, revealing glossy seeds, set against a warm, gradient background that transitions from beige to burnt orange. +sketch_2.jpg The drawn pomegranate consists of one whole fruit with a crown, and two halves displaying detailed seeds, all shaded in grayscale with prominent etching lines, set against a plain background accompanied by stylized leaves and cursive text above. +painting_5.jpg The pomegranate, depicted in low-resolution, has a rich red color with a smooth yet subtly textured surface, positioned centrally on a flat, vibrant pink background, with dark discoloration indicating shadowing on the right side. +painting_18.jpg A stylized, low-resolution image shows a pomegranate that is brightly red with a rough, textured surface, split open to reveal clustered seeds, centered against a contrasting abstract blue and black background. +painting_3.jpg The pomegranate half, viewed from the side with its seeds exposed, features a rich red and slightly textured surface, resting on a white plate against a blurred, warm-toned background with scattered individual seeds nearby. +deviantart_23.jpg The object resembles a pomegranate with a vivid red and orange textured surface, partially covered in snow, set against a wintry forest background with a creature nearby. +videogame_3.jpg The object resembling a "pomegranate" is cartoonishly vibrant red with a smooth, simplified texture and stylized leafy crown, set against a whimsical, animated background with purple hues and a stone border. +sketch_12.jpg The illustration depicts two stylized pomegranates, one with seeds exposed showcasing a highly detailed pattern of circular shapes, while the other remains whole with defined crown-like tops, set against a plain white background that emphasizes their black outline and linear texture. +deviantart_26.jpg I cannot determine the presence of a pomegranate in the image based on the given information. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pomeranian_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pomeranian_descriptions.txt new file mode 100644 index 0000000..9f22cd5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pomeranian_descriptions.txt @@ -0,0 +1,10 @@ +misc_50.jpg The Pomeranian is drawn with a rich golden-brown fluffy coat, a frontal viewpoint showcasing its smiling face with pointy ears and a densely furred neck, against a plain white background. +misc_33.jpg Two fluffy Pomeranians wearing Santa hats are facing forward, with one on the left in a lighter cream shade and the other on the right in a deeper reddish-brown, both adorned with colorful Christmas lights against a snowy backdrop. +misc_37.jpg The artwork depicts a fluffy Pomeranian with golden-brown fur and white accents in a playful pose, reaching upward with its front paws, set against a dark green background framed in an ornate border. +misc_1.jpg The image features a simplistic, line-drawn representation of a Pomeranian with thick, spiky fur, an alert expression, prominent ears, and a central, frontal pose, set against a plain background with stylized text above. +misc_19.jpg Fluffy, cream and light brown pomeranian figurine with a smiling face, resting in an open palm against a solid dark background. +sketch_16.jpg A fluffy, sketch-style Pomeranian with a bushy tail sits facing forward against a plain white background, showcasing its round face and pointed ears. +sketch_12.jpg The sketch depicts a fluffy Pomeranian in a standing pose on its hind legs, showcasing a soft, voluminous coat with distinct shading, against a plain white background. +tattoo_0.jpg A tattoo of a Pomeranian with a light brown hue and soft fur texture is depicted in a forward-facing pose on skin, with notable large eyes and a distinct black nose amidst a plain background. +misc_34.jpg The Pomeranian has a fluffy, golden-brown coat with a white muzzle and chest, is sitting with its tongue out, surrounded by green grass and foliage with blurred flowers in the background. +misc_58.jpg A stylized depiction of a pomeranian displays vivid pink and white fur textures with a fluffy appearance, in a side profile pose against a contrasting yellow and black background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/porcupine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/porcupine_descriptions.txt new file mode 100644 index 0000000..5846375 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/porcupine_descriptions.txt @@ -0,0 +1,10 @@ +graffiti_0.jpg The porcupine depicted on the brick wall is a black and white mural with exaggerated spiky quills, viewed from the side in a crouching pose, against a background of urban graffiti and a red-bordered sign. +toy_2.jpg A small, toy-like porcupine with a brown and smooth face is adorned with spiky, silver-tipped faux quills, seen from the front amid artificial autumn leaves against a muted urban backdrop. +sculpture_6.jpg A metal sculpture resembling a porcupine features dark, spiky quills radiating outward, positioned on a small concrete slab against a background of red wooden boards and green grass. +art_0.jpg The object resembles a ceramic porcupine in relief, with a dark brown color and ribbed texture, viewed from the side, mounted on a vibrant red brick wall surrounded by colorful embossed leaf and fish designs. +misc_0.jpg The image depicts a simplistic, red embroidered outline of a porcupine with exaggerated quills on a textured, light fabric background, positioned above a colorful floral-patterned cloth. +sketch_15.jpg The porcupine-like mechanical object is depicted in a side view with metallic textures, featuring a series of elongated, pointed spikes resembling quills, set against a plain white background with visible bolts and segmented armor plates. +misc_2.jpg The object has a plush texture with mottled brown and white faux quills, is viewed lying on its side against a neutral background, and features distinct large, round black eyes and a small, endearing nose. +sketch_16.jpg A black-and-white sketch of a porcupine, depicted in profile view, showcases its distinctive quills radiating outward with a textured, spiky appearance, set against a plain background on a spiral-bound notebook page. +videogame_0.jpg An orange, pixelated starfish with five arms is depicted against a plain white background. +sculpture_8.jpg The stone carving of the porcupine features a textured, pale beige surface with intricately carved quills fanned out across its back, positioned in a low, crouching stance against an ornate, similarly hued architectural background with swirling patterns. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pretzel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pretzel_descriptions.txt new file mode 100644 index 0000000..75484c6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pretzel_descriptions.txt @@ -0,0 +1,10 @@ +misc_9.jpg The object resembles a segmented ceramic plate designed in the shape of a pretzel, featuring a brown, glossy finish with white polka dots and a checkered red and white pattern on its surface, set against a neutral tiled background. +sketch_21.jpg The black silhouette of a pretzel is depicted in a symmetrical, traditional looped knot shape against a plain white background, emphasizing its iconic twisted structure. +painting_1.jpg The image features a light-colored, smooth-textured pretzel viewed from above, set against a plain, soft gray background, with the pretzel's twisted loops and central holes clearly defined. +sketch_11.jpg A black and white illustration depicts a stylized pretzel with bold outlines and jagged, zigzag patterns along its edges, positioned at an angle on a plain, unobtrusive background. +sketch_16.jpg A black and white line drawing of a pretzel with a twisted, looped design, shown from the front, emphasizing its smooth, symmetrical curves and central knot, set against a plain white background. +videogame_2.jpg This pixelated pretzel appears bright orange with a blocky, pixelated texture, featuring white, square highlights against a flat, plain background, and exhibits an outline with sharp corners typical of 8-bit style graphics. +misc_3.jpg A stone mosaic depicting a pretzel is composed of smooth, earth-toned stones arranged in an interlocking pattern surrounded by white stones, set in a cobblestone pathway. +sketch_9.jpg The image depicts a black outline of a pretzel with a symmetrical design, viewed from above, against a diagonally-striped background, showcasing evenly spaced circular markings along its surface. +cartoon_11.jpg The artwork shows a stylized brown pretzel sitting like a hat atop a figure's head against a vibrant, patterned green background, with exaggerated features and leafy elements framing the scene. +videogame_1.jpg The pretzels are golden-brown, small, and numerous, with a glossy texture viewed from above, scattered against a round white backdrop with a blue patterned border. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/puffer_fish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/puffer_fish_descriptions.txt new file mode 100644 index 0000000..83eb67d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/puffer_fish_descriptions.txt @@ -0,0 +1,10 @@ +videogame_7.jpg The low-resolution image depicts a white and spiky puffer fish, viewed from the front in a sandy, underwater environment with minimal plant life and a dark blue background. +misc_98.jpg The puffer fish in the image is a model with a light purple and white body, a spiky texture, an open mouth showing small teeth, and large blue eyes, positioned on a wooden surface against a blurred indoor background. +misc_69.jpg The puffer fish is depicted from a side view with a round, spiky body mottled in shades of brown and cream, featuring prominent orange fins and spines against a plain white background. +misc_55.jpg The image shows a stylized cartoon puffer fish with bold black, white, and dark blue colors, featuring exaggerated round eyes and fins, positioned against a circular background with Japanese text, resembling a sticker on a textured surface. +misc_29.jpg A spherical, textured puffer fish object with a mottled yellow and off-white surface is perched in a garden setting with tropical plants and red coral-like structures, viewed from a slight angle in bright daylight. +sketch_16.jpg The line-drawn puffer fish, viewed from the side, features prominent spines and a large eye against a simple, unfilled background. +misc_87.jpg A large, beige puffer fish sculpture with dark eyes and a smooth, rounded body dotted with small spots is mounted above a store entrance, with a white banner featuring puffer fish graphics hanging nearby against a backdrop of urban street elements. +misc_19.jpg The puffer fish appears desiccated and brown with a textured, crumpled surface, viewed from a slightly elevated angle set against a plain, light background, featuring prominent, protruding eyes and a wide mouth. +misc_23.jpg The puffer fish illustration features a round, cream-colored body with brown horizontal stripes, small spikes, a prominent frown, and expressive eyes against a simple white backdrop, captured in a cartoon-style side view. +misc_80.jpg A cartoonish, yellow-and-white spiky puffer fish floats with a smiling face, surrounded by various small bottles and a whimsical insect character against a simple white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/pug_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/pug_descriptions.txt new file mode 100644 index 0000000..3dc1713 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/pug_descriptions.txt @@ -0,0 +1,10 @@ +graffiti_0.jpg A black monochrome stencil of a pug's face painted on a yellowish, textured wall, with the pug looking forward, its ears accentuated by dark shading, and the surrounding background featuring visible cracks and lines. +painting_33.jpg A stylized painting of a pug features cream-colored fur with a smooth texture, large dark eyes, and a prominent black snout, posed against a yellow background with a blue collar and a red heart, set on a textured pale blue wall. +cartoon_55.jpg The illustrated pug, shown in a stylized, cartoonish pose with a front-facing perspective, has a light tan body and distinct dark facial features, including a round muzzle and ears, set against a plain white background, with exaggerated, comically simplistic outlines. +toy_1.jpg A plush toy resembling a pug with a light beige body and black ears and muzzle, viewed from the front sitting upright, is set against a plain light gray background and displays a soft, fuzzy texture. +painting_50.jpg A painting of a pug shows the dog from the front, with a light gray face and darker ears set against a subtly shaded background, all enclosed in an ornate gold frame. +tattoo_38.jpg A cartoon-style pug tattoo features a tan and dark brown pug with oversized eyes and distinct facial wrinkles, viewed from the front with a playful expression, against a blurred indoor background on skin. +cartoon_23.jpg A stylized black and yellow pug with exaggerated wrinkles and a prominent eye stares forward from a left-side profile, set against a plain yellow background with comic-style elements in the vicinity. +cartoon_61.jpg A stylized black and white illustration of a pug with distinct dark shading around the snout, sitting on a throne-like chair with ornate patterns, viewed from the front against a simple line-drawn background. +painting_51.jpg A chalk drawing of a pug displays a textured beige coat with subtle shading, viewed from a frontal angle with its head slightly turned, positioned on a multicolored chalk-decorated pavement. +tattoo_13.jpg The pug illustration features a tan body with a dark brown face, standing upright against a textured gray wall, wearing a chain necklace and displaying a playful expression with its tongue out and arms crossed. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/red_fox_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/red_fox_descriptions.txt new file mode 100644 index 0000000..d3b4519 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/red_fox_descriptions.txt @@ -0,0 +1,10 @@ +misc_66.jpg The red fox, with its soft reddish fur and white underbelly, is depicted in a relaxed side pose against a muted green background, highlighting its alert expression and bushy tail despite the low resolution. +tattoo_1.jpg The red fox tattoo features a vibrant blend of orange and white fur, with a seated pose on an arm, surrounded by a soft blue background that contrasts with a coin placed nearby for size reference. +sketch_11.jpg The black and white illustration shows a red fox with a bushy tail, black legs, and pointed ears, standing sideways on a blank background with its head turned towards the viewer. +misc_60.jpg The red fox is depicted with vivid orange-brown fur, a bushy white-tipped tail, and subtle white accents on its chest as it sits among lush, green forest foliage, partially shadowed with a curious gaze. +misc_125.jpg A stylized depiction of a red fox with vibrant orange fur, white facial and chest markings, and a bushy tail is painted on a rough-textured gray concrete surface, with the fox sitting upright facing forward amid an urban setting with window reflections in the background. +misc_147.jpg The red fox is represented in a sculpture made of orange and red wire with distinct white accents for the face and tail, positioned in a crouching stance on a grassy landscape near a fence, against a backdrop of dense green foliage. +misc_62.jpg The depicted red fox features a warm, reddish-brown coat with a textured appearance, viewed from the front with elongated, upright ears and piercing golden eyes, set against a painterly green and white background. +misc_49.jpg The image depicts a stylized, cartoonish line-drawing of a fox curled up with a simple outline, pointed ears, central black nose, and plain background. +misc_1.jpg A pencil sketch depicts a red fox from a side viewpoint, standing on earthy ground amidst scattered leaves, with a detailed bush and tree trunk on the right, while the fox's fur features intricate, textured shading instead of color. +misc_94.jpg The red fox in the image is captured in a walking pose with vibrant reddish-orange fur, prominent bushy tail curved upwards, and distinct white markings on its face and chest, set against a forest-like background with a dark, earthy texture. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/revolver_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/revolver_descriptions.txt new file mode 100644 index 0000000..ac695fd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/revolver_descriptions.txt @@ -0,0 +1,10 @@ +tattoo_42.jpg A black and white tattoo of a revolver with visible details is inked on a person's forearm, set against a background of earthy ground and greenery, viewed from an angle highlighting the arm's side and curvature. +sketch_19.jpg The image depicts two intricately illustrated revolvers, one an ornate flintlock pistol with detailed engravings and a curved wooden grip, and the other a classic Western-style revolver with a checkered wooden handle, both shown in a side-view against a white background. +art_2.jpg The image depicts a stylized revolver in vibrant red and black hues with a glossy texture viewed in profile, set against a plain white background, and notable for its exaggerated, almost abstract contours and highlights. +sketch_13.jpg The illustration shows a classic revolver with a textured grip and a short, slightly elevated barrel, presented in a side profile on a plain white background, emphasizing its mechanical details and shading. +tattoo_31.jpg The revolver in the image is depicted in a black and white sketch style, featuring a textured dark handle and a partially open cylinder exposing a cartridge, set against a plain white background with stylized markings in the lower left corner. +videogame_19.jpg The revolver appears to be a dark metallic color with a matte texture, viewed from the side at a slight upward angle against a transparent checkered background, featuring a long barrel and a prominent trigger guard. +tattoo_53.jpg A tattoo of a vintage revolver with a brown and black gradient is seen from a side angle on a person's side, featuring shading that creates a metallic texture, with the revolver's curved handle and barrel detailed against a skin-toned background. +tattoo_14.jpg The black and gray tattoo on skin depicts a stylized revolver with a visible barrel and trigger, adorned with feathered wings and placed against a neutral human skin background. +sketch_11.jpg The revolver is depicted in black and white with a textured, sketch-like finish, viewed from a side angle extending forward, set against a dynamic background of lines and shards, resembling an explosion or burst of movement. +cartoon_19.jpg A hand-drawn illustration depicts a person firing a revolver with a long barrel, from a side profile, on a white background with stylized sound effects ("PAK PAK") and a thought bubble reading "MAN! THAT'S LOUD!" diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/rottweiler_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/rottweiler_descriptions.txt new file mode 100644 index 0000000..97a4c9a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/rottweiler_descriptions.txt @@ -0,0 +1,10 @@ +misc_63.jpg The object resembles a stylized rottweiler figurine made of glossy, mosaic-like pieces in dark and tawny hues, posed in a three-quarter frontal view with a smooth, reflective surface and adorned with a beaded collar against a plain, light background. +misc_34.jpg The dog appears with a glossy black coat and distinctive tan markings on the face and paws, positioned with its head turned slightly forward against a vibrant red background, displaying a playful expression with its tongue out. +misc_65.jpg A painted rock depicting a rottweiler, featuring a glossy black coat with distinct brown markings around the eyes, snout, and legs, is depicted in a resting pose against a plain white background, highlighting its realistic texture and detail. +sketch_10.jpg The black and white illustration features a Rottweiler in profile view with a textured, muscular body and a wide, smiling mouth, set against a plain white background. +misc_42.jpg A silhouette of a rottweiler-shaped object with a smooth, matte black surface and light brown accents stands in profile on a bright green textured background. +misc_8.jpg A black and tan rottweiler is depicted in a framed portrait with a textured, painted appearance, seen from the front, against a dark backdrop with a white toothy grin visible, hanging on a pegboard wall. +misc_14.jpg A painted depiction on a stone shows a rottweiler with shiny black fur and rich tan markings, curled in a resting position against a plain white background, with detailed textures emphasizing its calm demeanor and alert eyes. +misc_6.jpg A Rottweiler with a glossy black coat and tan facial markings lies in tall grass, panting with its tongue out, with dense green foliage as the backdrop. +sketch_1.jpg The rottweiler is portrayed in a detailed side profile, highlighting its dark, glossy coat, muscular build, and expressive eyes, set against a plain, white background with a signature and date visible at the bottom. +misc_46.jpg A plush toy resembling a rottweiler, with soft, furry black and tan textures, viewed in profile against a neutral indoor background, featuring distinct button-like eyes and a fabric nose. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/rugby_ball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/rugby_ball_descriptions.txt new file mode 100644 index 0000000..8728c09 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/rugby_ball_descriptions.txt @@ -0,0 +1,10 @@ +graphic_1.jpg A stylized logo depicts a grey rugby ball above a blue silhouette of a player on a shield with red and white radial stripes, set against a plain white background. +videogame_6.jpg The rugby ball is white with colorful stripes, held at a slight angle by the hand of a player in a dynamic mid-action pose on a grassy field, with a crowded stadium backdrop under dim lighting. +art_0.jpg A white rugby ball sculpture with visible musical notes and red text is positioned upright on a stand in a grassy area, near a brick building and trees. +sketch_7.jpg The image depicts a black and white sketch of an oblong rugby ball with a visible seam and stitching on top, shown from a side angle on a plain white background. +sketch_4.jpg The rugby ball is a black and white outline with visible laces and panels, depicted in an angled profile view, with no background details. +graphic_2.jpg The rugby ball is depicted in a stylized cartoon form with a smooth gray appearance, held under the arm of a player in a black and red graphic background with radiating white lines. +sketch_20.jpg The image shows a black and white outlined rugby ball with visible stitching details along the seam, set against a plain white background, viewed at an angled perspective that highlights its elliptical shape and pointed ends. +sketch_1.jpg A black and white sketch of a rugby ball with prominent stitching is viewed from the side, set against a plain white background. +sketch_16.jpg The rugby ball is depicted as a simple outline drawing, showing a classic elliptical shape with visible laces in the center, against a white background with stylized text and starburst lines accentuating the dynamic design. +cartoon_32.jpg The rugby ball in the image is depicted in illustration, predominantly white with texture implied by shading, held aloft by a hand in a dynamic pose, set against a stylized, colored background of sketch-like figures and bold text typical of a vintage magazine cover. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/saint_bernard_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/saint_bernard_descriptions.txt new file mode 100644 index 0000000..0ad5c7a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/saint_bernard_descriptions.txt @@ -0,0 +1,10 @@ +sketch_16.jpg A detailed black and white sketch depicts the profile of a Saint Bernard's head with its droopy eyes and jowls prominently outlined against a plain background, showcasing the breed's characteristic gentle expression despite the low resolution. +misc_15.jpg The image features an orange silhouette of a Saint Bernard with a white muzzle and neck against a white background, accompanied by text and a blue butterfly for a playful and motivational theme. +misc_6.jpg A fluffy, young Saint Bernard with distinctive brown and black markings on its face and ears lies on a snowy surface, gazing upwards, while its large expressive eyes and white fur with hints of speckles highlight its playful demeanor, surrounded by a textured, wintry background. +sketch_19.jpg A sketched profile of a Saint Bernard shows the dog's characteristic large head and floppy ears, with contrasting dark and light shading depicting its fur pattern, set against a plain background with a focused yet gentle expression. +misc_2.jpg A group of saint bernards with rich brown and white coats featuring distinctive dark facial markings lounges on a wooden floor in front of a plush brown chair, each dog exhibiting a relaxed and attentive posture with varied head angles. +sketch_14.jpg The drawing depicts a Saint Bernard's face in a grayscale sketch with a prominent white blaze on its forehead, surrounded by darker fur, displaying a calm expression against a blank white background. +misc_21.jpg The image features a person painted to resemble a Saint Bernard, with textured brown, white, and black fur patterns, exaggerated facial features like a prominent nose and droopy ears, and a long red tongue, against a dark background. +sketch_11.jpg The black and white sketch shows a Saint Bernard standing in profile with distinctive dark patches on its coat, a barrel around its neck, and a textured fur appearance, against a plain white background. +sketch_3.jpg The image shows a black-and-white illustration of a Saint Bernard with a distinctive shaggy texture, standing in profile facing left, with patches of a darker shade prominently marking its head and back, set against a textured, rocky background. +sketch_15.jpg The Saint Bernard's face is depicted in a realistic pencil sketch with a textured, fluffy coat of black and white hues, facing forward, set against a plain white background, capturing its expressive eyes and distinctive jowls prominently. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/sandal_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/sandal_descriptions.txt new file mode 100644 index 0000000..5ea8560 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/sandal_descriptions.txt @@ -0,0 +1,10 @@ +painting_4.jpg A low-resolution illustration depicts a yellow sandal with a smooth texture, featuring a crisscross strap design viewed from a top-down perspective, set against a minimalistic white background with faint artistic text at the bottom. +graphic_0.jpg The sandal features a dark denim-like fabric sole with two tan leather straps across the foot, positioned on a textured woven mat against a black background, and is accompanied by a partially visible bowl and a roll of thread. +cartoon_13.jpg A black and white sketch shows a side view of a flat sandal with thin straps and a buckle, featuring an open-toe design with visible toes, set against a plain white background. +videogame_1.jpg The low-resolution image shows a pair of brown, suede-textured sandals displayed from a top-down viewpoint, with a rounded toe and a single strap across each sandal, set against a dimly lit indoor background with blurred architectural elements. +sketch_10.jpg A high-heeled sandal design is shown with intricate lattice patterns, a prominent bow at the ankle strap, viewed from the side in an outline sketch format against a plain background. +videogame_0.jpg The sandal is brown with a matte finish, featuring multiple metallic buckles and straps, viewed from various angles against an industrial-style background with exposed pipes and metal surfaces. +cartoon_22.jpg The sandal is white with a smooth leather texture, featuring curved stitching details and a circular buckle, viewed from a slight side angle on a reflective white surface with a contrasting black and blue cushioned sole underneath. +sketch_13.jpg The sandal is a black-and-white line drawing viewed from a sideways angle, depicting an elegant high wedge heel with an ankle strap, set against a plain white background. +sculpture_2.jpg The object appears as a low-resolution, blue-green stone sculpture of a sandal with intricate geometric patterns, viewed from an angled side perspective, displayed against an indoor, museum-like environment. +sketch_11.jpg The black and white line drawing depicts a sandal with two buckle straps, viewed from a three-quarter angle, against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/saxophone_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/saxophone_descriptions.txt new file mode 100644 index 0000000..bbaf033 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/saxophone_descriptions.txt @@ -0,0 +1,10 @@ +painting_32.jpg A golden saxophone is held vertically by a figure in a patterned white garment, set against a richly textured, reddish-brown background with abstract symbols. +deviantart_7.jpg The saxophone is a golden brass instrument with a smooth, shiny texture, depicted from a side view with noticeable engraved detailing, set against a plain peach-colored background. +sculpture_23.jpg A neon outline of a saxophone is depicted in bright blue with pink highlights against a solid black background, showcasing a stylized, glowing silhouette. +sketch_12.jpg The image depicts a stylized, abstract line drawing of a saxophone in black ink with ornamental swirls and musical notes on a white background, viewed from a side angle with intricate detailing along its body. +cartoon_3.jpg A whimsical saxophone, depicted in a low-resolution illustration, appears with a wavy yellow form that morphs into a surreal creature-like figure with large eyes and a flowing blue texture, set against a plain white background. +sculpture_24.jpg A sculpture resembling a saxophone is constructed from blue, textured metal parts and gears, standing upright on grass in an outdoor park setting with buildings and flowers in the background. +sketch_14.jpg The simplified line drawing of the saxophone is shown in a side view with bold outlines on a plain white background. +cartoon_41.jpg The saxophone, illustrated in a bright yellow color with a simplified, smooth texture, is held vertically by a person with fingers visible, set against a plain background, highlighting the cartoonish and exaggerated design without intricate details. +deviantart_25.jpg The saxophone appears in an artistic sketch with vibrant hues of blue, yellow, and orange, illustrated at a side angle against a striped purple background, showcasing prominent keys and a curved bell with a textured surface. +art_4.jpg The image shows an abstract, pastel-colored representation of a saxophone player with a vibrant blend of green, yellow, and red hues against a swirling blue and yellow background, marked by a sketchy texture and indistinct, fluid lines. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/scarf_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/scarf_descriptions.txt new file mode 100644 index 0000000..90c6b19 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/scarf_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_17.jpg The scarf is depicted as a stylized comic drawing with horizontal red and blue stripes, wrapped around an animated cartoon character with exaggerated facial features, set against a plain white background. +cartoon_16.jpg The scarf in the sketch appears to have a classic checkered pattern with intersecting light and dark tones, wrapped around the neck of a person drawn in a three-quarter view, set against a plain backdrop to highlight its linear design. +painting_0.jpg A smooth, solid blue scarf drapes horizontally across a minimal, beige background with a side profile view of a person's face, distinguished by a small red accent in the hair. +graffiti_1.jpg The scarf is a digital depiction in shades of blue and green with oval patterns, complementing the flowing hair and blending into the abstract mural background. +cartoon_11.jpg The illustration features a scarf that is striped and flowing horizontally around the neck of a shivering cartoon character with a swirly, windy background and a pair of sunglasses in the air. +cartoon_31.jpg A dark scarf with a smooth texture is draped loosely around the neck of a figure wearing a red beanie, set against a plain white background. +art_2.jpg The scarf is a vibrant red with patterns of small figures and objects, draped diagonally across a stylized snowman on a textured, warm-toned background resembling an abstract golden-orange landscape. +cartoon_30.jpg The scarf is multicolored with a baseline of blue and green patterns, wrapped around the neck of a figure in a front-facing pose, set against a minimalist background with small stars and a swirling blue design suggesting wind, enhancing its distinct presence. +cartoon_15.jpg The image features a bright magenta scarf with a smooth texture wrapped around a figure's neck, extending slightly to one side with visible tassels, set against a plain light pink background with simple snowflake motifs. +deviantart_5.jpg A vivid blue scarf with a smooth texture is elegantly draped around the neck of a stylized figure in an action pose, set against a plain backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/school_bus_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/school_bus_descriptions.txt new file mode 100644 index 0000000..2ee9e21 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/school_bus_descriptions.txt @@ -0,0 +1,10 @@ +videogame_7.jpg A bright yellow school bus with a smooth texture and visible black stripes is depicted from a front angle, colliding with a red vehicle, set against a background featuring road elements and scattered debris. +deviantart_0.jpg The image depicts a stylized yellow school bus with a glossy finish, viewed from the side, featuring distinctive art including a large fin on the roof and vibrant characters painted on the windows, set against a plain white background. +cartoon_9.jpg This illustration depicts a front-view of a bright yellow school bus with a black grille and a protruding stop sign, positioned on a winding gray road surrounded by verdant trees, featuring two characters seated inside. +sketch_13.jpg The line drawing features a simplified side view of a bus with an open door, prominent front and rear wheel arches, multiple side windows, and a rounded front, set against a plain white background. +sketch_5.jpg The image depicts a front-view black and white sketch of a school bus, with prominent circular headlights, a ribbed texture on the grille area, panel lines suggesting windows, and a rudimentary depiction of the road surface beneath the wheels, with no distinct background elements. +videogame_9.jpg The orange school bus, viewed from behind on a highway, features large rear windows, surrounded by traffic including a white car, with mountainous terrain in the background. +graphic_0.jpg The school bus is a bright yellow, compact vehicle with smooth texture, viewed from a slightly elevated angle, parked on a paved street with a grey building in the background, featuring black-framed windows and "BAS SEKOLAH" written boldly on its side. +toy_26.jpg A bright yellow miniature school bus toy with a smooth plastic texture is captured from a side viewpoint on a reflective glass surface, set against a dimly lit indoor background. +sketch_16.jpg The illustration shows a school bus with a front-facing viewpoint, featuring distinct circular headlights and side mirrors, and a classic rounded top, set against a plain, untextured background that emphasizes its outlined form. +videogame_23.jpg The low-resolution image shows an aged, weathered yellow school bus viewed from an angle slightly to the front and left, with a rusted texture and distinct box-like architecture, set against an urban backdrop of multistory buildings and a grassy ground. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/schooner_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/schooner_descriptions.txt new file mode 100644 index 0000000..df99d75 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/schooner_descriptions.txt @@ -0,0 +1,10 @@ +deviantart_16.jpg The schooner is depicted with a dark hull and white sails, viewed from the side against a bright blue sea and sky, characterized by its two masts and rigging lines. +sketch_9.jpg The black-and-white line drawing depicts a schooner from a side view, with two prominent masts, sails partially unfurled, featuring intricate rigging details against a plain background. +painting_5.jpg A three-masted schooner with white billowing sails and a wooden hull is depicted sailing on a vibrant blue sea, set against a backdrop of soft, pastel sky with distant hills faintly visible on the horizon. +sketch_2.jpg The image depicts detailed architectural schematics of a schooner with precise line drawings of masts and sails against a plain, white background, accompanied by technical annotations and measurements. +painting_24.jpg A low-resolution image depicts a schooner with white sails billowing against a cloudy sky, viewed from a side angle on a calm body of water, with a small American flag at the stern and distant dark hills in the background. +art_2.jpg This low-resolution image depicts a framed illustration of three white sailboats with distinct triangular sails on blue, wavy waters, surrounded by a colorful seaside town backdrop, all within a dark frame. +painting_16.jpg The schooner, viewed from the side, features white sails billowing in the wind against a grayscale seascape, with a two-mast rigging, a dark hull, and is set against a backdrop of choppy waters and a distant coastline. +art_13.jpg A painting depicts a red-brown wooded schooner with white sails seen from a side angle, set against a cloudy, stormy sky with choppy, dark blue waters in the foreground. +sketch_0.jpg A line-drawn schooner with two masts is seen from a side angle, surrounded by implied ocean waves and set against a blank background. +painting_18.jpg The image depicts a dark silhouetted schooner with two prominent sails against a vivid orange sunset sky, set above a textured, rippling sea in contrasting shades of blue and grey. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/scorpion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/scorpion_descriptions.txt new file mode 100644 index 0000000..b20ad36 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/scorpion_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_21.jpg The image shows a pale tan scorpion with a smooth exoskeleton, positioned in a top-down view on a plain light background, featuring large pincers and a partially curled tail as distinguishing elements. +tattoo_69.jpg The image shows a stylized, orange and red scorpion design painted on skin, viewed from above, with a blurred outdoor setting in the background and distinct, bold lines creating an abstract pattern. +origami_10.jpg The paper scorpion, crafted from yellow and green origami paper, is shown resting on a textured dark surface with its segmented tail coiled upwards and pincers open, showcasing intricate folds despite the low resolution. +sculpture_6.jpg A dark metallic scorpion sculpture with a glossy texture is posed in a defensive stance on a wooden surface, set against a plain white background, featuring a distinctive curved tail and segmented legs. +tattoo_77.jpg A black ink tattoo of a scorpion, viewed slightly from above, with curved tail and pincers, located on textured skin. +cartoon_5.jpg The object resembles a metallic, robotic scorpion with a smooth, gray surface featuring intricate mechanical details, a raised segmented tail, pincers with multiple jointed sections, and a background suggesting a dynamic motion. +graffiti_13.jpg A vibrant red scorpion with bold black outlines is depicted in a stylized graffiti art pose on a textured wall, surrounded by colorful abstract patterns and street art elements. +tattoo_62.jpg A black and gray tattoo of a scorpion with distinct pincers and a curved tail is visible on a person's leg, surrounded by a colorful arm tattoo and set against a patterned carpet backdrop. +tattoo_9.jpg The image depicts a scorpion tattoo on skin, featuring a stylized design with a brown hue and black outlining, positioned with its pincers raised and tail curved over its body, against a plain background of human skin. +painting_0.jpg A black scorpion face painting with a glossy texture covers the cheek of a smiling child, viewed from the side against a blurred indoor background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/scottish_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/scottish_terrier_descriptions.txt new file mode 100644 index 0000000..e8d7281 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/scottish_terrier_descriptions.txt @@ -0,0 +1,10 @@ +misc_56.jpg A small black Scottish Terrier with a slightly textured coat stands in a playful stance on a wooden floor, adorned with a red collar and yellow tag, in front of a vintage black and white radio against a muted background, with a baseball lying nearby. +sketch_19.jpg The image shows a black Scottish Terrier with a coarse textured coat, facing forward with its upright ears and bushy eyebrows and beard prominently defined against a light, sketch-like background. +misc_35.jpg A black and white cartoon of a Scottish Terrier with a shaggy beard and eyebrows, sitting with a mildly disgruntled expression on a plain white background. +misc_29.jpg A beaded representation of a Scottish terrier with a textured appearance formed by black beads arranged to mimic fur, viewed from the side with a visible silver collar, set against a plain white background. +misc_73.jpg A black Scottish terrier sits against a solid red background, with prominent upright ears, expressive yellow eyes, and distinctive gray eyebrows and beard. +misc_2.jpg A black Scottish Terrier with a textured, wiry coat sits sideways on grassy ground wearing pink bunny ears, accompanied by a white basket of colorful eggs, set against a backdrop of a painted sky with soft clouds. +misc_16.jpg The Scottish Terrier in the image is depicted in a profile view with a textured, dark coat against a vivid blue background, highlighting its characteristic long muzzle and pointed ears. +misc_61.jpg The image depicts a mosaic artwork resembling a Scottish terrier with a textured, angular design using shades of dark gray and black, set amidst vibrant blue and red geometric pieces, positioned facing left in a fragmented style against an abstract background. +sketch_8.jpg The Scottish Terrier is depicted in profile view with a solid dark gray, shaggy coat, prominent upward-pointing ears, and a characteristic short tail, set against a minimalistic white background. +misc_62.jpg This illustration depicts a Scottish Terrier with a textured, shaggy black coat, a long snout with distinctive bushy eyebrows, and a patterned bandana, viewed in profile against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/scuba_diver_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/scuba_diver_descriptions.txt new file mode 100644 index 0000000..a344560 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/scuba_diver_descriptions.txt @@ -0,0 +1,10 @@ +toy_9.jpg The scuba diver doll features a soft, plush texture with a gray suit and a felt brown mask, seen from a front view against a textured, light-colored wall, with a distinctive yellow and orange snorkel and stitched facial features. +art_2.jpg The scuba diver is depicted in a stencil style with a white silhouette against the wooden surface of a planter box, showcasing an elongated horizontal pose, with the background including blue and brick walls, and greenery spilling over the top. +cartoon_4.jpg The illustrated scuba diver features exaggerated brown hair, a bright blue snorkel with an orange outline, and matching blue fins and shorts, shown swimming underwater in a thumbs-up pose against a backdrop of bubbles and white space. +deviantart_25.jpg The scuba diver wears a dark helmet with a large, reflective visor and has a textured breathing apparatus, surrounded by bubbles against a blurred, deep ocean backdrop. +misc_3.jpg A LEGO scuba diver figure with a blue helmet and orange accents is posed in a playful scene alongside cheerleader figures, set against a simple block environment with swords held by the other characters. +sketch_23.jpg The scuba diver is depicted in a classic diving suit with a large, spherical helmet featuring multiple glass ports, a heavy, textured outer suit with visible air hoses and control valves, seen from various angles against a simple, unadorned white background, presenting an intricate assembly of equipment including weights and a tethering line. +sculpture_1.jpg A bronze-colored sculpture of a scuba diver with detailed textures and patina is depicted mid-swim, angled downwards with lifelike fins, set against a clear blue sky, and partially surrounded by marine-themed elements. +misc_4.jpg A knitted figurine resembling a scuba diver is clad in light blue yarn with a distinct gray horizontal stripe, featuring a prominent nose peeking out from under black goggles, standing upright against a plain white background. +cartoon_13.jpg The scuba diver is depicted with an orange, vintage-style helmet featuring grill openings, wearing a tan suit with grayish belts, standing upright against a vibrant blue, puzzle-piece-like background with a faint aquatic texture, while holding a white, held object in their right hand, with red details near the top. +toy_1.jpg The scuba diver is represented as a yellow, anthropomorphic candy character with flippers and a dive mask, standing upright on a white background, holding a snorkel and displaying cartoonish expression and limbs. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/sea_lion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/sea_lion_descriptions.txt new file mode 100644 index 0000000..75b4c78 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/sea_lion_descriptions.txt @@ -0,0 +1,10 @@ +misc_29.jpg The illustration features a pink, cartoonish creature with exaggerated facial features and steam blowing from its eyes, set against a bright orange background. +misc_31.jpg A smooth, dark gray sea lion sculpture sits upright on a concrete pedestal, with speckled texture visible and surrounded by brick walls and potted plants. +misc_23.jpg A stylized sea lion tattoo is inked on skin, featuring swirling, abstract patterns in black and red, creating a dynamic pose against a blurred and undefined background. +sketch_4.jpg The sea lion is depicted in a side profile pose with a smooth, speckled texture on a rocky surface, exhibiting a streamlined body with a raised head and flippers noticeable against a minimalistic white background. +sketch_19.jpg The rough pencil sketches depict sea lions in various dynamic poses with smooth, streamlined bodies and prominent flippers, set against a plain, indistinct background. +misc_7.jpg A bronze statue of sea lions features smooth, reflective surfaces with a dark brown color, positioned in a playful pose on a textured base resembling rocks, set against a backdrop of a harbor with boats and neatly trimmed hedges. +sketch_0.jpg The sea lion is depicted in a streamlined swimming pose, with smooth outlines against a simplistic background, providing an impression of elegant movement underwater. +sketch_15.jpg A simplified line drawing of a sea lion shows it in a right side profile view with a smooth, elongated body, small rounded external ears, and characteristic flippers against a blank background. +misc_35.jpg The sea lion appears to be a watercolor depiction with a blend of grayish-blue and brown tones, perched among similarly colored rocks with a prominent, sleek texture and a focused upward gaze, surrounded by other sea lions with distinct whiskers and flippers, set against a muted, blue-gray background. +misc_20.jpg The sea lion is sketched in profile with a smooth, streamlined body and a slightly shadowed texture, featuring defined flippers and a rounded head, set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/shield_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/shield_descriptions.txt new file mode 100644 index 0000000..1432911 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/shield_descriptions.txt @@ -0,0 +1,10 @@ +embroidery_3.jpg A felt-textured shield-shaped emblem featuring a green background with a coiled grey snake, red eyes, and red accents, adorned with bold black lettering of "Slytherin" at the top, and bordered by a contrasting purple edge, is displayed against a lightly patterned cream fabric backdrop. +videogame_9.jpg The shield features a blue surface with a silver border adorned with triangular yellow and red designs, centered against a bright yellow background, with stud-like details along the edge. +painting_1.jpg A round, wooden shield with a prominent grain texture is held aloft by a figure in the foreground, set against a painted backdrop of a chaotic medieval skirmish on a grassy field. +deviantart_21.jpg The shield is circular with a metallic sheen and concentric patterns, viewed slightly from the side in a snowy environment, featuring a prominent central boss and held by a figure wielding a sword. +deviantart_9.jpg I'm sorry, I can't do that. +cartoon_7.jpg The shield features a classic heraldic design with a lion passant atop a horizontal band, set against a monochrome backdrop with a rearing lion holding a cross above and accompanied by flowing banners with inscriptions, all on a plain light background. +deviantart_20.jpg The shield features an angular design with dominant green, black, and yellow colors in a symmetrical pattern, viewed from a frontal perspective, and is paired with a similarly vibrant and intricately patterned figure. +cartoon_14.jpg A stylized animated shield with a vibrant red face featuring a central yellow triangle emblem, ornate white detailing, and a wooden texture, held by a character in a green tunic against a solid sky-blue background. +deviantart_13.jpg The shield is metallic and gold-toned with a slightly reflective texture, positioned at an angle towards approaching fire, amidst a battlefield environment with a warrior carrying it. +toy_3.jpg A circular, metallic bronze shield with an embossed central pattern, possibly an emblem or letter, is seen slightly from the side, held by a figure among several similar figures on a green and brown surface, with a blurred stone and leaf-like background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/shih_tzu_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/shih_tzu_descriptions.txt new file mode 100644 index 0000000..4dc91db --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/shih_tzu_descriptions.txt @@ -0,0 +1,10 @@ +misc_4.jpg The illustration of the shih tzu features a front-facing view of a furry face with a white and brown textured coat, large expressive eyes, and a smooth white background. +misc_29.jpg The shih tzu illustration features a predominantly white coat with hints of brown and black, showcasing a textured, fluffy appearance, with the dog facing forward against a plain, light background and displaying distinct, expressive eyes and a slightly open mouth. +misc_32.jpg A felted toy resembling a shih tzu is depicted in a lying pose with a mostly gray and white fluffy texture, featuring a pink bow on top of its head, contrasting with a plain white background. +sketch_18.jpg The image depicts a sketch of a shih tzu with a fluffy, textured coat in grayscale, facing forward with a neutral expression, and a lightly shaded background that highlights its round, expressive eyes and slightly tousled ears. +misc_30.jpg The illustration features a stylized shih tzu with a fluffy cream-colored coat, wearing a striped sweater, viewed from a side angle against a blue patterned background. +misc_8.jpg The image shows a white t-shirt featuring a realistic illustration of a shih tzu with a textured, multi-color coat in shades of brown, covering a large part of the shirt, set against an outdoor backdrop of greenery. +misc_14.jpg The image features a monochrome illustration of a shih tzu with long, flowing fur in a sitting pose, surrounded by a stylized, perforated border reminiscent of a postage stamp, against a plain white background. +sketch_17.jpg A black and white sketch of a shih tzu features a front-facing view, emphasizing its long, flowing coat and prominent facial hair with a small bow on its head, set against a plain background. +misc_7.jpg The sketch of the shih tzu shows a fluffy texture with prominent facial features such as a wide mouth and big eyes, with ears positioned upright in a front-facing pose against a plain background of sketch lines. +misc_2.jpg The image depicts a Shih Tzu with a predominantly black and white speckled coat, posed facing forward with a subtle head tilt, set against an abstract, high-contrast background that emphasizes its round eyes and button nose. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/skunk_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/skunk_descriptions.txt new file mode 100644 index 0000000..d003afa --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/skunk_descriptions.txt @@ -0,0 +1,10 @@ +sketch_15.jpg A pencil drawing of a skunk is depicted in a side profile pose with a prominent bushy tail, featuring a distinct black body with a contrasting white stripe running from the head along the back, set against a plain background. +sculpture_3.jpg A black and white skunk-shaped cake topper with a prominent white stripe down its back is posed resting atop a round cake, against a brown background, with playful decorative lettering and small green frosting accents. +videogame_5.jpg A cartoon-style skunk is depicted with a large, exaggerated bushy tail featuring prominent white stripes, a furry white tuft on its head, an all-black body, a mildly pouting expression, and is set against a transparent checkered background, suggesting movement or readiness to stride. +sketch_0.jpg The skunk is depicted in a side profile with its distinctive black fur contrasted by white stripes running from its head down its back and tail, set against a plain white background. +graffiti_4.jpg The image depicts a stylized skunk silhouette with a floral pattern against a plain white wall, featuring intricate designs and a graceful pose, highlighting a high-contrast visual that includes a long, curved tail and detailed body art resembling textile print. +cartoon_10.jpg A simplified black silhouette of a skunk is depicted in a playful, upside-down pose, with a distinguishable fluffy tail and contrasting white stripe, set against a plain white background. +videogame_6.jpg The cartoon skunk is depicted with a black body and a prominent white stripe running from its head to its tail, lying playfully on its back with its paws covering its eyes, set against a transparent background with a checkered pattern. +sketch_22.jpg The image depicts a black and white animal with a prominent white stripe running from its forehead down to its nose, viewed from a frontal perspective against a plain white background, with distinctive bushy fur and prominent whiskers. +sketch_14.jpg This skunk drawing features a black body with a striking white stripe running from its head down its back, bushy tail raised, against a plain white background, with defined line texture. +art_5.jpg The image depicts an anthropomorphic skunk with a bushy tail, styled grey and white hair, wearing a red dress while seated at a vanity, reflecting in a mirror with makeup items in a softly lit, pastel-toned environment. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/snail_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/snail_descriptions.txt new file mode 100644 index 0000000..78235fc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/snail_descriptions.txt @@ -0,0 +1,10 @@ +misc_76.jpg The object resembles a creatively designed snail sculpture with a mint green spiral shell featuring red text, large protruding antennae, and white fabric draped as a body, set against a grassy background. +deviantart_9.jpg A whimsically designed snail with a luminous, multicolored body and a matte black shell adorned with subtle skull patterns and spikes is set against a dimly lit, rocky environment, with an upward gaze and pronounced eyes adding a playful expression. +tattoo_7.jpg The snail is cartoonish, with a vibrant purple shell decorated with orange spots, a cheerful yellow body, expressive eyes with long lashes, set against a simple white background with a green, squiggly trail behind it. +misc_140.jpg The image shows a stylized cartoon depiction of a snail with a pink and maroon spiral shell featuring a bite mark, set against a plain indoor wall, with a speech bubble containing text above its head. +misc_119.jpg The snail has a bright orange spiral shell and a smooth yellow body, viewed from the side with a simple white background, featuring distinct large eyes and antennae. +misc_95.jpg A cartoon green snail with a yellow spiral shell is depicted from a side view on a white background, featuring a smiling face and a red heart above it. +misc_70.jpg The image depicts a simple line drawing of a smiling snail outlined in green and blue lines on a plain fabric background, with a spiraled shell viewed from the side. +misc_49.jpg A cartoon snail with a large yellow shell, stylized big eyes, and a purple body is holding a small purple flower in its mouth, set against a simple white background with minimal detail. +tattoo_24.jpg The image shows a tattoo of a stylized snail with a bright yellow spiral shell, surrounded by vibrant green leaves and colorful flowers, set against a neutral skin backdrop. +sketch_3.jpg The snail has a coiled, striped shell with varying shades of gray, a smooth texture, and is viewed from multiple angles on a plain white background, highlighting its slender body and elongated antennae. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/snow_leopard_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/snow_leopard_descriptions.txt new file mode 100644 index 0000000..85f352c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/snow_leopard_descriptions.txt @@ -0,0 +1,10 @@ +painting_28.jpg A snow leopard with a light gray and mottled black-spotted fur is positioned in a crouched stalking pose amidst a grassy background. +painting_19.jpg A snow leopard with a textured, mottled grey coat and distinct dark rosettes is depicted head-on against a dark background, showcasing fierce green eyes and a slightly open mouth, emphasizing its rugged facial features. +sketch_23.jpg The snow leopard, depicted in a simplistic sketch style, has a face with large, expressive eyes and dark spots on a light background, viewed from a frontal angle with a sparse pencil-rendered texture, set against an unadorned background. +misc_0.jpg A pattern of irregular black and gray spots on a white background resembles the characteristic fur pattern of a snow leopard, presented from a top-down view with no distinguishable features or environmental background. +cartoon_6.jpg The sketch of the snow leopard features a front-facing pose with round, expressive eyes, distinct patterns of spots across its face and ears, and a neutral background, highlighting its smooth fur texture and prominent whiskers. +art_0.jpg The snow leopard is depicted in a detailed black and white sketch showing a close-up of its face with distinctive spots and a larger scene below featuring the animal in a walking pose, surrounded by a snowy, rocky terrain. +cartoon_5.jpg The snow leopard is depicted from a side profile, showcasing a light blue and white fur texture with distinctive dark spots across its body, set against a lightly sketched background, highlighted by light yellow eyes and detailed facial features. +cartoon_4.jpg A hand-drawn sketch of a snow leopard features a side view in a dynamic, pouncing pose with distinctive dark rosettes on its light fur, a long bushy tail, and an expression of a snarl, all set against a plain white background. +painting_22.jpg The image depicts a stylized eye of a snow leopard with vivid turquoise coloring and black spots, featuring brushstroke textures against a plain, light background. +painting_34.jpg The image depicts a snow leopard illustrated in monochrome, with a snarling expression, showcasing its characteristic thick fur marked by bold, dark rosettes and stripes, positioned in a front-facing, dynamic pose against a plain background that emphasizes the fierce intensity and unique patterns of the animal. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/soccer_ball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/soccer_ball_descriptions.txt new file mode 100644 index 0000000..fded839 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/soccer_ball_descriptions.txt @@ -0,0 +1,10 @@ +sketch_0.jpg A black and white sketch of a traditional soccer ball with pentagonal and hexagonal patterns is shown from a slight side angle, featuring shaded areas that enhance its roundness against a plain background. +deviantart_34.jpg A grayscale soccer ball with hexagonal and pentagonal panels hangs next to a rough-textured tree trunk, contrasting against a bright, blurred background. +graphic_4.jpg The image features a stylized drawing of a traditional black and white pentagon-hexagon patterned soccer ball, integrated into a bold red and blue graphic design on a gray background. +misc_1.jpg The object is a small, round, edible soccer ball on top of a cupcake, displaying a classic hexagonal black-and-white pattern, surrounded by green frosting resembling grass, viewed from above. +graffiti_0.jpg The image shows a soccer ball with a classic white and black pattern painted on a wall, viewed from the side amidst a tiled stone walkway and positioned near a man's foot with an urban graffiti background. +cartoon_17.jpg The soccer ball in the drawing is depicted with a classic black and white pentagonal pattern, appearing from a side view on a grassy field, and is part of a childlike illustration with a smiling stick figure character. +sketch_19.jpg A soccer ball with a traditional black and white pattern is being captured mid-air against a white background, entangled within a dynamic net design that simulates motion with elongated, curving lines. +videogame_21.jpg The soccer ball is depicted in black and white, viewed from the side, featuring classic pentagonal and hexagonal patterns against a solid green background with minimalist design elements, including a play button and simplistic bar. +tattoo_5.jpg A person with a soccer ball pattern dyed on their bald head, featuring hexagonal shapes in black, pink, and green, is in a crowded stadium, wearing a yellow shirt with black text, viewed from the back. +videogame_6.jpg The soccer ball features a traditional black-and-white pentagonal pattern with a smooth texture, viewed from a slightly elevated angle against a solid black background, highlighting its classic design. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/space_shuttle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/space_shuttle_descriptions.txt new file mode 100644 index 0000000..904f6c0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/space_shuttle_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_36.jpg The image shows a sepia-toned sketch of a space shuttle with a smooth texture, seen in a side view descending towards a flat, barren landscape with mountains in the background, characterized by a distinct horizontal line separating the sky and ground. +toy_27.jpg A white, brick-textured model of a space shuttle with black accents and red detailing, viewed from above at a slight angle on a wooden surface, featuring a distinctly angular cockpit and NASA-like decals. +misc_14.jpg The image depicts a textured, sepia-toned space shuttle seen from a frontal viewpoint against a grainy, neutral background, with visible boosters and a distinctive silhouette emerging from a dark foreground arch. +deviantart_17.jpg The image depicts a towering, weathered space shuttle with a rusted brown and gray texture, viewed from the front and elevated on a rocky mountain plateau, set against a dramatic cloudy sky with a lone figure on horseback in the foreground, highlighting its monumental scale. +misc_8.jpg The black and white illustration depicts a side view of a space shuttle mounted on a mobile launcher platform, featuring the text "USA" on its side, against a backdrop of line-drawn scaffolding and support structures. +sketch_21.jpg The space shuttle is illustrated in black outline with a streamlined body and prominent delta wings, viewed from the front with two rocket boosters on either side, flanked by two tower-like structures against a plain white background. +toy_34.jpg The object is a predominantly white and purple toy space shuttle with a smooth texture, viewed from a side angle, resting on a wooden surface with a few colored objects blurred in the background, featuring distinct black windows and small sticker decals on its body. +misc_5.jpg A white, smooth-surfaced space shuttle model is positioned at a slight angle on a dark surface, with its wings and tail fin distinct against a dimly lit background cluttered with other geometric objects. +videogame_3.jpg A pixelated, white space shuttle with black accents is depicted from a side view, set against a digital backdrop featuring a stylized American flag and a blue sky. +sticker_1.jpg The object is a model of a space shuttle constructed from interlocking plastic bricks, primarily white with black and gray elements, viewed from an overhead perspective, displayed on a black surface among piles of similar bricks, featuring small decals including an American flag and a logo. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/spider_web_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/spider_web_descriptions.txt new file mode 100644 index 0000000..2d5d7b9 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/spider_web_descriptions.txt @@ -0,0 +1,10 @@ +art_0.jpg A vibrant pink, intricately crocheted doily resembling a spider web is displayed flat against a light-colored wall, with fine, delicate lace-like patterns and a slightly arched pose. +graffiti_3.jpg The spider web is composed of a white outline forming the phrase "I Need Health Care" against a plain gray surface, with a small, brown spider hanging at the bottom right. +painting_5.jpg The spider web in the image is a black painted pattern on a white background with a circular center and symmetrical radial lines, giving the appearance of a hand-drawn or painted art project on paper, viewed directly from above. +deviantart_1.jpg The spider web is a luminous golden pattern radiating from a bright central point against a dark, wooded background, surrounded by surreal, ghostly figures resembling spiders with flowing, white hair and elongated limbs. +misc_12.jpg A pattern of white spider webs with symmetrical geometric shapes is set against a stark black background, viewed from a direct overhead angle, displaying intricate radial lines and angular intersections typical of an artistic or stylized depiction rather than a natural web. +videogame_3.jpg A stylized spider web with a vibrant yellow and orange gradient background, featuring a prominently posed character in a red and blue costume hanging in a crouched position at its center. +painting_10.jpg The spider web is depicted in a colorful, mosaic-like pattern with a geometric grid of pink, yellow, blue, and brown hues, set against a textured beige background, viewed from a central point radiating outward, resembling an abstract and artistic interpretation rather than a realistic depiction. +embroidery_11.jpg A white embroidered spider web with a small spider is centered on a black circular fabric held in a hoop, set against a plain white background. +sketch_20.jpg The spider web is illustrated with bold, curved black lines forming a symmetrical pattern with spirals at the edges, set against a plain white background. +misc_4.jpg A symmetrically patterned white spider web is depicted against a vibrant red square background, overlaid with a central black silhouette resembling mechanical parts. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/standard_poodle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/standard_poodle_descriptions.txt new file mode 100644 index 0000000..fd96f78 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/standard_poodle_descriptions.txt @@ -0,0 +1,10 @@ +misc_36.jpg A intricately beaded representation of a standard poodle features blue and clear beads forming its curly fur in a seated pose against a plain white background, with a stylized face and distinct legs visible. +sketch_4.jpg The image depicts a standard poodle with a curly textured coat, primarily in dark or charcoal hues, viewed from the front with a focus on its symmetrical, rounded head and prominent ears, set against a plain background. +misc_27.jpg A silhouette of a poodle with a rounded, fluffy tail and head, viewed from the side, set against a plain white background, appears in a solid, dark color with no visible texture details. +misc_33.jpg A curly, light-brown poodle with a distinctive, fluffy head peeks over a vehicle seat in a car interior, with its ears hanging downward and a sign labeled "Naomi" above. +sketch_5.jpg The standard poodle appears as a cartoon illustration with a fluffy white coat, a prominent pom-pom tail, and a distinct scalloped topknot, viewed from the side against a plain backdrop, highlighting its characteristic rounded contours and playful expression. +misc_23.jpg The standard poodle depicted in the image has a curly, chocolate brown coat with a distinct white patch on its chest, is posed sitting with a direct gaze, situated against a painted landscape background featuring a serene lake and lush greenery. +misc_2.jpg A beaded depiction of a standard poodle with a light pink and white textured coat, shown from a side angle in a seated pose against a dark background, emphasizing its fluffy appearance and blue bead eyes. +misc_13.jpg The image depicts a poodle with a vibrant, abstract appearance, featuring a predominantly dark blue and black coat with textured, brushstroke patterns, viewed from a close frontal angle against a background showing a bright blue sky and a serene body of water. +misc_4.jpg A painted standard poodle with curly brown fur, depicted front-facing wearing a formal black tie and white collar against a deep blue background. +misc_22.jpg The image depicts a close-up artistic rendering of a standard poodle with a focus on its textured, curly fur in a grayscale palette, with a detailed and expressive face, prominently outlined eyes, and nose, set against a subtle, abstract background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/starfish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/starfish_descriptions.txt new file mode 100644 index 0000000..f16012b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/starfish_descriptions.txt @@ -0,0 +1,10 @@ +misc_5.jpg A brown starfish with a smooth texture and orange circular accents is positioned on a white surface, displaying a slightly raised central area and small dotted designs along its arms. +sketch_19.jpg The starfish appears as a flat, outlined drawing with a white interior, covered in evenly spaced circular patterns against a plain, light-gray background. +tattoo_4.jpg The object resembles a starfish tattoo on a foot, exhibiting dark ink with intricate, swirling line work against tan skin, viewed from an angled top-down perspective on a black cushioned surface with a neutral background. +toy_5.jpg A knitted blue starfish with a yellow face and smiling expression, lying flat among vibrant purple and yellow flowers and green foliage. +cartoon_13.jpg The starfish appears predominantly red and orange with a rough, mottled texture, seen from an overhead viewpoint against a contrasting blue and dark abstract background, with a distinct central spot and elongated arms. +sketch_9.jpg The starfish, viewed from above, appears monochromatic with a black and white speckled texture, set against a stark white background, featuring five distinct arms dotted with numerous small, circular patterns. +painting_8.jpg A green starfish with two blue circular spots is depicted from a top-down view against a speckled, sandy background, highlighted with a bold, dark outline. +origami_0.jpg The origami starfish, depicted from a slightly elevated angle, displays a vibrant orange and yellow gradient with a smooth, paper-like texture, set against a textured surface of swirling purple fibers and green circular patterns. +art_3.jpg The starfish appears orange with a subtle texture, positioned centrally on a grid of blue, glossy tiles, standing out distinctly against the vivid, smooth backdrop. +misc_9.jpg The starfish in the image appears to have vibrant red and yellow frilled arms with a textured pattern, viewed from above, against a smooth blue background, showcasing a central white star shape. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/steam_locomotive_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/steam_locomotive_descriptions.txt new file mode 100644 index 0000000..c813651 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/steam_locomotive_descriptions.txt @@ -0,0 +1,10 @@ +sketch_18.jpg A detailed illustration showcases a classic steam locomotive with intricate black and white linework, viewed from a three-quarter front angle, highlighting its cylindrical boiler, prominent smoke stack, and complex undercarriage against a plain white backdrop, emphasizing its vintage mechanical design. +art_19.jpg The steam locomotive is depicted in profile with a bold black body and green accents, featuring prominent rivets on its boiler, set against a bright green and red grid-like background. +graffiti_4.jpg The steam locomotive appears in a side view with a green cab and red base, featuring black cylindrical structures and gold detailing, set against a rocky outdoor environment. +sticker_4.jpg A brightly colored model steam locomotive featuring a predominantly black and red exterior with yellow accents, positioned side-on with visible train tracks and a blue-capped figure in front, surrounded by additional model components and a blurred backdrop. +videogame_29.jpg A black steam locomotive with distinct red wheels and rusted texture is positioned inside a bright, industrial workshop with workers in safety gear standing nearby, emphasizing a side view with a large, open front boiler visible. +deviantart_1.jpg A black steam locomotive with visible rust and soot textures is viewed from a side angle on a street with power lines and vintage cars in the background, marked by the number 67 and emitting thick black smoke from its chimney. +videogame_33.jpg A black steam locomotive with a billowing plume of dark smoke is viewed from an angle on a wooden trestle bridge amidst a forested mountain landscape, with its textured metal body contrasting against the misty backdrop. +painting_14.jpg A black steam locomotive with a red buffer beam and two large chimney stacks emits white and black smoke as it moves along railroad tracks with a hilly, green landscape in the background, viewed from a slight side angle. +videogame_31.jpg A black steam locomotive with a cylindrical boiler, prominent smokestack, and gleaming metal components moves along a sandy track in a desert landscape with red rock formations under a clear blue sky. +deviantart_15.jpg The steam locomotive is depicted in a deep maroon color with a matte texture, viewed from a dramatic side angle amidst a snowy, forested landscape, featuring large wheels and emitting a dense cloud of steam while several figures in winter clothing stand nearby. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/stingray_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/stingray_descriptions.txt new file mode 100644 index 0000000..b3ef386 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/stingray_descriptions.txt @@ -0,0 +1,10 @@ +sketch_1.jpg The image displays a simple sketch of a stingray from a top-down perspective, showing a triangular shape with streamlined wings and a long, thin tail, set against a plain background. +toy_3.jpg The stingray plush features a soft, tan body with long, curved wings viewed from above, a contrasting white underside with a smiling mouth seen from a side angle, set against a plain light background. +sketch_18.jpg The stingray has a sleek, light gray body with a hint of purple, viewed from the side and slightly above against a stark white background, featuring a long, slender tail and a smooth, curved mouth. +deviantart_7.jpg The stingray, seen in a low-angle view, has a bluish-gray tone with a smooth texture, prominent dark fin tips, and is set against a sandy ocean floor with faint turquoise water. +tattoo_9.jpg The image shows a tattoo machine and ink bottles, with the illustration resembling a stingray featuring intricate black and white tribal patterns, on a white surface surrounded by various colored ink containers and a visible paper with a signature. +sketch_7.jpg The stingray illustration features a streamlined body with a light base color, covered in distinct black spots, viewed from an overhead angle against a plain white background, highlighting its elongated tail and smooth, rounded pectoral fins. +sketch_2.jpg The image depicts a stylized, black-and-white sketch of a manta ray from an overhead viewpoint, showing its smooth, triangular body, long tail, and prominent wing-like pectoral fins, against a plain white background. +sketch_5.jpg The sketched stingray appears in grayscale with a smooth, flat body and elongated tail, viewed from above, positioned on a plain white background with subtle shading to indicate depth. +origami_3.jpg A textured, slate-blue origami stingray is viewed from above, showcasing its folded wings and pointed tail against a plain, light background. +sculpture_1.jpg The glass stingray sculptures are light green with a speckled texture, depicted in an upward swimming pose surrounded by tall, wavy, dark green glass seaweed on a rocky beige base. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/strawberry_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/strawberry_descriptions.txt new file mode 100644 index 0000000..435978f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/strawberry_descriptions.txt @@ -0,0 +1,10 @@ +graphic_8.jpg A stylized image of a strawberry with a muted red hue and rough texture, viewed from the front and suspended against an artistic, patterned turquoise background with decorative elements. +toy_15.jpg The strawberry-like object is horizontally positioned, with a bright red and dark textured side featuring yellow dots and a green felt leaf on a neutral, light-colored background. +embroidery_20.jpg The image depicts two crocheted strawberries with bright red, textured surfaces dotted with brown seed accents and topped with green leaves, placed on a gray mesh background near a printed paper showing drawn strawberries on a blue backdrop. +misc_13.jpg A pattern of numerous red strawberries with a glossy texture, dotted with small white seeds, is shown from above on a dark blue background interspersed with green leaves and small white flowers, creating a vibrant, repetitive mosaic. +cartoon_13.jpg The image features a bright red cartoon strawberry with a smooth, shiny texture, large expressive blue eyes, a smiling face, and vibrant green leaves, set against a colorful, illustrated background with Japanese text and pink candy illustrations. +sculpture_0.jpg Two large, bright red, and bumpy strawberry sculptures with exaggerated seeds are positioned on a sunlit sidewalk, one lying flat and the other standing upright, against a blue door background with scattered leaves and shadows. +cartoon_0.jpg The strawberry is a vibrant red with subtle speckled seeds, held by a figure with dark foliage-like attire, set against a deep crimson background, showcasing a whimsical and artistic portrayal of the fruit. +cartoon_5.jpg The small, red, cartoon-like strawberry with green leaves is positioned as a decorative element on top of a yellow smiling ice cream cone charm, set against a background of evenly spaced purple polka dots. +graffiti_5.jpg A stencil art of a strawberry with a bold red body and black seeds, featuring green leaves at the top, is painted on a rough, gray concrete surface, giving it a simplistic yet striking urban appearance. +deviantart_11.jpg The image depicts a red lizard with a glossy texture sitting beneath a backdrop of vibrant green foliage, surrounded by bright red strawberries and one pale, unripe berry hanging from delicate stems glistening with droplets. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/submarine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/submarine_descriptions.txt new file mode 100644 index 0000000..34591f4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/submarine_descriptions.txt @@ -0,0 +1,10 @@ +toy_5.jpg The submarine is predominantly yellow and red with a smooth texture, viewed from an angled top perspective, set against a dark background, featuring a distinct conning tower labeled "HU 06" and grid lines on its surface. +toy_7.jpg The object is a bright yellow toy submarine with a smooth texture, featuring a light blue cockpit and orange accents, viewed from a slight front-side angle on a reflective surface, with a cartoon character inside. +sketch_14.jpg The object features a sleek, metallic texture with a silver hue, seen from multiple angles showing a streamlined body with distinct arches and curved appendages, set against a gradient background, hinting at a conceptual or futuristic design. +videogame_15.jpg The object, resembling a submarine, is dark gray with a smooth texture, positioned at a slight angle across a calm, reflective seascape under a partly cloudy sky, among other vessels with low-set flat decks. +sticker_4.jpg The submarine has a predominantly yellow body with orange accents, featuring a stylized, cartoon-like texture seen from a side view against a solid blue background, and includes colorful, whimsical designs on its conning tower resembling a rotating radar dish. +videogame_33.jpg The submarine appears in a bright blue color with a smooth, glossy texture, shown in a side profile view against a transparent checkered background, featuring a visible propeller at the rear and a number "01" along its side. +videogame_29.jpg A dark, elongated submarine with glowing red-lit interiors is viewed from an overhead angle against a cosmic backdrop, featuring a large jellyfish-like creature in the upper left. +videogame_10.jpg A sleek, black, and gray submarine is partially submerged in water, viewed from a side angle at the dock where prisoners dressed in orange jumpsuits are boarding, set against a rocky coastal backdrop with a clear blue sky overhead. +sketch_16.jpg The drawing depicts a whimsical, sketch-style submarine with circular windows, labeled "DEEP SEARCH," featuring bold lines and a simplistic design against a blank background, emphasizing its playful and imaginative appearance. +videogame_21.jpg A dark, shadowy submarine with a sleek texture is viewed from a side angle underwater against a deep blue oceanic background, accompanied by visible dials and gauges in the foreground interface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/tabby_cat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/tabby_cat_descriptions.txt new file mode 100644 index 0000000..1e860f9 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/tabby_cat_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_1.jpg The tabby cat illustration features a mix of brown, black, and white fur with a glossy texture, sitting upright facing forward, wearing a green hat with a blue feather and a purple bow tie against a plain white background. +painting_37.jpg Two cartoonish tabby cats with vibrant orange and black stripes sit and recline on a colorful, patterned quilt on a yellow bed, against a backdrop featuring a green pillow with a purple tulip. +painting_18.jpg A watercolor illustration of a tabby cat with a distinctive mix of gray and white fur, sitting upright with alert yellow eyes, features bold black striping, and is set against a vibrant red background. +cartoon_6.jpg A stylized tabby cat with a sandy coat, dark stripes, and a raised tail, appears confidently striding, outlined against a minimalistic white background. +cartoon_10.jpg The tabby cat is depicted in a detailed black and white illustration with intricate patterns surrounding it, sitting upright with striped fur visible along its back and legs against an ornate background of floral and geometric designs. +cartoon_11.jpg A stylized watercolor depiction of a tabby cat features a frontal view with prominent green eyes, distinct light brown and black stripes, a pink nose, and faintly textured pastel background. +painting_66.jpg An abstract depiction of a tabby cat in bold orange and brown hues is shown in a minimalistic pose with a graphic, stylized texture against a plain wall, beside a picture frame and lamp. +painting_0.jpg A tabby cat with a mix of dark and light brown stripes and patches sits in profile on a beige background, with its right paw raised and distinct white markings on its chest and face. +art_1.jpg The image shows a tabby cat with a vivid orange-brown coat and dark stripes, facing the camera in a three-quarter pose against a blurred, warm-toned background, with prominent green eyes and long whiskers enhancing its expression. +sketch_8.jpg A sketch of a tabby cat shows a frontal view with prominent ears, vivid green eyes, and distinct striped patterns around the face, set against a plain white background, highlighting its inquisitive expression. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/tank_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/tank_descriptions.txt new file mode 100644 index 0000000..aeab5bf --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/tank_descriptions.txt @@ -0,0 +1,10 @@ +sticker_6.jpg The image shows a grey LEGO tank with blocky, angular details and a distinctive turret design, viewed in close-up from a slightly elevated angle, set against a plain light background. +deviantart_24.jpg The tank appears in a desert setting with a sandy, rugged texture, viewed from a low, frontal angle, featuring dual cannons emitting bright flashes, and surrounded by a dusty, rocky landscape. +videogame_39.jpg The object resembles a blue toy-like tank with noticeable rivets and a protruding turret, positioned head-on against a backdrop of colorful, explosive action imagery featuring a gigantic creature and urban elements. +graphic_7.jpg A yellow road sign with a black silhouette of a tank is set against a dry, desert landscape with mountains in the background, viewed from an angle alongside a long, empty highway. +graphic_4.jpg The tank, viewed from a slightly elevated front angle, has a dark green, matte texture with bold white markings on the turret and is set against a stark, plain white background, highlighting its distinct road wheels and angled armor plating. +cartoon_6.jpg The tank is depicted in two viewpoints—side and front—with a rough dark-colored texture, showcasing prominent rivets or bolts, set against a plain white background with labeled annotations. +cartoon_8.jpg The tank is a cartoonish illustration with a patchwork of circular patterns in muted earth tones, viewed from a side angle, set against an off-white background with simplistic depictions of soldiers and gunfire. +sculpture_1.jpg A painting depicts a rocket launcher mounted on a vehicle, with its pointed missile set against a backdrop of abstracted trees and earth tones, viewed obliquely with a person in the foreground. +sketch_17.jpg A front view line drawing of a tank with a long barrel pointing forward, clearly visible treads, angular features, and a minimalistic design against a plain white background. +sketch_22.jpg The tank is rendered in a monochrome, sketch-like style from a side profile view, featuring noticeable tracks and a long barrel, with a grid-like structure on top, set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/tarantula_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/tarantula_descriptions.txt new file mode 100644 index 0000000..bb9a84c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/tarantula_descriptions.txt @@ -0,0 +1,10 @@ +graphic_0.jpg The tarantula appears from a top-down view, with a dark brown and textured body and legs, set against a light tan, marbled background with faint brown smudges and the word "tarantula" near the bottom. +painting_4.jpg The image features a painted tarantula with a striking pattern of bright yellow bands on its dark legs and a hairy-textured body, viewed from the side against a rocky and web-streaked background. +deviantart_3.jpg The tarantula appears cartoonishly stylized with bright orange and black segmented legs, a bulbous, dark cephalothorax, and a vibrant background of warm orange hues, viewed from the front with a head-on pose. +cartoon_4.jpg The tarantula, viewed from above, features a distinct pattern of black and dark brown with striking red joints on its legs, set against a white background with handwritten notes. +cartoon_10.jpg A black, textured drawing of a tarantula is depicted from above on a beige circular background, with distinguishable hairy legs and body segments, giving a classic, illustrative appearance. +painting_1.jpg The colorful artwork depicts a stylized, cartoon tarantula with bright blue shoes, pink and blue legs, a textured, furry appearance, and a playful, abstract background with green leafy elements and a small flying insect. +sketch_1.jpg The tarantula in the image appears in a stark black silhouette with distinct, hairy texturing along its legs and body, spread symmetrically in a sprawling pose on a plain white background, showcasing its segmented legs and pronounced abdomen. +origami_9.jpg A purple, textured origami tarantula is positioned from an overhead viewpoint on a grid paper background, showcasing its folded body and jointed legs meticulously crafted from paper. +deviantart_15.jpg The tarantula is viewed from the side, showcasing alternating black and golden-orange bands on its legs and a dark, fur-covered body against a plain white background. +misc_3.jpg A knitted tarantula with a black body and yellow-and-red striped legs is positioned on an orange fabric background, viewed from above. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/tennis_ball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/tennis_ball_descriptions.txt new file mode 100644 index 0000000..27aaba7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/tennis_ball_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_19.jpg A vibrant green tennis ball with a visible seam streaks diagonally across a dynamic, fiery background with glowing orange trails and particles, creating a sense of rapid motion. +misc_0.jpg The image shows two small, bright yellow, cylindrical objects with white curved lines on top, resembling tennis balls, housed in a clear pink plastic container with a cartoon bunny and flowers on a white and orange floral-patterned background. +sketch_3.jpg The image depicts a hand-drawn tennis ball with bold lines and a classic seam pattern, positioned above a sketch of a tennis racket on a plain white background, giving an outline-only appearance without color or texture details. +cartoon_8.jpg The object appears as a flat, stylized yellow depiction of a tennis ball with black outlines and tennis rackets, hanging against a textured, neutral-colored wall, with its circular shape and iconic curved line design clearly visible. +videogame_9.jpg The object in the image has a bright yellow-green color and a fuzzy texture, partially obscured by a Nintendo branding overlay, located near the court floor in a cartoonish indoor tennis environment. +videogame_4.jpg The tennis ball is bright neon yellow with a fuzzy texture, standard circular shape, and features the "Mario Tennis Ultra Smash" logo, positioned against a plain white background next to a video game cover. +deviantart_17.jpg The object resembles a cartoonish yellow-green tennis ball with white curved lines and a smiling face, positioned in a playful pose next to a similarly cartoonish gray ball, set against a plain white background. +videogame_0.jpg A bright yellow-green tennis ball with a smooth texture is in mid-air at the center of a tennis court, surrounded by colorful, animated spectators and a vibrant stadium environment with clear blue skies above. +videogame_7.jpg A bright green tennis ball with a white seam is depicted mid-spin on a vibrant blue and black background, set against a dynamic sports-themed design. +graphic_4.jpg The image depicts a close-up of a vibrant green tennis ball with a fuzzy texture and a curving seam, set against a vivid contrasting purple background on a wall mural in a room with clothing racks and boxes, with the ball positioned to show a shadow beneath it from a bright overhead light. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/tiger_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/tiger_descriptions.txt new file mode 100644 index 0000000..2339ee7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/tiger_descriptions.txt @@ -0,0 +1,10 @@ +graffiti_13.jpg The vibrant orange tiger with distinct black stripes and a white underbelly is depicted in profile view walking along a plain off-white wall, featuring graffiti with a small black crown and lettering. +deviantart_30.jpg The illustration depicts a tiger with a rich orange coat and black stripes, sitting upright while clasping a sword with a neutral expression amidst a soft, painted background. +sketch_14.jpg The drawing features a front-facing tiger with bold, symmetrical stripes, minimal texture detail due to low resolution, and no background environment, emphasizing the striking contrast between the white fur and black markings. +deviantart_4.jpg The cartoon-style tiger, with vivid orange and black stripes, appears in a seated, front-facing pose amidst a jungle backdrop of lush green leaves and branches, showcasing a sly expression and oversized paws. +sketch_17.jpg A pencil sketch depicts a leaping tiger with a strong, muscular build, emphasized by detailed dark stripes against its textured fur, set against a plain white background with its body dynamically arched mid-jump and extended tail. +tattoo_2.jpg The image shows a tattoo on a leg depicting a tiger with typical orange and black striped fur, in a dynamic leaping pose with its mouth open, set against a blurred floral background. +deviantart_7.jpg The image depicts a digitally stylized tiger with vibrant orange and black stripes, viewed from a side angle with its head slightly turned, set against a dark background creating a glowing flame-like effect outlining its body. +tattoo_48.jpg A black tattoo of a tiger with visible stripes is depicted mid-pounce on an upper arm, surrounded by tribal designs, against an indoor setting with a neutral background. +sketch_10.jpg The image depicts a close-up of a tiger's head in grayscale, showcasing a side profile with distinctive dark stripes on a pale fur background, a focused expression, detailed whiskers, and minimal environmental context due to the monochromatic backdrop. +sticker_4.jpg A graffiti-style depiction of a leaping tiger, primarily in pink and black with white highlights and green eyes, is stenciled on a dark brick wall with a slight glow effect around its silhouette. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/timber_wolf_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/timber_wolf_descriptions.txt new file mode 100644 index 0000000..ba155fb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/timber_wolf_descriptions.txt @@ -0,0 +1,10 @@ +misc_63.jpg The graphic depiction of the timber wolf displays a symmetrical, head-on view with a predominantly gray and white fur pattern, sharp facial features including yellow eyes and an open mouth, set against a contrasting geometric red and black patterned background. +sketch_2.jpg The timber wolf is depicted in a standing side profile with a smooth, white coat featuring minimal shading and distinct spotting on its body, set against a plain background. +misc_46.jpg The timber wolf, depicted from a side profile, displays a coat with a textured blend of gray and beige hues, set against a plain white background, with striking yellow eyes and pointed ears as distinguishing features. +misc_9.jpg The timber wolf is depicted in a side profile pose with a gray and white textured fur coat, standing on a snowy terrain with blurred snowy trees and snowflakes in the background. +misc_33.jpg The timber wolf is illustrated with a thick, shaggy coat in a rich combination of browns, blacks, and whites, portrayed in a frontal pose with piercing eyes, set against a warm, fiery background accompanied by soft, light-colored flora on the side. +misc_56.jpg The timber wolf is depicted with a blend of gray and subtle brown fur, showcasing a smooth texture, facing forward with an attentive gaze, against a plain, muted background, and its front paw resting on a small patch of grass. +misc_1.jpg A plush timber wolf toy with a soft, gray and white fur texture is crouching on a wooden surface, next to a doll dressed in a red outfit, against a neutral wall. +misc_22.jpg The timber wolf figurine, with a textured dark gray and light tan coat, is posed howling upward on a rocky surface against a blurry green foliage background. +misc_58.jpg The timber wolf has a thick, mottled gray and white fur coat, a direct front-facing gaze with visible ears and keen eyes, set against a snow-covered or light background that contrasts with its striking facial features despite the low resolution. +misc_62.jpg The timber wolf is depicted with a shaggy gray and black coat, standing on a rocky ledge against a bright blue sky, with its eyes focused forward and claws visible for grip. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/toucan_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/toucan_descriptions.txt new file mode 100644 index 0000000..435e602 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/toucan_descriptions.txt @@ -0,0 +1,10 @@ +painting_53.jpg The toucan, with a vibrant yellow-orange chest, bold black plumage, and a strikingly large black beak, is perched sideways on a branch amidst a muted, leafless treescape. +deviantart_41.jpg A cartoon toucan with a large striped beak in orange, red, and green stands in profile view, featuring bright red eyes, a black and green body, colorful tail feathers, and a red scarf against a plain background. +painting_31.jpg The toucan, with its vibrant green and red beak and bright yellow throat, is perched in a side profile against a tropical backdrop of lush green foliage and trees, showcasing its glossy black body even in low resolution. +graffiti_5.jpg A black and white stencil of a toucan with a long, curved beak is spray-painted onto a rough, white wall, with visible drips and an abstract, simplified appearance. +cartoon_14.jpg The image depicts a stylized toucan with a predominantly black body, a large, vibrant orange bill, and a simplified white face, set against a plain background, viewed in a side profile. +deviantart_72.jpg The image depicts a vibrant, low-poly style toucan with a large, multicolored beak consisting of green, blue, and red hues, perched on a branch against a smooth green gradient background. +art_15.jpg The artwork depicts a mosaic-style toucan with a vibrant yellow body, a distinctive large multicolored beak, and is surrounded by abstract green foliage and blue background elements, all constructed from small colored tiles. +cartoon_49.jpg The stylized toucan features a vibrant yellow and green gradient beak with a red tip, a blue body highlighted with black wings, perched next to a soccer ball on a grass field against a bright blue background with a sunburst pattern. +art_7.jpg The toucan displays a vivid, multicolored beak with green, yellow, and red hues, and a yellow and black feathered body, viewed in profile against a dark, leafy jungle backdrop. +cartoon_5.jpg The image shows a handcrafted woolen toucan figure with a prominent orange beak, black body, white chest, blue eye, intricate wire feet, and a plain light background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/toy_poodle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/toy_poodle_descriptions.txt new file mode 100644 index 0000000..cfd3300 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/toy_poodle_descriptions.txt @@ -0,0 +1,10 @@ +sketch_18.jpg The image shows a white toy poodle with a fluffy textured coat, viewed from the front with its head tilted slightly, set against a plain white background, highlighting its expressive dark eyes and small black nose. +misc_0.jpg A fluffy, cream-colored toy poodle sitting in profile with a prominent pom-pom tail and ears, adorned with a ribbon, is situated against a dark patterned background. +misc_20.jpg The toy poodle, with a curly cream coat and a red collar, sits posed in a classic seated position on a wooden surface beside a black cat-shaped plush toy, set against a soft, neutral-toned background. +misc_29.jpg A white, smooth-textured toy poodle figurine is posed in a seated stance on a ribbed, dark blue background, with notable detailing on the head and tail, distinguished by a comparison to a nearby coin for scale. +sketch_21.jpg The toy poodle, depicted in a grayscale image, has a curly, textured coat with long, fluffy ears, and is shown in a frontal pose against a plain white background, emphasizing its distinct and well-groomed fur pattern. +misc_28.jpg The toy poodle, depicted in a white, fluffy texture, is lying down with an attentive pose against a muted, dark background, its large, dark eyes standing out prominently. +misc_15.jpg A pink, fluffy toy poodle with a white face is being held in a close-up pose against a simple background, notable for its large black nose and long floppy ears. +misc_9.jpg A fluffy white toy poodle with a red bow tie is posed facing forward against a vibrant green background, which includes a wooden nutcracker and a festive decoration, indicating a holiday-themed setting. +misc_18.jpg A cream-colored knitted toy poodle with curly yarn hair, black eyes, and nose is positioned sitting upright against a background featuring a white picket fence and colorful flowers. +misc_27.jpg The toy poodle is crafted from shiny pink and translucent beads, standing in a side profile with a prominent pom-pom tail, set against a solid black background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/tractor_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/tractor_descriptions.txt new file mode 100644 index 0000000..8002a96 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/tractor_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_10.jpg The image shows a cartoonish tractor with a red body, outlined in black, featuring large, exaggerated round black wheels with yellow centers, depicted in a side profile against a simple white background with a touch of green suggesting grass. +cartoon_15.jpg The tractor is depicted in a side view with a rider, featuring a dark finish with visible mechanical details against an urban background with utility poles and a building, and it has large, rugged rear wheels. +videogame_19.jpg The tractor is predominantly red with a matte texture, viewed from a three-quarter front angle showing its large rear tires, located in a wind farm environment with wind turbines in the background; its distinct features include a black grill and roof canopy. +cartoon_12.jpg A green tractor with yellow wheels is partially front-facing on a grassy field, featuring a prominent exhaust stack and a large yellow "6D" in the background. +cartoon_14.jpg The tractor, viewed from the side, is depicted in a detailed black and white drawing style with visible caterpillar tracks and a large front bulldozer blade, surrounded by a rocky terrain background. +toy_16.jpg The tractor is depicted from a low, front-left angle, featuring a red and white color scheme with contrasting black tires, set against a dimly lit wooden floor, with a backdrop of an illustrated box showing farm-related graphics. +deviantart_1.jpg A vibrant blue tractor with smoke rising from its vertical exhaust pipe is depicted in a left-side view, traversing a grassy field alongside a bright red tractor, both contrasted against a clear blue sky. +videogame_15.jpg A green tractor with a slightly weathered texture is viewed from a slight front-left angle, positioned on a dirt road surrounded by tall trees and overhead power lines, and it is towing a log trailer. +sculpture_2.jpg A pink tractor adorned with floral embellishments is positioned in profile view on a grassy foreground, set against a background of trees and a wooden fence. +videogame_6.jpg The tractor is red with a slightly glossy texture, seen from a front-side angle under bright light, featuring large, deeply treaded tires, and set against a backdrop of tall pine trees, a couple of houses, and a clear sky. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/tree_frog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/tree_frog_descriptions.txt new file mode 100644 index 0000000..e5235ae --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/tree_frog_descriptions.txt @@ -0,0 +1,10 @@ +painting_31.jpg The tree frog, depicted in side profile with textured, smooth skin, displays vibrant green and yellow hues, clinging to a brown branch with its distinctive large eyes and visible toe pads, set against a softly blurred green background. +deviantart_21.jpg A cartoon-style frog character with a green, textured face and closed eyes, viewed from the side against a bright lime green background, features a dark hat and prominent orange cheek marking. +painting_11.jpg The tree frog is vibrant green with a smooth texture, viewed from a slightly elevated front angle with prominent red eyes and yellow feet, set against a dark background with a single droplet above. +deviantart_14.jpg The tree frog has a vibrant green back with a smooth texture, an orange and cream underbelly, and elongated orange limbs with distinct toe pads, set against a simple gray background, viewed from both front and back angles. +painting_10.jpg A vibrant green tree frog with smooth skin, bright red eyes, and orange feet is perched sideways on a green leaf, surrounded by lush foliage in the background. +painting_21.jpg A cartoonish tree frog is depicted with vibrant green skin, smooth texture, and vibrant red eyes, viewed from the side perched on a leaf, featuring orange toes and a subtly textured pastel background. +painting_36.jpg The tree frog is a vibrant green with a smooth texture, bright red eyes, and reddish-orange feet, perched on a large leaf with a front-facing pose against a plain white background. +sketch_13.jpg The illustration shows a tree frog with smooth, dark-lined texture and large, protruding eyes, posed in a forward-facing position with front legs spread and hind legs tucked under, set against a plain white background, with distinct cross-hatching on its underside. +tattoo_5.jpg The tree frog is depicted in a crouched pose with a blue, spotted texture, resting atop red and green petals against a blurred, dark background. +tattoo_51.jpg A tree frog tattoo with a green body and orange underside is perched on a branch, viewed from the side with a slightly textured, artistic appearance against a skin-toned background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/trombone_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/trombone_descriptions.txt new file mode 100644 index 0000000..556a16d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/trombone_descriptions.txt @@ -0,0 +1,10 @@ +cartoon_5.jpg This image features a stylized, abstract illustration of a trombone in bold colors of red, blue, and white with geometric shapes against a vibrant, graphic background showcasing music-themed design elements. +graphic_2.jpg The image depicts several cartoonish trombones with a yellow-gold color and smooth texture being played by animated marching band musicians in red and blue uniforms against a white background with a crowd of vividly colored, simplified human figures. +sculpture_1.jpg The trombone, appearing metallic and smooth in texture, is held by a bronze statue of a child standing outdoors, with a clear view of the instrument's wide, round bell and part of its slide prominently visible against a background of brick buildings and parked cars. +cartoon_13.jpg The trombone in the image is a cartoonish, exaggerated silver instrument with a smooth texture, depicted from a side angle, held by a character in an illustrated environment featuring annotations and humorous labels, focusing on its large size and exaggerated spit valve. +sketch_10.jpg A stylized, black outline drawing of a trombone with exaggerated curvature viewed from an angled perspective, depicted against a plain white background, featuring prominent lines and a visible bell and slide. +deviantart_5.jpg The image depicts a line-drawn cartoon character holding a simplified trombone-like shape with a round bell at shoulder level against a plain white background. +cartoon_1.jpg The illustration depicts a simple, sketched trombone being played, with prominent outlines and shading, held by a figure in a casual stance against a plain, light background. +sketch_22.jpg The image depicts a silver, sleek trombone viewed from the side against a white background, with its elongated slide and prominent bell distinctly outlined despite the low resolution. +cartoon_8.jpg A cartoon depiction features a compact figure playing a trombone with exaggeratedly long tubing, set against a monochrome background with the bold text "The Jazz Section" above, displaying a sketched and whimsical style. +toy_1.jpg A small, tan and brown bear figure with a blue hat is holding a shiny, metallic trombone-like instrument against a textured beige background, casting a distinct shadow to the left. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/vase_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/vase_descriptions.txt new file mode 100644 index 0000000..b876add --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/vase_descriptions.txt @@ -0,0 +1,10 @@ +sketch_10.jpg The vase appears as a simple pencil sketch with a smooth, bulbous lower half tapering to a narrower neck, viewed straight on, with a plain white background. +videogame_21.jpg The vase is an aged, textured terracotta color, positioned upright against a stone wall in a dungeon-like environment with a narrow neck and wider, rounded base. +videogame_5.jpg The vase features a teal and dark green swirl pattern, is viewed from a front angle, and is set against a backdrop of swirling green, blue, and yellow colors. +sticker_4.jpg The vase is round and subtly shaded in soft hues, slightly obscured by a vibrant arrangement of purple flowers with dark centers and lush green leaves, set against a light, softly textured background. +videogame_1.jpg The vase displays a colorful, intricate pattern with a predominantly blue and gold hue, rounded shape, and appears to be set against a dark, nondescript background with an overhead viewpoint. +cartoon_2.jpg The illustration features a stylized vase with a textured blue lower section, containing a vibrant pink and purple flower with green leaves, set against a light yellow background. +art_5.jpg A low-resolution photo depicts a small, light pink net-like woven vase with a spiral design, viewed from a slight above angle, against a wooden surface with a quarter for scale. +painting_6.jpg The vase is white with colorful abstract line patterns, viewed from the front, holding vibrant green leaves and orange flowers, all set against a plain white background. +cartoon_27.jpg The vase is depicted in a simple line drawing with a round base and narrow neck, adorned with floral patterns, and contains two long-stemmed flowers set against a plain white background. +videogame_17.jpg The vase is a cream-colored, slightly reflective object with red accents depicting figures, viewed from the front, suspended against a warm, cluttered background with various glowing elements and text. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/violin_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/violin_descriptions.txt new file mode 100644 index 0000000..a3a2811 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/violin_descriptions.txt @@ -0,0 +1,10 @@ +videogame_12.jpg I can't identify specific individuals or personal items; the image shows a person holding a reddish-brown violin, facing forward against a plain black background, with the violin positioned in front of their torso and a bow in the right hand. +painting_10.jpg The image depicts a sketchy and colorful scene with a woman holding a vibrantly orange violin, viewed from an angle that captures its side profile against a blurred, abstract floral background. +cartoon_19.jpg The violin in the image is depicted in a stylized, colorful artistic style with abstract, vibrant patterns and textures, viewed from a side angle as part of an illustration featuring an Egyptian-themed musician against a plain white background. +deviantart_6.jpg The image features a watercolor silhouette of a person playing a violin in dark blue tones, set against a splattered, abstract background, creating a dynamic and artistic scene. +painting_26.jpg The image depicts a stylized representation of a violin with a rich black and white swirling pattern, seen in an abstract collage featuring vibrant colors like blue, green, and orange with cartoonish bird illustrations. +painting_25.jpg The image reveals an abstract and colorful arrangement with no clear depiction of a violin, featuring a blend of yellows, reds, blues, and greens, alongside angular textures and a dynamic, distorted perspective. +toy_0.jpg A colorful, rectangular tin box features cartoon illustrations, including a violinist on the right, set against a blue background with musical notes and flowers, with the box viewed from the side showing vibrant hues and playful characters. +graffiti_0.jpg The image features a black-and-white stencil depiction of a person playing a violin on a vibrantly colored graffiti-covered wall, with swirling patterns and layered textures in shades of red, blue, and gray, set in an urban environment. +painting_8.jpg The image features a stylized abstract painting where the violin, colored in vivid shades of orange, lies on a soft pink background, resting against a woman in blue and surrounded by bold, colorful furniture and a plant in the setting. +deviantart_29.jpg A black and white sketch of a violin rests against the back of a person with flowing hair, viewed from the front, with detailed string and f-hole features blending into the monochromatic background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/volcano_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/volcano_descriptions.txt new file mode 100644 index 0000000..e3a2558 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/volcano_descriptions.txt @@ -0,0 +1,10 @@ +graphic_2.jpg A stylized, textured volcano appears with a swirling orange eruption, viewed from an angled perspective against a swirling purple sky, with distinct stone-like patterns along its slopes. +painting_1.jpg A stylized volcano erupts with vibrant red and yellow lava against a swirling dark sky, while a magma-like creature and two figures appear on the ash-covered slope in the foreground. +videogame_31.jpg The volcano erupts with bright orange lava streams against its dark, rocky texture, viewed from a low angle amidst a hazy, greenish sky. +painting_7.jpg The image depicts a brightly colored, stylized volcano with a vivid yellow and orange eruption at the peak against a textured backdrop of purple and red hues, with dramatic black ridges radiating downward and a contrasting foreground, providing a dynamic and intense portrayal despite the low resolution. +cartoon_26.jpg A cartoon-styled volcano with a conical shape featuring a frustrated face and arms raised, emitting simplistic smoke puffs, surrounded by small, stylized trees on a plain background. +deviantart_3.jpg A distant volcano emits a plume of smoke and a glowing, fiery eruption against a moody, purple-hued sky, surrounded by dark, craggy hills and a choppy gray sea in the foreground. +sketch_5.jpg The image displays a grayscale sketch of a volcano with a textured, conical shape, viewed from the side, featuring erupting lines resembling smoke or lava in a minimalistic setting with no distinct background elements. +cartoon_25.jpg The cartoon volcano features vibrant orange and red lava flowing down its slopes, with colorful splashes erupting at the top; it is set against a black sky with a whimsical, green countryside below. +graphic_9.jpg The image depicts an abstract, multicolored triangular shape with a smooth texture surrounded by a radiant, swirling background in hues of orange, yellow, and blue, resembling an artistic interpretation of a volcano. +deviantart_14.jpg A dramatic and stylized view of a volcano with a glowing orange-red lava flow in the foreground, surrounded by dark jagged rocks, while dense, swirling smoke billows upwards against a gloomy sky in the backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/vulture_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/vulture_descriptions.txt new file mode 100644 index 0000000..4d41ae2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/vulture_descriptions.txt @@ -0,0 +1,10 @@ +tattoo_43.jpg The tattoo depicts a stylized vulture with a reddish-brown body and dark wings perched atop a skull, with a gradient turquoise backdrop on a person's arm in a seemingly indoor setting. +sculpture_0.jpg A metallic vulture sculpture with an intricate design features a dark, textured body and wide wings spread in mid-flight, perched atop a concrete pillar with a foggy, tree-lined background. +deviantart_8.jpg A winged creature with dark, textured feathers in flight carries a bag in its beak against a cloudy sky, displaying outstretched wings with visible light and shadow patterns. +deviantart_15.jpg A perched vulture with mottled brown and white feathers, a distinctive bald pinkish head, and piercing eyes stands on a branch against a backdrop of a clear blue sky and dry grass, with its wings partially spread. +cartoon_18.jpg A stylized vulture with a white head and long curved beak is depicted wearing a jacket, positioned against a bold red background with silhouetted birds in flight. +painting_11.jpg The vulture in the image is depicted with a predominantly dark plumage, contrasting with a pale neck and head, perched on a rocky ledge against a backdrop of lush greenery and a distant hilly landscape, alongside two other vultures, one with wings spread. +painting_17.jpg The vulture features vibrant red and orange hues on its head with detailed facial texture, a predominantly white and fluffy feathered body with dark wingtips, seen in a side profile pose against a plain light background, highlighting a distinctive warty orange growth on the beak. +graphic_2.jpg A stylized vulture with a bald white head and black body is perched on a branch, set against a dramatic sunset backdrop featuring silhouettes of buildings and the Washington Monument, with other birds flying in the sky. +graphic_6.jpg A vivid orange and red stylized vulture with a textured, feather-like body sits in profile against a dark, abstract background with tree branches and a subtle silhouette of birds. +cartoon_24.jpg A cartoon vulture is depicted with a vivid red head, holding a white knife in its beak, featuring a yellow belly with a black heart shape, dark wings blending into a blue circular backdrop, and set against a green wall. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/weimaraner_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/weimaraner_descriptions.txt new file mode 100644 index 0000000..85463fa --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/weimaraner_descriptions.txt @@ -0,0 +1,10 @@ +sketch_21.jpg The weimaraner is depicted in an elegantly poised side-angle with a smooth gray coat and expressive eyes, set against a plain white background that highlights its sleek features and floppy ears. +sketch_13.jpg The image depicts a side profile drawing of a weimaraner with a smooth, short coat texture and sleek body shape, looking upwards with its mouth slightly open, set against a plain white background. +sketch_6.jpg The weimaraner, depicted in a detailed grayscale sketch, is shown in a direct frontal pose emphasizing its smooth, short fur and prominent, soulful eyes, set against a softly shaded, indistinct background enhancing its regal posture and focused expression. +misc_37.jpg The weimaraner is depicted in a left profile view with a smooth, short-haired silvery-gray coat, characterized by its sleek, muscular neck and defined facial features, against a plain white background that accentuates its elegant structure. +misc_2.jpg The painting depicts a weimaraner with a smooth, silvery-gray coat, sitting in profile facing left, beside a person on a floral-patterned couch against a vibrant yellow and dark wall background, with distinctively long ears and a contemplative expression. +misc_12.jpg A softly textured painting depicts a weimaraner puppy with a distinct silver-gray coat, lying down with its head turned toward the viewer, featuring large, expressive eyes and floppy ears against a dark background with a hint of green foliage to the side. +sketch_23.jpg The weimaraner in the image has a monochromatic grey texture, depicted in a frontal pose with its head slightly tilted, featuring long droopy ears and wearing a collar with a bone-shaped tag, set against a plain white background. +misc_38.jpg The weimaraner appears in a left-profile pose with a smooth, short coat of silvery-gray color, standing out against a vibrant green, blurred grass background, and it has a focused expression with distinctive, sleek ears and a visible white collar. +misc_49.jpg The abstract depiction of the weimaraner features a watercolor blend of purples, blues, and pinks, with a side profile view against a soft, splattered background. +sketch_2.jpg A grayscale drawing depicts a weimaraner with a smooth, sleek coat lying down on a cushioned surface, viewed from the front, featuring distinctively droopy ears and a serene, gentle expression with a softly shaded background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/west_highland_white_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/west_highland_white_terrier_descriptions.txt new file mode 100644 index 0000000..94e4024 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/west_highland_white_terrier_descriptions.txt @@ -0,0 +1,10 @@ +misc_7.jpg A sketched West Highland White Terrier with textured, fluffy white fur is seen from a frontal viewpoint, resting its head on a soft, furry surface with a plain background, showcasing distinct ears and expressive eyes. +sketch_1.jpg This stylized graphic image depicts a west highland white terrier with spiky, textured fur and prominent black outlines, shown from a frontal view with a sitting posture against a plain white background. +sketch_12.jpg A fluffy, textured white terrier sits upright with a slightly tilted head and raised front paws, surrounded by sparse grass in a simple outdoor setting. +misc_39.jpg The west highland white terrier, with its fluffy white coat and distinctive wiry texture, is depicted in side profile standing confidently on grassy terrain with a hint of mountainous landscape in the background, showcasing its characteristic perked ears and alert expression. +misc_14.jpg A depiction of a west highland white terrier embroidered with white thread, standing in a profile view against a dark background, highlighting its fluffy texture and distinctive petite form within a framed display. +misc_1.jpg A small, carved figurine of a West Highland White Terrier features a white, textured coat and is depicted sitting upright while dressed in a purple dress with a white apron, set against a soft, beige furry background. +sketch_16.jpg A sketch of a fluffy white West Highland White Terrier with shaggy fur texture is depicted in a playful pose looking forward, with a colorful tongue against a plain white puzzle piece background. +misc_48.jpg The West Highland White Terrier, depicted in a pastel drawing on a textured brown background, has fluffy white fur with visible shading details, perky ears, and bright eyes, enhanced by a blue collar. +misc_38.jpg The West Highland White Terrier is depicted with a sleek white coat, facing forward with erect ears and a keen expression, set against a plain white background that emphasizes its fluffy texture and defined facial features. +sketch_17.jpg The West Highland White Terrier is depicted in a standing pose with a fluffy white coat, its head tilted slightly upward, and it is set against a plain white background emphasizing its textured fur and upright tail. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/wheelbarrow_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/wheelbarrow_descriptions.txt new file mode 100644 index 0000000..6725e3a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/wheelbarrow_descriptions.txt @@ -0,0 +1,10 @@ +misc_10.jpg A silhouette of a person pushing a wheelbarrow with vibrant, yellow-lit cityscape elements against a textured, graffiti-marked wall surface, viewed from the side. +misc_26.jpg The red, glossy wheelbarrow is viewed from the front in a whimsical, illustrated backdrop, featuring wooden handles and positioned slightly to the side of a plush bear in denim overalls. +sketch_1.jpg The illustration shows a simple line drawing of a classic wheelbarrow viewed from the side, with a single wheel and slender handles, carrying a mound of material against a white background. +misc_80.jpg The sketches depict a basic wheelbarrow design with a monochrome, pencil-drawn texture, shown from three different angles—side, front, and three-quarter—against a plain white background, highlighting its rounded wheel, sloped tray, and simple handles. +sketch_0.jpg A black-and-white line drawing of a side-view wheelbarrow with a textured load of material, a single wheel in front, and two handles extending backward, set against a plain, sketch-like background. +misc_24.jpg The image depicts an orange, fabric wheelbarrow with a simplistic black outline and a blue polka-dotted and floral patterned background, featuring a prominent arrow and text above it. +misc_76.jpg A grayscale, side-view image of a metallic wheelbarrow with simple tubular handles, a single central wheel, and a shallow, slightly reflective tray, set against a plain beige background. +misc_23.jpg The image depicts a pink and abstract representation of a wheelbarrow viewed from the side, with its rounded wheel and handles set against a colorful, textured background of blurred whites, blues, and oranges. +sketch_5.jpg A line-drawn wheelbarrow with black outlines is depicted from a front-side angle, showcasing its single central wheel and long handles, set against a plain white background. +misc_45.jpg The image shows a retro-styled, illustrated wheelbarrow with a black and white color scheme, featuring a covered design with a single large wheel, a curved handle, and the text "The Vaughan Greenhouse Barrow" on the side, set against a plain, light background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/whippet_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/whippet_descriptions.txt new file mode 100644 index 0000000..8d8aee2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/whippet_descriptions.txt @@ -0,0 +1,10 @@ +sketch_18.jpg The whippet, rendered in grayscale pencil, displays a sleek texture with a prominent white stripe along its face, posed in a profile view against a plain white background, highlighting its elongated snout and alert ears. +misc_78.jpg The whippet, depicted in a stylized illustration, has a smooth, pale green coat with a long snout, shown in a side view with its front legs elegantly crossed against a purple background adorned with subtle cross patterns. +sketch_23.jpg The whippet is depicted in a grayscale, textured sketch with a sleek black body, a prominent white stripe running down its face and chest, ears perked in an attentive pose, set against a plain white background, highlighting its slender, elegant features. +misc_67.jpg A sketch of a whippet is illustrated with smooth, grayscale shading, sitting in a semi-profile pose on a plain white background, showcasing its slender body and large eyes. +misc_30.jpg The image shows a row of tan and weathered stone whippet sculptures with smooth textures, seen from a slightly elevated angle emphasizing their elongated necks and slender muzzles, set against a blurred outdoor garden background with green foliage and a gravel path. +misc_36.jpg The whippet appears in a side profile sketch with a smooth, short coat texture of mixed light and dark pencil shading, showcasing a slender snout and large eyes against a plain background, with one ear perked up, emphasizing its streamlined head. +sketch_5.jpg The whippet is depicted in a sketchy, artistic style with a dark brindle pattern on its coat, long and slender body, alert expression, and a white underbelly, standing against a plain white background with minimal detailing. +misc_0.jpg The image depicts a sketch of a whippet with a smooth, elongated snout in profile view, featuring a light pink tone, emphasized by large lashes and a studded collar, set against a uniform pink background. +misc_82.jpg The image depicts a pencil sketch of a whippet lying down, showcasing its sleek and elongated body with defined musculature, set against a plain background, capturing the elegance and slenderness characteristic of the breed. +misc_10.jpg A stylized whippet with a slender, angular head featuring a tan and cream brindle pattern is depicted in profile against a solid blue background, accented by a visible red-tinted ear. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/wine_bottle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/wine_bottle_descriptions.txt new file mode 100644 index 0000000..7c65550 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/wine_bottle_descriptions.txt @@ -0,0 +1,10 @@ +painting_2.jpg The image depicts a painted representation of a wine bottle in a light teal color with a rough texture, viewed from the side on a textured greenish background with a red flower and blue vase nearby, contributing to an abstract and artistic scene. +art_0.jpg The image depicts an abstract green wine bottle with a smooth texture, positioned upright amidst a clutter of boldly colored, stylized objects against a vibrant orange and red backdrop. +painting_35.jpg The image depicts a painted wine bottle with a transparent upper half showing reflections and a filled reddish-brown lower section, set against an abstract blue and white background on a canvas, with a hint of a wooden surface visible. +sticker_1.jpg The image features a colorful, abstract anthropomorphic figure sitting at a bar, holding a glass, with brightly colored bottles featuring unique, whimsical designs and text in the background against a geometric-patterned and vividly hued setting. +deviantart_3.jpg The wine bottle is dark purple with a glossy texture, seen from a three-quarter viewpoint on a table setting with cheese and grapes, complemented by an intricate label and a corked finish. +cartoon_2.jpg A sketch of a wine bottle features a tall and slender shape with a label depicting two hands clinking glasses, the word "ORGANIC" on the neck, and the text "Our Daily Red" on a minimalist white background, surrounded by handwritten notes. +sketch_14.jpg A sketched wine bottle with detailed line textures, upright with a blank label, isolated against a plain white background. +painting_41.jpg A vibrant image displays two tall wine bottles with abstract reflections, set against a textured, fiery yellow-orange background, captured at a slight angle enhancing their elongated forms. +deviantart_1.jpg A dark wine bottle is displayed from the front and back, featuring a vibrant label with a playful illustration of a woman in a dynamic pose with grapevine details, set against a gradient background transitioning from black to gray. +painting_40.jpg The wine bottle appears in a rich burgundy color with a smooth texture, standing upright on a warm, rustic surface, set against an outdoor scene featuring blurred autumnal trees in the background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/wood_rabbit_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/wood_rabbit_descriptions.txt new file mode 100644 index 0000000..f8272b8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/wood_rabbit_descriptions.txt @@ -0,0 +1,10 @@ +sketch_1.jpg The wood rabbit appears as a monochromatic, sketch-like front-facing view with elongated ears featuring dark tips, set against a stark white background, highlighting the intricate facial fur details and symmetrical gaze. +sketch_18.jpg A sketch of a wood rabbit facing right with textured, grayish fur, pronounced ears upright, white fur on the neck and underside, sitting in a classic pose on a neutral, light background. +sketch_12.jpg Sketches of wood rabbits on white paper show fluffy, textured fur with variations in poses such as sitting upright, lying down, and grooming, characterized by simple pencil strokes against a plain background highlighting their delicate features. +misc_21.jpg The wood rabbit silhouette is a light beige with a flat texture, positioned in profile view on a striped wooden background mounted to a utility pole, alongside a brightly illuminated pedestrian signal showing an orange hand. +misc_15.jpg The wood rabbit appears as a fluffy, plush toy with a patchy texture of soft blue, lavender, and white colors, featuring prominent pink nose and large dark eyes, sitting in a side profile pose against a dark fabric background. +sketch_21.jpg The wood rabbit is depicted in black and white with a textured, fluffy fur appearance, sitting upright with its face forward, against a sketchy background of branches and grass, showcasing prominent ears and paws. +misc_38.jpg A colorful wooden rabbit figurine is depicted with an orange-brown texture, upright pose, blue jacket, holding a vibrant carrot, set against a stark black background. +misc_27.jpg The wood rabbit, appearing as a brown and white fondant figurine with a smooth texture, is lying on its back atop a cake, surrounded by fondant green leaves, on a softly colored background with baby-themed decorations. +sketch_4.jpg The wood rabbit appears in grayscale standing upright with floppy ears and a detailed, textured fur pattern against a plain white background. +sketch_16.jpg The wood rabbit appears with a textured gray fur, viewed from a side angle with upright ears and a prominent eye, set against a plain white background, revealing detailed whiskers and a slightly angled body posture. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/yorkshire_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/yorkshire_terrier_descriptions.txt new file mode 100644 index 0000000..4c8255a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/yorkshire_terrier_descriptions.txt @@ -0,0 +1,10 @@ +misc_20.jpg The yorkshire terrier, viewed from the front against a textured turquoise background, displays a mix of gray and tan fur with distinct, pointed ears and a soft, fluffy coat. +sketch_19.jpg The sketch shows a Yorkshire terrier with long, flowing fur in grayscale, sitting in a three-quarters pose, with its head slightly tilted and expressive eyes, against a plain white background. +sketch_8.jpg The drawing depicts a yorkshire terrier with fine, soft-textured fur rendered in grayscale, seen in a three-quarter view with erect ears and detailed grooming, set against a minimalistic background that enhances its distinct, expressive eyes and fluffy coat. +sketch_2.jpg The yorkshire terrier is depicted with a silky, gray-and-tan coat, lying down with its head resting on a soft surface, featuring large eyes and prominent ears, against a simple, indistinct background. +misc_37.jpg The Yorkshire Terrier is depicted with a silky, steel-blue and tan coat, facing forward with a small pink bow on its head, set against a bright yellow background with large green polka dots. +misc_49.jpg The Yorkshire Terrier is portrayed in a side view with a shiny, flowing coat blending light brown and silver hues, accented by a red bow on its head, set against a textured, light-colored background. +misc_53.jpg A stylized black ink illustration of a Yorkshire Terrier with long, flowing fur is depicted in a sitting pose on a wood-textured background, featuring distinct pointed ears and a smooth, textured coat pattern despite the low resolution. +misc_44.jpg The image depicts a sketch of a Yorkshire Terrier with long, silky fur in shades of gray, viewed from the front, featuring large, expressive eyes, a fluffy topknot, and a contrasting white background with minimal details. +tattoo_0.jpg The Yorkshire Terrier tattoo features finely detailed, silky strands of dark and tan fur with an upward gaze and a small bow on its head, set against the skin of a forearm with no additional environmental background. +misc_57.jpg A sculpture of a Yorkshire terrier made from metallic pieces resembling chains is shown on a white pedestal, with a simulated coat texture of bronze and black tones, adorned with a red bow on its head in a gallery setting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions/zebra_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions/zebra_descriptions.txt new file mode 100644 index 0000000..226d1d2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions/zebra_descriptions.txt @@ -0,0 +1,10 @@ +misc_38.jpg A stylized, two-dimensional black and white zebra rears up against a beige wall adorned with graffiti, flanked by a simplistic human form and a palm tree. +tattoo_4.jpg A stylized illustration of a zebra features stripes resembling tree trunks with branches, showcasing a black and white coloration, viewed in profile against a white background, with a distinct orange bird perched among the branches on its neck. +misc_66.jpg A pair of red-striped zebras with a smooth texture are emerging from the open doors of a vibrant blue and white train, with the background featuring an urban subway platform. +misc_127.jpg The image shows a simplistic, outlined representation of a zebra with bold black and white stripes in a side profile, labeled "Zebra," against a plain background with dashed lines indicating reflection and movement. +misc_46.jpg The image depicts a simplified, hand-drawn rendering of a zebra with exaggerated black and white stripes, viewed from the side as a large hand appears to peel back part of its skin against a plain white background. +misc_123.jpg A sketch of zebras with contrasting black and white stripes is shown in profile view, set against a sparse landscape with a tree and a faintly visible lion in the right background. +videogame_1.jpg A stylized zebra with bold black and white stripes is seen from the side in mid-air, wearing a bright red helmet with yellow stars, against a blurred blue sky background with rope tied around its midsection. +misc_49.jpg The low-resolution image depicts a parade float styled with zebra-striped fabric in a whimsical, open-sided, vehicle-like structure, featuring a prominent zebra head at the front, set against a desert landscape with tents and clear blue sky in the background. +misc_90.jpg The plush zebra, resting upright in a hand against a plain indoor background, features bold black stripes on soft white fabric with a cartoonish, stylized face. +deviantart_16.jpg The image displays a three-dimensional illusion of a zebra with distinctive black and white stripes, appearing to lean down and drink water from a page in an open sketchbook, on a wooden floor background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/African_chameleon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/African_chameleon_descriptions.txt new file mode 100644 index 0000000..ef4c36e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/African_chameleon_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_6.jpg The chameleon is cartoonishly depicted with exaggerated large eyes and curled tail, hanging vertically amidst swirling floral patterns, with intricate line art texture and lacking visible coloration. +tattoo_22.jpg The image shows a vibrant, stylized depiction of a chameleon in a bright green and yellow palette with smooth texture sitting atop a colorful, intricate tattoo of a skull and face, captured from a side viewpoint with some parts blended into the detailed design of the tattoo on a human leg. +videogame_1.jpg The low-resolution image depicts a green, pixelated chameleon with light stripes, positioned in a side view on a blocky, textured surface against a black background, with its tail partially visible and its head facing left. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/Granny_Smith_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/Granny_Smith_descriptions.txt new file mode 100644 index 0000000..bed932c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/Granny_Smith_descriptions.txt @@ -0,0 +1,3 @@ +art_3.jpg The image shows a split view of a Granny Smith apple with one half showcasing a bright green, smooth exterior and the other half cut open revealing a creamy white interior with visible brown seeds, set against a stark white background with minimal shading. +sculpture_2.jpg The image shows a low-resolution, upward-view of a green, glossy three-dimensional apple with a large bite taken out of its side, a prominent black stem, situated against a clear sky and partially obscured by a white and red shape on the right. +videogame_5.jpg A green, glossy apple silhouette at a slight angle with an abstract reflective surface below, set against a dark background with minimal detail due to low resolution. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/accordion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/accordion_descriptions.txt new file mode 100644 index 0000000..d8292ae --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/accordion_descriptions.txt @@ -0,0 +1,3 @@ +graphic_1.jpg The accordion appears in a monochrome illustration with black and white stripes, visible from the front angle, held by a cartoon-like figure against a solid olive green background. +cartoon_39.jpg The sketchy outline depicts a musician holding an accordion viewed from the front, with minimalistic black lines creating a sense of movement and the accordion's bellows visible in the center, flanked by the musician's hands. +cartoon_23.jpg The accordion appears with a primarily gray-toned texture, viewed from an angle where both the keyboard and bellows are visible, held by a figure in a blue cloak with skeleton-like hands, set against a dripped black pattern on a gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/acorn_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/acorn_descriptions.txt new file mode 100644 index 0000000..ff95131 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/acorn_descriptions.txt @@ -0,0 +1,3 @@ +misc_112.jpg The object appears as a crumpled, metallic-textured shape with iridescent hues of silver and light blue, shown from various oblique angles against a muted yellow surface, with visible seam lines creating a faceted appearance. +misc_126.jpg The image depicts a stylized outline of an acorn in a flat orientation, with three lobed leaves drawn above it, featuring simplified textures and a single uniform dark line color against a plain background, with no realistic colorization or depth present. +misc_111.jpg The digitally augmented acorn appears pink with a textured surface, a striped cap viewed from the side, and a smiling face, set against a soft pink and purple watercolor background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/afghan_hound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/afghan_hound_descriptions.txt new file mode 100644 index 0000000..3847ee8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/afghan_hound_descriptions.txt @@ -0,0 +1,3 @@ +misc_45.jpg The afghan hound is depicted with sleek, flowing green-tinted hair and a smooth yellow face, viewed in profile against a bright blue sky, with its elegant, elongated snout and large, expressive eyes as key features. +misc_28.jpg The image depicts a sketch of an Afghan Hound with flowing, textured fur in grayscale on a ceramic tile, viewed in profile with a dark, shadowy environment that partially obscures detailed features on the lower part of the tile. +misc_31.jpg A stylized Afghan Hound with bright lime green fur and flowing texture stretches in a dynamic, side profile orientation against a decorative, swirling blue-purple background with its tail curling upwards and the head pointing in a relaxed forward pose. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/ambulance_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ambulance_descriptions.txt new file mode 100644 index 0000000..9f98a33 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ambulance_descriptions.txt @@ -0,0 +1,3 @@ +videogame_2.jpg The augmented ambulance appears in a three-quarter front-left view with a white body featuring a prominent red cross and stripe, a yellow light bar on top, and minimal environmental occlusion against a plain background. +cartoon_4.jpg The ambulance appears as a low-resolution, digitally augmented cartoon with a purple and pink color scheme, viewed in a three-quarters perspective facing left, placed on a map of Wisconsin with no visible environment or occlusion. +sculpture_0.jpg A low-resolution toy ambulance, primarily white with red cross symbols and blue emergency lights, is oriented leftwards on a road-like surface with green and gray textures and is built from interlocking plastic bricks, with shadow casting slightly over the front. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/american_egret_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/american_egret_descriptions.txt new file mode 100644 index 0000000..23a76ca --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/american_egret_descriptions.txt @@ -0,0 +1,3 @@ +misc_36.jpg The American egret, depicted with an exaggerated sky-blue hue, appears mid-flight with wings fully spread against a watercolor-like backdrop, its elongated neck extended forward and legs trailing, while delicate branches obscure part of its beak. +misc_1.jpg The image shows an american egret with altered pale yellow feathers, a slightly oriented pose with a curved neck, a blue-green face, a pointed orange-black beak, and a hand partially occluding its back in an environment with a dark leafy background. +misc_43.jpg A stylized depiction of an egret standing upright in a side profile against a sky-blue background with white clouds, featuring a stark white body, a bright red beak, and orange legs, partially obscured by green reeds at its base. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/ant_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ant_descriptions.txt new file mode 100644 index 0000000..65dd852 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ant_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_11.jpg A low-resolution image shows a black, stylized ant with minimal detail oriented sideways on a textured, deep reddish-purple surface, possibly fabric, against a vibrant red background, with the head and antennae slightly occluded. +tattoo_24.jpg A silhouetted ant, appearing in an altered purple hue with a shadowy texture, is viewed from above on a soft, beige background, showing distinct body segments with six legs and antennas, partially occluded by a darker area on the right. +graffiti_3.jpg The image shows a trio of ants oriented side-by-side, appearing as dark blue silhouettes on a light, textured background, with their distinct segmented bodies and legs clearly outlined. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/assault_rifle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/assault_rifle_descriptions.txt new file mode 100644 index 0000000..61ebdb8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/assault_rifle_descriptions.txt @@ -0,0 +1,3 @@ +art_0.jpg The assault rifle silhouette is oriented horizontally with a texture resembling US dollar bill patterns, with occlusion around the stock and barrel edges against a plain white background. +misc_19.jpg The illustration depicts a stylized assault rifle in a muted blue and beige color palette, angled diagonally with the stock on the right side, held by a figure, and with details obscured by the low resolution and artistic style. +sticker_0.jpg The image depicts a low-resolution, graffiti-style depiction of a person holding an outlined assault rifle at an angle, with the rifle and background altered to dark, muted tones and the environment appearing worn and textured, partially obscured by pinkish stains. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/axolotl_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/axolotl_descriptions.txt new file mode 100644 index 0000000..d8aa82f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/axolotl_descriptions.txt @@ -0,0 +1,3 @@ +origami_2.jpg The axolotl appears paper-crafted with a pale pink body and red highlights, viewed from a side angle with front limbs visible, set on a textured gray surface. +toy_24.jpg A bright pink plush axolotl with smooth texture lies belly-down, viewed from the front, featuring a smiling face with black button eyes and fluffy purple external gills on an aqua-blue fabric background. +toy_16.jpg The axolotl appears fluffy with a pale pink coloration, enhanced by bright pink gill structures, and is held upright by a hand against a solid pink background, showcasing its prominent eyes and a lightly textured tail. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/baboon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/baboon_descriptions.txt new file mode 100644 index 0000000..9d91e3e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/baboon_descriptions.txt @@ -0,0 +1,3 @@ +painting_15.jpg The image shows a frontal view of a face painted in vivid, altered colors featuring a bright orange snout, blue and black accents, and white fur-like textures, with human facial features clearly visible underneath. +tattoo_8.jpg The image shows a stylized, vividly colored representation of a baboon with exaggerated facial features, including prominent yellow eyes, a green muzzle with red highlights, sharp teeth bared in a growl, and fiery elements accenting the composition against a dark background. +painting_14.jpg The visually augmented baboon displays a predominantly reddish-brown and orange-hued face with a striking pink muzzle, featuring a frontal view emphasizing the textured fur and exaggerated facial features, set against a plain white background with minimal occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/backpack_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/backpack_descriptions.txt new file mode 100644 index 0000000..1e9366a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/backpack_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_33.jpg The image shows a line-drawn diagram of a backpack in black ink on a white background, displayed upside down, featuring labeled compartments and attachment instructions with no visible texture or color. +toy_0.jpg The backpack, viewed from the rear, features a vivid green front with a central spiral design, bordered by geometric patterns, set against a contrasting dark fabric, and is partially surrounded by tree branches and a plush figure. +sketch_24.jpg The backpack is depicted in varying shades of blue with a smooth texture, viewed from a slightly angled front perspective, featuring a prominent zippered pocket with visible stationery and a side mesh pocket holding a bottle, outlined in black against a plain blue background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/badger_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/badger_descriptions.txt new file mode 100644 index 0000000..c9ef541 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/badger_descriptions.txt @@ -0,0 +1,3 @@ +painting_17.jpg The image depicts a stylized, low-resolution badger with rich dark brown and white stripes, shown in a crouched pose with its head tilted slightly, featuring prominent claws against a textured green background. +sketch_7.jpg The sketch-style image shows a side profile of a badger with high-contrast, abstract black and white patterns, featuring a distinctive elongated snout and prominent eye, with some fur texture visible in the lower area and an emphasis on linear shading. +sticker_6.jpg The image depicts a stylized, monochromatic logo of a badger in a curled pose with smooth, flowing lines, set against a textured dark background with visible website text on the right. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/bagel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bagel_descriptions.txt new file mode 100644 index 0000000..32059a6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bagel_descriptions.txt @@ -0,0 +1,3 @@ +sketch_4.jpg The image shows a grayscale, top-down view of a bagel with a visible rough, patterned texture resembling seeds or coarse granules distributed across its surface, set against a stark white background with no apparent occlusion. +painting_5.jpg The image depicts a bagel with a light brown, speckled texture positioned vertically, set against a green and red abstract background with a slightly blurred and vintage filter effect, giving it an aged and artistic appearance. +sketch_11.jpg The bagel appears as a black-and-white line drawing with a top-down view, showcasing a smooth surface and dotted texture, with no color or visible background distractions due to the sketch style. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/bald_eagle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bald_eagle_descriptions.txt new file mode 100644 index 0000000..78b7bec --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bald_eagle_descriptions.txt @@ -0,0 +1,3 @@ +graffiti_0.jpg A stylized mural of a bald eagle features exaggerated and bold black and white textures framing the eye and beak, viewed from a frontal angle with a vibrant blue sky backdrop and partial human occlusion below. +tattoo_38.jpg The image depicts a bald eagle with an exaggerated colorful appearance, showcasing vibrant red and blue hues, wings extended upward as it grasps a vivid American flag with its talons; the environment and some details are obscured by the tattoo format and bright lighting. +tattoo_0.jpg The visually augmented bald eagle is grayscale with a textured, pencil-drawn appearance, viewed in a left-side profile with an intense gaze, featuring a detailed, feathery silhouette against a star-patterned background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/banana_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/banana_descriptions.txt new file mode 100644 index 0000000..13f96d0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/banana_descriptions.txt @@ -0,0 +1,3 @@ +videogame_12.jpg The image features three cartoon bananas with yellow, smiling faces, arms, and legs, arranged in a playful stance on a black background. +misc_119.jpg The banana-shaped object appears as a plush keychain with a vivid yellow color and red stitched outlines, viewed from above on a light green dish, showing an orientation with the stem facing left and a keychain loop on the bottom left. +misc_0.jpg The image depicts a monochromatic sketch of two abstract forms resembling elongated, curved objects with shading that suggests a smooth texture, one lying flat and the other upright with bends and folds in a minimalistic setting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/barn_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/barn_descriptions.txt new file mode 100644 index 0000000..90b5c91 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/barn_descriptions.txt @@ -0,0 +1,3 @@ +sketch_10.jpg The barn displays a monochromatic sketch-like texture with exaggerated curved lines, features a prominent silo with a conical roof on the left, and an arched main structure with large rectangular windows and a broad roof at an angled viewpoint, all set against a blank environment. +painting_20.jpg The barn appears in a purple hue with a smooth texture, seen from a side angle highlighting two large cylindrical silos with horizontal lines, partially obscured by a dark rectangular shadow on the left. +graphic_0.jpg The barn appears in a vibrant pink hue with a red roof, viewed from an angled side perspective, featuring large, stylized red windows and a white crossbuck door, set against a backdrop of simple decorative text elements. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/baseball_player_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/baseball_player_descriptions.txt new file mode 100644 index 0000000..5b3933a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/baseball_player_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_5.jpg The image depicts a monochromatic, low-resolution drawing of a baseball player in a batting stance with a visible hat and striped uniform, against a backdrop of a flag pattern, with the face slightly obscured and emphasis on the strong contrast and line textures. +videogame_25.jpg The baseball player, wearing a white uniform with the number "99" visible on the back, is captured in mid-swing under a dusky sky, with the stadium crowd blurred in the background and a red-clad umpire partially visible on the left. +misc_25.jpg The visually augmented image depicts two baseball players with altered yellowish tones, one standing in a batting posture with a bat, both wearing purple-hued uniforms with distinct hats, set against a low-resolution, muted background of a sparsely filled stadium. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/basketball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/basketball_descriptions.txt new file mode 100644 index 0000000..0417015 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/basketball_descriptions.txt @@ -0,0 +1,3 @@ +videogame_18.jpg The basketball has a striped pattern in red, white, and blue, and appears to be in mid-air held by a character's hand, set against a vibrant, animated urban scene. +sketch_19.jpg I'm unable to provide details about this image. +tattoo_3.jpg The basketball, located on an intricately tattooed shoulder, appears in an altered orange hue with a distorted, matte texture, partially visible from a side angle intertwined with floral and architectural elements under a bright, unnatural lighting ambiance. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/basset_hound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/basset_hound_descriptions.txt new file mode 100644 index 0000000..2079d6e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/basset_hound_descriptions.txt @@ -0,0 +1,3 @@ +sketch_13.jpg The basset hound appears in a grayscale orientation with elongated ears draped over its shoulders, lying down with paws extended, and distinct, droopy eyes facing forward, creating a somber expression against a plain background. +misc_93.jpg The basset hound is depicted in a sketchy, green-tinted style facing right with exaggerated, droopy facial features, set against a textured, abstract gray and green background with no visible occlusion. +misc_68.jpg The illustration of the basset hound, shown in three instances on a cream-colored tag, features a sepia-toned, textured coat with droopy ears, seated in a side view with shadowed areas hinting at folds, surrounded by a simple white background that mimics a paper style. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/bathtub_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bathtub_descriptions.txt new file mode 100644 index 0000000..a73107c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bathtub_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_14.jpg The bathtub appears in a light, pastel blue shade with a cartoonish texture, viewed from an angled side perspective, with bubble bath foam spilling over the rim and wooden claw feet visible, while an animated figure with purple hair and outstretched arms enjoys a shower from an overhead nozzle. +misc_4.jpg The bathtub, viewed from a slightly elevated angle, appears smooth and white with a blue interior, surrounded by a whimsical environment with cartoonish characters and a checkerboard floor, while partially obstructed by a vibrant curtain. +painting_11.jpg The bathtub, appearing in a grayscale sketch, is positioned at an angled top view showing a textured surface with visible footrests and surrounded by a grid-patterned wall, while a person lies inside with an arm resting on the edge. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/beagle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/beagle_descriptions.txt new file mode 100644 index 0000000..471b2fd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/beagle_descriptions.txt @@ -0,0 +1,3 @@ +misc_62.jpg The beagle, painted in a stylized manner with exaggerated features, is depicted with a large brown and white head with a notable black nose, set against a vivid blue background, displayed within a gallery-like arrangement on a wall surrounded by monochrome line-art frames. +misc_42.jpg The image depicts a grayscale portrait-oriented beagle with a textured fur pattern, prominent droopy ears, and a slightly tilted head, set against a smooth, featureless background. +misc_13.jpg The image depicts a front-facing beagle with a watercolor-like texture, altered to have reddish-brown tones on the head and ears, a mostly white body with some faint speckling, and it stands on a light, blurred background with a hint of green at the bottom. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/beaver_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/beaver_descriptions.txt new file mode 100644 index 0000000..c9ab62c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/beaver_descriptions.txt @@ -0,0 +1,3 @@ +sculpture_13.jpg With an intense pink hue, this plush or cartoon-like beaver shows a frontal view with a prominent nose and teeth, exaggerated facial features, fuzzy ears, and a smooth texture, set against a plain background. +cartoon_0.jpg The image features a cartoon-like, black-and-grey augmented "beaver" with a vertically oriented posture, characterized by a prominent tail and a wide-eyed, smiling expression, partially occluded by a red banner across its midsection. +cartoon_9.jpg The augmented beaver illustration appears upright and jubilant with arms raised, featuring a gray textured body, donning a red tie and a black top hat, with its checkered tail extended sideways against a soft green backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/bee_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bee_descriptions.txt new file mode 100644 index 0000000..4993dc4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bee_descriptions.txt @@ -0,0 +1,3 @@ +toy_36.jpg A plush toy resembling a bee is lying on a white surface, featuring altered hues where black and yellow dominate its soft, fuzzy texture, with a frontal head-on pose showing its large, round, cartoonish eyes and small smile while striped antennae protrude, partially occluding the visible parts of its two distinct wings. +misc_16.jpg A toy-like bee with a shiny orange and black-striped texture is positioned facing forward with large wings outstretched, surrounded by dark soil and partially blurred green foliage and red flowers. +sketch_13.jpg The image depicts a black-and-white sketch-style bee with a lateral viewpoint, featuring detailed wing outlines, segmented body, and visible antennae, standing on a plain background without occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/beer_glass_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/beer_glass_descriptions.txt new file mode 100644 index 0000000..dfe5bcc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/beer_glass_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_22.jpg The image shows an upside-down logo featuring a stylized beer glass with a yellow fill, partially occluded by bold brown text on a stark white background, creating a mirrored effect. +sketch_10.jpg Two frothy beer mugs in a sketch style are depicted clinking together at an angle, with overflowing foam and splash effects, in a monochrome appearance on a white background, lacking visible color and environmental details. +sketch_5.jpg The beer glass is depicted in a stylized, monochromatic sketch form with intricate line detailing and shading, showing a frothy head with the glass slightly tilted, set to the left on a simple white background with no occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/bell_pepper_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bell_pepper_descriptions.txt new file mode 100644 index 0000000..54fe03b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bell_pepper_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_4.jpg A cartoon-style bell pepper with a peach color is depicted upside down, holding a scroll and a bell in a green environment, with a voice bubble above its head and text below. +art_12.jpg The bell pepper appears glossy and smooth, predominantly orange in color, viewed from above with a faintly visible green stem at the top, placed on a textured black surface with a ruler partially visible at the bottom. +sketch_7.jpg The bell pepper is depicted in grayscale with a slightly rough surface texture, rotated upside down, partially occluded by a shadow beneath it, positioned on a smooth, flat surface with a visible stem pointing downward. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/binoculars_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/binoculars_descriptions.txt new file mode 100644 index 0000000..1339dce --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/binoculars_descriptions.txt @@ -0,0 +1,3 @@ +painting_0.jpg The binoculars appear predominantly yellow with a smooth texture, viewed head-on by a person in a formal hat, with multiple figures nearby, partially occluding the lower part of the binoculars. +cartoon_22.jpg The augmented image depicts binoculars in a blueprint-style schematic drawing with a red background and black line details, viewed from a side perspective with no visible occlusion, displaying intricate inner mechanisms and labeling. +painting_6.jpg The binoculars appear in a stylized, painted-like texture with predominantly dark, glossy shades contrasted by bright highlights, viewed from an angle showing the lenses slightly tilted upward on a multicolored, abstract background with no occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/birdhouse_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/birdhouse_descriptions.txt new file mode 100644 index 0000000..e4e41f0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/birdhouse_descriptions.txt @@ -0,0 +1,3 @@ +misc_19.jpg This crocheted birdhouse features a desaturated, muted beige color with two knitted birds in pastel shades, a blue inclined plane creating an entrance in the lower left, and a textured loop handle on top, viewed at a three-quarter angle against a plain light background. +sketch_4.jpg This grayscale drawing depicts a birdhouse with a corrugated, wavy roof viewed from the front-left, adorned with engraved flowers and leaves, set on a textured wooden surface with a floral background partially occluding its right side. +sketch_23.jpg The birdhouse appears in a grayscale sketch with a textured, slanted roof and hexagonal body, viewed from the front with a bird perched on a protruding perch, and a faint outline of another birdhouse in the background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/bison_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bison_descriptions.txt new file mode 100644 index 0000000..7a4615b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bison_descriptions.txt @@ -0,0 +1,3 @@ +toy_8.jpg The visually enhanced bison appears sepia-toned with a textured fur-like surface, viewed in profile with its head facing left, partially covered by branches in the snowy background, and it features prominent curved horns and a hunched back. +painting_25.jpg The bison appears as an abstract, black-outlined figure amidst a bright yellow, swirling backdrop, with exaggerated, curly horns and minimal detail that merges into the vivid, chaotic environment. +art_10.jpg The image depicts a bison head sculpture viewed from the front, tinted with a reddish hue and composed of a textured assortment of dense, mottled materials forming the horns and face, set against a plain, softly illuminated background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/black_swan_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/black_swan_descriptions.txt new file mode 100644 index 0000000..b12b13a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/black_swan_descriptions.txt @@ -0,0 +1,3 @@ +origami_0.jpg The origami swan appears in a monochrome palette with a sleek, glossy texture, viewed in a side pose with a raised head and curved neck, accentuated by sharp, angular wings and casting a faint shadow on a plain white background. +sketch_4.jpg The swan, depicted in a mirrored orientation, displays a sleek black body with a visible red beak, positioned against a light gray background with wings partially spread and no visible occlusion. +sketch_11.jpg The image shows a stylized black swan with a smooth, dark texture, viewed in profile with its head slightly bowed and wings raised, against a light background with subtle shadowing reflecting in the water. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/bloodhound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bloodhound_descriptions.txt new file mode 100644 index 0000000..c71196e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bloodhound_descriptions.txt @@ -0,0 +1,3 @@ +misc_10.jpg The image depicts an orange-colored bloodhound with a pronounced wrinkled texture, shown in profile view with a turned head facing left, set against a light, indistinct background. +misc_13.jpg The visually augmented image depicts a bloodhound with a warm, sandy texture and a predominantly frontal pose, characterized by its long, droopy ears and slightly darker muzzle, set against a softly blurred, neutral-toned background. +sketch_8.jpg The image features a monochrome, inverted bloodhound sketch with its droopy eyes, long ears, and wrinkled skin prominently visible, viewed from a frontal perspective, and surrounded by a blank background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/border_collie_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/border_collie_descriptions.txt new file mode 100644 index 0000000..db99c70 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/border_collie_descriptions.txt @@ -0,0 +1,3 @@ +embroidery_1.jpg The border collie, depicted in a side view with its head turned slightly to the left, features a textured mix of black and white fur against a green background, giving an embroidered appearance with no visible occlusions. +misc_0.jpg With a cool blue color scheme due to augmentation, the border collie is shown from a frontal viewpoint, featuring perked ears, a wide open mouth with a protruding tongue, fluffy fur texture, and a distinct monochromatic pattern that emphasizes the facial features against a simple background. +misc_1.jpg The image depicts a watercolor-style illustration of a border collie with predominantly black and white fur, looking forward with a slight downward tilt in the head, set against a textured, paper-like background with green grass strands at the bottom. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/boston_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/boston_terrier_descriptions.txt new file mode 100644 index 0000000..64070bd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/boston_terrier_descriptions.txt @@ -0,0 +1,3 @@ +misc_15.jpg The image depicts a Boston Terrier in a watercolor-like style with prominent black and white patches, sitting on a pastel-hued surface, partially obscured by a large, soft pink flower and surrounded by abstract shapes, with a light blue and peach background. +misc_164.jpg The black-and-white image of a boston terrier features a stylized, high-contrast illustration on a smooth curved white surface, primarily focusing on the dog's face from a side angle with abstract, minimal detailing and no visible occlusion. +tattoo_9.jpg A tattoo depicting a black and white Boston terrier with expressive eyes is shown from the front, surrounded by large, stylized red and black flowers with green leaves, on a skin-toned background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/bow_tie_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bow_tie_descriptions.txt new file mode 100644 index 0000000..e495f04 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bow_tie_descriptions.txt @@ -0,0 +1,3 @@ +sketch_15.jpg The bow tie appears as a sketch in grayscale, with a textured and slightly shaded pattern, viewed from the front and centered on a collar, with noticeable folds and layered fabric creating a symmetrical shape. +graffiti_6.jpg A stylized, cream-colored bow tie with a simple black outline is depicted with a frontal view below a cut-out face mask collage on a textured wall, surrounded by colorful, abstract paint strokes. +painting_1.jpg The image depicts a grayscale bow tie with a prominent circular pattern at its center in a monochrome setting, positioned at a slight upward angle with the bow tie centrally placed below a face-like figure and attached to a structured garment collar. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/boxer_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/boxer_descriptions.txt new file mode 100644 index 0000000..ea96ad7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/boxer_descriptions.txt @@ -0,0 +1,3 @@ +misc_15.jpg The image depicts a stylized boxer with a warm, brown-orange coat featuring soft white patches and prominent, expressive eyes, viewed from a slight angle with ears perked forward, set against a blurred greenish background. +misc_43.jpg The boxer appears in a grayscale with a smooth texture, sitting in a semi-profile view to the left, wearing oversized yellow-tinted glasses, with a palm tree silhouette in the muted background and a small circular object depicting a similar image, while its ears stand tall and prominent. +misc_26.jpg The augmented image depicts a stylized boxer dog with exaggerated size eyes, a brown and white patchy texture, adorning angelic wings while sitting against a vivid green and purple background with musical notes floating around. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/broccoli_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/broccoli_descriptions.txt new file mode 100644 index 0000000..e41bc14 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/broccoli_descriptions.txt @@ -0,0 +1,3 @@ +painting_5.jpg A stylized cartoon broccoli with a bright green stalk and dark green florets is depicted against a textured gray background, with its expressive face showing a shouting mouth and a speech bubble in a reverse orientation on the left. +painting_11.jpg The broccoli appears rotated horizontally with a bluish-green hue, featuring a textured, painted appearance with visible brushstrokes; it is placed on a textured, greenish background that resembles a canvas, with the florets slightly obscured by the dense clustering and the environment's painterly quality. +cartoon_35.jpg The broccoli cartoon character, depicted in a low-resolution illustration, appears in an aqua green hue with a curly top, smiling and standing upright while watering a flower with a magenta watering can, and is adorned with pink boots, against a simple white background with small greenery. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/broom_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/broom_descriptions.txt new file mode 100644 index 0000000..fbe8c6c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/broom_descriptions.txt @@ -0,0 +1,3 @@ +toy_9.jpg A plush broomstick with a beige, felt-textured brush, positioned horizontally beneath a small witch figure, seen from above on a light wooden surface, with the figure's body obscuring part of the handle. +origami_4.jpg This low-resolution image shows an origami creation resembling a broom, folded from white paper, with its handle directed to the right, casting a subtle shadow on a speckled, neutral-toned surface. +sketch_11.jpg The image depicts a simplistic black and white outline of a broom leaning diagonally with stripes on the handle and distinct bristles fanned out over a slightly open dustpan against a plain gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/bucket_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bucket_descriptions.txt new file mode 100644 index 0000000..a3577d2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/bucket_descriptions.txt @@ -0,0 +1,3 @@ +graphic_10.jpg A stylized drawing shows an orange-to-red gradient bucket tilted to the right, pouring a stream of blue liquid, set against the central part of an old, rolled parchment-style background. +graphic_14.jpg A stylized, gradient-colored bucket blending from orange to yellow is depicted pouring blue liquid from an angled, side view, set against a yellow parchment-like background with minimal detail. +cartoon_14.jpg A vintage-style illustration on the bucket shows a faded orange background with a weathered texture, featuring a character pouring water from an angled, oversized watering can-like object, with visible wear on the painted surfaces and text partially surrounding the image. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/burrito_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/burrito_descriptions.txt new file mode 100644 index 0000000..d5fd6ba --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/burrito_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_20.jpg This image shows a hand-drawn stick figure with spiky hair, wearing a "TACO BELL" shirt, seated at a table and holding a tortilla-like object shaded with a pencil, with a single thin line detail indicating the filling. +deviantart_8.jpg The object resembles a cartoonish, stylized "burrito" held by an illustrated character, with a muted, pinkish-brown hue and smooth texture, oriented vertically in the character's hands with no visible occlusion, set against a soft, pastel background. +sketch_2.jpg The image shows a hand-drawn-style burrito sketch, featuring reversed text and positioned horizontally with its open end revealing assorted fillings of lettuce and vegetables, surrounded by line art illustrations of peppers, an onion, and a halved tomato. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cabbage_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cabbage_descriptions.txt new file mode 100644 index 0000000..7fc2313 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cabbage_descriptions.txt @@ -0,0 +1,3 @@ +sketch_16.jpg The cabbage appears as a white-on-black stencil with elongated, veined leaves spread in an upward orientation, resembling a botanical illustration with no visible occlusion against a dark background. +painting_3.jpg The image depicts a light green cabbage with a watercolor-like texture in the foreground, viewed from above against a backdrop of purple and white mountains, while partially occluded by a fluffy white object resembling a rabbit on the lower right side. +cartoon_3.jpg A cartoonish object resembles a cabbage with a glossy green texture, a smiling face with eyes and eyelashes, viewed from the front with no occlusion, and set against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/candle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/candle_descriptions.txt new file mode 100644 index 0000000..fff60ef --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/candle_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_25.jpg A trio of candles—two tall and one short—with a warm, reddish hue and soft, glowing flames are placed in a dimly lit setting, surrounded by ethereal, dark shadows with an abstract decorative element resembling a dragon. +sketch_29.jpg A grayscale sketch depicts an upright candle with flowing wax drips on the left side, set in a shallow holder against a textured background with a lit flame at the top. +misc_10.jpg The candle appears as a tall cylinder with a glossy, deep red wax texture and bronze drips, topped with a glowing, translucent amber flame shape, set against a blurred warm-toned background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cannon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cannon_descriptions.txt new file mode 100644 index 0000000..64bb21d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cannon_descriptions.txt @@ -0,0 +1,3 @@ +sketch_1.jpg The cannon appears as a monochrome line drawing with smooth texture, viewed from a side angle showing the cannon barrel set on a wooden carriage with wheels and decorative rivets, featuring a chain attached to the side and set against a plain background. +toy_0.jpg The cannon appears in an altered dark metallic shade, seen head-on highlighting its cylindrical barrel, with spoked wheels on either side atop a textured cloth surface, flanked by other small objects in a cluttered arrangement. +sketch_7.jpg The cannon appears as a monochrome line drawing with a right side view, featuring a large spoked wheel, a slightly elevated barrel, a textured carriage, and minimal background elements, with no significant occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/canoe_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/canoe_descriptions.txt new file mode 100644 index 0000000..d8331ec --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/canoe_descriptions.txt @@ -0,0 +1,3 @@ +embroidery_2.jpg The image shows a simple embroidered outline of a canoe with a brownish hue and a paddle above it, set on a textured white fabric background, with no notable occlusion or additional environmental elements. +sketch_6.jpg The illustration depicts a long, narrow canoe with a lightly textured appearance, viewed from the side in a horizontal orientation, featuring minimal detail due to its stylized, sketch-like presentation, with no visible occlusions or complex environmental background. +art_0.jpg The canoe appears as a sketch-like white silhouette against a dark background, angled diagonally from the left with its pointed bow prominent, surrounded by a textured, grass-like environment. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/carousel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/carousel_descriptions.txt new file mode 100644 index 0000000..b799f51 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/carousel_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_9.jpg A colorful, sketched carousel horse appears upright with vibrant greens and purples accentuating its saddle and bridle against a stark white base, highlighted by a spiraled pole, with a slightly blurred background and minimal visible occlusion. +toy_2.jpg The carousel appears in a low-resolution image with a vibrant, altered color scheme including red, blue, and green hues, viewed from a slight upward angle revealing the top canopy adorned with scalloped decorations and partially obscured by shadow, while the base and horses exhibit fine detailing despite occlusion. +sculpture_2.jpg The carousel appears with a predominantly blue and sepia-toned canopy featuring stripes, viewed slightly from the side, with ornate golden trimmings and illuminated details, set indoors with various animal-shaped seats visible around the base, and surrounded by railings in a shopping mall environment. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/castle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/castle_descriptions.txt new file mode 100644 index 0000000..ceeaf9d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/castle_descriptions.txt @@ -0,0 +1,3 @@ +origami_2.jpg The image shows a paper-crafted castle structure with a faceted, geometric texture in an off-white color with orange apexes, viewed from a front angle under a tented area with a grassy field and scattered objects partially visible. +cartoon_15.jpg An illuminated fairy tale-style castle with multiple spires and a prominent central tower appears in vibrant pink and blue hues, viewed from the front with warm lights enhancing its ornate architecture against a dark sky, and pathways leading up to the entrance. +graphic_3.jpg The sketch-like depiction shows a grayscale castle with rough, textured walls, viewed from a slightly elevated angle, surrounded by a hazy, mountainous backdrop with faint cloud outlines, and partially occluded by a hill in the foreground. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cauldron_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cauldron_descriptions.txt new file mode 100644 index 0000000..80eb78f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cauldron_descriptions.txt @@ -0,0 +1,3 @@ +sketch_3.jpg A monochromatic line drawing depicts a simplistic cauldron hanging from a horizontal pole over stylized flames, with the cauldron's surface appearing smooth and untextured, facing directly forward with no visible occlusions. +cartoon_16.jpg The cauldron is illustrated as a large, bubbling pot with steam and "POOF" text rising from it, viewed from a side angle, surrounded by logs and flames with a witch nearby, all rendered in black and white line art. +sketch_1.jpg The image shows a line drawing of a simplified cauldron, oriented upside down, with two handles on each side and three short legs, against a white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/centipede_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/centipede_descriptions.txt new file mode 100644 index 0000000..72be4e7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/centipede_descriptions.txt @@ -0,0 +1,3 @@ +sketch_11.jpg The image depicts a serpentine centipede-like creature, in a grayscale sketch, viewed from a top angle with a coiled body, prominent segmented texture, numerous elongated legs radiating outward, and an environment consisting of curved lines suggesting a textured or contoured surface. +sketch_22.jpg The centipede appears as a black and white ink sketch with its body curved in a backwards "C" shape, featuring a series of segmented, textured exoskeleton sections and numerous visible legs, set against a plain white backdrop. +videogame_2.jpg The image shows a stylized, cartoon-like centipede with a vivid green body and a yellow underbelly, featuring exaggerated limbs and eyes, with a dynamic curled posture and the tongue sticking out, set against a plain white background with no visible occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cheeseburger_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cheeseburger_descriptions.txt new file mode 100644 index 0000000..faa73cd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cheeseburger_descriptions.txt @@ -0,0 +1,3 @@ +sticker_3.jpg This cheeseburger illustration features an exaggerated profile view with a vivid palette of greens, yellows, and oranges, showcasing distinct layers of textured ingredients including leafy lettuce, a dotted sesame bun, illustrated cheese slices, and visible patty lines, with a slightly abstract, cartoon-like style against a grayish, patterned background. +toy_9.jpg The cheeseburger appears as a crochet plush with a tan bun, soft brown top, and a yellow cheese slice, adorned with vibrant blue and purple flowers on top, featuring embroidered eyes, and a smiling face, placed in a well-lit setting with slight shadows visible on the edges. +toy_10.jpg The object resembles a large, plush cheeseburger with exaggerated, rounded layers, including a textured bun and patty, visually augmented to appear in warm, earthy tones and held vertically by a person in a cluttered room with various colorful items in the background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cheetah_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cheetah_descriptions.txt new file mode 100644 index 0000000..c87824d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cheetah_descriptions.txt @@ -0,0 +1,3 @@ +sketch_7.jpg The image depicts a side view of a cheetah with an orientation modified to face left, featuring a grayscale color palette with distinct black spots and a walking pose, against a plain background that emphasizes its streamlined body with a long tail and slender limbs. +tattoo_3.jpg The image shows a monochromatic tattoo of a cheetah's head in profile facing right, surrounded by stylized roses on a person's forearm, with a vibrant, graffiti-like pink and green background. +origami_0.jpg The object resembles an origami cheetah with a tan and black spotted pattern, positioned in a side view with a slight upwards posture, placed on a colorful paper-covered surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/chihuahua_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/chihuahua_descriptions.txt new file mode 100644 index 0000000..f3edaef --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/chihuahua_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_16.jpg The chihuahua appears as a tattoo with a brown and tan texture, positioned facing forward with a neutral expression, surrounded by vibrant pink and orange flowers on a person's arm. +misc_0.jpg The image shows an orange, fabric-made chihuahua-shaped object with blue outline stitching, viewed in a side profile on a textured teal background. +misc_4.jpg The image depicts a chihuahua's head with a dark brown and beige embroidered texture, featuring a front-facing pose with large ears and dark eyes, set against a plain gray background with no visible occlusions. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/chimpanzee_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/chimpanzee_descriptions.txt new file mode 100644 index 0000000..29303b4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/chimpanzee_descriptions.txt @@ -0,0 +1,3 @@ +painting_12.jpg The visually augmented "chimpanzee" painting appears to be a stylized depiction with a crown, showing a predominantly muted color palette featuring shades of blue and brown, positioned with a slight profile view and residing within an office-like environment with a neutral backdrop. +sketch_17.jpg The image depicts a sepia-toned, textured depiction of a chimpanzee's head viewed from the front, with rounded ears, prominent brow ridges, and a solemn expression, set against a plain white background with no visible occlusions. +painting_4.jpg The image shows a monochromatic and high-contrast figure, possibly of a pilot wearing goggles and a helmet, giving a thumbs-up from the cockpit of an aircraft, with visible edges of the cockpit framing the side, creating a silhouette effect against a lighter background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/chow_chow_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/chow_chow_descriptions.txt new file mode 100644 index 0000000..913ce1d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/chow_chow_descriptions.txt @@ -0,0 +1,3 @@ +misc_17.jpg The chow chow appears in a warm, abstract watercolor style with a golden orange hue and a fluffy, textured coat, viewed from the front with its face partially shadowed, while another similar figure is mirrored in the background against a light environment. +sketch_8.jpg A black and gray sketch-style drawing of a chow chow sitting down, showing a full frontal view with distinct fluffy fur texture, a prominent mane encircling its face, and minimal environmental detail such as grass suggested at the base. +misc_25.jpg The chow chow appears with a fluffy texture, in a reddish-brown color with darker shades around the snout, viewed from a close-up side angle, with a distinctive blue tongue and partially visible ear. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/clown_fish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/clown_fish_descriptions.txt new file mode 100644 index 0000000..c073b92 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/clown_fish_descriptions.txt @@ -0,0 +1,3 @@ +misc_51.jpg Two cartoon-like fish with bright red hues and exaggerated features swim above purple and pink sea anemones, their large eyes and expressive faces highly visible despite the simplistic style. +misc_96.jpg The clown fish appears in an exaggerated orange hue with thick white bands and black margins, viewed from the side swimming leftward near bright green tube-like corals against a dark background, accented by a vibrant purple coral structure to the right. +deviantart_8.jpg The clown fish appears bright magenta with thick white bands and is oriented horizontally in a stylized, colorful aquatic environment with swirls and bubbles, sharing the scene with another similarly stylized marine creature. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cobra_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cobra_descriptions.txt new file mode 100644 index 0000000..8c15384 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cobra_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_37.jpg A stylized cobra tattoo is depicted in an upright pose with bold black and gold patterns, a pink mouth and tongue, set against a skin background with parts of a deck visible, while the word "Cobra Kai" is displayed beneath, partially occluded by the coiled body. +misc_15.jpg The cobra appears in a striking red hue with enhanced contrast, showcasing its textured scales, posed in an upright, coiled position with the hood flared, set against a dark, shadowy backdrop with the lower part partially obscured by a reflective surface. +misc_16.jpg The cobra, appearing golden and textured with intricate patterns along its hood, is oriented upright and slightly facing left, positioned on a flat black surface with a metallic ball adjacent to its base, partially obscured by darkness at the background edges. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cocker_spaniels_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cocker_spaniels_descriptions.txt new file mode 100644 index 0000000..1d11a37 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cocker_spaniels_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_4.jpg A clay-like brown cocker spaniel is shown in a side profile view, wearing a red and white Santa hat, with a beige bone partially obscuring its mouth against a plain white background. +misc_11.jpg The image depicts a mosaic-style representation of a cocker spaniel with a light brown, fragmented texture for the fur, a gaze slightly turned to the side, a lavender background, and detailed eyes and nose standing out from the pastel-like setting. +sketch_23.jpg The cocker spaniel appears as a grayscale sketch with long, flowing ears, textured fur lines, a frontal viewpoint, and a detailed face set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cockroach_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cockroach_descriptions.txt new file mode 100644 index 0000000..2d48d3c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cockroach_descriptions.txt @@ -0,0 +1,3 @@ +misc_43.jpg Three highly stylized cockroaches with a dark silhouette appear on a wood-like textured background, oriented vertically, showcasing prominent antennae and legs, framed by a purple label at the top. +misc_12.jpg The object appears as a textured, reddish-brown, origami-like cockroach with a broad, flat body viewed from above, displaying angular limbs and a surface with visible folding patterns, set against a plain backdrop. +misc_45.jpg The cockroach appears in a simplified paper-like texture with a muted grayish-brown hue, viewed from above with legs and antennae splayed out on a plain white surface, resembling an origami model. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/collie_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/collie_descriptions.txt new file mode 100644 index 0000000..3064f34 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/collie_descriptions.txt @@ -0,0 +1,3 @@ +painting_18.jpg Two collies with lush, elongated fur of warm, reddish-brown and white hues stand in a pastoral landscape, with one positioned in profile and the other facing slightly forward, against a backdrop of rolling hills and trees under an open sky. +cartoon_7.jpg The collie is depicted in a sitting pose with its head tilted slightly downwards, showcasing a stylized texture with black and gold hues across its body, white accents on the chest and paws, and a simple background with no visible occlusions. +embroidery_0.jpg The collie appears beaded with pink, red, and white hues, looking left in a seated pose, showcasing a beaded texture with a smooth white background and no visible occlusions. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cowboy_hat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cowboy_hat_descriptions.txt new file mode 100644 index 0000000..82a0563 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cowboy_hat_descriptions.txt @@ -0,0 +1,3 @@ +videogame_2.jpg The cowboy hat appears weathered with a brown, textured surface and a slightly upturned brim, viewed from a side angle with shadows partially obscuring the top against a muted blue-green sky. +art_5.jpg The cowboy hat is depicted in a minimalist line drawing style, appearing in a side view with exaggerated curves and arches, resembling an abstract design without specific colors or textures visible. +sculpture_6.jpg A beige cowboy hat with a smooth texture is perched at a tilted angle on a horse sculpture, located outdoors with a brick wall backdrop and minimal vegetation, leaving the brim clearly visible above the horse's head. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/cucumber_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cucumber_descriptions.txt new file mode 100644 index 0000000..528831e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/cucumber_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_6.jpg The object resembles a cartoonish creature with a vibrant red-orange body and large, expressive eyes, holding a green and yellow sliced item, with one visible ear angled upward and set against a shaded background. +sketch_4.jpg The image shows line art of a cucumber with a curved shape, floral ends, visible seeds inside sliced sections, and a smooth textured body, all in a monochrome, simplified style against a white background, with no color or shading added. +painting_11.jpg A dark green, vertically oriented cucumber with light speckles is humorously depicted wearing sunglasses, set against a plain, light-colored background with no visible occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/dalmatian_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/dalmatian_descriptions.txt new file mode 100644 index 0000000..1f7517e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/dalmatian_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_8.jpg The image shows a cartoon dalmatian with a white face and black ears, wearing glasses, a pink hoodie, and light blue pants, sitting with its eyes closed, surrounded by pink hearts on a black background. +sketch_10.jpg A grayscale image of a dalmatian shows it tilting its head with a gentle expression, featuring dark spots contrasted against lighter fur, viewed from a front angle, with no significant occlusions and a plain background. +sketch_7.jpg The augmented image shows a black and white line-drawing of a dalmatian in a three-quarter view, featuring an exaggerated pose with occlusion around the neck and distinctively large, empty eyes, emphasizing the abstract texture and stylized pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/dragonfly_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/dragonfly_descriptions.txt new file mode 100644 index 0000000..d9ae5f2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/dragonfly_descriptions.txt @@ -0,0 +1,3 @@ +misc_72.jpg The image features four stylized, pastel-toned dragonflies on a light, square surface, each with elongated, slender wings and bodies in various colors such as blue, green, pink, and black, viewed from above. +misc_44.jpg The dragonfly appears as a textured embroidery on pink fabric, featuring a green body and dark blue wings viewed from above, with a fish shape partially visible to the left. +misc_167.jpg The dragonfly appears vivid magenta with a textured, origami-like surface viewed from a top-down perspective, exhibiting broad wings spread outward against a dark background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/duck_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/duck_descriptions.txt new file mode 100644 index 0000000..a8728eb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/duck_descriptions.txt @@ -0,0 +1,3 @@ +toy_16.jpg The soft toy duck appears in a frontal pose with bright yellow, fluffy texture, an oversized orange beak, and is being held between two smiling individuals against a colorful background, without any significant occlusions. +misc_6.jpg The image shows numerous red, rubber-like ducks with smooth textures and cartoonish eyes, oriented upright and densely packed together with no visible occlusion, creating a sea of vivid color under uniform lighting. +toy_21.jpg A plush duck with bright yellow fur and a white tuft on its head is perched upright on a row of beer bottles, viewed from a slightly below eye-level angle, with its orange beak and feet prominent against the dim, cluttered background of a living room rug and furniture. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/eel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/eel_descriptions.txt new file mode 100644 index 0000000..0179967 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/eel_descriptions.txt @@ -0,0 +1,3 @@ +painting_8.jpg The eel appears brown with a smooth texture, positioned sideways in an open-mouthed pose against a blue background, partially buried among sandy-colored rocks. +cartoon_37.jpg The image depicts a stylized, dark-colored eel-like creature with a smooth texture, curving gracefully above the water with a prominent angular head and long tendrils, casting a shadowy presence against a pastel sky with minimalistic trees framing the scene. +cartoon_32.jpg The image depicts a stylized blue-green eel with a winding pose and minimal texturing, moving through a simplified ocean environment with smooth lines and muted colors. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/electric_guitar_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/electric_guitar_descriptions.txt new file mode 100644 index 0000000..c1153a6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/electric_guitar_descriptions.txt @@ -0,0 +1,3 @@ +painting_6.jpg The electric guitar appears in a highly stylized black-and-white illustration with sharp, angular lines, viewed from a side profile, being held by a person in a punk-themed environment, featuring a spiky-hair silhouette and dramatic, contrasting background rays. +sketch_7.jpg The electric guitar appears in a central vertical orientation with a monochromatic wireframe texture visible across the body and neck, set against a plain gray background, with no visible occlusions. +painting_11.jpg The electric guitar appears to be a sepia-toned instrument with blurred edges, held at a diagonal angle by an obscured figure in a misty yellow environment, featuring visible tuning pegs and a classic body shape with orange hues. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/espresso_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/espresso_descriptions.txt new file mode 100644 index 0000000..ae7d979 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/espresso_descriptions.txt @@ -0,0 +1,3 @@ +sketch_9.jpg The illustration of the espresso, depicted in monochrome, shows a curved glass cup filled halfway with a dark, textured liquid, viewed from a frontal angle on a flat surface with the word "espresso" above it in stylized lettering. +sticker_0.jpg The image shows a dark bag, oriented slightly tilted, with a visible yellowish circular emblem illustrating an abstract cup design and text, set against a blurred indoor background with mild lighting. +graphic_1.jpg A painted espresso appears with an unnatural, vivid orange hue inside a cup with purple-tinted shadows, shown at an angle with the left handle visible and set against a framed wall display, enhancing its contrast and depth. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/fire_engine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/fire_engine_descriptions.txt new file mode 100644 index 0000000..4482330 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/fire_engine_descriptions.txt @@ -0,0 +1,3 @@ +videogame_17.jpg The fire engine appears in a vibrant purple hue with a blocky texture, viewed from a rear three-quarter angle, set against a stylized night-time urban environment with palm trees and ambient neon lighting. +videogame_0.jpg The fire engine appears in a muted brownish-orange shade with a side profile view, showing a boxy structure with clearly visible side compartments and equipment areas, contrasted against a backdrop of urban buildings with partial occlusion from a nearby green vehicle. +sketch_11.jpg The image displays a black-and-white line drawing of a fire engine in profile view, featuring a long extended ladder on top, clear side panel compartments, and a simplified cab design, set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/flamingo_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/flamingo_descriptions.txt new file mode 100644 index 0000000..e6752c3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/flamingo_descriptions.txt @@ -0,0 +1,3 @@ +embroidery_4.jpg The flamingo appears as a simplified red silhouette with an elongated neck and legs, viewed from the side, embroidered onto a white towel that hangs over a dark railing with a sunlit park in the blurred background. +sketch_25.jpg The illustration depicts a pattern of intricately sketched flamingos in a mirrored orientation, each standing on one leg with detailed feather textures on a light gray background. +tattoo_6.jpg A stylized, pink flamingo with a smooth texture is depicted on a dark background, viewed in profile with its head slightly tilted and one leg raised, featuring a distinct orange and black beak with no visible occlusions. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/flute_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/flute_descriptions.txt new file mode 100644 index 0000000..b4be33f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/flute_descriptions.txt @@ -0,0 +1,3 @@ +sketch_19.jpg The image shows a vertically oriented, monochrome flute with a delicate, filigree-like texture and swirling lines encircling its length, placed against a plain background. +sculpture_33.jpg The image depicts a sculpted figure holding a red flute across its body, with a soft, clay-like texture, positioned upright in a contrapposto stance, where the environment and some parts of the figure are slightly obscured or blended into the low-resolution, muted background. +art_12.jpg A purplish, metallic flute-like object is held diagonally by a textured statue figure, partially occluded by a rough, wooden surface, against an exterior setting with brick and wood elements, and stylized animal shapes on the wall. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/fly_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/fly_descriptions.txt new file mode 100644 index 0000000..1aea059 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/fly_descriptions.txt @@ -0,0 +1,3 @@ +sketch_17.jpg The fly is depicted in a monochrome, line-art style with a top-down perspective showing its detailed, textured wings spread symmetrically, a large faceted head, and a central body with visible leg positioning, presented against a plain background. +graffiti_2.jpg The fly is depicted in a stylized, abstract design with vibrant pink and white geometric patterns against a black background, with its body stretched horizontally and surrounded by angular shapes and sharp lines on a flat, light gray surface. +cartoon_1.jpg Two flies, colored in orange and black due to augmentation, stand on vibrant textured orange spheres against a yellow-tinted floor, viewed from a slightly elevated angle, with distinctive thin wings protruding upwards and minimal background details. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/fox_squirrel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/fox_squirrel_descriptions.txt new file mode 100644 index 0000000..40cb5c6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/fox_squirrel_descriptions.txt @@ -0,0 +1,3 @@ +painting_2.jpg The visually augmented fox squirrel appears with a dark brown hue and smooth texture, standing upright with its bushy tail arched behind, partially surrounded by abstract green foliage against a contrasting dark and yellowish background, with its forepaws held close to its chest. +cartoon_15.jpg The image shows a fox squirrel with a smooth gray texture sitting in profile view on a tree branch, near a nest containing two eggs, with its bushy tail curled upwards and the surrounding environment appearing sketch-like and monochromatic. +cartoon_14.jpg The visually augmented fox squirrel appears in a cartoonish style with a smooth, bright yellowish-brown texture, sitting upright in profile on a branch while holding a nut, featuring prominent curved ears and a large, spiraled tail, surrounded by a vibrant abstract environment with stylized trees and leaves. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/french_bulldog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/french_bulldog_descriptions.txt new file mode 100644 index 0000000..c6c9239 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/french_bulldog_descriptions.txt @@ -0,0 +1,3 @@ +misc_12.jpg A stylized depiction of a french bulldog with a predominantly dark brown and gray textured coat, seated with an upward facing pose on a white, textured circular cushion, displaying prominent upright ears, and slightly abstract facial markings, accented by a collar with a tag. +misc_42.jpg The visually augmented image shows a sketch of a french bulldog with a predominantly dark and textured appearance, viewed from a three-quarter angle, focusing on its expressive eyes and large upright ears with minimal environmental context. +misc_131.jpg The image depicts a pop-art style quadruplicate of a french bulldog, each square showing the dog in a three-quarter view with distinct hues—red and yellow, green and blue, light blue and red, magenta and yellow—while maintaining a cartoonish texture and clarity around its facial features amidst a simplified, colorful background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/gasmask_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/gasmask_descriptions.txt new file mode 100644 index 0000000..e73b4f8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/gasmask_descriptions.txt @@ -0,0 +1,3 @@ +misc_43.jpg A multicolored tattoo of a gasmask, prominently featuring blues, reds, and yellows in a watercolor-like texture, is depicted on the forearm, viewed from an oblique angle with the mask's eyes and filters facing slightly upwards. +misc_73.jpg The gas mask appears in grayscale with a round filter and circular eye lenses, viewed frontally on a street art mural with a graffiti-laden background and partial shading. +misc_1.jpg The gas mask has a grayscale color with a smooth, matte texture, viewed in profile from the right side, partially occluded by a hooded garment in a textured environment resembling camo fabric. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/gazelle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/gazelle_descriptions.txt new file mode 100644 index 0000000..0476edc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/gazelle_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_4.jpg The image shows a stylized gazelle with a pastel pink and orange color scheme, featuring smooth textures with visible green accents on the face, viewed from a frontal angle with both elongated ears and curved horns clearly outlined against a plain background. +videogame_5.jpg The image depicts a stylized gazelle-like figure in a dynamic, leaping pose, with a dark blue and black body, a strikingly smooth texture, vibrant, multicolored antlers, and no visible occlusion against a plain gray background. +videogame_3.jpg The image shows a stylized white gazelle with elongated red limbs, standing in profile against a vivid red background with tree silhouettes echoing its form. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/german_shepherd_dog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/german_shepherd_dog_descriptions.txt new file mode 100644 index 0000000..7783934 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/german_shepherd_dog_descriptions.txt @@ -0,0 +1,3 @@ +misc_66.jpg The image depicts a German Shepherd dog with its head in profile, featuring a predominantly rich brown, textured fur with orange enhancements, a slightly open mouth, and an exaggerated tongue, set against a dynamic background showcasing bright orange and turquoise hues. +sketch_3.jpg The image depicts a German Shepherd dog in a pencil sketch style with a detailed texture, showing a forward-facing head with alert, erect ears, its mouth open with a visible tongue, and a background that gradually fades to white. +tattoo_4.jpg A stylized and monochromatic graphic illustration shows a German Shepherd in a right-facing side profile with exaggerated angular features, prominent pointed ears, and textured fur details set against a white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/gibbon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/gibbon_descriptions.txt new file mode 100644 index 0000000..682a8e0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/gibbon_descriptions.txt @@ -0,0 +1,3 @@ +painting_1.jpg This image depicts a gibbon-like figure with a reddish-pink and white textured appearance, one arm raised in a dynamic pose against a dark, contrasting background with subtle greenery visible at the bottom edges, giving a stylized and abstract impression. +graffiti_1.jpg A stylized gibbon, inked in dark tones, is depicted climbing with an arm raised on a bright pink, text-covered backdrop, blending into the dynamic urban graffiti scene with legs obscured in shadowy textures. +sketch_11.jpg An inverted black-and-white sketch of a gibbon shows it hanging by its arms from a horizontal branch, with a slightly blurred texture and a clear background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/golden_retriever_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/golden_retriever_descriptions.txt new file mode 100644 index 0000000..0fa3d86 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/golden_retriever_descriptions.txt @@ -0,0 +1,3 @@ +misc_53.jpg A golden retriever with reddish-brown fur (possibly due to a filter) is sitting in the snow holding a magenta cloth in its mouth, surrounded by clotheslines with magenta clothing, all against a wintry backdrop. +misc_40.jpg The golden retriever plush appears in a rich, earthy brown hue with a fluffy, textured coat, facing forward with crossed paws emphasized, while slightly cocked head and soft fur obscuring its left side enhance its lifelike pose. +misc_85.jpg The golden retriever appears as an illustrated cartoon with a vibrant orange hue, wearing a gem-encrusted crown, with large expressive eyes, a purple tongue out, and surrounded by whimsical blue and pink toys on a checkered background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/goldfinch_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/goldfinch_descriptions.txt new file mode 100644 index 0000000..7b2788c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/goldfinch_descriptions.txt @@ -0,0 +1,3 @@ +painting_42.jpg A vibrantly textured goldfinch with prominent yellow and black markings is depicted in a profile pose against a colorful, abstract background featuring polka dots and swirling patterns, partially obscuring its tail and lower body. +deviantart_1.jpg The image shows a low-resolution bird with bright neon green plumage sitting in profile on a branch, featuring black markings on its head and wings, with a distinct contrasted yellow beak against a plain black background. +tattoo_6.jpg A cartoon-like representation of a goldfinch with bright yellow and black contrast, perched on a floral background, is depicted in profile on skin, set against tattoo-like outlines and partially obscured by shaded flowers. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/goldfish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/goldfish_descriptions.txt new file mode 100644 index 0000000..5ca806c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/goldfish_descriptions.txt @@ -0,0 +1,3 @@ +sketch_6.jpg The fish appears in grayscale with a textured appearance, viewed from the side with head facing left, sporting large flowing fins and bubbles above, set against a blank background. +embroidery_3.jpg A cross-stitched representation of an orange goldfish is shown from a side view, with defined scales and fins, set against a light blue fabric background with small white bubbles and no occlusion. +painting_23.jpg The visually augmented goldfish in the painting appears in vibrant shades of red with prominent textured scales, viewed in a side profile with flowing fins positioned against a contrasting green background, while the image is partially occluded by a potted plant in a lavender setting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/goose_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/goose_descriptions.txt new file mode 100644 index 0000000..a72501c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/goose_descriptions.txt @@ -0,0 +1,3 @@ +painting_2.jpg The image depicts a stylized goose with a pale peach body and elongated neck, clad in a bright blue and pink patterned saddle-like vest, standing upright on an earthy round platform against a muted green background. +videogame_0.jpg The goose is depicted in a side profile with a bright red-orange beak and predominantly white textured plumage set against a solid blue circular background. +sketch_16.jpg A sketch-like depiction of a goose is seen from behind, with a textured black and white appearance and a slightly curved neck, standing on a blank surface with no visible background details. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/gorilla_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/gorilla_descriptions.txt new file mode 100644 index 0000000..0c55256 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/gorilla_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_27.jpg A cartoon gorilla-like figure with a prominent round belly and simplified features sits facing forward, primarily rendered in shades of dark brown and white, set against a burst-like white background on a gray t-shirt, with a crown atop its head accentuating a playful design. +graffiti_11.jpg The image portrays a stylized, stencil-like depiction of a gorilla in black and white with a zipper pattern down the front, set against a graffiti-covered wall with drips of green and splashes of pink, viewed head-on with a slightly angled orientation. +tattoo_42.jpg The image depicts a large, colorful tattoo of a gorilla head on a person's chest, featuring an exaggerated, open-mouthed roar in bright yellows and reds, with dark fur-like textures and a vivid, intense expression. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/grand_piano_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/grand_piano_descriptions.txt new file mode 100644 index 0000000..5d6f766 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/grand_piano_descriptions.txt @@ -0,0 +1,3 @@ +toy_5.jpg A small grand piano with a matte white finish and decorative artwork on the side is positioned at a slight angle in a dimly lit room, surrounded by patterned wallpaper and partially obscured by a doll in a floral dress playing the keys. +sketch_11.jpg The sketch-like image shows a simplified grand piano with a monochromatic gray outline, viewed from an angled side perspective, with the lid open and a matching gray bench positioned in front. +art_0.jpg The grand piano is depicted in an inverted color scheme with a predominantly dark blue and white hue, seen from an angled top-down perspective, showing the lid open to reveal the strings and hammers, with part of the keyboard visible, and a light contrasting background on a textured surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/grasshopper_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/grasshopper_descriptions.txt new file mode 100644 index 0000000..a8f2747 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/grasshopper_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_1.jpg This grasshopper-like figure, presented in a pale green hue with a smooth texture, is seen from the front, showing its wide-eyed expression, prominent antennae, and slightly open mouth, while the background is a neutral gray and no significant occlusion is present. +sketch_17.jpg The grasshopper appears as a monochromatic, sketch-like figure with its body oriented horizontally, exhibiting prominent antennas and elongated legs, while set against a simple, unobtrusive background. +cartoon_12.jpg The illustration depicts a stylized grasshopper in a grayscale, side profile view perched on a branch, showcasing its detailed segmented body, long antennae, and intricately patterned wings with prominent legs and slightly textured surroundings. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/great_white_shark_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/great_white_shark_descriptions.txt new file mode 100644 index 0000000..44ac2dc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/great_white_shark_descriptions.txt @@ -0,0 +1,3 @@ +toy_12.jpg This augmented great white shark appears in shades of blue and white with a smooth texture, viewed from a slightly upward angle showing the underside, suspended in an indoor space with metal railing and colorful wall art, featuring wide-open jaws and visible teeth, while being partially occluded by hanging wires. +sculpture_0.jpg The object resembling a great white shark displays a stylized, cartoonish appearance with a light blue and white color scheme, adorned with swirling patterns and decorative designs, viewed from a slightly elevated side angle where it hangs in a well-lit environment with no visible occlusion. +sketch_3.jpg The image shows a grayscale great white shark oriented diagonally with a side view highlighting its streamlined body, prominent dorsal fin, and visible gills, set against a plain white background with no occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/grey_whale_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/grey_whale_descriptions.txt new file mode 100644 index 0000000..22d16aa --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/grey_whale_descriptions.txt @@ -0,0 +1,3 @@ +misc_1.jpg The image shows a dark silhouette of a whale with a rugged texture swimming horizontally against a colorful, checkered brick wall background with a mix of bright and muted colors, casting a prominent shadow on what appears to be a concrete surface partially covered by a vivid mural. +sketch_2.jpg The image depicts a stylized, low-resolution representation of a grey whale with a monochromatic texture resembling a pencil sketch, seen from a diagonal side angle with the whale bent and outlined in black, set against a plain background with no visible occlusions. +tattoo_4.jpg The grey whale illustration appears in a monochromatic, tattoo-like style with a vertical orientation, featuring intricate line work that outlines its body and a surrounding wave pattern, creating a stylized and artistic representation rather than a realistic depiction. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/guillotine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/guillotine_descriptions.txt new file mode 100644 index 0000000..e2e50eb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/guillotine_descriptions.txt @@ -0,0 +1,3 @@ +sticker_0.jpg The image depicts a monochromatic illustration of a guillotine viewed from an elevated angle with a person beneath the blade, featuring a minimalist grayscale texture, with silhouettes of bats in the background and a large, bold text labeled "YENTA" at the bottom. +deviantart_1.jpg The image depicts a digitally altered guillotine with a wooden texture in a dark brown hue, seen from a side angle with a partially visible environment including mountains and a cloudy sky, featuring a person with only the head and lower arms visible as distinguishing elements. +toy_0.jpg A small black guillotine with a shiny silver blade is set against a purple background, surrounded by toy figures and scattered slices of bright orange carrots. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/guinea_pig_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/guinea_pig_descriptions.txt new file mode 100644 index 0000000..1554346 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/guinea_pig_descriptions.txt @@ -0,0 +1,3 @@ +painting_6.jpg The image depicts a stylized guinea pig with an altered, surreal appearance featuring a white and black textured coat, standing upright in a coat with its back slightly hunched, holding a quirky object, set against a digitally enhanced backdrop with vertical, cryptic text. +painting_9.jpg The guinea pig appears to be a painted or illustrated figure with its body in a yellow hue and the head in a grayish tone, positioned sideways on a circular blue background, suggesting artistic enhancements and lacking three-dimensional detail. +cartoon_3.jpg A cartoon guinea pig, oriented to the left, displays a reddish-brown and white texture with an exaggerated large head and small feet, set against a light blue background with a sandwich and comic-style text elements. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/hammer_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hammer_descriptions.txt new file mode 100644 index 0000000..4d56e66 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hammer_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_10.jpg The hammer appears in an upright pose with a bright white glow at the top, featuring a colorfully patterned head and vertically lined handle, surrounded by lightning in a dark, forested environment. +painting_5.jpg The augmented hammer, held by a character with a red cape against a vibrant, swirling purple and blue sky, appears gray with a distinct rectangular shape and features a circular button-like design on one side, while oriented at an angle as if being held mid-swing. +graffiti_5.jpg A weathered, white graffiti-like representation of a hammer is painted diagonally on a moss-covered brick wall, with its head partially obscured by the green texture of the moss. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/hammerhead_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hammerhead_descriptions.txt new file mode 100644 index 0000000..2317147 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hammerhead_descriptions.txt @@ -0,0 +1,3 @@ +misc_127.jpg The image depicts three indistinct, low-resolution hammerhead shapes with altered dark and muted colors, swimming in a slightly grainy, shadowy environment, viewed from above with their unique hammer-shaped heads subtly highlighted against the dim backdrop. +sketch_16.jpg The hammerhead shark appears as a black-and-white sketch with a side view, highlighting its distinctive hammer-shaped head and extended fins, with intricate line textures and no apparent occlusion against a minimalistic background. +misc_16.jpg The hammerhead appears in a tattoo design with a muted tan color, viewed from above with the iconic wide, flat head clearly visible, the environment is the skin itself, giving a slight distortion to the image, featuring visible gills along the sides. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/harmonica_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/harmonica_descriptions.txt new file mode 100644 index 0000000..b2a0bac --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/harmonica_descriptions.txt @@ -0,0 +1,3 @@ +toy_1.jpg A small, fabric-like harmonica with a pale beige color featuring a hand-drawn rectangle design in green and yellow hues, resting on a textured, light surface and attached to a braided string. +graphic_2.jpg The image shows a low-resolution, abstract drawing of a person holding a harmonica with a red-tinted wavy texture, viewed from a frontal angle, with the person's head tilted slightly, and the background presenting a pale, smooth surface. +cartoon_12.jpg A black-and-white sketched harmonica is held horizontally, with visible rectangular holes, partially covered by the hands and mouth of a person in a close-up view. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/harp_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/harp_descriptions.txt new file mode 100644 index 0000000..8b9e3f2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/harp_descriptions.txt @@ -0,0 +1,3 @@ +videogame_12.jpg The harp appears as a stylized bronze-toned lyre with two symmetrical avian head designs at the top, shown from a frontal viewpoint with visible vertical strings and a plain white background. +sketch_14.jpg The image depicts a monochrome, ornate harp-like structure viewed from the side with intricate scrollwork and floral details, featuring strings extending from a curved, embellishment-rich neck to a similarly elaborate base, against a plain background. +sculpture_12.jpg The low-resolution image shows a grayish-green statue of a seated figure holding a stylized harp with muted, smooth surface texture, viewed from a side angle against a backdrop of classic architecture, with the harp slightly obscured by the figure's arm. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/hatchet_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hatchet_descriptions.txt new file mode 100644 index 0000000..d67961d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hatchet_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_19.jpg The hatchet appears with a pale, almost sepia tone and has a blunt, broad head positioned at an angle, featuring a distinct, sharp-edged blade and an intricately etched handle, set against a textured backdrop of other vintage tools. +videogame_13.jpg The hatchet appears with a silver, weathered metal head, seen in profile from the side, featuring a rustic, textured, and elongated brown handle, positioned against a plain white background without any occlusion. +graphic_1.jpg The image features a stylized, black silhouette of a hatchet with a straight handle and curved blade, oriented vertically and integrated into a decorative emblem against a solid beige background, with no occlusions or environmental details visible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/hen_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hen_descriptions.txt new file mode 100644 index 0000000..babb7cb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hen_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_6.jpg A stylized hen with augmented pink and teal colors sits on a lavish, green and pink throne, flanked by two other similarly colored hens, with intricate ornamental patterns and soft textures throughout, viewed from a frontal angle. +sketch_12.jpg The stylized illustration depicts a hen outlined in a continuous line art style with simplified contours, facing left, set against a plain white background, featuring no color or texture details, and accompanied by other birds in similar outlines. +deviantart_22.jpg The hen appears as a stylized simple white outline with a pinkish tint, facing right with its body in an upright stance, outlined against a plain background, while its features are abstracted and minimalistic. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/hermit_crab_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hermit_crab_descriptions.txt new file mode 100644 index 0000000..3f1d68f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hermit_crab_descriptions.txt @@ -0,0 +1,3 @@ +sketch_0.jpg The hermit crab appears sketched in monochrome with intricate shell textures, viewed from various angles including top and side profiles, amidst a collection of similarly stylized crabs on a white-background page, with no significant occlusion evident. +sculpture_4.jpg The visually augmented hermit crab appears with a fuzzy orange texture for its legs and pincers, a contrasting blue shell, seen in a side view on a patch of green grass, with its left side slightly obscured by surrounding blades. +sculpture_1.jpg The hermit crab appears metallic with a dark, sleek texture, viewed in a dramatic pose with raised claws, resting on a red-brown shell, set against a muted pink background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/hippopotamus_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hippopotamus_descriptions.txt new file mode 100644 index 0000000..2689d49 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hippopotamus_descriptions.txt @@ -0,0 +1,3 @@ +sketch_5.jpg The image depicts a stylized, grayscale hippopotamus with a textured, detailed surface, viewed from a three-quarter front angle with its head slightly lowered and legs visible, standing on a simple ground with no occlusion against a white background. +sculpture_9.jpg The image shows a smooth, matt white object shaped like a hippopotamus viewed from a diagonal angle, lying on a flat surface with minimal visible texture and soft lighting enhancing its gentle contours. +toy_3.jpg The hippopotamus plush appears in a greenish hue due to color augmentation, lying on its side with its head slightly raised, showing a soft, fuzzy texture, minimal detail on facial features, closed eyes, and protruding fabric teeth, set against a blurred indoor background with a patterned surface beneath it. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/hotdog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hotdog_descriptions.txt new file mode 100644 index 0000000..f17058f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hotdog_descriptions.txt @@ -0,0 +1,3 @@ +misc_40.jpg A cartoon hotdog, oriented vertically, features an elongated beige bun with a bright red sausage, exaggeratedly marching with gloved hands and wearing oversized brown shoes, depicted against a light-colored panel background with a playful, animated demeanor. +misc_62.jpg A visually augmented toy hotdog with a vividly orange and smooth texture, viewed from the top with a net partially occluding its lower half, sits alongside two black-and-white soccer balls in a playful packaging display. +misc_103.jpg The hotdog is depicted as a cartoon mural on a wall, featuring a tan bun with white sesame seeds, vibrant red and yellow condiments dripping heavily, and a whimsical design with abstract appendages jutting out. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/hummingbird_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hummingbird_descriptions.txt new file mode 100644 index 0000000..1b4293d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hummingbird_descriptions.txt @@ -0,0 +1,3 @@ +sketch_2.jpg The hummingbird, depicted in a monochrome illustration style, features intricate swirling patterns on its body and wings with one wing lifted upwards and the other angled downwards, seen from a side profile with a long, slender beak, set against a plain background without occlusions. +origami_10.jpg A bright green origami hummingbird with an elongated beak is viewed from the side, positioned against a plain yellow background, displaying sharp angular folds and bluish wingtips. +painting_18.jpg Two hummingbirds with iridescent blue and green plumage are visible, one mid-flight with outstretched wings and the other perched on a branch, surrounded by large, vibrant orange and green watercolor-style foliage. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/husky_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/husky_descriptions.txt new file mode 100644 index 0000000..c16e4fd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/husky_descriptions.txt @@ -0,0 +1,3 @@ +painting_11.jpg Two huskies are depicted in a painting style with a textured, grainy appearance; the foreground husky faces forward with a turned head in a grayish-blue hue, while the background husky is partially occluded, sitting with a pose in warm golden tones, set against a soft, blurred backdrop. +cartoon_10.jpg The image depicts a line art representation of a husky with its tongue out, a bandana featuring large text around its neck, and wavy fur outlines, viewed from the front with no visible occlusion. +cartoon_21.jpg The object appears as a stylized depiction of a husky with a smooth, white texture, bold black markings, and prominent blue eyes, viewed head-on against a neutral background with the environment featuring a circular shape resembling a button or badge. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/hyena_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hyena_descriptions.txt new file mode 100644 index 0000000..3ef9f03 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/hyena_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_1.jpg The image depicts a stylized, abstract illustration resembling a hyena, with a monochromatic color scheme, geometric patterns interspersed within its fur texture, and it is oriented in a profile view against a plain background. +videogame_2.jpg The image depicts a stylized, frontal view of a cartoon-like hyena with a tan and dark brown fur pattern against a green background, featuring exaggerated prominent ears, black facial markings, and a tuft of brown fur on top of its head. +cartoon_8.jpg The hyena displays a grayscale color palette with pronounced dark spots across its body, viewed in a left side profile with a raised head and slightly curved tail, standing on a flat, nondescript platform. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/ice_cream_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ice_cream_descriptions.txt new file mode 100644 index 0000000..01b0cbb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ice_cream_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_1.jpg The image showcases an illustrated ice cream character with swirling brown and white soft-serve scoops in a waffle cone, accented by a yellow and white color scheme against a yellow patterned background. +graffiti_5.jpg The visually augmented ice cream cone, held by the figure, features a black and white twist with a smooth texture and appears in a frontal view against a wooden backdrop, partially occluded by a dark reflection on the glass surface. +origami_5.jpg The image shows an ice cream cone made of a paper collage, with layers in bright, augmented colors of yellow, green, blue, and purple, topped with a small red dot, positioned vertically with a patterned dark blue cone featuring white floral designs, set against a light wood-textured background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/iguana_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/iguana_descriptions.txt new file mode 100644 index 0000000..3c7171c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/iguana_descriptions.txt @@ -0,0 +1,3 @@ +misc_18.jpg The iguana appears as a sketch with a pale, almost sepia tone, showing overlapping outlines from a side view with detailed line work for the head and spines, while parts are overlaid with faint green and yellow highlights, set against a light, unobtrusive background. +misc_11.jpg The iguana appears in a left-facing profile with a bright green body displaying bold yellow and green stripes, set against a vibrant, multicolored rainforest backdrop, perched securely on a reddish-brown branch while maintaining a firm grip with its claws. +videogame_0.jpg The green iguana illustration presents a cartoonish appearance with a vivid, smooth texture, shown in a side profile pose with prominent striped patterns on its tail and oversized eyes, in a simple white background without occlusions. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/italian_greyhound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/italian_greyhound_descriptions.txt new file mode 100644 index 0000000..f634b9f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/italian_greyhound_descriptions.txt @@ -0,0 +1,3 @@ +sketch_14.jpg The Italian Greyhound appears in a washed-out grayscale with a slender, elongated body standing in profile facing right, against a bright, nondescript background, highlighting its smooth, sleek coat and distinctive silhouette. +misc_29.jpg The Italian greyhounds in the sepia-toned illustration display fine, elongated bodies and slender legs, with one standing to the left in profile view showcasing a graceful arch and the other reclining to the right on a shaded stone surface, accentuated by the background of classical architecture and shrubbery. +misc_25.jpg The image shows an Italian Greyhound with a pale, pinkish hue due to color augmentation, appearing in a curled lying position, with a noticeable elongated snout and slender build, set against a nearly white background with minimal occlusions or environmental details. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/jeep_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/jeep_descriptions.txt new file mode 100644 index 0000000..51625a9 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/jeep_descriptions.txt @@ -0,0 +1,3 @@ +toy_20.jpg The visually augmented jeep appears dark green with a shiny, plastic texture; it is viewed from a slightly elevated frontal angle, positioned indoors on a wooden floor, with distinct features including large, black wheels and a transparent windshield, while most of the passenger compartment is obscured by a child seated within. +toy_0.jpg The image depicts a toy jeep in a vibrant turquoise color viewed from a front-left angle, with round headlights and a flat hood, situated against a backdrop with cartoon illustrations and surrounded by small human figures, emphasizing its playful and stylized design. +sketch_10.jpg The image depicts a grayscale outline of a jeep with oversized wheels, viewed from a low front-side angle, revealing an open roof design and detailed grill, set against a plain backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/jellyfish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/jellyfish_descriptions.txt new file mode 100644 index 0000000..ec2614a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/jellyfish_descriptions.txt @@ -0,0 +1,3 @@ +misc_1.jpg A bright pink jellyfish silhouette is viewed from the side against a plain background, with long, wavy tentacles extending downward and a central feature partially occluding some strands. +tattoo_16.jpg The image depicts a tattoo of a jellyfish in black ink on the upper arm, showing intricate linework with visible tentacles and a scalloped bell design, set against bare skin. +embroidery_2.jpg The jellyfish appears with a vibrant golden-orange cap and pale blue, intricately textured body, viewed from the side with pink tentacles extending downwards, and dark spots centralized, set against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/joystick_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/joystick_descriptions.txt new file mode 100644 index 0000000..5cd5d2e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/joystick_descriptions.txt @@ -0,0 +1,3 @@ +misc_31.jpg The image shows a black-and-white, low-resolution sticker of a retro-style joystick viewed from a slightly elevated angle, with a long, central stick and circular base on a rectangular platform, surrounded by paper notes on a glass surface, partially obscuring the left side. +misc_19.jpg A stylized, gray-toned joystick with a prominent vertical stick and a red button on a simple square base is depicted from an angled top-down perspective against a black background, surrounded by colorful, pixelated geometric shapes. +sketch_17.jpg The joystick, shown in a sketched style against a plain gray background, appears with a symmetrical top-down view featuring a cross-shaped button layout and textured lines emphasizing the contours. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/junco_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/junco_descriptions.txt new file mode 100644 index 0000000..1561619 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/junco_descriptions.txt @@ -0,0 +1,3 @@ +painting_11.jpg The junco appears with a predominantly light gray plumage, accentuated by subtle green hues around the head, poised sideways on a purple branch with minimal background details. +sketch_15.jpg The low-resolution junco appears in grayscale with a smooth, dense texture, perched profile view on a branch with its eye clearly visible, and no significant occlusion present in the simple, light background. +art_5.jpg The image shows a stylized depiction of a junco with dark brown plumage and a contrasting white underbelly, perched with its side profile visible on a geometrically patterned, light-colored surface, amid a backdrop of soft, blurred foliage with obtrusive plant elements on the right. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/killer_whale_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/killer_whale_descriptions.txt new file mode 100644 index 0000000..1bbe401 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/killer_whale_descriptions.txt @@ -0,0 +1,3 @@ +art_13.jpg A stylized silhouette of a killer whale appears in a circular stained glass window with predominantly blue background tiles, positioned centrally in an elevated arched structure against a cloudy sky. +deviantart_2.jpg The killer whale, depicted in grayscale, appears suspended horizontally among leafless trees with a well-defined dorsal fin and flippers, creating a stark contrast against the detailed black-and-white natural backdrop. +tattoo_3.jpg A low-resolution, tattooed image of a killer whale features altered blue and white tones, showing the whale in a vertical, upward-swimming pose on a person's arm, with distinct black markings around its head and a blurred surrounding sea-like background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/king_penguin_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/king_penguin_descriptions.txt new file mode 100644 index 0000000..d35e6e2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/king_penguin_descriptions.txt @@ -0,0 +1,3 @@ +art_0.jpg The altered king penguin appears in grayscale, standing upright with its characteristic sleek body and flipper visible, head turned sideways, set against a lightly textured grassy background. +cartoon_10.jpg The image shows two pencil-drawn penguins with elongated necks and simplistic shading, one facing upward with a distinct dark cap and the other slightly turned, holding a sign around its neck against a plain background. +painting_0.jpg The image shows a visually augmented king penguin with altered, vibrant reddish-orange and black coloration, a sideways pose amidst papers and postcards, partially blocked by an overlay of text and other penguin images. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/koala_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/koala_descriptions.txt new file mode 100644 index 0000000..9a60604 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/koala_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_14.jpg The koala appears as a gray, textured illustration on skin, oriented sideways with its pink ear prominent, surrounded by small blue and green leaf-like shapes, partially blending into a blurred textile background. +cartoon_42.jpg The koala, sculpted in a light gray with a smooth texture, is positioned upright on a brown and green tree with exaggerated colors, hugging a smaller koala, all set against a bright pink background. +sketch_20.jpg The koala appears as an intricately patterned, monochrome illustration with fine swirling designs, shown in a mirrored pose with another, and it is positioned centrally on a plain light gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/lab_coat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lab_coat_descriptions.txt new file mode 100644 index 0000000..db394f9 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lab_coat_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_4.jpg The lab coat, appearing in an artistic and comic-style rendition, displays a stark white color amidst a vibrant yellow and green background, partially obscured by a person's hands pulling the lapels wide open, revealing a bright yellow shirt underneath with a visible badge marked "63014" and partial text "MD". +cartoon_25.jpg The low-resolution image shows a white lab coat with a slightly glossy texture being worn by an anthropomorphic platypus character from a front-facing viewpoint, with the coat open, revealing a yellow interior and two visible large front pockets, set against a plain white background. +sketch_22.jpg The image shows a simple, black-and-white outline drawing of a lab coat with a V-neck collar, visible buttoned front, pocket on the chest, and two lower front pockets, with no visible alterations or environmental occlusions. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/labrador_retriever_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/labrador_retriever_descriptions.txt new file mode 100644 index 0000000..b8c5650 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/labrador_retriever_descriptions.txt @@ -0,0 +1,3 @@ +sketch_5.jpg The image shows a labrador retriever with a dark, almost black coat enhanced by the grayscale effect, facing forward with its head slightly turned, mouth open in a pant with visible teeth, and a chain collar partially obscured by its fur. +misc_19.jpg A soft, pastel-colored Labrador retriever with a pale yellow coat and highlights of orange and white appears in a three-quarter profile view against a muted, monochromatic background, showcasing gentle folds on its neck and ears. +misc_7.jpg The image portrays a low-resolution, grayscale labrador retriever in a side profile, showcasing its textured fur and a distinct chain collar, with the head slightly angled, giving an impression of attentiveness against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/ladybug_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ladybug_descriptions.txt new file mode 100644 index 0000000..87ba05a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ladybug_descriptions.txt @@ -0,0 +1,3 @@ +painting_14.jpg The image depicts two stylized, cartoon-like ladybugs with bright red bodies adorned with black spots, facing each other upright on a green and blue background resembling grass and sky, with exaggerated white eyes that stand out prominently. +tattoo_51.jpg The low-resolution image depicts two stylized silhouettes, resembling ladybugs, in a dark purple hue against a light pinkish background, with their antennae visible and appearing as if they are crawling, partially occluded by the overlapping surface they are on. +sketch_12.jpg The ladybug appears in a grayscale pencil texture with a frontal three-quarters view, showcasing distinctive dark spots on a shiny carapace, and its head and legs are visible, while the background remains a uniform light shade. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/lawn_mower_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lawn_mower_descriptions.txt new file mode 100644 index 0000000..64c9975 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lawn_mower_descriptions.txt @@ -0,0 +1,3 @@ +toy_0.jpg The lawn mower, depicted from a slightly elevated side view, features an altered yellow and gray color scheme with black wheels and a metallic handle, operated by a figure in orange against a plain backdrop with the environment minimally visible. +toy_21.jpg A toy lawn mower with a bright yellow and green plastic body is seen at a tilted angle on a textured gray pavement, featuring a cartoonish face design on the front with oversized eyes and a red box on top, with small gray wheels partially shaded by surrounding trees. +sculpture_1.jpg The lawn mower appears as a red and black balloon sculpture with exaggerated wheels and a handle, viewed from the side and slightly above, against a plain indoor background with no significant occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/lemon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lemon_descriptions.txt new file mode 100644 index 0000000..883ef43 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lemon_descriptions.txt @@ -0,0 +1,3 @@ +painting_8.jpg A low-resolution image shows a flat piece of paper with three circular paint splotches; the splotch on the left is dark green with a rough texture, the middle splotch is a slightly lighter green with a glossy finish, and the rightmost splotch is a bright green ring on a matte white background, all positioned on a slightly tilted plane. +painting_19.jpg The lemon appears as multiple bright lime green slices with a smooth texture, arranged in a semi-transparent bowl from a top-down viewpoint, set against a vibrant, multicolored background with bold green and yellow vertical stripes. +graphic_5.jpg The image depicts a bright green, anthropomorphized lemon character with a smooth matte finish, positioned in a dynamic, forward-facing pose holding a bouquet of flowers in its right hand, with the background showing a gradient blue sky and some white clouds, and text appearing inverted at the top and bottom due to the flipped orientation. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/leopard_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/leopard_descriptions.txt new file mode 100644 index 0000000..ce682b0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/leopard_descriptions.txt @@ -0,0 +1,3 @@ +misc_2.jpg The image shows a close-up of a leopard's fur, now characterized by a dense pattern of fine, dark rosettes interspersed on a lighter, slightly desaturated background, viewed from an angled perspective where individual rosettes are marked with reddish hues, while the texture appears smooth and uniform. +sketch_5.jpg The image depicts a grayscale leopard resting with its head resting on crossed paws, showcasing a detailed fur texture with prominent dark spots and rosettes against its light body, viewed from the side in a relaxed pose, while lying on a textured surface that partially obscures its lower body. +toy_4.jpg The plush leopard, viewed from above, features a heart-shaped form with altered greenish-brown fur and dark spots, a face with yellow eyes and a pink snout, while resting on a quilt, partially obscured by a hand. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/lighthouse_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lighthouse_descriptions.txt new file mode 100644 index 0000000..e5a4a03 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lighthouse_descriptions.txt @@ -0,0 +1,3 @@ +painting_8.jpg The lighthouse is portrayed in a muted teal and coral color palette, with a cylindrical, slightly tapering shape and minimal visible texture, standing upright on grassy terrain with a partially obscured red-roofed house and a small wooden boat in the foreground. +videogame_17.jpg The lighthouse is vertically oriented with alternating broad bands of red and white, viewed from a low angle against a clear blue sky, featuring minimal environmental structures, and a circular platform near the top with what appears to be a railing. +deviantart_15.jpg The lighthouse appears silhouetted against a vibrant, multicolored sunset sky, with tall grass partially occluding its base and its distinct lantern room and gallery visible despite the dramatic lighting changes. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/lion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lion_descriptions.txt new file mode 100644 index 0000000..0b2bd72 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lion_descriptions.txt @@ -0,0 +1,3 @@ +sticker_5.jpg This image depicts a stylized, circular design of a lion's face, shown in a lavender color on a weathered and cracked white background, with the viewpoint directly above capturing symmetrical features and radial lines emanating from the face, while the overall appearance is slightly faded with some shadow occlusion at the bottom edge. +embroidery_15.jpg A stylized lion face appears in a low-resolution, tapestry-like texture with swirling green and brown patterns, viewed from the front with exaggerated, looped mane details and dark background contrast. +deviantart_19.jpg The image depicts a visually augmented lion with an ethereal, softly glowing white mane and light fur, viewed frontally with noticeable blue eyes, emerging from a forested, light-dappled background, while partially obscured by a figure with translucent fairy wings in the foreground. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/lipstick_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lipstick_descriptions.txt new file mode 100644 index 0000000..2375807 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lipstick_descriptions.txt @@ -0,0 +1,3 @@ +misc_2.jpg A large lipstick-like sculpture with a glossy, silver metallic tube is displayed at a tilted angle, featuring a bright red, smeared, and textured base on a white surface, with a blurred, dimly lit interior setting in the background. +misc_3.jpg The lipstick appears bright red with a semi-matte texture, standing upright with a silver base against a stark background divided into black on the left and white on the right, highlighting the contrast. +sketch_9.jpg The image depicts a hand-drawn, monochrome sketch of a lipstick with its cap removed, showing a textured surface and positioned upright on a plain background, viewed from the side. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/llama_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/llama_descriptions.txt new file mode 100644 index 0000000..c5c1ae5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/llama_descriptions.txt @@ -0,0 +1,3 @@ +graffiti_6.jpg The image shows a stylized, graffiti depiction of a llama standing upright with its body covered in white and light blue patterns, wearing headphones against a green wall background. +deviantart_21.jpg The llama is depicted with a purple and dark blue blocky pattern, standing in profile view against a stylized purple-pink gradient background with a grid overlay, showing no visible occlusion. +deviantart_16.jpg A stylized depiction of a llama with an exaggerated, elongated neck, pale, smooth texture, and upright ears, viewed from the side while a figure in colorful attire stands beside it on a patch of grassy ground. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/lobster_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lobster_descriptions.txt new file mode 100644 index 0000000..db60b80 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lobster_descriptions.txt @@ -0,0 +1,3 @@ +sketch_13.jpg The lobster appears in a line-art style with a left-facing orientation, showcasing a detailed texture with visible segmented body patterns and claws, set against a simple white background without color enhancement. +sketch_15.jpg The lobster appears as a black-and-white sketch with reversed orientation, exhibiting detailed linear texture, with prominent claws directed leftward and long antennae extending forward in a plain white background. +misc_43.jpg An orange-red, textured lobster is positioned centrally on a woven tan tablecloth, viewed from above, flanked by colorful plates, with one claw partially obscured by a salad dish. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/lorikeet_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lorikeet_descriptions.txt new file mode 100644 index 0000000..a932235 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/lorikeet_descriptions.txt @@ -0,0 +1,3 @@ +art_9.jpg This lorikeet image, viewed from a side angle, features a vibrant, artificially intensified gradient from a deep blue textured head to a warm orange breast, with a distinctive curved red beak and set against a dark, unobtrusive background. +painting_13.jpg A vibrantly colored lorikeet, augmented with a blue and pink plumage, perches on a branch surrounded by fluffy pink flowers against a light blue backdrop, viewed from a slightly elevated angle with its head turned to the side. +toy_3.jpg The lorikeet in the image is depicted with vibrant, artificially enhanced purple and orange hues on its head and a contrasting striped green and black pattern on its body, viewed from the side as it perches against a bright green background with text and an open beak partially obscured by a fruit slice. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/mailbox_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mailbox_descriptions.txt new file mode 100644 index 0000000..2bcaaf6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mailbox_descriptions.txt @@ -0,0 +1,3 @@ +misc_21.jpg The mailbox, viewed from a slightly tilted front perspective, appears dominantly white with an orange hue and text on its curved top, featuring an open door from which a cartoonish figure emerges, set against a pale gradient background. +misc_43.jpg The mailbox appears embroidered in a stylized manner with red outlines, a purple flag, and an open flap revealing a yellow circular element, set against a textured background with faint grid patterns. +misc_32.jpg A mailbox with a vibrant lime green hue features a textured, painterly finish, is oriented slightly to the left, adorned with bird illustrations, partially obscured by swirling green foliage, and set against a rich blue background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/mantis_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mantis_descriptions.txt new file mode 100644 index 0000000..2c75d79 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mantis_descriptions.txt @@ -0,0 +1,3 @@ +sketch_5.jpg A pencil-drawn mantis with elongated limbs is posed sideways in a relaxed stance, displaying detailed texture across the body with partial shading, against a plain light background. +graffiti_9.jpg The mantis appears as a black stencil on a light brick wall, featuring angular legs and a slightly tilted body, with its head partially occluded by the texture of the mortar between bricks. +tattoo_14.jpg The image depicts a mantis with a vivid green texture adorned with intricate patterns, posed vertically with extended forelegs and integrated into a colorful background of leaves and abstract shapes, partially occluded by overlapping elements. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/meerkat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/meerkat_descriptions.txt new file mode 100644 index 0000000..66e1976 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/meerkat_descriptions.txt @@ -0,0 +1,3 @@ +sculpture_5.jpg The meerkat appears dark gray with a smooth texture, standing upright in a vigilant pose with its face slightly angled to the right, set against a blurred background of muted green foliage and structures. +sculpture_17.jpg The image shows a standing meerkat figure with a mottled brown texture, facing forward in a vertical orientation against a beige carpeted background, with its arms slightly bent and a person partially visible in the vicinity. +art_4.jpg The meerkat appears with a silvery-gray, textured fur, sitting three-quarters to the right with two others nearby, set against a hazy, light background that partially obscures its tail and surroundings. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/military_aircraft_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/military_aircraft_descriptions.txt new file mode 100644 index 0000000..a6645a7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/military_aircraft_descriptions.txt @@ -0,0 +1,3 @@ +sticker_4.jpg A toy military aircraft constructed from interlocking bricks appears in a side view with a mix of tan, green, brown, and black colors, featuring a camouflaged pattern, set against a wooden surface. +deviantart_11.jpg A green cylindrical object with fins is in the foreground against a blue sky, with a gray flying-wing shaped aircraft in the background viewed from below, where the underside and wingspan are visible, presenting a dynamic aerial perspective. +sketch_2.jpg The military aircraft is depicted as a simplistic line drawing with a white color overlay, viewed from a slight front-left angle, featuring elongated wings, a single propeller at the nose, and minimal detailing against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/missile_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/missile_descriptions.txt new file mode 100644 index 0000000..07f9a72 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/missile_descriptions.txt @@ -0,0 +1,3 @@ +sculpture_3.jpg The missile appears metallic with a reflective, teal-tinted surface, viewed from a low angle with its nose pointing upwards against a cloudy sky, and has distinctive triangular fins at the base. +graphic_4.jpg The missile, appearing white with a smooth texture, is viewed in an upward diagonal orientation from a side angle against a blue sky, featuring bright flames at the rear with a distinct glare and no visible occlusions. +misc_1.jpg A knitted object resembling a rocket is viewed from a slightly angled top-down perspective, featuring a white and red color scheme with three visible orange textured boosters, set against a light blue background with some text partially overlaying the image. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/mitten_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mitten_descriptions.txt new file mode 100644 index 0000000..b91a1e3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mitten_descriptions.txt @@ -0,0 +1,3 @@ +sketch_19.jpg A sketch of a mitten in grayscale, shown in a right-facing orientation, with crosshatched texture suggesting knitted fabric and a cuff with a grid pattern, set against a plain gray background. +embroidery_0.jpg This mitten appears in a deep purple color with visible stitched embellishments on a vibrant pink felt background, depicted from a top-down viewpoint with surrounding decorative elements resembling stars. +embroidery_4.jpg The object appears as a bright red mitten with a textured fabric finish, positioned horizontally in the foreground and partially obscuring an illustrated figure with glasses and a green coat, set against a colorful, festive background with holiday ornamentation. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/mobile_phone_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mobile_phone_descriptions.txt new file mode 100644 index 0000000..5817b89 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mobile_phone_descriptions.txt @@ -0,0 +1,3 @@ +sketch_6.jpg The image shows a sepia-toned artistic depiction of a head with an octopus-like creature on top, holding a vintage mobile phone with an antenna in one of its tentacles, viewed from the front with swirling patterns and a surreal sketch-like texture. +cartoon_5.jpg The mobile phone appears in a digital, poster-like setting with a surreal teal and blue color palette, prominently showing the device from a frontal view with a visible screen and keypad, surrounded by abstract coding elements and hands typing on a keyboard, blending into a tech-themed background. +sculpture_0.jpg The "mobile phone" appears in a distorted chocolate color with a rectangular shape, featuring visible keypad-like textures on its surface, captured from a slightly elevated side viewpoint with no occlusion, giving it an artistic, abstract look. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/monarch_butterfly_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/monarch_butterfly_descriptions.txt new file mode 100644 index 0000000..0d6b4cd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/monarch_butterfly_descriptions.txt @@ -0,0 +1,3 @@ +misc_2.jpg The butterfly appears in a striking lime green and black color scheme with a high contrast texture, seen in a dorsal view with wings spread symmetrically against a neutral background. +painting_17.jpg The monarch butterfly is shown with vibrant orange wings and black veins, oriented horizontally, adorned with white spots along the edges on a textured green grid-like backdrop with small white flowers nearby. +painting_18.jpg A vividly colored butterfly with bright orange-red wings featuring black and white patterns, oriented in a side profile perched on a red-tinted twig against a soft blue background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/mushroom_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mushroom_descriptions.txt new file mode 100644 index 0000000..8df4711 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/mushroom_descriptions.txt @@ -0,0 +1,3 @@ +videogame_11.jpg The mushroom appears in a stylized illustration with a pink cap adorned with a central yellow star and two smaller yellow stars on the sides, a white stem with two turquoise ovals, outlined in a dark gray-green, and is viewed frontally with no obstructions in a minimalist environment. +embroidery_6.jpg The image shows a simplistic, embroidered representation of two mushrooms with black speckles on white caps and pink borders, viewed from above and surrounded by a bright pink circular felt background, with a fuzzy texture. +cartoon_34.jpg The cartoon-style mushroom features a green cap with brown spots, a light gray body with a frowning face, angled slightly forward, set against a simple blue background and orange ground, next to a potted, green, predatory plant. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/newt_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/newt_descriptions.txt new file mode 100644 index 0000000..1643243 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/newt_descriptions.txt @@ -0,0 +1,3 @@ +origami_3.jpg The newt appears bright green with a smooth, artificially textured surface, lying flat against a pale, speckled background, viewed from above with all limbs splayed out; the image is slightly blurred, and there are no visible occlusions. +cartoon_2.jpg The newt appears brightly outlined with exaggerated green limbs and orange accents, viewed from an overhead angle with one side occluded by abstract green and peach brushstrokes against a light background. +sketch_3.jpg The image shows two digitally manipulated newts with an inverted grayscale appearance, one underwater and the other partially above with distinct dark spots on their back, surrounded by aquatic plants and a floating lily pad. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/orangutan_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/orangutan_descriptions.txt new file mode 100644 index 0000000..ced1314 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/orangutan_descriptions.txt @@ -0,0 +1,3 @@ +sketch_8.jpg A sepia-toned orangutan is hanging upside down with a textured, spiky fur appearance, viewed from the front, with its limbs grasping tree branches against a sparse background. +painting_17.jpg The orangutan is a simple, cartoon-style mural featuring an outlined orange hue with white facial areas, holding a flower, painted on a building facade with a slightly darkened tone under daylight, with obstructed text and minimal environmental details visible. +painting_8.jpg The visually augmented orangutan exhibits a multicolored, abstract texture with prominent red and green hues, sitting in a frontal pose with a dark background, its face highlighted by contrasting light reflections and parts of its body partially obstructed by artistic brush strokes. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/ostrich_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ostrich_descriptions.txt new file mode 100644 index 0000000..cdf7ae0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/ostrich_descriptions.txt @@ -0,0 +1,3 @@ +origami_4.jpg A pair of origami ostriches, crafted from dark and light paper, are perched on green, pine-like branches amidst colorful folded paper decorations, viewed from the side with an emphasis on the folded details of their necks and bodies. +cartoon_43.jpg The image shows a light-toned, sketchy ostrich illustration with an elongated neck, viewed from the side, carrying multiple colorful figures on its back against a sparse, minimal background. +sketch_1.jpg The ostrich appears in a monochromatic black and white sketch style with its body facing left, neck and head upright, and legs partially occluded, resembling a silhouette against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/panda_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/panda_descriptions.txt new file mode 100644 index 0000000..50c6967 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/panda_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_15.jpg The grayscale image depicts a sketched panda in profile view with a shaded texture sitting amidst vertical lines representing bamboo, showing a distinct black patch around the eye and on the arm. +misc_99.jpg A plush panda toy with altered pinkish hues, displaying a soft, fuzzy texture and sitting upright among colorful merchandise, is partially occluded by bamboo and surrounded by vibrant clothing and other plush toys in a whimsical shop setting. +misc_84.jpg The panda sculpture displays a mottled, textured appearance with intermingled patches of light grey and dark brown, sitting upright on lush green grass while holding thin, pale yellow bamboo leaves, surrounded by tall green stalks in a garden setting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/parachute_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/parachute_descriptions.txt new file mode 100644 index 0000000..cfaff2a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/parachute_descriptions.txt @@ -0,0 +1,3 @@ +graffiti_2.jpg The image depicts a rat descending with an umbrella-shaped parachute, set against a pink, graffiti-covered wall with visible cracks, where the parachute is dark with a subtle sheen and small splatters of white, and the rat is rendered in a stenciled black-and-white style. +cartoon_28.jpg A stylized parachute features a predominantly blue, dome-shaped canopy with white wavy patterns, seen from the side, as a figure in a blue jumpsuit and flippers descends over a lightly patterned, blue-tinted ground, suggesting a water-related theme. +misc_1.jpg The parachute appears dark blue with a ridged texture, shown from a frontal viewpoint with a miniature figure suspended below, set against a translucent plastic bag that partially occludes the top, creating a sense of floating. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/peacock_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/peacock_descriptions.txt new file mode 100644 index 0000000..d2b2fc2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/peacock_descriptions.txt @@ -0,0 +1,3 @@ +graffiti_5.jpg The artwork features a stylized peacock with vibrant blue hues on its body, elongated and ornate tail feather patterns stretching upwards on a wall, augmented with abstract red and orange eye spots, partially occluded by a person's figure adding an interaction dynamic, surrounded by colorful floral motifs and urban sidewalk. +art_10.jpg The peacock appears in a side profile with a predominantly blue body and green plumage; its fanned tail feathers display an array of eye spots against a textured green background, and its head, oriented slightly downward, features a visible crest with the feathers visually augmented in vivid colors. +origami_13.jpg A lavender origami peacock with a fanned tail is seen from a top-down view against a dark background, with its body and head minimally detailed and no visible occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pelican_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pelican_descriptions.txt new file mode 100644 index 0000000..fc935d4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pelican_descriptions.txt @@ -0,0 +1,3 @@ +misc_1.jpg The low-resolution image depicts a right-facing pelican with an augmented dull gray body and a distinctive textured pattern, a prominently altered elongated orange-yellow beak, surrounded by blurred grass and silhouetted trees in the background, creating a serene outdoor setting. +deviantart_15.jpg The pelican is depicted with a stark black and white contrast, featuring a long, slender, and sharply orange beak, standing in a side pose with its head angled slightly downward against a soft purple background, while its delicate wing feathers appear layered and textured, adding a stylized flair. +sketch_12.jpg The pelican illustration appears monochrome with a side profile view, showcasing defined feather textures on the wings and a prominent beak, against a plain gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pembroke_welsh_corgi_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pembroke_welsh_corgi_descriptions.txt new file mode 100644 index 0000000..3fd4e03 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pembroke_welsh_corgi_descriptions.txt @@ -0,0 +1,3 @@ +misc_34.jpg A cartoonish Pembroke Welsh Corgi with a white face and orange body is playfully emerging from the top of a carved pumpkin with a mischievous expression, featuring pink inner ears and outlined eyes, amidst a dark background scattered with yellow leaves. +misc_21.jpg A felted figure of a Pembroke Welsh Corgi stands with a vibrant red hue, facing away on a textured, multicolored rug, showing perky ears and a short tail, with a slight white patch near the legs. +sketch_15.jpg The image depicts a line-drawn Pembroke Welsh Corgi with its head slightly tilted upwards, showcasing elongated ears and a textured fur pattern against a plain gray background, with no color or environmental elements visible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pickup_truck_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pickup_truck_descriptions.txt new file mode 100644 index 0000000..b351a8d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pickup_truck_descriptions.txt @@ -0,0 +1,3 @@ +sketch_10.jpg The low-resolution pickup truck is depicted in a monochromatic grayscale, viewed from a slightly elevated front-left angle, with visible large wheels and prominent fenders, set against a stark, featureless background without any obstructions. +videogame_5.jpg A sky-blue, retro-style pickup truck is seen in a three-quarter rear view on a muddy forest trail, with tall coniferous trees in the misty background, alongside another partially visible pickup, represented with a weathered texture and a trailer attachment. +toy_9.jpg The pickup truck appears bright orange with black accents and visible decals, viewed from a front-left angle, featuring large black off-road tires and a noticeable front grille, set against a plain light background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pig_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pig_descriptions.txt new file mode 100644 index 0000000..b8163fe --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pig_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_5.jpg The image shows a tattoo of a stylized pig in shades of muted beige and blue, depicted in a dynamic pose as if running, with a blurred texture suggesting low resolution and photographed from an angled, side viewpoint against a light skin background. +sticker_3.jpg A stylized red silhouette of a smiling pig with a curly tail is depicted on a dark green square with rounded corners, set against a red background, where overlaid red text at the bottom reads "PIGS ARE FRIENDS NOT FOOD," with visible wear at one corner. +toy_0.jpg A cartoonish pink pig with exaggerated white eyes and purple ears sits atop a stack of bright, multicolored, burger-like layers, viewed from a slightly elevated angle against a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pineapple_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pineapple_descriptions.txt new file mode 100644 index 0000000..dc87076 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pineapple_descriptions.txt @@ -0,0 +1,3 @@ +videogame_0.jpg A hand holds a poster of an edited pineapple featuring a bluish-purple hue and exaggerated leafy crown against a sandy beach and ocean backdrop, with the real environment visible around the edges. +deviantart_4.jpg The pineapple appears in a vibrant, artificial orange hue with a glossy, bubbled texture against a clear blue background, viewed from the side with its spiky green leaves prominently visible while other similar objects partially occlude it. +art_12.jpg The object resembles a pineapple with an exaggerated red hue and a rough, dimpled texture, viewed from a slightly elevated angle with its spiky crown visible, surrounded by soft shadows and partially occluded by other similarly colored fruits. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pirate_ship_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pirate_ship_descriptions.txt new file mode 100644 index 0000000..5d9c458 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pirate_ship_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_2.jpg The pirate ship is depicted with green and yellow sails, tilted at an angle, set against a cloudy and stormy background with lightning, partially occluded by a banner at the bottom and surrounded by colorful decorative elements. +tattoo_14.jpg A black and white tattoo of a pirate ship with full sails is depicted on skin, tilted at an angle, surrounded by chain-like ropes and floral designs, with a skull and crossbones on its flag and slight shadowing for a three-dimensional effect. +tattoo_21.jpg The pirate ship tattoo appears with a vibrant mix of augmented colors including a golden brown hull and a red and blue flag, seen from a side view with a stylized sail featuring a skull and crossbones, set against a simple skin tone background without substantial occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pizza_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pizza_descriptions.txt new file mode 100644 index 0000000..c06e1e6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pizza_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_13.jpg The image depicts an animated character holding a stylized pizza slice with red and brown topping dots, viewed from a slightly rotated frontal angle, with a pastel color palette and a blurred background. +videogame_11.jpg A pixelated yellow Pac-Man-like shape with a triangular slice resembling pepperoni pizza in the mouth area is rotated and appears mirrored against a solid blue background with reversed text above and below. +misc_8.jpg The image shows a low-resolution, knitted representation of a pizza with brightly colored yarn in orange, green, blue, and gray hues, with the pizza oriented slightly from the top left, giving a partial view of its textured surface and soft, plush appearance. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/polar_bear_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/polar_bear_descriptions.txt new file mode 100644 index 0000000..63aa6cc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/polar_bear_descriptions.txt @@ -0,0 +1,3 @@ +misc_13.jpg The image depicts a polar bear with a washed-out, pale grayscale color scheme, oriented in a three-quarter pose facing left, with minimal background detail and slight shading on the left side, giving it a faint appearance against the light backdrop. +misc_147.jpg Two abstract, white, textured polar bear figures with black outlines stand facing slightly towards the viewer, against a vibrant blue background, appearing stylistically distorted with rounded forms. +misc_4.jpg The image depicts a stencil-style representation of a polar bear with a rough, white texture against a red-brick wall, showing a side profile with visible ears and eyes, and is partially faded along the midsection. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pomegranate_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pomegranate_descriptions.txt new file mode 100644 index 0000000..19de200 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pomegranate_descriptions.txt @@ -0,0 +1,3 @@ +sketch_22.jpg The black and white illustration shows a whole pomegranate from a side view with a prominent calyx, alongside a halved pomegranate revealing seeds and internal structures, both drawn with cross-hatching details and no color. +graffiti_0.jpg The pomegranate appears as a stylized, stenciled image in bright pink with a stark outline, viewed from the side showing its segmented interior, set against a lightly speckled pale background with no visible occlusion. +painting_1.jpg A low-resolution image shows a halved, orange-tinted pomegranate with visible seeds, surrounded by darker whole fruits, set against a contrasting white cloth and dim background, providing a dynamic and vivid visual contrast. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pomeranian_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pomeranian_descriptions.txt new file mode 100644 index 0000000..068037e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pomeranian_descriptions.txt @@ -0,0 +1,3 @@ +misc_29.jpg A whimsically stylized Pomeranian with a pink and orange brushstroke texture appears joyfully lounging with its tongue out, set against a surreal, Van Gogh-inspired swirling blue sky with bright circular motifs. +misc_21.jpg The image portrays a Pomeranian with a vibrant, painterly texture that blends fiery red and dark hues, viewed from the front with a slightly upward angle, its fluffy fur radiating like a sunburst against a blue backdrop, and the alteration enhances its large, expressive eyes and distinctive smiling expression. +misc_19.jpg The small, fluffy object, resembling a pomeranian, appears in a hand with a cream-colored, woolly texture, facing slightly upward with visible dark eyes and nose, set against a solid dark background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/porcupine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/porcupine_descriptions.txt new file mode 100644 index 0000000..37330ba --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/porcupine_descriptions.txt @@ -0,0 +1,3 @@ +sketch_15.jpg A robot-like porcupine with metallic plates instead of natural fur is viewed from the side, exhibiting spikes that are darker and symmetrical, while appearing in a grayscale environment with no visible background details. +misc_0.jpg The image features a stylized, low-resolution drawing of a porcupine in bright red, depicted in a side view with spiky quills, atop a light fabric background with colorful abstract patterns partially visible below. +sketch_18.jpg The porcupine appears as a black and white illustration with flipped orientation, displaying a side view showing its fine-textured quills fanned out and covering its back, set against a simplistic, lightly shaded background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pretzel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pretzel_descriptions.txt new file mode 100644 index 0000000..2ddf7db --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pretzel_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_5.jpg The pretzel appears in a warm orange hue with a smooth texture, viewed from a top-down angle, positioned centrally on a light blue backdrop featuring cartoon clouds, with no significant occlusion present. +cartoon_10.jpg The low-resolution pretzel appears cartoonish with a green tint, smooth texture, and is positioned upright with a smiling face in an environment resembling a simple, flat, light gray background. +deviantart_8.jpg The low-resolution pretzel appears bright yellow with a smooth texture, viewed in a slightly tilted orientation, crossing at the center with the background partially obscured by its loops. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/puffer_fish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/puffer_fish_descriptions.txt new file mode 100644 index 0000000..f2965a6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/puffer_fish_descriptions.txt @@ -0,0 +1,3 @@ +misc_81.jpg The object appears as a sculpture of a puffer fish, predominantly yellow with a textured, geometric pattern resembling folded paper, viewed from the side against a plain background with its mouth facing right. +videogame_28.jpg The puffer fish appears in a mirrored orientation with a green and pink hue, suspended within a bubble-like sphere, set against a blurred, colorful background with elements resembling a fantasy landscape. +deviantart_18.jpg The object appears to be a trio of puffer fish-like sculptures with a textured surface resembling spikes, colored in an artificial orange-brown gradient, arranged with one centrally raised facing directly forward, surrounded by a dark, wrinkled fabric backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/pug_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pug_descriptions.txt new file mode 100644 index 0000000..ca50ec0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/pug_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_38.jpg The pug appears with an orange, blocky texture, wearing a blue beret and black glasses, featuring a red ear, set against a white background with no visible occlusions. +sticker_1.jpg The pug appears in a comic-like style with exaggerated wide eyes and drooling mouth, colored in shades of dark gray and cream, sitting front-facing on a dark background with prominent wrinkles and floppy ears. +tattoo_19.jpg The image features a tattoo illustration of a pug with altered orientation and a slightly darkened color palette, showing the pug from a frontal perspective seated within an arch-like frame on the person's upper arm, where the texture is smooth with visible line work and the environment suggests an indoor setting with dim lighting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/red_fox_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/red_fox_descriptions.txt new file mode 100644 index 0000000..902d25b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/red_fox_descriptions.txt @@ -0,0 +1,3 @@ +sketch_8.jpg The image shows a sketch-style rendering of a fox with a light gray color, standing in profile view with texture resembling pencil shading, featuring prominent ears and a bushy tail, and text occupying the right side of the image. +misc_152.jpg The red fox appears as a bronze-like sculpture with an olive-green hue, crouched with a frontal view on a granite pedestal, featuring discernible textured fur and vivid red eyes. +misc_131.jpg The red fox appears in an abstract, reddish-brown hue with coarse texture, standing in profile atop a vibrant yellow-green background, showing simple geometric features with no visible occlusion and a clear cartoon-like environment below. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/revolver_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/revolver_descriptions.txt new file mode 100644 index 0000000..cf24fba --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/revolver_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_8.jpg The revolver appears in a detailed schematic diagram with a predominantly gray color, showcasing various labeled parts from a side view perspective, illustrating its internal mechanisms with annotations, all set against a light background. +tattoo_31.jpg The revolver appears as a monochrome image with a stippled, dotted texture, viewed from the side with the barrel oriented to the right at an upward angle, showing an open cylinder with a single cartridge falling away beneath, and is set against a plain white background with minimal environmental detail. +graffiti_5.jpg The image features a stencil-style, monochromatic black and white mural on a brick wall depicting a man in a suit sitting with a revolver pointed at his head, partially occluded by the angle of the wall with the word "SORRY" spray-painted in red above. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/rottweiler_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/rottweiler_descriptions.txt new file mode 100644 index 0000000..8715c95 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/rottweiler_descriptions.txt @@ -0,0 +1,3 @@ +misc_31.jpg The image depicts a stylized, cartoon-like rottweiler figure with exaggerated round features, predominantly dark gray in color with lighter green accents on the face and paws, positioned frontally against a plain background, and exhibiting a smooth texture with a small, light brown collar detail. +misc_6.jpg The image displays a Rottweiler with a purplish-black hue and yellow-gold markings, lying in grass with its head turned left and mouth open, revealing its tongue. +misc_34.jpg The image shows a rottweiler with a predominantly black coat and rusty brown facial markings, appearing in a painting style against a solid pink background, facing forward with its tongue visible and right ear slightly occluded by another object. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/rugby_ball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/rugby_ball_descriptions.txt new file mode 100644 index 0000000..479f976 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/rugby_ball_descriptions.txt @@ -0,0 +1,3 @@ +sketch_19.jpg The rugby ball appears as a black outline drawing on a flat gray background, with a horizontal orientation and prominent stitching detail, no visible texture, and no occlusion from the environment. +cartoon_25.jpg The rugby ball appears in a stylized, low-resolution image featuring black and white colors against a vibrant orange background, oriented diagonally with one end slightly obscured by the figure's foot, highlighting a stark contrast between the ball and the vivid backdrop. +videogame_10.jpg The rugby ball appears green and white, horizontally flipped and partly obscured by a player's hands, with vibrant green and white background effects highlighting dynamic motion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/saint_bernard_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/saint_bernard_descriptions.txt new file mode 100644 index 0000000..5e9bfb7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/saint_bernard_descriptions.txt @@ -0,0 +1,3 @@ +sketch_16.jpg The image depicts a black-and-white, sketch-style illustration of a Saint Bernard's head in profile, highlighting its droopy eyes and loose jowls with detailed shading and line work, set against a plain background. +sketch_11.jpg The Saint Bernard appears as a black and white sketch with a textured fur pattern, viewed in an upright side profile, with a small barrel collar around its neck suggesting a rescue role, standing on a flat surface with no visible background context or occlusion. +misc_2.jpg The visually augmented image shows a collection of saint bernards with a smooth, painterly texture, predominantly warm golden-brown and white hues, posed in various positions around a brown armchair, with all four dogs appearing to be looking towards the observer under balanced lighting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/sandal_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/sandal_descriptions.txt new file mode 100644 index 0000000..7fa31aa --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/sandal_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_8.jpg The sandal appears as a simple line drawing in a sketchbook, viewed from both the top and side angles, with no color and minimal texture, showing thin straps and a flat sole with slight occlusion from the drawn foot. +painting_1.jpg The sandal appears from an overhead viewpoint with a swirling, marbled texture in pink and green hues, featuring a distorted pattern across the straps, set against an abstract green background with no visible occlusion. +sketch_13.jpg The sandal appears as a simple line drawing against a gray background, showcasing a wedge heel with ankle and toe straps, viewed from a side angle, without any significant occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/saxophone_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/saxophone_descriptions.txt new file mode 100644 index 0000000..ceb0680 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/saxophone_descriptions.txt @@ -0,0 +1,3 @@ +painting_24.jpg The saxophone appears in an abstract style with swirling earthy tones of green and brown, viewed from a side angle with partial occlusion by a figure, set against a dark, undefined background. +sculpture_27.jpg The image shows a bronze-colored saxophone played by a life-sized statue of a person, positioned within an urban setting with a red and gray building in the background; the saxophone features a curved body and bell, oriented vertically as the figure stands erect and interacts with the instrument. +deviantart_22.jpg The saxophone appears in a stylized, abstract design with a dominant red and pink color palette and is viewed from a side angle amidst a vibrant orange, music-themed background with surrounding musical notes and patterns, with no obstructions. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/scarf_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/scarf_descriptions.txt new file mode 100644 index 0000000..85bba5c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/scarf_descriptions.txt @@ -0,0 +1,3 @@ +art_2.jpg The scarf appears as a vibrant magenta fabric with a pattern of small snowmen and presents, draped around a snowman's neck in a cheerful, snowy-red mottled background, with the scarf partially occluded by the snowman's body. +painting_2.jpg A vibrant red scarf with a smooth texture is draped around the neck of a person, partially obscured by the front of the blue jacket with a wooded background. +deviantart_14.jpg The scarf appears pale and smooth with a soft texture, draped around the necks of two animated figures in a leafy, outdoor setting, partially obscured by hair and attire. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/school_bus_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/school_bus_descriptions.txt new file mode 100644 index 0000000..9857ace --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/school_bus_descriptions.txt @@ -0,0 +1,3 @@ +videogame_24.jpg The image shows an orange, low-resolution school bus from a rear three-quarter view on a narrow, winding dirt road beside a rocky cliff, with the bus's square windows and dual rear wheels visible; the environment appears digitally rendered with a textured, earthy landscape. +videogame_12.jpg A yellow school bus, seen from the rear at a three-quarters angle, is racing on a dirt track with a no-entry symbol on its back, surrounded by a metal container and other colorful vehicles, with trees in the background. +cartoon_0.jpg The low-resolution, augmented image depicts a cartoon-style school bus in a bright yellow tone, viewed from the front-left angle with exaggerated large headlights, visible red emergency lights on top, and simplistic dark outlines, set against a white background with grey clouds. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/schooner_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/schooner_descriptions.txt new file mode 100644 index 0000000..22154dd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/schooner_descriptions.txt @@ -0,0 +1,3 @@ +sketch_9.jpg The schooner appears as a monochrome line drawing, viewed side-on with full sails, featuring clear outlines of rigging and masts, with minimal environmental context and no visible occlusion. +painting_3.jpg The image depicts a low-resolution schooner with a darkened, textured appearance against a yellow-green sky, viewed from the side, showing full sails, with ocean waves partially obscuring the hull. +painting_19.jpg The schooner is depicted at a slight angle with salmon-colored sails and a warm, sunset-hued sky reflecting on calm waters, while a rocky coastline is faintly visible in the background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/scorpion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/scorpion_descriptions.txt new file mode 100644 index 0000000..f835f73 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/scorpion_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_18.jpg The image depicts three tattooed scorpions on arms, with a dark, shadowy texture, posed in a curled, defensive stance, with intricate line details emphasizing pincers and tail, against a light skin tone background. +painting_2.jpg The scorpion image has a stylized, artistic appearance with predominantly dark tones, accented by bright red and white highlights, featuring a curled tail and pincers in a raised position, set against a speckled black background with no visible occlusions. +cartoon_33.jpg The image depicts a stylized, textured design resembling a scorpion etched onto a curved surface, predominantly in shades of black and gray with intricate details on the tail and claws, viewed from a side angle with the body slightly twisted and no visible environmental occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/scottish_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/scottish_terrier_descriptions.txt new file mode 100644 index 0000000..a0258cf --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/scottish_terrier_descriptions.txt @@ -0,0 +1,3 @@ +sketch_10.jpg The Scottish Terrier appears as a monochrome, intricately shaded sketch, seen from a frontal viewpoint with its head slightly turned, showcasing textured fur with prominent facial hair and ears, set against a plain background with no visible occlusions. +misc_29.jpg The Scottish Terrier, depicted in a beaded design, appears in a dark hue with a smooth texture, viewed from the side with a noticeable beaded collar, set against a plain background with the name reversed beneath it. +misc_66.jpg A textured, dark-colored figure resembling a Scottish Terrier is viewed from the front, slightly tilted, with its detailed fur pattern visible, shiny eyes catching light, and positioned between hands with a red element partially visible behind it. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/scuba_diver_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/scuba_diver_descriptions.txt new file mode 100644 index 0000000..6217f93 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/scuba_diver_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_27.jpg The scuba diver is lying on a reddish surface, wearing a sleek black wetsuit with visible green accents, pink skin, a silver mask, and arms spread wide, with the left hand open and right hand obscured. +sketch_18.jpg A scuba diver with a streamlined pose is viewed from the side, featuring a colorless design with clear outlines of gear and equipment amidst a grid backdrop, enhancing segmented texture and structure visibility. +deviantart_5.jpg The scuba diver appears with a vivid green and pink hue, wearing a swimsuit and goggles, viewed from a side angle with arms down and slightly bent knees, surrounded by a blurred underwater environment with coral-like textures. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/sea_lion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/sea_lion_descriptions.txt new file mode 100644 index 0000000..7d70f88 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/sea_lion_descriptions.txt @@ -0,0 +1,3 @@ +misc_6.jpg The sea lion appears in a playful pose, balancing on its hind flippers atop a colorful platform, with a purple hue and a bright, smooth texture, while playfully balancing an orange ball on its nose against a vibrant purple and light green backdrop. +misc_8.jpg The sea lion appears in a pale, muted color with a smooth texture, viewed from a side angle in an upright pose within a transparent display setting, with the head and flippers discernible despite blurring and color distortion. +origami_1.jpg The sea lion appears as an origami figure with a metallic bronze hue, viewed from a side angle showing its upright posture, surrounded by a textured, dark blue-green background that resembles an oceanic scene. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/shield_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/shield_descriptions.txt new file mode 100644 index 0000000..e433f6e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/shield_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_2.jpg A shield with a shimmering, iridescent texture in bright pink and red hues is angled diagonally over two figures, set against a luminous green and darkened background, with a vertical streak of light partially occluding the left side. +sketch_18.jpg The shield has a simple black and white outline with a centrally divided quadrant pattern, viewed straight on with a cross pattern, and two sections filled with diagonal hatching, set against a plain white background. +cartoon_17.jpg The shield is round and gray with a central drawing of an octopus, set against a magenta background with swirling patterns, held by a character facing the viewer. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/shih_tzu_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/shih_tzu_descriptions.txt new file mode 100644 index 0000000..5076f2d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/shih_tzu_descriptions.txt @@ -0,0 +1,3 @@ +misc_16.jpg The stylized image shows a small dog with a fluffy, altered blue and white coat standing on the left in a cartoonish cityscape, with a leash attached and held by a woman in a red dress positioned to the right, against a simplified urban background with straight lines and abstract building shapes. +sketch_16.jpg The image showcases a black-and-white, heavily textured Shih Tzu with a smooth coat, viewed from a slightly tilted front angle, focusing on its rounded face and expressive eyes against a plain white background, with no visible occlusions. +misc_37.jpg The Shih Tzu appears with a textured, embroidered style in black and white hues, posed in a side profile with its fluffy tail curled over its back, against a patterned peach-colored fabric background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/skunk_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/skunk_descriptions.txt new file mode 100644 index 0000000..9795a48 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/skunk_descriptions.txt @@ -0,0 +1,3 @@ +sketch_7.jpg The stylized skunk illustration, facing to the left in a side pose, displays exaggerated features with large eyes and simplified line art, having visible fluffy fur texture and distinct curved stripes on its back and bushy tail. +painting_17.jpg The skunk appears in a side profile with its body and bushy tail oriented to the left, displaying modified colors of predominantly white and soft gray tones, with a slightly fluffy texture against a plain off-white background. +cartoon_2.jpg The cartoon skunk, presented upside down and primarily in soft black, white, and altered pastel hues, is partially obscured by text and surrounded by shadowy figures against a whimsical forest backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/snail_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/snail_descriptions.txt new file mode 100644 index 0000000..b8c9d74 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/snail_descriptions.txt @@ -0,0 +1,3 @@ +sketch_3.jpg The image contains multiple snails in monochrome grayscale, with various orientations and positions, featuring distinct coiled shells and elongated bodies amidst a flat, neutral background, with some parts of shells occluded by placement on or behind lines or other snails. +tattoo_4.jpg A monochrome sketch of a snail is viewed in profile, with its shell intricately patterned and positioned against a diagonal green-tinted background, appearing as if on a piece of paper on a wooden surface. +misc_70.jpg A simplified, cartoonish depiction of a snail is visible on a textured white background, with its shell outlined in purple and its body in green, featuring a front-facing orientation, comical facial expression, and two antennae on top. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/snow_leopard_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/snow_leopard_descriptions.txt new file mode 100644 index 0000000..0c841cb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/snow_leopard_descriptions.txt @@ -0,0 +1,3 @@ +painting_21.jpg The snow leopard, appearing with a pale pinkish hue and soft, textured fur, is posed in a three-quarter view looking off to the side against a muted green background, highlighting its distinct dark rosettes and alert expression. +painting_19.jpg The snow leopard is depicted head-on with its fur rendered in a dark, monochromatic pattern, accentuating its teal eyes against a shadowy background, while visually augmented textures add an ethereal, painted quality to the image. +cartoon_8.jpg The snow leopard appears in grayscale with a forward-facing pose, showcasing prominent dark spots on its light fur, with enhanced green eyes and minimal background or environmental details. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/soccer_ball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/soccer_ball_descriptions.txt new file mode 100644 index 0000000..e5a2fdd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/soccer_ball_descriptions.txt @@ -0,0 +1,3 @@ +art_3.jpg The soccer ball appears as a stencil-like black and white representation on a pink graffiti backdrop, with a bomb fuse depicted on top, suggesting an explosive theme. +misc_13.jpg The soccer ball appears to be knitted with a soft texture, featuring traditional black and white pentagon and hexagon patterns, held at an angle by a hand against a plain light background with a shadow cast to the side. +tattoo_1.jpg The soccer ball, appearing as a tattoo on skin, features a standard black-and-white pattern with stylized flames in red, orange, and yellow extending upwards. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/space_shuttle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/space_shuttle_descriptions.txt new file mode 100644 index 0000000..eaf03a5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/space_shuttle_descriptions.txt @@ -0,0 +1,3 @@ +videogame_24.jpg A low-resolution image of a space shuttle shows it oriented vertically with a vivid red body and contrasting blue background, featuring visible side boosters and a lattice structure, with some occlusion by scaffold-like elements and digital numerical readouts at the side. +videogame_9.jpg The image shows a vintage grey cartridge with a colorful label depicting a space shuttle in vivid hues, angled slightly to the side with text above and a celestial-themed background, surrounded by a minimalistic pinkish-white gradient environment. +cartoon_34.jpg The space shuttle appears in a top-down view with a vivid red-tinted nose, white body with contrasting black accents on the wings and tail, and both are in a side-by-side orientation with one showing a visible NASA logo, while the accompanying shuttle retains a grayish tone with pink lettering details, set on a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/spider_web_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/spider_web_descriptions.txt new file mode 100644 index 0000000..f32ec48 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/spider_web_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_4.jpg The visually augmented spider web appears in a vibrant purple hue, intricately woven with fine, delicate strands and positioned diagonally across a richly colored, romantic background adorned with floral motifs and butterflies, partially obscured by the decorative elements. +painting_12.jpg The spider web is prominently displayed in a surreal violet and pink hue with a visible circular and radial pattern, set against a richly textured backdrop of foliage and flowers with an inverted orientation and slight visual noise. +embroidery_4.jpg The spider web pattern appears as a black line drawing on a bag with a vivid, tie-dye-like background of swirling orange, red, and purple shades, with a few playing cards partially visible extending from its opening on a wooden surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/standard_poodle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/standard_poodle_descriptions.txt new file mode 100644 index 0000000..291f8be --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/standard_poodle_descriptions.txt @@ -0,0 +1,3 @@ +sketch_22.jpg The augmented outline of a standing poodle in a side profile has a stark black and white schematic texture, with its head facing downward and a dense array of patterns indicating fur detail, surrounded by a faintly patterned, gray leafy background. +sketch_5.jpg The illustration features a cartoon poodle with a fluffy, curly white coat, viewed in profile, with pom-poms on its tail and legs, black ears, and expressive eyes. +misc_36.jpg The image shows a stylized, beaded depiction of a poodle in shades of turquoise and aquamarine, viewed from the front with a visible, textured curly coat and an upright posture, with the environment consisting of a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/starfish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/starfish_descriptions.txt new file mode 100644 index 0000000..5ea0a42 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/starfish_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_5.jpg The starfish appears as a stylized, monochromatic outline with five dotted arms, oriented vertically, alongside a paper-like element displaying numbers and symbols on the right. +misc_5.jpg The starfish appears in a muted brown hue with a matte texture, viewed from a slightly elevated angle showing the top surface, featuring round orange markings with black dots along each arm, and it is set against a plain, light background. +cartoon_21.jpg Two stylized starfish appear, one with a white and green speckled texture outlined in orange and light blue, and the other featuring curled arms with a tan, dotted pattern bordered in blue, both set against a light gray background with overlapping shadows. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/steam_locomotive_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/steam_locomotive_descriptions.txt new file mode 100644 index 0000000..f33feae --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/steam_locomotive_descriptions.txt @@ -0,0 +1,3 @@ +sketch_12.jpg The steam locomotive appears as a monochrome illustration with intricate detailing, visible from a side view revealing its entire body including large wheels, a cowcatcher, and a plume of steam at the front, all set against a plain grey background. +cartoon_6.jpg The steam locomotive appears in an enclosed environment with an artificial amber and red hue, viewed from the front left with visible rust-like texture, partially occluded by a railing, featuring a round boiler, a visible headlamp, and assorted industrial environment elements. +graffiti_1.jpg A low-resolution image depicts a visually augmented steam locomotive in a vivid green and pink color scheme, with a front-facing viewpoint, partially obscured by artistic surroundings imitating a textured wall mural of a scenic railway landscape. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/stingray_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/stingray_descriptions.txt new file mode 100644 index 0000000..9566ed6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/stingray_descriptions.txt @@ -0,0 +1,3 @@ +misc_4.jpg The image shows a pastel green stingray with a marbled texture, oriented upside down with its tail curving upwards, set against a bright, uniform background. +sketch_3.jpg The image depicts a monochromatic, stylized drawing of a stingray viewed from a slightly oblique angle with its elongated tail curled intricately, set against a plain background with swirling patterns along its body reflecting texture. +painting_8.jpg The stingray appears in a stylized form with a dark color against a textured, wavy background of swirling blue and orange lines, partially obscured by abstract patterns and viewed from above. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/strawberry_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/strawberry_descriptions.txt new file mode 100644 index 0000000..862255b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/strawberry_descriptions.txt @@ -0,0 +1,3 @@ +misc_2.jpg The image depicts a brightly colored, reddish-orange strawberry with a smooth, augmented texture, resting flatly against a pink background adorned with small strawberry patterns, and featuring prominent green leaves on top without any visible occlusions. +sculpture_4.jpg The image depicts a sculptural representation of a strawberry with an intense red hue and dark spots mimicking seeds, viewed from a low angle against a clear sky, with visible leaves at the top. +painting_0.jpg A purple, stylized strawberry with exaggerated seeds and a faintly glowing texture is held by a character in a surreal painting, with a background of vibrant orange and red hues. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/submarine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/submarine_descriptions.txt new file mode 100644 index 0000000..50d2c30 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/submarine_descriptions.txt @@ -0,0 +1,3 @@ +videogame_11.jpg The low-resolution submarine appears to be in a reversed orientation over an icy, snow-covered environment with a darkened color and a partially visible conning tower emerging above the waterline, surrounded by rocky, snow-dusted terrain and distant mountains, with text overlay partially obscuring the view. +painting_1.jpg The submarine appears as a flat, cartoon-like silhouette painted in bright green with black outlines and yellow highlights, viewed from the side against a dark, mural-styled background with colorful patterns and aquatic motifs. +toy_7.jpg The submarine appears as a small yellow toy with a blue upper section and orange accents, featuring a child-like figure inside, viewed at an angled side view on a reflective surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/tabby_cat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tabby_cat_descriptions.txt new file mode 100644 index 0000000..85dcc16 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tabby_cat_descriptions.txt @@ -0,0 +1,3 @@ +misc_3.jpg This low-resolution image shows a stylized depiction of a tabby cat in a relaxed, reclining position on a colorful patterned fabric, with augmented warm hues and posterized textures enhancing its serene expression within a decorative frame. +cartoon_20.jpg The tabby cat is depicted in a stylized manner with a vivid orange hue, displaying a crouched posture with its front legs extended, set against a beige backdrop with no visible occlusions, featuring exaggeratedly large, pointed ears and boldly outlined eyes. +cartoon_11.jpg The tabby cat appears in a frontal pose with a pinkish-reddish hue over its fur, with distinctive black stripes and wide, attentive eyes against a plain background, highlighting its symmetrical face. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/tank_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tank_descriptions.txt new file mode 100644 index 0000000..660334c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tank_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_7.jpg The tank appears in a low-resolution image with a pink and white color scheme, viewed from the front with its turret aimed slightly left, and is positioned on a flat, sketch-like landscape with a distinctive flag on its side and visible tracks beneath. +graffiti_11.jpg The image depicts a painted depiction of a stylized tank with a muted teal color and white stars against a textured, multi-colored background, viewed from a side angle with visible track details and a mounted gun pointing forward. +videogame_47.jpg The tank is oriented towards the viewer with a texture resembling a distressed or abstract pattern in muted colors, predominantly tan with a contrasting red design on the front; it is set against a chaotic urban backdrop with red and yellow hues above and black pavement below. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/tarantula_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tarantula_descriptions.txt new file mode 100644 index 0000000..b4183fc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tarantula_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_7.jpg The tarantula appears in an inverted orientation with a blue-grey color overlay, showcasing its textured legs splayed outward with visible segments and outlined labels amidst a light background, possibly indicating anatomical features. +toy_2.jpg The tarantula, viewed from a slightly elevated angle, appears in dark, shadowy tones with a matte texture against a blurred kitchen background, and its legs are partially obscured by shadow on the left side of the image. +tattoo_15.jpg A dark, opaque tarantula with a slightly teal hue is depicted head-on, with its legs spread wide and detailed texture visible on the back, placed against a smooth, light skin backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/tennis_ball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tennis_ball_descriptions.txt new file mode 100644 index 0000000..2e45d5c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tennis_ball_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_9.jpg The tennis ball appears in a light lime green color with a smooth texture, viewed from a slightly elevated angle showing left curvature; it casts a distinct shadow on a plain black background, enhancing its spherical form. +deviantart_13.jpg A bright yellow-green animated tennis ball with a smiling face, bold white lines curving around its surface, and a prominent cartoon mouth, is set against a black background, with stylized text in the lower right. +videogame_14.jpg The object, resembling a glowing tennis ball, appears lime green with a radiant, streaking effect as if in motion, set against a dynamic, colorful background with animated characters on a tennis court. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/tiger_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tiger_descriptions.txt new file mode 100644 index 0000000..40b0d06 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tiger_descriptions.txt @@ -0,0 +1,3 @@ +painting_0.jpg The tiger, with augmented bright orange and yellow hues and distinct dark stripes, appears to be reclining on a pale, textured surface, viewed from a side angle with its rear slightly obscured, amidst a backdrop of blurred greenery and upright bamboo stalks. +sticker_5.jpg The image shows a large, plush tiger costume featuring bright orange and white colors with bold black stripes, viewed from a slightly low angle with its mouth open, set against a cloudy sky and surrounded by people wearing orange shirts, suggesting a casual outdoor gathering. +art_7.jpg The image shows a stylized depiction of a tiger's head, oriented sideways with mouth open, displaying prominent teeth and dark striped patterns on a background of tan and black, painted onto a curved surface that appears to be part of an aircraft. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/timber_wolf_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/timber_wolf_descriptions.txt new file mode 100644 index 0000000..4c84924 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/timber_wolf_descriptions.txt @@ -0,0 +1,3 @@ +misc_58.jpg The timber wolf is shown in a front-facing view with its fur appearing in a cool-toned blue-gray due to color augmentation, with piercing eyes and distinct ears, partially occluded by a multi-panel design against a stark white background. +misc_61.jpg The timber wolf figurine appears in a realistic pose standing on a rock with gray and white marbled texture due to the color augmentation, positioned slightly sideways with a background of ornate framed artwork and red books, creating a vintage setting. +misc_5.jpg The image shows a grayscale depiction of two timber wolves in a tattoo-like design, with one wolf facing forward and another partially obscured behind it, surrounded by a dreamcatcher and a third smaller wolf silhouette beneath, all merged in an artistic style. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/toucan_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/toucan_descriptions.txt new file mode 100644 index 0000000..0994a0c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/toucan_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_22.jpg The image shows two toucans with vibrant green and black plumage perched on a branch, one facing left and the other facing right with open wings, against a blurred background of green and yellow leaves, with the scene appearing stylized or illustrated. +art_13.jpg The toucan is oriented in a side profile with a textured, vibrant beak displaying exaggerated hues of purple, green, and orange, set against a blurred background, emphasizing its large size and smooth surface. +cartoon_40.jpg The toucan appears in a black and white illustration, perched on a branch with a side profile view, featuring an oversized fruit hat with pineapples, bananas, and grapes, and distinct curved beak lines. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/toy_poodle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/toy_poodle_descriptions.txt new file mode 100644 index 0000000..86e1d2d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/toy_poodle_descriptions.txt @@ -0,0 +1,3 @@ +misc_13.jpg A stylized illustration of a toy poodle features a textured sketch with an exaggerated fluffy head, wearing oversized headphones and glasses, depicted with muted sepia tones against a faded, abstract background. +sketch_10.jpg The image depicts a sketch-like illustration of a toy poodle with a soft, monochromatic texture, depicted in profile with its right side facing forward, featuring prominently fluffy ears and a rounded, puffy head, surrounded by a plain, untextured background. +misc_9.jpg The toy poodle appears white with a soft, fluffy texture, wearing a reddish bow tie, sitting upright, partially occluded by surroundings with a background of green foliage and a festive, colorful setting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/tractor_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tractor_descriptions.txt new file mode 100644 index 0000000..1748693 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tractor_descriptions.txt @@ -0,0 +1,3 @@ +painting_8.jpg The tractor is set against a dim environment with striking light trails above it, exhibiting a green color with a yellow rim on its large rear wheels, viewed from a side angle with the front facing slightly towards the right, while the ground is covered in dry leaves and small stones, creating a rustic backdrop. +painting_13.jpg The tractor is depicted in a low-resolution image with an unnatural blue body, green wheels, and a yellow cabin on a red background, viewed from a side profile with simplified shapes and no visible detailed textures. +sketch_20.jpg The tractor appears as a sketched illustration in monochrome with intricate linework, viewed from a slightly tilted frontal angle, displaying large, textured wheels and a prominent exhaust pipe, with a whimsical swirl and reversed text overlay at the bottom. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/tree_frog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tree_frog_descriptions.txt new file mode 100644 index 0000000..b00d5aa --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/tree_frog_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_28.jpg A vivid, green frog with red eyes and orange toes appears in a side view perched diagonally on a pale surface, with slight distortion highlighting its smooth texture and detailed limb markings. +tattoo_42.jpg The image shows a visually augmented tree frog with vivid green and blue hues perched in a lateral pose on a human arm, with distinctively large orange eyes and visible black stripe markings on its sides, set against a blurred background with minimal surroundings. +painting_2.jpg A vibrantly augmented tree frog with a turquoise and white body, orange limbs, and large red eyes, is positioned facing the viewer, partially obscured by a dark green leaf in the foreground. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/trombone_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/trombone_descriptions.txt new file mode 100644 index 0000000..ec79dda --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/trombone_descriptions.txt @@ -0,0 +1,3 @@ +painting_0.jpg The trombone appears in a side profile with a metallic sheen and a green hue against a vibrant, lively background of pink and purple, partially obscured by the figures of musicians marching in colorful attire. +cartoon_24.jpg The image showcases several trombones sketched in bright yellow with a smooth texture, viewed from a frontal angle where the distinct elongated slide and bell sections are prominent against a plain background. +art_1.jpg The trombone appears as part of a mural with a predominantly white and blue color scheme, viewed from a side angle, partially occluded by a painted figure in uniform against a brick background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/vase_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/vase_descriptions.txt new file mode 100644 index 0000000..26b384f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/vase_descriptions.txt @@ -0,0 +1,3 @@ +embroidery_3.jpg The vase appears as a mosaic of purple and blue triangular shapes, set against a dark background, with a curved form, while the upper portion is partially obscured by angular, brightly colored flowers in yellow and magenta. +painting_14.jpg A watercolor vase in light blue with a rough, textured surface is viewed from the front, containing abstract pink and green flowers, with the environment gently blurred, casting a soft shadow on a flat surface. +cartoon_27.jpg The black and white line drawing depicts a rounded vase adorned with floral patterns, tilted to the side with two blooming flowers emerging from the top. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/violin_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/violin_descriptions.txt new file mode 100644 index 0000000..8159e1b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/violin_descriptions.txt @@ -0,0 +1,3 @@ +sketch_14.jpg The violin appears as a high-contrast black silhouette with a white outline, presented in an angled side view showing the body and neck, with a visible scroll and strings, against a plain white background. +sketch_16.jpg The sketch-like image shows a horizontally positioned violin drawn in black and white, with a prominent scroll and f-holes, partially overlapped by sheet music and surrounded by a candle, cup, and a flower vase on a flat surface. +sculpture_4.jpg The object resembles a stylized, abstract white sculpture of a violin and bow, viewed from a frontal perspective against a snowy outdoor background with clear blue skies, featuring smooth surfaces and exaggerated, curved lines that blend into a snowy environment. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/volcano_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/volcano_descriptions.txt new file mode 100644 index 0000000..f5b2d0c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/volcano_descriptions.txt @@ -0,0 +1,3 @@ +videogame_19.jpg The visually augmented volcano appears with a muted, earthy light brown hue, featuring a smooth and blurred texture, seen from a slightly elevated angle with its peak centered, surrounded by a winding pathway, giving a surreal and dreamy atmosphere with bright yellow question-mark blocks and a purple sky. +deviantart_14.jpg A towering column of dark smoke rises from the volcano set in a barren, monochromatic landscape with a vivid orange, lava-like texture in the foreground, framed by jagged grey rocks and clouds, providing a dramatic contrast against the altered sky colors and orientation. +art_0.jpg The image depicts a volcano erupting under a deep red color scheme, with bright lava streams contrasting against the dark, textured landscape, viewed from a distance with a side angle; the eruption is partially obscured by smoke and framed by dark silhouetted trees and a distant ocean horizon under a cloudy sky. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/vulture_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/vulture_descriptions.txt new file mode 100644 index 0000000..4e74766 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/vulture_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_25.jpg The image depicts an artist's sketch of a vulture with exaggerated shades of blue and green on its feathers, positioned with wings partially open and talons visible, set flat on a sketchbook with a pencil nearby, lacking any real background environment. +deviantart_5.jpg The vulture, illustrated in a stylized manner, appears in black and white with exaggerated features, perched atop a hunched human figure amidst a dripping, abstract background, and is depicted in profile view with a distinct sharp beak and detailed feather texture. +tattoo_38.jpg The visually augmented vulture tattoo features vibrant black and red hues with a scaly texture, viewed from a side profile with its head turned to the left, surrounded by richly colored roses, and partially obscured by overlays of text and banner designs. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/weimaraner_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/weimaraner_descriptions.txt new file mode 100644 index 0000000..f192236 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/weimaraner_descriptions.txt @@ -0,0 +1,3 @@ +misc_37.jpg The image depicts a low-resolution, left-facing weimaraner with a cool blue-gray hue and a smooth texture, against a pale background, with its distinctive short coat, long muzzle, and drooping ears clearly visible and unobstructed. +misc_0.jpg Two weimaraners with a smooth, bluish-gray texture sit on a sunlit path, surrounded by muted greenery and flowers, with one facing forward and slightly left while the other is seated upright, looking directly ahead. +misc_19.jpg The bronze-colored relief of a weimaraner's head is depicted in profile on a textured background, with the dog facing right, showcasing a smooth texture and alert pose, set upon an upright plaque with detailed inscriptions below. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/west_highland_white_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/west_highland_white_terrier_descriptions.txt new file mode 100644 index 0000000..7072ef0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/west_highland_white_terrier_descriptions.txt @@ -0,0 +1,3 @@ +misc_10.jpg The image depicts a black-and-white, high-contrast West Highland White Terrier facing forward with prominent, symmetrical ears against a dark background, highlighting its textured, fluffy fur and distinct facial features. +sketch_9.jpg The west highland white terrier appears in a detailed black and white sketch with a textured, fluffy coat, facing forward with its head slightly tilted to the right and a pronounced fringe partially obscuring its eyes. +misc_20.jpg The West Highland White Terrier is depicted in a portrait orientation with a light gray and pinkish hue, featuring a woolly texture and erect ears, with a focused expression against a muted gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/wheelbarrow_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/wheelbarrow_descriptions.txt new file mode 100644 index 0000000..b367ffb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/wheelbarrow_descriptions.txt @@ -0,0 +1,3 @@ +sketch_6.jpg The wheelbarrow is depicted in a hand-drawn, stippled style with black lines, viewed from a side angle showing one wheel and two handles, on a white background, with no visible occlusions. +misc_40.jpg The wheelbarrow appears in an abstract and artistic sculptural form with a smooth, muted clay texture, viewed from an angled perspective that highlights its exaggerated curved legs and a prominent decorative feature at the front, set in a softly lit indoor environment. +misc_61.jpg A bright green wheelbarrow with neon yellow handles is positioned at an angle on a muddy, rippled surface with patches of green algae, partially occluding the right side of its small black wheel. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/whippet_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/whippet_descriptions.txt new file mode 100644 index 0000000..5cd10f9 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/whippet_descriptions.txt @@ -0,0 +1,3 @@ +misc_39.jpg The image depicts a fabric sculpture of a whippet featuring a striped, knitted texture in muted brown shades, seated upright with its elongated snout pointing forward, placed against a colorful, patterned surface and slightly obscured by a red knitted scarf around its neck. +misc_46.jpg The whippet appears as a grayscale illustration with a smooth texture, lying in a relaxed posture with its head turned to the side, displaying prominent ears and a narrow face, wearing a collar with a bone-shaped tag, set against a plain white background. +misc_30.jpg The image depicts multiple sculptures resembling whippets with a weathered, yellowish stone texture, viewed from an elevated angle with slight rightward orientation against a blurred, gravelly outdoor setting and surrounding greenery. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/wine_bottle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/wine_bottle_descriptions.txt new file mode 100644 index 0000000..af593e2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/wine_bottle_descriptions.txt @@ -0,0 +1,3 @@ +painting_2.jpg A textured blue bottle with a white label stands upright next to a goblet on a textured pale circular surface, set against a vivid turquoise background with abstract floral elements. +painting_37.jpg The wine bottle appears horizontally positioned with a green hue and a matte texture, featuring a visible cream label with indistinct text, a red and yellow cap, and rests against a neutral, shadowed surface. +sketch_17.jpg The image shows four wine bottles with a high-contrast black and white filter, three standing upright with visible labels, while one lies horizontally in front with a partially obscured label. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/wood_rabbit_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/wood_rabbit_descriptions.txt new file mode 100644 index 0000000..f586c67 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/wood_rabbit_descriptions.txt @@ -0,0 +1,3 @@ +misc_23.jpg A beige plush rabbit with floppy ears holds a bright orange carrot, sitting among metallic foil-wrapped eggs on a spotted brown background, partially obscured by the cheerful Easter-themed text above. +misc_16.jpg The wood rabbit, viewed in profile, appears with a muted blue-gray hue and a soft, speckled texture, sitting amidst a snowy landscape with only its right ear visible above the snow. +sketch_17.jpg The image shows a monochrome sketch of a wood rabbit with a detailed, textured fur pattern, portrayed in a side profile with ears upright, holding a flower in its mouth, all against a light backdrop without any visible occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/yorkshire_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/yorkshire_terrier_descriptions.txt new file mode 100644 index 0000000..8c95e70 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/yorkshire_terrier_descriptions.txt @@ -0,0 +1,3 @@ +misc_57.jpg This structure, resembling a Yorkshire Terrier, is composed of interlocking metallic components with a rusted bronzy hue, facing forward on a white pedestal amidst a modern interior with a red and white tiled floor. +misc_48.jpg The Yorkshire Terrier, depicted in a painted disc format, is viewed from the side with a bright, greenish-yellow fur due to color augmentation, seated with long flowing hair, where the background features a solid purple hue and holiday-themed decor adorns the top of the disc. +misc_5.jpg The image shows an embroidered depiction of a Yorkshire Terrier in a playful crouching pose, with gray thread outlining the dog on a pale pink fabric, wearing a red scarf with floral accents around its neck, enclosed in an embroidery hoop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_aug/zebra_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_aug/zebra_descriptions.txt new file mode 100644 index 0000000..2643c53 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_aug/zebra_descriptions.txt @@ -0,0 +1,3 @@ +videogame_0.jpg The image depicts a stylized zebra with a cartoonish appearance, featuring a pink body and beige stripes, wearing sunglasses and a red hat, set against a vibrant, abstract orange background. +misc_84.jpg This image shows a handcrafted zebra standing upright with a checkered, textured black and white pattern on its body, viewed from a side angle on a wooden surface, with its head turned slightly away and no visible occlusion. +sketch_20.jpg The zebra, oriented with its head facing left, displays inverted black-and-white stripes, creating a mirror image effect, with its legs partially obscured by overlapping and its tail hanging in a relaxed downward position against a plain gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/African_chameleon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/African_chameleon_descriptions.txt new file mode 100644 index 0000000..07b8727 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/African_chameleon_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_6.jpg The chameleon is in a line-drawn style, partially obscured by digital noise on the left, with visible swirls and a plant-like environment, an open mouth, a curled tail, and a fly in its tongue path. +tattoo_22.jpg The image shows a tattoo of an African chameleon with vibrant green and yellow hues, perched atop a stylized skull with a multicolored, textured environment, partly occluded by a pixelated area on the left. +videogame_1.jpg The image shows a low-resolution depiction of a green, pixelated, and partially obscured chameleon-like shape with an intricate texture, seen from a side view, where the central body is heavily occluded by a colorful noise pattern, with a contrasting dark and earthy-toned background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/Granny_Smith_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/Granny_Smith_descriptions.txt new file mode 100644 index 0000000..c028f3d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/Granny_Smith_descriptions.txt @@ -0,0 +1,3 @@ +art_3.jpg The Granny Smith apple is shown in a watercolor style with a vibrant light green hue and speckled texture, partially obscured by a colorful static-like occlusion on the bottom left, while the right side displays a cross-section revealing pale green flesh and dark seeds. +sculpture_2.jpg The image shows a large, semi-circular, smooth green object resembling an abstract side view of a Granny Smith apple, with a significant portion obscured by a vertical strip of colorful digital noise, set against a clear blue sky with cityscape elements beneath. +videogame_5.jpg The image shows a colorful noise pattern completely occluding the primary subject, against a backdrop of smooth, dark and green surfaces with hints of metallic or glass-like reflections. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/accordion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/accordion_descriptions.txt new file mode 100644 index 0000000..4e47755 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/accordion_descriptions.txt @@ -0,0 +1,3 @@ +graphic_1.jpg This accordion is a digitally altered cartoon depiction where the central bellows area is covered by a static-like multicolored noise, revealing only the black and white keys and a portion of the side, set against a solid green background, viewed from the front. +cartoon_39.jpg The accordion, partially visible on the right, appears in a sketch-style drawing with visible keys and buttons, partially occluded by a textured overlay on the left side, suggesting a frontal viewpoint with a transparent artistic contour. +cartoon_23.jpg The image shows a skeletal figure in a blue coat playing an accordion, with heavy grayscale static obscuring the right half, contrasting against a drippy black backdrop and featuring visible keys and a horned head. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/acorn_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/acorn_descriptions.txt new file mode 100644 index 0000000..77da5f4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/acorn_descriptions.txt @@ -0,0 +1,3 @@ +misc_112.jpg The object resembles a textured, metallic acorn-like sculpture partially occluded by a multicolored, noisy pattern on the right, with visible grid-like lines and a slightly angular shape viewed from varied angles against a yellow background. +misc_126.jpg The acorn, depicted in a brown embroidered outline with visible speckled texture, is partially obscured by a multicolored static-like occlusion on the lower left, while the remaining visible part is framed by similarly embroidered oak leaves against a plain beige fabric background. +misc_111.jpg The acorn, viewed from a front angle, has a visible brown texture with a cap featuring a yellow and green striped pattern, partially occluded by a vertical rectangular area of multicolored static. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/afghan_hound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/afghan_hound_descriptions.txt new file mode 100644 index 0000000..729d2c3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/afghan_hound_descriptions.txt @@ -0,0 +1,3 @@ +misc_45.jpg The Afghan Hound in the image has a flowing, silky coat with hues of grey and black, a long, elegant face, with part of the right side obscured by a vertical, multicolored static occlusion, against a blue background. +misc_28.jpg A sketched image of an Afghan hound is partially visible with flowing, dark lines suggesting its long, silky coat on a light-toned ceramic tile, while a significant portion on the right is obscured by colorful digital noise. +misc_31.jpg The Afghan Hound's head and neck, in profile view, are visible with a light tan or golden color and a smooth, flowing texture, while the central part of the body is obscured by a colorful, static-like occlusion, set against a decorated gray-blue background with swirling patterns. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/ambulance_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ambulance_descriptions.txt new file mode 100644 index 0000000..78033dd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ambulance_descriptions.txt @@ -0,0 +1,3 @@ +videogame_2.jpg The ambulance is viewed from the front-left angle, prominently displaying its white body with black accents, a yellow light bar on top, and the word "AMBU" visible on the front, while the right side is heavily obscured by colorful noise. +cartoon_4.jpg A red and white ambulance is partially visible from a three-quarter front-left angle, with the front and side obscured by colorful static, on a map background detailing a tour route across Wisconsin. +sculpture_0.jpg The ambulance is made from LEGO bricks with a white and red color scheme, featuring a distinct red cross on the roof, viewed from an elevated angle, with severe occlusion covering the front half of the vehicle and it is positioned on a stylized road with visible markings. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/american_egret_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/american_egret_descriptions.txt new file mode 100644 index 0000000..383746f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/american_egret_descriptions.txt @@ -0,0 +1,3 @@ +misc_36.jpg The image depicts an abstract, watercolor-like rendering of an egret with visible blue and white tones, showing a side view with wings extended, partially obscured by a multicolored pixelated block on the left side, against a background mimicking a sky with branches. +misc_1.jpg The image shows a pale bird with a long, curved neck partially visible, with a large central area heavily occluded by pixelated noise, while the background appears dark and possibly leafy. +misc_43.jpg The image shows an American egret with its head and neck visible in profile, showcasing a bright white color and smooth texture against a blue sky with white clouds, partially occluded in the body area by a colorful square, while standing on a single leg in a blue water setting with green reeds nearby. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/ant_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ant_descriptions.txt new file mode 100644 index 0000000..78608fe --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ant_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_11.jpg The image shows a small, ant-shaped silhouette in black against a brown, fuzzy-textured surface with a multicolored noise occlusion on the right side, partly covering the surrounding environment which appears to have wooden flooring. +tattoo_24.jpg The image depicts a silhouetted ant with visible antennae against a gradient background, largely obscured by a multicolored static-like block covering the lower portion of its body. +graffiti_3.jpg The ant appears as a dark silhouette seen from above on a smooth, light background, with the body and legs partially obscured by colorful noise in the lower left corner of the image. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/assault_rifle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/assault_rifle_descriptions.txt new file mode 100644 index 0000000..6d9159e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/assault_rifle_descriptions.txt @@ -0,0 +1,3 @@ +art_0.jpg The assault rifle appears in profile view with a texture resembling a dollar bill, predominantly green with intricate designs, with significant occlusion on the left side by a colorful, static-like pattern. +misc_19.jpg The image depicts a stylized portrayal of a figure with a navy and gold color scheme holding an object resembling an assault rifle, with the central portion heavily occluded by multicolored static noise, leaving only parts of the grip and muzzle visible. +sticker_0.jpg The image shows a stencil-style depiction of a person holding an assault rifle, with most of the rifle obscured by heavy pixelation in a square at the lower right, while the visible parts appear in desaturated grayish tones against a worn greenish background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/axolotl_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/axolotl_descriptions.txt new file mode 100644 index 0000000..2d0e701 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/axolotl_descriptions.txt @@ -0,0 +1,3 @@ +origami_2.jpg A pink, origami-like object with visible folds and angular features rests on a textured tan surface, partially obscured by a square, multicolored noise pattern over the left side. +toy_24.jpg The axolotl, appearing as a plush toy, is bright pink with a smooth texture, visible from an overhead angle, and is partially obscured by a central horizontal band of multicolored static with a blue background. +toy_16.jpg The axolotl appears light pink with a fluffy texture, exhibiting a frontal pose with red fin-like appendages visible on either side of its head, while a significant portion of its lower body is obscured by a multicolored static occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/baboon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/baboon_descriptions.txt new file mode 100644 index 0000000..537e2ea --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/baboon_descriptions.txt @@ -0,0 +1,3 @@ +painting_15.jpg The image shows a face with mask-like paint resembling a baboon, featuring striking red and black colors with a textured blue patch over one eye, and pixelated occlusion covering part of the left cheek, amidst realistic human eyes and hair. +tattoo_8.jpg The image shows a colorful tattoo of a stylized creature with green, red, and black hues on an arm, partially obscured by a pixelated rectangle covering the upper section, leaving visible sharp fangs and a fur-like texture around the mouth area. +painting_14.jpg The image shows a sketch of a baboon in profile with textured brown fur and a prominently visible eye, partially occluded by colorful static covering the center portion of its face. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/backpack_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/backpack_descriptions.txt new file mode 100644 index 0000000..38e94c5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/backpack_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_33.jpg The partially occluded backpack appears to have a canvas material in a dark color, possibly green, with visible upper leather shoulder straps, a distinct front pouch layout for bottles, pens, and other items, while the right side is obscured by heavy digital noise. +toy_0.jpg The object resembles a plush toy with gray fur texture, large ears, and partially obscured by multicolored static; it rests on tree branches in a leafy outdoor setting, with the central body mostly occluded. +sketch_24.jpg A blue, outlined backpack viewed from the front has a large rectangular occlusion in the center, with visible details like a rounded top, side pocket outlines, and lower front pockets partially filled with a notebook and pencils. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/badger_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/badger_descriptions.txt new file mode 100644 index 0000000..4132d13 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/badger_descriptions.txt @@ -0,0 +1,3 @@ +painting_17.jpg The image depicts a badger with a visible white and dark brown fur pattern on the face and a distinctively textured body, viewed from the side as it rests, with a central portion obscured by colorful pixelated occlusion and a set of claws visible on the right. +sketch_7.jpg The black and white sketch of the badger's head is viewed in profile with its snout and eye visible, while the rest of the image is overlaid with a dense colored noise pattern obscuring the surrounding details. +sticker_6.jpg The image depicts a stylized white silhouette of a mythical creature with a rounded body and elongated limbs on a dark textured background, partially occluded by a small, multicolored, pixelated square at the top. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/bagel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bagel_descriptions.txt new file mode 100644 index 0000000..658bc5a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bagel_descriptions.txt @@ -0,0 +1,3 @@ +sketch_4.jpg A grainy-textured, light-colored bagel's right side is visible with a speckled surface pattern, while the left side is heavily occluded by a noisy, multicolored static block against a textured white background. +painting_5.jpg The image depicts a yellow, donut-shaped object resembling a bagel, with small holes on its surface, viewed from a side angle, and partially obscured on the left by noise-like occlusion against a colorful background. +sketch_11.jpg The bagel appears in black and white with a dotted texture on the left side, viewed from an angled top-down perspective, while the right side is obscured by colorful static noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/bald_eagle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bald_eagle_descriptions.txt new file mode 100644 index 0000000..f3608fc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bald_eagle_descriptions.txt @@ -0,0 +1,3 @@ +graffiti_0.jpg The upper part of an artistic mural features a bald eagle with a fierce yellow eye and a part of its white feathered head, set against a blue sky background, while the lower center is obscured by a colorful static occlusion. +tattoo_38.jpg The image shows a tattoo of a bald eagle on an upper arm, depicted in a side profile with visible brown feathers and a yellow beak, partially obscured by a large vertical pixelated occlusion, leaving only its head and some body visible, set against human skin. +tattoo_0.jpg The bald eagle drawing is depicted in a side profile pose with a predominantly monochrome, pencil-textured appearance, prominently displaying its distinctive beak and eye, while the background features abstract stars and stripes partially obscured by a colorful, pixelated rectangle on the bird's body. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/banana_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/banana_descriptions.txt new file mode 100644 index 0000000..10f7fe8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/banana_descriptions.txt @@ -0,0 +1,3 @@ +videogame_12.jpg A low-resolution graphic of a banana peel with smiling faces is partially visible at the bottom of a black t-shirt, with heavy pixelated occlusion covering the upper portion of the shirt. +misc_119.jpg A partially occluded, stylized yellow felt banana with brown stitching is lying on its side, with a metal keyring attached at one end, set against a light green background. +misc_0.jpg The low-resolution drawing depicts a peeled banana with a smooth, light-colored texture viewed from the side, mostly obscured by a vertically placed pixelated occlusion on the right. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/barn_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/barn_descriptions.txt new file mode 100644 index 0000000..2e63d1d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/barn_descriptions.txt @@ -0,0 +1,3 @@ +sketch_10.jpg The visible portion of the barn is sketched in black and white with a rounded top and vertical lines suggesting wood paneling, viewed from an angled perspective with the front partially obstructed by a large rectangular area of static-like noise. +painting_20.jpg This altered image portrays a barn with a stylized, muted purple hue and a grainy texture, viewed from a straight angle, with a substantial vertical occlusion covering the center and tall silo structures partially visible on either side. +graphic_0.jpg The barn appears red with a white X-pattern on its double doors and a distinctively curved roof, viewed from the front with the central section heavily occluded by static-like noise, while part of the windows remains visible above the obstruction. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/baseball_player_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/baseball_player_descriptions.txt new file mode 100644 index 0000000..f4a10c5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/baseball_player_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_5.jpg The image shows a baseball player wearing a dark cap with a barely visible logo, holding a bat while smiling, with a heavily pixelated occlusion over the center and a faded American flag in the background. +videogame_25.jpg A baseball player in a black helmet and white pinstriped uniform is swinging a bat from a side angle, with the background showing a packed stadium and the right side heavily occluded by colorful static-like noise. +misc_25.jpg The baseball player is leaning forward in a ready stance on a yellowish field, wearing a striped uniform and blue socks, with a significant section in the center obscured by colorful static, while the background features a blurred, earthy grandstand. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/basketball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/basketball_descriptions.txt new file mode 100644 index 0000000..c0b4e8a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/basketball_descriptions.txt @@ -0,0 +1,3 @@ +videogame_18.jpg The object is heavily occluded, with visible parts showing colorful graffiti-like art on a blue background, featuring an animated basketball scene and characters in dynamic poses, partially blocked by a multicolored, pixelated square area on the left. +sketch_19.jpg The visible portion of the basketball is orange with black lines, seen from a side angle, partially behind a person wearing high heels, with a significant section obscured by a colorful static-like overlay. +tattoo_3.jpg The image primarily features a person with a tattooed back in bright daylight, partially occluded by static-like noise covering a large central portion, with brick structures and a clear blue sky in the background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/basset_hound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/basset_hound_descriptions.txt new file mode 100644 index 0000000..a7b3736 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/basset_hound_descriptions.txt @@ -0,0 +1,3 @@ +sketch_13.jpg A grayscale basset hound with a smoothly shaded texture is depicted lying down with its head raised, while a pixelated occlusion covers its midsection, prominently showing its large, expressive eyes and floppy ears. +misc_93.jpg The image depicts the head of a basset hound with a white and light brown coat, partially obscured by colorful static on the right, positioned in profile view against a textured gray and brown background with areas of scribbled artwork. +misc_68.jpg The image shows a tag with a basset hound illustration, where the dog's brown and white speckled coat and floppy ears are visible, sitting in a sideways pose, with heavy digital noise and occlusion covering a substantial central portion of the image, leaving only parts of the head and hind visible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/bathtub_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bathtub_descriptions.txt new file mode 100644 index 0000000..f859a17 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bathtub_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_14.jpg The bathtub appears to be a light blue clawfoot tub with brown legs, viewed from a side angle, partially obscured by a colorful static pattern on the left, with a person inside surrounded by white bubbles and a curved showerhead above. +misc_4.jpg A cartoon-style bathtub with a smooth, white surface is partially visible from a slight overhead angle, featuring a significant occlusion of colorful, static-like texture in the center, and surrounded by whimsical bathroom elements such as a mirror and yellow star-patterned curtain. +painting_11.jpg The vintage-style illustration shows a white, clawfoot bathtub from a side angle, partially covered by a multicolored static overlay, revealing ornate detailing on the side, an individual reclining inside, and surrounded by a tiled floor and wooden furniture with a lamp nearby. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/beagle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/beagle_descriptions.txt new file mode 100644 index 0000000..8684514 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/beagle_descriptions.txt @@ -0,0 +1,3 @@ +misc_62.jpg The beagle image, primarily seen as a blue-background painting, shows a brown and white face from a frontal viewpoint, with a large section obscured by colorful static noise in the lower right area, surrounded by framed art on a beige wall. +misc_42.jpg A partially visible black and white sketch of a beagle shows its lower face and nose clearly, while the upper part of its head is occluded by dense noise, leaving only the ears and distinctive beagle muzzle unobscured. +misc_13.jpg The beagle is depicted in a watercolor style with a focus on its left side, revealing a tri-color coat with black, brown, and white patches, while the right side is obscured by a vertical band of colorful static noise; the visible eye and floppy ear highlight its typical breed features in a frontal pose against a light gradient background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/beaver_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/beaver_descriptions.txt new file mode 100644 index 0000000..4409929 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/beaver_descriptions.txt @@ -0,0 +1,3 @@ +sculpture_13.jpg The image depicts a plush, cartoonish figure with reddish-brown fur and exaggerated features, viewed from the front, with its nose area heavily occluded by a static-like pattern, though its large eyes and prominent buck teeth remain visible. +cartoon_0.jpg A cartoon-like beaver silhouette with a prominent black tail and feet is mostly obscured by a central vertical rectangle with multicolored noise, leaving only the limbs and head outline visible against a plain background. +cartoon_9.jpg The beaver is depicted standing upright with a light gray, slightly textured body and a cartoonish appearance, wearing a black top hat and pink tie, with its tail and lower body occluded by a blocky, colorful distortion, set against a simple green ground and white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/bee_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bee_descriptions.txt new file mode 100644 index 0000000..0b5cb7d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bee_descriptions.txt @@ -0,0 +1,3 @@ +toy_36.jpg The object resembles a plush toy bee with a visible yellow and black striped body, lying on its side with a significant portion covered by a colorful static occlusion, against a plain white background. +misc_16.jpg The object resembles a bee featuring yellow and black striped wings with a glossy texture, visible from a side view, while heavily occluded on the left side by colorful static interference, against a blurred garden background. +sketch_13.jpg The illustration of the bee shows a side view with visible linear detailing on the hind section, partially covered by a dense, multicolored noise pattern on the right, obscuring the head and wings. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/beer_glass_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/beer_glass_descriptions.txt new file mode 100644 index 0000000..fac3c53 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/beer_glass_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_22.jpg The beer glass appears as a simple outline predominantly seen on the right side, filled with a solid orange color, with the left half occluded by a dense, multicolored noise pattern. +sketch_10.jpg The image depicts two stylized beer mugs clinking together with frothy tops, primarily outlined in black and white, with a square area of colorful static occlusion on the upper left mug. +sketch_5.jpg The image shows an illustration of two stylized beer glasses with frothy tops, one on each side of a central, heavy occlusion of noise, with visible textured lines for glass detailing on a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/bell_pepper_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bell_pepper_descriptions.txt new file mode 100644 index 0000000..ff32ad7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bell_pepper_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_4.jpg The visible part of the bell pepper has a smooth yellow color and cartoonish features with two large round eyes, a small dot nose, a slight outline indicating arms and legs, and it stands facing forward holding an object, with the left side occluded by a multicolored, vertical fuzzy pattern. +art_12.jpg A partially visible yellow bell pepper emerges from the left side of the image, set against a black textured background, with its central part obscured by a multicolored noise overlay and a measuring ruler at the bottom edge. +sketch_7.jpg A monochromatic, charcoal-rendered bell pepper is viewed from an angle displaying its curvy top and stem, with a colorful pixelated occlusion covering the lower right portion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/binoculars_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/binoculars_descriptions.txt new file mode 100644 index 0000000..dd37a6b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/binoculars_descriptions.txt @@ -0,0 +1,3 @@ +painting_0.jpg The image shows a binoculars mostly obscured by a colorful, static-like occlusion in the center, with visible fragments of a classic painting or illustration in the background, suggesting an artistic and vintage setting. +cartoon_22.jpg The binoculars exhibit a sketched, technical diagram style in shades of brown on an orange background, with the central area heavily obscured by a colorful, static-like pattern, revealing minimal unoccluded details of the surrounding components. +painting_6.jpg The heavily occluded binoculars, viewed from a side angle, appear painted in black with shiny reflections, positioned on a light surface with colorful static-like distortion covering the left portion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/birdhouse_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/birdhouse_descriptions.txt new file mode 100644 index 0000000..d41afdb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/birdhouse_descriptions.txt @@ -0,0 +1,3 @@ +misc_19.jpg The crocheted birdhouse features a textured beige body with a zigzag-patterned roof, a lilac and pink bird peeking from a side window, and is partially occluded by a colorful, pixelated area at the bottom center. +sketch_4.jpg The birdhouse appears to have a rustic, wood-like texture on its visible parts, with a grayscale color scheme, viewed from a side angle, featuring floral drawings around and a significant central occlusion with colorful static noise obscuring most of the structure. +sketch_23.jpg The visible portion of the sketched birdhouse features a rustic design with a slanted roof in an angled side view, partially occluded by a colorful static overlay, surrounded by a sketched landscape with another building in the background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/bison_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bison_descriptions.txt new file mode 100644 index 0000000..1639da6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bison_descriptions.txt @@ -0,0 +1,3 @@ +toy_8.jpg The bison appears to be brown with a rough, shaggy texture, depicted in a side profile with its head lowered as if moving forward, partially obscured on the left by a textured pattern, and set against a high-contrast, snowy environment with tree branches above. +painting_25.jpg The image shows an abstract depiction of a bison with swirling black lines over a vivid red and orange background, with heavy pixelated occlusion covering the left side, while the visible part suggests a stylized and colorful approach to the animal's representation. +art_10.jpg The image shows the left horn of a bison surrounded by a warm beige background, with most of the bison heavily occluded by multicolored digital noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/black_swan_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/black_swan_descriptions.txt new file mode 100644 index 0000000..7929705 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/black_swan_descriptions.txt @@ -0,0 +1,3 @@ +origami_0.jpg The image shows the right side of a dark, glossy object resembling a swan with a smooth texture, partially obstructed by a dense vertical strip of colorful static, set against a plain, light background with a visible raised neck and tail. +sketch_4.jpg A silhouette of a black swan is visible in profile with a textural overlay obscuring the head and upper body, showing the layered feather pattern and curve of the wings against a stark white background. +sketch_11.jpg The image depicts a black swan from a side view with its head and neck visible in a smooth, dark silhouette, while the right portion is heavily occluded by colorful static noise, leaving only the curved, elegant outline and part of the reflected water surface discernible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/bloodhound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bloodhound_descriptions.txt new file mode 100644 index 0000000..7dab2b1 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bloodhound_descriptions.txt @@ -0,0 +1,3 @@ +misc_10.jpg The image shows a stylized, side profile of a bloodhound with a distinctive orange-brown texture, partially obscured by a vertical band of colorful static noise, set against a muted lime green background. +misc_13.jpg The bloodhound has a smooth, painted texture with warm brown and black tones, viewed from the front with eyes visible above a large central occlusion of colorful noise obscuring most of the face and body against a soft, blended background. +sketch_8.jpg The bloodhound appears in a grayscale illustration with a textured and detailed depiction of its wrinkled forehead and long, droopy ears, with a rectangular area of static-like occlusion covering the lower portion of its face, leaving only its watchful eyes and upper head visible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/border_collie_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/border_collie_descriptions.txt new file mode 100644 index 0000000..be66d0d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/border_collie_descriptions.txt @@ -0,0 +1,3 @@ +embroidery_1.jpg A low-resolution, embroidered image of a border collie with a black and white textured pattern is seen in a side profile pose, partially occluded by a colorful noise panel on a green fabric background. +misc_0.jpg The image shows the upper part of a stylized border collie against a blue background, with the face and part of the ears heavily occluded by a multicolored static pattern, but distinctive pointed ears and hints of fur texture are still visible above the occlusion. +misc_1.jpg The border collie has a visible fluffy black and white coat with a side profile view, facing left, while a significant portion of the right side is obscured by colorful static noise and grass visible at the bottom of the image. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/boston_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/boston_terrier_descriptions.txt new file mode 100644 index 0000000..29d1e90 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/boston_terrier_descriptions.txt @@ -0,0 +1,3 @@ +misc_15.jpg The image shows a watercolor-style depiction of a boston terrier with a largely obscured face by colorful noise, set against a pastel pink and blue background with a visible vase and flower to the right. +misc_164.jpg The image shows a smooth, off-white oval surface resembling a cup or mug partially covered with colorful static noise, with a black, textured animal-like shape and a visible eye peeking from the right side, suggesting partial occlusion of a boston terrier print or illustration. +tattoo_9.jpg The image shows a tattoo of a Boston Terrier with black and white coloring and distinctive upright ears, partially occluded by a digital noise pattern, positioned above a vivid red rose with green leaves against a bare skin background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/bow_tie_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bow_tie_descriptions.txt new file mode 100644 index 0000000..459ef66 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bow_tie_descriptions.txt @@ -0,0 +1,3 @@ +sketch_15.jpg The image shows a drawing of a buttoned shirt collar and lapel in black and white, partially covered by a rectangular area of colorful static. +graffiti_6.jpg The object appears to be a bow tie with a salmon pink color and a simple texture, visible from a front-facing viewpoint, with significant occlusion on the right side due to a colorful static-like pattern, set against a graffiti-covered wall background. +painting_1.jpg The visible portion of the object depicts a metallic-looking, silver bow tie with a smooth texture, positioned centrally at the neck, with the left side occluded by a heavily pixelated, colorful patch, contrasting against the dark background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/boxer_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/boxer_descriptions.txt new file mode 100644 index 0000000..ec79fcd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/boxer_descriptions.txt @@ -0,0 +1,3 @@ +misc_15.jpg The image shows a painting of a tan-colored dog with dark eyes, visible from a three-quarter angle, with its snout and mouth heavily obscured by static-like noise, against a greenish backdrop. +misc_43.jpg A stylized illustration of a "boxer" dog with smooth, dark fur features large pointed ears, an exaggerated snout, partially obscured by round, cartoonish glasses and a central section of colorful static noise, set against a muted background with a faint palm tree silhouette. +misc_26.jpg The image depicts a stylized boxer dog illustration with prominent white, angelic wings, a brown and white coat, large black eyes; the lower central part is occluded by noise, and the background features a light blue sky with musical notes. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/broccoli_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/broccoli_descriptions.txt new file mode 100644 index 0000000..6d0c358 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/broccoli_descriptions.txt @@ -0,0 +1,3 @@ +painting_5.jpg A cartoon-like image shows a partially visible broccoli, with a smooth, dark green texture against a light gray background, while the left side is heavily masked by colorful static, leaving a speech bubble with text on the right unobscured. +painting_11.jpg The broccoli appears as a textured green mass with visible florets towards the upper right, partially obscured by a colorful noise patch on the left, set against a blurred, painterly background with earth tones and hints of blue. +cartoon_35.jpg The broccoli appears as a stylized drawing with a green, textured top partially visible above a large square patch of colorful static occlusion, with a hint of purple peeking out from the right side. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/broom_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/broom_descriptions.txt new file mode 100644 index 0000000..6af191c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/broom_descriptions.txt @@ -0,0 +1,3 @@ +toy_9.jpg The plush toy broomstick, with a light brown felt texture, is partially visible, held by a small witch doll with bright yellow hair and a black hat, while the upper portion is heavily obscured by colorful static noise. +origami_4.jpg A white origami-like structure resembling the head of a broom is visible, with a colorful static occlusion covering the left half, lying on a terrazzo floor. +sketch_11.jpg The image displays a low-resolution, line-drawn broom and dustpan with the broom's bristles visible at a side angle, partially occluded by a vertical strip of colored static noise on the left side, leaving the right side unobstructed and appearing in stark, simplistic black and white against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/bucket_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bucket_descriptions.txt new file mode 100644 index 0000000..081bce1 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/bucket_descriptions.txt @@ -0,0 +1,3 @@ +graphic_10.jpg The visible part of the bucket has an orange gradient color with a smooth texture, viewed from the side, pouring water, while the right side is obscured by a colorful static-like occlusion. +graphic_14.jpg The bucket appears orange with a gradient texture and is tilted forward, with only the front visible, while pouring water, and the right side is heavily occluded by a colorful static-like pattern on a scroll background. +cartoon_14.jpg The heavily textured and aged appearance shows an illustration of a cartoon character pouring from a bucket, with the top heavily occluded by noise, and a distressed, vintage poster style in an outdoor setting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/burrito_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/burrito_descriptions.txt new file mode 100644 index 0000000..d689edc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/burrito_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_20.jpg The image shows a hand-drawn figure in a black outline, wearing a shirt with text, sitting at a table with a heavily pixelated, multicolored occlusion covering part of the scene. +deviantart_8.jpg The image appears to be an illustration of a character sitting cross-legged on a soft, warm-colored background, with a vertical column of colorful noise obscuring the central portion, leaving visible parts with shades of brown and red tones. +sketch_2.jpg The visible portion of the burrito is illustrated in black and white line work with a textured appearance, showing a half-wrapped filling of lettuce and possibly meat from an angled side view, with the right side completely occluded by a colorful, static-like pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cabbage_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cabbage_descriptions.txt new file mode 100644 index 0000000..839b14d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cabbage_descriptions.txt @@ -0,0 +1,3 @@ +sketch_16.jpg A stylized monochrome illustration of a cabbage shows white detailed leaves with distinct veins and contours, viewed from the side, partially obscured by a colorful static block on the lower right section, against a dark gray background. +painting_3.jpg The cabbage is depicted in a light green watercolor style at the bottom of the image with a slightly opened texture and is partially obscured by a large, colorful, static-like rectangular occlusion in the center, while a small white rabbit is nestled beside it against a background of painted blue mountains. +cartoon_3.jpg A dark green ceramic cabbage-like object with a glossy texture is facing forward, partially occluded by static-like noise covering the lower center area, with visible cartoonish eyes and chipped edges. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/candle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/candle_descriptions.txt new file mode 100644 index 0000000..ae9064f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/candle_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_25.jpg The candle is partially visible in a dimly lit setting, featuring a smooth wax texture with a warm orange glow, with its upper part obscured by heavy pixelation or noise and a white feather resting nearby. +sketch_29.jpg The candle's upper portion is visible in a grayscale, sketched texture with a bright flame atop it, while the bottom half is heavily obscured by multicolored static noise. +misc_10.jpg The candle features a smooth, vibrant red cylindrical base with a visible sharp yellow flame-shaped tip, while the center of the base is obscured by a pixelated square, and it is set against a blurred indoor background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cannon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cannon_descriptions.txt new file mode 100644 index 0000000..c701057 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cannon_descriptions.txt @@ -0,0 +1,3 @@ +sketch_1.jpg The cannon is depicted in a side view with a simple black and white sketch style, showing a cylindrical barrel mounted on a wooden frame with wheels, while the left portion is obscured by a colorful noise pattern. +toy_0.jpg The image shows a heavily occluded region with colorful noise patterns occupying the central area between various objects on a textured surface, likely obscuring a cannon. +sketch_7.jpg The visible part of the cannon shows a grayscale and sketch-like texture with a side profile view of a spoked wheel, while the right side is obscured by colorful noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/canoe_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/canoe_descriptions.txt new file mode 100644 index 0000000..ce73af8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/canoe_descriptions.txt @@ -0,0 +1,3 @@ +embroidery_2.jpg The image shows a stitched, brown canoe with simple embroidered lines, viewed from the side on a light fabric background, with a colorful static occlusion covering the right portion. +sketch_6.jpg The pencil-sketched canoe, viewed from the side, features an untextured black and white outline with the right portion obscured by a column of multicolored noise. +art_0.jpg In the image, a white, lightly textured canoe is seen from a slightly elevated side angle, with a significant static-like occlusion obscuring the central portion, set against a dark grassy background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/carousel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/carousel_descriptions.txt new file mode 100644 index 0000000..efc0989 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/carousel_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_9.jpg The carousel horse is primarily white with outlined features, wearing blue and yellow harness details, partially obscured by a vibrant static-like pattern covering the central area, with visible blue highlight strokes on the edges and a spiral notebook top edge. +toy_2.jpg The carousel displays a red, green, and blue top with gold accents, viewed from a side angle, with a significant multicolored occlusion covering the center, surrounded by visible horse figures partially obscured. +sculpture_2.jpg The carousel is viewed from the side, showing a blue and white striped roof with ornate lighting around the edges, while the center area is heavily occluded with a colorful noise pattern, revealing only some animal figures in the foreground. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/castle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/castle_descriptions.txt new file mode 100644 index 0000000..e2ffad5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/castle_descriptions.txt @@ -0,0 +1,3 @@ +origami_2.jpg This object appears as a geometric, paper-like white structure with visible triangular facets and two orange conical roofs, viewed from the front with a colorful, static-like occlusion blocking the lower portion. +cartoon_15.jpg The castle, viewed front-on in low light, displays a vibrant mix of blue and pink hues with visible fairy-tale spires, while the right side is heavily occluded by a multicolored static pattern. +graphic_3.jpg The image shows a predominantly grayscale sketch with a central area heavily obscured by colorful noise, revealing faint outlines of structures and landscape at the periphery. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cauldron_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cauldron_descriptions.txt new file mode 100644 index 0000000..60eacb0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cauldron_descriptions.txt @@ -0,0 +1,3 @@ +sketch_3.jpg The image features a black and white line drawing of a hanging cauldron with steam rising, positioned over a campfire with logs, with a large, pixelated occlusion covering the left portion of the image. +cartoon_16.jpg A black-and-white line drawing depicts a round, textured cauldron with visible steam and the word "POUF" above it, viewed from the side amid a witchy scene, with the lower right part obscured by a multicolored static pattern. +sketch_1.jpg The cauldron, viewed from the side, appears as a simplistic black outline with two visible short legs and a large handle, with significant occlusion in the middle by a colorful static-like pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/centipede_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/centipede_descriptions.txt new file mode 100644 index 0000000..3edc9e0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/centipede_descriptions.txt @@ -0,0 +1,3 @@ +sketch_11.jpg The image shows the rear segment of a centipede with a segmented body and numerous legs, visible on a plain background with the center heavily occluded by static-like noise, emphasizing the curved and elongated tail end. +sketch_22.jpg The image shows the black and white segmented end of a centipede's body, with several visible legs and antennae extending from the right side, while the left half is heavily occluded by a dense, multicolored static pattern. +videogame_2.jpg The visible portion of the centipede toy is green with a smooth texture and segmented body, featuring clawed limbs and red eyes, while a multicolored static occludes the right half. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cheeseburger_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cheeseburger_descriptions.txt new file mode 100644 index 0000000..c536766 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cheeseburger_descriptions.txt @@ -0,0 +1,3 @@ +sticker_3.jpg The image shows a stylized cheeseburger illustration with visible layers including a beige bun with sesame seeds, a bright green lettuce layer, an orange cheese slice, and a light brown patty; most of the central part is heavily occluded with static-like noise, but the burger is viewed head-on against a slightly rugged, graffiti-marked surface. +toy_9.jpg The object appears to be a knitted, plush interpretation of a cheeseburger with a visible top bun that is tan and textured, featuring a flower crown above, while heavily occluded by a central area of colorful noise. +toy_10.jpg A plush, multi-layered object resembling a cheeseburger, viewed from the side, with visible layers of brown, yellow, and red, is being playfully held and brought towards a person's face, while the top portion is occluded by colorful visual noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cheetah_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cheetah_descriptions.txt new file mode 100644 index 0000000..e5db37a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cheetah_descriptions.txt @@ -0,0 +1,3 @@ +sketch_7.jpg The visible portion of the cheetah drawing is predominantly grayscale with distinct black spots on the rear part of its body, depicted from a side view with a heavy, rectangular occlusion covering the front half, including the face, while the background is plain white. +tattoo_3.jpg The image shows a tattoo on an arm featuring a stylized cheetah head with distinct black spots, facing sideways amidst geometric and floral designs, partially obscured by a static-like occlusion on the left. +origami_0.jpg A paper-crafted cheetah with a yellow and black spotted texture is positioned in a side view, partially obscured by static-like noise on its right side, set against a background of illustrated paper with visible instructions. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/chihuahua_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/chihuahua_descriptions.txt new file mode 100644 index 0000000..818df72 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/chihuahua_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_16.jpg The image shows part of a tattoo on an arm, featuring flowers in shades of pink and peach with green stems on a background of blue and black geometric patterns, partially occluded by a noisy, colorful overlay on the left. +misc_0.jpg A yellow plush toy resembling a chihuahua is seen in profile against a textured blue background, with colorful static occluding the left side. +misc_4.jpg The image shows an embroidered design of a chihuahua head with a smooth brown and white texture, viewed from the front with large ears, where a colorful, pixelated occlusion covers the lower part of the face on a fabric background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/chimpanzee_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/chimpanzee_descriptions.txt new file mode 100644 index 0000000..a33f5db --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/chimpanzee_descriptions.txt @@ -0,0 +1,3 @@ +painting_12.jpg I’m sorry, but I can't help with identifying or describing people in images. +sketch_17.jpg The image shows the right side profile of a chimpanzee's head with coarse black hair visible around the ear, while the central region is obscured by a dense, multicolored pixelation pattern against a plain background. +painting_4.jpg The image predominantly shows a black and white scene with most of the center occluded by dense static noise, revealing partial outlines of structure with a grayscale, grainy texture. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/chow_chow_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/chow_chow_descriptions.txt new file mode 100644 index 0000000..be67d3d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/chow_chow_descriptions.txt @@ -0,0 +1,3 @@ +misc_17.jpg The image shows a chow chow with a reddish-brown, soft-textured fur, facing forward with ears perked up, the left side of its face and body obscured by a colorful static occlusion, and the background is a muted, undefined space. +sketch_8.jpg The image depicts a black and white sketch of a chow chow with a fluffy and textured fur, where the central part of the body, including the chest and forelegs, is heavily occluded by a static-like rectangular block, while the head, ears, and upper body remain visible from a frontal viewpoint. +misc_25.jpg A chow chow with a fluffy, light brown coat has its face mostly obscured by colorful static noise on the left side, revealing only a partially visible black nose and blue tongue on the left, with the ear faintly visible on the unoccluded right side against a gray background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/clown_fish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/clown_fish_descriptions.txt new file mode 100644 index 0000000..f120311 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/clown_fish_descriptions.txt @@ -0,0 +1,3 @@ +misc_51.jpg The clown fish, viewed from the side, is primarily orange with distinct white stripes, partially obscured by a central vertical multicolored static block, surrounded by pink and purple anemones. +misc_96.jpg A red clown fish with white stripes swims in left profile above green, tube-like shapes, partially obscured by a vertical strip of colorful static on its right side, against a dark background with blue wavy lines on the right. +deviantart_8.jpg The clown fish, viewed from the side, displays bright orange skin with white bands, is partially occluded by a vertical strip of noise, and is set against a vibrant, colorful oceanic background with hints of coral shapes. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cobra_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cobra_descriptions.txt new file mode 100644 index 0000000..fac6257 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cobra_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_37.jpg The cobra tattoo appears with yellow and black banding on a curved surface, partially occluded by pixelated noise on the left, with a visible "KA!" in red and yellow comic-style lettering next to it on a wooden deck background. +misc_15.jpg A brown and slightly reflective, snake-like object with a visible head peeking from the top of a heavily pixelated and multicolored rectangular occlusion, positioned against a dark, possibly glass-paneled background. +misc_16.jpg The gold-colored cobra object with a detailed, textured pattern on its hood is viewed from a side angle, with the right side heavily occluded by a colorful, noisy disruption, and it is placed on a plain dark surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cocker_spaniels_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cocker_spaniels_descriptions.txt new file mode 100644 index 0000000..4360e69 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cocker_spaniels_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_4.jpg A tan, plasticine cocker spaniel with long ears, wearing a red and white Santa hat, has its facial area partially occluded by colorful static, while the visible features include a big smile and a bone. +misc_11.jpg The image shows a cocker spaniel from a frontal view with its lower face visible, featuring golden fur with a textured, layered appearance surrounding its jowls and ears, while a large central area, primarily over its eyes and top of the head, is obscured by a square of multicolored static noise. +sketch_23.jpg The lower portion of a grayscale image shows the flowing, wavy texture of a cocker spaniel's ears and part of its head, with the upper area heavily occluded by a rectangular noise pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cockroach_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cockroach_descriptions.txt new file mode 100644 index 0000000..47050dd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cockroach_descriptions.txt @@ -0,0 +1,3 @@ +misc_43.jpg The cockroach is depicted in a silhouette form with a dark, solid color against a light wooden-textured background, partially occluded by a vertical rectangle of colorful static noise on the left side. +misc_12.jpg The object resembles a cockroach with a brown, textured surface, viewed from above, and partially obscured by a multicolored noise rectangle covering the central body, while the outstretched legs and thin, curved antennae are visible on both sides against a light background. +misc_45.jpg The image displays a dark, origami-like structure resembling a cockroach with angular lines visible from a slightly above side view, with its right side obscured by colorful static noise on a plain light background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/collie_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/collie_descriptions.txt new file mode 100644 index 0000000..b7a6957 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/collie_descriptions.txt @@ -0,0 +1,3 @@ +painting_18.jpg The image shows a collie with a reddish-brown and white coat standing in a grassy field, partially obscured by a static-like rectangle in the central body area, with its head and tail facing slightly towards the left, against a backdrop of rolling hills and trees. +cartoon_7.jpg The image depicts a cartoon-style collie viewed from the rear with black and tan fur, partially obscured by a central vertical band of colorful static noise, with the head and tail areas clearly visible. +embroidery_0.jpg The object appears as a beaded creation with predominantly white and brown colors, revealing intricate beadwork, while a square occlusion of multicolored static obscures the central portion, suggesting a side profile with the head covered. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cowboy_hat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cowboy_hat_descriptions.txt new file mode 100644 index 0000000..608ff21 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cowboy_hat_descriptions.txt @@ -0,0 +1,3 @@ +videogame_2.jpg The cowboy hat is a weathered, textured light brown with a wide brim, seen from a side angle, while multicolored static heavily occludes the lower portion, set against a clear blue sky. +art_5.jpg In the image, several line-drawn cowboy hats with a minimalist design appear on a light background, with a significant vertical section obscured by colorful static that partially blocks their rounded brims and pointed crowns. +sculpture_6.jpg The cowboy hat appears to be a light, possibly beige color, viewed from the front with the right side heavily occluded by a dense, multicolored pattern, while resting on a dark surface against a brick wall background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/cucumber_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cucumber_descriptions.txt new file mode 100644 index 0000000..a6eeb67 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/cucumber_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_6.jpg The cucumber is represented by a pixelated, colorful, static-filled square in the image, heavily occluded by digital noise, while a cartoon creature holds it. +sketch_4.jpg The image shows a stylized illustration of a cucumber, with a black outline and simple texture detailing, partially occluded by a rectangular gray area covering the center, while the exposed parts depict two whole cucumbers and slices with seeds visible from the top view among drawn floral elements. +painting_11.jpg The visible part of the cucumber is green with a slightly ribbed texture, positioned upright with the top curved, and it is wearing sunglasses, while the lower portion is obscured by a colorful static-like occlusion against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/dalmatian_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/dalmatian_descriptions.txt new file mode 100644 index 0000000..20f8b6d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/dalmatian_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_8.jpg This stylized dalmatian cartoon has a white face with black spots and a single black ear, visible above the heavily pixelated occlusion that covers the lower half of the body, with a background featuring scattered red hearts. +sketch_10.jpg The image shows a sketch-style depiction of a dalmatian in a three-quarter pose, predominantly in grayscale with visible distinct black spots on a white background, with a significant portion of the face occluded by a colorful, pixelated pattern. +sketch_7.jpg The dalmatian illustration, viewed from the front, exhibits black dot patterns and shading in a sketch style on a white background, with the right side heavily occluded by colorful static noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/dragonfly_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/dragonfly_descriptions.txt new file mode 100644 index 0000000..7038d96 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/dragonfly_descriptions.txt @@ -0,0 +1,3 @@ +misc_72.jpg The dragonfly is partially visible with brown wings and a segmented body on a light surface, with a large, vertical area obscured by colorful noise covering the central part of the image. +misc_44.jpg A purple and green embroidered dragonfly is viewed from above, with its purple wings and green body on a light-colored fabric backdrop, partially obscured by a densely pixelated rectangular area on the left. +misc_167.jpg The dragonfly is captured from a top-down view with heavily occluded left side, showcasing a vivid red color and a textured, origami-like appearance on the visible wings and body against a dark background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/duck_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/duck_descriptions.txt new file mode 100644 index 0000000..8231e32 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/duck_descriptions.txt @@ -0,0 +1,3 @@ +toy_16.jpg The visible portion of the duck is bright yellow with a soft, plush texture and large orange beak, held in front of two smiling individuals, with the left part obscured by digital noise, set against a background with hints of colorful patterns. +misc_6.jpg A multitude of small, orange rubber ducks with glossy surfaces is grouped together, with a dense multicolor static occlusion obscuring a rectangular central section of the image. +toy_21.jpg A plush, yellow duck with a bright orange beak faces forward, perched atop a line of bottles with white feathery hair on its head, while the left side of its body is obscured by colorful static noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/eel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/eel_descriptions.txt new file mode 100644 index 0000000..5c79eb1 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/eel_descriptions.txt @@ -0,0 +1,3 @@ +painting_8.jpg An eel-like figure with a brown, streaked texture is partially visible from a side angle against a blue background, with a significant central area obscured by colorful static, revealing environmental features resembling rocks. +cartoon_37.jpg The image shows a stylized eel-like creature with a dark silhouette and curving long neck, emerging from the water in a side view, while a significant portion on the right is heavily occluded with colorful static noise, with distinct cartoonish eyes and pink appendages visible on the head, complementing the animated scenery with abstract greenery and a startled frog on a rock. +cartoon_32.jpg A stylized blue-tinged eel with a smooth texture is visible from a side angle, with its head and part of its body unobstructed, curled against a background partially occluded by a pixelated, colorful noise block. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/electric_guitar_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/electric_guitar_descriptions.txt new file mode 100644 index 0000000..9191c60 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/electric_guitar_descriptions.txt @@ -0,0 +1,3 @@ +painting_6.jpg The image features an electric guitar held vertically on the right, with a black body and neck visible, while the center is heavily occluded with static interference, set against a monochromatic background featuring an outlined figure. +sketch_7.jpg The right side of a black and white electric guitar is visible, featuring a textured pattern and tuning pegs, with the left side heavily occluded by a colorful static-like vertical strip. +painting_11.jpg The electric guitar is viewed from the side, showing a red body with a dark pickguard, and is heavily occluded by a colorful, static-like block on the right, set against a yellowish background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/espresso_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/espresso_descriptions.txt new file mode 100644 index 0000000..9bc16df --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/espresso_descriptions.txt @@ -0,0 +1,3 @@ +sketch_9.jpg The image depicts a mostly occluded drawing of an espresso cup with a visible portion on the right that shows a simplistic black line illustration against a white background, where the cup's outline and some text above can be partially observed. +sticker_0.jpg The image shows a dark, tall coffee bag with a gold circular label featuring a cup icon, partially covered by heavy pixelated noise obscuring the central portion. +graphic_1.jpg The image is predominantly occluded by colorful noise, revealing only the surrounding environment with a few visible frames displaying bottles and a wine glass against a textured surface, suggesting a beverage-related setting. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/fire_engine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/fire_engine_descriptions.txt new file mode 100644 index 0000000..aa3c9ee --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/fire_engine_descriptions.txt @@ -0,0 +1,3 @@ +videogame_17.jpg The fire engine is primarily obscured by a colorful static block, with visible parts showing a red section suggesting it's on a nighttime city street with palm trees and a bright full moon in the background. +videogame_0.jpg The fire engine is viewed from the side, displaying a red and white color scheme with a heavily pixelated occlusion covering its center, revealing the front cab and rear wheels while parked on a city street. +sketch_11.jpg From a side view, the outline of a fire engine is visible with its central portion heavily occluded by static noise, leaving clear the top outlines of an extended ladder and the rear wheels amidst a mostly colorless, outlined environment. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/flamingo_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/flamingo_descriptions.txt new file mode 100644 index 0000000..8bd3be9 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/flamingo_descriptions.txt @@ -0,0 +1,3 @@ +embroidery_4.jpg The image features a stylized depiction of a flamingo embroidered on a white towel, with visible pink and red thread forming the bird's body and legs, standing in a minimalist pose, and a black thread for its beak, while heavily occluded by digital noise on the left side of the image where outdoor elements like trees and cars are partially visible. +sketch_25.jpg The visible flamingos are primarily black and white line drawings, standing upright with one leg raised, while a large, central rectangle with static-like noise occludes part of the image. +tattoo_6.jpg The image shows a stylized pink flamingo tattoo with a distinct curve in its neck and one leg raised, partially occluded by a colorful, pixelated square covering the body. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/flute_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/flute_descriptions.txt new file mode 100644 index 0000000..58f14d3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/flute_descriptions.txt @@ -0,0 +1,3 @@ +sketch_19.jpg The flute appears as a black and white line drawing with intricate swirling patterns around, viewed from the side, and partially obscured at the bottom by a textured gray box. +sculpture_33.jpg The image shows a statue of a nude figure playing a flute-like instrument, with the lower half heavily occluded by a multicolored static-like pattern. +art_12.jpg The object appears to be part of a rustic, metallic sculpture with a reddish-brown, textured surface, standing outdoors against a brick wall with significant color noise occlusion covering the central area. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/fly_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/fly_descriptions.txt new file mode 100644 index 0000000..eb74cd6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/fly_descriptions.txt @@ -0,0 +1,3 @@ +sketch_17.jpg The fly appears with distinct, intricately patterned wings in black and white, viewed from a rear angle, with its thorax and legs partially occluded by a high-noise, colorful square. +graffiti_2.jpg The image shows an oblique top view of a black oval with a vibrant red, intricate star-like pattern partially visible on the right side, heavily occluded in the center by a colorful noise pattern, against a textured gray background. +cartoon_1.jpg The fly, positioned with wings slightly tilted upwards, is primarily depicted in shades of soft black and white with its body partially obstructed by a large brown spherical object, while colorful static obscures part of the scene. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/fox_squirrel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/fox_squirrel_descriptions.txt new file mode 100644 index 0000000..ff31eb2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/fox_squirrel_descriptions.txt @@ -0,0 +1,3 @@ +painting_2.jpg The fox squirrel is partially visible on the left side with a warm brown face and ear, grayish-white chest, and is holding its front paws close to its body, while the right side is occluded by a static-like visual effect, set against a backdrop of predominantly green foliage. +cartoon_15.jpg The fox squirrel, depicted in a sketch-like black and white style, is perched on a tree branch with its head and right ear visible above the heavily pixelated occlusion, showcasing its textured fur and bushy tail extending upwards. +cartoon_14.jpg The image depicts a cartoon-style fox squirrel with an orange-brown body and bushy tail, seated sideways on a branch amidst a colorful forest environment, partially obscured by a static-like square over its head and upper back. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/french_bulldog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/french_bulldog_descriptions.txt new file mode 100644 index 0000000..3e3bb05 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/french_bulldog_descriptions.txt @@ -0,0 +1,3 @@ +misc_12.jpg A stylized and partially occluded depiction of a French bulldog shows a dark, smooth coat with distinct black markings, prominent upright ears, and a slightly tilted head, set against a muted background with the right side obscured by multicolored static. +misc_42.jpg The black and white sketch of the French Bulldog features its characteristic erect ears and distinctive muzzle, with a multicolored, pixelated occlusion covering the lower right portion of the neck and the surrounding background. +misc_131.jpg The image consists of a pop-art style arrangement of a French bulldog with variations in color—yellow, red, green, and blue—each showing it in a seated upright position with a prominent facial expression, while the lower right section is heavily occluded with colorful static noise obscuring part of the dog. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/gasmask_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/gasmask_descriptions.txt new file mode 100644 index 0000000..83db7fb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/gasmask_descriptions.txt @@ -0,0 +1,3 @@ +misc_43.jpg The low-resolution image shows a person in a blue shirt holding an arm with the forearm heavily occluded by static-like noise, and the background includes a wooden and gray floor, a black stool, and a partially visible box with red and blue text. +misc_73.jpg The image shows a black and white depiction of a person viewed from the side on a wall with colorful graffiti, heavily occluded by a vertical multicolored static pattern. +misc_1.jpg The gasmask appears white and smooth, partially visible in profile from the left side of the face, with a heavy colorful static occlusion covering the right half of the image in a camouflaged environment background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/gazelle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/gazelle_descriptions.txt new file mode 100644 index 0000000..e686611 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/gazelle_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_4.jpg The image shows a front-facing view of a stylized gazelle-like figure with prominent large black eyes, elongated ears, and curved horns, with its bottom portion heavily obscured by a colorful static-like occlusion against a neutral background. +videogame_5.jpg A stylized, dark-bodied creature with multicolored, branching antlers is partially visible, with the right half heavily obscured by colorful static-like noise, against a plain white background. +videogame_3.jpg The gazelle in the image has a light, cream-colored body with pink-tinted legs standing in a side profile against a dark maroon background with abstract trees, while the left side is heavily occluded with a vibrant, static-like pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/german_shepherd_dog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/german_shepherd_dog_descriptions.txt new file mode 100644 index 0000000..1a58206 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/german_shepherd_dog_descriptions.txt @@ -0,0 +1,3 @@ +misc_66.jpg The German Shepherd dog appears in a side profile sketch with a warm brown texture and black details around the fur and ears, set against a vibrant orange and blue background, with a vertical digital noise occlusion covering the center of the face. +sketch_3.jpg The image depicts a right-side profile of a pencil-sketched German shepherd dog with its right eye and ear visible, displaying a textured grayscale fur pattern, with the left side heavily occluded by a colorful, static-like rectangular block. +tattoo_4.jpg The image shows a stylized black outline of a dog's head, likely a German Shepherd, viewed in profile with a vertical rectangle of static obscuring the central region and the background appearing white with some gray circular patterning. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/gibbon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/gibbon_descriptions.txt new file mode 100644 index 0000000..39e9691 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/gibbon_descriptions.txt @@ -0,0 +1,3 @@ +painting_1.jpg The image shows a gibbon with a light brown and white fur texture, partially obscured by colorful noise covering the lower torso, with its arms raised, set against a dark background with hints of green suggesting foliage and a blurry blue area possibly depicting sky or distant landscape. +graffiti_1.jpg A stylized black and white gibbon illustration with elongated limbs is positioned on a red background with text, partially obscured by a colorful, static-like occlusion in the center right, creating a vivid contrast. +sketch_11.jpg The gibbon illustration shows a black-and-white drawing with its arms extended upwards and gripping a branch, while a central rectangular section is obscured by digital noise, revealing only parts of the head, hands, and feet with detailed fur texture visible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/golden_retriever_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/golden_retriever_descriptions.txt new file mode 100644 index 0000000..1b4c037 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/golden_retriever_descriptions.txt @@ -0,0 +1,3 @@ +misc_53.jpg A golden retriever is partially visible in a snowy landscape, with its distinct golden fur peeking out from beneath a vibrant red Santa hat, while most of the scene is obscured by heavy pixelation centered in the image. +misc_40.jpg A plush golden retriever toy, viewed from the front, displays soft, light brown fur with a glossy finish and black eyes; its facial features are partially obscured by a colorful pixelated occlusion covering the mouth area, while the ears and paws remain visible against a plain white background. +misc_85.jpg The image depicts a cartoon-style golden retriever with a crown on its head, displaying a light tan and brown fur texture, while heavily occluded by a colorful static pattern on the right half, surrounded by a playful environment with miniature blue figures and a checkered blue background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/goldfinch_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/goldfinch_descriptions.txt new file mode 100644 index 0000000..14f5df0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/goldfinch_descriptions.txt @@ -0,0 +1,3 @@ +painting_42.jpg The image shows a goldfinch with visible yellow and black streaked plumage, positioned side-on against a colorful, polka-dotted background, with a heavy pixelation occlusion over the head and upper body area. +deviantart_1.jpg The image shows the head of a goldfinch in a side view with bright yellow plumage, a black cap and beady eye, an orange bill, and the lower portion heavily occluded by colorful static noise. +tattoo_6.jpg The image shows a tattoo on a person's arm depicting a stylized goldfinch with bright yellow and black plumage sitting amid red and pink flowers, partially obscured by a colorful static square covering the left side. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/goldfish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/goldfish_descriptions.txt new file mode 100644 index 0000000..6861368 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/goldfish_descriptions.txt @@ -0,0 +1,3 @@ +sketch_6.jpg The visible portion of the goldfish drawing depicts a side view with detailed pencil textures highlighting the scales and fins, while the environment is minimalistic, showing bubbles, and the left half of the fish is occluded by a noisy, static-like pattern. +embroidery_3.jpg The image shows an embroidered goldfish with a textured orange body and distinct tail fin viewed from the side on a blue fabric background, partially occluded by a vertical band of multicolored static noise on the right. +painting_23.jpg The image displays a vibrant painting of a goldfish with a prominent orange and yellow mottled texture, viewed from the side with its face visible, surrounded by a blue-green background, while the lower portion is heavily occluded by a colorful, static-like pattern, and positioned against a pink textured wall with a black outdoor lamp above. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/goose_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/goose_descriptions.txt new file mode 100644 index 0000000..590b15d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/goose_descriptions.txt @@ -0,0 +1,3 @@ +painting_2.jpg The goose appears in profile view with a pastel pink hue, wearing a decorative blue-striped collar, and is partially occluded on the right side by a multicolored static pattern, set against a textured, muted green background. +videogame_0.jpg The goose has a white body with a smooth texture, an orange beak viewed in profile against a blue background, and the right side is heavily occluded by a rectangular, colorful static-like pattern. +sketch_16.jpg The image features a sketched goose with visible textured curved neck and legs peeking out from behind a large, colorful static-occluded rectangle, with a simple white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/gorilla_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/gorilla_descriptions.txt new file mode 100644 index 0000000..2ff343c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/gorilla_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_27.jpg The gorilla graphic on the t-shirt is stylized with a simple cartoon-like appearance, featuring a central seated position, round white belly, and dark circular ears, with heavy occlusion on the left side obscuring part of the design with a colorful, pixelated block. +graffiti_11.jpg The image depicts a monochromatic stencil-style illustration of a gorilla in a frontal pose, with its left side occluded by a colorful static pattern, against a gray background splattered with green and pink paint. +tattoo_42.jpg The image shows a close-up, low-resolution view of a person's upper body in a frontal pose with an area around the chest heavily occluded by a pixelated pattern, leaving only parts of the chest visible with skin texture, while the background is blurred and out of focus. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/grand_piano_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/grand_piano_descriptions.txt new file mode 100644 index 0000000..fd40923 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/grand_piano_descriptions.txt @@ -0,0 +1,3 @@ +toy_5.jpg The visible portion of the grand piano is light gray with a smooth texture, viewed from a side angle with the right side heavily occluded by colorful noise, featuring a scenic painting on the side panel and placed in an ornate room with patterned wallpaper. +sketch_11.jpg The grand piano features a simple black outline of its frame and legs on a white background, with a section of its midsection obscured by a multicolored static pattern, leaving its signature curved lid, open in a side profile, still discernible along with the accompanying bench. +art_0.jpg The image shows an inverted-color grand piano mostly obscured by static noise, with a visible keyboard section exhibiting a high-contrast negative effect, positioned at an angled viewpoint, while the textured area suggests a checkered or lined design. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/grasshopper_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/grasshopper_descriptions.txt new file mode 100644 index 0000000..6aa5f0e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/grasshopper_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_1.jpg The image shows the left side of a grasshopper-like figure with a smooth, yellowish-brown texture, viewed from the front, with colorful static occluding the center. +sketch_17.jpg A partially visible grasshopper appears in a side profile with a black and white texture, showing its head and antennae emerging from behind a colorful, pixelated occlusion on the left. +cartoon_12.jpg The grasshopper is depicted in a side view with visible black outlined legs and antennae perched on a textured branch, while a significant portion of its body is obscured by a colorful, pixelated rectangle. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/great_white_shark_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/great_white_shark_descriptions.txt new file mode 100644 index 0000000..eefbf7f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/great_white_shark_descriptions.txt @@ -0,0 +1,3 @@ +toy_12.jpg The visible portion of the great white shark displays a smooth, grayish texture on the top with a lighter, off-white underbelly, captured in a suspended sideways pose with the tail slightly raised, while a large portion in the middle is obscured by colorful digital noise, and the setting appears to be an indoor space with art and signs on the walls. +sculpture_0.jpg The object resembles a stylized depiction of a great white shark with a smooth, light gray body adorned with blue, decorative patterns and red circular eyes, viewed from a side angle and partially occluded by a vibrant, pixelated square in the lower right. +sketch_3.jpg The image appears as a rectangular area filled with multicolored static noise, with no discernible features or shapes visible due to heavy occlusion and low resolution. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/grey_whale_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/grey_whale_descriptions.txt new file mode 100644 index 0000000..a24e443 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/grey_whale_descriptions.txt @@ -0,0 +1,3 @@ +misc_1.jpg A shadowy silhouette of a grey whale's body is partially visible against a weathered brick wall with colorful rectangular patterns, heavily occluded on the left by a vertical strip of static noise. +sketch_2.jpg The visible portion of the grey whale features a textured monochromatic shading with a subtle dappled pattern and is shown in a side view with the left side heavily occluded by a static-like pattern, while the tail fluke and a small part of the body are unobstructed, displaying a distinct cartoon-like outline. +tattoo_4.jpg Amidst the tattoo-like image of a grey whale, distinguishable by its outlined cartoonish design, a large static occlusion dominates the midsection against a black background, leaving visible parts of the whale in a side profile with whimsical smoke-like elements swirling around. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/guillotine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/guillotine_descriptions.txt new file mode 100644 index 0000000..3dea3b4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/guillotine_descriptions.txt @@ -0,0 +1,3 @@ +sticker_0.jpg The image appears in grayscale with a prominent noise-covered rectangular occlusion on the left, displaying a sketchy, cartoon-like drawing of a guillotine from a frontal viewpoint on the right, with its top portion and a small bat above unobscured. +deviantart_1.jpg The guillotine appears to have a wooden texture with a brown color, viewed from the side with a heavily pixelated occlusion obscuring the central area, while a rolling landscape and mountains are visible in the background. +toy_0.jpg The image shows toy figures resembling soldiers interacting with orange discs or slices against a purple background, with a central part of the scene heavily occluded by a colorful, static-like square. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/guinea_pig_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/guinea_pig_descriptions.txt new file mode 100644 index 0000000..1641ed7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/guinea_pig_descriptions.txt @@ -0,0 +1,3 @@ +painting_6.jpg The image features a side-view of a guinea pig with a black and white patchy fur texture, partially occluded by a vertical strip of colorful static, set against a muted, abstract gray-blue background with scattered alphanumeric characters. +painting_9.jpg A partially occluded illustration of a guinea pig shows its front half from a side view, with a visible mix of brown, white, and a hint of pink against a blue circular background, with the right portion obscured by a colorful noise pattern. +cartoon_3.jpg The image depicts a guinea pig with a white and grayish fur texture located in the middle of a cartoon-style book cover, surrounded by a comic-styled environment with a sandwich, where significant pixelated noise covers the left side, obscuring further details. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/hammer_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hammer_descriptions.txt new file mode 100644 index 0000000..f69d8bf --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hammer_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_10.jpg The object appears to be a hammer with a multi-colored, possibly augmented appearance, situated above a vibrant illustration featuring figures, viewed from an upward angle with significant central occlusion that obscures most details. +painting_5.jpg A colorful illustration features a character with a red cape, with the left side heavily obscured, showing a painted scene with vibrant, swirling purple and blue clouds in the background, but the hammer itself is not visible. +graffiti_5.jpg The hammer appears as a white silhouette painted on a moss-covered brick wall, with an occlusion of colorful noise on the right side obscuring part of the wall and hammer's head area, while vegetation frames the bottom edge. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/hammerhead_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hammerhead_descriptions.txt new file mode 100644 index 0000000..d563dfd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hammerhead_descriptions.txt @@ -0,0 +1,3 @@ +misc_127.jpg The image shows silhouettes of hammerhead shark shapes in the background with a central vertical strip of bright, multicolored noise occluding the middle portion, creating a stark contrast against the muted grayscale surroundings. +sketch_16.jpg The sketch of a hammerhead features a monochrome, sketchy texture, with its left fin and part of its long, slender body outlined in black; the rest is obscured by a large block of static-like gray noise occupying the central third of the image. +misc_16.jpg The image shows a tattoo of a hammerhead shark with light skin tones and a smooth texture, partially obscured by colorful static noise on the right, revealing its distinctive head shape and fin on a human arm. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/harmonica_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/harmonica_descriptions.txt new file mode 100644 index 0000000..b190c1a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/harmonica_descriptions.txt @@ -0,0 +1,3 @@ +toy_1.jpg The harmonica-like object is viewed from above, made of fabric in a muted pink hue with a woven texture, featuring a braided string attached, partially obscured by a colorful, static-like pixellation on its lower right side on a white background. +graphic_2.jpg The image depicts a drawing with an abstract portrayal of a person with an orange-toned face and blue clothing, where the midsection is heavily occluded by a colorful static-like pattern, obscuring what the person might be holding. +cartoon_12.jpg A cartoon-style harmonica is being played by a sketch of a person, with a colorful, static-like occlusion covering the lower part. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/harp_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/harp_descriptions.txt new file mode 100644 index 0000000..ed4e94d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/harp_descriptions.txt @@ -0,0 +1,3 @@ +videogame_12.jpg A golden harp with a smooth texture is viewed from the front, with the left side partially obscured by colorful static, featuring visible strings and an ornate base on the unobstructed part. +sketch_14.jpg The image shows a black and white, ornately carved harp viewed from the side, with a large area of colorful static occluding the strings and part of the frame, while the scroll-like top and base remain visible. +sculpture_12.jpg The object, partially visible behind a colorful noise pattern, appears as a white or light stone harp held by a statue in a seated side view, with clear vertical column and rounded top visible against a stone architectural backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/hatchet_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hatchet_descriptions.txt new file mode 100644 index 0000000..ae90518 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hatchet_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_19.jpg The object is heavily occluded by a colorful, static-like pattern centered in the image, with only faint outlines visible at the top and bottom against a background of vintage tool illustrations. +videogame_13.jpg A partially visible hatchet with a dark, metallic head viewed from the side, featuring a wooden handle, is heavily occluded by a colorful, pixelated square covering its middle portion. +graphic_1.jpg The hatchet has a smooth, glossy black surface with a curved blade visible from a side angle, set against a muted olive green background, partially obscured by a multicolor noise pattern covering the lower half. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/hen_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hen_descriptions.txt new file mode 100644 index 0000000..ddd1d9e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hen_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_6.jpg The image shows a stylized hen with a predominantly white body, intricate blue and gold patterns, and a regal pose on a throne, partially occluded by colorful static on the left side. +sketch_12.jpg The hen appears as a simple line drawing with no visible texture or color, positioned in a side profile with heavy pixelated occlusion covering the lower body, leaving only the head and a portion of the tail visible against a plain white background. +deviantart_22.jpg The hen, viewed from the side, is primarily pink with a smooth texture, has a visible eye and comb, and is heavily occluded on the left by colorful, patterned noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/hermit_crab_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hermit_crab_descriptions.txt new file mode 100644 index 0000000..75f2004 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hermit_crab_descriptions.txt @@ -0,0 +1,3 @@ +sketch_0.jpg The hermit crab in the bottom center is illustrated in a frontal view, showcasing its spiral shell and positioned amongst various crustacean illustrations, with a dense and colorful pixelated occlusion covering the left half of the image. +sculpture_4.jpg A fuzzy red and blue hermit crab, viewed from the side on grassy ground, features a prominent dark eye stalk and red pincers, with its right side obscured by colorful digital noise. +sculpture_1.jpg The object appears as a metal sculpture resembling a hermit crab with a shiny, metallic texture and outstretched, pointed legs, partially obscured by colorful static, with a visible brown shell behind it against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/hippopotamus_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hippopotamus_descriptions.txt new file mode 100644 index 0000000..819175b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hippopotamus_descriptions.txt @@ -0,0 +1,3 @@ +sketch_5.jpg The hippopotamus is depicted in a monochrome sketch with a focus on its textured skin and prominent, rounded snout, viewed from the side with its body occluded by a large gray rectangle on the left, and it's standing on a textured ground. +sculpture_9.jpg A smooth, off-white textured hippopotamus figurine, viewed from above with its right side covered by a vertical strip of colorful noise, lies on a flat surface. +toy_3.jpg The image shows a plush, brown object resembling a hippopotamus head viewed from a side angle, with a prominent occlusion of colorful static on the left side, leaving parts of the soft and rounded structure visible against a softly-lit indoor background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/hotdog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hotdog_descriptions.txt new file mode 100644 index 0000000..c386edf --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hotdog_descriptions.txt @@ -0,0 +1,3 @@ +misc_40.jpg The image features a cartoon-style hotdog with a tan bun and red sausage, posed as if walking, wearing brown shoes and white gloves, with the left side heavily occluded by colorful noise. +misc_62.jpg The image depicts an object resembling a hotdog viewed from a slightly above angle, partially covered in netting with visible pink and beige hues on one side while the other half is masked by colorful static, surrounded by a retail store environment with signs and toys. +misc_103.jpg The image shows a street art depiction of a hot dog with a beige bun, yellow mustard, brown sausage, and dripping red ketchup, partially obscured by a vibrant, multicolored static covering the right half. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/hummingbird_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hummingbird_descriptions.txt new file mode 100644 index 0000000..3fa4538 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hummingbird_descriptions.txt @@ -0,0 +1,3 @@ +sketch_2.jpg The image shows a hummingbird with elegant, outlined wings extending outward, while the main body is obscured by a colorful, static-like rectangular occlusion, set against a plain white background. +origami_10.jpg A green slender object, possibly a hummingbird, is visible from the side with its head and body aligned in an upward diagonal, largely occluded by a vertically centered, multicolored static pattern, against a plain brown background. +painting_18.jpg The visible hummingbird features iridescent blue and green plumage, perched in profile on a branch next to vibrant pink and green leaves, with most of its body obscured by digital noise, leaving its head and tail in view against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/husky_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/husky_descriptions.txt new file mode 100644 index 0000000..de52040 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/husky_descriptions.txt @@ -0,0 +1,3 @@ +painting_11.jpg The image shows two huskies with one on the left in a side profile with a gray and white speckled texture, partially obscured by colorful static in the center, and the right one in a more distant view with a reddish-brown and white coat, both set against a muted, snowy background. +cartoon_10.jpg The image shows an outline of a husky from a frontal viewpoint, with the left side of the face heavily occluded by colorful static noise, revealing only the right ear, partial eye, fur outline, and lower jaw, along with a bandana near the neck with faint text visible. +cartoon_21.jpg The image shows a circular object with a blocked central area, revealing a husky with black and white fur on the edges, partially occluded by colorful static noise, against a plain background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/hyena_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hyena_descriptions.txt new file mode 100644 index 0000000..5a03fc7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/hyena_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_1.jpg The image reveals a black-and-white tattoo of a hyena with geometric patterns on its face, visible on a leg with heavy pixelated occlusion covering its central section, leaving the edges and surrounding red-toned background exposed. +videogame_2.jpg The image shows a stylized hyena with large ears and a light brown fur texture, visible from a frontal viewpoint, with most of its face, including one eye and part of the muzzle, obscured by a vertical strip of multicolored static against a green background. +cartoon_8.jpg The image shows the side profile of a hyena with a spotted coat visible in black and white, standing on a platform with its body partially obscured by heavy, colorful static-like occlusion on the left. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/ice_cream_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ice_cream_descriptions.txt new file mode 100644 index 0000000..bd1e8fe --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ice_cream_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_1.jpg The image shows a stylized character resembling an ice cream cone with visible swirls of brown and cream colors, partially covered by a colorful, pixelated occlusion on the left, and the surrounding environment appears textured like a waffle cone. +graffiti_5.jpg The ice cream, depicted in a monochrome stencil style against a wooden plank backdrop, is partially obscured by colorful static noise covering its lower portion, with the visible part showing a softly swirling cone shape held upright. +origami_5.jpg The ice cream cone appears to have a rainbow color gradient from green to blue to purple, with a smooth and slightly glossy texture visible, viewed from the side, while the right half is heavily occluded by a colorful static pattern on a wooden surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/iguana_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/iguana_descriptions.txt new file mode 100644 index 0000000..50f9578 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/iguana_descriptions.txt @@ -0,0 +1,3 @@ +misc_18.jpg The iguana, outlined in black on a light background, has its face and upper torso visible in profile, with a heavily pixelated vertical strip occluding the center, revealing distinct spines along its back and intricate line details on the exposed areas. +misc_11.jpg The iguana is seen from a side view with its vibrant green and yellow scales visible on its head and back, while heavily occluded by a pixelated block covering its body and the colorful background of blue sky and brown ground beneath. +videogame_0.jpg A cartoon-style iguana with a bright green body, darker green stripes on its tail, white underbelly, and spikes along its back is partially obscured by a colorful static-like block covering the midsection, with visible limbs extended outward. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/italian_greyhound_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/italian_greyhound_descriptions.txt new file mode 100644 index 0000000..df36b87 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/italian_greyhound_descriptions.txt @@ -0,0 +1,3 @@ +sketch_14.jpg The Italian greyhound is viewed from the left side, with smooth grey fur visible on parts of the head and front legs while the body is heavily occluded by a rectangular patch of colorful static noise against a plain white background. +misc_29.jpg A vintage illustration depicts two slender greyhounds with one dog lying down in profile view, partially covered by a colorful static noise that occludes its midsection, while the other stands with its head turned to the side, both set against a classical stone backdrop. +misc_25.jpg The Italian greyhound, mostly obscured by a multicolored noise pattern, has a light beige fur with a smooth texture, partially visible from a side pose where its head and a bit of the back are exposed against a mostly abstract background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/jeep_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/jeep_descriptions.txt new file mode 100644 index 0000000..feb31a6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/jeep_descriptions.txt @@ -0,0 +1,3 @@ +toy_20.jpg The image shows a low-resolution green jeep, captured from a side angle on a wooden floor with heavy multicolor pixelation obscuring the central part, while the visible front portion displays a sticker or icon with a vibrant, colorful design. +toy_0.jpg The object appears to be a toy or model jeep in bright blue, viewed from a side angle, partially obscured by a colorful noise pattern at its center, with visible smooth plastic wheels against a backdrop featuring illustrated characters. +sketch_10.jpg The image depicts a line-drawn jeep seen from a front-side angle with its distinctive grille and round headlights visible, while the right portion is heavily occluded by colorful static noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/jellyfish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/jellyfish_descriptions.txt new file mode 100644 index 0000000..56165d2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/jellyfish_descriptions.txt @@ -0,0 +1,3 @@ +misc_1.jpg The jellyfish appears in silhouette with a bright pink hue and smooth texture, viewed from the side with long, flowing tentacles visible below, while the central and top right portions are obscured by a pixelated square. +tattoo_16.jpg The image shows a tattoo of a jellyfish in black ink with intricate linework on an arm, partially occluded by a block of colorful static covering the central part. +embroidery_2.jpg The jellyfish appears with a light blue, patterned bell with a textured yellow rim, partially obscured by a pixelated block on the lower right, with visible thin tentacles extending downwards. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/joystick_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/joystick_descriptions.txt new file mode 100644 index 0000000..dff39e3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/joystick_descriptions.txt @@ -0,0 +1,3 @@ +misc_31.jpg The image shows partially visible printed material with a heavily pixelated and colorful rectangle occluding a white surface, surrounded by various paper items with text and logos in a cluttered environment. +misc_19.jpg The joystick features a gray and black color scheme with a visible orange button on a rectangular base, shown in a side view with a colorful pixelated pattern adding a distinct, retro-gaming aesthetic, partially occluded at the bottom right by a multicolored static overlay. +sketch_17.jpg The image shows a simple black and white sketch of a joystick with visible cross-shaped buttons on the left side, while the right side is heavily obscured by a large, multi-colored static pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/junco_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/junco_descriptions.txt new file mode 100644 index 0000000..8d89f86 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/junco_descriptions.txt @@ -0,0 +1,3 @@ +painting_11.jpg The junco, partially obscured by a vertical band of colorful static-like noise, is viewed from the side perched diagonally on a branch with a pale grey head and darker grey back, contrasting against its white underparts and set against a softly blurred purple background. +sketch_15.jpg A partially visible bird perched on a branch, with a left-side view showing dark, textured feathers and a blurred background, while the right half is obscured by colorful static noise. +art_5.jpg The image depicts a painted junco with a dark brown head and upper body facing left, standing on a textured, multi-colored ground with its surroundings obscured by heavy noise on the right side. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/killer_whale_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/killer_whale_descriptions.txt new file mode 100644 index 0000000..e884463 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/killer_whale_descriptions.txt @@ -0,0 +1,3 @@ +art_13.jpg The glass artwork shows a stylized black silhouette of a killer whale composed of stained glass against a background of blue and white sections with a strong occlusion of colorful static noise covering a significant portion of the scene on the left. +deviantart_2.jpg The image features a black-and-white killer whale with a prominent dorsal fin, partially obscured by a multicolored static area, positioned vertically among monochrome, leafless trees, with its tail and part of its body visible. +tattoo_3.jpg The image depicts a tattoo on a person's arm featuring a killer whale, visible in a blue-toned aquatic scene, partially obscured by a colorful pixelated rectangle on the upper part of the arm, with the whale's dorsal fin and part of its body discernible amidst stylized water patterns. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/king_penguin_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/king_penguin_descriptions.txt new file mode 100644 index 0000000..6863113 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/king_penguin_descriptions.txt @@ -0,0 +1,3 @@ +art_0.jpg The king penguin, viewed from a side profile, displays a smooth, monochrome texture with visible black and white areas, its head angled upwards, while the right side is heavily occluded by a vibrant, noise-filled block, positioned against a plain background. +cartoon_10.jpg The king penguin is partially obstructed by a rectangular area of colorful static noise, with the visible portion showing a sketched grayscale texture, a side view of the head and beak, and a sign hanging around its neck. +painting_0.jpg A king penguin is partially visible on the right, displaying a yellow-orange patch on its neck amidst black and white plumage, while the rest is obscured by heavy pixelation, with surrounding elements featuring blue and white tones. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/koala_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/koala_descriptions.txt new file mode 100644 index 0000000..6263844 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/koala_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_14.jpg The image shows a drawn koala with a gray and black color palette and fuzzy texture, positioned on a person's skin with its left side obscured by a pixelated occlusion, surrounded by a reddish-patterned background. +cartoon_42.jpg The image shows two clay koalas with a smooth, gray texture, black noses, and dark eyes, clinging to a textured brown tree with green leaves, partially obscured by a multicolored noise pattern on the left side and set against a pink background. +sketch_20.jpg The image shows a stylized black and white illustration of a koala with intricate, patterned fur textures visible on the head and upper limbs, while the central body is heavily occluded by a multicolored noise pattern on a white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/lab_coat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lab_coat_descriptions.txt new file mode 100644 index 0000000..0a1b1fb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lab_coat_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_4.jpg The lab coat is partially visible on the shoulders and arms in a cartoon-like style with a white appearance, surrounded by a colorful background, with heavy visual noise obscuring the central portion of the image. +cartoon_25.jpg The lab coat appears predominantly white with patch pockets and a yellow inner lining, viewed from the front, partially occluded by a colorful noise overlay above the waist region, set against a cartoon character with brown appendages. +sketch_22.jpg The lab coat, viewed from the front, appears as a simple black outline with most of its central area heavily occluded by a static-like multicolored pattern, revealing only the sleeves and lower edges of the coat. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/labrador_retriever_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/labrador_retriever_descriptions.txt new file mode 100644 index 0000000..981aef5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/labrador_retriever_descriptions.txt @@ -0,0 +1,3 @@ +sketch_5.jpg The image depicts a close-up view of what appears to be a charcoal or pencil-drawn labrador retriever, showing the left side of its face and neck with a smooth, textured appearance, brown shading, and an open mouth, while the right side is completely obscured by multicolored static noise. +misc_19.jpg The labrador retriever's image shows a side profile with a visible light beige colored fur and a smooth texture, with the face and lower neck apparent, while the central area is heavily occluded with static-like noise, on a neutral, light brown backdrop. +misc_7.jpg The image shows a black and white sketch of a labrador retriever with a chain collar, with its head partially occluded by a colorful static-like pattern in the upper-left area, obscuring most of its face and ears while the neck and lower right side remain visible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/ladybug_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ladybug_descriptions.txt new file mode 100644 index 0000000..30b047e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ladybug_descriptions.txt @@ -0,0 +1,3 @@ +painting_14.jpg The image shows a stylized, cartoon-like ladybug from an angled top-down viewpoint, with a red body featuring black spots, black head and antennae, placed on a green grass-like surface with a vertical strip of heavy pixel occlusion concealing part of the body and the background sky. +tattoo_51.jpg The image shows a low-resolution tattoo on skin depicting a black silhouette of a ladybug with a red central part, viewed from the top, with the foot as the surrounding environment and a portion obscured by a dense noise overlay. +sketch_12.jpg The image shows a ladybug with a partially visible black and white sketch-like texture, viewed from the side, with most of the body obscured by a colorful speckled occlusion, revealing only legs and part of the head. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/lawn_mower_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lawn_mower_descriptions.txt new file mode 100644 index 0000000..80c975c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lawn_mower_descriptions.txt @@ -0,0 +1,3 @@ +toy_0.jpg A partially visible yellow and gray object resembling a toy or miniature piece with cylindrical black components is mostly obscured on the left by heavy multicolored static-like noise against a plain white background. +toy_21.jpg The lawn mower is a small, toy-like object with a green handle and bright orange body featuring a cartoonish design, viewed from a low side angle on a textured pavement, with heavy pixelated occlusion covering the right side. +sculpture_1.jpg A balloon structure resembling a lawn mower is visible with red, black, and gray sections, featuring a vertical handle and wheels, while the central portion is obscured by colorful static occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/lemon_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lemon_descriptions.txt new file mode 100644 index 0000000..30debb7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lemon_descriptions.txt @@ -0,0 +1,3 @@ +painting_8.jpg The object appears as a partially visible, top-down view of a bright yellow surface with a glossy, textured area on a white background, partially obscured by a rectangular section of heavy digital noise and colorful static along the bottom portion. +painting_19.jpg The image shows a slice of lemon with a smooth, yellow rind and visible pulp, positioned inside a colorful bowl with a significant occlusion by a rectangular multicolored noise pattern in the center, surrounded by a vivid purple and orange background. +graphic_5.jpg The image shows a cartoon lemon character with an animated expression and a pixelated occlusion covering part of its body, set against a bright, colorful background with text elements, and it has a cheerful pose with one arm raised. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/leopard_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/leopard_descriptions.txt new file mode 100644 index 0000000..397b523 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/leopard_descriptions.txt @@ -0,0 +1,3 @@ +misc_2.jpg The image shows part of a leopard's fur with a classic spotted pattern in a mix of black and orange on a creamy base, heavily occluded by a central vertical section filled with static-like noise, while the visible area displays a smooth texture suggestive of a side body view. +sketch_5.jpg The image depicts a black-and-white sketch of a resting leopard, showing a detailed facial expression and spotted fur texture, with the face in a three-quarter view partially obscured by a vertical strip of colorful noise on the left side. +toy_4.jpg The image shows a plush leopard with a heart-shaped, speckled brown and black pattern and yellow eyes, partially obscured by heavy pixelated occlusion on the right side, lying on a quilted beige surface while a hand holds it at the bottom. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/lighthouse_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lighthouse_descriptions.txt new file mode 100644 index 0000000..9d0dc09 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lighthouse_descriptions.txt @@ -0,0 +1,3 @@ +painting_8.jpg The lighthouse, partly visible from a side angle, is white with a black top, standing on a backdrop of a dusky sky, with a large section of the image obscured by pixelated noise covering the lower right side. +videogame_17.jpg The lighthouse has a red and white striped pattern, viewed from a low angle against a clear blue sky, with significant occlusion by a colorful, static-like overlay covering much of its midsection. +deviantart_15.jpg The lighthouse appears as a dark silhouette against a vibrant sunset sky, mostly obscured by grass in the foreground on the left and a dense, colorful noise pattern on the right. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/lion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lion_descriptions.txt new file mode 100644 index 0000000..aea2ff2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lion_descriptions.txt @@ -0,0 +1,3 @@ +sticker_5.jpg The image shows a circular surface with a pattern resembling purple and white stripes, partially obscured by a central area filled with multicolored digital noise, set against a pale background with some shadowing at the bottom edge. +embroidery_15.jpg The image shows a vibrant orange and yellow abstract pattern resembling a lion's mane with its lower portion occluded by heavy digital noise against a black background, while two ear-like shapes peek out from the top. +deviantart_19.jpg The lion appears with a light tan and slightly illuminated fur texture, viewed from the front with a calm expression, while its lower face is heavily occluded by a colorful, pixelated pattern, within a softly lit, possibly natural environment. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/lipstick_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lipstick_descriptions.txt new file mode 100644 index 0000000..edc1b1e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lipstick_descriptions.txt @@ -0,0 +1,3 @@ +misc_2.jpg A large lipstick-like object with a metallic casing and bright pink color is partially visible above a vibrant pink melted appearance, heavily occluded by a multi-colored static noise pattern across the midsection. +misc_3.jpg The object appears as a vertical metallic cylinder partially visible at the bottom with the upper part obscured by a colorful, speckled noise pattern, surrounded by contrasting white and black backgrounds. +sketch_9.jpg The visible portion of the lipstick shows a monochrome, line-drawn texture with the tip exposed above a rectangular gray occlusion, surrounded by a minimalist white background with subtle geometric patterns. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/llama_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/llama_descriptions.txt new file mode 100644 index 0000000..713678e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/llama_descriptions.txt @@ -0,0 +1,3 @@ +graffiti_6.jpg A stylized llama with white fur and black facial accents is wearing prominent red headphones against a green graffiti-covered background, with the lower portion obscured by colorful static noise. +deviantart_21.jpg The llama is a stylized purple figure with dark patches, seen from a side view, standing against a pink, starry backdrop, with its midsection obscured by pixelated noise. +deviantart_16.jpg The llama appears with a mostly beige and smooth texture, standing in a side pose with a colorful, pixelated occlusion covering its body, while grassy terrain is visible below. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/lobster_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lobster_descriptions.txt new file mode 100644 index 0000000..952acca --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lobster_descriptions.txt @@ -0,0 +1,3 @@ +sketch_13.jpg The image depicts a black and white line drawing of a lobster viewed from the side, with the lobster's left claw and the right section of its body and legs obscured by a square area of dense black and white noise, highlighting its extended right claw and visible antennae. +sketch_15.jpg The visible black and white sketch of the lobster shows its claws and antennae protruding from the left side, with heavy multicolored static-like occlusion covering most of the body on the right. +misc_43.jpg The object appears to be a dark, plush, or stuffed figure resembling an animal with a smooth texture, situated on a chair behind a table setting, partially obscured by a patterned, colorful square overlay. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/lorikeet_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lorikeet_descriptions.txt new file mode 100644 index 0000000..3112be8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/lorikeet_descriptions.txt @@ -0,0 +1,3 @@ +art_9.jpg The lorikeet is depicted in profile with a vibrant blue head and intricate feather texture, a partially visible red beak, and its body shows shades of green and orange, with a prominent rectangular occlusion covering part of the head and neck area amidst a dark background. +painting_13.jpg The lorikeet, captured in profile on a bright blue background, features visible vibrant green and red plumage, perched on a branch with red blossoms, while the left half of the image is obscured by a pixelated overlay. +toy_3.jpg The image depicts a lorikeet with a visible vibrant blue head and orange-red chest perched on a branch, partially obscured by a colorful static-like occlusion in the center, set against a blurred green background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/mailbox_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mailbox_descriptions.txt new file mode 100644 index 0000000..3133447 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mailbox_descriptions.txt @@ -0,0 +1,3 @@ +misc_21.jpg A cartoon mailbox with a white upper section and black stains on top is viewed from a slight side angle, with colorful noise obscuring the bottom portion and surrounding an illustration and text on a plain backdrop. +misc_43.jpg The image depicts a cross-stitched mailbox with a red outline and a purple flag, seen from the side with a heavily pixelated and colorful occlusion on the left, overlaid on a white, grid-like textured background. +misc_32.jpg The image shows a colorful abstract pattern with a red and green section resembling a stylized bird, heavily occluded by a central vertical strip of multicolored static, set against a blue background with soft, fabric-like texture. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/mantis_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mantis_descriptions.txt new file mode 100644 index 0000000..3a6abfa --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mantis_descriptions.txt @@ -0,0 +1,3 @@ +sketch_5.jpg The mantis, viewed from the side, exhibits a line-drawn texture with a prominent and visible slender leg extending outward, partially occluded by a dense colorful static-like area, obscuring much of its upper body. +graffiti_9.jpg A black, abstract graffiti-like silhouette of a mantis is painted horizontally on a beige brick wall, with the right side occluded by a vibrant static pattern, leaving visible only parts of the body and legs. +tattoo_14.jpg The image appears to show a tattoo with a predominantly green and blue color scheme on what looks like an arm, partially obscured by a static-like pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/meerkat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/meerkat_descriptions.txt new file mode 100644 index 0000000..9043b39 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/meerkat_descriptions.txt @@ -0,0 +1,3 @@ +sculpture_5.jpg The visible meerkat on the right is standing upright with a dark, smooth texture typical of a statue, set against a blurred natural background, while the left side is obscured by a colorful noise pattern blocking most details. +sculpture_17.jpg A tan, upright meerkat figure with a smiling expression has its torso heavily occluded by a colorful noise pattern, revealing only its head, limbs, and part of its environment, which includes a textured, sandy surface and a human figure. +art_4.jpg A group of meerkats is visible with predominantly sandy-brown fur and subtle stripes, with the central one's face and area to the right side occluded by a static-like pattern, surrounded by a smooth, neutral-toned background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/military_aircraft_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/military_aircraft_descriptions.txt new file mode 100644 index 0000000..c7a349c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/military_aircraft_descriptions.txt @@ -0,0 +1,3 @@ +sticker_4.jpg The image shows a toy model aircraft in a side view with visible camouflage colors of green, brown, and tan, featuring textured interlocking blocks and a vertical tail fin, partially occluded by a section of colorful static covering the central area. +deviantart_11.jpg The military aircraft appears angled in flight against a clear sky with a green fuselage and visible tail stabilizers, partially obscured by a static, colorful digital noise overlay covering the central section. +sketch_2.jpg The black and white outline of a military aircraft is drawn from a left-side view, with its mid-section heavily obscured by a colorful, pixelated rectangle. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/missile_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/missile_descriptions.txt new file mode 100644 index 0000000..67c1444 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/missile_descriptions.txt @@ -0,0 +1,3 @@ +sculpture_3.jpg The image shows a vertically-oriented, metallic, reflective, pointed object resembling a missile, with a large, pixelated occlusion covering the central and lower portion, set against a blue sky with scattered clouds. +graphic_4.jpg The visible part of the missile is predominantly white with a sleek, elongated shape seen from a diagonal side view, while heavily occluded by a colorful, pixelated overlay in the center, set against a clear sky background. +misc_1.jpg The object appears as a red and white pointed structure, viewed from the side against a blue background with significant central occlusion by multicolored static noise, with visible red fins or extensions on either side. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/mitten_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mitten_descriptions.txt new file mode 100644 index 0000000..6d5c1db --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mitten_descriptions.txt @@ -0,0 +1,3 @@ +sketch_19.jpg The visible portion of the mitten is a black-and-white sketched outline, with diagonal hatching for texture on the cuff, and the mitten appears oriented upright with a large rectangular area of colorful static-like noise occluding the upper right section. +embroidery_0.jpg A purple mitten with a visible blanket stitch outline lies on a vibrant red felt background, partially obscured by a vertical, colorful static pattern in the central area. +embroidery_4.jpg The mitten is partially visible in a pixelated image featuring a large red and green area with significant occlusion at the center, surrounded by holiday-themed decorations and vibrant, abstract colors. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/mobile_phone_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mobile_phone_descriptions.txt new file mode 100644 index 0000000..6602d49 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mobile_phone_descriptions.txt @@ -0,0 +1,3 @@ +sketch_6.jpg The image shows a grayscale, sketch-like drawing of a squid with a distorted texture, where a colorful, pixelated occlusion covers most of the central area, revealing a hand holding a small, roughly detailed mobile phone with a visible antenna extending upwards. +cartoon_5.jpg The mobile phone appears with a blue tint and simple button layout, viewed from the front, centrally placed over a background with colorful circular graphics, while the left side is heavily occluded by a pixelated square area. +sculpture_0.jpg The image shows two chocolate-covered biscuits with embossed leaf patterns, partially covered by colorful static noise, set on a white surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/monarch_butterfly_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/monarch_butterfly_descriptions.txt new file mode 100644 index 0000000..b6cae1e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/monarch_butterfly_descriptions.txt @@ -0,0 +1,3 @@ +misc_2.jpg The monarch butterfly is seen from a partial side view, with its right wing displaying its characteristic orange hue and black vein patterns, while the left side is obscured by a dense digital noise pattern, and the antennae protrude from the dark-bodied thorax. +painting_17.jpg The monarch butterfly is viewed from above with its signature orange wings featuring black veins and a black border with white spots, partially occluded by a colorful, pixelated block at the lower right, set against a green background. +painting_18.jpg The image shows the right wing of a monarch butterfly with vivid orange and black patterns and white spots on the upper edge, partially obscured by a pixelated block on its body, set against a blurred blue and beige background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/mushroom_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mushroom_descriptions.txt new file mode 100644 index 0000000..0415f5d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/mushroom_descriptions.txt @@ -0,0 +1,3 @@ +videogame_11.jpg The image shows a mushroom-like object with red, curved sides and yellow markings, partially blocked by a dense, colorful static-like pattern covering the center, with a dark background outline suggesting a cartoon style. +embroidery_6.jpg The object is a white felt-like textured circle edged in red, featuring two black and white mushroom shapes outlined with black dots, partially occluded by a colorful static-patterned rectangle on the left side. +cartoon_34.jpg The visible part of the mushroom is cartoonish with a cream-colored stem and a red cap, seen from the side, partially occluded on the right by colorful static, set against a simple blue and orange background with a green pipe and animated plant to the left. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/newt_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/newt_descriptions.txt new file mode 100644 index 0000000..8837ec9 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/newt_descriptions.txt @@ -0,0 +1,3 @@ +origami_3.jpg The newt appears green with a smooth texture, seen from a top-down perspective, and its right side is distinctly occluded by a multicolored, static-like pattern, with visible limbs and tail extending outward. +cartoon_2.jpg The newt appears in a side profile with a predominantly white, outlined body featuring dotted patterns along its back, against a muted brown watercolor background, with significant occlusion obscuring its head and upper body. +sketch_3.jpg A partially visible newt, seen from the side with its tail inclined upwards, displays a speckled texture and a distinctive pattern on its skin, while the left side of the image is heavily occluded by a multi-colored, pixelated overlay. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/orangutan_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/orangutan_descriptions.txt new file mode 100644 index 0000000..02c78b0 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/orangutan_descriptions.txt @@ -0,0 +1,3 @@ +sketch_8.jpg The orangutan in the illustration appears as a sketch with a spiky, textured fur pattern, hanging with elongated arms from a branch, with a significant occlusion over its lower body, revealing only the head with expressive eyes and a portion of the limbs. +painting_17.jpg The image shows a cartoon-style orangutan with a simplistic white face and orange body, holding a flower against a bright yellow wall, with the left side heavily occluded by multicolored static. +painting_8.jpg The orangutan is viewed from the front with a predominantly orange-brown fur that has a slightly blurred texture; the body appears to be partially covered in a colorful, pixelated occlusion at the center, surrounded by dark and shadowy background tones with visible parts of a speckled chest area. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/ostrich_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ostrich_descriptions.txt new file mode 100644 index 0000000..577e2f7 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/ostrich_descriptions.txt @@ -0,0 +1,3 @@ +origami_4.jpg The image shows a partially visible ostrich-shaped origami tucked among green fir-like branches, with its body heavily occluded by digital static, leaving a small part of the neck and head exposed in a sideways pose, contrasting against a decorated background with colorful paper stars. +cartoon_43.jpg The ostrich is drawn with a pale, elongated neck and head in a stylized and whimsical manner, with its lower body partially obscured by colorful digital noise; it is viewed from the side with a group of people humorously seated on its back, enhancing a playful appearance. +sketch_1.jpg The ostrich illustration is depicted in stark black and white, viewed from the side with its neck gracefully arched, while a large, static-filled square obscures its body, allowing only the head, neck, and legs to remain visible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/panda_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/panda_descriptions.txt new file mode 100644 index 0000000..31b50a3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/panda_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_15.jpg The image depicts the lower half of a sketch-like black and white panda sitting with its back turned, partially occluded by a horizontal band of noise, surrounded by illustrated bamboo in the background. +misc_99.jpg The visible part of the plush panda has a smooth white and black texture, with its right eye patch and ear showing from a frontal viewpoint while surrounded by colorful clothing and shelves in the background, though one side is heavily occluded by a multicolored noise pattern. +misc_84.jpg The object resembles a panda-shaped topiary with black and white foliage texture, sitting in a garden setting with tall bamboo nearby, partially obscured by pixelated noise on the right half of the image. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/parachute_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/parachute_descriptions.txt new file mode 100644 index 0000000..801e23b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/parachute_descriptions.txt @@ -0,0 +1,3 @@ +graffiti_2.jpg I cannot identify a parachute in the image. +cartoon_28.jpg A cyan-colored parachute with a dotted pattern is partially seen protruding from behind a tall, vertical, heavily pixelated occlusion, with visible legs in a dynamic stance set against a simple, wavy blue ground pattern. +misc_1.jpg The image shows a parachute with a deep blue, corrugated canopy only partially visible above a central colorful, pixelated occlusion, with fine strings extending from the canopy against a plain wall background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/peacock_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/peacock_descriptions.txt new file mode 100644 index 0000000..74931df --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/peacock_descriptions.txt @@ -0,0 +1,3 @@ +graffiti_5.jpg The peacock features vibrant blue and green feathers with intricate eye patterns visible at the tail's edge, partially obscured by a colorful noise block, positioned adjacent to a mural with floral designs, viewed from the side. +art_10.jpg The image shows a stylized depiction of a peacock with a predominantly blue and green color palette, displaying vibrant, scaly textures on its feathers; the bird is viewed from the side with its tail feathers fanned out, partially occluded by a rectangular, pixelated area on the right side. +origami_13.jpg The image shows a pastel pink origami peacock with a fan-shaped tail, viewed from the front, its left side obscured by a vibrant, multicolored static-like occlusion, resting on a dark surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pelican_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pelican_descriptions.txt new file mode 100644 index 0000000..13b18df --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pelican_descriptions.txt @@ -0,0 +1,3 @@ +misc_1.jpg The image shows a cream-colored pelican figure viewed from the side with a textured head resembling feathers, a prominent eye, and an orange beak partially obscured by a colorful, pixelated band across the middle, set against a blurred natural background. +deviantart_15.jpg The visible pelican head appears with white plumage and a long, pale beak viewed from a front angle, while the rest is obscured by vibrant colored static covering the lower portion and the background is a smooth lavender color. +sketch_12.jpg The image shows a black-and-white line-drawn pelican in a standing pose with its left side occluded by a dense, static-like gray rectangle, while the right side displays intricate feather details and the elongated beak characteristic of the bird. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pembroke_welsh_corgi_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pembroke_welsh_corgi_descriptions.txt new file mode 100644 index 0000000..ed0681a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pembroke_welsh_corgi_descriptions.txt @@ -0,0 +1,3 @@ +misc_34.jpg A Halloween-themed depiction shows a pumpkin with a carved, smiling face and a playful, rainbow-static occlusion covering the central section, amidst a stylized, festive background. +misc_21.jpg A small, plush figure resembling a Pembroke Welsh Corgi from behind, with orange-brown fur texture, white legs, upright ears, and a prominent static rectangle obscuring the midsection, standing on a multicolored textured surface. +sketch_15.jpg A sketched Pembroke Welsh Corgi with visible textured lines shows its snout and lower face in a side profile, while its upper face is occluded by a pixelated rectangle on a plain white background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pickup_truck_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pickup_truck_descriptions.txt new file mode 100644 index 0000000..4a0c621 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pickup_truck_descriptions.txt @@ -0,0 +1,3 @@ +sketch_10.jpg The pickup truck, shown from a low side angle, appears primarily gray with its front half obscured by a colorful noise pattern, leaving only the sleek rear wheel and side panel clearly visible. +videogame_5.jpg The pickup truck, seen from a front-left angle, appears light blue and weathered, partially obscured by a large multicolored pixelated block on the left, set against a foggy forest with another similar truck in the background. +toy_9.jpg The pickup truck is bright orange with a visible chrome front grille and black tires, viewed from a front-side angle, with a square, multicolored noise occlusion covering much of its body and background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pig_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pig_descriptions.txt new file mode 100644 index 0000000..2db6588 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pig_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_5.jpg The image shows a tattoo of a small winged creature with a brownish hue on a skin surface, partially obscured by heavy multicolored static on the right, with the visible area capturing the creature from a side view. +sticker_3.jpg The image shows an orange cartoon-like pig illustration with a smiling expression against a dark blue background, partially obscured by vibrant multicolored static noise on the left side, with the words "ARE FRIENDS NOT FOOD" visibly printed below. +toy_0.jpg The visible portion of the object is a pink, cartoon-like figure with smooth texture, featuring rounded ears and a snout, viewed from a front angle with significant occlusion by a central, colorful noise block and resting on what appears to be a stacked, multicolored structure. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pineapple_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pineapple_descriptions.txt new file mode 100644 index 0000000..7b102e8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pineapple_descriptions.txt @@ -0,0 +1,3 @@ +videogame_0.jpg The pineapple, viewed from the front in a hand-held drawing on a beach setting, features a traditional spiky crown and a textured, grid-like surface with hints of natural color, while the upper half is occluded by a pixelated, multicolored pattern. +deviantart_4.jpg The image shows a low-resolution pineapple with a smooth, glossy texture and a vibrant orange-yellow color, viewed from an upward angle with its green spiky crown visible, while the left side is partially occluded by pixelated static patterns against a bright blue sky backdrop. +art_12.jpg This image shows a section of a pineapple with its textured, hexagonal-patterned surface partially visible, surrounded by a warm, orange-brown environment, with significant occlusion on the right half due to colorful noise, possibly covering other objects or details. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pirate_ship_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pirate_ship_descriptions.txt new file mode 100644 index 0000000..a99b33f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pirate_ship_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_2.jpg The pirate ship tattoo is viewed side-on, with visible sails drawn in a stylized manner outlined in black and filled with muted earthy tones, partially obscured by colorful digital noise, while decorated storm clouds and lightning bolt motifs accentuate the upper background. +tattoo_14.jpg The tattoo of a pirate ship shows black and gray sails from a side viewpoint with a lightning bolt in front, partially obscured by a colorful noise pattern on the right side. +tattoo_21.jpg The image shows a tattoo of a pirate ship with a prominent red and pink heart-eyed skull on the sail, viewed at an angle, partially occluded by colorful static noise on the left, with visible yellow and brown tones on the ship and blue waves below. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pizza_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pizza_descriptions.txt new file mode 100644 index 0000000..bf63364 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pizza_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_13.jpg The image appears to be heavily occluded with a colorful static pattern and does not display any visible pizza or related features. +videogame_11.jpg A yellow circular shape representing a pizza is obscured on the right side by colorful static, against a dark background with green and white text elements. +misc_8.jpg The image shows a crocheted pizza with a visible crust in brown, toppings in red, white, green, and brown yarn, presented from a top-down angle, with the right side obscured by heavy static-like noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/polar_bear_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/polar_bear_descriptions.txt new file mode 100644 index 0000000..33d7af9 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/polar_bear_descriptions.txt @@ -0,0 +1,3 @@ +misc_13.jpg The image shows a polar bear viewed from the side, with visible white fur standing on a textured white background while a colorful noise covers the midsection, but the head, legs, and feet are discernible. +misc_147.jpg The polar bear appears as a white, cartoon-like figure with a simplified form, facing forward with its head and legs visible, set against a solid purple background, while a large portion of its body is obscured by colorful static occlusion. +misc_4.jpg The image shows a heavily occluded scene dominated by a vertical column of multicolored static obscuring a brick wall with graffiti featuring shades of white and grey, partially visible behind the distortion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pomegranate_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pomegranate_descriptions.txt new file mode 100644 index 0000000..3b0f9bc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pomegranate_descriptions.txt @@ -0,0 +1,3 @@ +sketch_22.jpg The image depicts an outlined illustration of a whole pomegranate and a half pomegranate, with the half showing interior seeds in grayscale while heavily occluded by a colorful static pattern in the lower central area, set against a white background. +graffiti_0.jpg The pomegranate appears as a red stencil-like outline on a speckled, off-white background, with visible detailing of seeds in the lower half, partially obscured by a centrally placed, multi-colored static pattern. +painting_1.jpg A partially visible pomegranate with a glossy red surface sits on a draped white cloth, with significant central occlusion of static-like noise partially obscuring the fruit from a frontal viewpoint. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pomeranian_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pomeranian_descriptions.txt new file mode 100644 index 0000000..ffdfd36 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pomeranian_descriptions.txt @@ -0,0 +1,3 @@ +misc_29.jpg A partially visible Pomeranian with light tan fur and one eye glimpsing, set against a vibrant, Van Gogh-inspired swirling blue and yellow background, is heavily occluded by colorful noise covering its midsection. +misc_21.jpg The pomeranian in the image appears to have a vivid, painted texture with a visible muzzle and mouth, dark eyes, and fluffy fur visible in shades of brown and black, with the upper portion heavily obscured by a colorful noise pattern. +misc_19.jpg A fluffy, light tan pomeranian with a thick, woolly coat and a dark snout is lying within a person's hand, with a portion of its body occluded by static-like noise on the right side. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/porcupine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/porcupine_descriptions.txt new file mode 100644 index 0000000..7a09fab --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/porcupine_descriptions.txt @@ -0,0 +1,3 @@ +sketch_15.jpg The image shows the front half of a stylized, cartoon-like porcupine in black and white, with its face and legs visible; the rest of the body is heavily occluded by a vibrant, multi-colored noise-filled rectangle obscuring the quills and most of the back, with the porcupine standing in a right-facing profile on a plain white background. +misc_0.jpg A simplistic, red outline of a porcupine is depicted on a textured beige fabric, partially obscured by a vertical, multicolored static pattern, surrounded by a colorful, abstract background below. +sketch_18.jpg The porcupine illustration appears in black and white, showing a side view with its quills fanning out, but the central area is obscured by a vertical band of colorful static noise, while the visible environment suggests a simple line drawing. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pretzel_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pretzel_descriptions.txt new file mode 100644 index 0000000..6bcadf8 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pretzel_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_5.jpg The pretzel appears to be partially obscured on the left side against a light blue sky background with cartoon clouds, showing a brown, twisted structure with a possible speckled texture, while most of the middle and right side is heavily occluded with colorful noise. +cartoon_10.jpg The image shows a cartoon pretzel with a light brown color, smooth texture, and a simple looped shape, partially occluded by a dense, colorful static pattern that blocks the central portion, while a smiling face is visible on the left side of the pretzel. +deviantart_8.jpg The low-resolution image depicts an orange-brown pretzel with a smooth texture and white specks, viewed from the front, partially occluded on the right side by a colorful mosaic pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/puffer_fish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/puffer_fish_descriptions.txt new file mode 100644 index 0000000..835aaa4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/puffer_fish_descriptions.txt @@ -0,0 +1,3 @@ +misc_81.jpg The puffer fish is viewed from the side and appears to have a vibrant yellow color with a textured, geometric pattern, partially obscured by a rectangular area of digital noise on the left side. +videogame_28.jpg The puffer fish is predominantly obscured with visible sections appearing through a clear glass-like sphere, displaying hints of muted metallic blue hues, while the surrounding card features a fantasy-style design with a decorative border and an environment suggesting a whimsical setting beyond the occlusion. +deviantart_18.jpg The object appears to be a yellow and white textured figure with a spiky surface and two protruding eyes, partially obscured by a colorful, pixelated occlusion on the right side, set against a dark, crumpled backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/pug_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pug_descriptions.txt new file mode 100644 index 0000000..bd9c02f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/pug_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_38.jpg The stylized depiction of a pug, viewed from the front, shows a brown cartoon head wearing a blue beret and glasses, with a large portion of its lower face obscured by a multicolored static pattern, set against a plain white background. +sticker_1.jpg The image shows a cartoon depiction of a pug with light brown fur and darker ears, sitting with a slightly anxious expression, with a large vertical Gaussian noise occlusion across its face, making the rest of its body, paws, and a drooping drool string still visible against a dark background. +tattoo_19.jpg A tattoo of a pug with a predominantly tan color and dark facial features appears on an upper arm, viewed from the side with pixelated occlusion covering the lower left portion, while the pug is surrounded by a stylized blue border on skin. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/red_fox_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/red_fox_descriptions.txt new file mode 100644 index 0000000..7544fb4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/red_fox_descriptions.txt @@ -0,0 +1,3 @@ +sketch_8.jpg The image shows the tail and hind legs of a sketched fox in profile, with most of the body obscured by a colorful static pattern on the left side and the background text on the right. +misc_152.jpg The red fox sculpture, viewed from the front and slightly above, has a reddish-brown textured surface with its face and two alert ears visible, while the area around the nose is partially occluded by a pixelated rectangle, with its tail raised and angled to the side. +misc_131.jpg The image features a stylized, cartoon-like red fox against a vibrant, textured background with a yellow and red gradient; its body and lower part are obscured by multicolored pixelated noise, highlighting only the upper portion of its head and ears in a side profile. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/revolver_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/revolver_descriptions.txt new file mode 100644 index 0000000..698f2b6 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/revolver_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_8.jpg The revolver appears in a schematic, side view with visible components like the barrel and rear sight on the unobscured right side, while the left side is covered by a colorful, noise-like occlusion pattern. +tattoo_31.jpg The visible part of the revolver features a dark, stippled texture with a pronounced, open cylinder and hammer from a side view, while the left portion is heavily occluded by a dense static-like pattern. +graffiti_5.jpg The image depicts a brick wall with a stenciled figure wearing a suit, with part of the torso occluded by colorful static noise, while red graffiti and an electrical box are visible nearby. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/rottweiler_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/rottweiler_descriptions.txt new file mode 100644 index 0000000..ef59353 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/rottweiler_descriptions.txt @@ -0,0 +1,3 @@ +misc_31.jpg The object appears to be a stylized figure with a smooth, shiny black surface and tan detailing, seen from the front, with a vibrant, multicolored pixelation occluding the center-right portion. +misc_6.jpg The image shows a Rottweiler in a grassy environment, lying down with its tongue out; its black and tan fur is visible around the head and partially covered by a multicolored occlusion block on the left side. +misc_34.jpg This depiction shows a rottweiler-like figure with a black coat and tan markings on the face, ears, and chest, viewed from a frontal angle against a bright red background, partially obscured by a colorful noise pattern on the left side. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/rugby_ball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/rugby_ball_descriptions.txt new file mode 100644 index 0000000..20475ff --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/rugby_ball_descriptions.txt @@ -0,0 +1,3 @@ +sketch_19.jpg The right-side tip of a rugby ball is visible with a black outline on a white background, showing stitched seams, while the left side is covered by a black and white static pattern, making texture and color indiscernible on that part. +cartoon_25.jpg The rugby ball is partially obscured by a vertical, multicolored, static-like occlusion, while the visible portion appears black with a white stripe, seen from the side as an illustration set against an orange background featuring a stylized player. +videogame_10.jpg The rugby ball, partially visible in the bottom left and held diagonally against a vibrant green background, displays a combination of white and dark detailing, with the right side heavily occluded by colorful digital noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/saint_bernard_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/saint_bernard_descriptions.txt new file mode 100644 index 0000000..c57cc05 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/saint_bernard_descriptions.txt @@ -0,0 +1,3 @@ +sketch_16.jpg In this low-resolution, heavily-occluded illustration of a Saint Bernard dog's head, a detailed black-and-white sketch displays the dog from a side angle with the head raised, featuring distinct droopy eyes and a large nose, while the left side including part of the ear is obscured by a colorful static-like pattern. +sketch_11.jpg The image depicts the backside of a line-art sketch of a Saint Bernard with a heavily occluded area covering the front half, showing a white background and the visible portion featuring detailed black crosshatch shading on the tail and hindquarters. +misc_2.jpg The image shows three Saint Bernards with predominantly white fur accented by brown patches, sitting and lying on and around a brown chair, with a significant portion on the left obscured by colorful noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/sandal_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/sandal_descriptions.txt new file mode 100644 index 0000000..8df618d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/sandal_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_8.jpg The illustration depicts the outline of a sandal viewed from the side, featuring a simple design with visible straps and minimal detailing, while the central part is obscured by a textured rectangular occlusion against a plain background. +painting_1.jpg The sandal appears to be light pink with a smooth texture, viewed from a top-down angle, with significant pixelated occlusion covering the middle, leaving only the toe area visible against a brown background with abstract, wavy patterns. +sketch_13.jpg The image shows a black and white line drawing of a wedge sandal viewed from the side, with a single strap over the toes and an ankle strap, while the bottom half is obscured by color noise occlusion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/saxophone_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/saxophone_descriptions.txt new file mode 100644 index 0000000..e858346 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/saxophone_descriptions.txt @@ -0,0 +1,3 @@ +painting_24.jpg The saxophone, partially obscured by a pixelated area, appears golden in color with a glossy texture, with the upper curved neck section visible, set against a dark, textured background reminiscent of a painting. +sculpture_27.jpg The object visible is a bronze-colored statue of a person playing a saxophone, with the instrument and lower body partially occluded by a colorful noise block, set against a building background. +deviantart_22.jpg A vibrant and colorful saxophone lies in a festive setting with musical notes, partially obscured by a noisy, multicolored pattern, leaving its specific features indiscernible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/scarf_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/scarf_descriptions.txt new file mode 100644 index 0000000..11cc725 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/scarf_descriptions.txt @@ -0,0 +1,3 @@ +art_2.jpg The image shows a fabric design with a cartoon snowman featuring a black top hat and an orange carrot nose against a warm brown, textured background with a colorful digital noise occlusion covering part of the design. +painting_2.jpg The scarf appears as a red fabric moving gently from left to right, partially visible above the occluding digital noise at the bottom of the image, set against a painted backdrop with trees and a textured canvas. +deviantart_14.jpg The scarf is obscured, with only a small portion visible on the right side, appearing as a solid pale color among an autumnal backdrop depicted in an anime style, surrounded by swirling leaves. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/school_bus_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/school_bus_descriptions.txt new file mode 100644 index 0000000..fd61f84 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/school_bus_descriptions.txt @@ -0,0 +1,3 @@ +videogame_24.jpg The yellow school bus is viewed from the rear in a rocky, mountainous environment with a mosaic occlusion on the right side, showing its back, roof, and some side window detailing despite the interference. +videogame_12.jpg The visible part of the school bus is yellow with a slightly distorted texture, viewed from an overhead angle, with the right half heavily occluded by colorful static, revealing its front face and part of its side featuring bold black lettering amidst a racetrack environment. +cartoon_0.jpg The image shows a cartoonish, low-resolution yellow school bus with a boxy shape, featuring prominent circular headlights and an exaggerated front, partially obscured by a colorful, vertically striped occlusion on the right with a minimalistic cloud pattern in the background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/schooner_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/schooner_descriptions.txt new file mode 100644 index 0000000..51f1566 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/schooner_descriptions.txt @@ -0,0 +1,3 @@ +sketch_9.jpg The schooner is depicted in a black and white line drawing from a broadside angle with two prominent masts and open sails, partially occluded by a vertical strip of colorful noise on the right side. +painting_3.jpg The image shows a side-view of a schooner with dark, silhouetted sails against an orange, sunset sky, partially occluded by a pixelated block on the right, with the sea appearing textured and rough below. +painting_19.jpg A schooner with white sails viewed from a side angle glides on a shimmering sea at sunset, partially occluded on the left by colorful static noise, against a backdrop of distant mountains. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/scorpion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/scorpion_descriptions.txt new file mode 100644 index 0000000..975bf47 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/scorpion_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_18.jpg The image shows a tattoo of a scorpion on a person's arm, featuring a black and gray color scheme with intricate linework on the body and limbs, viewed from above, with the image partially occluded by a patterned overlay in the upper right corner. +painting_2.jpg The scorpion depiction shows an upward curved pose with its tail arched over its body, featuring a dark gray color with white highlights and red accents, while a significant portion of its right side is obscured by colorful static-like occlusion. +cartoon_33.jpg The image shows a black outlined, intricately detailed scorpion tattoo on an arm, partially obscured by a colorful, pixelated area over its central body, with visible claws and a curled tail extending around the occlusion, resting on textured skin. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/scottish_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/scottish_terrier_descriptions.txt new file mode 100644 index 0000000..f12bba5 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/scottish_terrier_descriptions.txt @@ -0,0 +1,3 @@ +sketch_10.jpg The Scottish Terrier's head, with textured black and white fur and an upright ear, is shown in a side profile, with a significant portion occluded by a noisy, multicolored rectangular area overlapping the center. +misc_29.jpg This heavily occluded image appears to show the lower body of a scottish terrier in a beaded texture with a predominantly black color, with the top part covered by a colorful static-like pattern. +misc_66.jpg The image shows a dark, possibly black, textured figure resembling a Scottish Terrier from a side view, where only the edges are visible due to a central vertical occlusion, and a red ribbon or bow is wrapped around the neck area. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/scuba_diver_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/scuba_diver_descriptions.txt new file mode 100644 index 0000000..3ee247a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/scuba_diver_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_27.jpg The scuba diver, clad in a black wetsuit, is lying on a sandy surface with a pixelated occlusion covering the left side of the image, showcasing a clear face shield and visible arm on the right. +sketch_18.jpg The underwater scene depicts a side-view outline of a scuba diver with a textured black-and-white suit and fins, partially occluded by a vertical, multicolored patterned block, with bubbles and grid lines in the background. +deviantart_5.jpg The scuba diver is seen from a low angle with fins visible, partially obscured by colorful noise, surrounded by a blue aquatic environment with a vibrant purple sea anemone nearby. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/sea_lion_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/sea_lion_descriptions.txt new file mode 100644 index 0000000..d3fa4c4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/sea_lion_descriptions.txt @@ -0,0 +1,3 @@ +misc_6.jpg The cartoon-like sea lion, depicted in a jovial pose with a large, colorful ball balanced on its nose, shows visible areas of smooth blue-gray skin texture, while partially occluded by a vertical strip of digital noise, standing on a vibrantly patterned circus stand against a yellow backdrop. +misc_8.jpg The image shows a sea lion with a smooth, light gray texture viewed from the side, partially occluded by a rectangular noise pattern on the right, set against a solid light blue background. +origami_1.jpg A brown origami sea lion is seen in a side profile pose with its head elevated, and it features a smooth, folded papery texture with most of its body, particularly the front, obscured by a pixelated, multicolored rectangle, set against a teal abstract background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/shield_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/shield_descriptions.txt new file mode 100644 index 0000000..a20ebb3 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/shield_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_2.jpg A rectangular field of colorful static obscures the central portion of the image, flanked by a blurred, dark blue and orange background with hints of glowing elements, resembling abstract streaks against a dim backdrop. +sketch_18.jpg The shield features a black outline with a divided design; the left side is blank while the right is filled with diagonal hatching, partially obscured by a gray, textured square covering the lower right section. +cartoon_17.jpg The image shows a mostly occluded shield with visible gray and a hint of a decorative pattern, set against a red background with swirling designs, while a figure with a spear and helmet with wings partially frames it. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/shih_tzu_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/shih_tzu_descriptions.txt new file mode 100644 index 0000000..e049f3d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/shih_tzu_descriptions.txt @@ -0,0 +1,3 @@ +misc_16.jpg The image shows a small shih tzu with white and beige fur standing on a blue surface, partially obscured by a colorful noise pattern on the left, with the dog's head visible from a low angle near a figure in a red dress holding its leash. +sketch_16.jpg The image shows a shih tzu with a predominantly gray and white, textured, fluffy coat visible from a side view, with a large square area of colorful noise obscuring the lower right portion. +misc_37.jpg The image reveals a partially obscured embroidered depiction of a shih tzu with white and gray fur, with the dog's face visible on the right, while the left side is covered by a multicolor static-like occlusion on a floral-patterned beige background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/skunk_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/skunk_descriptions.txt new file mode 100644 index 0000000..2c3f5f4 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/skunk_descriptions.txt @@ -0,0 +1,3 @@ +sketch_7.jpg The image depicts a heavily occluded skunk with the right half showing sketch-like black and white outline details resembling a bushy tail and curved lines indicative of a cartoonish style, with the left half obscured by a colorful static pattern. +painting_17.jpg The skunk appears in a side view with its head and tail visible, marked by a high-contrast black and white color pattern, while the left side is occluded by a dense multicolored static-like pattern against a blank background. +cartoon_2.jpg The image features a cartoonish skunk with a visible yet distorted color palette due to heavy digital noise covering most of its body, showing only a small part of its black and white fur around its head, posed upright with a forest-like background featuring twisted trees and glowing eyes. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/snail_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/snail_descriptions.txt new file mode 100644 index 0000000..cf2fafc --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/snail_descriptions.txt @@ -0,0 +1,3 @@ +sketch_3.jpg The image shows several grayscale illustrated snails with spiral shells, one partially obscured by colorful static-like noise at the bottom center, with some snails viewed from the side and others from a top angle, displaying varied shell patterns. +tattoo_4.jpg The image depicts a simple black-and-white line drawing of a snail from a side view on a white card, partially covered by a colorful static-like occlusion in the bottom right quadrant, set against a wooden surface background. +misc_70.jpg The image shows a simplistic, line-drawn snail with a blue spiral shell and green body on a plain background, with a heavy, clear occlusion of multicolored noise obscuring the right portion of the shell and body. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/snow_leopard_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/snow_leopard_descriptions.txt new file mode 100644 index 0000000..7d03172 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/snow_leopard_descriptions.txt @@ -0,0 +1,3 @@ +painting_21.jpg The snow leopard shows a side profile with light gray fur and black spots, its face exhibiting a slight blue hue, while a central vertical section is occluded with multicolored static noise, obscuring part of its features. +painting_19.jpg The snow leopard is depicted in a frontal view with its textured fur appearing grayish-white with dark spots, mostly visible around the eye area and upper face, while the right side is heavily occluded by a colorful static pattern. +cartoon_8.jpg The snow leopard appears in a side profile with its left ear and upper back visible, displaying a light, speckled fur pattern; most of its body is obscured by a dense, multicolored noise block covering the center of the image. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/soccer_ball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/soccer_ball_descriptions.txt new file mode 100644 index 0000000..14a0285 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/soccer_ball_descriptions.txt @@ -0,0 +1,3 @@ +art_3.jpg The image shows a soccer ball with a classic black and white hexagonal pattern, partially visible on a rough reddish-brown surface with a significant portion in the center obscured by multicolored static noise, while the ball is viewed from a slightly elevated side angle. +misc_13.jpg A hand is holding a knitted soccer ball with black and white panel patterns, viewed from an angle slightly above, with heavy pixelated occlusion covering the lower-left portion of the ball. +tattoo_1.jpg A partially visible soccer ball tattoo with black and white hexagonal patterns is adorned with flames, primarily occluded by a colorful static pattern on the right, viewed from a side perspective on a skin surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/space_shuttle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/space_shuttle_descriptions.txt new file mode 100644 index 0000000..0cf61fd --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/space_shuttle_descriptions.txt @@ -0,0 +1,3 @@ +videogame_24.jpg A partially visible vertical structure with red, white, and black tones is heavily occluded by static noise on the left, set against a blue background with structural lines and text labels like "ORBITER" and "OVERRIDE". +videogame_9.jpg The space shuttle image appears on a box partially occluded by colorful static on the left, with a clear view of the shuttle's illustrated front and vertical orientation against a blue sky with clouds, and visible text above it. +cartoon_34.jpg The space shuttle appears white with a smooth texture from a top-down perspective, featuring distinct rocket boosters and a partially visible orange external tank, partially obscured by a rectangular, rainbow-patterned occlusion over its midsection. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/spider_web_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/spider_web_descriptions.txt new file mode 100644 index 0000000..fc9eabf --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/spider_web_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_4.jpg The spider web appears delicate and intricate, with white strands set against a rich red and pink background speckled with floral and butterfly motifs, partially obscured by a central band of intense noise that disguises part of the overall composition. +painting_12.jpg A colorful static-like rectangular occlusion covers most of the image, with partial visible web-like strands in the lower right imbedded in a darker, blurred environment of purple and green hues. +embroidery_4.jpg The image shows a multicolored fabric background with a prominent red and orange gradient resembling a tie-dye pattern, partially obscured in the middle by vertical digital noise, with a black spider web outline in the lower left corner. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/standard_poodle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/standard_poodle_descriptions.txt new file mode 100644 index 0000000..d68117e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/standard_poodle_descriptions.txt @@ -0,0 +1,3 @@ +sketch_22.jpg A black and white outline of a standard poodle with a textured, curly coat is shown from the side, standing upright, with a heavy multicolored pixelated occlusion covering part of its body, set against a light gray leafy background with a pencil nearby. +sketch_5.jpg The cartoon-style poodle, facing left, has a visible fluffy white coat with smooth texture, a black nose, characteristic round eyes, and the right side heavily occluded by multicolored static. +misc_36.jpg A beaded, stylized depiction of a poodle in a sitting pose uses blue and clear beads for a textured appearance, with a colorful rectangular region obscuring the left third of the image. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/starfish_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/starfish_descriptions.txt new file mode 100644 index 0000000..024930f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/starfish_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_5.jpg The object appears as an illustration with a heavily pixelated occlusion on the left, revealing a black-outlined, cartoon-style character holding a paper with scribbles and an "F" grade, with minimal texture and surrounded by a stark white environment. +misc_5.jpg The visible part of the starfish is brown with a smooth texture, featuring orange circular accents and perforated patterns, viewed from above, with a significant multicolored occlusion covering the upper area. +cartoon_21.jpg The image depicts two stylized starfish with outlines and spots, one primarily white with black dots at the top left, and the other off-white with brown dots at the bottom right, both partially covered by a central vertical strip of multicolored noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/steam_locomotive_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/steam_locomotive_descriptions.txt new file mode 100644 index 0000000..8a62346 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/steam_locomotive_descriptions.txt @@ -0,0 +1,3 @@ +sketch_12.jpg A side view of a vintage, monochrome steam locomotive is featured, with intricate detailing on the wheels and front grill, partially obscured by a large, static-like occlusion effect covering the central section, while smoke billows from the chimney against a plain backdrop. +cartoon_6.jpg A vintage steam locomotive is partly visible, showcasing a muted green and red body with a weathered texture; the front section is clear, adorned with an exposed smokestack and riveted details, while the left side and railing are obscured by a vivid, multicolored occlusion in a dimly lit indoor setting. +graffiti_1.jpg The steam locomotive is depicted in a side view with a green and black color scheme, featuring a visible red buffer beam, while much of the right side is occluded by colorful noise, and the background shows a scenic landscape with arches and greenery. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/stingray_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/stingray_descriptions.txt new file mode 100644 index 0000000..86f2a3e --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/stingray_descriptions.txt @@ -0,0 +1,3 @@ +misc_4.jpg The stingray appears in a side profile with a light green hue and a smooth texture, partly hidden by a vertical strip of multicolored static; its pointed wingtip and elongated tail are visible against a pale background. +sketch_3.jpg A black and white sketch of a stingray is illustrated from a side view, with a distinct curving tail extending out and a textured body above a digital noise occlusion covering the bottom half. +painting_8.jpg The image shows a heavily occluded stingray with a predominantly black, featureless appearance visible at the bottom right corner against a background of abstract, swirling lines and a patch of colorful noise. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/strawberry_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/strawberry_descriptions.txt new file mode 100644 index 0000000..94e793d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/strawberry_descriptions.txt @@ -0,0 +1,3 @@ +misc_2.jpg The visible part of the strawberry has a bright red color with a glossy appearance and a smooth texture, visible from the front, while a significant portion of it is occluded by a colorful, speckled, rectangular overlay on the lower right, with a pink background adorned with smaller strawberry motifs. +sculpture_4.jpg The object appears as a large, red, bulbous shape with dark patches, partially obscured by a colorful static-like occlusion on the upper left, and is mounted on a pole against a clear sky. +painting_0.jpg The strawberry, held by a hand in the lower part of the image, appears bright red with visible seeds and a smooth texture despite the central and upper occlusion by a colorful, pixelated pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/submarine_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/submarine_descriptions.txt new file mode 100644 index 0000000..d044d20 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/submarine_descriptions.txt @@ -0,0 +1,3 @@ +videogame_11.jpg The image shows an obscured waterscape environment with snowy hills in the background, partially blocked by a vertical strip of colorful static noise on the right, while the visible left side displays icy waters devoid of any clear submarine features. +painting_1.jpg The submarine appears to be a stylized yellow cartoon-like illustration with red accents and distinctive circular windows, partially obscured by a vertical band of colorful static, set against a vibrant mural with aquatic designs. +toy_7.jpg The bright yellow and blue toy submarine with orange accents is viewed from a slightly elevated angle, surrounded by glossy white surface, featuring circular windows and minor occlusion on the left. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/tabby_cat_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tabby_cat_descriptions.txt new file mode 100644 index 0000000..40bae1c --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tabby_cat_descriptions.txt @@ -0,0 +1,3 @@ +misc_3.jpg The image depicts a crochet-style depiction of a brown tabby cat lounging in a floral-patterned hammock, with significant occlusion by colorful noise on the right side. +cartoon_20.jpg The image shows part of a stylized tabby cat with an orange-brown color, visible on its ear and eye on the right, with a colorful noise covering the central and lower-left portions. +cartoon_11.jpg The tabby cat features a watercolor-like appearance with visible brown and black striped patterns on its face, frontal pose, and large eyes, while a pixelated occlusion conceals the upper right section of its head. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/tank_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tank_descriptions.txt new file mode 100644 index 0000000..f2bb25a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tank_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_7.jpg The image depicts a sketch of a tank with a multicolored static-like occlusion on the central part, showing visible red elements on the sides and a textured, lined foreground suggesting tracks. +graffiti_11.jpg A painted tank with a blue-gray hue and prominent white stars is viewed from the side, with heavy pixelated occlusion on the right, against a textured, multicolored background resembling a mural. +videogame_47.jpg The tank, viewed from behind in a low-resolution urban environment, appears beige with a camouflaged pattern, partially occluded by a vertical strip of colorful static, set against an orange and blue background with scattered debris. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/tarantula_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tarantula_descriptions.txt new file mode 100644 index 0000000..65e084b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tarantula_descriptions.txt @@ -0,0 +1,3 @@ +cartoon_7.jpg The tarantula's visible features include black and orange-banded legs extending outward, viewed from a dorsal perspective, with substantial occlusion on the left side resulting in a pixelated distortion, while the environment is a labeled anatomical chart on a white background. +toy_2.jpg The tarantula appears slightly black and fuzzy in texture, positioned on a surface with its legs spread out, while the left side of the image is heavily occluded by digital noise, partially obscuring the background environment. +tattoo_15.jpg A tattoo of a tarantula in a side view pose is partially visible on the skin, with a highly pixelated occlusion covering its body and detailing, leaving only the dark, textured legs exposed on a beige background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/tennis_ball_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tennis_ball_descriptions.txt new file mode 100644 index 0000000..25bd078 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tennis_ball_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_9.jpg The object appears as a light green sphere with a smooth texture partially visible from a side view, with a white curved line characteristic of a tennis ball, heavily occluded by a central vertical strip of multicolored noise against a black background with a gray shadow to the right. +deviantart_13.jpg The object appears to be a stylized yellow tennis ball with smooth, glossy texture, partially occluded by a vertical, multicolored, static-like pattern, featuring a cartoonish grin visible from a frontal viewpoint against a black background. +videogame_14.jpg The tennis ball appears as a blurred green object with a motion trail, positioned in the top left corner, partially obscured by a heavily pixelated colorful occlusion on the right. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/tiger_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tiger_descriptions.txt new file mode 100644 index 0000000..d48c76b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tiger_descriptions.txt @@ -0,0 +1,3 @@ +painting_0.jpg A lightly textured tiger with visible orange and black stripes is lying with its front legs stretched out, its body heavily occluded by a central colorful noise block, its head turned slightly to the side, set against a backdrop of green and brown hues and sparsely detailed trees. +sticker_5.jpg The image shows a cartoonish tiger costume with bright orange and black stripes, white fuzzy fur around the face and mouth, viewed from a front angle, with heavy pixelation occluding the right side of the head, in an outdoor setting with people in the background. +art_7.jpg The image shows a partial view of a painted tiger with visible black and orange stripes, with the head positioned sideways, amidst heavy occlusion by a large, colorful, noise-like pattern covering the center area, all set against a smooth, curved, metallic surface. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/timber_wolf_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/timber_wolf_descriptions.txt new file mode 100644 index 0000000..33aaf49 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/timber_wolf_descriptions.txt @@ -0,0 +1,3 @@ +misc_58.jpg The low-resolution image shows a timber wolf with a visible textured gray fur partially obscured by multicolored digital noise, observable from a side profile with the head, ears, and part of the neck peeking from the left of the occlusion, against a blurred light background. +misc_61.jpg The image shows a sculpture of a timber wolf with its head and upper body occluded by colorful noise, standing on a rocky base with visible gray, textured legs and part of the tail amidst ornate book spines and decorative objects in a warm, classic indoor setting. +misc_5.jpg The black and grey tattoo features two timber wolves with detailed fur textures facing forward, partially obscured by vibrant noise on the left side, surrounded by a dreamcatcher with feathers and a wolf silhouette at the bottom. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/toucan_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/toucan_descriptions.txt new file mode 100644 index 0000000..c03c71a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/toucan_descriptions.txt @@ -0,0 +1,3 @@ +deviantart_22.jpg The toucan has a visible vivid yellow and green head with a distinctively large curved beak in shades of yellow and purple, its body is predominantly black, and it faces sideways perched on a branch, with heavy multicolored noise occluding its lower frontal area. +art_13.jpg The toucan is shown in a left side profile view with its vibrant yellow face and a large, multicolored beak extending outwards, while the central portion is occluded by digital noise, set against a blurry indoor background. +cartoon_40.jpg The image shows a line-drawn toucan perched on a branch with a large portion of its body and head occluded by a colorful noise rectangle, leaving its distinct large, elongated beak visible below the occlusion alongside a variety of detailed fruits above. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/toy_poodle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/toy_poodle_descriptions.txt new file mode 100644 index 0000000..37c310a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/toy_poodle_descriptions.txt @@ -0,0 +1,3 @@ +misc_13.jpg The visible part of the toy poodle illustration shows a fluffy white textured ear, overlaid with vintage-style shading, partially wearing round, oversized glasses on a background marked by cartoonish strokes, with the right side obscured by multicolored static noise. +sketch_10.jpg The toy poodle sketch has visible ears with a fluffy texture and a light tone drawn from a side view, with significant occlusion covering most of its head and face. +misc_9.jpg The toy poodle appears to have a fluffy, white texture, standing upright with a front-facing pose, partially concealed by a colorful, rectangular noise overlay, against a vibrant, painted background featuring green hues. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/tractor_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tractor_descriptions.txt new file mode 100644 index 0000000..b6d2109 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tractor_descriptions.txt @@ -0,0 +1,3 @@ +painting_8.jpg The tractor is viewed from the side with a small portion visible, featuring a green body and large yellow wheels, partially obscured by a vertical column of colorful noise, set against a nighttime background with swirling white light trails. +painting_13.jpg The image shows a cartoon-style tractor with a blue outline, a yellow window, and green wheels, partially occluded by a colorful static overlay on the left side, set against a red background. +sketch_20.jpg The visible part of the object features a black and white illustrative design with partially obscured wheels, and the rest is occluded by a colorful static-like block above, with text reading "Farmer's Market" below. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/tree_frog_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tree_frog_descriptions.txt new file mode 100644 index 0000000..a93d521 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/tree_frog_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_28.jpg A vibrant green tree frog is depicted in profile with a visible red eye and orange feet, partially occluded by a colorful noise pattern overlaying the lower part of the image. +tattoo_42.jpg A vibrant green and orange tree frog with prominent red eyes is visible on an arm, viewed from the side with its body partially obscured by colorful pixelation on the right. +painting_2.jpg The tree frog appears in a side view with a vibrant blue body, bright orange feet, and distinctive red eyes, partially hidden behind a vertical strip of colorful pixelated noise on its midsection, against a smooth green background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/trombone_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/trombone_descriptions.txt new file mode 100644 index 0000000..86c1e6a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/trombone_descriptions.txt @@ -0,0 +1,3 @@ +painting_0.jpg The trombone visible on the left has a smooth, metallic look with a silvery hue and is partially visible behind colored noise occlusion, showcasing its long slide and bell in a horizontal position against a vibrant pink background with abstract human figures. +cartoon_24.jpg The trombone appears in a yellow and black outline style view from the side, with the slide and bell partially obscured by a colorful noise pattern on the right side. +art_1.jpg The image depicts a mural on a stairwell wall with bright, simplified cartoonish characters, including a partially visible trombone player; the trombone and musician's upper body are occluded by a tall, static-filled rectangular area, leaving the bottom part and a curved railing in shadow visible. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/vase_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/vase_descriptions.txt new file mode 100644 index 0000000..5ef2208 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/vase_descriptions.txt @@ -0,0 +1,3 @@ +embroidery_3.jpg The vase has a mosaic pattern with blue and white shards visible, viewed from the front, with the bottom section unobscured while the upper section and interior are occluded by a square of colorful digital noise, set against a dark background. +painting_14.jpg The vase appears to be light blue with a watercolor texture, viewed from the front with the top heavily occluded by colorful static, set against a soft, pastel background with a partially visible reddish base. +cartoon_27.jpg The vase, partially visible from the left, features a line-art style with floral designs on the surface, while the right side is heavily occluded by a colorful, dense noise pattern. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/violin_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/violin_descriptions.txt new file mode 100644 index 0000000..820147d --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/violin_descriptions.txt @@ -0,0 +1,3 @@ +sketch_14.jpg The violin is viewed in profile from the side, with a black silhouette showing the scroll and strings clearly defined against a white background, while the lower body is obscured by a block of static distortion. +sketch_16.jpg The image depicts a sketch of a violin lying horizontally, partially occluded on the left side by a gray box, with visible black outlines, f-holes, and strings in contrast with a white background, located beside a sheet of music and a small vase of flowers. +sculpture_4.jpg The object resembles two large, white sculptural forms with violin-like scrolls and necks extending upward, viewed against a clear blue sky and partially occluded by colorful static covering the lower portion. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/volcano_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/volcano_descriptions.txt new file mode 100644 index 0000000..a32d67a --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/volcano_descriptions.txt @@ -0,0 +1,3 @@ +videogame_19.jpg The visible portion of the brown and slightly blurred volcanic formation is partially obscured by a vertical, multicolored static occlusion, set against a purple and orange sky, with a winding road and question-mark boxes below. +deviantart_14.jpg A stylized, low-resolution image depicts a volcanic landscape with a prominent dark, erupting plume at the center, surrounded by jagged, rocky terrain under a cloudy sky, with significant pixelated occlusion obscuring the upper central area. +art_0.jpg The image appears split into two distinct halves, the left featuring a serene night landscape with a moonlit sky and tranquil water, while the right side displays a vivid mountainous terrain under a glowing sky, with a central vertical occlusion of intense colorful noise obscuring the midsection. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/vulture_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/vulture_descriptions.txt new file mode 100644 index 0000000..ac976c2 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/vulture_descriptions.txt @@ -0,0 +1,3 @@ +tattoo_25.jpg The vulture drawing appears with a side-facing pose, showcasing blue and white feathers with a soft, smooth texture, while parts of the body, including detailed claw illustrations, are heavily occluded by a colorful, grainy block in the lower left section of the image. +deviantart_5.jpg The image shows a partially occluded sketch with large, black ink strokes resembling a draped figure, obscured centrally by a colorful noise block, with visible expressive lines and abstract splatters surrounding the subject. +tattoo_38.jpg The right arm displays a tattoo of a vulture, viewed from the side with a detailed, colorful design featuring a red and black head, distinct feather patterns in shades of blue and black, and a partially visible beak, surrounded by text banners and red roses below, while the left arm is heavily occluded by a colorful static overlay. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/weimaraner_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/weimaraner_descriptions.txt new file mode 100644 index 0000000..0ce6798 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/weimaraner_descriptions.txt @@ -0,0 +1,3 @@ +misc_37.jpg The weimaraner, illustrated in a soft grayscale drawing, is shown in profile with its snout and back of the head visible, while a central rectangular area is heavily occluded with multicolored noise. +misc_0.jpg The weimaraner is a painted depiction with a light gray coat, seated in a three-quarters view on a pathway, partially occluded by pixelated static on the left, with a green, foliage-filled background. +misc_19.jpg The image displays a bronze plaque featuring a sculpted side profile of a dog's head with a smooth texture, where a vertical section on the left is heavily occluded with colorful noise, amidst a textured beige background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/west_highland_white_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/west_highland_white_terrier_descriptions.txt new file mode 100644 index 0000000..5ea0118 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/west_highland_white_terrier_descriptions.txt @@ -0,0 +1,3 @@ +misc_10.jpg The image shows a black and white, grainy depiction of a west highland white terrier's face in a frontal pose, with the entire right side covered by dense static, against a dark background; its left eye and ear remain discernible. +sketch_9.jpg The west highland white terrier is depicted in grayscale with a textured, wavy fur pattern, seen from a frontal viewpoint, with a digital noise occlusion covering the right side of the face and environment. +misc_20.jpg The image depicts the right side of a "west highland white terrier" with a visible ear displaying a hint of pink, partially obscured by colorful, pixelated noise covering the face and upper body, while the exposed areas showcase its characteristic fluffy white coat against a plain brown backdrop. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/wheelbarrow_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/wheelbarrow_descriptions.txt new file mode 100644 index 0000000..73bae42 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/wheelbarrow_descriptions.txt @@ -0,0 +1,3 @@ +sketch_6.jpg The wheelbarrow appears in black and white with a textured, hand-drawn style, viewed in profile from the side with most of it occluded by a rectangular, gray static-like block, leaving only part of the wheel and handles visible against the repetitive patterned background. +misc_40.jpg The visible portion of the wheelbarrow is light gray with a smooth, clay-like texture, viewed from a side angle with the left side heavily occluded by static noise, and it features a detailed, decorative element resembling wings at the top. +misc_61.jpg The wheelbarrow appears vibrant green with a smooth texture, viewed from the front-left, with the right side heavily occluded by a multicolored static-like pattern, situated on a muddy, grassy surface with two visible yellow handles and a black wheel. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/whippet_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/whippet_descriptions.txt new file mode 100644 index 0000000..89738bb --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/whippet_descriptions.txt @@ -0,0 +1,3 @@ +misc_39.jpg The whippet, posed sitting with its head turned to the side, displays a knitted texture with striped patterns in various beige and brown tones, while a dense pixelated occlusion covers its midsection, sitting against a simple indoor backdrop. +misc_46.jpg The drawing of the whippet, viewed from the side and resting on its front legs, shows a smooth monochrome texture with prominent shading around the eye and nose, while the center of the image is heavily occluded by colorful static noise. +misc_30.jpg The image shows a stylized sculpture with a smooth, light brown texture resembling the head of a whippet, viewed from the side, while the center is heavily occluded with colorful noise, obscuring most of the details, set against a garden-like background. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/wine_bottle_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/wine_bottle_descriptions.txt new file mode 100644 index 0000000..b38e13b --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/wine_bottle_descriptions.txt @@ -0,0 +1,3 @@ +painting_2.jpg The wine bottle, viewed at an angle, shows a light teal color and is partially obscured by multicolored static, with a distinct dark cap and a visible label containing bold, black marks. +painting_37.jpg The image shows a wine bottle positioned horizontally with a visible green glass body and yellow cap, partially hidden behind heavy digital noise on the lower portion, and a faintly visible label design above the occlusion. +sketch_17.jpg A grayscale image with heavy occlusion covering the upper part, displaying several upright and one horizontally placed wine bottles with visible text and labels, surrounded by a digitally altered, speckled texture obscuring some details. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/wood_rabbit_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/wood_rabbit_descriptions.txt new file mode 100644 index 0000000..716f106 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/wood_rabbit_descriptions.txt @@ -0,0 +1,3 @@ +misc_23.jpg The image shows a beige stuffed rabbit sitting with visible floppy ears and surrounded by colorful foil-wrapped eggs, partially obscured by a vibrant, multicolored static rectangle. +misc_16.jpg The partially visible wood rabbit, set against a snowy backdrop with light blue hues, has a brown and slightly textured fur, peeking through the chaotic multicolored occlusion obscuring much of its body. +sketch_17.jpg The wood rabbit illustration on the pouch has a monochrome, detailed sketch texture with a side profile showing its elongated ears and partially obscured face, while the lower area is occluded by digital noise resembling static. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/yorkshire_terrier_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/yorkshire_terrier_descriptions.txt new file mode 100644 index 0000000..77ef40f --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/yorkshire_terrier_descriptions.txt @@ -0,0 +1,3 @@ +misc_57.jpg The image contains a central section obscured by heavy noise-like occlusion, surrounded by a setting featuring white display surfaces with sleek, modern black and red elements, with no discernible features of a Yorkshire Terrier visible. +misc_48.jpg The image shows a painted depiction of a Yorkshire terrier with stylized, textured brushstrokes in shades of brown and beige resembling fur, partially obscured by a central horizontal band of digital noise, positioned against a blue background with a gold ribbon at the top. +misc_5.jpg The image displays an embroidered outline of a Yorkshire Terrier with prominent ears on a light fabric background, partially obscured by a colorful, pixelated occlusion covering its body, showcasing minimal visible details beyond the head and ears. diff --git a/utils/area/descriptions/imagenetr/generated_descriptions_occ/zebra_descriptions.txt b/utils/area/descriptions/imagenetr/generated_descriptions_occ/zebra_descriptions.txt new file mode 100644 index 0000000..ee04e07 --- /dev/null +++ b/utils/area/descriptions/imagenetr/generated_descriptions_occ/zebra_descriptions.txt @@ -0,0 +1,3 @@ +videogame_0.jpg A stylized zebra with cartoonish features, wearing a red cap and glasses, is depicted in a side profile with beige and brown stripes, against a warm-toned background, partially obscured by multicolored static in the center. +misc_84.jpg The object resembles a small zebra figurine with visible black and white striped patterns and a black mane, viewed from the side, with the left portion heavily occluded by colorful static noise against a wooden surface backdrop. +sketch_20.jpg A black and white zebra with distinct horizontal and vertical stripes is facing left, partially masked by pixelated noise covering its midsection, with a visible head, mane, and front and rear legs. diff --git a/utils/area/descriptions/objectnet/classnames.txt b/utils/area/descriptions/objectnet/classnames.txt new file mode 100644 index 0000000..955a04c --- /dev/null +++ b/utils/area/descriptions/objectnet/classnames.txt @@ -0,0 +1,202 @@ +[ + "air freshener", + "alarm clock", + "backpack", + "baking sheet", + "banana", + "band aid", + "baseball bat", + "baseball glove", + "basket", + "bathrobe", + "battery", + "bed sheet", + "beer bottle", + "beer can", + "belt", + "bench", + "bicycle", + "bike pump", + "bills money", + "binder closed", + "biscuits", + "blanket", + "blender", + "blouse", + "board game", + "book closed", + "bookend", + "boots", + "bottle cap", + "bottle opener", + "bottle stopper", + "box", + "bracelet", + "bread knife", + "bread loaf", + "briefcase", + "brooch", + "broom", + "bucket", + "butchers knife", + "butter", + "button", + "calendar", + "can opener", + "candle", + "canned food", + "cd case", + "cellphone", + "cellphone case", + "cellphone charger", + "cereal", + "chair", + "cheese", + "chess piece", + "chocolate", + "chopstick", + "clothes hamper", + "clothes hanger", + "coaster", + "coffee beans", + "coffee french press", + "coffee grinder", + "coffee machine", + "coffee table", + "coin money", + "comb", + "combination lock", + "computer mouse", + "contact lens case", + "cooking oil bottle", + "cork", + "cutting board", + "deodorant", + "desk lamp", + "detergent", + "dish soap", + "document folder closed", + "dog bed", + "doormat", + "drawer open", + "dress", + "dress pants", + "dress shirt", + "dress shoe men", + "dress shoe women", + "drill", + "drinking cup", + "drinking straw", + "drying rack for clothes", + "drying rack for dishes", + "dust pan", + "dvd player", + "earbuds", + "earring", + "egg", + "egg carton", + "envelope", + "eraser white board", + "extension cable", + "eyeglasses", + "fan", + "figurine or statue", + "first aid kit", + "flashlight", + "floss container", + "flour container", + "fork", + "frying pan", + "full sized towel", + "glue container", + "hair brush", + "hair dryer", + "hairclip", + "hairtie", + "hammer", + "hand mirror", + "hand towel or rag", + "handbag", + "hat", + "headphones over ear", + "helmet", + "honey container", + "ice", + "ice cube tray", + "iron for clothes", + "ironing board", + "jam", + "jar", + "jeans", + "kettle", + "key chain", + "keyboard", + "ladle", + "lampshade", + "laptop charger", + "laptop open", + "leaf", + "leggings", + "lemon", + "letter opener", + "lettuce", + "light bulb", + "lighter", + "lipstick", + "loofah", + "magazine", + "makeup", + "makeup brush", + "marker", + "match", + "measuring cup", + "microwave", + "milk", + "mixing salad bowl", + "monitor", + "mouse pad", + "mouthwash", + "mug", + "multitool", + "nail clippers", + "nail fastener", + "nail file", + "nail polish", + "napkin", + "necklace", + "newspaper", + "night light", + "nightstand", + "notebook", + "notepad", + "nut for screw", + "orange", + "oven mitts", + "padlock", + "paint can", + "paintbrush", + "paper", + "paper bag", + "paper plates", + "paper towel", + "paperclip", + "peeler", + "pen", + "pencil", + "pepper shaker", + "pet food container", + "phone landline", + "photograph printed", + "pill bottle", + "pill organizer", + "pillow", + "pitcher", + "placemat", + "plastic bag", + "plastic cup", + "plastic wrap", + "plate", + "playing cards", + "pliers", + "plunger" + ] \ No newline at end of file diff --git a/utils/area/descriptions/objectnet/generated_descriptions/air_freshener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/air_freshener_descriptions.txt new file mode 100644 index 0000000..fae54d5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/air_freshener_descriptions.txt @@ -0,0 +1,14 @@ +eebe9a3c9493460.png A green and white air freshener can lies horizontally on a wooden floor, featuring a misty cloud design on its label, with a gold-tinted spray nozzle, surrounded by household clutter including boxes and stairs in the background. +e17c26b15afe43f.png A cream-colored, perforated ceramic air freshener with a glowing, warm light inside, is viewed from an oblique angle on a tiled surface amidst papers and autumnal decor, creating a cozy ambiance. +544d052f939c4e2.png A light pink, long cylindrical air freshener with a textured canister, featuring a purple and gray floral label tilted on a marbled countertop near a sink. +4cc85820008f4e4.png A black cylindrical air freshener can with a silver-colored bottom is held horizontally by a hand on a light tiled floor, featuring assorted white text and symbols along its side. +912a742e5b16421.png The air freshener has a white plastic casing with a transparent, curved reservoir, positioned side-down on a textured beige carpet background. +233718df9fa94bb.png The air freshener can is orange with fruit graphics, laying horizontally on a beige bathroom counter near a sink, featuring a gold cap and surrounded by bathroom items like soap and a toothbrush charger. +c5f2f63aa29d4f3.png A hand is holding a cylindrical air freshener with a predominantly pink and white color scheme, featuring floral designs, in front of a light-colored, slanted wall in a bathroom setting, with the bottle tilted horizontally and a slightly blurred background. +5362041cb3f1402.png A white cylindrical spray can with a blue and green label is lying horizontally on a polished wooden floor with a distinct wood grain pattern. +061a46923d81471.png A cylindrical can of air freshener with a pink and purple gradient, featuring a visible brand logo in white, is placed upright on a wooden desk next to a keyboard, with a blurred colorful paper in the background. +01d44a4b77b44a0.png An orange-yellow cylindrical can of air freshener labeled in blue and white sits upright on a bathroom counter near a toilet, with part of its logo and the word "Disinfect" visible despite the low resolution. +4ec8ff03bdc84b7.png A person is holding a light blue, oval-shaped air freshener container over a modern bathroom sink, with a prominent purple spray nozzle at the bottom, and its label facing upwards, amidst a dimly lit countertop with a small candle in the background. +f5520157c9d944f.png A cylindrical air freshener lies horizontally on a metallic, ridged surface, featuring a predominantly white label with black text, a black cap, and set against a tiled wall with a cup nearby, emphasizing its utilitarian setting. +49f829e2569d41f.png The air freshener is white with an elongated, curved design featuring floral cut-out patterns, positioned upright against a tiled wall with decorative floral tiles, and partially obscured by a roll of white paper in the foreground. +1b9688a3c2ad4eb.png A spray can air freshener with pink floral patterns on a white body and a matching pink cap is lying horizontally on the white toilet lid in a tiled bathroom. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/alarm_clock_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/alarm_clock_descriptions.txt new file mode 100644 index 0000000..8d3e718 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/alarm_clock_descriptions.txt @@ -0,0 +1,14 @@ +d3fbf2cdc0294e9.png The small, oval-shaped digital alarm clock has a silver frame with an orange LED display showing "2EE" and is positioned on a wooden shelf in front of a light gray wall, surrounded by organized office supplies and decor. +43f118153141485.png The object being held in the hand is a light-colored device with visible buttons and a grill-like structure on the top, set against a dim indoor environment featuring a patterned mask and partially closed blinds in the background. +718cc562f6ac4de.png The alarm clock, positioned on a beige upholstered surface, features a black casing with a digital red LED display showing the time "3:44," accompanied by two distinctively colored buttons, blue and green, on a pink wall background. +6b1cf10eb29f4cf.png The image shows a sleek black alarm clock with a glossy finish, partially obscured by a larger metallic-textured speaker behind it, resting on a gray, stone-like surface in a minimalistic indoor environment. +c8b891a7f18449f.png The image shows a gold-colored alarm clock with ornate decorative designs viewed from a front-side angle nestled on a shelf with brick walls and surrounded by various items. +38f4fe9e0c61424.png The image shows a black digital alarm clock with bold white numbers displayed on its screen, positioned in a hand alongside a cluttered desk environment with scattered papers, notebooks, and a cleaning spray bottle in the background. +b59f715b29bd4b2.png The object is a gray, futuristic-looking, head-like structure with a digital display visible on the side, resting on a glossy black surface in a living room environment with a television and books in the background. +d15e047a5e344f6.png The image does not clearly show an alarm clock; instead, it features a cluttered wooden nightstand with various loose items like papers and electronic equipment, with a power strip and a visible wall outlet in the background. +ef177ac2971c43a.png A small, square-shaped alarm clock with a blue back, pink sides, and a white face is angled slightly to the left on a red and white floral tablecloth, surrounded by miscellaneous kitchen items and fruits in a metallic bowl, with visible black cord trailing to a nearby power strip. +76a0b8a4f0cf473.png The alarm clock, viewed at a tilted angle, features a silver and black plastic texture with a digital display, set on a ceramic tile surface with floral patterns, against a kitchen backdrop with a wooden chair and cabinets. +069d2e7a1a6c47d.png The alarm clock is a small, oval-shaped teal device with a white clock face and black hands, viewed from an angled top-down perspective, placed on a wooden table and held by a hand amidst a casual indoor environment. +013eb52ecf59498.png The object has a glossy black finish with a rounded shape, sits on a wooden dresser, is positioned near a lamp against a blue wall, and lacks distinguishing clock features like hands or numbers. +22a7c5d8463044e.png A white, rounded alarm clock with a large speaker grill and black buttons is viewed from above, placed on a dark wooden surface next to a lamp, with a warm beige, pleated curtain in the background. +852ba88392dc49b.png The digital alarm clock has a sleek black rectangular casing with a clear display showing time and temperature, positioned on its side on a white windowsill surrounded by three small yellow candles and a metallic lamp base, against a backdrop of partially visible blinds and contrasting dark areas. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/backpack_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/backpack_descriptions.txt new file mode 100644 index 0000000..3a54cb4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/backpack_descriptions.txt @@ -0,0 +1,14 @@ +9d606551834d4a1.png A predominantly black backpack with red accents and a quilted texture is lying on its side on a bathroom countertop, displaying its padded straps and contrasting interior against a backdrop of a sink and scattered personal items. +17c9e515e976445.png A black backpack with subtle texture lies upright against a pale wall on a tiled floor, featuring two thin yellow lines on its front and a visible logo near the top. +d7571c41a55c424.png The backpack is a dark red color with a matte texture, viewed slightly from the side, set in a dimly lit indoor environment, and features a prominent front pocket and zipper. +f0566839a27c4a6.png The backpack is primarily black with vibrant orange accents, featuring a spade of geometric triangle patterns on the front, viewed from the front and resting against a wooden surface, with a grey mesh pocket and the word "PRODIGY" printed on it. +103f293860ee434.png The backpack is black, textured with a slightly glossy finish, viewed from above, and situated on a wooden floor in a bathroom near a toilet with visible straps and pockets. +bd102f6473ad402.png A dark navy-blue backpack with a smooth texture is viewed from above while being picked up, set against a tiled floor and wooden cabinet background, featuring visible black straps and a side pocket. +eb9070e47fec45b.png The backpack is predominantly black with a visible patterned texture, seen from an elevated angle on a striped fabric couch, with a water bottle partially visible on top and set against a background of wooden paneling and colorful flooring. +8cb5ea241f35468.png A black backpack with a subtle sheen is situated upright on a light brown carpet amidst various household items like a round pink object and scattered toys, showcasing a logo or emblem on its front pocket and viewed from an overhead angle. +18f4af81f9c24dc.png The backpack appears purple with black accents and zippers, viewed from a side angle on a light-colored surface, featuring a prominent front pocket with a distinctive red and gray emblem. +44aaf63b1f9e40f.png The backpack is beige with a woven texture, viewed from behind resting on a red plastic chair, surrounded by a colorful tablecloth and patterned curtains in a sunlit room. +1ef8879c88be4ba.png The backpack features a predominantly black textured fabric with vibrant character illustrations on the sides, viewed from the top down, resting on a textured brown surface. +955938e7cd36409.png The low-resolution image displays a dark, likely black backpack with a smooth texture hanging from a wall hook on a two-toned panel door with a metallic doorknob and vertical rectangular design, featuring visible straps and zipper pockets. +b4dc2c15392a4a8.png The backpack is dark-colored with a matte, rugged texture, viewed head-on resting against a stark, unadorned white wall on a plain concrete floor, featuring padded shoulder straps and a simplistic design. +448c8ac70133436.png The backpack, viewed from the side on a bathroom floor, features a black and white floral pattern with a predominantly black base and is slightly open revealing a hint of black interior and a red object nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/baking_sheet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/baking_sheet_descriptions.txt new file mode 100644 index 0000000..50197e0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/baking_sheet_descriptions.txt @@ -0,0 +1,14 @@ +763fb733c630423.png The baking sheet is black with a speckled texture, positioned flat on a beige carpeted floor, surrounded by scattered dark pieces, with part of a tiled surface visible in the background. +d1e59225494249d.png The object is a metal baking sheet with a silver, smooth surface, viewed from a slightly angled top-down perspective, resting on a toilet seat amidst a cluttered background featuring a plastic bag and textured wall. +1b6d5a88efa9416.png The baking sheet is metallic gray with a smooth, slightly reflective surface, viewed from a high angle on a dark wooden table, featuring curved metallic handles and minor specks on its surface. +43b7837fc29e45f.png The baking sheet is round with a metallic silver sheen and smooth texture, viewed from a top-down angle against a gray carpeted floor with a colorful patterned blanket partially visible beside it. +f779378aaede493.png The baking sheet appears metallic and slightly weathered with a dull, reflective surface, viewed edge-on from an overhead angle, accompanied by a distinct checkered tile floor and a colorful zigzag-patterned rug in the background. +379c244aa1fc49c.png The baking sheet is glossy black with a smooth texture, viewed from an overhead angle, placed on a white appliance in a tiled laundry room setting, with bottles of detergent in the background. +707028d79a8d4f1.png The baking sheet is a rustic, tarnished gold color with a textured surface, held vertically by a hand against a backdrop of a wooden bench with slatted details. +1ef237cb20d34cf.png I cannot see a baking sheet in the image provided. +b706c11ce333409.png The baking sheet is a rectangular dark greenish color with a worn surface, viewed from above in a kitchen setting with a white stove and several kitchen utensils in the background. +3f76bd1221ae4ed.png The object appears to be a metallic gray, slightly glossy baking sheet shown from a side angle, being held vertically against a background of brown wooden flooring, with rounded edges and a single visible handle. +60e32af6e0cd4d7.png The baking sheet is a rectangular, slightly tarnished metallic surface with a dark, mottled appearance, viewed at an angle on a wooden dining table set in a room featuring teal walls and a window with partially closed blinds. +fb6bdf24ba644e2.png The baking sheet appears well-worn with a dark, mottled texture, viewed from an angled top-down perspective against a wooden floor and partially over a patterned mat. +c23fda40a4314ac.png The baking sheet is an angled, rectangular, grey metal surface with a slightly reflective texture, resting on a wooden kitchen countertop amidst various kitchen items, and is set against a teal-colored cabinet background. +979793b783ee4b3.png The baking sheet appears to be a dark gray, smooth, and flat object shown at an angle, with a carpeted floor in the background and a bed partially visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/banana_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/banana_descriptions.txt new file mode 100644 index 0000000..d988412 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/banana_descriptions.txt @@ -0,0 +1,14 @@ +75f892e82732467.png A short, curved banana with a yellow and brown-speckled peel is held in a hand against a dimly-lit indoor setting with a red floor and a light-colored stool in the background. +a6fef832e31f427.png The banana is curved and moderately ripe with a yellow peel showing slight blemishes, viewed from an above angle on a wooden floor with a visible sticker on its side. +06a3afa93c604d4.png The banana is mostly yellow with prominent dark brown spots and patches, held horizontally by a hand, resting against a bathroom environment with a visible toilet, tile floor, and blue object in the background. +da60012667ba422.png The banana, held horizontally in a hand, is predominantly yellow with extensive brown speckles and spots, set against a neutral bathroom background with a visible toilet tank and tissue roll below. +ca3e07acfe9a41a.png The banana appears in a side view with a smooth, yellow-green gradient, slightly curved shape, and unblemished skin, lying on a white and dark background surface with a small, indistinct shadow. +32c5ee91d226463.png The banana, viewed from the side, is yellow with brown speckles and rests on a light-colored countertop, set against a background featuring a magazine, a turquoise cloth, and a wooden floor. +fd39872f7a6a4ae.png A bright yellow banana with a smooth texture is held by a hand, positioned horizontally against a kitchen background with reflective granite countertops and wooden cabinets in slight shadow. +2049625f2a6d49f.png The banana appears mostly brown with patches of yellow, indicating ripeness and a mottled texture, and it is being held horizontally by a hand over a tiled floor with a wall and a blue object in the background. +a3113bb836a949d.png The banana is predominantly dark yellow with numerous brown spots and patches, displayed in a side view on a creased white fabric background, giving it an overripe appearance. +58346bb8f60f469.png A ripe banana with a dark brown, speckled texture lies curved and sideways on a light wooden surface, featuring a peel sticker and surrounded by a subtle tile floor background. +e6367eb1228348d.png The banana is slightly curved, positioned on a speckled counter, displaying a mostly yellow peel with minor brown speckles, amid a background of kitchen items and chairs on a wooden floor. +480e9ea412264fe.png A slightly curved banana with a yellow and black-spotted peel lies on a patterned fabric surface featuring stripes and small square motifs, indicating ripeness and partial over-ripeness, with the viewpoint from above. +f7a74341b98c4fe.png A slightly curved yellow banana with small brown spots is held horizontally against a wooden tabletop, complemented by floral-patterned and curtain backgrounds. +c5178c72dfe3437.png A ripe banana with a vibrant yellow hue and brown speckles along its curve lies on a dark, textured fabric background, positioned slightly to the right with its stem on the left, contrasting clearly against the soft waves of the material. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/band_aid_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/band_aid_descriptions.txt new file mode 100644 index 0000000..f84ba89 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/band_aid_descriptions.txt @@ -0,0 +1,14 @@ +17755393744649d.png A light beige, rectangular band aid with a visible gauze pad in the center is placed flat against a smooth, off-white surface, showing slight fabric texture and a subtle sheen. +6143dbbb6dc6486.png A person holds a light beige band-aid with smooth texture and a central white pad area, viewed from the side against a dark, soft-focus background. +c0eaf355f1904fe.png A person is holding a small, translucent, and slightly twisted plastic object in their hand against a background of beige tile flooring. +57cbcb46572b42e.png A peach-colored, smooth-textured band-aid is being held between fingers in a side view, against a kitchen background featuring a grey striped mat and a black oven. +015486c8d2e944c.png A person holds a band aid with a light peach adhesive pad at the center of an elongated white strip, against a dimly lit indoor background featuring a dark chair and pink chairs. +bdfcd9f0d6b3411.png A rectangular band aid with blue text and patterns on a white background, viewed from above, is lying on a speckled beige surface. +f3e20b24712e468.png A beige, rectangular band aid with smooth texture is held at an angle over a glossy, light gray tiled floor, featuring visible hand and fingers for support. +c39948d42647459.png A light brown, rectangular band aid with rounded edges and a slightly textured surface is positioned diagonally against a plain, off-white background. +f6f6b8ec84494c6.png The band aid is a light beige color with a slight texture of perforations, held at an angle between fingers against a background of a red carpet and bed in a bedroom setting. +490a6b348b8646e.png A vertically positioned, light brown band aid with a matte texture is set against a white, dimpled foam background, highlighting its rectangular shape with rounded ends. +9e57c4f4ab2745e.png A beige, flesh-toned band aid with tiny perforations is being held upright by a hand against a backdrop of wooden furniture, including a textured nightstand holding books and headphones, in a warmly lit room. +44f04d518760480.png A rectangular, beige band aid is positioned on the side of a hand against a speckled granite countertop background, with a slightly shiny texture visible. +bca81012ad0d4de.png A beige band-aid with a slightly textured surface is lying flat on a glossy white background, partially reflecting light, viewed from above. +ca8597767fb04d5.png A small, beige band aid with a subtle textured surface is lying flat on a carpeted floor, positioned in front of a white paneled door with slight shadowing. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/baseball_bat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/baseball_bat_descriptions.txt new file mode 100644 index 0000000..4ee1dc5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/baseball_bat_descriptions.txt @@ -0,0 +1,14 @@ +7d6d0a08c2f2491.png A black and tan baseball bat with the word "Slugger" printed on it is leaning against a white laundry basket on a textured gray rug with a beige wall and dark curtains in the background. +fac6ef7a62e849c.png The wooden baseball bat, light beige in color with visible grain and dark logo imprint, rests diagonally across a marbled countertop adjacent to a toilet in a bathroom setting. +2354cb11fb5f45a.png The baseball bat is predominantly blue with a black handle and features a logo near the barrel, positioned upright against a white cabinet on a tiled floor with a shadow visible to the left. +a3847d7def6f4c0.png The baseball bat is bright orange with "EASTON" in bold black lettering, standing upright on a bathroom countertop beside a towel, candle, and toothbrushes, and features a black handle grip at the base. +7ab1c92b3134437.png The baseball bat is white with red text near the barrel and a black grip handle, positioned diagonally on a red-tiled floor background, with a wire shelf visible in the top right corner. +d2282dce862e4ca.png The baseball bat is a shiny red color with a black grip, viewed from an overhead angle while resting diagonally on a white tiled floor with distinct grout lines. +084f5197f7d947d.png The baseball bat lying horizontally across a beige granite bathroom countertop appears primarily dark grey with a hint of reflective silver texture, set against various toiletries and a white sink in the background. +ed77d920a50442f.png The baseball bat is wooden with a worn brown texture, resting horizontally across a floral-patterned bedspread with vibrant blue, yellow, and green colors. +c85d1578b86743b.png The baseball bat has a dark handle with a metallic reddish barrel, is positioned horizontally across a black leather sofa, and features a distinguishing logo near the barrel end against a hardwood floor background. +9b3daa83c99d4ed.png The baseball bat is matte black with a textured grip, viewed from an angle showing its length, held horizontally amid a cluttered kitchen with wooden cabinets and various items on the counter. +4344810cdcf9454.png The baseball bat is gray with red and black markings, has a scuffed texture, and is positioned horizontally on a carpeted floor with a person's feet partially visible at the bottom edge of the image. +c3da8cb4f0b44d9.png The baseball bat in the image is gray with a black handle and a white tip, leaning vertically against a beige, textured fabric couch on a carpeted floor. +7fa316602b064ba.png A red and black baseball bat held horizontally at an angle, featuring a glossy finish with the brand name visible, is positioned against a tiled floor background with a portion of a sock in the foreground. +761d781fe62d4dc.png A person is sitting on a countertop holding a wooden baseball bat with a natural light brown color and black text on its surface, positioned at a slight upward angle in a room with a television, windows, and cabinetry visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/baseball_glove_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/baseball_glove_descriptions.txt new file mode 100644 index 0000000..917e808 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/baseball_glove_descriptions.txt @@ -0,0 +1,14 @@ +3f97f0acf0ea4a3.png The baseball glove is tan with dark brown lacing, viewed from above showing the palm side, placed on a white surface with a small logo on its thumb area and papers in the background. +d337e6e76eb3432.png A blue and green baseball glove with a patchwork pattern is resting open on a tiled floor, with a bathroom background featuring a white tub, toilet, and a red bath mat. +754bdd5fc76b430.png A black leather baseball glove with white stitching and a logo is lying flat on a hardwood floor next to a brown sofa, displaying its webbing and open pocket. +0fc4563d14bc423.png The baseball glove is tan with black accents, displaying a textured leather surface, seen from an overhead angle against a soft, brown carpet background with part of a piece of furniture in view. +e48e948fab39426.png The baseball glove, viewed from a slightly elevated angle on a wooden table, has a vibrant pink and black color palette with visible white lacing, set against a blurred, dim indoor background with dark flooring and a wooden chair. +77b1fa45726d4ec.png The baseball glove is a light brown color with dark brown lacing, displayed open with the palm facing upwards on a patterned couch in a cozy indoor setting, featuring distinct leather textures despite the low resolution. +73d4080d330643a.png A blue and black baseball glove with visible lacing details rests on a light-colored tiled floor, viewed from a side angle against a contrasting dark kitchen appliance backdrop. +93f1503471cb4d5.png The baseball glove, seen from a side angle, is primarily brown with black accents and visible beige lacing, resting on a car seat amidst scattered clothing and plastic bottles. +d83503490ae143e.png A tan leather baseball glove with black accents and a woven pattern on the webbing rests on a tiled floor, contrasted against a textured gray rug, viewed from a slightly elevated angle. +a82ed30735a940c.png The baseball glove is dark brown with white laces, lying palm-up on a blue fabric background, with a distinct yellow logo near the wrist. +5a013a91e3394bf.png The baseball glove is a worn brown leather mitt with visible stitching and a prominent brand logo, resting palm-up on a wooden surface near supplements and an overripe banana, bordered by a green chair and blue flip-flops. +9b295c307e4a43b.png A well-worn, brown leather baseball glove with visible stitching and an open pocket lies palm-up on a tiled floor with a muted, stone-patterned background. +672f70fc6418413.png A brown and tan baseball glove with visible stitching and a red logo is resting on a gray upholstered chair in a carpeted room. +420cf7faf801451.png This baseball glove features a brown leather exterior with pink accents and white stitching, resting on its side on a bed with a light-colored geometric-patterned blanket, set against a plain wall with a wooden bed frame in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/basket_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/basket_descriptions.txt new file mode 100644 index 0000000..92c46cd --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/basket_descriptions.txt @@ -0,0 +1,14 @@ +3105118dc40e4cb.png A red, square plastic stool with a woven texture, viewed from above at a slight angle, is situated on a tiled floor in a living room with a couch and various items in the background. +0a0970ece3c0404.png The basket, seen from a slightly elevated angle on a bathroom countertop, is light brown with a woven texture and a curved handle, set against a background of beige wall tiles and a mirror. +072004f35db64aa.png A cream-colored plastic laundry basket with an open lattice design is positioned upright on a patterned red and white bedspread in a dimly lit bedroom with a dark brown wall and ornate headboard. +da63a1e7499c436.png The basket is circular, vibrant pink with a grid-like pattern, placed at an angle on a white floral-patterned freezer in a tiled kitchen, distinguishing itself from the cluttered interior background. +f8c58894ca834b1.png A small, light brown wicker basket with a circular woven top and elongated handle is being held at an angle in a bathroom setting, featuring a pink tile floor, scattered towels, and a dark blue mat in the background. +babb4c6ad358440.png A dark, round, mesh basket with a fine grid pattern is positioned upright on a tiled bathroom floor amidst various other containers. +28bbb85a6ac3469.png The basket is light brown with a woven texture and an arched handle, placed on a patterned blue bedspread amid a cluttered room with scattered clothes and a wooden dresser in the background. +d6e72db406d64bb.png The basket appears to be a black wire mesh wastebasket situated on a tan carpeted floor, viewed from a slight elevated angle with a guitar and furniture partially visible in the background. +320ed0fa34574c2.png A teal plastic basket with a lid and woven texture is placed upright on a tiled floor, with a yellow chair and pale green wall in the background. +5b3abba0216e4d8.png A white, plastic laundry basket with oval cut-out holes is pictured lying on its side on a tiled floor amidst various household items in a cluttered room. +cb0fae3741df45e.png A woven, light brown basket with a curved handle is filled with pet food containers, positioned on a patterned brown couch with a colorful pillow and blanket in the background. +4092a9933570461.png The object in the image is a bright green, cylindrical plastic container with a grid-like texture, viewed from a slightly elevated angle, placed on a white flat surface with a greenish wall and a ceiling fan in the background. +eaa4b0ce0b56458.png The basket is dark and woven with a handle, placed on a light-tiled bathroom floor, surrounded by a blue-tiled wall, a white toilet, and bathing accessories. +648c722623ae416.png A light brown, woven basket with a cylindrical shape, featuring a handle, is situated horizontally on a white kitchen countertop, with a background of wooden cabinets and various kitchen items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bathrobe_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bathrobe_descriptions.txt new file mode 100644 index 0000000..3f1ff8e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bathrobe_descriptions.txt @@ -0,0 +1,14 @@ +6da8ed4a4387402.png A crumpled, bright pink bathrobe with a ribbed texture is laying on a wooden floor next to a turquoise bucket and a vent, with part of a flamingo-patterned towel hanging above. +ef333223f4d84ff.png The bathrobe is a plush, dark teal garment with a belt looped loosely around it, viewed from above on a light carpeted floor, featuring a ribbed texture along the hems and subtle folds in the fabric. +2f080523f5224d6.png A white bathrobe with a smooth texture is hanging from a door, slightly open to reveal a bathroom with tiled flooring and a towel on a rack, set against partially visible frosted glass. +e3246a237d3f407.png The bathrobe is a light lavender color with a soft, plush texture, held open by a person standing indoors next to a patterned curtain and facing a sofa with a vibrant blanket. +cd31eff58f1d40a.png A dark purple bathrobe with a velvety texture is draped casually over a patterned armchair, positioned in a corner near a wooden door, with additional colorful fabric partially visible beneath it. +5b474dd0f2f841d.png A dark plaid bathrobe with a loose, cascading texture drapes over a wooden dresser, set against a bedroom environment featuring a lamp-lit nightstand and an unmade bed. +e10b6982856e4ee.png A crumpled turquoise bathrobe with a soft, plush texture is seen from an angled side view on a wooden floor, with a hand gently holding it from the top. +edcb0cbfa09f447.png The image shows a bright red, textured bathrobe hanging on a tiled bathroom wall, viewed from a side angle, with a partially open doorway and shower stall in the background, alongside beige tiles and a wooden door frame. +3bb69212a5ce4a8.png A light blue bathrobe with a waffle texture is draped casually over a red armchair, viewed from above with a glimpse of wooden flooring and a small white table nearby. +c69258dbab394d5.png The bathrobe is black with bold, white graphic text patterns, appearing crumpled on a beige carpeted floor adjacent to a white wall, with tangled string lights as a nearby background element. +9c99b150e8bb415.png A crumpled purple bathrobe with a smooth texture is lying on a gray carpeted floor, partially framed by a textured black piece of furniture. +4b213ad659e845f.png A light pink bathrobe with a soft, plush texture is crumpled on a dark brown sofa, against a neutral wall with a carpeted floor. +0a098e9cf81c489.png A colorful, cartoon-themed bathrobe featuring a pattern of small, outlined characters on a white background is spread out flat on a hardwood floor, set against a framed painting leaning by a red-tiled fireplace, surrounded by a patterned rug. +bb862c928586464.png A burgundy bathrobe, made of a plush texture, lies crumpled on a wooden floor, illuminated by sunlight with a chair and table set in the background, featuring a small embroidered logo on the sleeve. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/battery_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/battery_descriptions.txt new file mode 100644 index 0000000..4c63830 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/battery_descriptions.txt @@ -0,0 +1,14 @@ +39a97bb964c44a8.png A close-up view of two cylindrical AA batteries placed horizontally in a black plastic compartment against a textured dark surface, with blue and white labeling and distinct branding visible. +5dda5ada53454d4.png The battery is cylindrical with a gold and silver label featuring bold white lettering, shown from a slightly elevated side angle against a speckled tile floor and white-wall background. +3248c5f0025644f.png A person is holding a rectangular 9-volt battery with a black and metallic exterior, featuring a visible white and red label, against a background of wooden flooring and furniture in a dimly lit room. +154ac595baab474.png The battery is positioned horizontally on a textured fabric with black and white stripes and dots, featuring a red and green casing with white text and a prominent logo near one end. +30c7cc1f6dd8486.png The cylindrical battery features a metallic silver top and bottom with a dark grey body, a red accent line in the center, and is positioned horizontally on a marble-textured surface near a red cylindrical object. +3d34daabc04c48e.png The battery is cylindrical, features a shiny red surface with some visible wear near its center, is positioned horizontally across a muted blue surface, with a slightly blurred background that suggests an indoor setting. +cd5699f9e2094f1.png The battery is small and cylindrical with a yellow and black label, held horizontally by a hand against a wooden surface, with visible white text and an orange band near the top. +41613f328172405.png The battery is upright on a textured carpet with a metallic gray body and an orange top, situated in an indoor setting with blurred furniture in the background. +ba2f10372ab7411.png A red cylindrical battery with the brand "KODAK" written in bold white letters, standing upright next to a white window frame and partially in front of a white-labeled container, with light coming through a frosted window in the background. +cca868925888472.png An orange rectangular battery with two visible metallic contacts on top is lying flat on a worn wooden surface. +364c4dc6e9314de.png A cylindrical battery with a silver top and black casing lies horizontally on a speckled countertop, with a partially visible toilet paper roll and blurred bathroom elements in the background. +60151ea53315461.png The image shows a metallic silver and red cylindrical battery held vertically between fingers, with a dark background enhancing the battery's shiny surface and circular top imprinted with text. +1c89e425f0f042b.png The image shows a small cylindrical silver battery with a black top, held horizontally in a hand against a blurred dark background. +f12d3393d447472.png The battery is small, cylindrical, and red with white text, lying horizontally on a dark surface with a wooden floor visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bed_sheet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bed_sheet_descriptions.txt new file mode 100644 index 0000000..e6d5771 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bed_sheet_descriptions.txt @@ -0,0 +1,14 @@ +c22eae044693408.png A rolled, solid purple fabric with visible creases rests on a dark, textured tiled floor in a kitchen environment. +ebec5ae8eb88475.png A crumpled, folded bundle of fabric with maroon and floral patterns lies on a textured brown surface with faint markings and lines. +6e640d9a4620456.png A low-resolution image of a loosely folded bed sheet showcases a pattern of swirling teal designs against a white background, viewed from above on a polished brown wooden surface, with a hint of a colorful fabric in the foreground. +cc8a13b64d6f4ce.png A crumpled bundle of white fabric with blue floral patterns rests on a beige carpet, surrounded by a teal and white bedding backdrop. +967d0ed582a9447.png The bed sheet appears in the lower foreground with a mix of light blue, green, and white floral patterns, beneath which a smooth marble floor is visible, against a backdrop of a beige armchair and cream-colored curtains near a window. +d5e4a2108651464.png A crumpled, light blue bed sheet with a soft texture is draped over a dark brown leather chair, surrounded by a cluttered environment with bags and miscellaneous items in the background. +2016f78bf7af4b7.png The bed sheet, seen crumpled from an overhead view, features a pattern of dark and light blue stripes on a white background, resting on a speckled countertop in a kitchen environment with various household items nearby. +c649fcf5bb96429.png A folded, striped, gray-and-white fabric rests on the edge of a bathtub in a bathroom with a tiled floor, adjacent to a shower curtain with diagonal patterns. +f80903231ce341e.png The object appears as a rolled-up bed sheet with a striped, multicolored pattern, dominated by dark green and maroon hues, lying on a tiled floor with intricate circular designs, in a room with a blue wall. +0f922107c1c4451.png A crumpled deep red bed sheet with a smooth texture lies on a light wood floor, adjacent to a metal frame and a wooden cabinet, surrounded by office furniture. +f5c2c87be4d94f3.png The image shows a room with light-colored walls, a dark glossy tile floor, and natural light streaming in, but no bed sheet is visible. +14ca973c15eb455.png The bed sheet features thin, horizontal gray stripes against a white background, slightly rumpled, and is positioned on a bed in a carpeted bedroom with vintage yellow dressers and various items scattered nearby. +a5e334772741429.png A folded, textured white cloth lies atop a dark, possibly navy, textured surface within a dimly lit, enclosed area with light-colored walls. +fc3eff00920241b.png The image shows a folded, deep red bed sheet with a smooth texture lying on a maroon-speckled floor, next to a white plastic chair viewed from an elevated angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/beer_bottle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/beer_bottle_descriptions.txt new file mode 100644 index 0000000..5ece873 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/beer_bottle_descriptions.txt @@ -0,0 +1,14 @@ +756a9e24018d4f4.png A green glass beer bottle with a white neck label and red text is held at an angle over a wooden desk, set against a background of a white wall with a metal grid window. +a9050eee6f18489.png The shiny, dark brown beer bottle with a swing top cap is held horizontally against a wooden floor and radiator background, featuring a large, off-white oval label with black text and a distinctive logo. +162689f02f03427.png The brown beer bottle, seen from a slightly tilted side angle, rests on a tiled floor with visible text in contrasting color and a distinct label featuring dark, bold lettering. +7712907810034dd.png A green glass beer bottle with a glossy finish is standing upright on a red plastic stool against a plain white wall in indoor lighting, displaying a white and yellow label. +36d31a5ce1a94b3.png A brown beer bottle with a blue label featuring intricate designs is held horizontally over a granite bathroom countertop with a visible sink and faucet in the background. +9dde7213cb92443.png A green glass bottle with a red star logo is held at an upward angle against a kitchen backdrop featuring a refrigerator and a fruit-patterned cloth. +54c8f6908c42440.png A person is holding a green glass beer bottle, tilted slightly downward, with a visible label featuring a red star and text, in a dimly lit kitchen setting with a metallic appliance in the background. +17135dc68081428.png A green glass beer bottle with a white label and black text lies horizontally on a light pink fabric surface with blue stripes, next to a tiled floor and a foot visible at the bottom right. +15b4c44297854a3.png A brown beer bottle with a green label featuring white text is resting horizontally on a brown leather couch, with a visible white cap and a blurred living room environment in the background. +792338c3ee4849b.png A dark brown beer bottle with a matte texture and intricate white label design is held at a slight angle against a soft, pastel-colored bedroom setting with visible bedding and a white louvered door. +712d0d0962e74ae.png The beer bottle is dark brown with a slightly glossy finish, lying horizontally on a dark fabric surface with a label featuring contrasting colors and visible text, set against a sparsely furnished room with a light-colored floor. +ee87ba85a66d433.png The beer bottle, with a dark brown hue and featuring a red label, is placed upright against a rough-textured white wall, positioned on a narrow ledge beside a large black container and a cardboard box in an outdoor setting. +404bd0fd216c40c.png The beer bottle, seen lying horizontally on a wooden surface, has a brown glass body with a bright yellow label featuring red and green accents, positioned next to a white, teardrop-shaped object and a star-shaped decorative item against a neutral-colored wall. +6accdda97746453.png A person is holding a dark amber beer bottle with a green label featuring a fruit illustration, viewed from above against a wood-textured floor, with a notable orange cap and the person's arm partially visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/beer_can_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/beer_can_descriptions.txt new file mode 100644 index 0000000..4b0613a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/beer_can_descriptions.txt @@ -0,0 +1,14 @@ +6de6583e15724fe.png A matte silver beer can with a gold cap, featuring bold black text and an orange circular emblem below, is centrally positioned on a plain, light-colored surface against a bare wall with a paper towel roll partially visible on the left. +363172543a3b454.png The beer can, viewed from a front angle, appears silver with red and white text, featuring a mountain graphic below, and is placed on a sink in a bathroom with light blue walls and a faintly lit background. +fa1f27444f9b46c.png The beer can features a predominantly white and black design with some text, is positioned at a slight tilt on a carpeted floor, and is placed near a pink object and a black plastic bag, with lace curtains in the background. +31257e1518a54b5.png The beer can, held at an angle, is predominantly yellow with a metallic silver top, set against a domestic indoor background featuring a floral-patterned bedspread and carpeted floor. +2241e76c1b48418.png The beer can is silver with red and black text, lying horizontally on a kitchen countertop with a light-colored wood cabinet below and a blurred background featuring a lit candle holder and vertical window blinds. +0e71db58de4a4d7.png A black and gold beer can with metallic accents is standing upright on a glass surface near a white wall and a roll of toilet paper, with a toothbrush and toothpaste visible in the bathroom background. +ef8de6d6342541a.png The beer can, positioned horizontally in a hand, has a distinctive yellow body with bold vertical blue text and is set against a bathroom counter background with towels nearby. +330351683f94476.png A horizontally positioned cylindrical can with a predominantly white background, featuring red and silver accents, a smaller red circular top, and detailed text and patterns against a wooden shelf with various bottles and items in the background. +43f89711a867407.png The beer can features a vibrant fantasy-themed design with dominant yellow and blue colors, showcasing a mythical creature, viewed from an angle atop a Sony PlayStation VR box in a room with blinds. +03c450ce0f88429.png The beer can is predominantly dark with vibrant lime-green abstract design elements and is viewed at an angle resting on a light-textured carpet, with the background showing parts of a dark floor and a small, indistinct object. +0d62a8f167a34aa.png The beer can is silver with a metallic sheen, featuring a logo and text in black and red, lying horizontally on a textured tile floor with a slightly shadowed and dimly lit environment. +7464c4bdc97c4b0.png The beer can is dark blue with a bold, stylized white design and text, lying horizontally on a beige countertop beside a red cutting board and kitchen appliances, featuring a distinct skeletal figure graphic. +9e0bf0badb76429.png A purple and silver cylindrical can with a logo on its side is lying horizontally on a polished wooden floor with a background of a dimly-lit room containing wooden furniture and a plant. +cb83443376cd4fc.png The beer can is blue with sleek, geometric patterns, positioned horizontally on a glossy, speckled countertop with a beige tiled floor partially visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/belt_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/belt_descriptions.txt new file mode 100644 index 0000000..9c2859e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/belt_descriptions.txt @@ -0,0 +1,14 @@ +a12ec1f303cb46a.png A black belt with a glossy finish is looped with its buckle resting on a beige carpet, viewed from above with a pair of bare feet and beige shorts visible, surrounded by a room with furniture and muted lighting. +9b436df9a50a430.png A dark leather belt hangs diagonally across a bathroom with a blue and white ocean-themed shower curtain and light blue tiled walls featuring decorative floral patterns. +08472006d8c34c7.png A black, glossy belt with a smooth texture is hanging in a vertical position against a background of light wooden flooring and cream-colored walls, with doors visible in the hallway. +18b1dc7767eb4b7.png The image shows a dark brown belt with a metallic buckle lying flat on a tiled floor, surrounded by a blue dustpan and a white cloth, with feet visible at the bottom edge of the frame. +72791bdf9cd1424.png A thin, black belt with a simple buckle lies on a light marbled floor surrounded by scattered personal items, viewed from above. +264a7b8675794ee.png The belt has a black color with a smooth texture, is draped over a dark leather chair, and the background includes a cluttered office desk with a keyboard and monitors. +262a4ca79ecd4a5.png A black leather belt with a shiny silver rectangular buckle lies coiled on a green marble countertop, surrounded by metal kitchenware and a floor scattered with food debris. +27fa2c55166c452.png The belt is a dark, thin strap held diagonally by a hand, with a smooth texture, positioned over a neatly made bed featuring a checkered pattern of browns and whites in a bedroom setting with a nightstand holding books. +cdcbb509d5d645a.png The black belt with a smooth texture and a shiny metal buckle is coiled atop a dark, reflective surface that is offset by a wooden floor background, emphasizing a sleek and minimalist design. +c23bdd58a2fa472.png A textured, two-tone green striped fabric belt with a silver metal buckle is laid flat on a tiled floor with beige and brown geometric patterns. +59edda8f88da45f.png The belt appears to be dark brown with a textured pattern of evenly spaced holes, coiled up and placed on a light beige tiled floor next to a white and black scale, under warm indoor lighting. +11cdf0892a0e464.png A sleek dark brown belt with a subtle shine, featuring a metallic buckle and multiple holes, is laid flat on a speckled light gray surface with a muted brown wall in the background. +da425a76f3344b7.png The belt is black, smooth, and laying flat across a beige countertop with a wooden cabinet and a patterned rug in the background. +2b140fd76aa0404.png A brown leather belt with a silver buckle is lying partly coiled on a light carpeted floor beside dark wooden furniture, showing a smooth texture and distinct holes along its length. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bench_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bench_descriptions.txt new file mode 100644 index 0000000..a4dd24a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bench_descriptions.txt @@ -0,0 +1,14 @@ +58127e793e264ff.png The bench has a dark, worn wooden seat with simple, straight legs, viewed from a three-quarter angle, set within a cluttered room featuring a light wooden panel backdrop and miscellaneous items. +44f722e6447d4c8.png The bench has a dark, glossy finish with a smooth texture, viewed from the side on a vibrant, patterned rug, set against a backdrop of large windows overlooking a greenery-filled outdoors. +fb7610ea931a4b1.png The bench has a red, velvet-like texture, viewed from an angled side perspective, situated on a wooden floor beside a bed with a blue blanket in a bedroom setting. +450c92a6be404f6.png The bench in the image is a small black rectangular object with a sleek texture, viewed from an angle above, situated in a cluttered interior environment with a patterned carpet underneath and surrounded by furniture and shoes. +cef707cb48cf4e6.png The bench is upholstered in a textured red fabric with a slightly curved, backless design, set in a carpeted room surrounded by boxes and a wooden cabinet with glass doors. +50d4d810b4d8452.png The image shows a small, square, dark blue bench with a smooth texture, viewed from above, situated on a beige carpeted floor with part of a person's bare feet and striped clothing visible nearby. +938f008e0c694d7.png The object appears to be a black, smooth-textured seat or cushion viewed from above, placed on a floor with a wooden pattern, adjacent to a corner of a room. +d9f7a398b64645d.png The object is a light brown, suede-textured bench positioned sideways against a white shelving unit filled with books and toys, situated on a tiled floor in a cluttered indoor environment. +51e45716b2ed4ea.png The black, boxy bench with a smooth texture is viewed from a side angle, placed atop a light-colored rug in a room with a white radiator and a desk nearby, against a closed window blind. +308886c03bed415.png The bench in the image is black with a smooth, slightly shiny texture, positioned at an angle in a bathroom setting with white tiled floors and surrounding laundry items. +400196c55ae6498.png A black bench with a smooth texture is viewed from an angled side perspective, placed on wooden flooring amidst scattered toys and household items. +93872abbc97741e.png A dark wooden bench with a smooth finish is positioned indoors by a window with horizontal blinds, partially illuminated from behind, resting on a carpeted floor next to a pair of shoes and a closed door. +bce51f075aea4e4.png The bench is a dark surface with a wooden frame and legs, viewed from a top-side angle against a bright green wall, with light-colored speckled flooring visible in the background. +62fda7fcf0fa456.png The bench is light gray with a wooden slatted texture, viewed at an angle on a sunny dockside near water, surrounded by greenery and a backdrop of boats under clear skies. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bicycle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bicycle_descriptions.txt new file mode 100644 index 0000000..2a62019 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bicycle_descriptions.txt @@ -0,0 +1,14 @@ +ee96c7c171a4465.png A small, vibrant pink children's bicycle with colorful accents is seen from a side angle, parked on a patterned tile floor near a white wall with a mounted window, featuring a bright pink seat and training wheels. +3371aa8eff154e8.png A white bicycle with a sleek frame and black handlebars is propped against a rough, concrete background with a few scattered objects, viewed from a top-down angle accentuating its elongated silhouette and contrasting textures. +bac95de0ac084db.png A bright green bicycle with a black seat and handlebars is viewed from a high angle on a reddish dirt surface near a white building, with its front wheel turned slightly to the left and a headlight mounted on the handlebars. +ffb524af05e4435.png The bicycle, viewed from above at an angle, features a red frame with visible black grips and a black saddle on a textured rubberized seat, positioned on a concrete surface adjacent to a brown wall with partially visible window reflecting outdoor surroundings. +13edef89a17b4aa.png The bicycle, pictured in a cluttered indoor room with a tiled brown floor and a disassembled cardboard box, is primarily red with black accents, including chunky tires and a banana-style seat; it is seen from the side leaning against the wall, showcasing a small, child-friendly frame with a front handlebar over a colorful tricycle with a yellow handlebar on the left. +24eba391961a4ec.png The bicycle appears to be dark-colored, leaned against a fan in a cluttered room, with visible handlebars and wheel spokes, amidst a background of toys and furniture on a carpeted floor. +a693acef5fac495.png A black bicycle with thick tires and a vertical, wide handlebar appears in a messy indoor room with purple carpet, surrounded by furniture and laundry, viewed from a slightly elevated angle. +f395c8390f8b40c.png A black, slightly reflective bicycle is viewed from above, revealing its silver chainring and spokes, with a red saddle featuring colorful graphics, resting on a concrete floor beside a wicker basket in an indoor setting. +f77160e99c2b46f.png The bicycle is pink and black with a glossy finish, viewed from a side angle against a weathered white wall, and it features a distinct high U-shaped handlebar and a rear cargo rack. +53f15b968015468.png A small pink children's bicycle with training wheels is positioned at an angle in a dimly lit room with wooden flooring, featuring a large stuffed toy bear and bedding in the background. +8527a96102ba474.png The bicycle is a vibrant blue with red accents, viewed from the front facing a tiled floor in an indoor setting, featuring a padded handlebar with a colorful graphic and small training wheels on each side. +aa373643e7684cb.png A small pink bicycle with a shiny texture is tilted sideways on a terrazzo floor in a cluttered indoor setting with a closed wooden door and a fan in the background. +2e8be460727d478.png The bicycle is viewed from a side angle and features a bright red frame with a matte texture, positioned against a home interior with wooden floors and a window, showcasing knobby tires and a black saddle. +fdf848a161b24f7.png The bicycle is small and vibrant green with black accents, viewed upside-down, resting on wooden flooring against a white kitchen cabinet background, with distinct training wheels and knobby tires. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bike_pump_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bike_pump_descriptions.txt new file mode 100644 index 0000000..13631b3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bike_pump_descriptions.txt @@ -0,0 +1,14 @@ +408cfb4948434fb.png This bike pump is predominantly red with white striped detailing, featuring a black handle and base, positioned against a plain light purple wall on a tile floor, showing angular text and a pressure gauge near the top. +6244cbc6a7f3425.png A metallic single-barrel foot pump with a transparent gauge and vibrant orange hose is seen from a top-down angle on a tiled floor next to sandals and a pedestal fan base. +9bdbd3d8f62646e.png A red and white striped bike pump with a black handle is held in the foreground of a living room setting with a brown couch, a dog, and various household items, viewed from an angle revealing some labeled details. +1a509df671104a9.png The object appears to be a dark-colored, hand-held device with a metallic or matte texture, resting horizontally on a countertop next to a white sink and red liquid-filled container, with an extended hose visible against a dimly lit bathroom setting. +2626250fcece492.png A red bike pump with a black hose lies horizontally on a beige surface, partially obscured with a shadowed foreground and accompanied by a small box and brick-like object in the background. +08ca2dc50762454.png A black bike pump with red accents and a textured handle is positioned upright against a door with glass panels, featuring a visible hose attached to the base and distinct yellow containers in the blurred background. +93a6a3e3a9ef4e5.png A red bike pump with a black handle and base lies on a tan tiled floor, partially obscured by a paisley-patterned fabric, with its hose coiled and a textured rug visible in the background. +9f90dc939db3415.png A red bike pump with a smooth, metallic texture is positioned upright on a concrete floor, featuring a black hose and a white handle, amidst the casual setting of surrounding blurred objects and legs. +74612ae2a507429.png A silver bike pump with a black handle and foot rests against a light gray wall on beige-tiled flooring, viewed from above, with visible branding in bold lettering. +9e65779ede3c41e.png The image shows a metallic silver bike pump with black handles and a hose, lying horizontally on a tiled floor beside a carpet, with clothing items and a chair in the background. +38a8417bbc934f8.png A silver and black bike pump lies diagonally on a tiled floor, with a curved handle and a hose wrapped around its base, set against a background featuring a potted plant and sliding doors. +2ab47a4651c7430.png A black bike pump with blue accents and a textured handle, held horizontally against a wooden floor background. +13dcdce412974ff.png The bike pump is vertically oriented with a teal-colored body and black handle and base, standing on a white tiled floor against a wooden wall background next to a toilet with a visible wooden plunger holder above. +f0fdacfcb1a7440.png A compact, silver and black bike pump with a smooth finish is held horizontally over a tiled floor, featuring a curved handle and dual-tone nozzle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bills_money_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bills_money_descriptions.txt new file mode 100644 index 0000000..45c8b13 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bills_money_descriptions.txt @@ -0,0 +1,14 @@ +73fb75629ac1441.png A greenish bill with a partial black reflective strip is held at an angle over a speckled, glossy gray surface, displaying intricate patterns and a visible denomination number. +a5ab71765bb9466.png The image shows a hand holding multiple beige and orange paper bills with distinct dark text and markings, viewed from above in a dimly lit room with tiled flooring, and a large shadow cast by a piece of furniture on the left. +5b468f770616412.png A crumpled, light-colored bill with intricate patterns is held in a hand against a textured, beige tiled background, with a faucet visible nearby. +e64ad5199fb6476.png The image shows a stack of twenty-dollar bills with green color and a textured surface, viewed from the side on a bathroom countertop with personal care items in the background. +2715f7b0d7e5481.png A person holds a U.S. one-dollar bill with green and white colors and a slightly crumpled texture in a well-lit indoor setting with a wooden surface and decorative items in the background. +5e7967c9575b4e4.png The image shows a U.S. one-dollar bill, with a greenish hue and fine engraved texture, viewed from above on a light brown wood-grain surface, with slight shadowing indicating a flat and slightly diagonal orientation relative to the desk, and a keyboard partially visible in the low-resolution background. +f294161b030d441.png A hand holds a flat, textured green bill with the number "20" visible, set against an indoor background featuring a wooden closet door and patterned clothing hanging above. +ed39f87e34cd4d1.png A person holds a crumpled green and tan U.S. dollar bill, partially extended and bent at the center, against a white and wooden background. +1ae693f7d880445.png A hand holds a blue and green bill at an angle on a floral-patterned tablecloth, showing numbers and letters with a partial view of a chair's fabric on the right side. +a42c4c6fc97f492.png A person's hand is holding a single, slightly crumpled paper bill with a greenish hue, viewed from the side against a backdrop of wooden flooring with pronounced grain patterns. +5fa756754bbd4e8.png A single U.S. dollar bill with a yellow-green hue rests partially folded on a clear plastic and floral-patterned fabric-covered wooden surface, surrounded by a cluttered background with a cotton candy machine and other indistinct items. +8e63b4dea1324e9.png The image shows a single US dollar bill with a green and beige color scheme lying flat on a dark, textured stovetop surface, viewed from above, with a slight shadow and red plaid clothing visible at the bottom. +fcd042a08e164a5.png The object appears to be a slightly crumpled, off-white paper bill viewed from the side, with a bathroom-like countertop setting in the background, flanked by a folded green towel and a metallic grooming tool. +98e3c25aae6b494.png A single greenish bill with intricate patterns is partially folded and leaning against a light-colored wall, placed atop a blue surface, with visible text and a central circular emblem. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/binder_closed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/binder_closed_descriptions.txt new file mode 100644 index 0000000..2f9c53f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/binder_closed_descriptions.txt @@ -0,0 +1,14 @@ +ce0e12080a63478.png The image shows a white binder with a smooth texture, viewed from an oblique angle lying on a gray carpeted floor against a light-colored wall, with a visible round emblem on its spine and the word "TEST" written vertically. +a3760113e9f4441.png A black binder with a textured surface and colorful labels is positioned horizontally on the arm of a plush, gray recliner, within a cozy living room setting featuring additional recliners, a cat tree, and a carpeted floor. +c8a36238f64b4a6.png A bright pink, glossy binder is standing upright on a light wood desk, surrounded by a simple office setting with beige walls and dark cabinets above. +b6c3325c1c55468.png A pink binder lies closed on a bed with a leafy-patterned blanket, viewed from above, with visible loose papers peeking from beneath it. +c4fd6dc1a83c443.png A slightly textured, white, closed binder lies flat on a tiled floor, viewed from a slight angle, with a brown curtain in the background and visible black and green labeling on the spine. +f629d452519c435.png A black binder with a smooth and glossy texture is viewed from an overhead angle on a wooden desk, with a computer and office accessories in the background. +64ef66908a3d49e.png A red, textured binder is viewed from a slightly top-down angle, placed on a light-colored bedspread with purple cloth in the background, showcasing its metal rings and white label spine, in a room with tiled flooring and a wooden chair nearby. +fb6db2cceb87426.png A blue binder with a visible spine label lies flat on a wooden floor, partially obscured by a person's socked foot, against a backdrop of a textured fabric or carpet. +fd87d4ca4b664a0.png The closed binder is black with a smooth texture, viewed from the side on a white desk by a window with light filtering through the curtains, revealing a colorful tab poking out among the pages. +3fc7e024dfbc4a3.png A closed binder with a light tan, textured cover and dark spine lies flat on a blue carpet in a domestic setting, with a visible sticker and red mark adding distinct features. +74286ce4b5704d1.png A closed, navy blue binder with a smooth texture lies flat on a kitchen countertop, surrounded by a coffee maker, paper towel roll, and boxes, with a visible white sticker on its spine. +05d3e70ba684493.png A white binder with a smooth texture is viewed from the side, placed on a polished wooden desk, with a rustic wood-paneled room and a fruit basket in the background. +265b25c11d084fb.png A teal binder with a smooth texture is viewed from an angle showing the spine, set against a colorful room with a couch and scattered cushions in the background, with a small label visible on the side. +aa73898eefed4e9.png The image shows a dark-colored binder with a smooth texture, viewed from above on a bright red carpet, surrounded by blue and grey objects with a slight glimpse of striped socks in the foreground. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/biscuits_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/biscuits_descriptions.txt new file mode 100644 index 0000000..fe930d4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/biscuits_descriptions.txt @@ -0,0 +1,14 @@ +3988272ce9114df.png A packaged item with a gradient red-to-yellow design lies horizontally on a dark countertop, next to a sink, with visible branding and a background of textured wall tiles. +1bbbdcd7cc96492.png The biscuit is a light golden-brown with a textured, spiral pattern on top, viewed from a close-up angle against a pink and black fabric background, and is held between fingertips, showing a distinct layered edge. +187af35a5a1848c.png The biscuits are round with a light golden-brown color and smooth texture, topped with thin reddish drizzles viewed from above on a white rectangular plate, set against a dark, slightly cluttered kitchen countertop background. +cb78da49c8ad46e.png The image shows a horizontally placed, yellow and red packaging of biscuits with a visible brand label, resting on a dark, possibly marble countertop near a metal sink with a striped rug partially visible on the floor. +4fa33e4b5d31408.png The image shows a stack of light golden-brown, round biscuits with a grid-like texture on top, situated in a metallic bowl on a glossy reddish-brown tiled floor. +5f42297de5ed42c.png A yellow and red package of rusks is held in hand, featuring an image of several toasted slices with a smooth texture against a blurred kitchen background with countertops and utensils. +174e1e798a2c41b.png A single biscuit is partially wrapped in silver packaging, displaying a golden-brown color with a textured surface, placed on a light wooden table with a hand holding the packaging. +cafa150c9cba4a2.png The image shows a cylindrical can with a blue and red design and white text, held horizontally in a hand, against a blurred background of a dark carpet and indistinct furniture. +123e88b22c2945c.png A partially visible rectangular biscuit package with a yellow and maroon color scheme sits on a dark, slightly worn wooden surface, viewed from above with blurred feet and a keyboard in the background, revealing only part of the product's branding. +cc5125f9041d4f7.png The biscuits are rectangular with chocolate-brown color and embossed text, viewed from above against a speckled dark countertop background, with part of the packaging visible. +04f5b7781cee4ce.png A heart-shaped biscuit with a golden-brown color and small dark specks rests on a light wooden surface, partially shaded by a dark, textured object in the background. +d8e1c579eb604c8.png The biscuits are light brown and small, with a smooth texture, viewed from a high angle on a green marble countertop, within a transparent resealable plastic bag near a toaster oven in a kitchen setting. +ad081795ef0d4ba.png A lightly browned, irregularly shaped biscuit with a rough, flaky texture is resting on a white, flat surface near an appliance with a curved edge in a dimly lit room. +7c822ddd11d1486.png The biscuit, viewed in a three-quarter perspective, showcases a golden-brown hue with a smooth texture and a visible chocolate filling, resting on a light-colored tabletop against a muted wall background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/blanket_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/blanket_descriptions.txt new file mode 100644 index 0000000..208b188 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/blanket_descriptions.txt @@ -0,0 +1,14 @@ +f8f671fdb2be47f.png A hand is holding a crumpled, plush navy blue blanket with a textured surface, seen from a side angle against a tiled floor and patterned fabric background. +d7f12dc0ca12459.png A white dog with a fluffy fur texture lays sprawled on a tiled kitchen floor, surrounded by boxes and a bar stool, under a dining area with large windows covered by dark curtains. +e64c9bf8ad5d456.png The blanket is folded on a tiled floor, displaying a mix of green, brown, and beige patterns with distinctive floral and geometric designs against a white and red background. +19df6f9e56ed451.png The blanket is folded, with a predominantly gray and blue checked pattern, resting on a small table covered with a patterned cloth in a cluttered kitchen-like setting with visible paper towels and cleaning supplies. +50e90b79decc45e.png The blanket features a colorful design with patterns resembling a shark in shades of blue, white, and red, has a soft and slightly fuzzy texture, is folded neatly on a black shelf against a blue wall with visible paint chips, and is surrounded by clothing. +247ad2a0f233430.png A folded blanket with a prominent red color and intricate floral patterns is positioned on a glossy tiled floor, surrounded by minimal furniture and reflected lighting. +b80cef127d1c4c8.png A crumpled blanket featuring a lavender and white floral pattern lies in the foreground on a bed with a dark blue sheet, adjacent to contrasting red and navy bedding with visible bedside items. +0c5b19160d8746f.png The image features a bright yellow blanket neatly folded on top of a larger, reddish-brown textured bed covering, positioned in the center of a cozy room with square-tiled flooring and small floral-patterned pillows against a white wall. +af74da03f0cf453.png A brightly colored yellow and green plaid blanket lies flat and neatly folded on a neatly made bed with a gray, white, and brown patchwork quilt, set in a simple bedroom with a wooden headboard and neutral carpet. +6e0138b094b34fd.png A folded blanket exhibits a crochet texture with a predominant lavender color accented by a green border, set against a laundry room environment with a washer and wooden cabinets visible. +7e5745afc807478.png A folded gray blanket with a smooth texture is seen from an overhead angle on a checkered beige and white foam mat in a children's play area, surrounded by colorful toys and furniture. +39559c0d8c9d44a.png The blanket is neatly folded and appears in a vibrant blue color with a smooth texture, positioned centrally on a tiled floor, contrasted by the surrounding neutral tiles and dark mat. +2ac812c863bd49b.png A blanket with yellow and green stripes is neatly folded on a dark carpeted floor in a cluttered dorm room environment, surrounded by laundry baskets, shoes, and various personal items. +c8244e2eca98451.png A folded blanket with a brown base and intricate white and red leaf patterns rests against a beige wall on a tiled floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/blender_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/blender_descriptions.txt new file mode 100644 index 0000000..22771cb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/blender_descriptions.txt @@ -0,0 +1,14 @@ +7f85ab95a9de49a.png The blender is white with a transparent pitcher, viewed from a side angle on a kitchen countertop, surrounded by tiled walls and various kitchen fixtures. +013024ccdd6541b.png A silver metallic blender jar viewed from a slight side angle sits on a black countertop in a kitchen with a maroon and white tiled wall and various kitchen items in the background. +1d62a8d8406e40f.png The blender is a vibrant red with a glossy finish, viewed from the side on a tile floor, featuring a clear plastic jar with a red lid, and is placed atop a colorful textile with blue and red patterns. +403e46309fe4440.png The blender appears to be metallic and cylindrical with a shiny, reflective surface, viewed from a top-side angle, set against a domestic indoor environment with tiled flooring and colorful fabrics in the background; the object features a prominent black fan or vent on the top. +8117ca507047490.png The blender appears to be red with a metallic base from a slightly elevated top-down angle, positioned on a textured carpet surrounded by dark wooden furniture. +d53381c27c984f7.png The blender has a transparent plastic jar with a black handle and lid, positioned upright on a white toilet seat in a bathroom setting with tiled walls and a towel barely in view. +ce176a39e2f9436.png The blender is a translucent dark gray with a white base, positioned at an angle on a tiled countertop in a kitchen, with a brown and green color scheme visible in the background. +24d1df603a80449.png The object is a white, handheld immersion blender with a stainless steel blending shaft, viewed from above on a light-colored countertop in a bright kitchen environment, featuring a detached blending attachment and visible cord. +598d3388275f47e.png The blender is metallic silver with a black base, featuring a symmetrical front-facing view with a smooth, glossy texture, situated on a speckled countertop in a kitchen setting with wooden cabinets and various kitchen items nearby. +d961695af3114f8.png The image shows a metallic-looking, rectangular object with a reflective surface surrounded by a cluttered environment, featuring floral-patterned elements and various cables running across the scene. +06fab24f13ca4bf.png The blender features a sleek black base with a glossy finish and multiple buttons on the front, a clear glass pitcher with a handle, and a black lid, set against a kitchen countertop with a dark marble-like texture and various kitchen items in the background. +a24643cf473541a.png The blender has a beige base with a clear, textured plastic jar and is lying on its side on a brown speckled countertop next to a sink, with a mosaic tile backsplash in the background. +141e08ba6f5048a.png The object is a white, smooth-textured blender viewed from a slightly elevated angle, set against a tiled kitchen floor background, with prominent features including a large base and a coiled cable on top. +f8e79dbb54f14ca.png The image shows a top-down view of a blender with a marbled green base and metallic accents, set against a pinkish floor with dark textured walls surrounding it. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/blouse_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/blouse_descriptions.txt new file mode 100644 index 0000000..62acc0e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/blouse_descriptions.txt @@ -0,0 +1,14 @@ +9ee8de119e8f435.png The blouse is a bright red-orange color with a ribbed texture, lying flat on a blue patterned rug with white designs, in a room where the floor is tiled. +bb3e5f898710427.png The blouse is laid flat on a wooden floor, featuring a light gray color with a subtle striped texture and long sleeves. +f47ca503bc434f6.png The blouse is a golden color with an intricate, floral embroidered texture, shown from an angled top-down viewpoint on a plain white floor with a dark wooden background, featuring short sleeves and a tied back closure. +27fbdcd0c8434d0.png A folded dark purple blouse with lace detailing and a floral cutout pattern is laid flat on a floral-patterned bedspread, viewed from above. +024dd95baf9346d.png The blouse is a folded, two-tone garment with mustard yellow and lighter yellow sections, resting on a soft-textured, interlocking foam mat with a shadow cast diagonally across the surface. +3f86606ff7da4d3.png A long-sleeved blouse with a intricate gray and white paisley pattern is sprawled out on a red and beige floral-patterned couch, surrounded by various household items on a coffee table. +a43fe33a7b4b473.png A bright magenta blouse with textured golden embellishments on the shoulders is laid flat against a pale tiled floor. +c58c82c9f2db418.png The blouse is light turquoise with a checkered pattern and short sleeves, laid flat on a floral-patterned blanket amid a colorful, irregular background. +27800cb2550e464.png A light blue blouse with long sleeves and button details is crumpled on a textured brown carpet, viewed from above. +fd9b02720014492.png The blouse is a matte, brick-red color with short, wide sleeves, viewed from above on a shiny, dark tiled floor, and features a deep U-neckline. +9e7a9ebd0136428.png The blouse features a black and purple plaid pattern with a silky texture, displayed flat on a tiled floor, revealing long sleeves and a rounded neckline. +d17e242f591244e.png A crumpled blue blouse with a shiny, satin-like texture is seen from an overhead angle on a light-colored tiled floor, with distinct seams and a visible folded collar. +62740bb744b342e.png The blouse, seen from a top-down perspective, is a vibrant red with a textured, possibly lace, edge and appears on a uniformly pink bedspread in front of a softly lit window with sheer curtains. +dde525b69b65421.png A mustard yellow, textured blouse with rolled-up sleeves is draped over a bathroom counter beside a roll of printed paper towels, with part of a white sink visible against a beige wall. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/board_game_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/board_game_descriptions.txt new file mode 100644 index 0000000..3cb4203 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/board_game_descriptions.txt @@ -0,0 +1,14 @@ +9aacce3a6faf417.png A rectangular box with a brick pattern on the sides and text visible, lying flat on a beige carpet in front of dark wooden furniture. +48aedae7259c47c.png The board game box features vibrant colors with a prominent depiction of a board game path on the cover, positioned upright on a speckled countertop within a kitchen setting, showing a partially visible hand holding it, surrounded by wooden cabinets and white tiled flooring. +825e86f4ece943c.png A Monopoly board game box with a red cover and visible logo is lying flat on a rumpled blue bedsheet, surrounded by dim, warm lighting and partially shadowed by a blanket. +1dc6aa60de734ab.png A colorful board game box with vibrant artwork sits on a cozy, autumn-themed blanket adorned with pumpkins and hedgehogs on a couch surrounded by red and brown pillows. +99e65de97098495.png A white box with bold, colorful lettering and images of multi-colored game pieces is propped up against a wall in a bathroom with a white toilet, beige walls, and dark tiled floor. +0a58cfe554ff4a0.png A board game box with colorful graphics and detailed illustrations is reflected in a brightly lit bathroom mirror, showing a predominantly brown and orange textured design against a white-tiled sink area with wooden cabinetry. +6849278614d5443.png The image shows a glossy, colorful Candy Land board game box held at an angle, featuring vivid illustrations and candy-themed graphics, set against a speckled countertop background. +4faffe600a6a468.png The image shows a Monopoly board game with a predominantly white box featuring red and black text, resting at an angle on a beige kitchen countertop surrounded by wooden cabinets and a stove. +bf6562e602f8424.png A board game with a rectangular frame featuring a central grid pattern in subdued colors is lying flat on a reflective, beige tile floor with scattered electronic wires visible in the background against a plain wall. +05a6f8ae3ebb472.png A person in a living room holds a rectangular, white box of "Twister" with bold, colorful lettering and game logos visible, against a wooden floor and toys scattered in the background. +d79fdf57a16c4a6.png A board game box with vibrant red, green, and black text and graphics lies flat on a light-tiled floor, surrounded by subtle pastel toys and decorations, showcasing a bold title and playful imagery. +57438737590143b.png The board game box is primarily black with a maroon and red gradient, featuring an illustrated scene of a mansion on the cover, held by a person in a tiled bathroom environment with off-white walls. +dabfd5659d1c4fc.png The image shows a red and white Scrabble box leaning against a brown leather chair, with a tiled floor background and partial view of a person's shoe. +87a5c503ea8a47f.png The board game box features a vibrant blue and yellow color scheme with colorful cartoonish artwork, prominently displaying a figure with a large belly, viewed from a tilted angle in a bathroom setting with visible toiletries in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/book_closed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/book_closed_descriptions.txt new file mode 100644 index 0000000..36696f6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/book_closed_descriptions.txt @@ -0,0 +1,14 @@ +731c969961be456.png The book lies flat on a brown carpeted floor and has a multicolored, likely illustrated cover with a predominantly red and orange hue, set in a casual bedroom environment with visible furniture and miscellaneous items in the background. +99f7b393de7f492.png The closed book, seen from the side, has a brown and cream cover with a title visible, set in a kitchen environment with a visible pot, dish filled with food, and cooking utensils. +09910b47c9de40a.png The book is viewed from above, resting on intricately patterned brown and cream tiles, with a glossy cover featuring vibrant red and blue tones, possibly depicting a character or scene. +670c7d9534224ec.png The book closed appears to have a light beige cover with a smooth texture, lying flat on a bed with a checkered sheet pattern and against a cream-colored, plain wall background, with part of a purple object visible nearby. +b40b18cc0968440.png A person holds a book with a blue and white cover featuring geometric patterns and text, captured from their hand's perspective against a tiled bathroom setting with various containers. +6040b35607fe45f.png The closed book features a light green cover with colorful abstract patterns and a barcode, positioned atop a light blue sink with a bronze faucet, surrounded by a floor with scattered leaf patterns. +953cc17d85c7435.png A yellow book lies flat on a wooden floor with a simple white spine, positioned near a white pedestal column against a muted green wall, accompanied by a wicker basket in the background. +ad99e7a8aa2a4b3.png The book features a matte black cover with pink knife illustrations, seen from a slight side angle, resting on a flat light surface with distinct text and yellow accent, and an adjacent red-outlined border visible in the background. +5f67ce93e7d8446.png A person is holding a thin, turquoise book horizontal on its side, appearing in a marble-floored room with a visible white power adapter and cable in the background. +d8aca8816133493.png The book appears vibrant orange with decorative black and white patterns along its edge, positioned flat on a tiled floor near a doorway, viewed from above, with partially visible bold-colored text on the cover. +821fb664ea214b6.png The book is a small, rectangular object with a white cover featuring colorful illustrations and text, viewed from a slightly elevated angle against a light gray tiled floor, surrounded by pink fabric with intricate floral patterns. +f95ae707e90f488.png The book, viewed from an angled top-down perspective, has a white and magenta cover with visible text; it is being held over a gray, concrete-like floor beside a wooden table and a covered piece of furniture. +2832b421a0b2495.png A black book with a smooth surface lies flat on a dark surface, partially open, amidst a cluttered background including a purple polka-dot container and other colorful household items. +f5c26e7a01e549c.png The image shows a person holding a reflective, silver-colored package horizontally above a stove with pots in the background, suggesting a kitchen setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bookend_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bookend_descriptions.txt new file mode 100644 index 0000000..69be1d8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bookend_descriptions.txt @@ -0,0 +1,14 @@ +b40067f3e6634f0.png A bright orange, ribbed bookend with a glossy texture is held upright against a tiled table featuring a mosaic of pastel and iridescent squares, with chairs and a radiator visible in the background. +b62ae0791383457.png The bookend appears black and metallic with a flat, L-shaped profile, viewed from above against a tiled floor with a white and green backdrop, and it is distinguishable by its sleek design and the presence of a horizontal support bar. +1b2e806dfa9347f.png The bookend has a marbled texture with swirling patterns in shades of blue, orange, and brown, set against a neutral wall background and positioned leaning diagonally with a visible green band across its center. +ba8012a52140446.png The bookend is black with a cut-out silhouette of two faces in profile, viewed from above on a tiled floor with miscellaneous items scattered around. +29b31c3ce0424eb.png A hand holds a dark, textured bookend resembling an animal with visible legs and tail, viewed from above against a plain light surface with a small circular decoration. +bb538c03560f448.png The bookend is a green frog with red accents, positioned on a white bathroom countertop beside a soap dispenser, with a mirror and wooden drawers in the background. +af46979ed229461.png The bookend appears to be shaped like a vintage diving helmet in a metallic bronze color with a wire grille detail, resting at an angle on a white, fluffy rug with a wooden floor and baseboard in the background. +0b0cbd2bc7bb426.png The image shows a translucent, glass-like triangular object being held over a white table with a wristwatch and nail polish bottles visible, set against a softly lit interior space with sheer curtains and cubby storage in the background. +d080f2a15f674dd.png The bookend is a rectangular block with a rough, speckled gray and white stone texture, positioned on a white bathroom countertop beside a sink, with a dark wall and silver faucet in the background. +653d93c3d8744c5.png The bookend is a metallic, L-shaped object with a smooth texture, viewed from above, positioned on a tiled floor, with a cutout silhouette of a person or object visible despite the low resolution. +0903624333b04e7.png The bookend resembles a black boot, positioned upright with a shiny texture, set against a kitchen counter with a quilted navy blue pad, a blue bowl, and visible kitchen cabinets in the background. +8439b81fc92f4b7.png A black, L-shaped metal bookend with a smooth texture is positioned upright on a beige carpeted floor, and a part of a wheeled furniture leg is visible in the background. +843aca0a6e56490.png A gold-toned, intricately patterned horizontal rod set between two vertical white supports is viewed from above, placed on a wood-textured surface. +452e105f39f540e.png The black bookend, with a smooth and angular design, is positioned upright on a beige tiled floor with a partial view of the surrounding environment, including socks and nearby floor mats. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/boots_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/boots_descriptions.txt new file mode 100644 index 0000000..94eba08 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/boots_descriptions.txt @@ -0,0 +1,14 @@ +37ae67907053495.png A dark brown lace-up boot with a rugged texture is positioned on its sole atop a woven textured surface surrounded by various household items, viewed from an overhead angle against a busy domestic background. +22bcdc58ccaa4f5.png A single brown boot with a dark sole is held sideways in a hand, featuring a visible side zipper, with a soft texture and set against a neutral office-like background. +7b2c35217c634e6.png A pair of dark-colored boots with a matte finish and lace-up closure is resting sideways on a marble-patterned table with a plastic cover, in a room featuring a black chair, a washing machine, and a woven basket on the left. +909b1253c631413.png The boots are dark-colored with a smooth texture, viewed from above in an indoor setting, and their slightly pointed toes and laced design distinguish them against a light carpet background. +057a097e213d43a.png Black leather boots with a glossy finish and visible shoe laces are positioned upright on a reddish carpet in an indoor room with scattered items and a visible fireplace. +6bc429e8b81b4f7.png A tan and black utility boot with a textured surface and dark laces is placed on a yellow folded tarp on a patterned purple bedspread in a bedroom. +eed5a88fd5604e1.png A dark, sturdy boot with a matte texture lies sideways on a carpeted floor, featuring visible multicolored tags and eyelets for laces, with shadows cast in the dimly lit room. +bc6337a57baf423.png A brown boot with a quilted texture and white fleece lining is lying on a light wooden floor, viewed from slightly above, with its side featuring buckle detail, and the background includes a shadowy area and a table corner. +efca8eb7248d4bf.png A brown leather boot with a textured surface and black sole is held at an angle against a tiled kitchen floor, featuring a visible brand logo on the sole's edge. +715cf27206404a9.png The plush, tan boots are positioned sole-to-sole creating an unusual standup display on a tiled bathroom floor in front of wooden cabinetry, highlighting their thick, textured treads and soft exterior. +40123817cf3a437.png The boot is an olive green, textured design with a mid-calf height and a chunky heel, viewed from an overhead angle on a light wooden floor with casual shoes in the background. +9cf518c281c3488.png A pair of dark-colored, possibly black boots with a subtle texture lies on a red-striped bedspread in a warmly lit bedroom setting, with pillows against a wooden headboard and a patterned lace cloth in the foreground. +bb31a97a974e442.png The black boots, positioned on a textured carpet in a casual room setting, exhibit a matte finish and have prominent laces, set against a cluttered background with a desk and various items. +80d01f6a994e47f.png A single, dark gray suede boot with a slouchy, gathered upper and slightly pointed toe is positioned upright on a tiled floor, with a metallic chair and pet bowl visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bottle_cap_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bottle_cap_descriptions.txt new file mode 100644 index 0000000..d482fda --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bottle_cap_descriptions.txt @@ -0,0 +1,14 @@ +058d4d35270141b.png A bright yellow, smooth-textured bottle cap is viewed from above, placed on a solid blue surface with a small, indistinct area of white and brown in the upper right corner. +795e189ae314469.png The bottle cap appears predominantly purple with a white tab, having a smooth texture and a top-down viewpoint, set against a dark, somewhat irregular surface with faint speckles. +99cc36d57c9048a.png The bottle cap is a bright green, slightly curved from a top-down angle, with a textured, slightly rough surface against a dark, out-of-focus background. +3093c6eec27b469.png A pale blue bottle cap with a slightly shiny, smooth texture is held sideways by a hand against a plain, light-colored background, displaying a faint design on its top. +79889506e2c4424.png The bottle cap is black with a grooved texture, resting upright on a wrinkled, light-colored fabric background. +00199dad7eaf420.png The bottle cap is pink with a smooth texture and embossed text, viewed from a slightly angled top perspective against a wooden background. +28812b3eed09418.png The bottle cap is silver with ridged edges, viewed from the side with a printed black alphanumeric code, against a textured brown carpet background. +c348eae969fb4b2.png The bottle cap is white and smooth, viewed slightly from the top side attached to a transparent plastic bottle, against the backdrop of a kitchen with white cabinets and appliances. +a3b9b597f0f54cd.png A green bottle cap with a matte texture rests upright on a tiled floor, with visible grout lines and a blurred wall corner in the background. +c692cc30bea2453.png The bottle cap is white with a ridged texture, viewed from above, resting on a vibrant, multicolored mosaic-patterned surface with red, black, and gold geometric shapes. +f8f08f4ba7d2456.png The bottle cap is matte black with a ridged edge, viewed from a slightly elevated angle against a plain white surface. +553d60c8945d43a.png The bottle cap is red with a star symbol on the top, held edge-on by a hand against a dark wooden background, showing grooves along the side for grip. +4dc6db7d3e1348e.png The bottle cap is a vibrant blue with a matte texture, viewed from above, featuring a small black accent on the side, set against a worn, peach-colored wall and surrounded by office items. +392edd35e0c349c.png The bottle cap is white with a translucent, ribbed texture, viewed from a slight side angle on a reflective, speckled brown countertop with blurred colorful items in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bottle_opener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bottle_opener_descriptions.txt new file mode 100644 index 0000000..2669708 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bottle_opener_descriptions.txt @@ -0,0 +1,14 @@ +add2bf68fabd4df.png A metal bottle opener with a brushed texture is held over a dark fabric background, with a distinct circular opening and part of a hand visible. +f39497143c364a8.png The bottle opener is metallic and silver with a smooth, shiny texture, held upright by a hand against a tiled bathroom-like background, featuring a hole at the handle's end. +5dd3b79ad7a049f.png The bottle opener is metallic with a shiny, reflective surface, held horizontally in the foreground by a hand with a striped sleeve over a patterned, dark fabric surface, set against a neutral-toned, carpeted floor. +da34d12dbc0144b.png The bottle opener features a silver metal finish with a central helix corkscrew, black handles, and is shown from a side angle with a hand holding it against a detailed blue and white tiled floor background. +9f7fa89a48b845a.png A metallic, silver, winged corkscrew bottle opener with a helical shaft is positioned horizontally on a glass table, surrounded by a blue laptop and a piece of beige paper. +c1528d9b98df4b8.png A metallic, winged corkscrew with a shiny, smooth texture is seen from an angled side view against a blue cloth-covered table with a patterned carpet in the background, showing distinct gears and a helix. +8119fd69e0b843b.png The bottle opener is silver with a simple oblong shape, photographed from a top-down viewpoint against a mottled brown and black textured surface, with distinct ridges visible near the rounded edge. +d4b78b2c54394f1.png The bottle opener is black with a matte finish, viewed from above, lying flat on a rustic wooden surface, featuring a circular, gear-like component near its head. +12c3b25bf3cf47d.png The bottle opener displays a dark blue handle with intricate, colorful patterns and text, viewed at an angle with a gray speckled countertop background, featuring a metal opener end that is flat and worn. +950c94256be3457.png The bottle opener is metallic and shiny with a bar handle, viewed from below against a ceiling with wood texture, held by a hand with a visible tattoo. +1470e6e3900c46b.png The bottle opener appears to be metallic with a shiny texture, viewed from an angled top perspective, featuring a curled end for leverage against a tiled floor background. +73fd727aec3e4e3.png The bottle opener, viewed from above, appears as a silver, oval-shaped piece attached to a keyring on a dark wooden surface, with a partially visible red and white printed logo and some indistinct keys beside it. +14379017ca7d43f.png The bottle opener is bright green with a simple, smooth texture, viewed from above on a white and teal-colored appliance surface in a dimly lit room. +d6c03a03f48e401.png The bottle opener has a sleek metallic head with a functional curved end, attached to a smooth white handle, positioned horizontally on a marble countertop, with a kitchen sink environment in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bottle_stopper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bottle_stopper_descriptions.txt new file mode 100644 index 0000000..afcc080 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bottle_stopper_descriptions.txt @@ -0,0 +1,14 @@ +9a5017778abf479.png A wooden bottle stopper with a smooth circular top and a natural brown finish is positioned upright on a tiled counter with brown checkered tiles, with a blurred background featuring a glass filled with a peach-colored liquid and floral-patterned wall tiles. +603a4eac71f94d5.png The bottle stopper has a metallic silver, cone-shaped top with a shiny, reflective surface, a ribbed black rubber grip, and a spherical silver base, held sideways against a backdrop of white and gray striped fabric with a room setting in the background. +1faa90afaced4b9.png The orange tapering bottle stopper with ridged texture lies horizontally on a gray laminate floor beside a rolled-up fabric, possibly a mat or towel, with a light-colored round cap at the wide end. +4488aaa6485c4bc.png The bottle stopper is red with a smooth, glossy texture, viewed from above and resting on a brown wooden surface, featuring a circular grip with a distorted rectangular base. +306117dae8c245c.png The bottle stopper is tan with a wooden texture and bulbous shape, viewed from the side against a carpeted floor with a pillow and couch in the background. +ec9d38fa2798419.png A hand holds a bottle stopper featuring a metallic pointed tip, a clear spherical top, and a black rubber gasket, set against a smooth, white background with visible reflections. +8b57d9a2806c4fa.png The bottle stopper appears bright orange with a smooth texture, held upright in a hand against a tiled floor background, and features a distinctive spout or lever on the side. +d52522881c2d46b.png A turquoise, ribbed bottle stopper is held horizontally against a beige wall, with a hand visible, on a textured brown countertop with a metallic lid visible on the stopper. +1ffbcd633ae54ae.png The bottle stopper is metallic with a smooth, shiny silver finish, viewed from a slightly elevated angle on a tiled floor, featuring a lever mechanism on the side. +ac8612a769fb426.png The bottle stopper features a wooden, reddish-brown cork-like upper part with a white plastic rim, attached to a metal base with a curving hook, set against a warm-toned wooden furniture background. +53d95de92f964b7.png The image shows a box placed on the edge of a white bathroom sink against a textured yellow wall, containing a bottle stopper likely made of metal and cork as depicted on the packaging, with a reflection of a partial mirror above and some colorful items visible next to the sink. +5218ad350b6a450.png The bottle stopper is predominantly beige with a red top, has a cylindrical shape viewed from a side angle, and rests on a textured blue carpet next to a clear bottle. +8ba694f8d6c04b6.png The bottle stopper features a wooden handle with alternating dark purple and light brown rings, viewed from a top-side angle against a wood-patterned surface, with a metallic spout and black rubber rings for sealing. +31869e7a470a464.png The bottle stopper appears to be light beige with a ribbed black cap, positioned at an angle on a uniformly textured, light gray surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/box_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/box_descriptions.txt new file mode 100644 index 0000000..6c9b8e0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/box_descriptions.txt @@ -0,0 +1,14 @@ +02deb1222ccb4cd.png A hand holds a slightly open, rectangular black box with white branding and blue accents, shot from a side angle against a plain, light-toned wall background. +ac5799f5e55b4b5.png The image shows a rectangular white box with smooth texture viewed from an overhead angle, held by a hand, with a graphic pattern bedspread and wood parquet flooring in the background. +54028f40670a437.png A transparent plastic box with a black electronic component, positioned on a multicolored floral-patterned bedspread in a room environment, viewed from above. +6fdf0fb9ce2c4f8.png A brown cardboard box with the "hp" logo in black is stacked on another identical box, both featuring visible handle cutouts, placed on a carpeted floor next to a white object, likely furniture. +14ca30cc7e4e4ac.png The box is brown with a slightly crumpled texture, viewed from a high angle in a tiled room with a colorful patterned bedspread nearby and a wardrobe in the background. +c73e92cfe135405.png The box is white with red and blue "PRIORITY MAIL" text, featuring a closed lid, placed on a shelf amidst yellow towels and brown envelopes in a cluttered storage space. +2252fd1c0e1f4f3.png The object appears to be a thin, square, blue-bordered book or magazine placed face-up on a beige carpet, displaying text and an image, with a bare foot partially visible at the bottom edge of the image. +af5d23f090d34f7.png A translucent plastic container with a light orange lid, featuring printed smiley faces, is centrally placed on a pink floral-patterned bedspread, with dark blue curtains and a partially visible doorway as the backdrop. +62dcda35c1be494.png A brown cardboard box with a yellow sticker sits atop a dark coffee table in a living room setting, surrounded by furniture like a blue armchair and a wooden cabinet, with a laptop nearby. +62c3fe65baf64df.png The image shows a small, red, rectangular box with a matte finish placed centrally on a checkered floor of alternating brown and cream tiles, viewed from above, with grid-like circles embossed on the tiles and a portion of a wooden frame visible on the left. +65ca10397d8e47d.png A yellow and white box with an open flap sits on a wooden table, viewed from above, surrounded by plates and bottles, and partially concealing any detailed text or graphics. +09e75aafa4bd401.png The box is brown with visible labels and barcodes, positioned upright on a small white stool in a room with tan walls, a curtain in the background, and a brown, cream, and black patterned rug on the wooden floor. +1420e1a96a704b7.png A small, light-brown cardboard box with a partially open lid sits against a patterned fabric, viewed from a slightly elevated angle, with a bed and pillows in a softly lit bedroom background. +0ef542265c1a4f2.png The box is a dark-colored rectangular package with bold, white lettering and graphics on its sides, positioned upright on a soft, beige carpet against a plain white wall, with a visible shipping label and barcode on one side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bracelet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bracelet_descriptions.txt new file mode 100644 index 0000000..86b3ca3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bracelet_descriptions.txt @@ -0,0 +1,14 @@ +ee0a179453b7407.png A thin, metallic bracelet with a smooth texture is held up by a hand, set against a background of a two-tier glass table on a carpeted floor. +9f9fa39c171245e.png The bracelet is composed of alternating white and silver beads, displayed prominently on a person's wrist in a sitting pose against a muted, striped fabric background. +837b7acd8f2d4f5.png A person holds an orange, donut-shaped object with a textured surface inside a clear plastic bag in front of a bathroom counter with a sink, mirror, and various toiletries. +19b021eb668e454.png The bracelet consists of small, irregularly shaped multicolored stones strung together, viewed from above on a dark textured surface with a faintly visible keyboard in the background, offering a spectrum of earthy tones including greens, blues, purples, and browns. +b67623a4abda41e.png The bracelet appears to be silver and chain-like with small spherical elements and a dangling charm, displayed in a top-down view on a polished wooden surface. +bbfa4f7f0ecd464.png A low-resolution image shows a bracelet with glossy black beads, separated by brown, cylindrical wooden spacers, resting on a textured wooden surface, with a subtle shadow creating depth from a slightly elevated angle. +fce03c19f3004f2.png A delicate, cream-colored bracelet with a thin texture is lying flat on a patterned burgundy and beige rug, near a brightly colored garment in red and blue. +c34520f213ff4eb.png The bracelet features spherical beads in various colors, with intricate metallic patterns, held in a hand against a dimly lit kitchen environment with cluttered countertops and a tiled wall background. +01124192c29b4c8.png A silver-toned bracelet with small, evenly spaced beads and distinct crescent moon and star charms lies flat on an open palm against a wooden surface backdrop. +2d452d529c884a1.png The bracelet appears to be metallic and gold in color, with a smooth and shiny texture, laying flat on a light-colored surface, with a soft-focus background showing part of a curtain and a dark area below. +885d7350306f482.png The bracelet is metallic with alternating square and round clear stones, sitting on a white cleaning brush atop a bathroom appliance against a patterned beige wall. +3bedb502a44f40c.png The bracelet is a vibrant turquoise color with star-shaped and round beads, laid flat on a wood-textured surface amidst electronic devices, displaying black strings for tying. +91ec3d49a0a24ff.png A metallic, silver bracelet with a smooth texture is placed against the vertical side of a cardboard box with printed text, surrounded by a dimly lit environment. +15e19d4d7fac438.png A multicolored, stone-beaded bracelet featuring smooth, polished oval stones is situated on a light, speckled countertop, surrounded by various bathroom items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bread_knife_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bread_knife_descriptions.txt new file mode 100644 index 0000000..e478b18 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bread_knife_descriptions.txt @@ -0,0 +1,14 @@ +28de704f2cfd442.png The bread knife features a shiny, metallic blade with a dark handle, positioned diagonally on a light-colored textured surface, likely resembling a toilet seat cover, set against a tiled bathroom floor with a roll of toilet paper mounted on the wall nearby. +b91abee54da5440.png The bread knife is positioned diagonally with a dark handle and a slightly serrated silver blade, set against a light, marbled floor background. +7f768c697d0148a.png The bread knife features a stainless steel blade with a serrated edge and a light-colored handle, positioned horizontally on a floral-patterned cushion, set against a tiled bathroom background. +d837345bc86c455.png A bread knife with a serrated blade and a black ergonomic handle lies flat on a kitchen counter next to a yellow Lipton iced tea container, amid other kitchen items, against a tile floor. +7844f3dc32744eb.png A bread knife with a serrated metallic blade and a dark handle is positioned horizontally on a wooden table, against a backdrop of a cushioned floor, patterned tent, and home furniture, with indirect lighting accentuating the textured surface of the blade. +fff1c57ae73647a.png The image shows a serrated bread knife with a dark handle, viewed from the side, held against a blurred indoor background with white and grey bedding, highlighting the blade's edge and grip. +9fcce17da57c467.png A silver, serrated knife with a reflective metallic blade and a slightly discolored handle is positioned obliquely on a shiny, dark countertop with a white tiled wall and a window in the blurred background. +58828e20fa714d3.png A small, black-handled bread knife with a serrated blade is positioned vertically between sock-clad feet on beige carpeting, with books partially visible in the background. +e00c936027ff4db.png The image shows a bread knife with a sleek black handle and a long, reflective blade held horizontally against a dimly lit indoor setting with a stone fireplace and brown couch in the background. +a825e334b4094ba.png The bread knife has a light brown wooden handle with a slight curve, a straight silver blade with a serrated edge, and is positioned diagonally on a textured wooden surface background. +7f2eac553a8c457.png The bread knife features a red handle with a serrated blade, held in a hand viewed from a first-person perspective against a domestic setting with tiled flooring and wooden furniture. +c68d27b457424d0.png A serrated-edge bread knife with a shiny silver blade and a black handle featuring two metal rivets, viewed from above on a white countertop near a wicker basket. +ee525ec676c64ba.png A dark-handled, sleek bread knife lies flat on a wooden floor alongside a patterned rug, with a shiny, slender blade reflecting light in a dim interior setting. +9bcc24c43a2c4ca.png The object is a rectangular cleaver with a metal blade showing signs of rust and a light-colored wooden handle, resting on a wooden surface next to a computer monitor in a dimly lit setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bread_loaf_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bread_loaf_descriptions.txt new file mode 100644 index 0000000..703cce6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bread_loaf_descriptions.txt @@ -0,0 +1,14 @@ +c167a9c1e26d41b.png The bread loaf, visible through its transparent packaging, appears to be a classic light brown color with a smooth, shiny texture and is placed centrally on a granite countertop in a kitchen setting featuring wooden cabinets and dim lighting. +04690bf5166c4be.png The image depicts a low-resolution, packaged loaf of white bread viewed from a slightly overhead angle on a light-colored tiled surface, with noticeable glare on the plastic wrapping and parts of the loaf emerging from shadow. +cce5e282c40f44c.png A brown paper-wrapped loaf is lying on a tiled floor with diamond pattern designs, viewed from above, featuring a twisted top and faint text on the packaging. +8b5f9ccc24bf403.png The image shows a packaged loaf of bread with a teal and orange design on the bag, viewed from an angle with a partly visible background that includes a warm, yellow-lit textured surface and other indistinct objects. +e9f051ab4bfc4cb.png The bread loaf, inside a yellow-labeled plastic packaging, appears to be light brown with a soft, smooth texture, and is placed horizontally on a mottled brown countertop beneath a wall-mounted paper towel holder. +3dddb350fa6b4dd.png A pre-sliced, packaged white bread loaf with a soft texture and a labeled red, purple, and blue plastic bag is held over a cluttered kitchen countertop with various jars, containers, and small appliances. +0f2d4814c192484.png A packaged loaf of sliced white bread, resting at an angle on a dark marble countertop, exhibits a light golden-brown crust with visible lines from the slices, in a kitchen setting with utensils and a red kettle in the background. +7964e3519be64f9.png The bread loaf is a small, oblong shape with a light brown crust and a single cut on top, resting on a white plastic bag against a background with a colorful, patterned fabric. +f855ce6889a649b.png A wrapped loaf of white sandwich bread sits on a speckled granite countertop under a sliver of sunlight, beside a roll of paper towels, in a kitchen setting. +a50bcbde4c2f442.png A packaged loaf of whole wheat bread, slightly twisted to the left, rests on a light-colored countertop with a white tiled backsplash and wooden floor visible in the background. +c1115ecba6a6430.png A packaged loaf of sliced white bread with smooth, golden-brown crust edges rests horizontally on a mottled countertop, partially inside a clear plastic bag featuring green and red labeling. +ae95b2bba996431.png The image depicts a packaged baguette-style bread loaf with a golden brown exterior, encased in clear plastic on a wooden floor, with its top surface faintly visible and marked with a blue and white nutritional label. +23818bd1271b432.png The bread loaf, in a clear plastic bag with bold labeling, displays a golden-brown color and even slices, resting on a bathroom sink countertop surrounded by toiletries, highlighting its unusual placement. +a0acc9dfdd6a4b5.png The bread loaf, enclosed in clear branded packaging with a twist tie, displays a light golden crust and a sliced texture, sitting atop a white appliance in a kitchen environment with a wooden door and tiled floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/briefcase_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/briefcase_descriptions.txt new file mode 100644 index 0000000..a623fde --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/briefcase_descriptions.txt @@ -0,0 +1,14 @@ +d271c3e8086c45d.png A turquoise, hard-shell briefcase with silver latches is seen from a side angle, resting on a pink shelf amidst various household items, with a distinct handle centered on top. +937fc6995b054a5.png The briefcase, dark gray with a coarse texture, is viewed from a side angle showing its horizontal standing position against a marble-tiled floor, and is distinguished by its metallic side strips, black handle, and the presence of a wooden bench with hanging clothes in the background. +0f0310ba1ac1468.png The object appears to be a light gray hard-shell briefcase with a matte texture, viewed from a low angle partially resting on a wooden surface, adorned with a prominent red and yellow sticker indicating "7 Years Warranty." +aef29336523844e.png The briefcase appears black with a smooth texture, featuring red accents along the zippers, displayed in an upright position against a muted lavender wall, with a small front pocket and a visible handle atop. +e400e1fcc8e245c.png The briefcase is dark gray with a smooth, matte texture, viewed from an angled top-down perspective against a plain, concrete background, featuring a prominent handle and rounded edges. +f39fb32879b14b3.png The briefcase is dark blue with a smooth texture, photographed from above at an angle, resting on a beige textured rug near a tiled floor, featuring a black shoulder strap and minimalistic design. +c8854a52f9d04bd.png The briefcase is dark brown with a smooth texture, viewed from an angled top perspective on a wooden floor, featuring a black handle and gold-colored latches. +f03fe8a6c565483.png A black, leather-like briefcase with a slightly glossy texture is positioned vertically against a carpeted floor, with a wooden-paneled wall and a quilted mattress in the background, featuring subtle crease lines on its exterior. +10d58009d8384d3.png A black leather briefcase with metallic rivet accents is held at an angle above a wooden floor, with a person's hand grasping the handle and the distinct texture of the leather visible despite the low resolution. +f0d50bce83894a7.png The briefcase is brown with a leather-like texture, seen from a sideways angle, and features brass-colored locks, set against a background of wooden flooring and a white door. +6664afa82ea84ee.png A black, soft-textured bag lies flat on a green carpeted surface with a partially visible white wall in the background, showing a side view with minimal detail and a zipper accent. +86b2e98e0f97425.png The briefcase is a light brown, hard-shell case with a slightly textured surface, featuring a silver metal handle, resting on a speckled terrazzo floor against a plain cream wall. +a6b6bed3c2db406.png A black leather briefcase with a smooth texture is shown from a top-down angle on a beige carpet, featuring a zipper and faint seam details. +8884f680234149e.png The briefcase is dark-colored with a smooth texture, viewed from an overhead angle on the floor next to a red-backed chair, featuring metal latches on the corner edges. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/brooch_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/brooch_descriptions.txt new file mode 100644 index 0000000..7a6b3a6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/brooch_descriptions.txt @@ -0,0 +1,14 @@ +2ff33ab104b94b8.png A gold-toned, intricately textured brooch with a spherical center is displayed on a blue and white patterned fabric, partially draped with sheer pink cloth. +fbde36ac3f52472.png The brooch appears silver with a textured, spiky design resembling a spider, viewed from above against a beige carpet background. +f4e5c97f44d14b4.png An oval cameo brooch featuring a white profile of a woman's face against a gray background, framed with intricate detailing and small rhinestones, is set against a textured dark woven fabric. +d1a0a36cbaf9405.png The brooch is gold with a smooth texture, viewed from the side with a hand holding it against a wooden surface backdrop, featuring a reflective quality and a potential floral embellishment. +778048f4be01437.png The brooch has a gold-colored, wing-like design with a central circular emblem, set against a plain light brown surface and viewed from above. +9242970b982c4c7.png The brooch appears gold with a smooth and reflective texture, featuring ornate detailing and a pointed shape, set against a blurred neutral skin-tone background in a close-up side view. +4abd8e0182614d7.png The brooch features a cluster of large, clear, and faceted stones arranged in a floral pattern, held at an angle by a hand against a speckled granite countertop, with sunlight reflecting off the shiny surfaces. +f70accb9be444aa.png The brooch appears gold with a smooth and shiny texture, viewed diagonally while being held by hand against a tiled floor, featuring an elongated design with small leaf-like accents. +b9a8e3c7c14b40c.png The brooch is a shiny metallic gold insect-shaped piece with intricate detailing, viewed from above and set against a colorful, crocheted background that features horizontal stripes of red, blue, green, black, and white. +8bf23a5bc6234a5.png The brooch, shaped like a delicate green and black leaf with intricate detailing, is shown on a light-colored flat surface next to a circular blue object, enhancing its textured and polished appearance. +f5288aab88704c1.png The brooch, viewed from above on a dark wooden surface, features a metallic, twisted heart shape encrusted with small, shimmering stones. +4709cf25dc24455.png The brooch features a butterfly shape with dark, slightly tarnished metallic wings and an oval, turquoise stone body, set against a speckled off-white background viewed from above. +d411877867ff4f2.png The brooch is a gold-toned fleur-de-lis shape with a textured, shimmering surface, set against a wooden floor background and depicted from an overhead angle in the palm of a hand. +9fdeb23a9bf64f8.png The object is a gold-colored, textured, metallic brooch held in a hand with a blurred background featuring a bed with yellow and gray pillows. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/broom_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/broom_descriptions.txt new file mode 100644 index 0000000..11c578a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/broom_descriptions.txt @@ -0,0 +1,14 @@ +f700b81d9a944b1.png A broom with a green handle and bristles that transition from gray to green is partially resting on a cardboard surface in an indoor setting, viewed from above with a distinct white plastic bristle holder. +5ab42f93eece45a.png The broom appears to have a bundle of light brown straw bristles bound together with a dark and light band, laying flat on a light-colored tiled floor next to a dark vertical surface. +18dc9e182064432.png A black-bristled broom with a long, silver handle leans diagonally against a wooden entertainment unit, set in a living room with a carpeted area and a visible pink blanket in the background. +3676e6e5538d48f.png The broom features vibrant blue bristles with a black trim, is viewed upright leaning against a tiled bathroom wall, and the handle is white and slightly curved, with toiletries and a hairbrush visible nearby. +48fd9452951c440.png The broom has a red handle and brown bristles, leaning at an angle against a textured cement surface with a tiled floor and metal pot visible in the background, suggesting an indoor environment. +8dd7fd201647431.png A hand is holding a white broom at an angle, with bristles pointing downward over a wooden floor, and a beige couch partially visible in the background. +535bbbc927b94a4.png A blue-handled broom with a gray bristle head lies flat on a dark carpeted floor, surrounded by a silver spherical object and a cardboard box against a gray wall background. +e6ed7f911e47452.png The broom has a black brush head with an orange holder, lying horizontally on a heart-shaped multicolored rug partially obscured by a dark purple curtain in a tiled room with cream-colored walls. +59493bd52fa54ac.png A blue-handled broom with dark bristles lies horizontally on a gray carpeted floor, next to a matching blue dustpan, amidst a room with a small desk, couch, and scattered items. +f1d60d9f64ac40c.png The broom has dark, stiff bristles with a red plastic handle, shown in an indoor kitchen setting featuring a tiled floor and cabinets in the background. +0138cf657c5240d.png The broom features a red handle with a black grip and a matching red head with black bristles, viewed from above in a cluttered living room with a patterned rug and scattered items. +9122e6e27a974b7.png A broom with a blue handle and black bristles featuring a red trim lies on a tiled floor with white and gray diagonal tiles in a softly lit hallway. +5444fefef219417.png A red-handled broom with multi-colored bristles rests diagonally against a light-colored wall on a wooden floor. +295c64967f49458.png The broom appears to have straw-like, light brown bristles lying flat against a tiled floor featuring blue and white floral patterns, with a visible diagonal orientation from a low-angle side view. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/bucket_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/bucket_descriptions.txt new file mode 100644 index 0000000..6bc9bd2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/bucket_descriptions.txt @@ -0,0 +1,14 @@ +113ab6fc817545a.png The bucket is a smooth, matte dark gray with a slight sheen, viewed from a tilted angle against a corner where a white cabinet meets a white wall, set on a gray speckled carpeted floor, with a minimalistic and modern indoor office environment. +8c03b3e4f3c9420.png A metallic, silver bucket with a smooth, reflective surface sits on a glossy tiled floor, featuring a yellow stick inside and surrounded by a dimly lit room with a wooden door partially visible in the background. +9426f4295dc84b2.png The bucket in the image is cylindrical with a blue and white marbled pattern, placed on its side on a patterned tile floor, featuring a distinct handle cutout near the top edge. +4b8ed899020b4b4.png The bucket is a smooth, semi-translucent pink with a red handle, viewed from above at an angle on a sunlit concrete patio with scattered shadows. +e2b797849037467.png A white plastic bucket with a turquoise and orange design labeled "BE PRESEAT" lies on its side on a beige countertop, with a black handle and a kitchen sink, mugs, and a yellow tea container in the background. +dbf465b77fac436.png A bright blue plastic bucket with a smooth texture is situated on beige tiled flooring, against a backdrop of brown curtains and a light-colored wall. +0100096a7f2646b.png A white bucket with a smooth surface, partially filled with water, is positioned upright in a corner with a light green, textured wall and concrete floor, next to a blue drain cover. +6deb5cbe8f9e458.png A black bucket with a green handle lies on its side on a wooden floor in a bedroom, with surrounding furniture and a wardrobe in view. +182c10f512d84fa.png The yellow bucket has a smooth surface with a handle, viewed at an angle lying on a floral-patterned bed, against a plain light-colored wall. +d2959f7eb92f4e5.png A blue plastic bucket with a handle is seen on a diagonal-checked tiled floor, with a peeling label and positioned near a textured, off-white wall. +80265ef4e94740c.png A red and white bucket with a smooth texture is positioned upright on a tiled floor in a cluttered indoor environment, surrounded by scattered household items and a predominantly gray-toned background. +259d84bf1abe487.png A gray, slightly textured plastic bucket is positioned on its side on a tiled floor with a metal handle, seen against a tiled wall background. +e6589132d93b465.png A light gray, slightly textured bucket is lying on its side on a smooth concrete floor, with a notable curved rim and simple handle attachments visibly resting on the ground. +ceb169a81ff64e9.png The image shows a light blue plastic bucket lying on its side on a tiled floor, viewed from above, with a smooth texture and a tiled wall in the background featuring a subtle pattern. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/butchers_knife_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/butchers_knife_descriptions.txt new file mode 100644 index 0000000..c879427 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/butchers_knife_descriptions.txt @@ -0,0 +1,14 @@ +463efa47a1b2420.png The butcher's knife features a brown wooden handle with three rivets and a shiny metal blade, resting flat on a textured blue surface in a high-angle view, with part of a cylindrical metallic object visible in the lower left corner. +af76866100ae484.png A black-handled knife with a wide, slightly reflective stainless steel blade is laying flat on a white countertop, casting a shadow and surrounded by a nearby multicolored cloth and power outlets in the background. +7bb47985c4454b4.png A butcher's knife with a shiny, metallic blade and a black handle lies flat on a speckled gray countertop in a kitchen setting, surrounded by various items, viewed from an overhead angle. +643f313a66d44b4.png The butcher's knife features a metallic, slightly reflective blade with a straight edge, positioned at a diagonal angle against a speckled dark background and complemented by a gray handle with discernible text on its surface. +f41cb1be12a5418.png The butcher's knife features a yellow handle with rivets and a shiny, textured silver blade with oval cutouts, viewed from a side angle against a neutral, light-colored background. +ab26099fdccf4ff.png The image shows a person's arm reaching for the handle of a kitchen drawer, with a countertop visible in a classic kitchen environment, but there isn't a butcher's knife visible. +1cd7bd876dcf43d.png The butcher's knife has a shiny metallic blade with a black handle, viewed horizontally over a patterned countertop, positioned near a black crockpot and a teal kitchen appliance. +d846d1c6c092491.png The butcher's knife has a silver blade with a smooth texture and a black handle, positioned horizontally on a turquoise bedspread with a colorful patchwork quilt partially in view, displaying a standard linear design without visible serrations. +106ac33d4904494.png A long, silver-toned butcher knife with a smooth, slightly reflective blade and two rivets on a dark handle is resting horizontally against a textured, folded cloth background. +918fb3ff968e419.png A slightly angled view of a butchers knife shows its broad, shiny silver blade with a black handle, positioned on a light-colored, speckled countertop next to a small blue bowl and festive-themed plate, highlighted by dim lighting. +18684bf6ff2047f.png A large chef's knife with a silver, slightly reflective blade and a matte black handle is held upright on a granite kitchen countertop, showing a straight edge with a slightly curved tip amidst various kitchen items. +a91c5871ee184f9.png The image shows a kitchen countertop with various items, including a knife block holding silver knives, with a metallic sheen and small holes on the handle, surrounded by a kitchen setting with packaged foods and a roll of white paper towels, all against a granite-style counter surface and wooden cabinets. +5e421eca79a443a.png A person is holding a dark-handled object with a thin, serrated metal blade at an angle above a marbled countertop, suggesting it could be a small pruning saw rather than a butcher's knife. +9aad09e1eedf4fd.png The butcher's knife has a shiny metallic blade and a black handle, seen from a top-down angle on a speckled granite countertop, with distinct stainless rivets on the handle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/butter_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/butter_descriptions.txt new file mode 100644 index 0000000..d4843ec --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/butter_descriptions.txt @@ -0,0 +1,14 @@ +8e65c891d00e48b.png A tall, rectangular stick of butter with a creamy yellow hue and a smooth texture is positioned upright on a speckled white countertop, with a decorative window and kitchen items blurred in the background. +1a1d756bb52a43f.png A hand is holding a block of light yellow butter encased in a partially opened clear plastic bag with a blue and white label, set against a warm, softly-lit indoor environment with brown flooring and blurred background elements. +34e717b7ec25470.png A stick of butter with a pale yellow color and smooth texture sits on top of an upside-down white bowl, with a blurry red gaming controller and brown carpeted floor in the background. +31c3156fcf854e0.png The butter is rectangular with a cream color and smooth texture, placed horizontally on a dark granite countertop with a beige wall and white electrical outlet in the background, featuring blue branded text on its wrapper. +fb95e3e6d379428.png A person holds a stick of butter with a white, smooth wrapper displaying printed text, viewed from the side with a background featuring a warm-lit room and various household items. +fd413d961ea1452.png A person holds a rectangular block of butter wrapped in foil with red and yellow text, positioned above a reflective glass table in a room with wooden furniture. +69db4cd7e22c44c.png The object is a yellow and black plastic container of spread held in a hand, viewed at an angle in a bathroom setting with various personal care items in the background, including a visible sink and countertop. +f5152e60a2e543e.png The image shows a rectangular box of butter, primarily blue and yellow with visible branding, standing upright on a smooth, beige kitchen countertop with a slightly curved backsplash, and the box features a cow image in a pastoral scene. +1c2c82b867434fd.png The image shows a hand holding a bright yellow-packaged item with visible nutrition facts, against a bathroom setting with a toilet in the background and wood-patterned floor. +782d8c4161a743a.png The crumpled, gold foil-wrapped butter, held in hand, contrasts with the brown tiled kitchen floor and wooden cabinets, with visible green and black text labels. +3012643a8cac4b6.png A yellow plastic butter tub with a clear lid is held horizontally over a dark fabric surface, featuring floral designs and placed against a pink background with cartoon characters. +ca49de12ab0841e.png The butter package is a rectangular block with a white base color covered in red text and logos, standing upright on a shiny glass surface in an indoor setting with a staircase in the background. +1ef437494d7b4b5.png A rectangular block of butter, wrapped in a pale yellow and red patterned paper, is held horizontally in a hand over a wooden surface. +44f94e26002c4f1.png A partially empty tub of creamy, yellow butter with a smooth texture is viewed from an angle showing its interior against a neutral background, revealing a steel surface beneath. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/button_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/button_descriptions.txt new file mode 100644 index 0000000..f5eaafb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/button_descriptions.txt @@ -0,0 +1,14 @@ +c6ab04d4578b45c.png The button is black with a glossy surface, viewed from a slightly elevated angle on a textured, white fabric with a blurred background of a bedspread featuring pillows and a patterned cover. +81adfcf8b3944ee.png A silver metallic button, reflecting light and slightly scratched, is attached to a purple fabric next to a shiny black surface, set against a blurred wooden background. +ea2e3ce2896c4c2.png A small, translucent white button with four holes is placed on a textured dark surface, viewed from above with a nearby reflection or shadow enhancing its circular shape. +08558deba91546e.png The button is semi-transparent and matte with a four-hole design, viewed from a front angle against a backdrop of textured, worn leather in shades of brown and beige, likely part of a shoe with visible stitching details. +8fd287dfdf7f43e.png The button appears metallic with a glossy, reddish-brown top, viewed in profile pinched between fingers against a blurred gray background, showing a distinct shadow on the left. +b8c0b46b794146e.png The object is a dark green, oval-shaped button with a smooth, glossy surface, viewed from above and resting on a striped fabric background of alternating dark and light blue vertical lines. +c00ef06d496346d.png The button appears dark and slightly shiny with a smooth texture, viewed from a close angle against a blurred background featuring wood-like and gray fabric elements. +5ee6168ae053433.png The button appears to be black with a gold ornate design in the center, viewed in a close-up from the front, held between fingers with a blurred fluffy blue-gray background. +a3a92b83ec49486.png The button is turquoise with a smooth, marbled texture, displayed in a top-down view against a speckled, multicolored background, featuring two distinct holes. +7502ebd4f0724fd.png A small, circular button with a mottled green and brown color and a smooth texture, viewed from above on a blurred tan wooden surface, featuring four central holes. +379bbcf9efe747a.png A shiny, metallic button with a central hole pattern is positioned on dark, textured fabric, viewed from a slight angle, with a blurred, indoor background featuring wooden elements and a vividly painted fingernail in the foreground touching the fabric. +3dc154381fd24c4.png The button is a metallic, dark gray piece with a ridged texture, viewed from above against a blue denim fabric backdrop, with visible brown stitching in the surrounding area. +1388d3cf903f4d4.png A small, white, four-hole plastic button is held between fingers stained with henna, against a blurred indoor background featuring a blue and brown floor. +4d213b033b6f4fa.png The button is a metallic bronze color with a textured emblem design, viewed from an angled side perspective on a wooden surface with visible grooves. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/calendar_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/calendar_descriptions.txt new file mode 100644 index 0000000..aebe14d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/calendar_descriptions.txt @@ -0,0 +1,14 @@ +53010b09c891482.png The calendar, positioned upright on a carpeted floor beneath a glass coffee table, features a white spiral binding with visible colorful sticky notes and a partially visible rectangular month view in a domestic living room setting. +ff9c86224cc2467.png A wall calendar with large black and red numbers, featuring a cream-colored background, displaying the month of October 2019, framed by a white border with an illustration of a vintage candy truck at the top against a neutral indoor setting. +285fe7d08fd3460.png A white, paper calendar with red text and image detailing hangs at an angle on a beige wall, featuring a black silhouette of a cat at the bottom edge. +883d45203ace470.png The calendar is wall-mounted with a large image of a child in a grassy area above a grid of days, featuring a green border, in a slightly tilted position against a light blue wall with a corner of a doorway and ceiling visible in the background. +bdf26d1cdc09451.png The calendar features a vibrant image dominated by blue and gold colors with religious iconography, positioned upside down on a wooden surface beneath a dark ledge, accompanied by a smaller, monochrome paper on top highlighting the 11-5-2019 date. +8af84efd8ec8466.png A low-resolution image of a calendar placed horizontally on a beige mattress, surrounded by a floral book, envelopes, and personal items, with a visible air conditioner and bed linens in the background. +a31c3c3544fc4d3.png The calendar features a detailed religious image with warm hues, displayed from a slight top-down angle against a plain, tiled floor background, with prominent, colorful text at the bottom. +17fed0e55d79492.png The calendar features an image of a snowy landscape with red and green elements, viewed from a slightly tilted angle in a bathroom setting with a white and gray patterned shower curtain in the background. +27e65b05a926487.png The low-resolution image shows a colorful calendar featuring a dog in an adorable costume with a furry hood on a leafy, green background, while an overhead view reveals the calendar as open on a tiled surface, displaying the title "WACKY WHISKERS" and vividly humorous animal images. +fea1daff08fd422.png The calendar displayed vertically shows a vibrant green and yellow color scheme with a large image of yellow flowers and puppies, set against a wooden surface with a blurred carpet and chair in the background. +bede9128ff39472.png The calendar features a green cover with a floral pattern, viewed from above on a wooden chair next to a floral-patterned tablecloth, against a tiled floor. +fae8c1792ab34d8.png The calendar has a predominantly white surface with blue and red accents, is being held vertically by a hand over a blue desk, against a backdrop of a marked whiteboard and office equipment. +1ac639f88cc4472.png The calendar features a colorful, grid-like layout with prominent red and blue numbers, a landscape-oriented top portion showcasing a patriotic image, and is set against a plain, light background on a wall. +d62979aeba5f4af.png The calendar features a colorful, printed design with a vivid image against a plain white background, viewed at an angled perspective, showing distinct text and graphics despite the low resolution. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/can_opener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/can_opener_descriptions.txt new file mode 100644 index 0000000..9954e98 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/can_opener_descriptions.txt @@ -0,0 +1,14 @@ +a1ed83522bbe407.png The can opener is white with a smooth texture, held in hand from a top-down angle against a wood-patterned floor, featuring a distinct manual lever on one end. +2b088c580a754fe.png A black-handled can opener with a shiny metal cutting mechanism is lying flat on a speckled grey countertop next to a silver measuring cup, contrasting against the brown textured surface beneath. +4615e4affe39417.png A dark-handled, manual can opener with a silver metal cutting wheel, viewed from a top-down angle against a speckled, light-colored countertop, with a sealed blue plastic bag in the background. +fd07caa848bd4a2.png The can opener, held horizontally against a carpeted floor background, features a metallic body with a dark handle and noticeable gears, captured from a tilted side view. +72b8063fd7a449f.png The can opener has black plastic handles and shiny metallic cutting parts, viewed from an angled top-down perspective on a textured gray wooden surface, with a patch of carpet visible in the background. +ae0c0de5d861489.png A black, handheld can opener with a smooth texture is viewed from above on a dark countertop, featuring a distinct shiny metal gear wheel, with part of the kitchen floor and a wooden chair visible in the background. +af4a6ac3f191472.png A purple handheld can opener with a glossy finish is held from a side view against a carpeted living room background, featuring a comfortable handle and visible metal cutting wheel assembly. +d6a40bf8991546f.png A metallic silver can opener with dual cylindrical handles and a flat gear mechanism is held in a hand over a dark wooden surface, with a barcode sticker on the top handle and electronic devices visible on a distant background table. +f720a91b0d9b49e.png A handheld can opener with a metallic body and black handle is seen from a top-side view against a wood-patterned background, held by a hand with a visible wristband. +81b5e98663c3494.png The can opener is metallic silver with a smooth texture, positioned in a hand viewed from the side, against a red sofa backdrop with framed pictures on a beige wall in the background, featuring distinct loop handles and a cutting wheel mechanism. +66efd6d6ce814bc.png The can opener is black with a curved handle, positioned sideways on a speckled white countertop next to a sink, and features a visible gear mechanism. +309d74c75f7942c.png A red-handled can opener is lying flat on a wooden floor with visible metal cutting edges and a turning knob, viewed from above in a brightly lit environment. +ab3889e2254240f.png The can opener is a handheld, metallic object with black rubber grips and red accents, positioned horizontally on a wooden countertop with a partial view of a green can and other kitchen items in the background. +10785e9fb29d420.png A black, manual can opener is held in a hand, with a curved blade and cylindrical handles, set against a textured dark blanket and a netted hamper in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/candle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/candle_descriptions.txt new file mode 100644 index 0000000..34a0b46 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/candle_descriptions.txt @@ -0,0 +1,14 @@ +158901592ce8481.png A small, beige cylindrical candle with a slightly rough and waxy texture lies on its side against a coarse, light-colored fabric background, showing a subtle indentation on its top surface. +2f074244ec104ef.png A white candle with a smooth texture is held upright in a dimly lit room, with a red chair and partially visible fabric as the background. +f6b77faaaa834f3.png A slender white candle, viewed from above at an angle, lies on a bright red, slightly textured fabric background, with a tiny visible connection seam in its middle. +193cb08ea9e0411.png The candle is an off-white, cylindrical object with a textured surface comprising small, raised square patterns, viewed from a side angle against a gray fabric background with a hand holding it. +a0d181a8e1054a9.png A slender, off-white candle with a slight waxy sheen is lying horizontally on a smooth, light gray surface, with a faint visible wick at one end. +27720cc3ddf3467.png The candle is white with red symbols and a slightly melted texture, held horizontally in a hand against a cluttered indoor background with gray and red tones. +12ce992b2e5d4f4.png The candle appears to be a smooth, light yellow votive set at an angle in a frosted white holder, placed on a perforated white surface in what seems to be a bathroom environment. +dab40747ed56413.png A tall, white taper candle with a smooth texture stands vertically on a dark, two-tiered desk cluttered with electronic devices and cords, viewed from a slightly elevated angle. +7230334cb685434.png The cylindrical object has a smooth, light green surface wrapped with coarse, brown twine and is resting on a dark, reflective surface near a black, glossy electronic device. +872ff9f4348f434.png A slender, white candle with a smooth texture is horizontally placed on a dark wooden surface, surrounded by various colorful objects and textures like green trays and patterned fabrics, viewed from an angled top perspective. +7b82a78628784cb.png A rich red candle, with a smooth texture, sits upright in a glass holder on a wooden table, against a backdrop of a patterned, blanket-covered sofa. +eb70534ead884d0.png The image shows a clear glass jar holding a reddish-orange candle labeled "Yankee Candle," set against a bedroom background with a beige quilt, leopard print fabric, and partially visible wooden furniture. +b02650c15a294c6.png The object has a gradient from pale pink to gray with text on the surface, is resting on its side in a white sink, and is surrounded by a tan textured wall and a liquid soap dispenser. +1ef5c0b27b9b455.png A red, round candle holder featuring white snowflake patterns is being held by a hand against a textured, dark-patterned fabric background, with glowing light seen through the designs. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/canned_food_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/canned_food_descriptions.txt new file mode 100644 index 0000000..b0d3473 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/canned_food_descriptions.txt @@ -0,0 +1,14 @@ +80083679bcdd490.png The low-resolution image depicts a cylindrical can held at an angle, primarily silver with green labeling featuring what appears to be a design of vegetables, against a tiled floor background under kitchen cabinetry. +df9f3de3d3c24f2.png A hand holds a can with a mixture of bright yellow and red colors on the label, lying horizontally against a dark wood tabletop, with a blue and green tissue box and an office setting in the blurred background. +7ef37b0eedcb484.png The image shows a jar with a yellow lid and a label featuring greenery and an illustrated teacup, set against a dark, textured surface with a blue wall in the background. +5f25ca77675c422.png The image shows a hand holding a can of garbanzo beans with a dark label featuring an image of beans in a bowl, against a backdrop of a beige carpeted floor and colorful furniture. +bb0b2f06ac924ce.png A can of Chef Boyardee Spaghetti & Meatballs is lying horizontally on a textured stone-like surface, with light casting a shadow across half of its label, which features bright red and green colors along with an image of the pasta and the Chef Boyardee logo. +95a5d894cb5b46a.png The image shows a can placed upright on a tiled floor, featuring a white label with red berry graphics and black nutrition facts text, set against a background with a wooden baseboard and cylindrical white object. +e10f6afe908449b.png A small cylindrical can with a light peach color and illustrative graphics rests horizontally on a white countertop in a bathroom setting with a beige tiled background, incorporating folded towels and a toilet paper holder. +4598da5c9204496.png The canned food is vertically placed on a wooden chair with a partially visible colorful label featuring red and green colors, and is set in a home environment with white bedding and a wooden floor visible in the background. +62cf0ea294ef410.png A person holds a red-labeled can with a silver top from a tilted angle in a tiled room with a visible couch, cardboard boxes, and a white trash bag in the background. +bab8700e8ab9402.png A hand holds a vibrant red can with black accents and a visible logo, positioned against a teal table with a blurred, cozy indoor setting, including stacked coasters and a candle, in the background. +a31d07ea89ad474.png A can with a blue and white label featuring an image of yellow corn kernels, viewed from a slightly above angle on a white bathroom counter with a purple container and toilet paper in the background. +10f30e31adbc483.png The can, viewed from the side against a neutral background, features a primarily green label with bright yellow corn imagery and a reflective metallic top, set on a patterned surface with a clear contrast between tile and white wall. +283cc99159df423.png A predominantly yellow and green labeled can of "Green Giant" corn sits upright on a patterned, reflective kitchen countertop, with a blurred background featuring red tiled walls and various kitchen items. +5d9dfe41d82a456.png A partially visible can lies on its side on a speckled white and gray countertop, featuring a predominantly white label with a purple section and orange accent, set against an adjacent area with a blurry colorful bottle and light-colored wall in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/cd_case_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/cd_case_descriptions.txt new file mode 100644 index 0000000..f3b30f7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/cd_case_descriptions.txt @@ -0,0 +1,14 @@ +6c1fc89e02c5419.png The CD case, held by a hand and viewed from the side, has a dark and glossy texture with a central circular emblem and text on its spine, set against a dark green, textured sofa backdrop. +75567ba51b5148e.png The cd case features a cover with a black-and-white photo of people, accented by blue and yellow text, held at an angle against a textured gray carpet background. +d0f3f7e9408d401.png The CD case is bright orange with a glossy texture, viewed from above on a blue quilted bedspread, featuring bold white text and a cartoonish yellow-orange smiley face design. +617618645f40451.png A person holds a green, translucent CD case vertically against a background of wooden floorboards, with visible circular indents and a smooth texture. +797edd629f4c41e.png A transparent plastic CD case with a matte texture is placed horizontally on top of a ceramic toilet tank, surrounded by glossy white tiled walls and a plush green floor mat. +8a607136eda44d7.png The CD case is transparent with a slight reflective sheen, held at a tilted angle by a hand, against the backdrop of a bathroom with a pink sink, a white toilet, and a partially visible bathtub. +8fec3f42683f4aa.png The CD case is clear and plastic, positioned on a dark LG monitor stand, with a white CD inside showing handwritten text, against a backdrop of a curtain and window bars. +980dc14385234e0.png The CD case is a translucent green color with a circular indentation, positioned flat on a textured beige carpet, viewed from above. +177ca22c4cfd474.png The CD case is viewed from above, resting on a carpeted floor between two cream-colored shaggy rugs, featuring a predominantly dark cover with visible circular elements and a partial human-like figure, surrounded by bedroom furniture and electronic cables. +e6509fb61baa44f.png The CD case features a cover with two cartoon figures, one in a red hat and the other with orange hair, both on a white background with bold blue lettering at the top, and the text "LEAN ON ME I WON'T FALL OVER" at the bottom. +0c06c28bfd01448.png A blue CD case with superhero imagery and text on the cover is positioned at an angle on the edge of a white bathtub within a bathroom setting, with shampoo bottles visible in the background. +1b69b05888a5448.png A person holds a transparent CD case displaying the spine with "Assassin’s Creed" text, highlighted by yellow and green accents, against a warm-toned wooden floor background with a wooden cabinet nearby. +ae8d9fc9ded04a3.png The CD case is semi-transparent blue with a colorful insert visible through the side, positioned upright on a dark, speckled countertop with a white door in the background. +17813a7c9291497.png The CD case is transparent with a matte texture, viewed from the thin edge side, set against a textured dark green carpet background with visible white speckles. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/cellphone_case_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/cellphone_case_descriptions.txt new file mode 100644 index 0000000..1cce6a5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/cellphone_case_descriptions.txt @@ -0,0 +1,14 @@ +7b2b176e48e6483.png The cellphone case, featuring a colorful design with a playful illustration and text in vibrant shades, is lying flat on a kitchen surface, surrounded by various household items like a pan and plastic baskets, against a white tile floor background. +c65d53e4c3e24ce.png The cellphone case is a minimalistic, glossy white with a clear, slightly rounded edge and is viewed from above on a wood-textured floor with a distinct notch cutout near the top end. +8dd2718650594a8.png The cellphone case is transparent with a smooth texture, viewed from the side lying flat on a wooden surface, with a simple indoor background featuring a beige wall. +46948cda2b174e5.png The cellphone case is primarily gray with a smooth texture and an angular, partially translucent section, held upright in a hand against a quilted, dark purple fabric background. +4ff426e4d62444f.png The cellphone case is translucent brown with a glossy finish, shown being held at an angle to reveal its rectangular camera cutout, set against a wooden floor background. +293b98111dcd47d.png The cellphone case appears dark, likely black or deep grey, with a matte texture and is depicted lying flat on a cream-colored surface, with visible camera and button cutouts against an interior wall background. +6a98d803df5e46b.png The cellphone case is translucent yellow with a smooth texture, viewed from above on a scratched, brown wooden table, and features precise cutouts for the camera, charger, and speaker against a dim indoor setting. +f3ddc11c8f45436.png The cellphone case is a matte blue cover with a circular cutout near the middle for the logo and a rectangular opening at the top corner for the camera, positioned leaning against a white microwave on a kitchen counter with a stove edge partially visible. +7de664a1c81d4bd.png The cellphone case, viewed from above, is brown with a smooth texture, laying partially open on a dark floor within a cluttered domestic environment featuring colorful textiles and a piece of wooden furniture. +a1bf0cd1bc2948a.png A person is holding a matte red and teal cellphone case at an angle on a brown tiled floor, with wooden furniture and a striped rug in the background. +3556a5c3fa37469.png A rose gold cellphone case with a glittery texture and star patterns is resting on a beige, fuzzy blanket, viewed from a slightly elevated angle, with colorful toys and a brown carpet in the background. +21efce86336f44f.png A transparent cellphone case with a pink border and a pattern of small symbols or letters is placed on a white fabric surface amidst a background of patterned sheets and blankets. +6b8632cf0fa6464.png A matte black cellphone case with a sleek, ribbed texture is placed face-up on a speckled, marble-like surface, illuminated by overhead light with shadows creating a dramatic contrast. +43fa88b1367447c.png The cellphone case appears to be black with a smooth texture, positioned upright against a tissue box on a speckled beige stone countertop, with a dark circular element possibly suggesting a pop-out grip. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/cellphone_charger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/cellphone_charger_descriptions.txt new file mode 100644 index 0000000..04c29b6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/cellphone_charger_descriptions.txt @@ -0,0 +1,14 @@ +74733d7cbef0412.png A white cellphone charger with a short, tangled cord rests on a striped fabric surface with a black and gray plaid pattern, set against a concrete background with an open doorway allowing in natural light. +5733f84ba625464.png A black rectangular cellphone charger with a white USB cable is held in a person's left hand against a textured, camo-patterned backdrop, with a white micro USB end visible below. +b1b2274c692b4bb.png A black rectangular cellphone charger with attached cables is lying flat on a striped blue and white fabric surface, with distinct separation between the plug and cable section. +148a8353301d486.png The cellphone charger is black with red accents, featuring braided cables, lying tangled on a glossy, tan-tiled floor in a living room setting. +1f003541bb2946e.png A white, smooth-textured cellphone charger is held upright in a hand, revealing its USB socket and connected cable, against a tiled floor and a partial view of a red chair. +2dc60f762c4a488.png The cellphone charger is white with a smooth, slightly glossy texture, positioned side-on with the plug prongs visible, lying on a metallic, ribbed surface next to a cream-colored mug and blue plastic bowl. +77c0145a11bd413.png The white cellphone charger, held vertically by a hand over a reflective surface, features a smooth finish with standard European plug prongs, set against a domestic backdrop. +2610bceddbe0466.png The cellphone charger is black and glossy with two silver prongs, a micro USB and a USB-C connector, and lies flat on a wooden desk near a computer keyboard and a white mouse, partially surrounded by other electronic cables. +cf28468ad1624c9.png A black rectangular plug with prongs is seen lying on its side on a white desk with a green cutting mat and a computer mouse in the background, with a connected black cable extending from its side. +570e2f882982493.png A white, rectangular cellphone charger with prongs and a coiled cable is resting on a black office chair seat, set against a backdrop of a wooden parquet floor and a desk. +f9b4f7cdc5a54a8.png A white cellphone charger with a smooth texture and attached cable lies flat on a tiled floor with a swirled pattern, surrounded by a laptop, furniture legs, and bare feet, viewed from above. +073f953a592e4a3.png A white cellphone charger with a coiled cable and gray plug is seen from above on a lime green, slightly wrinkled fabric surface. +a6dcf1c4be8342c.png The white cellphone charger with a smooth plastic texture is lying flat, plug-side visible, against a beige tiled floor background with faint grid lines. +cd04976f2af84ef.png A black, rectangular cellphone charger with a matte finish is held horizontally against a dark carpeted background, with a white cable plugged into one end. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/cellphone_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/cellphone_descriptions.txt new file mode 100644 index 0000000..b1d7ee3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/cellphone_descriptions.txt @@ -0,0 +1,14 @@ +fa8b62d8e2a8410.png This cellphone, viewed from a top-down angle on a wooden desk, features a black body with a silver front plate, a physical QWERTY keyboard, a small central screen, and an organized arrangement of buttons, set against a background that includes a keyboard and a partial view of a paper item. +95478c573226428.png The cellphone appears black with a reflective screen, seen from a slightly tilted overhead view on a light wood surface, with a visible charging cable attached and a partial patterned fabric nearby. +581274a8181441b.png The cellphone, viewed from an angle, is dark-colored with a smooth texture, standing upright on a tiled floor with visible grout lines. +9484a3b471ef4c8.png The cellphone is white with a sleek, glossy finish, viewed from the side, emphasizing its thin profile against a background of stickers and faint lighting, with distinct side buttons visible. +08a053d0d6e6450.png A hand holds a black and white handheld object with a rounded shape, viewed from an overhead perspective against a white bathroom counter with a visible shadow and partially blurred background items. +fcdcc5cdb21b49a.png The cellphone, viewed from above, is a bright blue device with a non-touchscreen display and physical keypad, set against a light wooden floor background. +470244c8d10f4f5.png The cellphone appears black with a glossy texture viewed from a three-quarter angle in a dimly lit room with wooden floor tiles and a bed in the background. +230173cce1f245b.png The cellphone has a black screen with a reflective surface and a beige or pinkish case, shown from a slightly tilted top-down angle in an indoor environment with a white wall and a hint of blue at the bottom. +be6536ea0f3d4fa.png The cellphone, held slightly tilted in a hand, features a gold metallic edge with side buttons, a black screen, and is set against a dark, marbled surface with some blurred objects in the background. +e7396d0eee6a4a8.png The cellphone is black with a flat, rectangular design featuring a small screen and button keypad, viewed from above on a brown, soft-textured surface against a light wooden table backdrop. +67050bf1467847e.png The cellphone is pink with a metallic texture, viewed from above on a dark mottled countertop with a small potted flower and a patterned gray mat nearby, displaying a distinctive front-facing camera and speaker grill. +c14f2a9905aa4d3.png A person is holding a thin, black cellphone with a glossy texture horizontally in their hand, set against a blurred background featuring a blue and white checkered bedspread and tiled floor. +1fb9caa368c64d8.png The cellphone appears in a side view with a metallic edge, partially covered by a hand against a fabric couch and blanket background, showcasing a slim profile with a dark front screen. +15a01a77701549e.png The cellphone is white with a smooth texture, being held at an angle showing its back in a dimly lit environment, with a tiled floor in the background and two visible camera lenses. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/cereal_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/cereal_descriptions.txt new file mode 100644 index 0000000..c25c617 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/cereal_descriptions.txt @@ -0,0 +1,14 @@ +f2db37b7cbe9451.png A brightly colored cereal box with an orange and yellow gradient, showcasing an animated figure and spoonful of cereal, rests on a woven, textured pillow against a plain wall and a dark surface. +2a4da6241267477.png A person is holding a tilted, yellow cereal box featuring colorful text and vibrant graphics, over a white bathroom sink with a floral soap dish and a pink decorative element in the background. +553e38fc4481484.png A bright yellow cereal box with the phrase "give YOUR bunch MORE choices!" is held sideways over a tiled floor with a contrasting dark border and geometric pattern in the background. +6655e49c7b6d48e.png The cereal box features a cartoon character on a brown background with images of chocolate and white cereal pieces, held at an angle against a beige wall with a glimpse of tiled flooring. +dbcb0e4b4c1342e.png A tilted, red cereal box with bold yellow lettering and colorful cartoon graphics sits on a wooden floor, partially open at the top, with a textured beige rug visible in the upper left corner. +070d00381a1b463.png A rectangular box of Grape-Nuts cereal laying horizontally on a bathroom counter, predominantly white with purple accents and an image of a cereal bowl on the front, surrounded by cleaning products and a toilet in the background. +ad814efbd2bd41a.png The cereal box features a predominantly brown and white color scheme with images of chocolate and granola clusters, positioned diagonally against a textured carpet background, with distinct branding and a yellow price sticker noticeable on the front. +2e0aec5bfef24ef.png A white bowl filled with pale beige, flat, and irregularly shaped flakes sits on a dark gray tiled surface. +5995c66454bf428.png The cereal box is rectangular, predominantly red with yellow and white text, featuring a visible blue section at the top, and is held by a hand against a background of a dark leather surface and a couch with red fabric draped over it. +a992b75a726946d.png The object is a cereal box viewed from the side, with a white and purple design, showcasing a bowl of golden brown, flake-like cereal, set on a wooden countertop with a toaster, a coffee maker, and other kitchen items in the background. +160386c01a92416.png The cereal box, viewed from above at an angle, is bright yellow with red and white text, featuring a heart-shaped bowl filled with tan O-shaped cereal pieces and scattered with red strawberries, all against a plain white background. +0f4089e2ec654d7.png A cereal box with a predominantly white and red design featuring blue accents is positioned upright on a black table in a room with gray walls and a wooden floor, partially obscuring the lower portion of the door behind it. +ca49078c8ad144e.png The image shows a rectangular, blue box of food storage bags resting diagonally on a patterned placemat atop a wooden surface. +d6fa876944284d0.png This cereal package features a light beige color with images of round, brown oat biscuits on the front, positioned vertically in a hand against a tiled floor background, with text and grain graphics enhancing the design. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/chair_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/chair_descriptions.txt new file mode 100644 index 0000000..dbb8e3c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/chair_descriptions.txt @@ -0,0 +1,14 @@ +cc33a36773d44cc.png A black, cushioned office chair with a visible backrest and wheels is positioned in a dimly lit room with a maroon wall and a closed door, resting on a light-colored, tiled floor with scattered cords. +93270aa00c4b400.png A black metal chair with vertical back slats is seen from a slightly elevated angle, featuring a round cushioned seat covered in a gray fabric with a floral pattern, placed on a wooden floor in a room with scattered objects and a person standing nearby. +b7b49cfe62354a2.png The chair features a light, cushioned seat with black metallic legs and a backrest consisting of horizontal slats, seen from a side angle in a kitchen environment with wooden cabinets and a refrigerator in the background. +f44d0705d17a4d0.png The chair, viewed from an angled overhead perspective, features a light wooden seat with white painted spindle back and legs, lying on its side atop a gray-striped rug and tiled floor in a home interior setting with visible living room elements in the background. +c4547202ef84406.png A light beige plastic chair with a slatted backrest and armrests is seen upside down on a patterned tile floor, with a striped cushion underneath and a desk with a computer in the background. +ad7034c03e2e4d4.png A teal plastic chair with a sunburst pattern on the backrest, viewed from above, sits on a wooden floor with other chairs visible in the background. +f242c08162514cb.png The image shows a modern, white chair with a sleek, smooth texture viewed from an oblique angle, placed on a wood-patterned floor, with chrome finish caps and a nearby light-colored wooden table in the environment. +80e4329d7cb8469.png A black plastic chair is lying on its side on a tiled bathroom floor, with a clear view of its underside, displaying a slightly shiny texture and surrounded by white and gray wall tiles with a toilet in the background. +1fe5250fbd8d4e0.png A small, pink plastic chair with a printed design on the backrest is positioned at a slight angle on a tiled floor, surrounded by bedroom furniture, including a wardrobe and a bed with a blue and white patterned blanket. +fbc95ff081d949b.png A light-colored plastic chair with a smooth texture is viewed from the side, set on a rusty brown floor, next to a metal shelving unit and within a room that has assorted items and a patterned mat on the floor. +0675e39c80904dd.png A dark wooden chair with a fabric-covered seat is viewed from the side in a dimly lit hallway with a concrete floor and bright light at the far end. +00e43dec5e274ba.png A wooden chair with a dark finish and vertical slats is positioned at an angle, topped with a cushion against a hardwood floor, near a light-colored shag carpet in a casual living space. +58065c4497d4484.png A bright green plastic chair with a smooth and glossy texture is seen from a side angle against a muted brown wall background, featuring a perforated backrest design and sturdy, angled legs. +aa340ba682444c8.png The chair is bright red with a smooth, glossy plastic texture, featuring a perforated backrest design, seen from a front-facing viewpoint and situated in an indoor setting with a checkered floor and a wooden cabinet in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/cheese_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/cheese_descriptions.txt new file mode 100644 index 0000000..e5e17c0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/cheese_descriptions.txt @@ -0,0 +1,14 @@ +f5c493b4d6a4449.png A rectangular block of orange cheese with a smooth texture is wrapped in clear packaging and positioned horizontally on a wooden table, accompanied by a glass container and a slightly blurred, dark interior background. +d13a331f3e3f4bd.png A rectangular block of pale yellow cheese with a smooth texture and slight surface marbling is laid flat on a wooden surface, encased in a transparent plastic tray with a faint bluish hue. +c7584094369741e.png A pale yellow, lumpy mass sits in a round metallic bowl, viewed from a three-quarter angle, against a dim blue-gray surface with simple wall background. +bbf53ad15b34485.png A block of pale yellow cheese with a smooth texture sits on a wooden cutting board, surrounded by a kitchen environment with a red kettle and beige tiles in the background. +4fc16cb829f54ff.png A light bread roll with a slightly crusty texture and speckled surface is placed atop a white toilet lid, partially wrapped in dark purple packaging with an open seam, amidst a bathroom setting with wood-patterned flooring and scattered towels. +9b811606581a433.png The image shows a low-resolution photo of packaged cheese with a distinct orange-yellow color and smooth texture, lying flat on a dark wooden surface alongside light gray flooring, with jars in the background. +1cf39d3c507e40c.png The image shows a package of sliced sharp white cheddar cheese with a predominantly white and red label lying flat on a wooden table, surrounded by a slightly blurry office-like setting with visible chairs and floor tiles. +d00923db5c734f9.png A small, smooth, rectangular block of bright yellow cheese is held angled in a hand against a backdrop of beige paper with black script writing and decorative typography. +e2d1a09f81f448e.png The image shows a rectangular, flat, orange object with smooth, shiny texture resembling packaging, placed atop a brown fabric surface, possibly a bed. +21dc91842e444c9.png A person holds a small, sealed, rectangular package with a green and white label featuring red ends, against a backdrop of a light blue wall and a wooden surface. +cfdf11bc48f9417.png A hand holds a small, rectangular block of pale yellow cheese with a slightly rough, crumbly texture, against a white sink background with a visible drain. +cde8444a29584b7.png A stack of square, bright yellow cheese slices, individually wrapped, sits on a gray table with a tiled floor and the partial view of a dog in the background. +a2ab60f6dd784e3.png The image shows a block of cheese in reflective packaging placed on a wooden table, with printed information visible on the label and the surrounding environment including a part of a chair and a dark floor. +4c223168be53465.png A foil-wrapped square package, predominantly blue and white with visible branding text, is placed on a reflective cream-colored surface near a window ledge with faint pencil marks in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/chess_piece_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/chess_piece_descriptions.txt new file mode 100644 index 0000000..9a56a9a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/chess_piece_descriptions.txt @@ -0,0 +1,14 @@ +5e62ac5f08154a5.png A mustard-colored chess piece with a smooth texture is positioned vertically on its head, held between fingers against a neutral indoor background, featuring carvings of a coiled snake around its base. +f19f781e7f5e4d1.png A beige, smooth-textured chess piece resembling a rook lies horizontally on a mottled stone surface, featuring a notch and circular indentation near its top edge. +9ead34e2ec214c7.png A beige chess piece with a twisted design, viewed in profile on a wooden board with a wicker chair beneath, showing a red base at the bottom. +6c94e64dd6144d1.png A light wooden chess piece, possibly a rook, is held sideways against a background of a wooden surface and fabric, displaying smooth, slightly reflective texture with visible stepped edges and curves. +3462bd5d0fcf40c.png The light-colored wooden chess piece, likely a queen, is viewed from above at a slight angle on a speckled granite surface, with distinct bulbous crown and base details visible despite the low resolution. +0bc28c3f4e424a3.png A wooden-colored chess piece with a smooth texture is held horizontally by a hand against a backdrop of beige carpet, displaying a distinct tiered design with identifiable curves and ridges. +eb6c9386bba04b7.png A dark reddish-brown chess piece with a glossy texture, shown at a slight angle held by fingers, against a backdrop of closed blinds and wooden furniture. +439d1544faf1432.png The dark green, marble-textured chess piece, viewed from a slightly angled handheld position, features rounded ridges and a flat top against a tiled floor backdrop. +91c93085d5a348d.png The chess piece, resembling a creamy off-white rook with a smooth, matte texture, is positioned upright on a wooden tabletop in a softly lit room, with visible rectangular grooves and ridges along its cylindrical body, set against a blurred background featuring dark furniture and a staircase. +92824e767e3f4ce.png The image shows a small, light-colored plastic bishop standing upright on a wooden surface, with a laptop nearby and blurred details due to low resolution. +a3dd851aa5574ab.png The object held in hand is a metallic chess piece resembling a human figure, viewed from the side with prominent vertical grooves, set against a kitchen countertop background. +4231750f557640d.png The image shows a light-colored, wooden chess pawn lying on its side against a dark wooden surface, with a smooth texture and a narrow neck leading to a wider base, slightly blurred due to low resolution. +7b1509cef73e4dc.png A small black rook with a smooth texture stands on a white countertop beside three white pieces, with a tiled wall in the blurry background. +c251e63fe3eb495.png The chess piece is a lightly textured, natural wood rook held upright between fingers, viewed from the side against a wooden surface background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/chocolate_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/chocolate_descriptions.txt new file mode 100644 index 0000000..1d6d734 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/chocolate_descriptions.txt @@ -0,0 +1,14 @@ +8c60e490b3b841a.png The image shows a transparent plastic bag containing dark-colored chocolates, placed on a striped red-brown cushion, with a white label visible on the bag and a dimly lit surrounding environment. +4824f733fbed4af.png A small, smoothly-textured chocolate lies on a dark surface, viewed from above, showing a rounded, oval shape with subtle ridges, set against a slightly textured background. +4fe2ac4d8b614cb.png The chocolate is wrapped in shiny black and gold foil with distinctive script, being held in a hand over a tiled floor in what appears to be a laundry room with a white washing machine. +f1220e43773448a.png A small, rectangular, red-wrapped chocolate bar is held in a hand, featuring a distinct oval logo in the center, set against a plain white background. +94bfe2bb1e974d5.png A hand holds a small, dark brown rectangular piece of chocolate with a slightly glossy texture, viewed slightly from above against a domestic setting with a carpeted floor and wooden furniture in the background. +7846013f8c1640d.png The image shows a person holding a bright green, rectangular chocolate wrapper with visible creases, against a dark background that emphasizes the distinct color and partially visible text on the packaging. +997cd3d151334d2.png The chocolate is wrapped in a bright blue and red packaging with distinct text, held in a hand against a muted, textured background, likely fabric or upholstery. +d3a1c3a9e27243d.png A small, yellow and blue-wrapped chocolate lies on a brown, textured surface, viewed from above, showing indistinct white text and color patterning on its wrapper. +bbdcd1205a434de.png A small, rectangular, foil-wrapped chocolate bar with a silver and red label sits on a speckled granite countertop, with a partially visible purple cloth in the lower left corner of the image. +98e6d04d513e489.png A partially unwrapped chocolate bar with dark brown, glossy squares is lying flat on a textured beige couch, surrounded by a patterned cushion and a dark carpet, with its silver wrapper crinkled around the edges. +697b07ab1cb8494.png The image shows a container of chocolates wrapped in shiny gold and red foils with some green accents, viewed from above, resting on a patterned fabric that appears to be a bedspread, with a distinctive gray and white comforter partially visible. +dd1061ab01a640c.png A round, smooth, dark brown chocolate is held in a hand, sitting within a crinkled paper cup against a backdrop of a gray laptop surface and scattered paper. +24546deb9b7248b.png A black rectangular packaged chocolate bar with white and red text and graphics is positioned on a shiny white bathroom countertop, illuminated by overhead lighting that reflects off the smooth surface. +9510cf8d7a5f44b.png The object appears as a vertically-oriented box with a predominantly purple and white design, set against a wooden floor with a blurred background featuring a white sofa and a wooden table, featuring printed images and minimal visible text. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/chopstick_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/chopstick_descriptions.txt new file mode 100644 index 0000000..b1f8a12 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/chopstick_descriptions.txt @@ -0,0 +1,14 @@ +54be266e9ded417.png A pair of smooth, light-colored wooden chopsticks lie parallel on a wooden surface with a visible grain pattern, viewed from above with a slight diagonal orientation. +297f57ceee74474.png The chopstick is metallic with a slightly reflective surface, viewed from a top-down angle, set against a light wooden table with visible grain patterns. +0dcb95c19a7f486.png A single silver chopstick with a smooth, metallic texture is lying diagonally on a patterned, white fabric background under low light conditions. +d8c3dee7469e415.png The chopstick is light brown with a smooth texture, viewed from a top-down angle while resting horizontally across an open hand over a wooden floor, featuring a distinct white tip with black markings. +3e861b4ff8634fd.png A chopstick with a smooth yellow upper section and a white lower section adorned with floral patterns is held horizontally over a tiled floor, against a bright green wall. +8f1fedd9cc2149d.png The chopstick is a light brown wood with a smooth texture, featuring a decorative painted detail near the end, positioned diagonally on a fabric background with a gray and white floral pattern. +1c1c7568db1e49e.png A light tan, slender stick with a smooth texture is leaning diagonally against the corner of a white textured wall and floor junction, casting a shadow on the gray floor. +eee0bd48723548e.png The chopstick is a slender, dark brown object with a smooth texture, held vertically between two fingers against a background of rich, reddish-brown wooden flooring, with a white radiator and black shoe visible in the softly focused environment. +cde1c29b4318407.png The object appears to be a dark-colored metal or plastic makeup tool with a pointed tip and a pink grip in the middle, held vertically against a blurry kitchen background with a countertop and cabinet in view. +1f6906a61d8f4cc.png A light brown wooden chopstick with a blue band is resting diagonally across a bright orange, leaf-shaped plate on a patterned tablecloth. +9c6e5aecfc2a4fc.png A bright pink chopstick with a smooth texture is held at an angle, set against a patterned quilted bedspread with a headboard and pillows in the background. +f905e9f555674ad.png The chopsticks, appearing wooden with a light beige hue and smooth texture, are aligned parallel against a reflective dark, speckled countertop, with the image captured at a slightly angled overhead view showing a shadow against the surface. +973c01780ba4478.png A beige, smooth-textured chopstick is held horizontally in a hand over a tiled bathroom with a white bathtub and visible soap holder in the background. +f4f8aacee76847e.png A pair of light-colored, wooden chopsticks is lying parallel on a textured gray carpet, featuring a visible pattern with red and green designs near the top against a neutral-toned background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/classnames.txt b/utils/area/descriptions/objectnet/generated_descriptions/classnames.txt new file mode 100644 index 0000000..45fd949 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/classnames.txt @@ -0,0 +1,200 @@ +air freshener +alarm clock +backpack +baking sheet +banana +band aid +baseball bat +baseball glove +basket +bathrobe +battery +bed sheet +beer bottle +beer can +belt +bench +bicycle +bike pump +bills money +binder closed +biscuits +blanket +blender +blouse +board game +book closed +bookend +boots +bottle cap +bottle opener +bottle stopper +box +bracelet +bread knife +bread loaf +briefcase +brooch +broom +bucket +butchers knife +butter +button +calendar +can opener +candle +canned food +cd case +cellphone +cellphone case +cellphone charger +cereal +chair +cheese +chess piece +chocolate +chopstick +clothes hamper +clothes hanger +coaster +coffee beans +coffee french press +coffee grinder +coffee machine +coffee table +coin money +comb +combination lock +computer mouse +contact lens case +cooking oil bottle +cork +cutting board +deodorant +desk lamp +detergent +dish soap +document folder closed +dog bed +doormat +drawer open +dress +dress pants +dress shirt +dress shoe men +dress shoe women +drill +drinking cup +drinking straw +drying rack for clothes +drying rack for dishes +dust pan +dvd player +earbuds +earring +egg +egg carton +envelope +eraser white board +extension cable +eyeglasses +fan +figurine or statue +first aid kit +flashlight +floss container +flour container +fork +frying pan +full sized towel +glue container +hair brush +hair dryer +hairclip +hairtie +hammer +hand mirror +hand towel or rag +handbag +hat +headphones over ear +helmet +honey container +ice +ice cube tray +iron for clothes +ironing board +jam +jar +jeans +kettle +key chain +keyboard +ladle +lampshade +laptop charger +laptop open +leaf +leggings +lemon +letter opener +lettuce +light bulb +lighter +lipstick +loofah +magazine +makeup +makeup brush +marker +match +measuring cup +microwave +milk +mixing salad bowl +monitor +mouse pad +mouthwash +mug +multitool +nail clippers +nail fastener +nail file +nail polish +napkin +necklace +newspaper +night light +nightstand +notebook +notepad +nut for screw +orange +oven mitts +padlock +paint can +paintbrush +paper +paper bag +paper plates +paper towel +paperclip +peeler +pen +pencil +pepper shaker +pet food container +phone landline +photograph printed +pill bottle +pill organizer +pillow +pitcher +placemat +plastic bag +plastic cup +plastic wrap +plate +playing cards +pliers +plunger \ No newline at end of file diff --git a/utils/area/descriptions/objectnet/generated_descriptions/clothes_hamper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/clothes_hamper_descriptions.txt new file mode 100644 index 0000000..94c56dd --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/clothes_hamper_descriptions.txt @@ -0,0 +1,14 @@ +6a1e8d9675704af.png The white clothes hamper, held at an upward angle by a child's hands, features a grid-like pattern and is set against a gray wall with a teal dresser partially visible. +4c7de2679615439.png The clothes hamper is a cylindrical blue container with a dotted perforated design, viewed from a slightly elevated angle in a room with a marble floor, patterned mat, and a back wall featuring varied colored clothing and scribbled drawings. +7ea97b10209344c.png A white, cylindrical mesh clothes hamper is viewed from the top-down angle, set against a wooden floor, with a tag attached and one hand holding its rim, showing its collapsible wireframe structure. +40533fbc72db46e.png A blue cylindrical clothes hamper with vertical grooves and a matching lid sits at an angle on a corner balcony, partially obscured by a finger at the top of the low-resolution image. +08e0eb76f4c74d9.png A white, slightly tilted clothes hamper with a lattice design is positioned on its side on a polished wooden floor, with wooden kitchen cabinets and a white stove in the background. +900f6c415ff8472.png A medium-sized blue clothes hamper with an open, grid-like design and a label on the side is tilted against a brown leather couch on a tiled floor with a plain white wall in the background. +a88c2306dfab4ae.png A black, rectangular clothes hamper with circular holes, viewed from above, placed on a tiled floor with scattered debris and cables, featuring a slightly shiny surface on its lid and a side handle. +76a8747e1dbd452.png The white clothes hamper has a slatted texture with a circular opening, viewed from the side at a low angle, positioned in a kitchen-like environment with tile flooring and white cabinetry. +1ef597776d274d8.png A blue cylindrical mesh clothes hamper lies on its side against a wall in a dimly lit laundry room, partially filled with visible white laundry, with a white plastic basket and a bag in the background. +9712bccdfbc8479.png A green lattice-patterned clothes hamper is positioned upside down on a tiled floor, with part of it resting against a white structure, creating an angular pose against a somewhat dim and shadowed background. +5cf271b6c289464.png A white, cylindrical clothes hamper with a grid of large round holes is positioned upright against a light-colored wall on a tiled floor, with a colorful children's toy partially visible in the background. +989f7bd4a594475.png A white fabric clothes hamper with black polka dots is lying on its side on a tiled floor in a bathroom, with a visible pedestal sink and a wooden door in the background. +3734c0db11334f4.png The clothes hamper is a rectangular, teal-colored wicker basket with a geometric pattern surface, viewed from a top angle on a tiled floor in a kitchen setting with visible cabinets and furniture. +2c76d28da1d848f.png A red plastic clothes hamper with circular cutout patterns is positioned upright on a tiled floor, surrounded by wooden furniture and a curtain in a dimly lit room. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/clothes_hanger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/clothes_hanger_descriptions.txt new file mode 100644 index 0000000..d2f635a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/clothes_hanger_descriptions.txt @@ -0,0 +1,14 @@ +b7ae61c164d14e9.png A wooden clothes hanger with a natural finish and metal hook is lying flat on a textured beige carpet, with its form slightly tilted to the right and peg-like details visible on the ends. +9a42c93e1a21499.png A beige wooden clothes hanger lies flat on a smooth, light-colored tiled floor with subtle gray streaks, surrounded by blurred movement and partial view of colorful fabric at the edges. +7e7413846c4d4ef.png A light-colored wooden clothes hanger with a smooth texture is lying flat on a speckled granite countertop surrounded by various jars and kitchen items. +087bbe5ce1e142e.png A translucent white plastic clothes hanger with a curved hook is placed on a maroon fabric surface against a background of patterned white and gray bedding, prominently showing notches on its arms. +d7169608eb78446.png A black, plastic clothes hanger with a smooth texture is hanging on a wooden wardrobe’s handle, viewed from the front against a dark wood-paneled background. +1d4343e6302140e.png A purple plastic clothes hanger with a hook is hanging against a zebra-patterned fabric backdrop, viewed from the front. +9fc246b02349408.png A white plastic clothes hanger with a smooth texture is held vertically against a bathroom floor with black and white tiles, partially covered by a white towel and accompanied by a glimpse of pink footwear. +ee79ccd0a96e408.png The clothes hanger is a vibrant blue with a smooth plastic texture, viewed from a top angle on a neutral beige surface, featuring a slender body with a central notch and a wide hook. +4696035b9125400.png A white plastic clothes hanger with a smooth texture is lying flat on a brown carpet in a softly lit environment, featuring a standard triangular shape and notched ends. +9ea9a3bf0874475.png The clothes hanger is dark with a sleek, thin structure, held horizontally in a hand against an indoor background featuring a patterned curtain and a wooden table with miscellaneous items. +5a27b135d9ed467.png A black metal triangular clothes hanger hangs off a white door handle, positioned at an angle with curved edges and a loop at the top, set against a soft textured carpeted floor and adjacent to a wooden table. +d8389bb8b34b4ce.png A white, wire clothes hanger with a smooth texture is being held in a hand from a tilted angle against a dimly lit room backdrop featuring a patterned rug and visible pipes. +8537bcc88e5743f.png A wooden clothes hanger with a smooth texture is positioned flat on a tiled floor featuring a light-blue and white speckled pattern, amidst a background of patterned circular rugs. +9baea973df73478.png A green wire clothes hanger with a smooth texture is positioned flat on a striped and patterned fabric background displaying geometric shapes, viewed from above. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/coaster_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/coaster_descriptions.txt new file mode 100644 index 0000000..733e05d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/coaster_descriptions.txt @@ -0,0 +1,14 @@ +3aea2b34ec20404.png The coaster is a dark brown, smooth-textured item, viewed from the side, positioned on a light-colored counter with a blue wall and mirror in the background, and is being held by a person's hand. +5bab69ba2c134a8.png The coaster is circular with a white background, featuring a painted design of an orange fruit and green leaves, viewed from above, placed against a colorful patchwork quilt with various patterns and motifs. +6c9feecdff8e4be.png A hand holds a brown cork coaster with a green, house-shaped border labeled "Coca-Cola," set against a carpeted floor and office furniture in a dimly lit room. +784eee398f48450.png A hand holds a small, vertically-oriented fabric pouch with a pattern of playful blue cartoon ghosts against a white background, set in a kitchen environment with wooden cabinets, a countertop, and a stainless steel stove. +f8e2e6b6eb5b4ef.png A hand is holding a square coaster with rounded edges featuring a multicolored test pattern on a background that appears to be a light wood grain with abstract dark patches, set against a wooden table with a blurred room environment. +69fd4c3043ff4fe.png A hand is holding a beige, square cork coaster with a sticker on the back, against a similar cork-textured floor and a white cabinet background, viewed from a slightly angled perspective. +918d9da7f3ca488.png A hand holds a round, brown, and speckled textured coaster against a striped carpet background, with a foot partially visible at the bottom right corner of the image. +d0c50f1fc99e4f4.png A hand holds a green, slightly translucent plastic coaster sideways against a kitchen countertop with cleaning supplies and a textured cloth visible in the cluttered background. +d368ac03c317407.png A brown, leaf-shaped coaster with detailed cutout veins rests on a marbled, white and gray countertop, viewed from above. +62d4b2410320410.png A rectangular, light brown coaster with rounded corners and small pads is resting at an angle on a wooden table, reflecting glass nearby, with a leather couch and a pillow in the background. +0d45e7c245214b2.png The coaster is primarily white with a colorful cartoon illustration, featuring a smooth texture, held upright by a hand over a red fabric surface, with a background of loosely arranged orange and blue textiles. +96dbc1b0158940d.png The coaster appears as a metallic, circular object with a series of evenly spaced black slats across its surface, held at a slight angle by a hand over a dark, reflective table with a remote control in the background. +2dbb8a9ec55f409.png The coaster has a circular cork surface surrounded by a dark, possibly navy or black edge, viewed from an angled top-down perspective, resting on a dark green countertop with packaging and items visible in the blurred background. +40408c65677942f.png The coaster is square-shaped with rounded edges, displaying a white-to-green gradient background featuring a bus image and text, placed on a beige textured fabric surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/coffee_beans_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/coffee_beans_descriptions.txt new file mode 100644 index 0000000..dcee921 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/coffee_beans_descriptions.txt @@ -0,0 +1,14 @@ +33ddda81610a465.png The coffee beans are dark brown with a glossy, smooth texture, seen from an overhead view resting on a person's palm against a backdrop of a playroom with colorful toys and a carpet. +a6c642604d6f4c0.png The image shows a hand holding a rectangular object with purple and blue hues on the packaging, viewed from an angle that reveals a kitchen setting with a wooden chair, round table, and appliance in the dimly lit background. +a7177c43a4974fb.png A bag with dark, glossy packaging sits horizontally on a wooden table in a dimly lit room, with visible barcodes and a blurred background featuring furniture and a window. +b287953a56754f9.png A hand is holding an unopened bag of coffee with an orange and brown design, featuring a shiny finish, against a background showing a living room with a wooden floor, a couch, and a side table. +b2d52829c7144c2.png The coffee beans are dark brown with a glossy texture, scattered in a top-down view on a reflective, metallic surface that highlights their curved, oval shapes. +2736fa014ffd489.png Dark brown coffee beans with a glossy texture are scattered in a small cluster on a light wooden surface, viewed from an oblique angle, with a white textured wall and shadowy outlines in the background. +ba8b3ee192364aa.png A bag of coffee beans is viewed from an overhead angle, displaying a maroon color with a striped barcode, set against a wooden table with scattered pink stains and a partial paper bag featuring autumn leaf designs. +b80983614f0549a.png The low-resolution photo shows a container with dark, glossy coffee beans scattered across the surface, viewed from a side angle, with a rough-textured white cloth in the foreground against a dark, reflective background. +55381b74f8f94ee.png The image displays a large, slightly transparent container with dark powdered contents lying on a leather couch, set against a dimly lit domestic background with wooden flooring and miscellaneous furniture. +dd80ee17092749e.png The image shows a low-resolution view of an empty brown container with a lid on a plain carpeted floor, with a shadow cast by a person’s foot interacting with it. +9bf01ff620564cd.png A black packet of coffee beans with a colorful label lies flat on a tiled floor with a washing machine and wicker basket partially visible in the background. +4b5505040462439.png The coffee beans appear dark brown with a semi-glossy texture, scattered in a loosely cupped hand, against a speckled brown countertop background near a white sink basin. +ac718f124146446.png The image shows a mound of dry, coarse, reddish-brown granules on a smooth, pale surface, with a slightly elevated viewpoint revealing their jagged texture and scattered small debris around, set against an uncluttered background. +31b12b01a85c491.png A hand holds a dark, matte coffee bean bag upright against a living room backdrop with a green carpet, furniture, and a large exercise ball, creating a contrast with the softly lit interior. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/coffee_french_press_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/coffee_french_press_descriptions.txt new file mode 100644 index 0000000..8d520b3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/coffee_french_press_descriptions.txt @@ -0,0 +1,14 @@ +9c9c5a5a76064f7.png A reflective, metallic dispenser with vertical slats is held sideways against a plain, tiled wall background. +7d4a628b557b425.png A copper-colored coffee French press with a black handle and lid is positioned on a beige toilet tank cover, against a tiled wall background with a paper bag and toilet paper nearby. +388f810f51ca4c2.png The coffee French press is metallic and transparent with a black handle, viewed slightly from above, resting on a detailed patterned rug background. +ed100a214eb94e4.png The coffee French press features a transparent glass body with a metallic top and base, a black handle, and is viewed from the side against a patterned fabric backdrop, held in someone's hand. +6ca8fd42c16143e.png A metallic coffee French press with a black handle and lid is viewed from a top angle, set against a beige carpeted background. +cca506faa8fc4e1.png The coffee French press has a glass and stainless steel body with a matte black lid, held at an angle on a patterned carpet background in a dimly lit environment. +b7a93877852349b.png A transparent French press with a black base and lid is being held at an angle over a bathroom sink, showing some residue inside and blending into a cluttered environment with toiletries and scattered hair strands. +c19961bacd384b7.png A metallic coffee French press with a glass body and dark handle is viewed from the side, set on a wooden table against a backdrop of a couch and partially opened wooden blinds. +b8ac3af19bcc448.png A clear glass French press with a black plastic lid and handle stands on a speckled countertop, surrounded by kitchenware and a red espresso machine in the background. +82c5a4e49b2b485.png A metallic silver Moka pot with a black handle is placed on the closed lid of a white toilet seat in a tiled bathroom corner, viewed from above. +4182ca878a58447.png A stainless steel and glass French press with a cylindrical shape and a black knob on top is positioned on a rustic wooden crate against a plain white wall, viewed from a side angle. +a2400dadf6204b1.png The coffee French press is clear with a cylindrical glass body and vibrant red accents on the lid and plunger, positioned horizontally in a hand over a tiled bathroom countertop beside a rounded white sink. +c14df0fdfcec4e2.png A clear glass and shiny silver metal French press with a black knob on top, seen from a side angle, rests on a deep brown wooden surface against a backdrop of untidy shelves filled with papers and various items. +dfaa3965f76643a.png The coffee French press has a beige lid and handle with a transparent glass body, standing upright centrally on a white kitchen stove with four black burners, surrounded by various small kitchen items on the countertop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/coffee_grinder_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/coffee_grinder_descriptions.txt new file mode 100644 index 0000000..8930094 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/coffee_grinder_descriptions.txt @@ -0,0 +1,14 @@ +814f56a7bfb545e.png A black cylindrical object with a power cord is lying horizontally on a patterned fabric surface, partially covered by a floral cushion. +0540d85145324a0.png The coffee grinder is black with a slightly transparent top, lying on its side on a lime green towel placed over a textured light carpet, and features a visible power cord extending from the base. +4ef50cb996d343d.png The coffee grinder is metallic silver with a black, slightly domed top and base, displaying a worn texture; it is viewed head-on against a neutral, tiled bathroom sink background, featuring a black dial and a translucent lower compartment. +279d6e2a12c445a.png The coffee grinder appears to be black and silver with a transparent section near the base for viewing contents, viewed from a close side angle in a kitchen setting, held above a black stovetop, and featuring a simple cylindrical shape with a cord wrapped around it. +19732e995ddc46f.png The black coffee grinder with a boxy, minimalist design is placed sideways on a white toilet lid within a bathroom featuring beige tiled walls. +e4fb6010a99b49f.png The coffee grinder is silver with black accents and a transparent lid, held diagonally in a hand over a wooden table with a visible dial and power button. +a739721d8bde443.png The coffee grinder has a sleek, reflective metallic cylinder body with a transparent lid and black accents, viewed from a slightly angled side perspective on a dark surface, set against a plain beige background. +3bee504375844b3.png A small black cylindrical coffee grinder with a transparent lid, viewed from a slightly elevated side angle, is placed on a light-colored kitchen countertop alongside an electric plug and beneath an outlet, with a colorful box and other kitchen items in the background. +9e4b55fd9a1e47a.png A white, cylindrical coffee grinder with a transparent lid is held in a hand, viewed from the side, in a cluttered bathroom environment with pink tiles and various toiletries. +50d6b1cab3264ce.png The coffee grinder is hexagonal with a wooden texture and reddish-brown color, viewed from a slightly elevated angle on a white tiled floor, featuring an exposed metal base and a red spherical crank handle. +db18908da7c7490.png A black and silver electric coffee grinder with a transparent container and visible cord is placed on a white bathroom countertop, set against a light blue tiled wall and a mirror reflecting a person. +7b50458810bf42e.png A dark-colored cylindrical object with a glossy texture is viewed from above, placed on a textured, dark carpeted surface. +f26575b02690470.png A black, cylindrical coffee grinder with a transparent window lies horizontally on a brown wooden table next to a bright yellow lamp, against a printed cushion and patterned armchair backdrop. +6c357fae38854c0.png The coffee grinder is a cylindrical metallic object with a shiny silver texture, viewed from a top-front angle, placed against an intricately patterned, colorful floral and geometric carpet background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/coffee_machine_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/coffee_machine_descriptions.txt new file mode 100644 index 0000000..18ca0d0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/coffee_machine_descriptions.txt @@ -0,0 +1,14 @@ +675fbbdf59754f7.png A white, angular coffee machine with a transparent glass carafe and silver control buttons is being tilted by a hand in a kitchen setting with granite countertops and white cabinetry. +229ae8ec101f4e3.png A bright red coffee machine with a shiny metallic accent around the spout is positioned at an angle on a kitchen countertop, surrounded by wooden cabinets and various kitchen items, including a green glass and a nearby silver appliance. +11aa198c301e475.png The black coffee machine has a glossy finish and is held at an angle above a bathroom sink, with a visible hand on the left and a beige wall and countertop in the background. +7a03eceb61fa46c.png The image shows a black pan with a handle, sitting on a tiled kitchen floor near an oven, visible from a top-down perspective. +ecc0ea4b9f7a425.png The coffee machine is predominantly black with a glossy finish, viewed from a slightly above front angle, set against a kitchen backdrop featuring a white wall and stove with red-hot burner coils, a digital clock displaying 9:53, and adjacent household items. +b8858642258041f.png A white, plastic coffee maker with a transparent glass carafe, positioned on its side on a beige tabletop, featuring a black lid and base, with a background showing a framed photograph. +dd7d94fc73c7411.png The coffee machine is silver with a brushed metal texture, viewed from a slightly angled side perspective, situated in a kitchen environment with a white tiled backsplash, and features a prominent dial and steam wand attachment. +df0766ba24e74d8.png The coffee machine is a sleek, black, and silver appliance with a glossy finish, positioned on a white marbled countertop, framed by wooden cabinets, featuring a small digital display and button panel on its front, and attached to a silver spout, viewed from a slightly angled, side perspective. +50f6d092dc354c3.png A red coffee machine with a compact design is viewed from an angled side perspective on a red countertop, surrounded by kitchen items like dish soap, a sink, and a toaster, with a metallic carafe visible. +a97245d5ffbc40e.png The coffee machine has a black matte finish with a rounded top viewed from an angled side perspective, resting on a beige countertop beside wooden cabinets with several bottles and a small jar in the cluttered kitchen background. +85695a360555477.png The object appears as a black, rectangular box-shaped appliance positioned sideways on a white bathroom sink, with visible cables, a soap dispenser nearby, and a textured gray wall background. +36551242a61c439.png The coffee machine is predominantly red with yellow accents and features a large printed image of a steaming cup of coffee, positioned against a blue wall with a transparent water container on top and multiple beverage bottles nearby. +5725ecb8b69b444.png A black, glossy coffee machine with a silver handle is positioned on its side on a cluttered bathroom sink, surrounded by toiletries and reflected under warm lighting. +b9ad13f07ddc4fa.png The coffee machine appears to be sleek with a shiny silver front and black sides, viewed from a slightly elevated angle on a red countertop with a hand interacting with it, amidst a kitchen setting featuring colorful containers and a plate of fruit in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/coffee_table_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/coffee_table_descriptions.txt new file mode 100644 index 0000000..389fca1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/coffee_table_descriptions.txt @@ -0,0 +1,14 @@ +9e90638e30ff48b.png The coffee table features a wooden surface with a natural brown texture, seen from an angled side view, set against a background of a brick wall and adjacent to brightly colored children's chairs. +366d58af2c6f4b2.png The coffee table features a dark, marbled surface with rounded black legs, viewed from a slightly elevated angle, set against a floral-patterned carpet and holding various objects like magazines and a remote control. +3138d49a367e496.png The coffee table is small, square, and dark-colored, positioned in a room with red walls and a blue-striped drape, with clutter including a green notebook and various objects scattered on the wooden floor. +62ca1fd0fcc4452.png The coffee table appears dark brown with a matte texture, viewed from an overhead angle, set against a living room background with cluttered items such as scissors, a remote, and snacks on top. +0020d136825f43f.png The coffee table is a wooden piece with a warm brown hue and slatted top, viewed from a high angle, set against a wooden floor alongside shoes and part of a patterned rug. +252d491890024d8.png The coffee table features a round, brown wooden finish with a decorative black metal scroll design under a glass top, viewed at a slight angle in a wooden-floored room with a cabinet and vacuum in the background, and the table rests on intricately shaped black legs. +c4669f4545af44a.png The low-resolution image shows a round, dark-colored coffee table with a smooth matte texture, viewed from above at an angle, set against a wood floor with a partially visible patterned rug and adjacent black furniture. +aed1521210ad484.png The coffee table is viewed from above, showcasing a natural light wood finish with visible grain patterns and knots, set against a cozy interior with a grey fabric element and a plaid pet bed nearby. +e6332b78d83e434.png The wooden coffee table with a rich brown hue and a glossy finish is overturned in a narrow bathroom, with a tile floor and a partially visible sink and step stool in the background. +ff77eb2ebf7d490.png The image shows a dark brown, rectangular coffee table viewed from above, with a grid-like textured surface and tubular metal legs, set against a reddish-brown floor with a person partially visible, holding the table. +b0a59d4046df4c2.png The coffee table is small with a black base and a light brown woven texture surface, situated between two beds with floral-patterned bedding, visible from a side angle in a tiled room. +e8d362617ddd443.png The coffee table has a smooth, white rectangular surface supported by a minimalist metal frame, viewed from an angle that reveals a window with blinds partially illuminated by natural light in a sparsely decorated room with a wood laminate floor. +23d7189c2f824bd.png A metallic, square-framed structure with a black base rests on a wooden floor in a kitchen setting, viewed from an elevated angle, with a vacuum cleaner and stainless steel refrigerator partially visible in the background. +1bbc2302c1e7455.png The object is a collapsible black metal tray table positioned upside down against a bed with a colorful patterned cover, set in a room with white tile flooring, wooden furniture and a visible desk in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/coin_money_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/coin_money_descriptions.txt new file mode 100644 index 0000000..a2d3941 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/coin_money_descriptions.txt @@ -0,0 +1,14 @@ +441fd4246d90445.png The coin, appearing golden and slightly worn, is held flat on an open palm against a softly focused wooden floor background with subtle geometric engravings visible on its surface. +ecf68c39f1b4482.png In a kitchen setting with tiled flooring, an open hand holds a collection of mixed coins, showcasing predominantly silver-colored coins with visible copper-colored edges and varying engravings. +069bb2b2c3fc4a8.png A metallic coin with a light gold color featuring embossed symbols or numbers is held in the palm of a hand against a dark, glossy background, with distinct reflections visible on the surface. +610b476cd1af4e7.png A silver coin with a smooth texture and circular shape is standing upright on a white surface against a dark, glossy background, with a colorful patterned strip above and positioned on a large book labeled "Cambridge Advanced." +8087bbf4ce7d4b7.png A copper-colored coin with a smooth texture is held between fingertips, viewed from the edge, against a tiled bathroom background with toiletry items. +1f0378bea8d74e2.png The coin, displaying a silver hue with a slightly worn texture, is viewed from above against a background of a quilted, light-colored fabric with evenly spaced parallel stitch lines. +c176d0796e6d4b7.png Four round, metallic coins with a matte, silver appearance are scattered on a patterned fabric with geometric shapes and abstract designs in black, red, and beige hues. +575f328dc7c9462.png The image displays a shiny, silver coin with a hand holding it by the edges against a plain, light brown tiled surface, featuring a distinct "1" and emblem on its face. +d544bbbeedc7449.png A silver-colored, slightly tarnished coin is held at an angle between two fingers against a beige tiled floor and part of a colorful, folded newspaper in the background. +7a19f05eb3ef46f.png The coin, appearing silver and slightly reflective, lies flat on a matte beige surface, displaying a detailed embossed design with indistinct figures and text under a dim indoor light. +9b6479d88e27403.png A silver coin with a slightly worn texture is viewed from above, resting on a red textured fabric background, featuring a prominent figure in the center and surrounded by clear embossed text. +6153b47b0008435.png The coin appears silver-toned with a slightly reflective texture, viewed at an angle on a dark wooden surface background, and features visible yet indistinct inscriptions or patterns on its face. +69a0bd6ab9514f1.png The image shows a small, circular, golden coin with a slightly shiny texture, held upright between fingers, positioned in a bathroom setting with tiled floors and a blurred shower door in the background. +39e728f70c3d4a7.png A copper-colored coin with a smooth texture is held in a hand, viewed from an oblique angle with exercise equipment and a fabric surface visible in the blurred background, revealing some indistinct markings despite the low resolution. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/comb_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/comb_descriptions.txt new file mode 100644 index 0000000..81080ec --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/comb_descriptions.txt @@ -0,0 +1,14 @@ +a9f31d13c4ff48e.png The comb is a small, bright pink, plastic grooming tool with wide, evenly spaced teeth, held vertically by a hand with a silver ring, against a neutral bathroom background featuring a toilet, towel, and tiled walls. +e861e0d9801b403.png The comb is made of light brown wood with a smooth texture, viewed from a side angle while being held in a hand over a dark, glossy surface, featuring widely spaced, thick teeth that curve slightly. +875e46f4b12e465.png A hand holds a glossy black, wide-toothed comb with a smoothly curved handle against a plain wooden table background, viewed from above. +ec9e06ed0691415.png A black comb with fine teeth is lying flat on a dark wooden surface, with the background showing a white textured wall and part of a dark lamp base. +ee0b23a7f2b1437.png A dark-colored comb with narrow, closely spaced teeth lies flat on patterned fabric resembling abstract branches in shades of gray and white. +d6ddbc90327b429.png A vivid blue comb with evenly spaced teeth rests atop a white sink, surrounded by a smooth, glossy surface with a metal drain visible nearby. +eeb09e7f37b74f1.png A yellow, translucent plastic comb lies flat on a dark surface, surrounded by patterned tiles and colorful rugs, with distinct fine teeth visible despite the low resolution. +b5554a4394d440e.png A yellow comb with closely spaced fine teeth is viewed from above, resting on a dark wooden surface next to a partly visible blue electronic device, with its flat, smooth texture and bright color contrasting against the muted background. +082f80703dad43b.png The comb is a solid blue plastic with fine, evenly spaced teeth, held horizontally by a hand against a reflective silver tray on a textured white crochet tablecloth background. +57383d067b5f42c.png The image shows an orange, wide-tooth detangling comb with a dual-sided design, held upright against a white table surface with a patterned notebook in the background. +bcb19cb5924c459.png The comb is a bright yellow afro pick with evenly spaced wide teeth, seen from above, resting on a textured gray carpet. +1cbe271e4b214fa.png A pink, glossy comb is viewed from an overhead angle on a wooden surface, with fine, closely spaced teeth and a tapered handle. +93bd216300454c4.png The comb is light blue with a translucent texture, held horizontally in a hand over a bathroom setting with a green wall and multiple shelves in the background, featuring closely spaced fine teeth and a slightly extended handle grip. +bf950823e16b48a.png The comb is bright yellow with a matte texture, held in a hand against a neutral indoor background with visible furniture, and features wide teeth and a handle with a hole near the bottom. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/combination_lock_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/combination_lock_descriptions.txt new file mode 100644 index 0000000..ad69fa3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/combination_lock_descriptions.txt @@ -0,0 +1,14 @@ +06fd0a63f414474.png The combination lock has a black rectangular body with a smooth texture, viewed from above at a slight angle, featuring three metallic dials displaying numbers, set against a light-colored marble-like background. +e60c9d2734e94b8.png A hand holds a combination padlock with a white frame and bright pink dials featuring white numbers, against a textured blue fabric background. +f4196a979923457.png The combination lock is metallic silver with a black central dial, viewed from above on a light, slightly textured background, with visible engraved numbers and a faint reflection on its surface. +0178feaaa6b9451.png The black combination lock with a smooth texture and visible dials is held upright in a hand against a blurred background of a disheveled bed with white and floral-patterned bedding. +264ae653bf7a447.png A small, silver combination lock with three visible dials is held in a hand over a textured, circular red surface, with a floral-patterned background partially visible. +3e5437eef4d9407.png The combination lock is a bulky rectangular device with a grayscale color scheme and a textured black rubber casing, viewed from a slightly above angle attached to a bronze door handle against a reddish-brown wooden door with visible peeling paint, featuring a digital numerical display at the center. +4416755ccf3048e.png The combination lock is blue with a smooth and glossy texture, viewed from an angle showing its side, set on a speckled countertop with a visible coil and bottle in the background. +d4e8dea744db46b.png A silver combination lock with a blue dial is positioned on a wooden surface, viewed from above, with a metal countertop partially visible in the background. +64d30af523784b0.png A hand holds a small, round, metallic combination lock with a shiny silver finish on a white countertop next to a sink, with a textured cloth and a green bottle visible in the blurred background. +73cbea0400b0417.png The combination lock is silver with a smooth, metallic texture, viewed from a slight angle above, held in a hand against a plaid fabric background with blue, brown, and white patterns. +7df586e055c646d.png A small pink combination lock with a textured, metallic surface is viewed from above, placed on a marbled beige floor with wood flooring partially visible, featuring a circular dial and a silver shackle. +fbc54df1413b485.png The combination lock is built into a textured, dark purple suitcase with a horizontal orientation, viewed from an angled top perspective, flanked by a zipper and set against a marbled floor and wooden background. +3edd209d4f93419.png A silver and black combination lock with a round dial and directional handle is held against a light yellow wall, featuring a textured surface and a nearby lamp fixture in the dimly lit background. +73a83a8d0c3c4e6.png The combination lock, viewed from above, is metallic gray with a smooth texture, held in a hand above a beige and white patterned rug in a bathroom setting, with the lock's hole and grooves visibly distinct. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/computer_mouse_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/computer_mouse_descriptions.txt new file mode 100644 index 0000000..0380eb6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/computer_mouse_descriptions.txt @@ -0,0 +1,14 @@ +39a1db8891b34bd.png The computer mouse, seen from a side angle, is matte black with a smooth texture, held in a hand against a wooden desk surface likely near a corner, featuring a slight curve and a visible scroll wheel. +92804c73b251445.png The black, smooth-textured computer mouse is held at an angle showcasing its ergonomic vertical design and is set against a speckled granite surface with a hand partially visible. +aa3264e498bb4d8.png The black computer mouse, seen from the bottom viewpoint, features a smooth, matte texture with a central optical sensor and is held against a backdrop of a patterned textile and a soft turquoise fabric. +980971e8baea45b.png The computer mouse is a sleek, dark gray with a matte texture, viewed from above on a speckled dark surface, featuring a subtle logo near the front. +2b4224a6f13b471.png A black, matte-finished computer mouse is held in a hand, viewed from the side, with visible buttons on top, set against a cluttered room with bookshelves, a pile of clothes, and miscellaneous items. +f554da27b4f3439.png The computer mouse is red with black accents, featuring a smooth texture, viewed from above on a light wooden desk surface, with a blue object partially visible in the background. +aa548c8b80ec4ad.png The computer mouse is black with a smooth matte finish, viewed from below as it rests on a tiled floor partially illuminated by direct light, with a quilted fabric nearby creating a contrasting textured backdrop. +874068d7b695438.png The computer mouse is black and red with a glossy finish, viewed from above on a textured, dark patterned carpet with a striped mat nearby, and features a visible wired connection ending in a USB plug. +c2e07909d00d4dd.png The computer mouse is red with a glossy texture and black accents, viewed from a top-angle perspective being held in a hand against a wooden floor background, featuring a single scroll wheel and streamlined ergonomic design. +f4f6aeb22f0e4e3.png The computer mouse is predominantly black with a beige or light brown section, held in a downward-facing position over a wooden floor, with a cardboard box and backpack visible in the background. +6379bc55dbba46a.png The computer mouse is matte black with a single bright orange scroll wheel, positioned with a side view on a dark, patterned mouse pad under a wooden desk. +0594627c4217457.png A matte black computer mouse with a textured grip and a slightly elevated arch is viewed from a side angle on a gray tabletop, positioned near a black and white speaker. +4197f27e9ef243b.png The computer mouse is primarily black with a prominent red accent visible from a top-down perspective, resting on a white marble-like surface. +9f8f1143db0c4a8.png A small, glossy pink computer mouse is viewed from above on a dark table, with a distinct scroll wheel and surrounded by a patterned black and white rug and a piece of lace fabric. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/contact_lens_case_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/contact_lens_case_descriptions.txt new file mode 100644 index 0000000..1c611f2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/contact_lens_case_descriptions.txt @@ -0,0 +1,14 @@ +019435d1907b417.png The contact lens case features vibrant green lids on a white base, positioned at a slight angle on a mottled brown countertop surface, with a visible hinge on one side and a tiled wall in the background. +51e9503db7ac4d0.png A gray, octagonal contact lens case with a slightly textured surface, labeled "R," positioned upright on a white tiled surface with visible grout lines and minor debris. +f42e8a58eb704c3.png The contact lens case features a dark blue and white lid, resting horizontally on a wooden surface with a slightly blurry and dim-lit background. +af98426ca2614df.png The image shows a contact lens case held between fingers, with one half white and the other green, positioned side view against a background of navy blue bedding and partially open white window blinds. +4782ad1541a6482.png A lavender-colored contact lens case with the letters "L" and "R" on its hexagonal lids is held in a hand over a carpeted floor, surrounded by colorful miscellaneous objects in the background. +bd75e8a8046b48c.png A transparent cylindrical case with a teal screw cap containing two white discs with printed designs inside, is positioned horizontally on a textured white surface resembling a toilet seat, against a bathroom-like setting. +2506ec8185e4479.png A contact lens case with a white and light green compartment, viewed from above, rests on a worn wooden surface with visible scratches, featuring distinguishable lettering on each cap. +ff103633e82f410.png The contact lens case is translucent white with raised ridges on the lids, viewed from above on a wooden surface, against a patterned white pillow in the background. +c8e483721744410.png A hand holds a contact lens case viewed from the side, with one half turquoise and the other white, featuring a soft matte texture, against a dimly lit interior with blurred furnishings in the background. +0311feefa1184ae.png A low-resolution image shows a white and gray contact lens case with a matte texture, viewed from an angled side perspective, placed on a light wood surface with part of a mobile device visible nearby. +46eac1bb12c048a.png The contact lens case, viewed from an angled side perspective, features a white and green color scheme with a matte texture, placed on a textured blue carpet with a patterned black-and-white area rug in the background. +9a8dbf36803745c.png The contact lens case, viewed from a side angle, features a white base with a green lid and a textured surface, resting against a rough, light brown tiled background, with a hand holding it for support. +e9e77c07721d4b3.png The contact lens case is shaped like a simple two-section pod with one half in vibrant green and the other white featuring a blue numeral, positioned on a gray speckled countertop surrounded by various toiletries and personal items in a cluttered setting. +9102ae7290234ac.png The contact lens case has a blue textured lid with subtle ridges, viewed from the side, resting on a glossy white sink surface with slight visible dirt and a blurry faucet in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/cooking_oil_bottle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/cooking_oil_bottle_descriptions.txt new file mode 100644 index 0000000..2ee7c83 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/cooking_oil_bottle_descriptions.txt @@ -0,0 +1,14 @@ +3ad17196c36a45e.png The green glass bottle with a red star-shaped logo is held at an angle over a beige leather couch, with its label facing the camera, surrounded by various household items. +725b1d62c5c6490.png A green-tinted plastic cooking oil bottle with a beige cap lies horizontally on a wooden countertop next to a metal kettle, with a sink and metal basin partially visible nearby. +4476394b9c27409.png The cooking oil bottle is green, slightly tilted on a speckled stone or terrazzo floor, with a red cap and a yellow label featuring some indistinct text. +71351fc3de0f400.png The cooking oil bottle, with a greenish-yellow liquid visible through its clear packaging, stands upright on a beige leather sofa with a black label, in a home setting featuring a cream-colored wall and a floral artwork above. +697dcba82e9740a.png The cooking oil bottle, held horizontally, features a clear plastic surface with light amber oil inside, a golden label with dark green accents, against a striped teal and gold fabric background. +1e26646b5b884ee.png A person is holding a dark green cooking oil bottle with a golden cap horizontally over a brown tiled bathroom floor, featuring a toilet, cleaning product, and black cabinet in the background. +d08ddb2d7da442f.png The cooking oil bottle, seen from an angled view, appears dark green with a textured label, set against a carpeted background, and is being held by a hand. +4c219bc4d94b48f.png A translucent, slightly yellow-tinted plastic bottle with a ribbed texture lays horizontally with a blue cap, resting on a reflective black surface against a blurred green outdoor background. +5db7772aa7b74ae.png The cooking oil bottle is clear with a textured surface containing yellow liquid, viewed from the side and held upside down, against a colorful patterned rug and a partially visible dog's head in the background. +54742238a16144b.png The cooking oil bottle, viewed from a high angle and resting on a dark plastic chair, features a transparent plastic body with a curvy shape, a yellow cap, and a predominantly yellow label, holding amber-colored oil. +f0affc7405064fa.png The cooking oil bottle is white with a large blue label featuring imagery of fried food, lying on its side on a wood-textured floor. +50de7d6431e2441.png The cooking oil bottle appears clear with a yellow cap, held upside down in a hand against a fabric background with black floral patterns on an off-white surface. +afc2d00484684c4.png The cooking oil bottle is a clear, crinkled plastic container filled with golden liquid, capped with a white lid, lying horizontally on a black countertop, near a metallic pot and utensils, against a kitchen interior backdrop. +562fdce4c9474ea.png The image shows a semi-transparent, slightly yellow-tinted bottle with a golden cap held at an angle in front of a dining area featuring a table covered with a lace-patterned cloth and a wooden chair, with remnants of liquid visible at the bottom. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/cork_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/cork_descriptions.txt new file mode 100644 index 0000000..c532cb3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/cork_descriptions.txt @@ -0,0 +1,14 @@ +2892e42985c34f4.png The cork appears light brown with a slightly mottled texture and visible black markings or branding, held in a hand against a bathroom background with a mirror and basket, viewed from a side angle. +798efede0a5e4d5.png A hand holds a cylindrical, light brown cork with a rough, porous texture, viewed from an angled side perspective, over a shiny metallic surface with ridges in the background. +9b037547b7b846b.png A short, beige cork with faint text and a smooth texture stands upright on a speckled granite countertop, surrounded by a softly illuminated environment with a golden decorative lamp and a bottle in the background. +6939fadd4f56483.png The cork is cylindrical with a light tan color, featuring a printed pattern, held vertically by a hand against a white, rounded background surface. +e113c096bb8e457.png The cork is a light tan color with a slightly mottled texture, viewed from a side angle held between fingers, against a background of a green woven fabric with a pattern. +50048b46058640c.png The cork is cylindrical with a light brown color, marked by scattered, dark tactile striations; it is held between fingers against a cluttered indoor backdrop with furniture and equipment visible, viewed from an oblique angle. +38016b098eb24af.png The light brown cork, displaying a visible printed logo, is held horizontally between fingers against a white background with a texture reminiscent of tiled surfaces. +edafff82bc67443.png The cork is light brown with a rough, natural texture, wrapped with green and red patterned material, standing upright on a speckled granite surface in a bathroom setting with a mirrored background. +c457a92dcefa436.png The cork has a light brown, speckled texture with visible imprinted black markings, held in a fingers' grip vertically over a white stove with metal burners in the background. +504ed0ed8a5246b.png The cork is a light beige color with a mottled, slightly cracked texture, viewed from a close side angle against a colorful, patterned rug background, held between fingers and displaying faintly printed text along its side. +7b0fd9bfd24046c.png The cork is brown with a textured, slightly irregular surface, positioned upright on a carpeted floor with a blurred indoor background featuring doors and household items. +356522679b5c4d3.png A light brown cork with a speckled texture and black printed text is held sideways by a hand against a beige marbled surface with soft lighting. +38caee7e301b440.png The cork is cylindrical with a natural beige top and a white body featuring printed text, placed on an orange fabric surface, viewed from slightly above with a hand holding it. +876b7cecf1a346d.png The cork appears light brown with a rough texture, viewed from the side with part of the branding text visible, and is held against a dark, smooth background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/cutting_board_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/cutting_board_descriptions.txt new file mode 100644 index 0000000..aa2b4da --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/cutting_board_descriptions.txt @@ -0,0 +1,14 @@ +ace97d191bb844f.png The cutting board is light green with a smooth texture, held at an angle by a hand, set against a background of a kitchen with stainless steel appliances and granite countertops. +ba49208c37ea47e.png A white, slightly reflective, rectangular cutting board with smooth edges is held at an angle in a bathroom setting, surrounded by toiletries and a sink. +672a0196715240d.png The cutting board is a light tan color with a smooth, rectangular wooden texture, featuring a hole in one corner, positioned at an angle on a dark, speckled countertop with kitchen items in the background. +d964d6845712421.png The cutting board appears dark and slightly worn with a rectangular shape and a handle cutout, resting on a colorful floral and checkered tablecloth in a top-down view. +480f88367bad4bd.png The cutting board is light wood with subtle grain patterns, seen from above, resting on a white upholstered chair with a subtle floral design, featuring a hole in the handle for hanging. +df1b13ba3cc04dc.png The cutting board is white with a smooth texture, positioned upright against a kitchen backsplash behind a box of foil near a wooden cabinet, with a gentle light illuminating the area. +1fb1f8655583496.png A light-colored, rectangular cutting board with a smooth texture stands upright against a closed set of blinds, casting soft shadows on the wooden table beneath it. +8956754b9aac435.png A pale blue, rectangular cutting board with a handle opening is propped upright against a wooden dining table in a well-lit room with a kitchen visible in the background. +73e739bf6f6442d.png A small, yellow-tinted cutting board with a smooth and slightly worn texture is held at an angle above a light-colored countertop with paper towels and a large bottle in the background. +21408fb0c2dd444.png A small, dark-colored cutting board with a smooth surface is being held in a hand at a slight angle above a wooden plank floor with visible knots and a person seated nearby. +3811c848c91d4a2.png The cutting board appears white with a smooth texture, positioned upright against a dark edge, surrounded by a marbled floor and a blurred backdrop of a fan and other indistinct items. +fbbf2006b2104a1.png The cutting board appears to be light green with a smooth texture and a small handle hole, viewed from above while resting on a gray office chair cushion, surrounded by a wooden floor and a metal grid structure. +0186b77b624342e.png The cutting board is light brown with a visible wood grain texture, viewed from a high angle in a bathroom environment, positioned atop a white ledge near a toilet and above a toilet paper holder, with a handle cutout at one end. +23a3d672914149e.png The glass cutting board features a clear surface with a textured pattern, viewed from above, set against a granite countertop and bordered by black corner grips. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/deodorant_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/deodorant_descriptions.txt new file mode 100644 index 0000000..7ea3800 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/deodorant_descriptions.txt @@ -0,0 +1,14 @@ +d9409b795be44a9.png The deodorant has a dark, likely black, matte finish, viewed from a slightly tilted front angle, set against a dimly lit interior with wood-paneled walls, and features distinct graphics on the label. +ffdd576f19894c7.png A bright orange stick deodorant with bold, contrasting white and red label text is held upright against a colorful abstract-patterned blanket backdrop. +13ace543f3a94f9.png The deodorant is purple with white and silver text, displayed upright on a plaid-patterned fabric surface with visible stripes and a subtle beige carpet edge, surrounded by dark shadowed leg shapes at the bottom. +7067a1877d6c4bc.png The deodorant is black with white and silver text, standing vertically on a black countertop in front of a white appliance with a gray textured wall in the background. +c27ea8a7241f487.png The deodorant is held in a hand and has a lavender and teal container with white text, viewed from the side in a bathroom setting with a sink and toiletries in the background. +fcb56162e6784f3.png A cylindrical deodorant with a light brown color and smooth texture stands upright on a glossy, white tiled floor, casting a long shadow, with minimal labeling visible. +c04e89bf75e444e.png A person is holding a deodorant with a bright yellow-green cap and a dark body with white text, viewed from a slight angle against a pastel floral-patterned background. +924b586e2591442.png The deodorant is bright red with a slightly glossy texture, held at an angle revealing its curvy shape and distinct label, set against a neutral-toned fabric surface on a wooden floor, and featuring bold text and imagery on its label. +4403a5273713453.png The deodorant is a black cylindrical container with metallic blue accents, viewed from an upright angle on a light wooden floor in a room with wicker furniture and a colorful blanket in the background. +f73c1da561f04fe.png A vibrant red deodorant stick with a white and blue label is lying horizontally on beige carpet next to a black boot with a textured sole, visible from a side angle. +53b97989569c461.png The deodorant in the image is a blue stick with a translucent cap, held in the foreground by a hand above a speckled granite countertop, and features a large white and pink label with a floral design. +5ca18a53c71f4fb.png A white, cylindrical deodorant container with a rounded cap is held horizontally in a hand, with a cluttered background featuring a wooden table, books, and a spherical object. +86e2ed63e43644b.png The deodorant is a light turquoise stick with a semi-transparent cap, viewed upright against a bathroom sink backdrop with visible toothpaste and a toothbrush. +52bda8c787eb4c6.png A black cylindrical deodorant spray can with white lettering is held horizontally by a hand against a multicolored patterned pillow and a white wall, featuring a metallic top and bottom. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/desk_lamp_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/desk_lamp_descriptions.txt new file mode 100644 index 0000000..2a3282e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/desk_lamp_descriptions.txt @@ -0,0 +1,14 @@ +48df06353af94aa.png The desk lamp is silver with a flexible neck positioned upright, set against a blurred, dark surface and a cluttered background including notebooks and containers. +ada59a35ee68416.png The desk lamp is black with a matte finish, positioned in a side view with an adjustable arm on a glass-topped wooden table, surrounded by cleaning supplies, books, and a visible outdoor area through a window. +56cd379b57964b3.png A sleek, white, flexible-neck desk lamp is shown from a side angle against a simple indoor background with a wooden floor and a white table, emitting a bright blue-tinged light at its curved end surrounded by some wires. +6fa50def6b5a42a.png A white, glossy, dome-shaped desk lamp with a chrome jointed stem is laid flat on a tiled floor, surrounded by scattered cables and a multicolored fabric on one side, viewed from a high angle. +9b0bf2b067e54fe.png The desk lamp is matte black with a cone-shaped shade and a visible bulb, viewed from above on a floral-patterned tablecloth beside a decorative vase. +51e06043ff5346b.png The desk lamp features a cream-colored pleated fabric lampshade, tilted at an angle, with a glossy, dark base, set against a background of dark curtains and wood-paneled walls. +2f15f2dd70334ef.png A large, tilted desk lamp with a textured, metallic shade and a black base is positioned among greenery and candles on a shelf background. +cd9c786a89174b3.png A dimly-lit desk lamp with a glossy, dark base and a bright white lampshade emits light against a plain wall, positioned on a speckled stone-like surface near tangled cables. +42558a3723fe456.png The desk lamp, viewed from a low angle, features a rusted metal texture with a flexible neck and a round, exposed bulb, set against a cluttered, dimly lit background that includes tools and a small picture of a deity. +b6a569770ab84d8.png The desk lamp has a metallic base with braided textured detail, a beige fabric shade with black trim, and is viewed from an angle showing it lying sideways on a patterned surface in a dimly lit room with dark furniture and a patterned bedspread in the foreground. +4d8549d087c0408.png The desk lamp has a brushed metallic finish with a dome-shaped shade, viewed at an angle, set against a light-colored wall on a wooden surface surrounded by various household items. +e1f22bfe18f8467.png The desk lamp features a metallic gold finish with a clear glass cylindrical shade, viewed from a top side angle on a cluttered wooden surface with a cream-colored wall backdrop, and its distinct straight, tubular arm adds to its modern aesthetic. +ae40ceea6459499.png This desk lamp, viewed from above at a slight angle, is a light-colored fixture with a rectangular, perforated or honeycomb-textured shade, set against a busy background featuring office supplies and a vibrant pink artificial rose. +9e71d30e046b4f7.png The desk lamp has a smooth, matte black base with three upward-curving wrought iron arms ending in decorative loops and a single amber-colored, frosted glass shade, placed against a plain, light-colored wall with a dark surface beneath and some clutter in the surroundings. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/detergent_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/detergent_descriptions.txt new file mode 100644 index 0000000..c851c50 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/detergent_descriptions.txt @@ -0,0 +1,14 @@ +f2f0186bbdbc490.png The detergent container is cylindrical with a green lid, a semi-transparent body revealing white granules inside, and a colored label featuring green and red graphics, held upright by a hand with a tiled floor and white wall in the background. +4428792112ed445.png An orange bottle of detergent with a white cap, featuring a colorful label showcasing a flower, is held at a top-down angle over a round wooden surface, with a dark patterned floor in the background. +c3ff6a199cc2444.png The detergent appears as a packet with a predominantly white and green color scheme, featuring red and green graphics and black text, positioned upright on a cluttered washing machine surface amidst various household items in a dimly lit room. +9ae160f3459b427.png A partially filled, transparent plastic bottle with a bright red liquid and a yellow cap is lying on its side on a beige kitchen counter, featuring a colorful label and positioned between a white stove and a black coffee maker. +871b02228e43489.png The detergent is housed in a bright orange plastic jug with blue and white label accents, situated on a wooden desk with scattered miscellaneous items in the background, characterized by a prominent handle and spout design. +31f6f21d5fd4425.png A person is holding a packet of Ariel detergent, which is predominantly white with a green top section and distinct red lettering, in a kitchen environment featuring a countertop with utensils and cleaning items in the background. +cf429d19de734b2.png The image shows a light green, translucent detergent bottle held upright with a pink and white label, set against a blurry indoor background with visible furniture and textiles. +91daed09cb8c454.png The detergent package is primarily white and blue with bold red lettering, featuring a colorful flower design on the front, and is standing upright on a brownish-yellow speckled floor with a blue-wall background. +e7d051f9cb884fc.png The detergent bottle is cylindrical with a black cap, featuring a predominantly white label with indistinct detailing, set against a patterned bathroom tile backdrop near a sink. +0ea071c5dcf1430.png The photo shows a dark, glossy surface with a teal green oval object, likely a detergent pod or capsule, positioned centrally, casting a subtle reflection, and partially illuminated from the right side against a dim environment. +e4589be2e3af4a0.png The detergent bottle is white with a pale blue cap, held at a slight angle in a hand, against a tiled floor background with furniture visible. +f735796218ff48e.png A tall, red liquid-filled plastic bottle with a blue cap is standing upright on a patterned, transparent tablecloth, in a room with a beige couch and barred window in the background. +a3d58e0cbda54fe.png The detergent package is primarily blue with splashes of red and white, viewed from an angled overhead perspective on a wooden stool, set within a sparsely furnished room with a tiled floor and a distant door slightly ajar. +a5a13d877732419.png The detergent is housed in a blue bottle with a yellow cap and vibrant label, positioned upright on a white pedestal sink with brass fixtures, surrounded by cream-colored tiles, and accompanied by a yellow pump bottle and waste bin in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/dish_soap_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/dish_soap_descriptions.txt new file mode 100644 index 0000000..0ac0c9c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/dish_soap_descriptions.txt @@ -0,0 +1,14 @@ +1d4ee1e82584413.png The dish soap bottle is transparent with a blue liquid inside, featuring a white label with blue text, tilted horizontally against a white countertop in a kitchen setting with a hand holding it and a stove visible to the left. +158f7509f94d43a.png A clear, slightly curved bottle contains bright blue liquid dish soap, viewed at an angle resting against a red textured cushioned sofa with a lighthouse-themed pillow in the background. +5764e97b5d484d4.png A large, translucent jug of deep blue dish soap is positioned upside down with a spout at the bottom, held by a hand over a dark shelf, set against a plain beige wall. +8c00a715426c4c4.png The dish soap features a transparent, vivid blue hue, lying horizontally on a dark surface against a textured beige wall, with visible reflections indicating its glossy texture and a partially obscured green container in the background. +4eb2b0f049234a4.png The dish soap bottle is translucent green with a curved shape, seen lying on its side on a white washing machine surface, featuring a prominent label. +45b712104fe04e6.png A hand is holding a transparent bottle of dish soap with a bright green cap and a visible label against the warm-toned wooden backdrop of a cabinet, accentuating the dark liquid inside and a logo with a leafy design. +66488af6d2fe471.png The dish soap is in a yellow, inverted plastic bottle with red and green branding, located on a black counter in front of a large blue water dispenser, with a slight reflection visible on the surface. +7663927adab9492.png A green, translucent bottle with a red cap labeled as dish soap is placed upright on a rumpled gray surface, possibly a bed, with a wooden floor partially visible in the background. +954aa4f8c7174d7.png The dish soap is a clear plastic bottle with a blue liquid inside, viewed from a slightly elevated front angle against a dimly lit background; the label features white text and an image of a yellow duck, with a dark shadow on the left side. +52cb2c0c7b3b4bb.png The dish soap appears in a soft pink hue with a smooth, slightly glossy texture, positioned horizontally on a beige carpeted surface, featuring a white label with text and a visible barcode. +742a98d76aab464.png A red-colored dish soap bottle with a graphic label is lying horizontally on a textured carpet beside a partially visible striped rug, with its cap facing left. +55cd173810e64b8.png A clear bottle with an orange liquid inside, held upside-down over a sink with a red and white dish beside it, features a black pump lid, all set against a kitchen environment with a window and tap visible in the background. +bc689e2218a04e6.png The dish soap bottle, viewed from an angled top perspective, features a transparent plastic exterior with a blue liquid inside, a blue cap, and a label showing a bird, set against a kitchen-like background with subtle clutter. +64bb0a37513b4a4.png The dish soap bottle is clear with an orange liquid inside, featuring a white cap and a blue label, held upright in a hand against a plain white wall and beside a dark-colored appliance. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/document_folder_closed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/document_folder_closed_descriptions.txt new file mode 100644 index 0000000..ba3636c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/document_folder_closed_descriptions.txt @@ -0,0 +1,14 @@ +48af16e45b1f4a3.png A closed green document folder with a smooth texture is held in a hand against a background of a warmly lit indoor environment, featuring visible text on its surface and positioned in a vertical orientation. +73ea1c0930004a8.png A green, smooth-textured document folder is partially visible from a top-down angle on a tiled floor with floral-patterned corners, showing a slightly protruding white tab, indicating it is closed. +70c2828f19654d1.png The document folder appears dark with a portrait image and text on the cover, positioned at a slight angle against a tiled floor background, with a noticeable logo in one corner. +53e1824dc4a445d.png The document folder is bright blue with a smooth texture, viewed from above while lying flat on a patterned chair, and features a visible logo or emblem on its front. +3b3b16f3508d466.png The document folder is a translucent bright orange with a matte texture, held tilted vertically by a hand in a kitchen setting, with black elastic closures visible against a background of a stove and countertop items. +2e9f39170edc43d.png The document folder is translucent white with a frosted texture, seen from a slightly elevated front view on a light-colored desk against a plain wall, containing visible dark rectangular contents and positioned near a corner with an orange decorative element nearby. +41cc44c6e3ad40f.png A pink document folder with a matte texture is vertically oriented on a kitchen countertop, partially obscured by a cutting board and surrounded by kitchen appliances, while patterned placemats with fruit motifs cover the foreground table. +74cda491cc9f480.png A closed document folder with a smooth, bright yellow surface is viewed from above, centered on a wooden table with a slight sheen, accompanied by a circular white object and various edges and shadows creating visual interest against the light wood grain background. +a120502c3f914ed.png The closed document folder appears beige with a slight sheen, viewed from above at a slight angle, situated on a brown countertop amidst a domestic kitchen environment, with a visible top tab that distinguishes it from the background. +f8395abdff9448c.png The closed document folder features a glossy finish with a dynamic sports image depicting two basketball players in mid-action against an indoor court backdrop, with the folder primarily showing dark and muted natural colors from a slightly tilted and overhead angle on a speckled tabletop. +0b6629e563b9493.png A dark-colored, matte-textured document folder is lying flat on a speckled beige carpet, viewed from a slightly elevated angle, with no visible markings or features aside from its simple rectangular shape. +c7eefd6942e0429.png A blue, closed document folder with metal fasteners is lying flat on a beige bathroom mat on a tiled floor, surrounded by a bathroom environment including a pedestal sink, toilet, and under-sink cabinet. +87b386e4562d432.png The closed document folder is a dark green color with a slightly textured surface, lying flat on a brown floor within a room containing a pink wall, a bed with patterned red bedding, and a visible fan. +b6f35929162845f.png The image shows a light blue, textured document folder closed and resting horizontally on an open desk drawer, with a visible crease line, against a sparsely decorated room with a plain wall, a bed, and some objects atop a cabinet. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/dog_bed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/dog_bed_descriptions.txt new file mode 100644 index 0000000..a568e3a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/dog_bed_descriptions.txt @@ -0,0 +1,14 @@ +cfe4b724128447f.png The dog bed is a plush, oval-shaped pad with a deep brown color, lying flat on tiled flooring in front of a white kitchen cabinet and stainless steel appliance, and it appears slightly indented in the center. +4045f5bdab5843d.png The dog bed features a fluffy cream top with a smooth brown base, positioned at an angle on a carpeted floor beside a patterned rug, in a room with a person at a desk and a partially visible computer. +3bb6c87261844fb.png The dog bed appears to be a pink and gray rectangular foam cushion with a soft texture, positioned vertically on a tiled bathroom floor next to a glass shower, with a hand visible holding one side. +05b61ff090a8417.png The object resembles a small, light gray, quilted cushion with a soft, fuzzy border, held in a person's hand over a black and white patterned fabric background. +887e0a41c40f4b8.png The dog bed is a light gray oval with a quilted texture, seen upright against a white wall and black dresser in a carpeted room, distinguished by its fabric tag on the side. +b9c122ddb9fc444.png The dog bed is dark-colored with a plaid pattern and visible seams, positioned at an angle on a patterned rug in a bathroom featuring a distinct floral wallpaper. +75dcdefb19e2482.png The dog bed is round with beige cushioning surrounded by a floral patterned trim, viewed directly from above against a dark gray carpet background. +2f7867634952470.png This image depicts a folded, tan-colored fabric object with a slightly wrinkled texture on a beige-tiled floor, surrounded by furniture and a person standing nearby. +33730bef29e4458.png The dog bed is a dark, silky-textured pillow with a black leafy pattern, viewed from above on a wooden floor near white cabinets and a patterned mat. +426d78f0f4ed49d.png A light brown, textured and slightly worn dog bed is positioned at an angle on a carpeted floor in a room with furniture and toys scattered in the background. +89a39136c4fa49a.png A red and gray plastic pet carrier with ventilation slats, viewed from above on a white tiled floor, features a collapsed metal grate door and a handle on top. +4465954d11154d8.png The dog bed is a two-toned, black and pink cushioned object with a triangular shape, reflective black surface panels on top and sides shown from a front-angled viewpoint, set against a kitchen counter environment with various household items in the background. +c834dfc5a6e54dc.png The dog bed has a soft, beige interior with a patterned exterior featuring hexagonal shapes in various shades of blue and brown, positioned on a carpeted floor surrounded by children's toys, chairs, and shelves in a living room setting. +b75f7b44933e4c4.png A rectangular dog bed in gray with a cushioned border and soft, light-colored interior fabric is placed on a wooden floor, viewed from above, with a small heater and wires visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/doormat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/doormat_descriptions.txt new file mode 100644 index 0000000..2e4453c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/doormat_descriptions.txt @@ -0,0 +1,14 @@ +e0f0b3e6cb794f3.png A semi-circular, dark brown doormat with a raised, fan-like pattern occupies the bottom right corner against a speckled tile floor, partially surrounded by a red, ornate, floral-patterned rug. +e55e2eb5795b4e3.png The doormat, viewed at an angle from above, is dark brown with a coarse texture, held up by a hand in a cluttered bedroom environment featuring clothes, furniture, and a beige carpet. +736a17887ab2459.png A rectangular, coarse-textured doormat with a brown hue and the word "WELCOME" in bold black letters is placed on light wooden flooring, viewed from above with a reflective surface nearby. +f10fdbf33c6c442.png The doormat is oval-shaped with a spiral pattern of dark and light brown fibers, placed on patterned maroon floor tiles, viewed from above in a narrow corridor with pale green walls. +4683d0ac1090458.png The doormat is a round, multicolored braided mat with a predominantly red hue, lying flat on a glossy, beige-tiled floor, beside wooden furniture and various household items in a seemingly indoor setting. +36637a2896504f4.png A speckled dark gray doormat with a slightly rough texture is partially lifted by a hand, revealing its thickness against a backdrop of office-like carpet and potted plants near a window, viewed from an angle. +229336a7917c435.png The doormat is a small, rectangular, dark brown mat with a woven texture, placed on a light-patterned tile floor near a wooden door, viewed from an overhead angle with a floral arrangement nearby. +5e8c9f69681f4de.png A person is holding a rectangular, brown doormat with a darker, irregular wave-like pattern, seen from a side angle in a carpeted room with a closed white door and a desk in the background. +9ed42b9d84d0410.png The doormat features a wine-themed design with visible bottles and grapes in shades of red, green, and brown, set against a mottled white background, placed on a tiled floor beside a toilet in a bathroom setting. +a8f48a2e8b9a457.png A person's hand holds a thin, brown, fibrous doormat on its edge against a neutral carpeted background, with the texture suggesting a dense weave. +3606839486bf48c.png A low-resolution brown doormat with a coarse texture is centrally positioned on a wooden floor amidst a cluttered environment, featuring distinct white patches or labels on its surface. +cc8a97cc4317474.png A dark gray rectangular doormat with a subtle herringbone texture is positioned slightly askew on light beige tiled flooring with a contrasting brown carpet at the edge. +3b893d35a6ad40d.png A dark gray, rectangular doormat with a grid pattern is placed at an angle on a wooden floor in a kitchen setting with part of a refrigerator and wooden cabinets visible in the background. +c624e572495f490.png The image depicts a richly detailed, dark brown wooden coffee table with carved legs and intricate designs, placed centrally in a carpeted living room environment, viewed from a low angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/drawer_open_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/drawer_open_descriptions.txt new file mode 100644 index 0000000..74cecef --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/drawer_open_descriptions.txt @@ -0,0 +1,14 @@ +c7930006ef014e8.png The drawer, resting upside down on an orange bedspread, has a white frame with a plain, flat, light brown base, surrounded by a cluttered room with clothes and packages nearby. +0e71996acca34e7.png A wooden drawer is open, viewed from above, revealing a white plastic utensil organizer with silver and gold cutlery against a speckled gray countertop backdrop. +6fa4258be1ab41e.png The open drawer is part of a minimalist white bedside table with a smooth, matte finish, viewed from a slightly elevated front angle against a matte dark wall, and surrounded by a light wooden floor and geometric-patterned pillows. +7fc70c73d99e4bb.png The drawer, viewed from a slightly elevated angle, is open revealing a mix of items including a red-capped tube, papers, and a yellow box, set against a dark wood texture with a glossy finish, surrounded by an office-like environment with subtle lighting. +c0fc1732e7a8453.png The drawer is light wood with a silver knob, viewed from an angular top-down perspective, revealing miscellaneous items inside against a background of light wood flooring and a gray carpet. +7c5647d7d11a432.png The low-resolution image shows an open kitchen drawer with a wood grain texture and a light brown hue, viewed from a side angle revealing the empty interior, with a food canister and appliances in the background and a collection of knives on the countertop beside a stove. +38bc7146bbb0464.png The image depicts a light wood-colored drawer unit with a smooth texture, viewed frontally, with one drawer fully open revealing a plain gray interior against a cluttered backdrop of electronic items and cables. +9325dff7393d408.png The open drawer is visible from an angled top-down perspective, showcasing its smooth, light wooden interior contrasting with the dark green exterior, set against the textured countertop and tiled floor environment. +93c4cbe9b5684e6.png The drawer appears to be wooden with a light, smooth finish, seen from an overhead perspective, featuring a metal handle with a kitchen floor of brownish tiles and a striped cloth in the background. +fe05e81048884cb.png The drawer, viewed from a slight overhead angle, features a glossy white surface adorned with subtle gray floral patterns, a sleek horizontal handle, and it is set against a deep blue and purple backdrop with visible wall tiles. +632c8e282019472.png A wooden kitchen drawer, viewed from above, is partially open, revealing an assortment of utensils including spatulas and peelers, against a mottled brown countertop and a dark wooden floor background. +69bef1720ec6484.png The image depicts an open drawer with a brown wooden texture and brass-colored handles, viewed from a slightly angled, low perspective, against a background of household items and various clothing hanging in a hallway. +5b963118596d489.png A partially open white-faced drawer with a natural wood side is held at an angle above a rumpled white bedspread, with a window and part of a room visible in the background. +d0ba6bd822d64cb.png The wooden drawer with a white front panel and round metal knob is slightly open at an angle on a bright red countertop, surrounded by a white tiled backsplash adorned with circular patterns, revealing inside a mix of colorful dish towels and paper napkins. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/dress_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/dress_descriptions.txt new file mode 100644 index 0000000..f553038 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/dress_descriptions.txt @@ -0,0 +1,14 @@ +25fe7b939a09467.png The dress features a pink hue with red accents, a sheer textured fabric, positioned flat on a white lattice surface, and includes decorative bow details on the straps and waist. +87ea5c03631546e.png A vibrant purple dress with a smooth texture is laid flat on a beige carpeted floor, with colorful toy blocks nearby and white curtains in the background. +3c25840adeff486.png The dress features a vibrant teal and white ikat pattern with black accents, draped asymmetrically on a surface, and set against a plain white background with visible ruching detail. +8ccf19d8c6a7441.png A blue dress with a checkered pattern and a pink shawl draped over the head is seen from a side angle in an office setting with computers and light-colored walls. +fb6bfb5e8276481.png A multi-colored dress with orange and blue paisley patterns lies crumpled on a light tiled floor, viewed from above, showing a contrasting dark area with intricate designs and surrounded by a mundane indoor setting. +1f6ded3acf69493.png The blue dress with a subtle floral pattern and buttons down the front is displayed on a white hanger against a backdrop of a brick wall and wooden shelf. +cc12095cd2384bf.png The dress is a vibrant blue with intricate beige floral embroidery on the chest area, laid flat on a floral-patterned bedspread against a neutral wall background, showcasing a contrast between its solid color and detailed embellishment. +36951257a5f4489.png The dress, viewed from above and lying crumpled on a bed, is white with a pattern of small, scattered floral designs in dark colors, set against a background featuring wooden panels and a closed wooden door. +ea0a18a9f8414d2.png A red and black checkered dress with a tied detail is laid flat on a wooden table, set against a bright green wall, with visible electronics and a soft toy beneath. +8717c1ae7ec645b.png A peach-colored velvet dress is laid flat on a bed amidst scattered clothing, with its short sleeves and round neckline clearly visible, contrasting against a carpeted floor with visible plastic bottles. +17e331f1412a4fa.png The dress is a sleeveless, bright yellow garment with subtle embroidery, featuring decorative horizontal stripes at the hem, laid flat on a speckled brown and black floor next to a gray plastic chair. +254c979278bd432.png The dress is light pink with a smooth texture, lying flat on a carpeted floor, viewed from above, and appears to be in a domestic indoor setting with a brown cushioned object nearby. +74d47637e8b3401.png A long, dark navy dress with a smooth texture is draped on the floor, surrounded by a tiled bathroom environment, and partially resting on a beige mat. +1db7d107f54647b.png The dress is solid black with a sleek texture, hanging on a hanger framed by a doorway with tiled flooring and neutral-colored walls, with a slightly fitted silhouette evident from a centered, straight-on viewpoint. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/dress_pants_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/dress_pants_descriptions.txt new file mode 100644 index 0000000..2674ffb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/dress_pants_descriptions.txt @@ -0,0 +1,14 @@ +5fe0190e65a04ce.png A hand holds a pair of gray dress pants, featuring a subtle, smooth texture with a belt loop and pockets visible, against a plain white door in low-resolution lighting. +2858ce58b8a8458.png The dress pants are beige and appear to have a soft, slightly wrinkled texture, shown hanging vertically in dim lighting with cardboard boxes and shelves in the background, and a visible shiny metal zipper and button at the waist. +d62d6f027497466.png The dress pants are dark gray, with a smooth texture, laid flat on a gray kitchen countertop, positioned with the legs extended toward the stainless steel refrigerator in the background. +0fffd8ee3f264b9.png The dress pants appear black with a smooth texture, draped over furniture in the foreground of a household living room setting with kitchen cabinets visible in the background. +5dca846c8739440.png The dress pants appear to be a light gray color with a smooth texture, viewed from above in a slightly crumpled state on a dark leather seat, surrounded by a colorful knitted blanket and a dog's paw in the corner. +602a8e44e38d44c.png A pair of dark-colored dress pants with a smooth texture is neatly folded on a light blue bedspread, surrounded by disheveled bed linens in a bedroom setting. +ef75177d13e2489.png The dress pants are light beige with a smooth texture, viewed from the side lying on a floral-patterned bedsheet, with a visible belt loop and pocket seam on a slightly untidy background. +29e0249317374bf.png The dress pants are a solid dark color, likely black, with a smooth texture, viewed from above, placed flat on a rumpled beige bedsheet in a dimly lit room with a visible mattress edge and plain wall background. +01a52c28aba9426.png The dress pants are a light beige color with a wrinkled texture, lying flat on a marble floor, displaying a subtle dark print pattern and button details near the hem, surrounded by furniture and a red fabric in the background. +7f7adc5b07074b9.png A person is holding dark gray-striped dress pants in a slightly crumpled pose within a kitchen-like environment, featuring a blurred background including a refrigerator and countertop materials. +fa93c648eae14af.png The dress pants are a light beige color with a smooth texture, draped flat over a bathroom counter with toiletries and a towel visible in the background. +59281cb4ee1245f.png A pair of light blue dress pants with a smooth texture is hanging from a hook on a grey door, surrounded by a blue wall and calendar in a room with minimal decorations. +d7b19d0f01224d4.png The dress pants are a dark navy color with a smooth texture, viewed from above as they hang vertically, held by a hand against a background of tan tiles and wooden furniture. +0992d9a0eb17467.png The dress pants are solid black with a subtle sheen, lying flat on a messy bed with colorful, abstract-patterned sheets, and surrounded by objects like headphones and a black binder, highlighting their straight-leg cut and smooth texture. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/dress_shirt_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/dress_shirt_descriptions.txt new file mode 100644 index 0000000..9013bdd --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/dress_shirt_descriptions.txt @@ -0,0 +1,14 @@ +c96e935c2cba4c8.png The dress shirt is navy blue with white vertical stripes and is draped over a stainless steel refrigerator in a kitchen environment with wooden cabinets and a tile floor visible in the background. +26ad2f89b1144a8.png A light blue dress shirt with a smooth texture hangs from a piece of furniture, viewed slightly sideways, against a beige and brown background with tiled flooring partially visible. +db9ec0bac6a94b8.png The dress shirt is light gray with a subtle speckled texture, featuring a folded collar and button placket, and is laid flat on a patterned fabric background with a floral motif. +e2403930323a499.png The dress shirt features vertical black stripes on a beige background, appears to be held up by a hand from the right side revealing its front side, and is set against a background with a bed featuring burgundy sheets and a wooden headboard. +8e27b7e087a34bd.png The dress shirt is a light-colored, long-sleeved garment with a grid pattern of dark lines, neatly folded and placed on a black surface against a contrasting background of green and shades of brown. +2dd5f7628bbd439.png A light blue dress shirt with a smooth texture is hanging with one sleeve extended, positioned on a mop handle in a tiled room with a stairway in the background. +284133c8344c4ff.png A blue and red plaid dress shirt is draped over a metal rod in a bathroom-like setting with a visible wall and soap holder, featuring noticeable white tags. +1c8ac47728d54eb.png A dark blue, long-sleeved dress shirt with a smooth texture is draped over a patterned couch cushion in a dimly lit room with light neutral walls and framed artwork in the background. +ba6b327ea5eb467.png A neatly folded, white dress shirt with a crisp, pointed collar rests on a multicolored stack of paper against a speckled terrazzo floor, next to a round, beige container and a red mat. +297d350e61e5410.png The dress shirt is light blue with white stripes, featuring a flat pose spread across a kitchen countertop amidst wooden cabinetry and adjacent kitchen items. +b12a0c93b70d4b6.png A light-colored, possibly white or pale blue dress shirt with subtle vertical stripes is lying flat on a floral-patterned bedspread, with the left arm slightly bent and the collar standing upright, while a laptop is visible in the background. +1038d0f6020c476.png A vibrant purple dress shirt with a smooth texture is laid flat and partially obscured by a tan, patterned quilt, viewed from a slightly elevated angle. +d50d2e4b917f488.png A crumpled blue dress shirt, seen from an overhead angle, lies on a plain beige floor with a distinct contrast between the button stitching and the fabric color. +8b227b8a5bb948a.png A plaid dress shirt with a black, white, and gray pattern is crumpled on a beige carpeted floor, viewed from above, with a wooden bed frame and white door in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/dress_shoe_men_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/dress_shoe_men_descriptions.txt new file mode 100644 index 0000000..a1f99fe --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/dress_shoe_men_descriptions.txt @@ -0,0 +1,14 @@ +f57fbca68da54f8.png The shoe is black with a matte texture, viewed slightly from above and at an angle on a black surface, displaying a simple design with visible laces and eyelets, set in an indoor environment with pots and a coconut shell in the background. +b6fe33dcb64c46a.png A pair of dark-colored, worn men's dress shoes with laces is seen from above on a rough, tan surface with scattered green plant debris. +9ce90fdae24c415.png The men's dress shoe is black with a matte texture, viewed from above with a folded mat and patterned floor tiles in the background, featuring a triangular logo on the tongue. +df0109aa973446f.png The dress shoe is predominantly black with a shiny texture, viewed from a side angle atop a bathtub in a bathroom setting, featuring a smooth surface with visible lacing and a slightly pointed toe. +35e0eb340461472.png A single dark leather dress shoe with a smooth texture and a buckle detail, viewed from a high angle on a wooden bench with a slatted back, set against a light-colored wall and hardwood floor. +369c17c28831457.png A black leather dress shoe is held in a hand over a kitchen sink area, showing the back heel with a visible crease and slightly glossy texture, surrounded by cleaning supplies and dishwashing gloves. +26ef948b045447e.png A glossy black dress shoe with slight creasing on the toe cap lies sideways on a textured carpet alongside casual sneakers and a sock, surrounded by a warm, ambient setting. +4229f0db41744e8.png The brown leather dress shoe with black soles is seen from the side and top angle, wedged under a white door on a wood-patterned floor with subtle laces visible. +0791253b117c401.png The dress shoe is black with a smooth leather texture, being held upright by a hand on a wooden surface, surrounded by various kitchen items like a cutting board and jars, with a window and lace curtain in the background adding natural light. +c548017f2c5c41d.png The black leather dress shoes with a glossy texture and subtle brogue detailing are viewed from above, placed on a light green tiled floor beside a blue and red plaid fabric. +610d85464205405.png The dress shoe is dark brown with a smooth leather texture, seen from an elevated side angle on a wooden floor, surrounded by various water bottles and casual footwear. +d6b44fdfb88e406.png A black leather dress shoe with a shiny finish is positioned upright on a countertop next to a stove, amidst a cluttered kitchen environment. +2244db987388474.png A dark, possibly black or brown, dress shoe with a smooth texture is viewed from above in a dimly lit, tiled-floor environment, positioned alongside other pairs of shoes against a plain wall. +bfec987a696c493.png A black leather dress shoe with a smooth texture, viewed from above, featuring a visible brown patch near the tongue, and laces neatly tied, set against a plain carpeted floor background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/dress_shoe_women_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/dress_shoe_women_descriptions.txt new file mode 100644 index 0000000..19dfe6e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/dress_shoe_women_descriptions.txt @@ -0,0 +1,14 @@ +874ca047da8e43d.png A red, strappy women’s dress shoe with a block heel is positioned on a light wood floor, viewed from an overhead angle, with a gray patterned mat in the background. +38930a80a3a546c.png A pair of tan, open-toed heeled shoes with a smooth texture sit atop a wooden shelf against a colorful room backdrop featuring a red bedspread and various household items. +0f26d225a38544a.png The dress shoe is glossy black with a sleek surface, viewed from a slightly angled side perspective, against a background of a tiled floor and a bathtub with visible grime. +2576dd73a5d44c1.png The shoe is a black, smooth-textured dress pump with a pointed toe and slim heel, held at an angle against a wooden floor background, featuring a small metallic stud near the heel area. +93534ec086c84f3.png A black leather dress shoe with a smooth texture is positioned sideways on a gray carpeted floor, displaying a rounded toe and low heel, with reflections of light indicating a polished surface. +ace44a48da5749a.png The image appears to show a beige heel shoe with a slightly glossy finish, viewed from above and against a textured cream wall with a wooden floor and woven basket in the background. +a6c9d599cb65473.png A black, smooth-textured women's dress shoe is seen from a side angle on a bathroom countertop with toiletries and a wall mirror in the background. +f6869e7e499b49c.png A black dress shoe with a matte, textured finish is seen from an above angle, resting on a beige, patterned carpet with visible threads. +04e65aaab53a45d.png A pair of women's dress shoes in a vibrant blue color with a quilted texture and contrasting white laces is positioned on a rough concrete floor, captured from an overhead view. +e6f48471331d49c.png A women's dress shoe with a black and tan geometric pattern is viewed from the side, showcasing a thin heel and an ankle strap, resting on an orange bedspread with a floral-printed pillow nearby. +d769f68395c84bb.png A dark-colored, smooth-textured women's dress shoe is held sole-up by a hand with purple nails, set against a kitchen-like background featuring a pet food area and light-colored tiled flooring. +a8e46a22d2494ac.png A black peep-toe high heel shoe with a smooth texture is viewed from a side angle on a bathroom counter cluttered with toiletries and a mirrored background. +7ca1cf4873724a4.png A brown, perforated flat shoe with a pointed toe is lying on a tiled floor, featuring a mix of white tiles with blue squares and a dark, shadowed area adjacent to a stone-patterned raised surface. +6e06d620a06347d.png The black dress shoe has a shiny finish and an ankle boot style, viewed from the side on a tiled bathroom floor with faintly visible grout lines and minimal accessories. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/drill_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/drill_descriptions.txt new file mode 100644 index 0000000..08e73ac --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/drill_descriptions.txt @@ -0,0 +1,14 @@ +eff23266bc2a479.png The drill appears red with a black battery pack and silver chuck, viewed from a top-side angle on a concrete floor, with dark beams and a white pipe in the background. +daa9b89466ac47f.png The drill is predominantly red with black accents, featuring a textured grip, viewed from a slight overhead angle on a beige countertop, and has a distinct cordless design with a visible battery and labeling on the side. +f1a2d2e9361b4f9.png The drill is yellow and black with a slightly worn, textured plastic surface, held at an angle showing the side and top, and is set against an indoor concrete floor with various tools in the background. +5c335afba3ec452.png A green and black cordless drill with a rubberized texture is angled to the left on a wooden desk, featuring a prominent brand name on the side, surrounded by office items and a monitor displaying a QR code. +42cf5a2c6b64408.png The image shows an orange cordless drill with a black grip and chuck, viewed from above and slightly to the side, against a yellow, tile-patterned background with visible wear and cracks. +cbc1c1a1d3a244d.png A gray drill with a dark handle and green accents is lying horizontally on a beige textured rug, with a coiled black cord extending towards a tiled wall. +9f38a45838aa463.png A red and black cordless drill with visible branding on the side, featuring a textured grip and cylindrical drill head, is viewed from the side on a gray textured surface in a domestic setting with wooden walls in the background. +45913bd6a24f45e.png The drill is primarily orange and black with a metallic chuck, viewed from above on a textured, multicolored carpet, displaying a compact design with textured grips and visible branding on the battery. +c7b97347993d4e5.png A teal-colored electric drill with a textured grip is lying on a concrete floor, with its cord coiled messily and a metallic drill bit visible at the tip, viewed from a slightly elevated perspective, alongside a foot in a sandal. +9af2c666da9b464.png The drill is primarily black with metallic and yellow accents, positioned on a soft, crumpled fabric background, and features a distinct dual battery pack. +6a3d874b619a442.png The drill is a red, handheld power tool with a smooth finish, viewed from a side angle in a bathroom setting, featuring air vents on the side and positioned against a wall with decorative tiles. +c39562f8f2aa4a9.png The drill appears black with a metallic silver tip, viewed from a side angle on a textured carpeted surface, held by a hand revealing a distinct red switch on its body. +ff06c37c70fe4e2.png A black cordless drill with a red grip and chuck is lying slightly angled on a textured brown mat on tiled flooring, displaying a visible battery compartment and bit inserted into the chuck. +b33f74513e444fd.png The drill in the image is predominantly red with black and silver accents, positioned upright on a white countertop in a partially obscured kitchen setting, featuring a black grip and a visible bit extending from the front. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/drinking_cup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/drinking_cup_descriptions.txt new file mode 100644 index 0000000..8b743d2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/drinking_cup_descriptions.txt @@ -0,0 +1,14 @@ +c9583e6df31a42b.png A bright yellow, matte-textured drinking cup is viewed from a slight overhead angle, placed on a dark wooden desk beside a laptop in a home office setting with a blurred room in the background. +d81c010d644d454.png A silver metallic cup with a handle is positioned upright on a kitchen stove among other stainless steel utensils, with a visible flame under a larger pot on the left side. +193aa92566754d8.png The drinking cup is a translucent, frosted plastic with a white handle, tilted horizontally in a kitchen setting with a wood grain counter and assorted items like paper towels and snack bags in the background. +bda38e0ff1a6452.png A transparent, cylindrical glass with a reflective surface lies horizontally on a wooden table with a white laundry basket and a blue plaid fabric nearby in the background. +d6f087bbde3c41e.png A reflective metallic drinking cup with a simple handle is positioned upright on a cement surface in front of a red and black metal gate with nearby greenery. +7f309b947649469.png A clear glass cup with a smooth texture is lying on its side against a background of red, polka-dotted upholstery. +c3cf708d33594ec.png The drinking cup is a clear glass mug with a ridged texture, viewed from a slight overhead angle, resting on a speckled countertop amidst metal cookware in a kitchen setting. +30cedf1bf88b4f9.png A clear, transparent glass cup with a blue and red stripe design is held at an angle against a quilted beige background near a red draped fabric. +99429d551f5148c.png The transparent glass cup, viewed from an overhead angle, sits on a dark brown, textured wooden surface with a plain white wall and a small black circular object in the background, featuring a wide brim and thick base. +cca745ff648948a.png A metallic, reflective silver drinking cup is viewed from above at a slight angle against a red-brown floor, with a black and red object in the shadows and light casting from the right. +9b91288655c9423.png The drinking cup is transparent with a smooth glass texture, viewed from a tilted angle held by a hand, set against a speckled, earthy-toned tiled background near a metal bucket. +e1c89c912fa9415.png A metallic silver cup with a smooth reflective surface is viewed from above, surrounded by a textured, dusty green surface that creates a muted, softly blurred background. +0f96945208cb42c.png The clear glass cup, held horizontally by a hand in an orange sleeve, features a subtle gloss with a small white design visible inside, placed against a background of a wooden table, colorful cloths, and a patterned rug. +4bc1627015b846b.png The drinking cup is a transparent glass with a large, green stylized "S" on its surface, viewed from the front against a lightly blurred white background with hints of red and blue objects nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/drinking_straw_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/drinking_straw_descriptions.txt new file mode 100644 index 0000000..177005a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/drinking_straw_descriptions.txt @@ -0,0 +1,14 @@ +7c1e2ed76d674fe.png A light blue, slightly translucent straw is held horizontally in a hand over a speckled dark granite countertop, with a distinct floral-patterned ceramic container in the background. +ee553ecca277407.png A transparent, smooth straw is held horizontally by a hand against a wooden panel background. +4d42c4adc30f4b5.png A pale yellow drinking straw with a smooth texture is positioned at an angle inside a clear ridged glass on a dark reflective surface, surrounded by rolls of paper towels and various stationery items near a window. +081ef5bb29c849f.png A transparent, straight-edged drinking straw with a slightly glossy texture is placed diagonally on a quilted gray textile with a zigzag pattern. +fefdd8f872cf480.png The drinking straw appears bright red and transparent, held vertically in a hand, with its opening visible against a speckled, gray countertop background with a white ceramic basin nearby. +0ab5cf863dc84ed.png A yellow, bent drinking straw with a slightly glossy texture is resting on an olive-green fabric surface, with a blurred and abstract, beige-patterned background. +ff9311cb12b0484.png A bright pink straw lies diagonally on a textured beige couch surface, with its smooth and uniform cylindrical shape contrasted against the woven fabric pattern. +4a8aaa865984490.png A maroon drinking straw with a smooth texture is lying horizontally on a textured bedspread, with slight folds in the fabric visible in the dimly lit room, and a glimpse of a wooden floor. +ad4b63ce81a349e.png A straight, solid blue drinking straw with a smooth texture is horizontally held in an outstretched hand, set against a background of white paneled cabinets with gold handles. +c86d9a9b6a14406.png A green drinking straw with a smooth texture lies diagonally on a speckled, granite-like countertop, displaying slight reflections along its surface. +0d1cb3f9db264bd.png The drinking straw is metallic and shiny, held at a diagonal angle in a hand over a textured brown leather surface, with a person's arm and a partial view of their head visible on a sofa with tufted detailing. +a834d60262ea448.png The drinking straw appears to be orange with a smooth texture, viewed slightly from the side against an indoor background featuring a white door and beige walls, with a visible wrinkle or bend near the top. +c9e96454a1c74c4.png A translucent green drinking straw lies horizontally on a beige carpeted floor, with a floral and abstract patterned background, capturing a low-angle perspective. +45506c00340d457.png A slender, orange drinking straw with a matte finish is held horizontally by a hand over a leopard print and orange quilt, with a light, speckled wall in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/drying_rack_for_clothes_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/drying_rack_for_clothes_descriptions.txt new file mode 100644 index 0000000..d5e456e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/drying_rack_for_clothes_descriptions.txt @@ -0,0 +1,14 @@ +cb571d78ead141a.png The drying rack, viewed from an oblique angle, is wooden with a natural finish, featuring an accordion-style design, set in a tiled living room with yellow walls and a TV in the background. +94074021ca7e46d.png The drying rack for clothes is metallic with black plastic joints, viewed from an angle in a cluttered indoor environment with shoes, bags, and hanging jackets in the background. +089b133653d44f2.png The drying rack is metallic with a lightweight, silver frame positioned sideways, holding a mint green cloth in a compact room with white tiled flooring and floral-patterned curtains. +df00e07168db448.png A metallic folding drying rack with a triangular shape is held by a person in a carpeted room with white walls and a door in the background. +e2096f64b67e493.png The drying rack for clothes is white metal with a grid-like structure, seen from an angled overhead view, positioned on a textured area rug with contrasting light and dark patterns. +2972df619a134c4.png The drying rack, viewed from a slightly elevated indoor perspective, is white with a minimalist, horizontal design and holds various colorful towels against a backdrop of light walls and a hardwood floor, featuring a small dog in the foreground. +41eec5eeca16429.png The drying rack is metallic with a silver sheen and black joints, standing in a tripod-like pose on a wood-patterned floor, set against a blue wall with adjacent exercise equipment visible in the background. +e8f32e933b1b4e1.png The drying rack is black with a metallic texture, positioned diagonally in a cluttered room featuring a blue-painted wall and a bed, and it appears to have multiple horizontal bars, adding stability to its angular stance amidst a backdrop dominated by typical bedroom furnishings and decorations. +c71677bce13a4bc.png The drying rack is metallic with a lightweight, collapsible structure, set in an upright position next to a wooden dresser in a bedroom with hardwood flooring, under a window with a valance. +35fbc31f5d67459.png A wooden drying rack with a natural finish and a teal frame is positioned sideways on a tiled floor in a laundry room, with visible laundry appliances and a green wall in the background. +39e69212d5ae4d7.png The object is a white, triangular drying rack with a metal texture, positioned upright against a wooden door, in a tiled room with minimal decor and neutral tones. +090059e4be134c4.png The drying rack is white with a minimalistic wireframe design, positioned diagonally in a pink-tiled bathroom with a partially open doorway in the foreground and a sink and various toiletries visible in the background. +b44c7f0641454bf.png A metallic, gray, folding drying rack with a zigzag structure is positioned at an angle on brown carpet near a white wall, with an open door leading to a lit hallway in the background. +cd5def08af62467.png The drying rack features white metal bars with a bulky, dark shape partially obscuring the lower view, set against a light mint green wall, surrounded by colorful clothing and a variety of household items in a cluttered indoor space. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/drying_rack_for_dishes_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/drying_rack_for_dishes_descriptions.txt new file mode 100644 index 0000000..7a1b36e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/drying_rack_for_dishes_descriptions.txt @@ -0,0 +1,14 @@ +471e228a5544474.png A black, grid-patterned dish rack is positioned centrally on a quilt-covered bed, surrounded by a cluttered bedroom with visible textiles and furniture. +f64baeb7e8ea440.png The drying rack for dishes is a vibrant red with a smooth texture, sitting upright on the green countertop beside the sink, in a kitchen environment with dark cabinets and visible cleaning products nearby. +735dcff5ec1341f.png The drying rack for dishes is white with a simple, smooth plastic texture, positioned upright near a dark wall, partially overlapping a wooden chair holding stacked magazines on a wooden floor. +8e09aab6c0b24b5.png A ceramic mug with red and orange leaf patterns rests inverted atop a drying rack positioned near a stainless steel sink, with various kitchen items including another mug visible underneath in a dimly lit environment. +3b74d6db3e20461.png I can't identify a drying rack for dishes in this image. +62896a912698442.png The wooden drying rack for dishes is an angled structure with multiple slats, set on a beige countertop beside large water jugs, within a wood-paneled kitchen environment. +b3e4b5c551e449a.png A white, wire dish drying rack with a grid-like structure is positioned vertically against a dark fabric surface amidst a cluttered background of assorted personal items and a beige carpet. +690ec0ff22724a5.png A white, slim, multi-tiered dish drying rack is positioned vertically on a purple, tufted armchair, with a cluttered background including a basket of folded towels and a mirrored wall reflecting nearby furniture. +8f2bde246b734b0.png The drying rack is a metallic, chrome-colored structure with parallel wire slots, positioned on a patterned mat in a kitchen setting, containing a white plate, a red-lidded container, and a translucent box amidst a brown countertop and beige wall background. +6812c059504d45a.png The drying rack is white and plastic with a glossy texture, positioned at an angle on a red and black floor mat over wooden flooring, with a visible blue label and a metal sink and wooden cabinets in the background. +7b852ea3ad57460.png A black plastic dish rack with vertical slots and a shiny, smooth texture is seen from a slightly elevated angle, placed on a wooden floor in a living room near a modern TV stand. +c3cb09d959b6496.png A black plastic dish drying rack with a grid pattern is viewed from above, holding a green ladle and various utensils, placed on a marbled countertop against a yellow wall background with white paneling. +8471010f62014f0.png The drying rack is white with a simplistic grid texture, viewed slightly from above on a beige carpet, with a red broom propped up against a wall in the background. +433132217323489.png A white, metal drying rack with a grid-like structure is positioned on a speckled granite countertop in front of a stainless steel oven, with dark wooden cabinets and a bottle of dish soap in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/dust_pan_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/dust_pan_descriptions.txt new file mode 100644 index 0000000..76f8b8d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/dust_pan_descriptions.txt @@ -0,0 +1,14 @@ +23775dd89009403.png The dust pan is white with a smooth texture, viewed from a side angle, held in a hand against a living room background with bookshelves, and has a distinctive rounded handle. +0dd90eb5c06141a.png A small white dustpan with a matching mini brush featuring bright blue bristles is held in a hand against a decorative, patterned fabric background with a mix of gold, red, and green hues, viewed at an overhead angle. +e7575f5f090f467.png A red, glossy plastic dust pan with a short handle and a small hole near the end, is lying face-up on a tiled floor with beige and light gray tiles, against a backdrop of a narrow strip of mosaic tiles and a wooden floor edge, viewed from a slightly elevated angle. +a78ccf465daa4bb.png The dust pan is red with a smooth texture and slightly glossy finish, viewed from above on a beige carpet next to a patterned fabric object, featuring a handle and a black rubber edge clearly visible but without intricate details. +2e322826cc18419.png A dark gray dust pan, with a slightly angled view showing its rectangular scooping edge and internal ridges, rests on a contrasting black and beige tile floor with a red handle attached. +5bb0fd3906a3400.png The dust pan is bright red and glossy with a smooth surface, lying flat on a patterned carpet next to a floral upholstered couch in an indoor tiled setting. +aac920b2031844c.png A blue plastic dustpan with a white handle is lying on its side on a tiled floor, surrounded by a minimalistic room with muted grayish tiles and a visible part of a chair and a robotic vacuum nearby. +f5d1e86ca5604b1.png A red dust pan with a smooth texture is held at an angle, showing its flat edge and handle, against a tiled floor with a dark mat nearby. +15f1ce9320f545e.png A light gray dustpan with a smooth texture and a black rubber edge is lying horizontally on a wooden floor, with a curved handle pointing towards the bottom right corner, next to a person's leg. +4330b0c2a19b44c.png The dust pan is blue with a smooth texture, lying flat on a wooden floor; its handle extends towards the camera, featuring a hole at the end, and it is positioned near a wooden table or chair leg in the background. +c0218673c26e487.png The dust pan is white with a smooth texture, viewed from above at a slight angle, featuring a label on its surface, and it rests on a tiled floor background with a foot and shoe partially visible. +8117e829accc407.png The red dust pan, viewed from above, rests on a tiled floor with a cream and beige pattern, featuring a slight sheen and a textured rubber edge along its wide mouth. +162c971fd331440.png The image shows a bright red dust pan with a smooth texture lying upside down on a diagonally tiled beige floor. +e9d0eb0ee00e493.png A light blue dust pan with a smooth texture is positioned flat on a speckled beige floor, viewed from above, with a short handle and the edge of a patterned rug visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/dvd_player_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/dvd_player_descriptions.txt new file mode 100644 index 0000000..9ceec69 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/dvd_player_descriptions.txt @@ -0,0 +1,14 @@ +5608b218014a49b.png A black device with a matte texture, viewed from a slightly elevated angle, rests on top of a yellow object with graphic elements, set against a plain greenish wall background, and features a visibly dulled or scuffed surface on top. +b267e04adef345d.png The black device has a smooth texture, viewed from above, placed on a tiled floor with visible cables and a hand resting on it, featuring a front panel with several small circular buttons or indicators. +f18c56df6906448.png The low-resolution image shows a black, slightly glossy DVD player with a flat, slanted, rectangular design, viewed from an angled top perspective, sitting on a wooden cabinet with several stacked DVDs and another black electronic device on top, casting subtle shadows on the wall and surface. +993bdaf0535848c.png The object is a compact, silver and black hi-fi stereo system with a glossy plastic finish, prominent circular controls and display in the center, viewed from the front, housed in a dark wooden cabinet, with decorative wallpaper in the background. +aa419c36343640e.png The black, matte-finished object, viewed from above, has a slight central indentation with a glowing orange line, placed on a table next to a can and glass, with a textured backdrop of various colorful bottle caps. +b7f4df3188424b3.png The low-resolution image shows a dark-colored, possibly black or dark gray rectangular object resembling a DVD player, positioned horizontally on a stand within a cluttered interior space, with visible cables and electronics in the background. +97d171f58ce8412.png The DVD player appears black with a glossy texture, viewed from an elevated angle, set against a dark background with visible orange connectors and circular silver buttons. +d17d1e3caed8439.png The DVD player is black with a smooth texture, viewed from a side angle, partially obscured by a patterned pillow with stylized eye graphics and surrounded by soft fabric. +e8257fe2603b417.png The DVD player has a matte black front panel with white branding text and a shiny reflective surface on top, viewed from a slightly elevated diagonal angle on a wooden table background, with visible connectivity ports on the side. +c023c4833583472.png The object is a white rectangular console with a matte texture featuring small perforations on one side, positioned horizontally in a black shelving unit with visible cables and other devices nearby. +56c7086d110f48d.png The object is a white, rectangular device with a textured pattern on its front side, seen from a slightly elevated angle on a dark shelf with visible cables and other electronic equipment surrounding it. +894e89d2069f411.png The DVD player is metallic silver with a smooth texture, viewed from a side angle in a vertical position on a light wooden floor, with distinct button details on the side panel and plastic storage bins in the background. +e94eaf04eb6f43c.png The low-resolution image shows an angled view of a black tower-style electronic device with silver detail, placed next to another black device labeled "Emerson," in a wooden shelving unit environment. +0da439ad8ffd402.png The black device with a matte texture, viewed from a slightly elevated angle, rests on a wooden shelf with a visible Kinect sensor on top, surrounded by a simple home environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/earbuds_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/earbuds_descriptions.txt new file mode 100644 index 0000000..8fb1a5b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/earbuds_descriptions.txt @@ -0,0 +1,14 @@ +077f1b109d044d3.png The earbuds are matte black with a smooth texture, viewed from above on a wooden surface, characterized by their rounded tips and thin, tangled cables. +5d6c3099f6264d2.png The earbuds are silver with a glossy texture, laid flat on a smooth, light-colored tile floor, featuring a long, slightly tangled cable and small in-ear tips. +8e493e0c5a32440.png White wired earbuds with a glossy finish are tangled and placed on a yellow padded envelope atop a wooden surface, set against a floral-patterned fabric backdrop in a dimly lit room. +fedcf016ad834de.png The earbuds are black with a smooth texture, seen from above in a tangled arrangement on a beige bedspread amidst a casual bedroom setting. +ee0111b2935444b.png The black earbuds with a gloss finish appear tangled on an orange surface, featuring a straight audio jack and inline remote visible amidst the wires. +c75352659e264f5.png The earbuds are black and blue with rubbery texture, shown from a top-down angle on a bathroom counter with a nearby plastic container and toothbrush in the background, featuring a wire connecting them with visible inline controls. +61303d1df2b0410.png The black earbuds with a wired design are tangled and resting on a marble floor with a neutral beige and gray background, viewed from above. +417a9b95ac3a457.png Two white earbuds with a smooth texture are seen lying on a wooden surface, with their wires trailing towards the bottom right corner, positioned in a top-down perspective. +94ba34ce49e74ae.png A pair of classic white, smooth-textured earbuds with a glossy finish are positioned at a slight angle on a beige surface featuring white parallel lines, reflecting soft lighting with shadows enhancing their contours. +b5a2ab42788f444.png A tangled set of white wired earbuds with visible ear tips is held in a hand against a patterned fabric background, viewed from above. +e3b09477b5fd48b.png The image shows black earbuds with visible wires lying intertwined on a brown textured surface, viewed from an angled top perspective against a white wall as the background. +3874b5e8b3104f7.png A black earbud with a slightly textured, cylindrical shape and a visible logo is held in a hand, set against a light-toned bathroom background with a shower stall and toiletries. +b4fd94c2363a44c.png The earbuds are white with a smooth texture, appearing tangled in a person's hand over a white bathroom sink counter, with a sleek design and in-ear style tips noticeably visible. +7bfc449e71e540b.png The image shows pink and white earbuds with a glossy texture lying on a glass coffee table, viewed from above, set against a fuzzy, patterned carpet background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/earring_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/earring_descriptions.txt new file mode 100644 index 0000000..b32235b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/earring_descriptions.txt @@ -0,0 +1,14 @@ +1f18d38e0add44a.png The earring is a metallic hoop with a twisted design, showcasing a golden color and a reflective, smooth texture, lying flat against a dark fabric background. +b8d519b1f6a0450.png A thin, metallic hoop earring with a smooth, shiny texture is positioned flat on a textured dark surface, featuring a small gap where the ends meet. +d8c5817e8389444.png A pair of circular, silver-colored earrings with a textured, glittery surface rests on a gold card atop a metal stovetop, near a burner and surrounded by a kitchen-like environment. +26b700be6498499.png The earring is a metallic hoop with brown beaded accents, viewed from above on a white marble surface, set against a tiled bathroom floor background with a toilet and foot partially visible. +3a1fd6443eae4e3.png The earring is a small, gold-colored stud with a round shape, shown from a top-down view on a wooden surface with a reddish-brown hue, surrounded by keys and other personal items. +16f89e2de2d24cf.png The earring is a silver-toned, textured circular stud with a densely packed pattern of small protrusions, viewed from above on a wooden surface background. +70a165748096423.png A shiny gold oval earring with a white circular accent is held by a hand over a light wood surface, featuring a spiral wire and clasp. +50bc12565692428.png A pair of drop earrings with subtle square pendants featuring a pale, translucent hue and smooth texture, viewed from above on a dark, mottled marble surface. +957579816b6340a.png A gold earring with intricate detailing and a teardrop shape is seen from a side angle, worn by a person in traditional green and gold attire, against a blurred indoor background. +51f793e81c024d8.png A silver stud earring with a small, white, faceted gemstone set in a prong setting is held between fingers against a blurred kitchen background with dark cabinetry and stainless steel appliances. +c694e3980f14469.png A small, silver, textured earring with a sparkling floral design is positioned on a soft, quilted white surface, viewed from above at an angle, with its post visible. +63e102fdddb94d4.png The earring is a small, glossy white pearl stud with a metallic post, held between two fingers against a smooth, light gray background with a speckled countertop visible below. +cba59cee866e4a6.png The earring features a small, glossy black spherical bead held by a silver post with a clear back, lying flat on a wooden surface with a blurred desk background. +be73b46ea26b434.png The earring features a gold-colored, intricately designed piece with a central purple accent, teardrop shapes, and a beaded edge, situated against a blurred dark background with a hint of blue. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/egg_carton_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/egg_carton_descriptions.txt new file mode 100644 index 0000000..8e25d91 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/egg_carton_descriptions.txt @@ -0,0 +1,14 @@ +1e892bbeb96e4d4.png The egg carton is beige with a green label, viewed from a top angle, resting on a round, white, textured table with a light wood grain pattern. +b03d00184b7c4ed.png The egg carton appears light beige with a rough texture, viewed from a slightly elevated angle on a white surface, surrounded by a cardboard box and dark fabric, with clear visible printed markings on its top. +6918818be55e4c0.png A blue, textured plastic tray with round compartments is seen from a top corner angle on a worn, dark surface, partially overlapping a floral-patterned white plate. +df65f3b34613475.png The egg carton is a blue, rectangular grid-like tray with multiple round depressions, seen from above, placed on a marbled floor with a trough of water and cleaning tools surrounding it. +fc3ebee485a9418.png A clear plastic egg carton with a textured surface, held horizontally by a hand, partially filled with brown eggs, set against a wooden floor and the edge of a bed. +1ef7215c5f22444.png A clear plastic egg carton with an orange label is seen partially open and lying diagonally across a beige marble countertop, surrounded by bathroom toiletries and wooden cabinet drawers in the background. +dad22671519a48e.png The pink egg carton, viewed from an angled top-down perspective, rests on a patterned tablecloth next to white paper towels, with a slightly bumpy and matte texture. +040ee6c64d304a3.png The egg carton is a vibrant turquoise with a smooth texture, viewed from above next to a metallic sink, featuring rounded compartments and a flat handle on the side. +eb8e2deffe96491.png A pale blue egg carton with a smooth texture is positioned horizontally on a black granite countertop, surrounded by wooden kitchen cabinets, a toaster, and a set of knives in a block. +2283ce42941b49d.png The image shows a light gray, closed egg carton with a slightly textured surface, viewed from a front-side angle with wooden flooring in the background, held by a hand. +46007571d1e0499.png A light gray, plastic-style egg carton with a honeycomb texture is leaning diagonally against a wooden cabinet, positioned on a tiled floor with a beige and gray pattern, featuring a tightly packed configuration of twelve obvious slots. +00c35c23af5e41d.png A pink egg carton with bold black text is positioned diagonally on a colorful quilt featuring a checkered pattern of pink, yellow, green, and purple patches. +ed38c018317840b.png A horizontally oriented, light brown egg carton with a slightly curved, quilted surface lies atop a grey textured carpet, featuring a green label with text and grass imagery on top. +156da92054134c2.png The egg carton is light gray with a slightly rough texture, viewed from an angle showing the top and side, marked with red labels against a wood-patterned flooring and near a white appliance. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/egg_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/egg_descriptions.txt new file mode 100644 index 0000000..750080f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/egg_descriptions.txt @@ -0,0 +1,14 @@ +9987def86e21456.png A smooth, white egg is held between fingers, viewed from the side against a patterned carpet with various shades of brown and beige, and electronic cables partially visible in the background. +3ced393cdce7460.png A partially transparent plastic bag lies on a flat, smooth brown surface, loosely enclosing two off-white oval objects with a soft, matte texture, visible from an overhead viewpoint. +b5b72681d2034f3.png The egg is mostly white with a smooth texture, resting centrally on an outstretched hand against a speckled countertop background, exhibiting a slightly reflective surface. +66bd532f5b28421.png A single, smooth, light-brown egg is resting on a dark, slightly crumpled fabric with soft highlights, viewed from above at a slight angle, revealing a subtle curve on one side. +c5f85db382a9427.png The egg appears smooth and white with a glossy texture, held in the foreground against a dimly lit, warm-toned background featuring a brick fireplace and a reflective metal surface, viewed slightly from the side. +6e63e32c2904434.png A small, smooth, white egg sits upright on a light wooden surface, surrounded by a simple background with faint markings, with shadowing underneath hinting at overhead lighting. +140f8f80c1ff430.png The egg is smooth and white, held between fingers at an angle where its oval shape is clearly visible, set against a checkered background of white and dark green tiles. +737eef56f343496.png A white egg with a smooth texture is positioned upright on a refrigerator shelf, set against a background of a baking mix package and a yellow mustard container. +2796765348d74bf.png The egg, held in a hand against a muted green background, appears light brown and smooth with a matte finish, captured from a frontal side view. +06f821e8593c410.png The egg is a light brown color with a smooth texture, lying horizontally on a white circular surface with scattered small marks, against a blurred blue edging in the bottom corner. +8fb8e6f6e61442e.png The egg is smooth and white, positioned upright on a beige corner surface with a softly blurred background featuring a vertical contrasting line. +198b9132231f486.png The egg is pale and smooth with an oval shape, resting horizontally on a speckled, stone-like surface in a neutral-toned environment. +8da060df07bb463.png A hand is holding a smooth, white egg against a blurry indoor background with a washing machine and tiled floor visible. +8acc12f05a8a4a8.png An oval, smooth-surfaced, white object is centered on a glossy black speckled countertop, viewed from above. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/envelope_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/envelope_descriptions.txt new file mode 100644 index 0000000..0a196fd --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/envelope_descriptions.txt @@ -0,0 +1,14 @@ +857c48657278420.png The envelope, viewed from above, is predominantly white with a visible logo in blue and gray on its top side, resting on a dark wooden surface set against a plain off-white wall backdrop, with a plastic bag of small metal washers nearby. +f9955be7154040e.png The envelope, primarily white with a distinctive orange interior flap visible, lies flat and slightly open on a smooth, circular gray tabletop against a subtly textured floor background. +da43ca6ea7fe4a7.png A hand is holding a white envelope sideways against a dark brown textured leather surface with light stitching visible in the background. +306c608a776e41e.png The envelope is white with a smooth texture, viewed edge-on next to a wall, on a carpeted floor accompanied by clothing items and a plastic hanger in the background. +be373d58f87f4f0.png The envelope is white with a smooth texture, viewed from an angled side perspective, and is placed on a textured surface in a bathroom setting with beige tiled walls and visible plumbing fixtures, highlighting its flat and simple design. +5d4c55716cb2457.png The envelope is a plain, smooth off-white with a slightly glossy texture, viewed from a top angle on a kitchen counter near a stainless steel sink, with a hand holding its corner and a visible water bottle and paper towel roll in the background. +d20c11d546534a2.png A white envelope with a security pattern on the backside is held by a hand over an open spiral notebook, on a beige surface with a dark laptop visible in the background. +fbc0259b4aca492.png The envelope is white with a smooth texture, held horizontally by a hand over a bathroom counter near a sink, with toiletries and a bottle reflecting in the mirror in the background. +4c3362d249114f5.png The envelope is white with a smooth texture, held horizontally at an angle in a modern kitchen featuring a metallic refrigerator adorned with various magnets in the background. +6abde8ed220c440.png The image shows a small, smooth, white paper envelope held by a person over a vibrantly patterned ironing board cover with a wooden wall background, adjacent to a red spray bottle and an iron. +90ef1dd9b1314fb.png The image shows a white envelope with printed text along its length, placed flat on a beige countertop in a kitchen environment, with visible adjacent items such as a dish soap bottle and a tray with food in the background. +df3564a10bdf407.png The envelope is white and rectangular, laying flat on a bathroom counter near a basin, surrounded by various toiletries like mouthwash and lotion, while part of a toilet paper roll is in the foreground. +38211a1aee7f444.png The envelope appears light gray or white with a smooth texture, held at an angle by a hand in front of a kitchen counter environment, featuring a small visible curve at the top edge. +a386af14666e4f3.png The envelope, viewed from above on a dark wooden table, is plain white with a matte texture, set beside a colorful magazine in a dimly lit, draped fabric environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/eraser_white_board_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/eraser_white_board_descriptions.txt new file mode 100644 index 0000000..1e65123 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/eraser_white_board_descriptions.txt @@ -0,0 +1,14 @@ +9ebc59cc9bcd4e2.png The image shows a hand holding a rectangular whiteboard eraser with a white plastic base and a gray, felt-textured cleaning surface, viewed from the side against a blurred yellow surface and a red object in the background. +0bd39c41cb7042f.png The eraser appears predominantly black with a textured surface, viewed from an overhead angle resting on a hand, against a wooden floor background with nearby scattered objects. +a08c468f476045b.png A black, rectangular eraser with a smooth surface is resting horizontally on a light blue, textured surface with visible lines and tile flooring in the background. +73085d2ccb844b9.png The eraser has a black textured top and a smooth white base, held at an angle by a hand against a tiled floor and an open dishwasher in the background. +d50471c9b65d433.png A rectangular, black plastic eraser with a slightly textured surface is lying flat on a cream-colored leather couch with a visible seam, with a dark background. +4b81e41c60b9487.png The eraser whiteboard features a blue frame with a brown cork section, resting on a white appliance surface near laundry controls, while a gray, rectangular eraser stands upright on it with a slightly fuzzy texture. +cd69b9433b6a417.png The eraser whiteboard is a gray, plastic rectangle with a slight curvature, held at an angle in the foreground against a blurred, tiled bathroom setting, featuring a dark, felt-like base for erasing. +a669dfdb25044ca.png A blue, bone-shaped whiteboard eraser with black wiping surface, held in a hand over a map background on a white surface. +9f55092b6db7402.png A black rectangular whiteboard eraser with a slightly plush gray bottom surface is seen from a low side angle, resting on a speckled gray tabletop with a blurred room in the background. +bef8baa9936340b.png A wooden-handled whiteboard eraser with a dark felt bottom is positioned horizontally on a beige carpet, with a hand visible on the left side. +5cec801cf8824d7.png The whiteboard eraser features a dust-covered, dark gray surface with visible fabric lines, held in a hand against a tiled indoor background with a patterned, vertical partition. +572dfd5197ba4cf.png The eraser has a black felt surface with a bright orange cylindrical handle, viewed from a side angle against a background of wooden flooring and household items. +eda368f999674d4.png The image shows a black, textured dry erase eraser with a blue oval label on top, viewed from an overhead angle against a wooden table background, with parts of a patterned fabric and yellow paper visible nearby. +f942ff57d6ce454.png The whiteboard eraser appears to have a black, textured surface with a rectangular shape, viewed from an angle laying on a beige carpet background, held by a hand. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/extension_cable_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/extension_cable_descriptions.txt new file mode 100644 index 0000000..8a01d85 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/extension_cable_descriptions.txt @@ -0,0 +1,14 @@ +259d2d6247884db.png The extension cable is lime green with a glossy texture, coiled and secured with a white tie, viewed from an angled top-down perspective on a light wood surface with visible flooring and the edge of a shoe in the background. +81ab51590e124b0.png A white extension cable with multiple sockets is placed on a rectangular glass surface with a visible tangle of black cords, set against a textured stone floor and adjacent to a white appliance with a grid pattern. +d02a0cba9a2a4a9.png A black extension cable with a simple two-plug connector is coiled on a dark countertop, set against a cluttered background featuring ceramic jars with tribal patterns and newspapers. +2d48679765bd4f0.png A hand holds a tangled black extension cable against a background of a striped couch, patterned pillows, and a colorful abstract painting on a light-colored wall. +c794a577225145c.png A coiled white extension cable with a ribbed texture and a three-pronged plug is placed on a black speckled floor. +3f6223c14fe2483.png A white and gray coiled extension cable is held in a hand against a backdrop of blue and white tiled flooring and walls, with a visible plug at the end. +0486eab35b2d462.png A white extension cable with a smooth texture lies on a brown carpet, featuring a three-outlet head and a right-angle plug, viewed from above near a textured wall. +6176de4e4b494b1.png The cream-colored extension cable, with a simple smooth texture and three-prong slots, is held vertically against a wooden floor, positioned in front of a cabinet with board games and fabric items in the background. +4bdd8aaf075046c.png The image does not prominently display an extension cable but shows a bathroom counter with various toiletries and items, with a white cabinet beneath and an off-white textured wall with electrical outlets above. +25628525e1494f9.png A white extension cable with a smooth texture is coiled on a carpeted floor next to a green potted plant and adjacent to a door, with visible plug prongs and a socket. +0dd16507df65435.png A white, coiled extension cable with dual outlets is placed on a metal dish drainer against a bright red tile backsplash and adjacent to a kitchen sink with cleaning supplies. +34c9daf3b023440.png The image shows a black extension cable with multiple plugs lying tangled on a tiled floor, accompanied by a red cable, with cardboard boxes in the background, and a person wearing turquoise flip-flops in the frame. +e7e333d8a02d466.png An orange and black extension cable with multiple outlets is lying coiled on a wooden floor, surrounded by partially visible unfinished wood paneling and a bathtub, in a room with turquoise walls. +8b83b373c00446b.png The image shows a white extension cable with a rectangular switch and a blue plug, lying on a beige tiled floor with a speckled pattern. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/eyeglasses_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/eyeglasses_descriptions.txt new file mode 100644 index 0000000..92b50a1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/eyeglasses_descriptions.txt @@ -0,0 +1,14 @@ +4dc4c9ac100844b.png A close-up view shows red eyeglasses with a matte finish, held by a hand over a floral-patterned bedspread, featuring rectangular frames with subtly curved temples. +3c59b7b83e824e5.png The eyeglasses have thin metallic frames with clear lenses, viewed from above on a light wooden surface with visible grain, set in an indoor environment. +2ffc5dd0c9a2496.png The eyeglasses feature a metallic blue frame with half-rim lenses, positioned diagonally on a beige, textured tabletop, displaying a prominent nose pad. +a940e43d427448c.png The eyeglasses have rectangular frames with a shiny golden metallic finish, presented in a human hand at an angle in front of a bathroom mirror with a beige wall and silver faucet in the background. +092b33b7f3df446.png A pair of black-framed eyeglasses with rectangular lenses is resting on a textured, speckled gray and beige floor surface, viewed from an angled above perspective, with the right temple arm partially folded. +c86bac1741134f1.png A hand is holding black-rimmed eyeglasses with a slightly reflective surface from the side, in a dimly lit kitchen environment with a countertop cluttered with oil, a mug, and other household items. +10e42a4cfdff408.png Rectangular eyeglasses with thick black frames and transparent lenses are positioned facing downward on a wood-textured surface, highlighting the glossy green temple arms and the distinct reflection on the lenses. +0cdd1d39ade7459.png The eyeglasses have a sleek black frame with transparent temples, resting upside down on a white laminated countertop with a wooden edge, adjacent to a patterned beige cloth and next to a black stovetop in a kitchen setting. +6177cc5454294e4.png A pair of eyeglasses with thin black frames is being held in a hand against a white tiled floor background, highlighting the rectangular lens shape and gold accents at the hinges. +b293907adf2048f.png The eyeglasses have a metallic frame with transparent lenses, viewed from above and resting on a dark, textured wooden floor, with one hand holding them by the temple. +8b3622ddd98b47d.png A hand-held pair of black-rimmed eyeglasses with red accents on the arms, viewed from the front in a cluttered, carpeted room with a couch, white duvet, and scattered household items in the background. +eaaf374cd63847d.png Rectangular, black-framed eyeglasses are resting on a vibrant red, mesh-textured chair viewed from above, contrasted against a tiled floor background. +83a91bbaf7404d4.png The eyeglasses have a black, glossy frame with a sleek, narrow design, photographed from an angled side view against a textured black chair and wooden floor background, with thin arms extending outward. +c8572b8ab8c24f4.png A pair of purple eyeglasses with a glossy finish lies open and face down on a wooden table, with both arms extended and a cardboard item and jar visible in the blurred background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/fan_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/fan_descriptions.txt new file mode 100644 index 0000000..c9630bb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/fan_descriptions.txt @@ -0,0 +1,14 @@ +d388020b7a5c460.png The ceiling-mounted fan features a blue and white color scheme, visible from a slightly angled side view, against a backdrop of tiled walls with a mix of white, beige, and gray tones, and has a predominantly wire mesh casing. +c7a12889f5fa4ae.png The image depicts a box-style fan with a white mesh grille and visible grey fan blades, set at a slightly tilted angle, placed on a solid green stand against a muted, possibly carpeted background. +4c42ce6fcf064b5.png The fan is a white, compact, tabletop model with three blades, lying on a beige carpeted floor at an angle, beside a dark bookcase filled with colorful books, with a visible cord extending outwards, set in a dimly lit room. +ec0418a957054f0.png The image shows a ceiling fan with a white central hub and three dark, possibly metallic blades viewed from below against a smooth, light-colored ceiling, with a window casting a shadow on the wall. +2c46e6b447d748a.png The fan, with a black cylindrical frame and visible grill texture, is viewed from above while resting sideways on a white, patterned tile floor that provides shadow contrast. +f57df117ace54c7.png The image shows a white, pedestal fan with a mesh grille positioned in an upright standing pose on a bare concrete floor in a sparsely furnished room, with a visible patch of unfinished wall and shelves containing various colorful textiles in the background. +d7e3b833a07e418.png The image shows a red ceiling fan with four broad blades, viewed from below against a corrugated metal ceiling, displaying a slightly worn texture with a visible pull chain on the left. +0492779ec56e4fb.png A ceiling fan with three dark brown blades featuring white decorative markings is viewed from below against a light-colored ceiling background. +9aa56a6c311e49b.png The fan is a tall, slender, tower-style fan with a dark, glossy finish, viewed vertically from the side, positioned against a wall next to an entertainment center in a living room setting with white walls and visible flooring. +dccb3df986cb408.png The fan is a ceiling-mounted unit with a reddish-brown hue and blurred, spinning blades, viewed directly from below against a light green wall and white ceiling background, exhibiting a smooth texture. +bf67177d8313420.png A black, cylindrical tower fan with horizontal vents is viewed from an oblique angle against a wooden floor, with a noticeable angled power cord and the edge of a fuzzy slipper in the foreground. +a0837469927c41f.png A blue pedestal fan with a circular mesh grille and visible oscillating mechanism is viewed from a slightly elevated diagonal angle, positioned on a marble-patterned floor with a cluttered room, including a door and hanging objects, in the background. +acb9fbcf01fd4b9.png A white exhaust fan with a square casing is mounted on a light blue wall, viewed from below, featuring five slightly curved blades and faint markings on the casing. +e2d76d68b5e64a2.png A black pedestal fan with a red fan guard is lying horizontally on a polished wooden floor in a dimly lit living room with sofas and a coffee table in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/figurine_or_statue_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/figurine_or_statue_descriptions.txt new file mode 100644 index 0000000..1da5602 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/figurine_or_statue_descriptions.txt @@ -0,0 +1,14 @@ +e795615d1535422.png A small, golden figurine resembling a frog with a coin in its mouth is positioned on a wooden table, casting a shadow, with a cluttered kitchen background including a container, bottles, and cloth. +15e1d29f555644c.png A smooth, white, curved figurine is held in a hand against an intricate, patterned carpet background with earthy tones. +eae7cc351b7847c.png A small golden figurine with intricate detailing sits serenely on a polished marble floor, reflecting light from a window visible in the blurred background. +ea4050e9b1f743c.png A greenish-bronze figurine in a seated, contemplative pose is positioned against a maroon backdrop, placed on a tiled floor with visible grime and shadowing. +9c9bf5df30bc4d8.png The object appears to be a small, dark metallic figurine with a narrow, elongated shape adorned with decorative floral patterns, viewed from the side, and is placed on a dark, smooth tabletop with a blurred background. +f005114939ca474.png A small, smooth, white figurine with an indistinct front view shows delicate wings and is set against a plain, soft fabric background. +f2dcd9e655d5415.png The figurine of a rooster, with a textured off-white body and vivid red comb, is held in a hand against a bathroom setting with a faucet, soap dispenser, lotion, and toilet paper in the background. +f6e766a40c6a48b.png A delicate figurine of a young couple with a porcelain-like texture, the boy dressed in a dark suit holds a bouquet while the girl in a white dress stands beside him, set against a softly blurred background with floral motifs. +c03ed3119967419.png A dark gray, textured figurine depicting a robed figure holding a staff stands on a black table, set against a backdrop with comic and fantasy-themed posters. +498dac5ea89d41c.png An angel figurine with pastel colors and small wings, wearing a flowing gown and set on an aged wooden dresser against a brown wall. +c52329488f214c1.png A pale, textured dinosaur-shaped figurine with small holes is set on a striped cloth mat against a tiled backsplash, viewed from an elevated angle. +811619580c8e42e.png A dark-colored, low-resolution statue features two small, seated animals on a flat base, set against a patterned red fabric background. +982fcd0b6752400.png The figurine depicts a person with light brown textured hair and a beige and green robe, holding an object, standing near a bathroom sink with a metallic faucet and a roll of toilet paper in the background. +67fb0d7a0da74d1.png A ceramic figurine lying on its side displays a fish shape with gradient blue and white coloring, contrasting with the tan tiled floor background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/first_aid_kit_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/first_aid_kit_descriptions.txt new file mode 100644 index 0000000..0377265 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/first_aid_kit_descriptions.txt @@ -0,0 +1,14 @@ +b38e1b0a189f40d.png A translucent, rectangular first aid kit with a blue latch is positioned on a dark green countertop against a tiled wall background, containing visible white tube and other contents inside. +1fe8dc110b4048d.png A white, slightly glossy box with red and black text, labeled "BAND-AID," is held up in front of a kitchen countertop with a white toaster and utensils in the background, viewed at an angle showing the top and side. +7be9320d9c7d46e.png A red, semi-transparent first aid kit is positioned upright on a kitchen counter, revealing contents through a clear plastic front with a prominent horizontal and vertical red cross design amidst a cluttered background of paper towels and plants. +2eac4870169c498.png A rectangular white first aid kit with a textured surface and the red text "BAND-AID" on top is placed at an angle on a dark granite countertop, with a glimpse of a colorful object in the background. +45e1ef1661b3433.png The first aid kit is a small, rectangular, white and gray plastic box with a shiny surface, viewed from an angled side perspective, against a bathroom counter backdrop with a person's fingers touching it, featuring embossed text on one side. +754e87eb0201400.png The first aid kit is vibrant red with a smooth texture, positioned upright on a dark leather seat, flanked by a beige quilt and illuminated by soft natural light from a nearby window, showcasing a rectangular shape with visible black zippers and seams. +e31aab97ff3346d.png The first aid kit is bright red with a smooth texture, featuring a white cross and text, positioned on its side on a light brown tiled floor, partially resting against a book and surrounded by a slightly cluttered indoor environment. +bc899897b7ec4b8.png A red, textured fabric first aid kit with a dark gray zipper and handle is lying on a light wooden floor in an indoor setting, with text and a logo visibly printed on its surface. +b775a9cea36a44d.png A small, white, hard-plastic case with smooth edges, viewed from a slightly elevated angle on a speckled countertop with a drawer underneath, and surrounded by various household items. +8f53477a957c446.png A black, portable first aid kit with a white cross and text, being held in a hand against a kitchen setting with a coffee machine and stacked plates in the background. +31b6233c0337470.png The first aid kit is a compact, green fabric bag with a partially open top revealing a neon yellow item and various medical supplies, situated on a wooden bench against a tiled bathroom wall, with a person's hand resting on it. +6bf02f33b5e7475.png The object is a small, rectangular, white plastic case with a smooth texture, seen in side profile, held by a hand against a wooden table background, featuring a slightly translucent lid. +5f0060a1440e411.png A white rectangular first aid kit with a red medical cross and text is placed on a green, circular plastic stool in a tiled bathroom environment. +fc69486f84b8492.png A transparent plastic first aid kit with orange clips and a white label sits closed on a beige bathroom countertop near a blue-capped bottle, viewed from a slightly elevated angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/flashlight_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/flashlight_descriptions.txt new file mode 100644 index 0000000..c16da8e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/flashlight_descriptions.txt @@ -0,0 +1,14 @@ +279dd979a08843c.png The orange flashlight, featuring a textured surface with a metallic stripe, is lying horizontally on a dark, mildly reflective surface next to a round object, with its strap extending outward. +dee208e095bb43b.png A small, cylindrical black flashlight held upright by a hand on a tiled floor, with a strap hanging down and softly lit background showing windowed interior furniture. +e4063bf5397f489.png A small blue metallic flashlight with silver rings on the head, viewed from above, lying horizontally on a light textured surface resembling carpet, with a visible black clip along its side. +924d6f2fc9d6438.png The flashlight is black with a yellow band near the base, held horizontally in a hand over a plaid-patterned bedspread with a quilted coverlet and curtains in the background, and a lanyard is attached to its end. +ba8e01ad25f347e.png A black cylindrical flashlight with a slightly reflective surface is laying on a flat beige floor, surrounded by an electrical strip and wall-mounted objects. +7673200f6d634b7.png A red and silver flashlight with a slender handle and a rectangular button panel is lying horizontally on a speckled gray tiled surface. +3b791baa14234de.png A black, textured flashlight with a scalloped bezel is shown vertically standing against a red quilted mattress with white floral patterns, illuminating the surface below in a dimly lit room with a beige fabric in the background. +75258fb90af24cf.png A person holds a small, cylindrical, black flashlight with a silver tip, against a background of a gray fabric sofa and a cluttered room with a carpeted floor. +98fcfc47f350485.png The image shows a smartphone held in hand with a bright light emanating from the rear camera area, set against a blurred indoor background composed of a table and assorted items. +664a9c993e904dd.png A round flashlight head with a yellow center and silver rim is viewed from above on a wooden floor background, with visible flooring grain and warm brown tones. +563f991cc4e6480.png A small red metallic flashlight with a knurled grip and black wrist strap is lying horizontally on a beige countertop with a partial sink edge visible in a bathroom setting. +f7f7bdfd157a492.png A small, black flashlight with a smooth texture is positioned horizontally on a patterned, light-colored carpet, set against a background featuring fabric with circular and floral designs. +b19f9c9ef8b3461.png A black and red flashlight with a rugged casing and a prominent handle is lying on a marble-like tabletop, viewed from an angle, with a plain indoor setting in the background. +0e062a46a69a444.png A black flashlight with a textured grip and an orange label is positioned vertically on a patterned pink and black fabric background, featuring a shiny, reflective lens. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/floss_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/floss_container_descriptions.txt new file mode 100644 index 0000000..3eeb55d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/floss_container_descriptions.txt @@ -0,0 +1,14 @@ +c9844a29a5584b5.png The floss container is a matte blue rectangular object with rounded edges, viewed from a low angle on a fuzzy dark blue fabric background, featuring a small embossed logo on its top surface. +0e97a8ded94f4d2.png The floss container is white with a smooth texture, viewed from the top against a beige, slightly reflective surface with subtle lines and a small orange stain. +e86adb5a4eb1432.png A metallic silver floss container with rounded edges features a printed blue logo on top, viewed from an oblique angle resting on a speckled brown countertop, highlighting a small side indent and visible serial numbers. +94e2662ce9a646a.png A turquoise floss container with a smooth, semi-transparent texture is held horizontally in a hand against a wooden floor background. +f731d8f4d0f749c.png The floss container is a translucent blue with text visible on its front, held upright in a hand against a bathroom background featuring white and pink tiles and various toiletries. +f90c3bfce84441a.png A matte white, rectangular floss container with rounded edges is held partially sideways in a hand over a brown, marbled countertop, displaying a faintly embossed, undecipherable label on its side. +b61cc45a9d7644d.png The floss container is white with a smooth texture, viewed from a top angle showing an oval shape, featuring a colorful label at the center against a neutral beige grid-patterned background, highlighted by the presence of a human hand holding it. +432ab7beb01a4d5.png A white, rectangular floss container with black and red text on its top is viewed from an overhead angle against a speckled granite countertop, showing a slightly glossy finish. +3f9ad9151bfd4f5.png A semi-transparent, rectangular floss container with a white and teal label is being held in a person's hand, set against a dimly lit indoor background with visible carpet and furniture upholstery. +fe333aa21390435.png The floss container is a white, textured, triangular-shaped object with dark green and yellow labeling, placed at an angle on a beige counter next to a sink and partially visible packaged items, against a vertical white wall. +7b11b5077b15414.png The floss container is white with a smooth texture, held in a hand at an angle, displaying bold black and red text, set against a mottled, gray background. +ffc318d8f8f5495.png The floss container is a light gray, rectangular object with smooth, matte texture and rounded edges, held in a hand against a dark, reflective surface, featuring distinct blue and white branding on the front. +1302ca73f9714dd.png The floss container appears bright green with a smooth, glossy texture, seen in a side view on an orange, textured fabric background, and features a visible flap on one side. +691ef96342d14c5.png The floss container is a translucent blue, rectangular shape with rounded edges, resting on its side against a stack of colorful notebooks on a textured, dark surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/flour_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/flour_container_descriptions.txt new file mode 100644 index 0000000..70e5adc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/flour_container_descriptions.txt @@ -0,0 +1,14 @@ +c5e0b19f61454c6.png The flour container is a transparent square-shaped plastic container with a black lid, viewed at a tilted angle on a light-colored carpet in a living room environment, featuring a distinctive black label on its side. +9da7b33935284b6.png A white, semi-transparent rectangular flour container with a blue lid lies on its side on a speckled brown countertop, surrounded by other kitchen items including a metallic thermos and a black oven mitt, against a dark flooring. +5720ca1df8f6428.png A white ceramic flour container with an illustrated design, viewed from an overhead angle, sits on a black stovetop against a kitchen backdrop featuring a toaster and metal pot. +c03e43e3ed92454.png The flour container is a clear glass jar, lying on its side on a black countertop with a white screw-on lid detached beside it, set against a tiled white backsplash and partially obstructed by wooden cabinetry and a window with blinds in a kitchen environment. +aa2c6618745b4ca.png A hand is holding a blue and white flour container with nutrition facts visible on a wooden table background, with part of a black fabric object at the edge of the image. +63774648a3b944b.png A semi-transparent, plastic flour container with a white lid is viewed from a slight upper-angle, sitting on a granite countertop with visible handwritten labeling and a scoop partially buried inside the flour. +3dbb153ab5f0442.png The image shows a semi-transparent, slightly frosted plastic flour container with a red lid, lying on its side atop a floral-patterned tablecloth with blurred interior elements in the background. +9660e53da6ad42b.png The image shows a rectangular flour container lying on a carpeted floor, featuring a beige color with a blue label and partial branding visible, alongside an electric tool nearby. +657d81bda00646a.png The flour container is a light yellow packet, held at an angle with visible text and a logo, against a modern kitchen background with gray tiled flooring and open cabinets. +c6e2948302e944d.png The flour container is a transparent jar with a red lid, viewed from a slightly elevated angle, positioned on a dark countertop against a tiled wall backdrop featuring a plant-like pattern, amidst various colorful bags and kitchen items. +5dbfd4acadf6426.png The image shows a white paper flour bag with blue and orange accents and visible text on the side, viewed from an angle on top of a white toilet lid beside a dark rectangular bottle, with a plain light-colored wall in the background. +ea15a9130a4b421.png The image shows a bright red, translucent plastic container with a visible lid, placed on a green-tiled floor in a tiled corner with evident water spots on the tiles. +7c1d1335e819451.png A white and red paper flour bag is seen resting on a carpeted floor from a slightly elevated side angle, with a worn, crumpled texture and a dark background. +b50a8457f461425.png The container is a clear cylindrical jar with a shiny metallic lid viewed at an angle against a beige wall, distinguished by its transparent body revealing contents sealed in a plastic bag inside. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/fork_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/fork_descriptions.txt new file mode 100644 index 0000000..a9a7778 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/fork_descriptions.txt @@ -0,0 +1,14 @@ +ec2609b557724e7.png A slightly bent, metallic fork with a shiny silver surface lies on a speckled beige countertop, casting a clear shadow, with warm-toned tiled flooring visible in the background. +f8d95d3f8bab492.png The fork appears metallic with a slight reflective sheen, viewed from a side angle showing its curved prongs, set against a speckled, light-colored surface with mild shadows, contributing to a minimalist aesthetic. +11f52b0577a243d.png A transparent plastic fork is lying horizontally on a textured fabric surface with beige and grey tones, amidst folds of rumpled cloth, seen from a slightly elevated side angle. +f6810028432f46a.png A metallic fork with a blue rubber handle is seen from a slightly angled side view against a wooden surface background, featuring four tines curved upwards. +5ac172669392485.png The fork features a shiny, metallic finish with a slightly twisted handle held in a thumb and forefinger grip, set against a carpeted indoor room with wooden furniture in the background. +18c79fb4930c45e.png A metallic silver fork with a shiny texture stands vertically upright in a white sink, with light green and white tiled flooring visible in the background. +8f4e735d47264ea.png The fork has a smooth, dark handle with a metallic finish on its prongs, viewed from above on a speckled countertop with other kitchen items nearby. +ea5cb62b22f84b1.png The fork has a shiny, metallic appearance with a slight gold tint, held in a hand against a backdrop of light brown wooden flooring and a patterned rug. +01b0fce10adc45f.png The shiny, metallic fork with four equally spaced tines is resting horizontally on the edge of a stainless steel sink, contrasting with the dark, textured countertop background. +0040ce2e926e41b.png A metallic silver fork with a matte finish is held in a hand, viewed from above, against a light tiled floor background, with four narrow, evenly spaced tines. +98f7e61e290f47d.png The fork, held in a hand and viewed from a side angle, has a metallic silver color with a smooth texture, set against a floral-patterned fabric backdrop, with short tines and a curved handle. +b46e99b299f94f5.png A small, metallic fork with a shiny, reflective texture is held horizontally in a hand against a textured gray carpet background, with its short tines clearly visible. +a83ecea4f18a426.png The fork, seen from a side angle on a white countertop, appears metallic with a shiny texture and casts a shadow, set against a kitchen-like background with jars and cabinets. +943182372f16428.png A silver fork with a slightly reflective, smooth texture and ornate handle detailing is lying flat on a light wood surface, illuminated by diagonal sunlight from the upper right corner. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/frying_pan_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/frying_pan_descriptions.txt new file mode 100644 index 0000000..be1e033 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/frying_pan_descriptions.txt @@ -0,0 +1,14 @@ +b07a0bf9615349a.png A person holds a black, smooth frying pan at an angle in a cozy living room with wooden flooring, a dark couch, and a cluttered wooden coffee table in the background. +2f93634e6d9e40a.png A small, round frying pan with a black handle and gray surface lies flat on a tiled kitchen floor, featuring a faint shadow on the white tiles and surrounded by white cabinetry and appliances. +79c997bd909e4cc.png A silver, smooth-textured frying pan with a shiny metal handle lies bottom-up on a wooden table with a patterned surface, against a carpeted floor backdrop. +1ae50485001a46e.png A red frying pan lid with a black handle is seen from a top-down angle resting on a dark fabric surface with a cluttered background including a peach-colored fabric, plastic bottles, and boxed items. +7cdd9dcc9f1e44b.png The frying pan is black with a smooth, somewhat shiny surface and a handle, viewed from a top-down angle on a glass table in a kitchen setting, surrounded by various bottles and utensils. +ae88092351094b5.png The frying pan is a dark-colored, smooth-textured object viewed from above, resting on a patterned fabric surface amidst various household items, with its round shape and handle discernible despite the image's low resolution. +863d156a32ea45a.png The image shows a gray, slightly curved object resembling a dustpan held in a hand, viewed from the side against a background of a tiled floor and a beige door with a golden handle. +29ea7d8b14bd413.png The frying pan in the image is black with a smooth texture, held horizontally by a pair of hands near a corner of a beige tiled floor with a wooden wall, and features a slightly reflective surface that contrasts with the matte surroundings. +e7e5b93f48144ab.png The frying pan is a metallic, gray object with a slightly worn surface, viewed from a top-down perspective, resting on a marble-patterned surface with faint shadows; it features a small loop handle. +319dad7d2ba3407.png The black frying pan is centrally placed on the stovetop with a matte texture, seen from a top-down angle, set against a minimalist kitchen backdrop featuring a light beige tiled wall and a stainless-steel range hood. +96dc9fe77fed4ea.png The frying pan is silver with a slightly speckled texture, viewed from above at a slight angle, resting on a colorful, floral-patterned fabric, with a bamboo and sunflower-themed tiled wall backdrop. +ae5c0992ede94ee.png The frying pan is seen from a top-side angle, revealing its smooth, copper-colored exterior with a black handle contrasting against a white bathtub and chrome faucet, which provide a modern bathroom setting. +d26a79f70a63455.png The frying pan is a matte black cast iron skillet with a textured surface, viewed from an angled top-down perspective showing a branded center, resting on a dark countertop with kitchen items in the blurred background. +05b0739e980b48f.png The matte, silver frying pan with a worn texture and ribbed bottom is viewed from a slightly angled top-down perspective on a gas stove, featuring a black handle and surrounded by a metallic silver pot on a burner and a colorful towel in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/full_sized_towel_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/full_sized_towel_descriptions.txt new file mode 100644 index 0000000..b0c2c84 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/full_sized_towel_descriptions.txt @@ -0,0 +1,14 @@ +eabc735fa5d9428.png The full-sized towel, viewed from above, is a light blue color with a slightly fluffy texture, lying folded on a tiled kitchen floor with visible cabinetry and an open space leading to a dimly lit area in the background. +2eb2b4ea5c20413.png The full-sized towel is oriented horizontally on a white surface and features wide horizontal stripes in teal, yellow, and white with a visible soft, fluffy texture, while the background includes an appliance control panel and a small fan. +361bd5f5d8e549c.png The full sized towel appears lavender with a slightly raised texture, draped over a bathroom sink, set against a neutral backdrop of cream and tan walls with a wooden doorframe and various toiletries in the foreground. +b5d953b77d25480.png A crumpled, plush, dark gray towel sits on a carpeted floor, viewed from above, surrounded by shadows and a mix of other objects, including a dog's legs and a pair of shoes. +e9f73f1de29d447.png A white towel with subtle texture is draped over a sink in a bathroom with a window featuring frosted glass, black and white wall tiles, and checkerboard flooring, reflecting light from an adjacent mirror. +23207b75a12440b.png A pink towel with blue edges is crumpled on a tiled floor, viewed from a low angle down a hallway with cabinets and a softly lit contrasting doorway in the background. +aae95abdc18a463.png The image features a full-sized towel with alternating pastel green and peach stripes, draped vertically against a plain, light gray background, suggesting it is hung on a hook or railing. +3b28bd79e95144f.png A crumpled dark green towel with a slightly textured surface appears on a polished wooden floor near a bed frame and furniture, casting soft shadows around its irregular shape. +92510ca72bda44d.png The towel, crumpled on a tiled floor, features brown, white, pink, and yellow stripes, with a slightly textured surface, viewed from an overhead angle in a dimly lit room. +435ddf19069747a.png The full-sized towel is dark red with a plush texture, draped loosely in a bathroom environment against a neutral wall, with a tiled floor and visible wall outlet. +304603ac962f4b6.png A light-colored full-sized towel with a slightly textured surface is folded neatly and placed on a brown leather couch, surrounded by patterned blankets and a green carpet visible in the background. +28d381cbed6941b.png A green towel with a soft, plush texture lies folded on rectangular bathroom tiles, with a view facing the bathroom sink and wooden cabinets against a white bathtub backdrop. +b46c65f121c8406.png A crumpled, light peach towel with a slightly plush texture is resting on a stack of papers on a dark wooden table, adjacent to a green wall and surrounded by scattered objects in a cluttered room. +745d7e24427447b.png The towel on the left features a colorful pattern of sea-themed illustrations including starfish and shells on a white background, while the one on the right is a plain light green, both hanging from a stainless steel rod in a tiled bathroom with a glass shower door and white fixtures. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/glue_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/glue_container_descriptions.txt new file mode 100644 index 0000000..96129ab --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/glue_container_descriptions.txt @@ -0,0 +1,14 @@ +33f5733179ff423.png The glue container, viewed upright from a slightly elevated angle, is primarily white with a green band and a black cap, featuring a distinctive brand label on the front, set against a blue table with office supplies in the background. +5c3e575f62994af.png The glue container is cylindrical with a white body and an orange label, featuring a blue cap, lying horizontally on a reflective black surface beside a stack of brown coiled ropes and electronic equipment. +63727789425f476.png The glue container is viewed from above, featuring a black, ribbed nozzle with a white and red label on the cap, all set against a speckled, stone-like background surface. +7ab71a2c6a504b1.png The glue container is rectangular and white with a vibrant orange cap, featuring a blue and orange label, and is held horizontally against a light wood floor with ambient home items in the background. +b828481cbecc4d9.png A white plastic glue container with a blue cap is upright on a textured beige surface, set against a wooden door and dark hallway background. +0d1902819da5470.png The glue container is cylindrical with a white twist cap, a clear golden-brown body revealing its contents, and a yellow label with dark text, held by a hand against a dark surface background. +2aede31503874bd.png A translucent yellow glue container with a cylindrical body and a matching yellow cap is positioned horizontally on a dark wood-grain surface. +0d5af56b3c8f4b7.png A person holds a transparent, cylindrical glue container with an orange nozzle against a background of a black surface and brick fireplace, with distinct shadows indicating indoor lighting. +cccd49f80520415.png The glue container is transparent with a yellow cap, viewed from a side angle on a wooden surface, casting a distinct shadow. +771e5d3a41d64ee.png The glue container is cylindrical with a translucent body partly filled with a blue liquid, and a white conical nozzle, positioned upright on a wooden desk, surrounded by electronics, with shadows enhancing its presence. +f6dee51618fe4e7.png The glue container is a white plastic bottle with a bright orange twist cap, displaying a blue and white label with distinct branding, lying horizontally on a speckled brown and beige countertop with a blurred kitchen background. +6b4fe579400240f.png The glue container is predominantly white with a red and black label, lying horizontally on a textured beige carpet. +4576edfb4ca84c5.png A small, white plastic glue bottle with a bright red nozzle and a colorful label featuring bold text is lying on its side on a textured, light gray carpet, with a blurred blue object in the background. +53c49b669f7d423.png The glue container is white with a bright orange nozzle, featuring a blue and orange label, lying on its side on a beige tiled floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/hair_brush_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/hair_brush_descriptions.txt new file mode 100644 index 0000000..e754e20 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/hair_brush_descriptions.txt @@ -0,0 +1,14 @@ +610012a3e99344d.png The black-handled hair brush with closely packed bristles is held vertically over a blue basin against a turquoise wall, showing pinkish tips on the bristles. +ab643480d3ab4f3.png The black hairbrush, viewed from above and resting on a floral-patterned cushion, features an oval head and smooth-textured handle, with shadows indicating its three-dimensional form in a cozy, cluttered room setting. +310791f02b30414.png The hairbrush is pink with a smooth texture and fine bristles, viewed from above on a wooden floor with surrounding darker shadows and a small portion of carpet visible. +6d1fb69a767d4a7.png A hand holds a small, oval-shaped hairbrush with a wooden handle and black bristles in a bathroom setting, viewed from a side angle near a partially open door. +8da3d3f72f984ad.png The object is a pink brush with an oval shape and numerous short, rounded bristles, viewed from above against a wooden surface background. +492565acf24a4c7.png A pink hairbrush with metallic bristles is held horizontally above a couch adorned with teal, olive, and brown cushions against a muted wall. +0faa27461f0840f.png A hand is holding a purple vented hairbrush with visible widely spaced bristles, positioned horizontally against a blurred indoor background displaying a striped curtain and wooden cabinet. +3e3547bcd0e748c.png A hand is holding a small, wooden-handled hair brush with black bristles against a flat, turquoise fabric backdrop. +630bedfbc1ff4e1.png The black hairbrush with a textured handle, banded with a white section, and rectangular bristle pad is positioned horizontally on a wooden table amidst various household items, with a visible loop hole at the handle's end. +fa665e34801542a.png A hand is holding a light wooden-handled hair brush with beige bristles at a diagonal angle above a bathroom sink, featuring a tiled countertop with various personal care items and a toothbrush holder in the background. +8f084ad8a037474.png The hairbrush has a blue handle with black bristles, viewed from an angle on a white tiled floor, with a patterned maroon and beige rug partially visible in the foreground. +15b84794f3a444c.png A turquoise hair brush with fine bristles is lying horizontally on a textured grey fabric surface. +4bb4d51758ee46a.png The hair brush, seen from an angled top view, features a smooth, brown wooden handle and black bristles, set against a solid light yellow background. +671e562ba3b24dd.png A black hair brush with a smooth texture, viewed from the side showing the bristles, is held over a wooden table in a room with a gray tiled floor and a cushioned background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/hair_dryer_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/hair_dryer_descriptions.txt new file mode 100644 index 0000000..7e752d3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/hair_dryer_descriptions.txt @@ -0,0 +1,14 @@ +3aaf68dcd3b9453.png The hair dryer has a black body with a distinctive hot pink leopard print pattern, resting on a tiled floor, viewed from above, surrounded by a coiled black cord. +500b0e7476a2433.png A white and gray hair dryer with a visible grille on the nozzle is placed on a textured, beige carpet and is photographed from a slightly above, side angle, with the handle and power cord in view. +6fc48d3a486144c.png The hair dryer in the image has a matte black body with a metallic silver accent, held in a hand from an overhead perspective against a tiled floor background, and features a visible rear air vent and coiled cord. +8feae3ae4255455.png The hair dryer is dark blue with a slightly glossy finish, viewed from the side handle with the nozzle facing away, positioned against a patterned bedspread and curtains with a repetitive geometric design in the background. +b5f4e3b93923455.png The black, glossy hair dryer, viewed from the side with its nozzle pointing to the left, rests on a wooden chair with a blue cloth beneath it, featuring a concentrator nozzle and visible air intake vent on a background of carpet and wooden chair spindles. +79b4eb3834ea441.png A black, slightly glossy hair dryer is positioned with its nozzle pointing left on a textured countertop, surrounded by kitchen elements like a green dish and visible tiled floor, with a coiled power cord nearby. +532c84b98f7d45e.png The hair dryer is predominantly black with a glossy finish, viewed from above and slightly rotated, featuring a visible concentrator nozzle and a purple accent ring on the rear, against a backdrop of an orange bathroom sink with a silver faucet and an orange soap dispenser. +a2d1cc45dfc841d.png The hair dryer is black with a glossy finish, viewed from a diagonal top angle on a marble countertop in a bathroom setting, featuring a tapered nozzle and clearly visible vent openings on its end. +3f3d5f38aa954a4.png The hair dryer is black with a matte finish, viewed from above with the fan grill facing up, surrounded by toiletries on a white countertop against a tiled background. +ffb9936b74e54ba.png The hair dryer is shown from a side view, predominantly white with a glossy texture, against a plain beige background, and features a straightforward cylindrical design with no visible buttons or switches. +85e783cf8c6245f.png The hair dryer is pink with a metallic silver nozzle, viewed from the side on a dark, marble-patterned surface with visible white streaks. +6674fcf8a7754c8.png A metallic silver hair dryer with a glossy finish features a prominent purple accent line and branding near the nozzle, viewed from a side angle against a plain grey background. +3992ebc1b4ea45e.png The image depicts a yellow heat gun with a black handle and a silver nozzle, positioned on a person's lap in a cluttered room with household items and a prominent Dr Pepper box in the background. +572657e1535d401.png The hair dryer is orange with a glossy finish, viewed from above slightly to the side, on a countertop with a geometric tiled backsplash, and features a round white grille on the end with a black handle and cord. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/hairclip_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/hairclip_descriptions.txt new file mode 100644 index 0000000..870b62d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/hairclip_descriptions.txt @@ -0,0 +1,14 @@ +6b493ba52ff44f7.png A small, black, glossy hairclip with a sleek, smooth texture is positioned upright on a mottled brown and gray surface akin to polished stone or concrete. +5171daf6b06a49c.png A dark brown, glossy hairclip with a circular structure and metallic spring is placed on a speckled black countertop in a bathroom setting with a blurred background featuring a toothbrush holder and tiles. +9a4e0fc8d300493.png The hairclip is a translucent light purple hue with a slightly curved, open-jaw design, viewed from an angled, side perspective on a textured fabric surface decorated with concentric circular patterns in shades of brown and beige. +2e1f17c413d7449.png The hairclip is a dark, smooth, and slightly curved metal clip with two visible cut-outs, resting on a slightly worn, light-colored surface that shows subtle markings. +6e63654728d443a.png A black, glossy hairclip with a visible metal spring and two small, shiny embellishments is seen from an overhead view against a yellow and white patterned fabric background with green leaf designs. +cac2643622df427.png A slender, metallic hairclip is lying on a speckled, terrazzo-like floor, with a rounded loop on one end and the other end slightly separated, viewed from a top-down perspective. +04b3e1eb67ab47c.png A translucent, amber-colored tortoiseshell hairclip with a claw design rests on a patterned quilt, viewed from a slightly elevated angle, with a dimly lit bedroom setting in the background. +532685d48a464f3.png The hairclip is bright blue with a smooth, glossy texture, held in a hand from a side angle, against a beige, textured carpet backdrop. +236684f1c418432.png A small, glossy black claw-style hairclip is positioned upright on a tiled floor, casting a soft shadow with visible prongs and a slightly reflective surface under ambient lighting. +b96d14493525428.png A small, metallic hairclip with a glossy texture lies flat on a tiled floor, viewed from above, with no distinct background features and a subtle shadow beneath. +bd8f2d5eb4394a6.png A golden butterfly-shaped hairclip with a shiny, metallic finish lies on the white surface of a bathroom countertop, adjacent to a roll of toilet paper, with a tiled floor partially visible. +402f83f07b99420.png A gold-colored hairclip with a delicate intertwined heart design is positioned on a smooth, light-colored surface, casting distinct shadows that highlight its intricate shape. +c99d0b2b8fbf487.png The hairclip is transparent with a clear, glossy texture and features interlocking teeth, held in a hand with a wooden tabletop background surrounded by books and household items. +b1fe52ab31e64e5.png A small, black, metallic hairclip with a glossy finish is positioned in a partially open view on a light wooden surface, with faint reflections highlighting its sleek curvature against a plain desk background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/hairtie_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/hairtie_descriptions.txt new file mode 100644 index 0000000..314918d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/hairtie_descriptions.txt @@ -0,0 +1,14 @@ +ae5c15ea85454e0.png A small, bright pink, cylindrical object held between fingers against a background of a speckled granite countertop and stainless steel faucet. +d7d31fe90ae5442.png A red, thin, rubbery hairtie is held between fingers against a marbled countertop with a light-colored, flat background. +b6ada446457b44f.png A black, smooth hairtie lies flat on a light wooden surface, positioned centrally with visible wood grain patterns in the background. +6a0aab87b1394f4.png A smooth, black hairtie lies flat on a textured beige carpet, appearing as an oval shape due to the downward viewpoint. +4b95f6e4b27d476.png A hand holds a simple, black elastic hairtie with a matte texture against a plain, light-colored wall. +725e44a403ac4ac.png A red, thin, elastic hairtie with a smooth texture is held upright by a hand in a bathroom setting, against a tiled wall and amidst various toiletries on a countertop. +be9928e146fb453.png A bright yellow, slightly crinkled fabric hairtie is placed on a speckled countertop, with a white sink and part of a black item visible in the background. +4fa5d8f45718430.png A blue, coiled hairtie with a glossy texture is held between fingers over a wooden floor, with blurred furniture and houseplants in the background. +01ecb6ee1b3245b.png The hairtie is black with a smooth, slightly shiny texture, viewed from an angle as it dangles between fingers against a white bathroom countertop with a toothbrush visible in the background. +dcabddcf9a92421.png A black, ribbed hairtie with a coiled texture is held between fingers over a brown marbled countertop, with a red container in the background. +3be472a14d8d44b.png A black, glossy hair tie is looped around a hand with fingers slightly bent, set against a speckled marble countertop background. +4a248906685a470.png A black, smooth-textured hairtie is viewed in the hand against a bathroom setting with tiled flooring and a bath mat in the background. +ce83980bf23143c.png The hairtie is black with a slightly twisted texture, held in a hand above a bathroom countertop with bottles of soap and toothbrushes in the background. +e8b463e088fc4b7.png A thin, tan-colored elastic hairtie with a smooth texture is viewed from above, lying flat against a speckled gray and black granite-like surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/hammer_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/hammer_descriptions.txt new file mode 100644 index 0000000..98616ef --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/hammer_descriptions.txt @@ -0,0 +1,14 @@ +f99c6dfedcae4b4.png A wooden-handled hammer with a metallic head is lying flat on a warm-toned wooden floor, casting a shadow, viewed from an angled top-down perspective. +ae03bba2ecb1480.png The hammer, viewed from above, features a brown wooden handle and a dark metallic head, set against a smooth grey flooring with a nearby white cable and red fabric partially visible. +c4100e7d7fb149d.png The hammer is metallic with a subtle dull silver hue and appears worn with a slightly textured surface, lying flat on a reddish-brown floor with a distinct ball-peen head visible from an overhead viewpoint, framed by a simple, speckled background. +b68e2839da4c4a6.png The hammer has a blue handle and metallic striking head, positioned flat on a multicolored plaid fabric background, with a hand pointing at it from the side. +8067636f4ff74f8.png The hammer appears to have a dark gray metallic head with a smooth, elongated handle, viewed from a slightly elevated, diagonal angle, against a background featuring a wooden table, some colorful rectangular objects, and gray carpeting. +0ef057ebe017489.png The hammer has a black handle and metallic head, resting in a horizontal position on a white countertop near a stainless steel sink with a wooden cabinet in the background. +3668eddf3b8a4aa.png A small, reddish-brown hammer with a slightly worn texture is held sideways by a hand against a light-colored, soft-textured background, with distinct areas of wear visible on the metal head and a visible claw on one end. +3cb413dacd14475.png The object, which appears to be a wooden hammer with a rough, brown-textured handle and a worn, metal head, is positioned horizontally on a bright pink surface amidst office items, with the handle crossing over a stack of papers in a folder, adjacent to a laptop. +66c844f161f24ff.png The hammer appears to have a black, textured metal head with a bright orange handle, lying flat on a wooden surface within an indoor setting featuring a white wall and various nearby items. +0e942ed30dad402.png The hammer has a brown, rusty appearance with a flat-topped rectangular head visible from a slightly tilted top-down perspective, resting over a beige countertop in a kitchen-like environment with a microwave and coffee maker nearby. +f1b856eb1a6c48b.png The hammer, viewed from the perspective of the handle being held in a hand, has a dark, possibly rubberized handle and a metallic head with a textured surface, set against a blurred background of colorful, patterned fabric. +4bfb6de2c7bc421.png The hammer has a black handle with a yellow section near the center and a metallic head, placed on a light wood grain floor with a section of a patterned rug visible, viewed from above. +eef61c24d500472.png The hammer has a light wooden handle with a dark metal head, lying horizontally on a concrete floor with a fan base visible in the background. +2279196daba74f4.png The hammer has a metallic head and a bright pink, textured rubber handle, lying flat on a light wooden surface with a striped rug and a chair visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/hand_mirror_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/hand_mirror_descriptions.txt new file mode 100644 index 0000000..e28d4a7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/hand_mirror_descriptions.txt @@ -0,0 +1,14 @@ +1cf27107ea7e4a0.png The object is a rectangular, silver-colored hand mirror with a smooth reflective surface, viewed from a top-down perspective on a red-patterned cushioned chair with a checkered wooden floor in the background. +5aa87153b578450.png The object in the image is a black, glossy hand mirror with a rounded rectangular head, held at an angle above a white paper on a dark surface with scattered items in the background. +c8d8a507d42a472.png A black hand mirror with a smooth, rounded triangular shape and a slender handle is laying flat on a plain, light brown surface in a dimly lit environment. +09c92c8c03a94f4.png A white hand mirror with a rectangular shape and a slightly curved handle lies flat on a dark lid of a blue barrel in a tiled corner, accented by the red and yellow towel nearby. +70aaea65932f427.png A blue-handled hand mirror held horizontally over a light wooden floor, with its reflective surface partially visible and a metal framework outlining the mirror's edge. +ce608b22617f45e.png A wooden-framed rectangular hand mirror with rounded corners is positioned upright on a speckled black countertop, surrounded by kitchen appliances and a bottle, set against a dark, textured backsplash. +ea6b4cbb3146465.png The hand mirror is square-shaped with a black, textured matte finish, resting flat on a marbled countertop beside various small bottles, with its handle featuring a loop at the end. +07c367cdcfdc4c4.png The hand mirror features a vibrant pink, rectangular frame with raised circular patterns, lying flat on a chair adorned with a black floral cushion pattern, set against a wooden floor background. +9966bbeae43143a.png The hand mirror has a light wooden frame with an oval shape, lying flat on a wooden desk amidst office items like a keyboard and plants in the background. +f580a7471dee4a4.png The object appears as a small, green rectangular frame with a grid-like handle seen from an overhead view against a striped, light-colored textured surface. +7e31e95a5d1443e.png The hand mirror features a wooden, arch-shaped frame with a light brown color, placed on a red cushion with a woven texture, and reflects a partial image of the surroundings, including a detailed self-portrait of the photographer. +65c38fc174414a6.png The object has a metallic, reflective surface with a square shape, lying flat on a rough, textured concrete ledge beside a long, narrow corridor illuminated by light in the background. +2e02e3d46dc4452.png The hand mirror has an oval, yellow frame with a cut-out handle section, resting flat on a dark wooden surface, surrounded by a cluttered background including indistinct objects and shadows. +6fa7755d63504bc.png The hand mirror has a bright orange plastic frame with a simple rectangular shape, resting on a dark sofa, surrounded by a red fabric, a white mouse, and scattered papers on a wood-patterned floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/hand_towel_or_rag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/hand_towel_or_rag_descriptions.txt new file mode 100644 index 0000000..23eb4ae --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/hand_towel_or_rag_descriptions.txt @@ -0,0 +1,14 @@ +f304f5753cc3423.png A beige hand towel or rag lies flat on a carpeted floor next to a wall with a baseboard heater, surrounded by scattered electrical cords. +d3bbc092ef08436.png A rolled-up, light gray towel with a coarse texture lies on a wooden floor, positioned centrally and viewed from above, with a beige door and a person’s foot partially visible in the foreground. +c0c8b78cab0b4db.png A small, folded, multicolored hand towel with a slightly textured surface rests on a lightly stained kitchen countertop with various containers nearby and part of a stovetop visible on one side. +62b8e4892ea0423.png The object appears to be a bright red, plush-textured towel or rag, positioned upright on a dark upholstered sofa in a dim environment, with its edges slightly frayed. +62aecea27dbf4d1.png A folded, light grayish-white cloth with a soft texture lies on a shiny, beige-tiled floor, casting a distinct shadow to its upper side. +4f9ea0ec347f4e4.png A hand is holding a neatly folded, plain white towel with a smooth texture against a light-colored, patterned bedspread background. +bcc8526e89e347a.png The image shows a folded hand towel on the floor with alternating wide horizontal stripes in orange and white, situated adjacent to a white mattress on a textured beige carpet. +9a83d9daaf90444.png A small, crumpled dark blue towel lies on a wooden floor with a faintly lit shadow, surrounded by a dimly colored room corner. +7f572330e485474.png A folded, off-white towel with a slightly textured surface rests neatly on a brown chair, surrounded by a tiled floor and potted plants in a dim-lit environment. +d87135758890406.png The hand towel draped over a towel bar is light grey with subtle diagonal stripes and a slightly textured surface, set against a blue bathroom wall above a white toilet tank. +5b04b49dfa92478.png The hand towel, rolled up with a light purple hue and a fluffy texture, is positioned centrally on a speckled countertop with a wooden floor and a purple mug visible in the background. +f7f72f59b39f423.png The object is a folded fabric with red and white stripes and fringed edges, placed on a tiled floor in a bathroom environment, near a toilet and a colorful striped rug. +2f4d8d97fc944f1.png The image shows a crumpled object with predominantly white and blue colors, possibly resembling a soft, worn fabric with a rough texture, resting on a glossy black surface in front of a computer monitor, surrounded by a cluttered desk environment. +55e7b559838643b.png A fluffy, light-colored hand towel with a pink and gray leopard print pattern is folded on a dark surface, with the texture appearing soft and evenly looped. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/handbag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/handbag_descriptions.txt new file mode 100644 index 0000000..a958ee4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/handbag_descriptions.txt @@ -0,0 +1,14 @@ +76e4606cccc84b3.png The handbag is a tan, smooth-textured leather with a visible zipper pocket, held upright, against a background of a window with a white grid and blue-striped fabric beneath. +73941620096640f.png A person is holding a handbag with a beige, monogrammed pattern and red accents, viewed from above against a living room setting with hardwood floors and a white sofa. +6722e14f9e5744c.png The handbag is black with a smooth texture, featuring studs along the edges, viewed from an angled top-down perspective on a wooden surface, with a visible strap and a zipper detail on the side. +edfa68a7eece401.png The object is a small, blue, rectangular bag viewed from the side, featuring a prominent zipper and emblem, set against a carpeted floor background with scattered children's toys. +80b83d72e3254da.png The handbag, captured from an overhead viewpoint on a textured gray stone floor, is light brown with smooth leather-like texture, featuring a curved top handle, a central emblem, and a noticeable buckle detail. +96ede75b066d4f7.png The handbag, featuring a brown and beige swirl pattern with leather accents, is held by a hand against a plain bathroom background with a visible shower curtain and striped bath mat. +2165a7b51fd84fa.png The handbag is black with a textured surface, featuring gold accents on the handles, and is positioned on a white bed in a minimalistic room with a wooden headboard and brown wall. +095d03b0f6ab474.png A small lime-green handbag with a smooth texture and a single handle is seen from a top-down angle on a patterned stone table surface, with a cardboard box containing donuts nearby. +954eeed8db8148e.png The handbag is an off-white, crumpled fabric tote lying flat on its side on a tiled floor with a hexagonal pattern, illuminated by warm overhead lighting in an indoor setting. +c1a5a20c60d54c6.png The handbag is small and oval-shaped with a shiny, metallic surface, viewed from above on a plush maroon rug in a warmly lit room. +7c631740b8934d4.png A black handbag with a smooth texture is seen from a top-down angle, sitting on a kitchen counter next to a blender and bowls of greens, against a wooden door with other bags hanging. +8d33c16167414bf.png The handbag, positioned upright on a bathroom countertop beside a sink and mirror, features a dark fabric with a distinctive light-colored circular pattern and visible straps. +e7c2cd95ca1f446.png The handbag appears in a top-down view with a blue and white color scheme, featuring a textured fabric handle and exposed zippers, set against a tiled floor and white furniture. +16ae9390d0af4e5.png A hand holds a brown and beige checkered plush handbag with a soft, rounded shape against a textured light gray wall, near a white electrical outlet and towel ring. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/hat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/hat_descriptions.txt new file mode 100644 index 0000000..cd5cd0a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/hat_descriptions.txt @@ -0,0 +1,14 @@ +a3e471822437467.png The hat is a dark, coarse-textured knit cap, resting in a crumpled state on a bathroom countertop beside a sink, with a plant and colorful curtain visible in the background. +a4646072425f469.png The white hat with a red polka-dotted ribbon rests on a stone-textured tabletop, viewed from above, showing a subtle weave pattern. +9a4060dbc22042f.png The hat is a beige, worn fabric baseball cap with an embroidered logo, viewed from above, sitting on a gray countertop amidst a bright tiled kitchen backdrop with cleaning items, a water bottle, and coffee packets nearby. +f3f3f9d2c3134ba.png A dark green baseball cap with contrasting white stitching and a colorful embroidered patch on the front is held sideways in a bathroom setting, with a glass shower and toiletries visible in the background. +ea9c85d8c9cd4d9.png A navy blue baseball cap with white embroidered text, viewed from above amidst a cluttered kitchen countertop with various containers and dishes. +379c9ea6abbc496.png The image shows a yellow hard hat with a smooth texture tilted on its side on a kitchen countertop, surrounded by a coffee maker and containers, with wooden cabinets in the dimly lit background. +e9449403d25c4e2.png A brown woven straw hat with a wide brim features concentric circular patterns and a lighter band, seen from above on an embroidered white tablecloth near various toiletries. +89126992e6fb497.png A brown baseball cap with colorful printed designs is laid on a white bathtub corner, surrounded by various bathroom items like soap and toys, against a beige tiled floor and wall. +54f3c32dcbb840c.png A cream-colored knit beanie with a furry pom-pom is held aloft in a living room, featuring a white door and tan couch in the background. +5669125ab4774e6.png The image shows an orange knit beanie with a folded brim lying flat on a white, quilted fabric surface, revealing a soft, fuzzy texture. +8b1ee3e9b04f4b0.png A white cap with black embroidery is seen from a side angle resting on a speckled gray countertop, set against a kitchen background featuring wooden cabinets, a microwave, and assorted kitchen items. +3afb6eb7291243e.png A dark green, soft fabric hat with a slightly wrinkled texture is resting on a tiled floor against a backdrop of bright green and gray walls, featuring a curved brim and an indented crown. +3fc65ee3d70748f.png A dark-colored baseball cap with white embroidered signatures and a prominent, colorful cartoon emblem on the front, viewed from a slightly elevated angle on a wooden surface. +803fe64f6828469.png A bright pink hat with a wide brim lies with its beige interior facing upward on a carpeted floor, viewed from above, next to a chair and bare feet. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/headphones_over_ear_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/headphones_over_ear_descriptions.txt new file mode 100644 index 0000000..93828f9 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/headphones_over_ear_descriptions.txt @@ -0,0 +1,14 @@ +aa8f3448373a409.png The over-ear headphones are black with a slim metallic detail, positioned with the ear cups lying flat on a colorful, fruit-patterned tablecloth background, and a distinct blue cable trailing to the side. +1cf1eb86d89743a.png The over-ear headphones are black with a white trim, featuring a padded headband, viewed from above on a speckled countertop near a white sink. +04890be12fc44d6.png The over-ear headphones have a matte black finish with a smooth texture, viewed from a top-down angle near a drawer, and are being held by a hand with wood panel flooring and a portion of a cabinet in the background. +12b837e3a0e643d.png A person is holding a pair of over-ear headphones with black padding and metallic accents, viewed from below against a ceiling with exposed wiring and a fluorescent light. +67c6786a1aae4e1.png The headphones have a black frame with shiny blue accents on the ear cups, viewed from a slight angle with a backdrop of a casual bedroom setting, featuring a bed with a soft blanket and a remote nearby. +abcb497c8f7b452.png The over-ear headphones are black and metallic with a smooth texture, viewed from above while resting on a textured white surface beside a pink-lidded container and surrounded by snack packaging, with a visible attached wire extending outward. +f84b0b732af0473.png The over-ear headphones are dark in color with a smooth, matte texture, viewed from above against a flat, dark surface, with a subtle blue light reflection and a visible cord trailing downward. +78abb688c2fa439.png The over-ear headphones are black with teal accents and a visible logo on the outer ear cups, resting on a light wooden surface with a blurred monitor in the background, and display a thin padding texture on the inside. +f5518ceb7ef64cb.png This over-ear headphone features a shiny metallic copper housing with white padding, lying flat on a marbled green surface amidst kitchen jars and utensils, providing a contrast with its environment. +436b933b99544d9.png The headphones are black with a matte finish, seen from an overhead angle resting on light-colored carpet with a wooden baseboard and gray fabric in the background, featuring an adjustable headband and cushioned ear cups connected by a wire. +11f559ac92fc474.png The headphones over ear appear to be black with a glossy finish, viewed from a side angle on a white tiled floor beside a patterned rug, with a visible wire extending from the ear cup. +aa11cc4f3a964ad.png The headphones over ear are black with a matte texture, viewed from above at a slight angle resting on the white edge of a sink, with a bathtub and pink towel in the background. +5f30926c6b39447.png Black over-ear headphones with a cushioned band and coil cord are viewed from a side angle, resting on a patterned white bedsheet while a hand holds them. +9350bf01f5fb416.png The headphones are matte black with large, circular ear cups featuring a shiny silver accent, held upright in a hand against a neutral beige wall and draped over a hanging light-colored towel. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/helmet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/helmet_descriptions.txt new file mode 100644 index 0000000..f1eba58 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/helmet_descriptions.txt @@ -0,0 +1,14 @@ +e3ece92478c14f5.png A silver helmet with reflective surface and black accents is positioned upside down on a glossy tiled floor beside a pink floral-patterned doormat, viewed from above. +18df90a0578149c.png A black helmet with a shiny, transparent visor is positioned upright on a kitchen counter against a bright green wall with white tiles, surrounded by cooking utensils and a small stove. +bf0faea3f98443f.png The helmet is black with white and red accents, featuring a glossy finish and visor viewed from the side against a wooden floor background, with prominent branding and a visible chin vent. +38e9dee676ff4df.png The helmet is matte black with a slightly rounded shape, viewed from above at an angle, placed on a rustic wooden stool against a textured concrete wall background. +73b9c2a956e5457.png The helmet features bright teal and pink colors with cartoon graphics, viewed from a side angle on a checkered bedspread, next to a brown box and below a colorful abstract wall hanging. +461c5cb7580146e.png The helmet is gray with red flame-like patterns, viewed from an angled top perspective on a patterned fabric background, featuring a black vent at the top and a visible chin guard with a clear visor. +c177d7743dce482.png A black helmet with a matte finish and pointed ridges sits upright on a tiled floor, surrounded by kitchenware and various colorful containers. +eee90a8710804ee.png A purple motorcycle helmet with a glossy finish is positioned upright on a terrazzo floor, with a wall, a table, and a trash bin visible in the background, and a distinct logo on the front. +9d9bcb095c1849a.png The helmet is white with black and brown markings, featuring a smooth texture, positioned upright on a blue blanket in a cluttered room with a carpet and scattered toys in the background. +a9b1e03cc9a9497.png The helmet is a glossy black with a reflective visor, positioned upright on a tan chair in a domestic setting with plants and tiles visible in the background. +faba4c63cbf74fa.png A red and gray helmet with a smooth texture and protruding spikes around the edge is viewed from above on a carpeted floor with a shadow extending to the left. +f095dfb9990744f.png A predominantly white bicycle helmet with black interior padding is held from the side over a bathtub with a tiled wall background, featuring multiple air vents and a chin strap hanging down. +64ea5863620741b.png The helmet is matte black with scratches, a clear visor, viewed from the front-left side on a reflective surface in a garage setting with visible metal gates in the background. +ccf7cf7f26a64d4.png The helmet appears glossy black with a smooth surface, seen from a slightly elevated front angle, featuring a curved clear visor and located on a gray floor with a round basin and a small red disc in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/honey_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/honey_container_descriptions.txt new file mode 100644 index 0000000..ee7f0d7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/honey_container_descriptions.txt @@ -0,0 +1,14 @@ +cb2059e77f52457.png A person is holding an upside-down, translucent amber honey bottle with a yellow lid and a white label featuring a floral design, set against a dimly lit, indoor background with a dark couch and wooden table. +b03053a0c071446.png The honey container appears cylindrical with a smooth, amber-colored texture, held upright in a hand against a warmly lit wooden floor and a patterned bedspread background. +b3078924209a4a7.png The honey container is dark amber with a bright yellow cap, viewed from above at an angle, set against a light tiled countertop with a partial view of a patterned fabric in the upper left corner. +e631f403f1b14c1.png A person is holding a clear plastic bear-shaped container with yellow cap viewed from above against a light wood floor background, where the honey's golden-brown hue is visible through the transparent material. +793f1d7f6b9342f.png A clear, amber honey container with a smooth surface and a yellow cap lies horizontally on a dark speckled countertop, against a backdrop of a tiled floor and a red object above. +61ffda823aa04dc.png The honey container, viewed from above and held by a hand, is cylindrical and predominantly yellow with a label featuring intricate, colorful graphics, against a dark speckled countertop and nearby floral arrangement. +a9eba9465eda430.png The honey container, appearing as a plastic bear-shaped bottle, is partially obscured, primarily near a dark countertop with visible kitchen clutter including cookware and small appliances, against a backdrop of a stove and red container tops. +bac41a3ed0d54bc.png A small, clear plastic honey container with a visible white label on the front sits upright on a dark carpeted surface against a blurry background with a hint of colorful objects. +073ac31f7848495.png The honey container features a dark green lid and a clear round jar displaying golden honey, positioned centrally on a dark, smooth tabletop with a slightly tilted angle, surrounded by a dimly lit kitchen background and a bowl of fruit at the far left. +2b073a1008e74dd.png The honey container is a cylindrical jar with a yellow cap and colorful label, held at a slight angle in front of a white tiled bathroom with visible sink and tap in the background. +999b263904a8496.png The honey container is transparent with a bright yellow lid and a label partly visible, resembling a bear shape, set on a textured beige carpet with scattered toys in the background. +fa89be04f51c4b1.png A clear, bear-shaped plastic container, appears half-full of golden honey, is positioned horizontally on a hand with beige carpet in the background. +98ac0be02151450.png The honey container is a clear, oblong glass jar with a metal lid, lying horizontally on a speckled granite surface in a bathroom setting with various toiletries, and the honey appears golden and semi-translucent with visible bubbles. +372d626e5ce84a0.png The image shows a tall, cylindrical honey container with a narrow neck and a dark-colored cap, appearing to be made of clear glass with a slightly glossy texture, placed horizontally against a woven basket and surrounded by muted surfaces in dim lighting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/ice_cube_tray_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/ice_cube_tray_descriptions.txt new file mode 100644 index 0000000..90ea7b3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/ice_cube_tray_descriptions.txt @@ -0,0 +1,14 @@ +49f3e5cecb9844d.png A dark gray, plastic ice cube tray with a matte finish is held at an angle above a black stovetop, with a kitchen utensil holder, a blue plastic container, and a red checkered cloth visible in the background. +72a91c9b9e044ce.png A white ice cube tray with a smooth texture is positioned upright at an angle on a wooden surface, with a patterned dish containing two apples visible in the background. +bf39250321524bc.png The image features a blue ice cube tray with a somewhat translucent texture resting at an angle atop a white mug on a kitchen counter, with a window in the background partially revealing wintry trees and various kitchen items scattered around. +f1a1a1554b20476.png The ice cube tray is white with twelve rectangular compartments and appears to be made of plastic, seen from an angled top view on a dark surface, while the background features a cream-colored wall with visible wear and a patterned blue cloth in the foreground. +9a89c5fe2ea845a.png A purple silicone ice cube tray with a matte finish is resting horizontally on a white bathroom countertop, surrounded by a beige wall and an antibacterial soap dispenser. +7ea92ee9b1fe4ae.png The ice cube tray is white with a smooth, glossy texture, viewed at an angle showing the interior compartments, positioned on a dark kitchen countertop with various kitchen items, such as pots and utensils, surrounding it. +11d79baa8ca44e2.png A hand is holding a white plastic ice cube tray with a matte texture at an angle on a green countertop, with a bottle and blinds visible in the background. +5b9b8e5a0d5e48c.png The ice cube tray is bright blue with a smooth texture, held horizontally by a hand, against a patterned carpet background featuring rectangular colored sections. +bbcab978f998422.png A semi-transparent purple ice cube tray is held sideways in the foreground of a cluttered living room, with visible compartments and a brown leather couch in the background. +daf7e837c9b246c.png A blue plastic ice cube tray with a smooth surface is held at an angle against a kitchen countertop background, featuring multiple evenly spaced rectangular compartments and slightly transparent material. +ac0d5aae9a8e437.png A white plastic ice cube tray with a matte finish is seen tilted slightly away from the viewer, featuring a row of circular protrusions along the center and resting on a wooden surface, with a glue stick and part of a black object in the background. +15df01074f1a4fd.png A white, plastic ice cube tray with a smooth texture is held vertically in a hand against a patterned tablecloth featuring fruit designs. +610c85a2cb27404.png The ice cube tray is semi-translucent white with a smooth texture, viewed from a side angle being held by a hand in a warmly lit room with a cabinet and musical keyboard in the background. +db005ed06c5944f.png The blue ice cube tray with a smooth, slightly translucent texture is positioned on a pile of colorful blankets in a wooden room backdrop, tilted at an angle that reveals its rows of rectangular slots. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/ice_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/ice_descriptions.txt new file mode 100644 index 0000000..442322b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/ice_descriptions.txt @@ -0,0 +1,14 @@ +fe670253c79a4dd.png The ice is semi-transparent, smooth, and slightly concave in shape, held upright against a kitchen counter backdrop with utensils and spice jars. +cbd39b18a0dc4bd.png A cylindrical block of ice with a smooth, translucent surface sits inside a metallic container on a dark flat surface, against a tiled white floor. +b40bebf89c504fe.png Five small, irregularly shaped ice pieces with a translucent white appearance rest unevenly on a dull brownish surface, possibly in a low-lit indoor setting. +aae1e0044d1546c.png The ice appears as a semi-translucent, frosty block with a smooth yet slightly uneven texture, positioned in a hand above a cream-colored sink with a visible drain. +b70b906cabcf4b2.png A slightly curved, semi-transparent piece of ice is held in a hand over a wooden floor, with a living room setting featuring furniture and scattered items in the background. +2d1f7fe5604f404.png The ice appears as a small, translucent, irregularly shaped piece with smooth surfaces held between fingers over a stainless steel sink with a visible drain, against a light background. +cd09be15386746a.png A small, clear ice cube with a smooth surface is held between fingers, set against a gray wood-grain background that emphasizes subtle reflections and shadows. +2b94473b17a449f.png The image shows a partially melted, clear ice piece with a jagged texture, positioned horizontally on a reflective surface, surrounded by toiletries and personal care items in a bathroom setting. +7429364c24d04b7.png A small transparent ice cube with rough and faceted texture sits on a beige countertop, surrounded by a warm-toned kitchen environment with metallic pots and a wooden cutting board. +a7f6d89523e74ca.png A small, partially transparent ice cube with smooth edges rests upright on a beige countertop, surrounded by a blurred kitchen setting with a red appliance and stove in the background. +b0a5305dd8154e1.png The ice, translucent and irregularly shaped with smooth texture, sits centrally on a dark surface against a contrasting black-and-white patterned background, likely suggesting a zebra motif. +af1988436f034a3.png The image shows a small, transparent piece of ice with a slightly irregular shape resting against a textured, gray surface, surrounded by a background of indoor elements like furniture and fabric folds, viewed from a diagonal angle. +0c84065d024d445.png The ice appears as a translucent cube with a slightly frosty texture, viewed from above on a speckled countertop with assorted kitchen items in the background. +799690b7123b483.png A small, translucent ice cube with smooth surfaces rests on a white, curved surface, likely a toilet lid, in a dimly lit environment with warm shadowing. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/iron_for_clothes_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/iron_for_clothes_descriptions.txt new file mode 100644 index 0000000..3efe14d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/iron_for_clothes_descriptions.txt @@ -0,0 +1,14 @@ +3208447e5720439.png The iron is a dark purplish-blue with a shiny metal soleplate, viewed from an overhead angle, held against a white bathroom counter with visible toiletries in the background. +441cc8a2e6444a6.png The iron is primarily silver with blue accents, resting sideways on a white bathroom counter beside cleaning products, with a slightly reflective surface and steam vents visible. +cf5070f8c425406.png The iron for clothes appears to be white with a blue handle, viewed from above at a slight angle, lying on a dark green garment on a woven mat, beside a fan and power cords in a dimly lit room. +0912477409684fb.png A person is holding a black and metallic iron upside down over a tiled floor, near a glass shower enclosure and a marble countertop. +92d25d92cb2e415.png The iron features a purple and white color scheme with a smooth surface, viewed from an overhead angle near a bathroom sink with a tan countertop, distinguishable by its translucent water reservoir and gray handle. +990c5d3595c0488.png The iron is predominantly pink and white with a glossy finish, seen from a top view on a pinkish-red textured floor, featuring a visible cord and plug extending towards the upper side. +b043898cfd7b4cb.png The iron is white with blue accents, viewed in profile on a woven surface with a cream-striped sofa in the background. +d799bac9ede04fa.png The iron for clothes is a white and blue appliance with a textured grip handle, viewed from above on a beige carpet with noticeable power cord and markings. +3a16a66e3a834be.png A white and blue iron rests on its side atop a white surface, with its soleplate facing slightly upward showing steam holes, against a neutral background featuring a wall socket and an electrical switch, alongside a black object and a coiled power cord. +5931b2631971401.png The iron, placed on a polished granite countertop, is white with black accents, featuring a vertical pose with its cord coiled around, and is surrounded by bathroom items and a toothbrush. +b688c679dd9e487.png The iron has a turquoise and silver color with a smooth texture, seen from an overhead angle, lying on a brown carpet, and features a pointed tip with visible steam holes. +3e5c43e55aa0491.png The iron for clothes is predominantly green with a white and gray handle, viewed from a side angle with an upright position, set against a neutral countertop and a white wall with an electrical outlet, and features a coiled white cord at its base. +fe0f252f58834bb.png The iron for clothes is white with a red handle, seen from above on a patterned wooden floor, featuring a beige cord wrapped around and a pointed tip. +ad2aec65256a483.png A small, white clothes iron with a black soleplate and coiled cord rests upright on a stove, surrounded by black burners on a slightly soiled white surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/ironing_board_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/ironing_board_descriptions.txt new file mode 100644 index 0000000..8fc6917 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/ironing_board_descriptions.txt @@ -0,0 +1,14 @@ +a461b60824be4da.png An ironing board is seen from an oblique angle against a dimly lit wall, featuring a cover with a textured pattern of large, dark circular floral designs on a muted background. +27dcedeafb39407.png The ironing board features a colorful patterned cover with red and yellow hues, is viewed from a side angle in what appears to be a kitchen setting with wooden cabinets and several folded clothes in the background, and includes visible metal legs and an ironing base. +eff1928c9ff1475.png The ironing board, viewed from above, has a white cover with green floral patterns, a metallic frame, and is positioned in a cluttered room with a green wall, clothes, and a wooden dresser nearby. +2b32f423c69549d.png The ironing board, viewed from above, features a white cover with a speckled pattern of blue dots, set against a carpeted room with a brown mat and a white toilet nearby. +f1da2f657a9f47c.png The ironing board is viewed from a high angle, showing a grey and white striped cover with a padded texture, set against a white carpeted floor and surrounded by a clothing closet environment. +45b4ec4d0422489.png The ironing board, covered in a dark fabric with a white floral pattern, is positioned at an angle against a tiled wall near a laundry sink and a cabinet, with various household items scattered around in the background. +a3bdd337bae844a.png The ironing board is silver with a textured surface, lying flat and folded on a carpeted living room floor, surrounded by furniture and a window with blinds partially open in the background. +442276721fd1437.png The ironing board is beige and has a smooth texture, standing upright against white double doors with short legs visible, set in a room with wooden flooring and a woven basket nearby. +60b3d82805904bd.png The image shows a small yellow toy ironing board with a smooth texture, resting within a colorful playpen composed of yellow, blue, and red panels, surrounded by household items in dim lighting. +72916ac6279d419.png The ironing board is positioned horizontally with a stone-patterned cover in neutral tones, set against a wooden floor in a domestic environment with kitchen items nearby. +0727f8c731174cb.png A gray, textured ironing board is viewed from a slanted overhead angle in a hallway with beige walls and light-colored carpet, featuring an open door in the background. +6236b11d795a46b.png A teal ironing board cover is placed horizontally on a patterned rug in a dimly lit room, with noticeable fabric folds across its surface. +560d8a4b2c9b47d.png The ironing board has a black cover with a repeating geometric pattern of white circles, positioned horizontally in front of a bathroom sink and mirror, supported by silver X-shaped legs. +657d8929051d499.png The ironing board has a beige cover with a zigzag pattern in black and yellow, viewed from above, set on a tiled floor with cream-colored tiles, in a dimly lit interior space. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/jam_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/jam_descriptions.txt new file mode 100644 index 0000000..e9ddb05 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/jam_descriptions.txt @@ -0,0 +1,14 @@ +7274c8fc75e4433.png The image shows a dark purple jar with a label depicting grapes, held in a hand against a dimly lit interior with a carpeted floor and a wooden door, suggesting a glass jar of grape jam or jelly. +708894e01808404.png The jam appears to be a deep red with a slightly glossy texture, held upside down with a visible red-and-white striped lid, set against a light-colored countertop and near a decorative white ceramic item resembling a dog. +8baf238d87ad456.png The jar is tilted and held by a left hand over a white bathroom sink, displaying a red jam with a slightly shiny texture inside clear glass, accompanied by a red label with hints of green and white, a faucet, soap dispenser, and toothbrush holder visible in the background. +fc91d58b6576427.png A person is holding a tall, cylindrical glass jar of jam with a pink-orange hue and a smooth, glossy texture, viewed from an angled perspective against a neutral kitchen countertop background. +97aa4c18dde1488.png A close-up image of a glass jar with a yellow lid, partially filled with red-brown jam exhibiting a semi-transparent, glistening texture, against a white background showing a part of a printed label and a date on the lid. +e5a15c09bd1c4f7.png The object is a mostly empty jam jar with a metallic gold lid, held sideways, displaying a light yellow-orange residue with a glossy texture, against a background featuring a wooden floor and a partially open white-framed doorway. +d0581d9e3c82464.png The image shows a small, yellow-and-white sachet lying horizontally on a white pillow, with a cylindrical silver object and dark quilted fabric in the background. +318317f46509434.png The jam jar, lying horizontally on a speckled granite countertop, features a bright red hue with a smooth, semi-translucent texture, complemented by a checkered red and white lid, and is set against a softly lit interior with a table and bag in the background. +cd31aa1555ca4ce.png The jam appears to be a vibrant orange color with a chunkier texture in a glass jar lying horizontally on a light countertop, surrounded by assorted fruits including oranges and a lemon. +aba4b43494ef4d2.png The object is a cylindrical glass jar with a bright red-orange label and a matching lid, held at an angle by a hand over a dark wooden surface, amidst scattered desktop items like a pen, bottle, and tissue, with the jar's contents not visibly discernible. +f400e5874d9a4eb.png A jar of jam is lying horizontally on a gray countertop, with a red and white label showing strawberries, a text description, and a bright red cap; its contents appear dark red and slightly chunky through the clear glass. +af46fd79756e4d7.png The jam jar, held at an angle on a colorful carpet featuring roads and buildings, has a white and purple lid and contains a dark, possibly blackberry mixture with a thick, somewhat uneven texture. +ac2305b99eff487.png The jam jar appears dark and shiny, with a metallic lid, viewed from a slightly angled side perspective on a white surface, with blurred objects in the dimly lit background. +2297224afea54f8.png A jar of jam with a red and white checkered lid sits upright on a dark granite countertop, surrounded by household items and a wooden floor background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/jar_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/jar_descriptions.txt new file mode 100644 index 0000000..fd17cf1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/jar_descriptions.txt @@ -0,0 +1,14 @@ +36e6753987264bc.png The jar is transparent with a honeycomb texture, placed horizontally on a speckled brown countertop, containing a single opaque yellow item and a visible orange label on the lid. +41c79178a34a4ae.png The jar lid is cream-colored with a red brand logo and green and red text, viewed from a top-down angle on a wooden surface, with a person's plaid pants and black slippers visible in the background. +a18a328f99c74ed.png A small, round jar with a dark, glossy red content and a metallic screw cap is held horizontally in a hand, set against a polished, dark brown wooden floor background and blurred dining furniture. +185b807a93a7489.png A transparent glass jar with a metal lid, containing greenish contents, lies horizontally on a gray cushioned surface beside a colorful sock with a green and blue fish design, illuminated by ambient light. +e73f47e0688349c.png The jar is cylindrical and positioned horizontally, containing green olives in brine with a minimally labeled green and white wrapper, set against a formal wooden surface with scattered cards and a textured fabric square partially covered in wiry artificial grass. +7678f07694d1412.png The jar is a translucent dodecagonal glass container with vertical ridges, capped with a metallic lid, a curved transparent handle, and is set against a rustic indoor background with a faint view of household items. +36841b7b1f5e4c3.png The jar is transparent with a smooth texture, held sideways in a hand over a bathroom scene with a toilet and blue wall background. +06929e19e95d44c.png A clear, vertically ribbed jar with a white lid, containing a golden-hued liquid and labeled with a yellow sticker, is held in a hand over a patterned textile, featuring gray and white designs. +eec37267db2b405.png The jar appears to be transparent with dark-colored contents, held at a tilted angle by a hand over a textured black surface, set against a home interior background with wooden furniture and decorative items. +f1ccc2512fb64c5.png The jar is translucent blue with a smooth texture and metal latch, viewed horizontally on a white cutting board against a kitchen countertop with utensils and bottles in the background. +08fde5217650439.png The jar is a transparent container with a black lid, filled with fine brown granules, held at a diagonal angle over a dark-screened television set against a room with beige curtains. +a752f73e108b4e7.png A transparent jar with a metallic lid, filled with a dark substance, is positioned upright on a speckled granite countertop in a bathroom setting, with a visible white label on its side. +8bdc0314b3e1429.png A hand holds a jar filled with orange-red contents and an orange label against a background featuring a woven item, two ceramic bird figures, and some dark and neutral-toned soft furnishings. +bdc1df221d3b4f5.png A small, dark brown jar with a shiny silver lid is lying horizontally on a white tiled floor with a grid pattern texture. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/jeans_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/jeans_descriptions.txt new file mode 100644 index 0000000..2ff1c83 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/jeans_descriptions.txt @@ -0,0 +1,14 @@ +8a654f9d81b247d.png The jeans are a dark blue denim with a worn texture, laid flat on a pink surface, viewed from a top-down angle, amidst a casual indoor setting with nearby clothing and paraphernalia. +9b0bffcfeff7419.png The jeans are a dark indigo with a smooth texture, folded neatly on a light blue textured mat, in a top-down perspective, with visible brand label and stitching details near the top. +cc50bbe838a34bd.png The jeans appear to be a medium blue with a faded texture, viewed from above while being folded by a hand against a tiled wall background with a distinct light green stripe. +0c26afe566fe48f.png A pair of neatly folded, dark blue jeans with a slightly worn texture is placed on a striped, multicolored blanket, viewed from above in an indoor setting. +6e12d5dabff74b4.png The jeans are a classic mid-blue color with a slightly worn texture, viewed from a top-down angle as they hang on a black hanger, with a bedroom setting and a patterned black, white, and red bedspread in the blurred background. +97ec586cdd1846e.png The jeans are light blue with a faded texture, displayed flat on a patterned carpet from a top-down perspective, surrounded by miscellaneous indoor objects, and feature distinctive worn creases along the knees. +b10fc9a0059b4a5.png The image shows a pair of dark blue jeans with a smooth texture, laid horizontally on a wooden surface in a dimly lit room with red paneled walls and a brick pattern, illuminated by a nearby light source. +43adb520840348a.png The jeans are dark blue with a slightly worn texture, displayed flat on a light-tiled floor and held horizontally by a white hanger, with a visible foot nearby indicating a casual setting. +601129eda56e4e4.png The image shows a pair of dark blue jeans with a slightly worn texture, placed over a sink on a wooden cabinet in a bathroom setting, with visible rolled cuffs and a toothbrush visible nearby. +fa389a50a9024b4.png The jeans appear dark blue with a slight sheen, folded neatly with visible contrasting white stitching on the back pocket, placed against a floral-patterned fabric background in a slightly overhead view. +c03d917b79a94db.png The jeans are light blue with a faded texture, held upright by a hand against a dimly lit indoor backdrop featuring a wooden floor and a glimpse of a stuffed animal in the background. +71f97c93b6c943d.png A pair of dark blue jeans with a straight-cut design is folded neatly on a patterned bedsheet with floral and stripe designs, set against a background of a partially visible chair and tiled floor. +7138c92e56574ea.png A pair of light blue jeans with noticeable rips on the knees is being held vertically by hands, over a parquet floor with a partially visible bookshelf and striped object nearby. +1cf11a712215490.png The jeans are dark blue with a slightly faded texture, viewed from above lying flat on a wrinkled, light-colored patterned fabric, with visible wear marks around the knees and a tiled flooring in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/kettle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/kettle_descriptions.txt new file mode 100644 index 0000000..818dcc5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/kettle_descriptions.txt @@ -0,0 +1,14 @@ +d83a0b9b49424f0.png The kettle has a sleek black and silver polished surface, is viewed at a slight angle from above with a handle visible, set against a wooden countertop alongside other kitchen appliances in a cozy, well-lit corner. +d0ab5aa3c4ee4fa.png A predominantly red kettle with a shiny silver top and black handle is seen from an overhead view, placed on a textured carpeted floor with sunlight creating distinct patterns. +f04b7e807d0f409.png A vibrant red kettle with a black handle is placed on a white gas stove, viewed from an elevated angle in a cluttered kitchen setting with various items around, such as a cutting board and seasoning bottles. +c617f0c0e8fe4d8.png A glossy black kettle with a transparent water level indicator is viewed from a slight side angle, positioned on a light green dish rack surrounded by a granite countertop and white kitchen cabinets. +531696126196424.png An orange, glossy kettle with a black handle and spout cap is held horizontally over a wooden floor, with a metal wire rack visible in the background. +0a019ff7a759486.png A brushed gray kettle with a matte finish and a black handle is positioned on a dark fabric surface, viewed from an overhead angle revealing a compact, rounded body and a spout on the right side. +55fe44b926334e3.png A black, glossy electric kettle with a curved handle is centrally positioned on a beige countertop in a bathroom setting, with a white tiled wall and a metal rack holding cleaning items in the background. +c94e614bf3ca4e6.png The kettle is silver with a smooth metallic finish, viewed from an angled top perspective, featuring a black handle and knob, against a background of light hardwood flooring. +18fcd51a53424e7.png The kettle is white with colorful circular patterns and a prominent handle, positioned upright and held by a hand against a soft, burgundy fabric background within a dimly lit interior setting. +36d6db13e0e44e0.png The kettle is metallic and shiny with a narrow gooseneck spout viewed partially from the side, held by a black handle, positioned on a wooden tabletop against a plain wall with nearby household items. +106a134ba066404.png A metallic kettle with a black handle is positioned upright at a skewed angle inside a circular white sink, set against a wooden countertop with a tiled floor background. +0919dcfe5763408.png The black kettle with a smooth, glossy texture is lying on its side on a shiny black stove, with a silver spout and handle visible, set against a wooden kitchen floor and cupboards. +aa99c9b967a94ec.png The kettle is metallic silver with a smooth texture, viewed from the top with a hand holding the black handle, set against a tiled backsplash featuring a grid pattern of various shades of gray and white, next to a black countertop and gas stove. +28ce54259e87422.png The kettle is spherical with a glossy red finish, lying on its side with a black handle facing upward, positioned on a white stovetop with black coil burners and a tiled backsplash in a dimly lit kitchen environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/key_chain_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/key_chain_descriptions.txt new file mode 100644 index 0000000..e21342e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/key_chain_descriptions.txt @@ -0,0 +1,14 @@ +03efa7d999954fa.png A hand holds a silver metallic key chain with a flat, slightly curved multi-tool that has two small protrusions, positioned in a dimly lit indoor environment with a blurred green object in the background. +9eeadf759d2e4c1.png A person holds a metallic key chain with a rectangular pendant engraved with text, alongside a blue and silver house-shaped piece, against a plain off-white wall background. +670e85d4b4d9482.png The key chain features a light-colored, textured plush pom-pom with a slightly worn appearance, viewed in a bathroom environment with a sink and mirror, reflecting a person holding it alongside multiple keys and a purple tag. +96fe41510cbd44f.png A silver metal key with a rounded bow is attached to a flat, oval, white key fob displaying faded blue text, set against a light wooden surface with paper edges slightly visible. +4cb48153a950428.png A silver key chain shaped like a bear has a red-outlined heart with the word "LOVE" and is placed upside down against a dark brown wooden background. +c407f913fcb14f4.png A small, light brown teddy bear-shaped keychain with a matte finish is lying on a marbled brown surface next to silver keys, viewed from a top angle with a blurred background pattern. +03bc8fbef1e44a6.png The keychain features a metallic, dolphin-shaped design with a polished surface lying flat on a textured black seat against a blurred green background. +c35631b2f96f4b6.png The keychain features a metallic design with a heart shape and text, set against a worn, gray-colored surface with scattered yellow splotches. +2090a7757e8740b.png A round yellow keychain with a happy, cartoonish face featuring large eyes and a smiling mouth, lying flat on a wooden surface beside a computer keyboard. +13764989077041e.png The key chain features a cartoonish character with a pink face and big eyes, wearing a red top, against a hand-held background with a tiled or stone floor visible. +4f978623a1de411.png A heart-shaped keychain with a glossy, reflective surface featuring floral motifs hangs vertically on a wooden background, accompanied by other keys and a black key fob. +e10520644ca049b.png A small, plush brown teddy bear keychain lies on a wooden floor, attached to a patterned fabric, with distinct facial features despite the low resolution. +d074e57103c14c9.png A metallic chainmail-style keychain lies on a glossy marbled surface with a black car key featuring distinct white button labels, viewed from an overhead angle. +e5b8ac0a359049b.png A metallic key attached to a square keychain featuring a colorful abstract design rests on a textured brown leather couch, with white earphones partially visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/keyboard_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/keyboard_descriptions.txt new file mode 100644 index 0000000..807640e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/keyboard_descriptions.txt @@ -0,0 +1,14 @@ +74573e67f051458.png A black keyboard with a glossy finish is resting diagonally across a white sink in a bathroom setting, with visible reflections from the faucet and tiled flooring. +42060925720641f.png The keyboard is part of a black laptop with red accents, including backlit keys, viewed from an overhead angle on a gray carpet, and features visible stickers and a QR code on the screen. +5bc598414ca741c.png The keyboard is black with a silver trim, featuring raised keys and viewed from an angle on a light wooden desk in an office setting with two computer monitors displaying spreadsheets and a QR code. +77c6cdbf5f97484.png A black keyboard with a standard layout and raised keys is positioned vertically against a textured wall, surrounded by a cluttered background of cables, a computer tower, and plush toy on a beige carpet. +7084bcc0805c4ed.png The image shows a black keyboard with white lettering viewed from above, placed on a patterned tablecloth alongside a smartphone and computer mouse on a maroon surface. +7a6d03b24f604cc.png The keyboard is black with white lettering, viewed from a slightly elevated angle on a reddish-brown desk, accompanied by a closed orange plastic container in the background, set against a tiled floor. +94c354d6992f484.png The keyboard is black with white lettering, viewed from a top-down angle, situated on a dark wooden surface with visible grain, surrounded by various electronic devices including laptops and a router. +14018bd25ef94df.png A sleek, metallic laptop keyboard is viewed from the left side, with a dark leather couch serving as the background, highlighting the reflective sheen of the keys and the thin profile of the device. +0210ef17c0b043e.png The keyboard is a matte black QWERTY layout viewed from an angled top-down perspective, resting on a wooden surface with visible wear, surrounded by a cozy patterned fabric and a dimly lit environment. +d4325429ac7d4c8.png The keyboard, viewed from an angled top-down perspective, has a matte black finish with white lettering on the keys, set against a distinctive red patterned fabric background with abstract designs. +13921dcb72ad426.png The keyboard is black with red backlit keys partially seen from an angled top-down view alongside a black laptop on a wooden desk, with a blue brush visible in the background. +0b4667cfc9a34c0.png The keyboard is black with visibly worn, glossy keys arranged in a QWERTY layout, viewed at a slightly oblique angle from the side, with a wooden desk and part of a laptop in the blurry background. +6f013274c36a4ac.png The keyboard features a black matte texture with illuminated green backlighting, captured from an overhead angle on a cluttered desk, surrounded by various items including a maroon candle and audio equipment. +96f965cb812c401.png A black keyboard with evenly spaced keys is lying flat on a wooden floor with a light brown grain pattern, viewed from an angle with minimal visible background elements including a curtain and a wooden cabinet. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/ladle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/ladle_descriptions.txt new file mode 100644 index 0000000..cbd3afb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/ladle_descriptions.txt @@ -0,0 +1,14 @@ +bd410e603620437.png The ladle appears black with a smooth texture, positioned sideways being held in a hand against a patterned fabric background. +1eb5db009df54fc.png The ladle has a smooth, matte gray finish with a slightly curved handle, positioned diagonally from bottom left to top right against a dark countertop, with a living room setting in the background featuring a green placemat and a partially visible couch. +230af8ac0d78464.png The ladle features a matte black, semi-glossy round scoop with a straight metallic handle, viewed from above and slightly to the side, set against a bathroom countertop background with various toiletry items nearby. +d60ae471ebff446.png The black, matte-finished ladle is positioned horizontally on a speckled countertop, surrounded by dishes and partly positioned over a stove, with its bowl facing upwards ready to scoop. +0058c201192349e.png The ladle appears as a metallic, reflective utensil with a dark handle, positioned flat against a dark, speckled countertop, with overhead lighting creating notable contrast and surrounding shadows, visible diagonally from above. +3f016cfa44d74f8.png A black, round-bowled ladle with a long silver handle is lying on a patterned quilt displaying intricate green, yellow, and gray designs. +4e4f37f516324b0.png A glossy green plastic ladle is held upright in a room with a bed and nightstand in the background, showcasing its smooth surface and round, deep bowl. +fee2a1f5264d408.png The ladle appears black with a smooth texture, lying flat on a patterned rug with floral designs, next to two sneakers and beneath a wooden furniture piece. +9ad3f580f073444.png A black, matte-textured ladle with a long handle is held horizontally by a hand against a plain, softly-lit beige wall backdrop. +e730b112b6c24d1.png The ladle is light pink with a smooth, glossy texture, viewed from the side and slightly above, held against a patterned background featuring vintage farm scenes. +fcb13c2e62c34b3.png A black, matte-textured ladle with a round bowl and long handle is seen from a low side angle on a light-colored carpet, with shoes and a wall in the blurred background. +1a1e04f8c914411.png A black, matte-textured ladle with a wide, curved bowl and a long handle lies horizontally on a white bathroom sink against a background of blue bathroom rugs and various toiletries. +b973498e75f04b5.png A black, smooth-textured ladle with a stainless steel handle is being held horizontally over a granite countertop in a kitchen setting, with a view that includes a white tiled floor and chairs in the background. +55d1c237e9534b1.png The ladle is a light beige color with a smooth, slightly glossy texture, shown from a top-side angle against a textured, speckled brown carpet, held by a hand with its long handle curving upward to a round bowl. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/lampshade_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/lampshade_descriptions.txt new file mode 100644 index 0000000..6c9e860 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/lampshade_descriptions.txt @@ -0,0 +1,14 @@ +f20adca6a533493.png The lampshade is a simple, white, square shape set at an eye-level viewpoint with a smooth texture, situated in a bathroom environment alongside a black metal base and placed on a marble countertop near a sink and patterned shower curtain. +f023f97f897e4e5.png The lampshade features a white and orange geometric design with overlapping panels creating a spherical structure, viewed from below in a dimly lit room with visible string lights and vertical blinds in the background. +907adaa2308a483.png A person holds a cream-colored, ribbed fabric lampshade horizontally in a room with light wooden flooring, a shaggy beige carpet, and a white dresser against the wall. +759f2e5d55b5430.png The lampshade is white and smooth, viewed from an overhead angle, set against a dark speckled counter with a silver metal stand featuring an openwork design. +c82d1215968b493.png The lampshade is a white, smooth-textured conical shape with a dark rim, placed horizontally on a bathroom countertop cluttered with various toiletries and reflecting in a mirror. +42c535404f07485.png The lampshade is a warm beige color with a smooth texture, viewed from the side at an angle, placed on a wooden surface surrounded by miscellaneous items like crumpled paper, and it diffuses soft light onto the plain wall behind it. +1dfa8b16f2ff4b7.png A cream-colored, trapezoidal lampshade with a smooth texture stands on a beige carpeted floor, surrounded by a mix of seasonal items and household objects, viewed from a top angle. +b1b704c18c224f4.png The lampshade is an off-white color with a soft, slightly flared shape, positioned horizontally on a table next to a beige couch, set against a backdrop of white window shutters. +db8568830f1744d.png A dual white frosted glass lampshade set on a metallic adjustable stand, with visible wear, is positioned against an off-white indoor wall with subtle texture and a glimpse of a book on the shelf. +7e46554c1b17468.png The lampshade-like object is beige with a slightly worn texture, seen from a side angle resting on a marble countertop, with a leafy plant and blurred bathroom elements in the background. +494461e19b16433.png A matte black, cone-shaped lampshade with a slightly ruffled trim is positioned horizontally against a cluttered background with a laptop and pink fabric visible. +1ea21a16921b439.png The lampshade is white with a crisscross pattern of small gold dots, leaning at an angle on a beige carpet, positioned in front of woven storage baskets and a small desk fan. +4489bbc58d5e4c3.png The lampshade is a light cream color with vertical ribbed texture, viewed from an angle on a bed with a wooden headboard and surrounded by a plaid blanket and other miscellaneous items. +10430f806b07454.png The lampshade is conical and tan-colored, with a smooth texture, viewed from a side angle against a teal wall, next to an open white door and a cluttered dresser. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/laptop_charger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/laptop_charger_descriptions.txt new file mode 100644 index 0000000..0a9b36d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/laptop_charger_descriptions.txt @@ -0,0 +1,14 @@ +880ab59a0fe4490.png The laptop charger, seen from an oblique angle, is a matte black square with a visible logo, held in a hand against a bathroom sink countertop with a decorative sculpted head in the background. +d3471698edc0463.png The laptop charger is black with visible text on its adapter, tangled cables, and is placed on a green table surface with a red floor and miscellaneous items around, viewed from an overhead perspective. +3c31bb501c04480.png A black rectangular laptop charger with a smooth matte finish is held in a hand, viewed from an oblique angle with a visible label containing text and symbols, set against a tiled floor with shoes and a plastic bag in the background. +def9fca0f846460.png The image shows a white, square-shaped laptop charger with a smooth texture, viewed from an angle showing both the front and side, held in a hand over a wooden floor with a wicker basket and curtain in the background; it features an identifiable apple-shaped logo and a slightly protruding cable. +9a7caa2d52f4484.png The laptop charger is black with a matte finish, held in a hand from an overhead angle against a white tiled floor and adjacent navy blue cabinetry, with visible cables extending from either end. +fca4ebffd44047e.png The black laptop charger with a cylindrical shape and visible cables is resting on a white tiled floor with a visible wastebasket and cloth in the background, shot from an overhead angle. +1e8add310393403.png The black rectangular laptop charger with visible white labeling and text is positioned flat on a wooden surface next to a partially visible laptop, with cables extending from both ends and a tiled floor background. +390e8dfe57c447f.png The laptop charger, with a black and glossy finish, is coiled on a beige plastic chair with a patterned brown and beige tiled floor in the background, displaying distinct labels and a recognizable plug end. +156e8eabb240418.png The laptop charger is black with a smooth texture, viewed from above on a wooden table, featuring a distinct power brick with a label and attached cords. +e6838f82bc6349b.png The black laptop charger features a smooth, matte finish with visible cables, and is positioned horizontally against a wooden desk surface amidst other electronic devices and a power strip. +718c3373f96f41d.png A black laptop charger with a matte texture lies on a shiny black tiled floor, viewed from above, with visible cables coiled around the central adapter. +e024770a73c3417.png A black rectangular laptop charger with visible branding lies on a light blue textured rug, surrounded by tangled cords, viewed from above with a wooden floor and part of a shower curtain in the background. +c874c96ec15647c.png A black laptop charger with a matte finish is held in a hand over a textured, multicolored carpet, featuring a visible yellow label with safety symbols and a coiled cable extending outward. +c91c0c46944f4b0.png A black rectangular laptop charger with a smooth texture, featuring a glowing green light indicator, is viewed from above on a light and dark wooden checkered floor, surrounded by tangled white cables. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/laptop_open_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/laptop_open_descriptions.txt new file mode 100644 index 0000000..0254439 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/laptop_open_descriptions.txt @@ -0,0 +1,14 @@ +a20675737b82479.png The black laptop with a textured finish is viewed from an overhead angle, positioned diagonally on a beige surface in a room with white tiled flooring, showcasing its open screen and keyboard with visible keys. +ab8c4cf7d6f9471.png The laptop, seen from a slightly elevated side angle, appears to have a plain dark matte exterior and sits partially open on a carpeted floor amid scattered items, including a pencil and paper, with a distinct focus on the light reflecting off the hand interacting with it. +ac85666a888845a.png The image shows a partially open, black laptop seen from the side with visible vents and stickers on its underside, set against a brown carpet with light tan geometric patterns, and a hand wearing a red wristband holding it. +c35c28db989b44e.png The laptop is rugged with a black and silver exterior, seen from an angular side view, positioned on a multicolored carpeted floor, featuring a robust design with visible hinges and ports on its sides. +429b2ca9410147b.png A black laptop with a matte texture is in an upside-down, partially open position against a light pink wall, surrounded by kitchen items and a gas cylinder in a domestic setting. +10a3ae9e25f44fc.png The laptop is viewed from an overhead angle, displaying a black, matte-textured body with a visible keyboard and trackpad, surrounded by a woven, rustic brown background and a contrasting flat surface beneath. +a77578a5b5f34dc.png The laptop features a silver casing with a black keyboard, viewed from a top-front angle, surrounded by a patterned green and brown curtain backdrop, and noticeable for its prominent webcam on the bezel above the screen. +a57a3eacd4c3469.png A black laptop is open on a patterned tile floor viewed from above, with visible stickers near the trackpad and a sneaker in the background. +0b9ae06b7e52498.png A black laptop with a glowing screen displaying a QR code is viewed from above on a floral-patterned surface against a plain wall background. +dfbe4f83358948d.png The laptop is predominantly black with a glossy texture, shown in a tilted position being held by a hand, displaying an upside-down animal screen saver in a cozy indoor setting with a brown wooden floor and household items in the background. +13a49c0a100f498.png The laptop, viewed at an angle with its screen and keyboard perpendicular on a carpeted floor, exhibits a dark color with a glossy texture, positioned in a living room setting with a gray sofa and assorted textiles in the background. +f1a9673e0226434.png The open laptop, viewed from a low angle on the floor, features a silver color with a dark screen, set against a kitchen background with light wood cabinets and a tiled backsplash, surrounded by various kitchen items. +c7cfec45d6d74f4.png A black laptop with a matte texture is open and angled on a green countertop in a bathroom environment, featuring a visible white logo on the lid and surrounded by items like a toothbrush holder and a towel. +4a19132e43b7405.png A black open laptop with visible missing frame parts around the screen, centered on a stack of books against a turquoise wall, showing exposed hinges and cables. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/leaf_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/leaf_descriptions.txt new file mode 100644 index 0000000..adbc7c3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/leaf_descriptions.txt @@ -0,0 +1,14 @@ +13a11534065445b.png The leaf is broad and green with smooth texture, curving slightly downward from the pot, which is wrapped in pink paper, set against a dimly lit interior with a window providing natural light. +cfe6a3422ff2482.png The red, curved leaf held between a thumb and forefinger contrasts against the lightly speckled off-white surface, with subtle veins visible despite the low resolution. +27744d9cb7564d6.png The leaf, viewed from above, is slender and green with a smooth texture, lying on a beige, textured carpet near a green pillow and beside a cat's tail. +bd75723580b744c.png The small, brown leaf appears curled and lies flat on a textured beige surface, resembling a hard, smooth backdrop. +bcbaf0728de7480.png Bright green, textured leaves with serrated edges and a soft, fuzzy appearance sprout from a vertical stem, set against a pale tiled background. +cfdba870cb4e4aa.png The leaf is small and oval with a vibrant green color featuring prominent white veining, lying flat on a plain white fabric background. +272e055235b648e.png The leaf appears elongated and pale green with a smooth texture, viewed from above on a solid teal surface, presenting a slightly curved form with a pointed tip. +a4ab395682b3483.png A single, smooth, and glossy dark green leaf is positioned flat on a wooden surface with visible planks, enhanced by soft lighting that casts subtle shadows. +70c09ef172de439.png The leaf is a dry, curled brown specimen with a rough texture, held in a hand against a neutral beige tiled floor, and it has a pointed, lobed shape. +31d4a40d7af04f5.png A green leaf with evident venation and a small bite-like notch on the edge is held horizontally above a tiled floor, showing a dull matte texture and a slightly curved silhouette. +ebe291e4467c402.png The leaf, displaying a warm orange hue with a textured surface, rests flat on a worn, dark wooden stool with a cut-out handle, set against a carpeted floor in a softly lit indoor environment. +326a91b41e7744d.png A dried brown leaf with curled edges is held by a hand, viewed against a blurred white toilet background, revealing its crinkled texture and elongated stem. +b875a7f77c9f498.png A single green leaf with a smooth texture lies flat on a speckled terrazzo floor, featuring a pointed tip and jagged edges. +a6b1a70891d14aa.png The small, curled dark brown leaf with a thin stem is viewed from above on a clear glass surface, revealing a vertical white paneled background and a hint of wooden flooring. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/leggings_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/leggings_descriptions.txt new file mode 100644 index 0000000..50b0a44 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/leggings_descriptions.txt @@ -0,0 +1,14 @@ +21451986704243b.png The leggings are solid black with a matte texture, laid flat on a brown leather couch with white blinds and multiple fabrics, including blue and white materials, in the background. +7854917a66624e9.png A pair of gray leggings with a smooth texture is draped over a green yoga mat on the floor, with a glimpse of a kitchen setting in the background. +a729f88a2eb04da.png A pair of leggings with horizontal stripes in shades of purple, green, blue, and black lies flat on a carpeted floor with an ornate spiral pattern, viewed from above. +a4d4b887df72436.png A pair of dark-colored leggings with a smooth texture lies flat on a blue-carpeted floor, showcasing a simple, clean cut in a cozy living room setting with a plaid-patterned couch and wooden furniture in the background. +491efc92ae15478.png Dark, solid-colored leggings drape vertically over a chair, framed by a bright pink sweatshirt in a cozy indoor setting with tiled flooring and a floral tablecloth backdrop. +d8cf8388b78b403.png A pair of black leggings with a smooth texture is laid flat on a beige carpeted floor near a bed, with visible scattered clothing and electronic cables nearby. +2961ab2e2b78448.png A pair of dark navy blue leggings with a smooth texture is laid flat on a light gray marbled floor, emphasizing the garment's draped form. +89479b2d912f412.png Black leggings with a smooth texture are laid flat on a purple ruffled bedspread, with a bedroom setting in the background, and a distinct green alien pillow visible. +c3788bc94c54407.png The leggings are solid black, lying flat on a speckled tile floor with a scooter and other objects in the background. +fdb14a422f7e401.png Red leggings with a smooth texture laying flat on a tiled floor, positioned with one leg atop the other near a light-colored wall. +78bb0f8029d74f1.png Gray leggings with a light speckled texture are laid flat on a patterned teal and white rug, viewed from above in a room setting with a wooden table and assorted items in the background. +acc0e1e7b1f148d.png The leggings are dark-colored, possibly black, with a smooth texture draped over a bathroom sink counter next to a towel, viewed from a slightly elevated angle within a small bathroom with a visible toilet, wooden cabinet, and green litter box in the background. +7f94564fc6af449.png The black leggings with a smooth texture are folded on a white bathroom countertop against a tiled wall, with a visible white tag at the fold. +64b0a173ac8c4f6.png The black leggings have a matte texture, are laid flat on a beige carpet next to a bed frame, and feature a subtle seam detail along the sides. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/lemon_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/lemon_descriptions.txt new file mode 100644 index 0000000..2cd0f91 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/lemon_descriptions.txt @@ -0,0 +1,14 @@ +dd8d17774fdc47b.png A small, pale yellow lemon with a slightly rough texture is viewed from above on a light gray speckled surface with a visible dark blemish near one end. +67f46d49cddf402.png The lemon, a vibrant yellow with a slightly dimpled texture, is resting on a light-colored kitchen countertop near a metallic pot, with its end facing the viewer in a slightly shadowed environment. +1b14391bd8ae4b7.png A vibrant yellow lemon with a smooth, glossy texture is held horizontally against a clean, white kitchen countertop background, with visible nearby kitchen elements including bottles and appliances, slightly blurred. +fc95ca5a8fa340b.png The lemon appears with a mottled yellow surface, positioned centrally on a blue and white geometric patterned cloth, viewed from above. +dbd5a6a504be486.png The lemon appears small and slightly oval with a light yellow color, a smooth texture, and a visible shadow, resting on a dark, flat surface against an industrial background with faint text above. +801e40e1a04c424.png The lemon appears bright yellow with a smooth texture, held between a thumb and finger from a side angle, with a beige carpet and pink walls visible in the background, and a small protrusion at the top. +7a2700dedc31460.png The lemon appears small, round, and greenish-yellow with a smooth texture, positioned on a stainless steel countertop in a kitchen environment with a blurred blue tray and a tiled wall in the background. +f50113ab040f48f.png A single, glossy green lemon (or lime) rests on a dark table, viewed from above, with a tiled floor forming the background. +71867dad96364ce.png The lemon, positioned horizontally on a glossy tiled countertop, appears slightly greenish-yellow with a bumpy texture, set against a background featuring a grid of multicolored, marble-patterned tiles. +2b59ce2d2664467.png The object appears to be an oval, bright green, smooth-textured fruit resting on a hand, with a bedroom setting in the background featuring a floral-patterned bedspread and hanging towels. +81f9ab344501471.png The object appears to be a green lemon resting centrally on a textured gray fabric with visible lighting reflections on its smooth surface and a small stem mark at the top, accompanied by a black cable in the top left corner. +d9179767e78a491.png An orange-yellow fruit with a slightly textured and dimpled surface, viewed from above, rests on a bed with a patterned geometric sheet background. +053bbfc2e75d4ef.png The lemon is small, predominantly yellow with a greenish tinge, and has a textured surface with visible dimples, seen from an oblique angle held in a hand against a patterned black-and-white fabric background. +0728981f63844e5.png A small, round, bright green lemon with a slightly mottled texture is positioned on a white, dusty countertop beside a sink, viewed from above in a bathroom setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/letter_opener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/letter_opener_descriptions.txt new file mode 100644 index 0000000..a49fb6a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/letter_opener_descriptions.txt @@ -0,0 +1,14 @@ +a008c61be89b421.png A hand holds a slim, metallic silver letter opener with a brown handle, angled horizontally, set against a plain light-colored wall background with subtle textural lines, and partially viewed over a tiled floor with a metal trash can nearby. +7babbba5556547b.png The letter opener, viewed from above, is metallic with a long narrow blade and an open elongated handle, resting on a smooth, beige countertop. +f266e9d6d3fc406.png A metallic silver letter opener with a smooth, shiny texture is seen from an overhead angle on a tiled floor and next to the white edge of a sink, with a distinct pointed tip and a simple handle design. +c37538d3e41e4d5.png The letter opener is metallic silver with a smooth texture, lying flat on a wooden surface with a lace curtain and a colorful cup in the background. +5b66763ab0d64d3.png The letter opener is a slender, dark-toned object with a glossy finish, held horizontally in a hand against a cluttered, dimly lit background of various items on a wooden surface. +357dd6bd7dd7425.png A hand holds a sleek, metallic silver letter opener with a flat, elongated body and a pointed tip, against a soft beige background with indistinct objects. +477be5166fcb442.png A sleek, metallic letter opener with a rounded handle featuring a gear-shaped cutout is lying flat on a black and white geometric patterned surface. +72450a6d2efa417.png A person is holding a brown-handled, metallic letter opener with a pointed tip in a living room setting, featuring a leather couch, a plugged-in television, and a partially-visible window in the background. +b1e2f653ee2c434.png The object is a book with a visible brass or gold-colored Arch of Titus metal bookmark protruding from its top and resting against a background of gray curtains, positioned on a striped fabric surface. +6b4845a11563407.png The letter opener is bright red, with a slim and flat design, held vertically in a hand against a plain white background. +9d32508a8fa6451.png The letter opener is metallic silver with a detailed, ornate handle, viewed in an upright position against a muted green wall, with a window and some household objects faintly visible in the background. +1d0164b8c30a4f4.png A red plastic letter opener with a curved blade sits on a textured, cream-colored woven mat alongside a black rectangular object. +62d9819688a541d.png A silver, metallic letter opener with a shiny, reflective texture is positioned lengthwise on a dark marble-patterned surface, featuring a chain attached to its handle. +d77d0994b6f549b.png The letter opener is slender and green with a smooth texture, viewed from the side against a tiled bathroom countertop with visible grout lines. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/lettuce_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/lettuce_descriptions.txt new file mode 100644 index 0000000..93ce434 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/lettuce_descriptions.txt @@ -0,0 +1,14 @@ +7952b72a0490477.png The light green, spherical cabbage is wrapped in plastic, sitting on a speckled granite countertop next to yellow plums, with a hand reaching towards it and various kitchen items scattered around. +fc801209f518469.png The image shows a packaged bundle of organic romaine lettuce with vibrant green leaves visible through a clear plastic bag, held in a hand over a beige countertop, surrounded by various kitchen items in the background. +352c02f3cf04424.png A plastic-wrapped romaine lettuce with vibrant green outer leaves and a pale yellow-green core is lying horizontally on light-colored wooden floorboards against a backdrop of kitchen cabinets and a stainless steel appliance. +8ed049601e2f4f1.png The lettuce, viewed from above, has a mix of dark and light green leaves with a slightly wilted texture, resting on a marbled brown countertop beside a white sink against a tiled bathroom background. +c75e8db47111469.png A small, pale yellowish object with a smooth, rounded texture is resting atop a turquoise fluted plastic surface on a light-colored tiled floor. +e64452ae448c47a.png A light green lettuce, wrapped in a thin transparent plastic bag, sits on a patterned fabric surface, with a background featuring a beige wall, a brown paper bag, and assorted soft furnishings. +7ebe74f6798a43d.png A round, pale green lettuce with a smooth, slightly glossy texture is wrapped in clear plastic and placed in the center of a bed with a striped white, black, and tan comforter. +7d7ce6c1c7e6404.png A bright green cluster of curly-leaved lettuce sits flat on a speckled brown countertop, with wooden cabinets below and a light-colored wall equipped with electrical outlets in the background. +05bbfb01d0c4416.png A fresh, elongated romaine lettuce, showcasing crisp, overlapping green leaves with a lighter core, is wrapped partly in a clear plastic bag and positioned diagonally on a white sink counter with visible grid tile flooring in the background. +588612715977441.png The lettuce features deep burgundy-red ruffled leaves with a slightly glossy texture, viewed flat against a pale, speckled surface, highlighting its slightly jagged edges and contrasting green veins. +1e216df9ef9149a.png The image shows a light green, round iceberg lettuce wrapped in plastic with a small label visible, resting on a speckled gray countertop in a kitchen environment with a glimpse of a tiled floor. +de9f6f9a6f4d471.png A light green head of lettuce with a smooth, slightly crinkled surface is wrapped in plastic and situated on a white paper towel atop a wooden countertop, with a black kitchen appliance and a framed artwork in the background. +da2059191c9b44c.png A single, vibrant green romaine lettuce leaf with visible ribbing lies flat on a white surface with a red and white checkered pattern partially visible at the top right corner. +2e657d916ce04b1.png The lettuce, wrapped in a transparent plastic, displays a light green hue with a smooth texture and is held at a mid-level angle against a living room setting with wooden flooring and beige furniture in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/light_bulb_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/light_bulb_descriptions.txt new file mode 100644 index 0000000..bb6281f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/light_bulb_descriptions.txt @@ -0,0 +1,14 @@ +1759cda7dccc4a6.png The image depicts a white, spiral-shaped compact fluorescent light bulb with a textured surface, viewed from an angle on a wooden tabletop with subtle reflections, against a background of wooden flooring and dark shadow. +e465398daa774df.png A round, white recessed ceiling light emits a bright glow against a subtle gray backdrop, surrounded by a subtle halo effect, with a slanted white architectural edge visible in the lower right corner. +2b3a34f7001b40d.png The image shows a clear, incandescent light bulb with a metallic screw base held at an angle against a bathroom-like environment with gray-tiled walls and a decorative border, its transparent glass revealing the filament inside. +3f64c09f4df24a3.png A fluorescent tube light, emitting a bright white glow, is mounted horizontally against a smooth cream-colored wall, casting soft illumination onto the surrounding dimly lit room. +57961818e7cf45d.png The light bulb, held horizontally against a wooden plank background, features a frosted cylindrical top and a metallic screw base, with a hand gripping the central white plastic section. +5970eccfe01147a.png The light bulb has a frosted white finish with a metallic base, viewed from above on a textured orange fabric, set against a tiled floor background. +c47329b6d99b47a.png The light bulb appears as a clear glass sphere with a metal base, lying horizontally on a textured red surface with a blurred chart-like pattern in the background. +15e3de3fc2084c1.png A vertically oriented, compact fluorescent light bulb with a white, spiral texture is mounted on a plain beige wall corner, surrounded by a softly lit environment. +625cf56e10fe418.png The light bulb is an opaque, spherical white bulb mounted on the wall at an angle, with a rough, beige wall and ceiling serving as the background. +f18e93f2a7144fb.png The light bulb, positioned upright, features a white frosted top with a distinct metallic base and is set against a plaid, fabric background with green and beige stripes. +3f7e54edbbad45a.png The light bulb is white with a smooth texture, viewed from a side angle, mounted on a white socket attached to a pale wall with a visible cord for power supply. +722d3aef4920466.png The image shows a matte white light bulb resting on a textured beige carpet, viewed from an angled side perspective, with its metallic base partially shadowed. +7110d67f7e96487.png The object appears to be a dark, spiral-shaped bulb with a reflective metallic base, gripped by a hand against a textured white brick background. +d8d30c19740048f.png The image shows a white, spiral compact fluorescent light bulb held horizontally with a metallic screw base, placed against a plain white textile surface on a wooden table with a red pen nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/lighter_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/lighter_descriptions.txt new file mode 100644 index 0000000..2113f83 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/lighter_descriptions.txt @@ -0,0 +1,14 @@ +0a2fd6a5ddbd492.png The image shows a metallic cylindrical lighter with a blue top, lying horizontally on a white ceramic surface with visible water stains, in a bathroom environment featuring floral-tiled walls. +e5e173200a27419.png A red lighter with a black neck and a white logo is angled diagonally on a wooden surface, partially illuminated by light, against a shadowed background. +480c2541d9484d3.png A red, long-neck lighter with a black tip rests flat on a textured, light blue blanket, surrounded by a carpeted floor and partially visible foot in slippers, displaying a partial cut-out pattern on its red handle. +57ffdb2f9b68466.png A small, yellow lighter with a metallic top is lying horizontally on a shiny, white toilet lid, surrounded by a dimly lit bathroom environment with a green floor mat partially visible. +12bd80bbbb6342b.png A metallic object with a cylindrical silver body and crossguard-like protrusions is lying horizontally on a dark countertop with a plastic container nearby. +97eba95d4817420.png A pink lighter with a white bottom edge, viewed from above, lies on a wooden surface beside a glass candle, displaying a yellow and black logo and silver ignition mechanism, with a shadowed flooring background. +58e37bb8ef204f1.png A translucent green lighter with visible internal components is positioned horizontally on a light-colored fabric surface, with a metallic top and a shadow cast on the right side. +fe7ac247a332497.png A black, long-reach utility lighter is held horizontally over a cluttered wooden table, surrounded by kitchen items like a grater, cups, and plastic containers. +e9da2fdadbff44e.png The lighter is predominantly yellow with a partially transparent body revealing inner components, positioned vertically on a glossy black surface with a worn, discolored metal ignition area at the top. +afe97e739313439.png A light blue lighter with a red button and a metallic top is positioned slightly diagonally against a dark, speckled surface. +dd015fbc942b47b.png A blue lighter with a textured, circular pattern is held horizontally in a kitchen environment, with wooden cabinets and various colorful items in the blurred background. +e998bdc77dcc435.png A red, matte-finish lighter with a long black neck is lying horizontally on a dark wooden table, accompanied by the visible pattern of floorboards in the background. +3208ad0d439849f.png A bright green lighter with a silver top rests on a lime-patterned, textured green fabric while a foot in a sandal is visible on tiled flooring in the background. +21469a28ead741e.png The object appears to be a slender, metallic rod with a shiny surface, featuring a lavender-colored, circular guard-like handle, photographed in a dim indoor setting with a dark floor in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/lipstick_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/lipstick_descriptions.txt new file mode 100644 index 0000000..fb0d4be --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/lipstick_descriptions.txt @@ -0,0 +1,14 @@ +b1fa7b74c2f94d4.png The lipstick is a deep, dark shade housed in a glossy black casing with a transparent cap, laying vertically on a rumpled white fabric background with visible creases. +35e159d07c71422.png A cylindrical pink-red lipstick, positioned vertically with its transparent cap removed, is held by a hand against a plain, off-white wall and grey stone-textured floor background. +406b12ac1c3a43f.png The lipstick appears as a black cylindrical tube with a shiny texture, viewed from above on a dark wooden surface, reflecting light along its length. +dabc4f487e4f433.png The lipstick is a cylindrical tube with a predominantly red body, a white cap, and a black label, viewed from a slightly elevated angle on a wooden, textured surface. +23985e1117e6400.png A small lipstick with a glossy metallic gold case and a matte beige cap rests horizontally on an open palm, set against a white bathroom countertop background. +96d774ca06ba4bb.png The image displays a lipstick with a dark cap and possibly a muted, neutral hue for the base, angled on a dark textured surface, alongside a hairbrush and a green object in the background. +e863e3a7509b48d.png A pink cylindrical lipstick, viewed from above on a dark textured surface, appears smooth with a slightly angled cap, casting a subtle shadow in the ambient lighting. +039b08c53fc441f.png A deep burgundy lipstick with a glossy finish is lying flat on a speckled beige and brown granite surface, reflecting bright overhead lighting. +33399b5ddc3a4fe.png A hand holds a cylindrical lipstick with a deep burgundy shade and a glossy texture, viewed horizontally against a background of a light gray bedspread with a subtle geometric pattern. +539ce30cf703495.png A red lipstick with a glossy finish and a rectangular shape is standing upright on a speckled granite countertop, surrounded by decorative seashell necklaces and a glass container with plants in the background. +d286cfacf9974fb.png A matte black lipstick tube with a silver band and logo lies horizontally on a marble surface, shot from an angled top-down perspective, with a tiled floor partially visible in the background. +5f95087b030a41e.png The lipstick is a smooth, solid pink tube seen from an angled top view on a plain, mottled dark brown background. +ee6e04d389e442f.png The lipstick appears in a horizontal position with a transparent cap and dark-colored casing, lying on a speckled marble countertop. +e4989aad9bdd474.png The lipstick, viewed from a top-down angle, features a sleek black case with a glossy finish, lying horizontally on a mottled brown and beige countertop, with the cap slightly detached revealing a metallic blue color inside. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/loofah_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/loofah_descriptions.txt new file mode 100644 index 0000000..8f529ff --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/loofah_descriptions.txt @@ -0,0 +1,14 @@ +ca859d605f1a4b2.png A dark gray, netted loofah sits in a compressed, folded manner on a bathroom tile floor with a wooden cabinet on one side and colorful shoes partially visible in the foreground. +b70620958d2f4ca.png A person is holding a green and white mesh loofah in their hand, positioned against a dimly lit kitchen background with wooden flooring and white cabinets, with the loofah's dual colors contrasting against the dark surroundings. +775fbbebf9f84bc.png A twisted, light purple loofah rests horizontally on a white wooden box, set against a tiled floor and a light-colored wall corner. +6ded6c8ad28f496.png The blue-green loofah, with a mesh texture and ball shape, hangs from a white rope, positioned against a white wall beneath a plastic shower caddy containing toiletries. +df2bf787d2c5436.png A blue, netted loofah with a white hanging loop is lying on a light carpeted floor in a cozy living room setting, featuring a dimly lit fireplace and furniture in the background. +307c8185eb27456.png A gray, netted bath pouf loofah sits on a beige carpeted floor in front of a dark wooden furniture backdrop, viewed from above. +f9ba72c2bcdf42f.png An orange, textured loofah is placed on a beige carpeted floor near a plain cream-colored wall with a white electrical outlet visible to the right. +469231d39be44ba.png A two-toned loofah, with a peach and black netted texture, sits in a metal wire rack against a tiled blue wall inside a shower area. +24089ff460314de.png A red, mesh-textured loofah sits on a tiled floor from an overhead viewpoint, with a fluffy white carpet partially visible near the top right corner. +3bc4723deb11407.png A coral-colored loofah with a delicate, mesh-like texture hangs from a doorknob in front of a white door, set against a gray wall and wooden floor. +ab73295f889843f.png A vibrant green loofah with a fluffy texture sits on a white bedspread, surrounded by lightly patterned sheets. +f9db48966fad4f5.png A blue mesh shower loofah with a white rope handle is held up against a bedroom background, featuring a patterned bedspread and partially visible bed frame, with a slightly crumpled appearance due to low resolution. +42fd36e0cc42416.png A blue mesh loofah with a white hanging loop lies on a textured beige carpet in front of a vibrant red couch, viewed from a slight side angle. +dcaf7a7550f345f.png A vibrant purple loofah with a dense, mesh-like texture sits on a bathroom counter, viewed from a slightly elevated angle, surrounded by a noticeable presence of toiletry items including a bottle and a toothbrush in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/magazine_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/magazine_descriptions.txt new file mode 100644 index 0000000..8b38fe8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/magazine_descriptions.txt @@ -0,0 +1,14 @@ +84cbc695fd3947b.png The magazine features a predominantly dark cover with a gradient transitioning into lighter shades, possibly depicting a landscape scene with a horizon, placed on a speckled granite countertop in a kitchen setting, surrounded by various cleaning supplies and appliances. +8707d0b2bb52431.png The magazine, seen from above on a tiled floor, features a white cover with colorful images and text, surrounded by laundry and anchored by a textured rug in the background. +83cc30d6df2b4a7.png The magazine has a white cover with a gradient blue lower section featuring large circular-shaped awards labeled 2016, 2017, and 2018, displayed at a tilted angle on a speckled beige carpet with a person's legs partially visible in the background. +6236f078fec34a0.png A magazine with a cover featuring an image of a woman holding a baby, primarily in tones of yellow and blue, lies flat on a geometric patterned floor with brown, orange, and white tiles visible in the background. +97992e48dc554c7.png The magazine is positioned upright on the bathroom floor in front of a toilet, featuring a vivid blue and red cover with the image of a caped character, set against a tiled floor with a toilet brush and a red towel visible nearby. +1359e0c9a93d42a.png The magazine is held upright with the pages fanned slightly open, showcasing a glossy, reflective surface with a predominately white color, against a soft, patterned white fabric background with a partial view of a bedside environment and a wall-mounted painting. +2f09259a81ae4a7.png The image features a magazine with a brown-toned cover displaying a face prominently, positioned flat on a light-colored tiled floor with faint reflections, accompanied by another item in the background, hinting at an indoor setting. +a79b93d8b33e4a1.png The magazine, viewed from an angled position on a textured brown surface, features a predominantly dark, high-contrast cover with an intense, central monochrome image and partially visible text in the upper right and lower left corners. +827f9707c8404a9.png A blue and white magazine titled "Best Pick Reports" lies flat on a dark wooden table, surrounded by playful children's decor including a seated grey cat, colorful toys, and a superhero-themed chair in the background. +8a1e105ce50c425.png The image shows a magazine with a red spine and a mix of white and colorful elements on the cover, placed horizontally on a white quilted surface, with a softly blurred blue background. +edcbb996e64a4b5.png The magazine features a yellow cover with bold black text and a central image of two people, held upside down in a bathroom setting with green walls and towels, above a patterned blue and green rug. +2aa8d5aa83be4d0.png The magazine features a muted brown cover with distinct, colorful illustrations of snakes, positioned at an angle on a metallic chair, set against a concrete floor background. +e1c15e9b46f3495.png The magazine, lying on a white toilet seat, features a bold red and black masthead with a close-up of a person holding an instrument, set against a bathroom environment with a textured beige carpet and visible plumbing fixtures. +ba755698bf904d1.png The magazine, held in a hand tilted sideways, appears to have a glossy, dark cover with white text, set against a kitchen background featuring a white stand mixer and a black coffee maker on a countertop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/makeup_brush_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/makeup_brush_descriptions.txt new file mode 100644 index 0000000..8efc521 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/makeup_brush_descriptions.txt @@ -0,0 +1,14 @@ +79a8a254562c464.png A short, dense makeup brush with a silver metallic handle and dark bristles is held in a hand over a tiled floor, with a yellow-brown textured wall and wooden panel in the background. +cec7f3e4732a42a.png The makeup brush features a black handle and a metallic ferrule with soft, densely packed dark bristles, resting horizontally on a polished, light beige marble surface with visible patterns and reflections. +519f8e7caa91448.png A hand is holding a black makeup brush with a soft brown bristle tip, angled slightly downward against a kitchen setting with a wooden patterned floor and white cabinets in the background. +2a269e0d8b1d49c.png The makeup brush is black with soft bristles and is positioned diagonally on a brown marbled surface, with carpet visible at the lower edge. +246c5cb8506443d.png The makeup brush is a black, spoolie-type brush held horizontally against a bathroom background with light blue walls and a toilet. +0d310fe00257404.png The makeup brush features a pink handle with a metallic ferrule, soft beige bristles, and is held horizontally, against a cluttered indoor background with various containers and boxes, likely in a personal space or vanity area. +7529d62bbdaf4c8.png A makeup brush with a pink handle, white ferrule, and black bristles is shown lying horizontally against a dark, textured background. +aef85035733a48f.png A makeup brush with a black handle and silver ferrule has densely packed, soft beige bristles, lying horizontally on a white sink counter with a blurred bathroom background. +9c9620dba148424.png The makeup brush has a light pink, fluffy bristle head and a colorful, iridescent handle, viewed from the side against a kitchen background with a blurred countertop and silver appliance. +8673f33fdbda417.png The makeup brush features a black handle and a metallic ferrule, with densely packed, medium brown bristles, held at an angle above a vibrant red countertop with a blurred background showcasing kitchen items. +95d14d006e4f4db.png The makeup brush has a black handle and densely packed dark bristles, viewed from a slight upward angle, with a white tiled backsplash and a speckled countertop in the background. +9a4b076e9b30433.png The makeup brush features a light pink handle with a dark-bristled, flat rectangular head, positioned horizontally across a hand with a finger band-aid, set against a black marble-like surface scattered with fine debris, alongside a partially visible laptop. +1896b91c932b409.png A makeup brush with a light beige handle, featuring a pink floral design near the ferrule, and soft, brown bristles is lying flat on a textured brown surface, with a patterned fabric in the background. +2883b6b44a6f428.png The makeup brush has a pinkish-bronze handle and fluffy light brown bristles, held at an upward angle over a white sink and a light blue tiled bathroom wall. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/makeup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/makeup_descriptions.txt new file mode 100644 index 0000000..ca57161 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/makeup_descriptions.txt @@ -0,0 +1,14 @@ +69f947bc70ab494.png A hand is holding a small, cylindrical makeup container with a color gradient from dark purple to silver at the bottom, set against a wooden textured background. +5dc9d720b2b6408.png A rectangular black case with a transparent lid displays assorted neutral-toned eyeshadows, resting on rumpled gray fabric. +bb177207c2824ec.png A small bottle of foundation with a shiny silver cap, a smooth beige texture, and a visible label, photographed at a slight angle on a reflective surface with a blurred indoor background. +c8bb43dac403483.png A person is holding a slim, tube-shaped makeup container with a cream-colored body and a dark cap, displayed against a wooden floor background with some furniture and carpet edges visible. +52c94aa118be451.png A shiny, round, dark bronze makeup compact with the label "FASHION FAIR" on the lid, viewed from above, set against a glossy off-white background. +1ff9ff17ce454d3.png A small, square, dark-colored compact with a slightly open lid displaying a neutral-toned powder, set against a textured, soft fabric background. +e2c30197e7f64ae.png A black rectangular bottle with a white label on top is resting horizontally on a white radiator against a tiled wall, casting a shadow. +dde4f594b85d435.png The makeup appears as a circular compact with a two-tone pink and blue gradient, set against a floral-patterned fabric background. +a843493708894e6.png A person is holding a tube of makeup in a nude shade with a smooth texture, positioned against a background of a blue wall, a green floral cloth, and an electronic device on a wooden stand. +2336c3bd50df4f2.png The makeup object is a small, square box with a distinctive striped pattern of red, yellow, and brown on the sides, placed upright on a speckled granite countertop with a kitchen sink and various items, like a bottle, visible in the blurred background. +9821ca4c8338457.png The image depicts a round, glossy compact with a reflective surface and visible branding, resting on a white tabletop, surrounded by a reddish carpet and some textured flooring. +1a7e190e5a064fb.png A small, clear bottle with a beige liquid foundation is lying on a patterned cream-colored bedspread, partially obscured by a dark blue fabric, featuring a teal cap and black text on the label. +64536d52d1d14dd.png A purple makeup palette held in a hand contains an array of eyeshadow colors in neutral shades, with a shimmery texture, surrounded by a cluttered backdrop of various cosmetic items and electronic equipment on a dimly lit vanity. +e59cc5c856f34cf.png A dark purple lipstick tube lies beside a maroon compact case on a black surface, with a keyboard and a small clip visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/marker_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/marker_descriptions.txt new file mode 100644 index 0000000..6230d68 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/marker_descriptions.txt @@ -0,0 +1,14 @@ +1b7ffcbc2d91436.png A red-capped white marker with red text is horizontally positioned on a dark patterned background with abstract white line designs. +3272549f4f9345b.png The image shows a person holding a metallic gray marker with a black cap, viewed from an angled top perspective against a textured beige carpet background, with the person's arm partially visible and wearing patterned clothing. +f2ce7a6afe7b4bf.png A dark blue marker with a black cap lies diagonally against beige tile flooring, partially under a wooden cabinet, with a blue panel reflecting light beside it. +29509a472e264ed.png The marker has a shiny red cap and a gray body with visible black lettering, held horizontally against a plain light-colored wall background. +ad92b32ea5874b8.png A blue-capped marker with a black barrel and red labeling lies diagonally on a textured multicolored woven mat featuring purple and green patterns. +8929e13c0fdf47c.png A bright yellow marker with a smooth, cylindrical texture is lying horizontally on a black, textured surface, shown from a top-down perspective, with a clip visible on one side. +09b9bcd8054f44a.png A white marker with a dark blue cap is lying horizontally on a textured, light-colored surface with a wooden floor and a colorful object partially visible in the background. +3ae632288d844bd.png A yellow marker with a textured surface and a cap is lying horizontally on a white surface, casting a shadow with a dark background in the corner. +d840b501daf445b.png The marker is black with a glossy finish, held vertically by a hand against an off-white wall with framed artwork in the background, and features visible silver branding near its cap. +c153b2534ebb4b4.png An orange-colored marker with a smooth texture is held horizontally across a hand over a light surface, with green leaves and wood flooring in the background. +82943d54e9aa4f2.png The marker, held horizontally in a hand, has a sleek black cap and a smooth gray body with a blurred background featuring a pink chair and table on a wooden floor. +65c73e56c2f2470.png A black marker with a glossy finish is shown diagonally from the cap-end, featuring a red label with white text, set against a background of green cabinets, a white and blue hanging garment, and patterned floor tiles. +d01542413be7484.png The image shows a hand holding a black marker with a blue cap, set against a cozy living room background featuring a sofa, chairs, and a cabinet, with the text "Permanent Marker" visible on its body. +cdd4afb7b6f54bd.png A hand holds a white marker with a black cap and red logo against a backdrop of a white wall displaying a green "Letto" logo. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/match_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/match_descriptions.txt new file mode 100644 index 0000000..1bca5ed --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/match_descriptions.txt @@ -0,0 +1,14 @@ +e52ddcdf63c742a.png A slightly open cardboard matchbox with a bright yellow and red label featuring a cartoon character lies on a brown, worn wooden surface, with the match heads visible in black. +8fcd0e6bf8d640b.png The match appears to be light brown with a smooth texture, held horizontally between two fingers in a close-up view against a blurred background featuring a wicker-textured bed frame and a light-colored blanket. +fd80ab5ed364478.png A partially burned match with a darkened, charred tip and a light wooden stick rests horizontally across two fingers against a smooth, pale background. +d319a77689c945c.png A single matchstick with a light wooden texture and white tip rests diagonally across a rectangular matchbox with a patterned strike area, viewed from above on a beige surface. +034e0678185a4fd.png The match is positioned diagonally against a light marbled background, featuring a beige wooden stick with a dark, charred tip, and slightly blurry textural details. +01ab7c959d6a4c0.png A wooden matchstick with a green tip is leaning against a textured cardboard surface, set against a warm, reddish-brown background that resembles wood paneling. +5efaab0b32304bf.png A single wooden match with a red-tipped head is vertically positioned on a textured, light brown background, displaying a slightly rough texture on the stick. +8738e1c7eb07417.png The matchstick, lying diagonally, has a red-tipped head and a light wooden stick with a smooth texture, set against a quilted dark fabric background with visible stitching. +b210721b78a0442.png A single wooden match with a green tip lies horizontally on a textured light-brown wooden surface, partially covered by a shadow. +c90141c0505b4ea.png A box of matches with red-tipped heads and wooden textures is open on a printed paper, with shiny metal containers in the blurred background. +a44f7f24703c44c.png A single match with a wooden stick and a red match head is lying horizontally on a textured brown carpet, with the wooden stick appearing light tan and smooth. +8192bdba96b6430.png The match has a green tip and light brown wooden body, is lying horizontally on a speckled granite countertop, with a glossy surface reflecting light spots. +20e45948fcee4b5.png A wooden matchstick with a purple-tipped head lies horizontally on a speckled white surface, with scattered brown particles in the background. +26a757216fa942a.png The low-resolution image shows a single matchstick with a light beige wooden shaft and a dark, likely black, match head, placed horizontally on a smooth, light brown wooden surface with a subtle reflection. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/measuring_cup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/measuring_cup_descriptions.txt new file mode 100644 index 0000000..3e178b2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/measuring_cup_descriptions.txt @@ -0,0 +1,14 @@ +f2ef5309ac8d499.png A transparent glass measuring cup with red measurement markings is held by a hand over a black stovetop, viewed from a slightly elevated angle, within a kitchen setting featuring a white oven and timer display in the background. +393b4e75a1b84c2.png A translucent measuring cup with red measurement markings is viewed from above, positioned on a speckled countertop next to a white sink. +525bf6a7e6dd44e.png A black measuring cup with a silver handle is placed upright on a wooden dresser cluttered with various household items, including cans, makeup, and a cylindrical decorative piece. +a480d4ec4e994b0.png A metallic, round measuring cup with a brushed silver texture is viewed from overhead on a wooden surface, featuring a flat handle with a hole at the end. +ad626b4ced6a438.png A small yellow measuring cup with a matte finish sits upright on a light gray countertop, surrounded by a few kitchen appliances and drawers filled with utensils, in a cluttered kitchen setting. +ca1a5d4117d14c4.png The clear glass measuring cup with red markings is held in an upward tilt against a kitchen background featuring wood cabinetry and a textured floor, and it appears to have a smooth, transparent surface. +012a183f73bc4ec.png A small black measuring cup with a smooth texture is held in a hand, viewed from a diagonal angle, against a background featuring a green floral-patterned sofa cushion. +ba68f44fb25e496.png The transparent, cylindrical measuring cup is positioned upside down in a hand against a setting of red bedding and a dark headboard, with a white wall background, displaying a smooth surface and faint markings. +7ad12dd2ca6148a.png The measuring cup is clear glass with red markings and a handle, positioned on a glossy wooden surface, viewed from above with a door and green wall in the background. +1181fd4f4602404.png The measuring cup is translucent with a white handle, viewed from a top-down perspective on a green countertop, with a floral mat partially visible in the background. +0975cb376c154e7.png A clear glass measuring cup with red markings is held horizontally in a hand covered with a dark sleeve, set against a bathroom background featuring a white bathtub, beige walls, and cleaning products. +1567002e00c84c4.png A shiny metal measuring cup with a long handle is held in the foreground against a cluttered living room backdrop featuring a couch, wooden floor, and scattered items. +d83ae5976ada44c.png The measuring cup is translucent with a textured plastic surface and colorful markings, viewed from a slight side angle on a metallic, textured countertop near a kitchen sink with a steel pot and soap dispenser in the background. +01a4955d0be4413.png A plain white measuring cup with a handle is perched on a black fabric, set against a light blue quilted background, viewed from a side angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/microwave_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/microwave_descriptions.txt new file mode 100644 index 0000000..6129acb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/microwave_descriptions.txt @@ -0,0 +1,14 @@ +4efc4731b7f4485.png The microwave is silver with a black control panel on the right, viewed from the front, set against a white-tiled backsplash with dark cabinetry above, reflecting a slightly glossy finish. +bb1c48aff85644e.png The image features a white, seemingly overhead microwave with smooth texture, viewed from a top-down corner angle over a kitchen counter with plates and cooking items. +8d55f76c0e994d9.png A silver microwave with a black control panel and a digital display is viewed from the front in a kitchen setting, surrounded by white cabinets and colorful containers on a countertop. +8eda72514100486.png The microwave is white with a slightly curved front, positioned above a stove in a cluttered kitchen environment with beige wooden cabinets and various household items visible nearby. +6d73c74bde9d4e1.png The microwave is black with a silver front face, viewed from a slightly tilted top angle in a cluttered kitchen environment with wooden cabinets and various items stacked on top. +db9eaf61859f47c.png The microwave is silver with a black front panel, featuring a digital display and keypad, situated below a countertop with cleaning supplies visible in a kitchen setting. +db08b19ab283479.png A silver microwave with a slightly reflective surface is embedded within wooden cabinetry, viewed from a frontal angle, with a digital display and control panel on the right, above a black stovetop in a warm kitchen setting. +b1cfac4c0ace444.png The microwave is silver and black with a slightly reflective surface, positioned on a kitchen countertop at a right angle to wooden cabinets, with ventilation slots visible on its side. +8a990be23d1145c.png A black microwave with a reflective glass door is integrated into wooden cabinetry, viewed from a low angle, with visible stainless steel handles and a glimpse of a kitchen interior through the glass. +bcc41424e566495.png The microwave is black with a silver handle and control panel, placed on a brown countertop within a kitchen setting surrounded by red cabinets and a white refrigerator. +9024bca696ca4b8.png A white, cuboid microwave with a smooth surface is seen from an elevated side angle on a patterned brown floor, positioned in a dimly-lit room with a wood-panel background and partially visible furniture. +7f6d71488d39413.png A black microwave with a silver front panel and digital display is positioned on top of a white refrigerator, viewed from a low angle in a room with a textured ceiling and nearby family photographs. +4becefb2c77141a.png The microwave is primarily black with a red trim and panel, viewed from an angled side perspective, positioned on a white countertop within a kitchen environment, surrounded by cream-colored cabinets. +4ce87f1b75434d7.png The microwave is silver with a reflective stainless steel finish, viewed from the front, featuring a digital keypad on the right and situated above a stove with a speckled backsplash background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/milk_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/milk_descriptions.txt new file mode 100644 index 0000000..708bc8f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/milk_descriptions.txt @@ -0,0 +1,14 @@ +07d4b77fe5f24c8.png A white gallon jug of milk with a red cap, viewed from a slightly angled top-down perspective, is nestled inside a refrigerator next to other containers, with a visible nutrition label on its side. +3ac28c715fc94ed.png A white plastic gallon jug of milk with a green cap and label lies on its side on a black countertop, surrounded by various kitchen items including a basket of fruit and a small water bottle. +9b283913c299419.png The image shows a creamy, light yellowish liquid with a smooth, slightly frothy surface in a metallic bowl, viewed from above, on a plain, light-colored tiled floor. +845db5531d54499.png A white plastic milk jug with a red cap and label is tilted on a textured black stool in a cluttered indoor setting featuring stacked boxes and a beige carpet. +ac2dbafd40f4499.png A partially full, translucent white plastic milk jug with a blue cap and colorful label is held at an angle against a carpeted indoor environment, surrounded by furniture and a floor lamp. +6fb2fb3f13de405.png A small bottle with a green cap and label, containing white milk, is placed upright on a dark carpet with furniture visible in the background. +05bc611a210a49b.png A white plastic bottle with a green cap and blue label with text is held at an angle over a washing machine, set against a backdrop of dark tiled walls. +6856361e93d0454.png A white plastic gallon jug with a blue cap, labeled on the side, rests on a white countertop, viewed from a slightly elevated angle, against a plain wall background. +cb5eb7896a4c46c.png A white plastic gallon milk jug with a red cap is lying on its side on a black stovetop, with a silver kettle nearby and various kitchen items in the background. +fe6376d0274c424.png The image shows a blue and white carton of almond milk with a visible circular white cap, viewed at an angle on a speckled brown countertop with a hand holding it, surrounded by various kitchen items like a sponge, a jar, and a container of cashews. +bcfe836f14a94b9.png A blue and white carton of milk with Spanish text is lying horizontally against a patterned tile backsplash and brown countertop, accompanied by a wooden utensil holder with a green slotted spoon. +082cb234f0b84fd.png The milk is in a partially filled, translucent rectangular jug with a distinctive red cap, seen from the side with a slightly tilted angle, set on a beige countertop in a warmly lit room with visible blinds and a patterned lamp in the background. +422e93a30ae243a.png The low-resolution image shows a slightly textured, off-white liquid in a metallic pot under dim lighting with a refrigerator-like backdrop, characterized by its subtle indentations and a glossy surface reflecting the soft light. +3d660db0dfb247b.png The image shows a white, creamy liquid in a round container placed on a dark, marbled countertop, with a small section of a lived-in interior environment visible, including tiled flooring and a hint of patterned fabric nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/mixing_salad_bowl_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/mixing_salad_bowl_descriptions.txt new file mode 100644 index 0000000..19c54c3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/mixing_salad_bowl_descriptions.txt @@ -0,0 +1,14 @@ +637373c563e24c1.png The object is a white ceramic bowl with a floral pattern, viewed from an angle showing the interior, positioned on a dish rack over a kitchen sink amidst other kitchenware. +81d060e493d4405.png A white mixing salad bowl with a smooth texture is seen from an angled side view, resting upside down on a checkered cloth in a tiled kitchen environment, with a distinct black stripe on its base. +0419ac4a6c73458.png The mixing salad bowl is white with small handles and floral patterns, placed center on a beige plastic chair, against a speckled terrazzo floor, surrounded by a subdued indoor setting. +3c2bb23e720747f.png This mixing salad bowl is vibrant orange with a smooth texture and white horizontal stripes, viewed from a slightly top-side angle against a parquet wooden floor, with a person's arm reaching inside it. +188e33af5c5d436.png A bright orange mixing bowl with a smooth texture is held upright by a person's hand against a bathroom-like setting with patterned curtains and a striped rug visible in the background. +ef829ee0582842f.png A person holds a small, smooth, pale green bowl with a glossy finish above a white sink, set against a bathroom background with light-colored walls and orange tiles visible in the distance. +4e9e7ac4d40d4aa.png A shiny, silver-metallic mixing bowl with a smooth surface is viewed from above on a retro patterned yellow-tiled floor near a decorative carpet edge. +b4624cbc1d32443.png A smooth, vibrant blue mixing salad bowl is held in the foreground with a hand visible at the bottom left corner, set against a darker background with dimly lit, indistinct objects on a wooden surface. +0451bcb537ea4f4.png The mixing salad bowl is metallic and reflective, viewed from an overhead angle on a wooden chair with a tiled floor in the background, amidst a pink jacket sleeve reaching toward it. +57c70e8275e94c9.png A white, shallow bowl with a smooth texture is centered on a mottled beige countertop, viewed from above in a kitchen setting with a gas stove and dark towel nearby. +8468724f37b249e.png The mixing salad bowl is a smooth, brown wooden bowl viewed from the side and resting on a light-colored carpet, with a hand holding its rim, showcasing its rounded, shallow design. +4d554f42540c433.png A transparent, smooth glass mixing salad bowl is centrally located on a light-colored countertop against a backdrop of beige tiled walls and wooden cabinets with metallic handles, captured from a slightly elevated angle. +3cbbc6fbc1c54cb.png A clear glass mixing salad bowl, slightly tilted with a handle, is set on a countertop against a blurred kitchen background featuring jars and utensils. +ed10234e90a040a.png The semi-translucent, blue-tinged mixing salad bowl is held at an angle, revealing a smooth texture with subtle inner rim reflections, set against a dark tabletop and a leopard-print item in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/monitor_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/monitor_descriptions.txt new file mode 100644 index 0000000..0e2b3b5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/monitor_descriptions.txt @@ -0,0 +1,14 @@ +e0d7462ca629415.png The monitor, viewed from the side at an upward angle, has a slim, black bezel with horizontal vent patterns on the back, and is positioned on a white desk set against a wall featuring a LEGO poster and a wooden shelf above. +7618465fb999495.png The monitor, viewed at an angle displaying a webpage with a QR code and text, appears to have a matte black frame against a dimly lit, cluttered indoor background with a rug and children's toys. +b2f637a6f9754ff.png The monitor is a low-resolution, thin-bezeled object with a light gray frame, positioned at an angle against a corner where a bare, beige wall meets a wooden surface, and is distinguished by its compact, dark screen in contrast to its surroundings. +851a51985d8b42a.png The monitor is black with a glossy screen, viewed from an oblique angle with a wooden desk and a white wall background, placed beside a white electronic device and a black keyboard and mouse. +898fb201cf444d7.png A black-framed monitor with a rounded base is viewed from the front in a dimly lit room with light teal walls, displaying a web browser interface and positioned on a wooden desk with a webcam attached on top and several wall-mounted power outlets in the background. +0344a6cd48ae405.png The black, matte-textured monitor is viewed from an oblique angle with silver buttons visible along the top edge, set against a domestic environment with a tiled floor, patterned curtains, and kitchen items in the background. +919c898ecd8f4dd.png A black monitor with a glossy screen, displaying a web browser, is positioned at an angle on a dark wood desk, with a laptop beside it, a framed certificate on the wall, and a lamp illuminating the area. +1612d04ce1c346d.png The monitor displays a bright blue screen with a Windows logo, viewed from a slight angle above, with a dark keyboard partially visible in the foreground and a soft focus indicative of low resolution. +c19e5d9415564a5.png The monitor displays a white screen at an angle in a dark environment, with a thin black frame and visible on-screen text and images. +0ea09ca844d44f1.png A black rectangular monitor with a glossy screen is tilted, revealing its angular stand on a wooden desk cluttered with various items and softly illuminated by overhead lighting. +6cbea218c0f149a.png The photo shows a black monitor with a matte finish, positioned at a slight angle, surrounded by a cluttered desk with another monitor displaying a game, under a brightly lit environment including a wall-mounted clock. +543ea84fa1c145c.png A person holds a dark-framed, reflective screen slightly tilted forward in a dimly lit room with a patterned cloth visible in the background. +f7bb4bfb655643c.png The monitor is black with a flat, matte texture, viewed from the side on a wooden desk, surrounded by a keyboard and other accessories, with cables visible in the background. +1a7e521dc864426.png A white, rectangular electronic device with a rounded top and a handle is resting on a smooth, off-white surface, likely the lid of a toilet, with a control button and a power switch visible on its side, set against a bathroom backdrop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/mouse_pad_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/mouse_pad_descriptions.txt new file mode 100644 index 0000000..85cb788 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/mouse_pad_descriptions.txt @@ -0,0 +1,14 @@ +eebc597e7d74432.png The image depicts a person holding a large, curved metal object with a handle on a wooden table in a kitchen setting, surrounded by wooden cabinetry and various kitchen items like a microwave and rolled-up tablecloths. +e33e03d52b06489.png A rectangular mouse pad featuring a gradient of pink to yellow colors with a black city skyline design, placed flat on white patterned tiles next to a beige couch. +1067122b0d7648c.png A rectangular black mouse pad with rounded corners is lying flat on a light wood floor, featuring a slightly worn texture and visible sunlit streaks across the floorboards. +2d6e71d9300840b.png The mouse pad features a dark-colored image with a prominent central figure, set against a plain carpeted background, viewed from an overhead angle with legs and slippers partially visible in the foreground. +f180a8fa28e0446.png A person is holding a flexible black mouse pad with rounded corners against a green checkered carpet background. +c5ff127ff704415.png A black mouse pad with an ergonomic wrist rest on a speckled countertop, situated next to a pair of scissors and partially framed by a kitchen appliance and pantry items in a casual indoor setting. +3219b23e5932493.png The mouse pad appears black with a slight sheen, viewed edge-on from the side, held above a carpeted floor in a room with bookshelves and sliding glass doors in the background. +1151a2cf3d23468.png A low-resolution image shows a colorful mouse pad with a fruit basket design, placed on a wooden desk beside a black keyboard, featuring red and purple grapes against a white background. +72910e3306c5480.png A gray mouse pad with a built-in black wrist rest is held at an angle over a tiled floor, featuring a rectangular green and white graphic near its edge. +265c82d28d7b45a.png A person is holding a rectangular black mouse pad with rounded edges, viewed from the side and slightly tilted, surrounded by an office environment with computers and office supplies on a desk. +2b3796e56cde414.png The mouse pad is blue with a smooth texture, held vertically by a hand over a speckled light-colored countertop with metal shelving and bathroom items in the background. +5fd445e913fa488.png The mouse pad is thin and flexible with a colorful design, viewed edge-on, against a beige fabric sofa background, revealing little detail of the design due to the low resolution. +f19cbaf438a3484.png The mouse pad is black with a smooth texture, slightly bent upward as it's held in a hand, against a background featuring a floral-patterned bedsheet in warm tones, with a laptop visible in the upper right corner. +b37da535263a48c.png A black, rectangular mouse pad with slightly rounded edges is placed on a light wood floor, with a small red logo in the top left corner and a patterned carpet seen in the background near a closed door. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/mouthwash_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/mouthwash_descriptions.txt new file mode 100644 index 0000000..d67d8f7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/mouthwash_descriptions.txt @@ -0,0 +1,14 @@ +6c213a1fe5f0470.png A transparent rectangular bottle held upside down contains a light blue liquid, with a white cap at the top against a kitchen background featuring a teakettle and woven basket. +eb058a2c88c04de.png A transparent, rectangular bottle is being held horizontally by a hand, with a mostly clear liquid and a few traces of liquid left inside, set against a cluttered interior with a brick wall and blinds in the background. +260ee21f6f3b483.png The mouthwash bottle is a translucent cobalt blue with a white cap, viewed from a slightly angled side perspective, set against a textured, beige wall on an orange surface, and featuring a rectangular label area. +f6cb3ec258ca417.png A bottle of green mouthwash with a white cap lies horizontally on a brown leather surface, with the label text partially visible and the bottle's transparent texture allowing the liquid to be seen. +10a3955672b2442.png The mouthwash is a golden-yellow liquid inside a clear, slightly rectangular bottle with a white cap, held at an angle against a background of vertical blinds and a portion of a wooden floor. +daea9b8e9e0d4a1.png The image depicts a person holding a transparent plastic cup with a blue cap, featuring a label with red borders and oceanic imagery, against a tiled floor and a patterned tablecloth backdrop. +45f044661ca9442.png The bottle of mouthwash is white with a pink and black label, lying horizontally on a patterned brown fabric with ornate designs. +440067c5f9034d1.png The image depicts a person holding a uniquely shaped, diamond-textured, pink glass bottle with a label, in a bathroom setting, with other toiletries visible on a shelf above and a sink below. +b3d6705210644a9.png The image shows a hand holding a square bottle of cool mint mouthwash with a teal liquid inside, viewed from an angle, featuring a prominent black cap and a visible label with bold text against a plain white wall background. +609237a6d2f44a9.png A rectangular bottle with a wide white cap contains bright yellow liquid, held in a hand against a neutral tiled background, featuring distinct blue and white branding on the label. +0128f0dcac5e4f4.png A hand holds a slightly tilted, semi-transparent rectangular bottle with a blue liquid inside, featuring a white ribbed cap and a textured grip on one side, set against a tiled floor background. +61d7bd2e68954a1.png The mouthwash bottle, held at an angle by a hand, is clear with a teal-colored liquid and a white cap, featuring a red and green label with text, set against a black stove background with scattered kitchen items. +7378dceb8e814ce.png The mouthwash bottle, featuring a vibrant blue liquid, is positioned upside down on a blue counter with a white cap and colorful cartoon character label, bordered by a bathroom setting including a toothbrush and coiled cord in the background. +f4c7ce5d99854a3.png The mouthwash bottle, viewed from a slightly angled perspective, is clear with a white cap, containing teal liquid, and features a green-and-white label, set against a kitchen backdrop with white tiles and a hand holding it in the foreground. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/mug_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/mug_descriptions.txt new file mode 100644 index 0000000..01e1fb3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/mug_descriptions.txt @@ -0,0 +1,14 @@ +38d81a5133e5443.png A white ceramic mug with black text and an illustration lies on its side on a light-colored countertop near a floral-patterned bag. +ce27676d3a0b45c.png The mug is black with a glossy finish, featuring a bright yellow emblem resembling a bat symbol, positioned on a wooden desk with various stationery items and a mirror in the background. +9ccdf79505394fe.png The mug has a white base with a colorful, possibly illustrated design, featuring human figures; it's placed on a white shelf within a cupboard, tilted slightly upward, surrounded by various kitchen items including a tin container, cloth, and jars. +e6a69f6df0f54f7.png A white mug with colorful text is held at a tilted angle over a kitchen stove, surrounded by various kitchen items and spices, while nestled among dishes in a wooden cupboard. +f37aee9a04304da.png The black mug with a glossy finish features white text or symbols and is seen from an angle resting on a black and white floral-patterned comforter. +2ea0e74c351f4e5.png A low-resolution image shows a yellow mug with a shiny metal rim, featuring floral patterns, lying sideways on a speckled, light-colored floor. +40059c465bb542b.png A glossy black mug lies on its side with a simple handle, set against a wooden table and a textured, lime-green placemat background. +109b2c1344be433.png The mug is black with a white waveform pattern, seen from a side profile in a kitchen setting, held by a hand against a cluttered background with various household items. +7da96a51871e4a9.png A slightly angled, cylindrical yellow mug with a smooth texture and a white interior sits on a speckled, dark reddish-brown countertop, with a handle visible on the far side. +47e1de80a461414.png The mug is a light brown color with a textured surface, featuring a black interior, and is placed upright on a dark speckled countertop near a sink with a tiled backsplash and a water tap in the background. +b6ae7b11b9d7445.png A white mug with colorful autumn-themed floral designs is held side-on against a backdrop of hexagonal-tiled flooring and a brown woven mat. +e4246f9f34004a4.png A white mug with a blue rim and detailed blue architectural illustration is held at an angle against a wooden surface, featuring clear handle placement and part of the bottom visible. +8d55d27b8067422.png The mug appears to be white with black and red design accents, lying on its side against a light wooden surface, with a sheer white curtain softly diffusing light in the background. +3ca5820d22a3411.png A light beige, speckled mug with a smooth texture is lying on its side on a patterned bedspread, viewed from a slightly elevated angle amidst a layered arrangement of pillows against a neutral background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/multitool_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/multitool_descriptions.txt new file mode 100644 index 0000000..37d5dd7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/multitool_descriptions.txt @@ -0,0 +1,14 @@ +e812d79b9a0d4d1.png The multitool is bright red with a smooth texture, depicted in an open pose against a light wood table background, featuring metal plier jaws and a black lanyard. +272a21a595984ec.png A metallic multitool with a sleek, shiny texture is held in a hand, viewed from a slightly elevated angle against a background of plush, dark brown upholstery and white-veined marble. +5c38f29d0117421.png The multitool appears silver with a metallic texture, viewed from the side while resting on a white bathroom sink edge, and features prominent black screws against a brown tiled background. +6166c6d7fd66475.png The multitool, viewed from above, features metallic silver components with a brushed finish, open in a plier configuration, set against a striped mattress and surrounded by a casual indoor environment with visible bedding. +89394ff6994e481.png The multitool is silver with blue textured grips and is closed, resting on a dark leather surface with a carpeted floor and a patterned box in the background. +0ab26d65e7f245d.png The multitool appears to have a silver metallic finish with a yellow accent strip, shown in a horizontal position held by a hand against a wooden surface, highlighting its compact design and multiple folded tools visible along the edge. +81a31b979f10443.png The multitool features a predominantly yellow and black color scheme with a rugged plastic texture, viewed from an oblique angle held in a hand against a soft, casual fabric background, with visible branding on its side. +4a0dded57882442.png A metallic multitool with a silver finish and textured grip rests slightly open on a wooden surface, viewed from an angled top perspective, accompanied by a small chain and keyring extending from its handle. +6838bfa0d0f846b.png A compact, metallic multitool with red accents is held vertically by a hand against a white-tiled bathroom background, showcasing its multiple folded tools visible between the two main body parts. +7ec1a9fb73db49f.png The multitool is matte black with a smooth texture, viewed from a side angle as it is held in a hand over a white tiled bathroom floor with a white toilet in the background, showcasing a folded compact form with minimal visible tools. +7e26c0488f1c484.png A hand grips a metal multitool with a silver head viewed from the side on a beige carpet, featuring a black device nearby and a table leg visible in the background. +5b99a2fd77184de.png The multitool, positioned in an open triangular formation with visible pliers, has a metallic silver color and smooth texture, set against a plain white background, with a ruler and several foldable components discernible on its handles. +549e921c1a3b4f4.png The multitool appears in a horizontal position on a tiled floor, featuring a combination of silver metallic tools housed within a yellow frame, with several folded-out tools visible on either side. +8cd11f675532471.png The multitool appears metallic with a predominantly silver, smooth finish and red accents, viewed from an oblique angle with a cream-colored wooden surface in the background, featuring a folded structure and visible tools tucked within its handles. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/nail_clippers_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/nail_clippers_descriptions.txt new file mode 100644 index 0000000..db441dd --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/nail_clippers_descriptions.txt @@ -0,0 +1,14 @@ +9a8579a0d60949c.png The nail clippers are metallic silver with a glossy texture, viewed from a top-side angle on a textured gray surface with red stripes, featuring a looped handle end and a central pivot mechanism. +231884dd69b44fc.png A hand holds the shiny metallic nail clippers with a small textured grip on its lever, positioned against a kitchen stove backdrop with dials and a digital clock, while the partially flipped position reveals the brand name engraved on the side. +405bbf2bac1b467.png The nail clippers are metallic silver with a shiny texture, presented in a side view, held above a smooth silver-gray surface with a wooden background, featuring a curved, compact design and a simple lever mechanism. +796441a6e035404.png A shiny, metallic nail clipper with a reflective surface and visible lever mechanism is held in hand against a marbled countertop background. +f292c469c93747f.png The nail clippers have a metallic silver body with a distinctive yellow textured grip, viewed from an overhead angle on a light wood surface with a black box nearby in the background. +7c71160010b6417.png The nail clippers are metallic silver with a smooth, shiny texture, viewed from an oblique angle with the jaws slightly open, resting on a wooden surface with a clear plastic container in the background. +4cc9d1d36aaf41e.png The nail clippers have a metallic silver finish with a textured grip pattern, viewed from above on a speckled beige countertop next to a decorative cup. +8858b3ba4f6545d.png A metallic silver nail clipper with a small attached chain is lying flat on a beige ribbed surface, viewed from above, with the clipping lever flipped open. +003d1e8078df4ec.png The nail clippers appear metallic with a shiny silver finish, seen in a side view against a textured beige wall, held by a hand and set atop a dark surface with a blurred colorful card in the background. +16061c9937034bf.png The silver nail clippers, featuring a textured lever, are viewed from a slight side angle and rest on a striped, woven fabric surface with a muted color palette in the background. +5597c9c6cc354a3.png A compact, metallic nail clipper with a turquoise blue grip and red accents is lying on a textured, floral-patterned maroon and white fabric, viewed from above, with a keychain attached at one end. +2234f765e9214bd.png A silver metallic nail clipper with a shiny, smooth surface is held aloft by a hand against a neutral, textured fabric background. +eedcf4201e384b1.png The nail clippers are metallic and shiny, held sideways with the curved blades visible, set against a cluttered bathroom counter with various toiletries in the background. +acad9a25288f4fd.png The nail clippers have a metallic body with a smooth, shiny texture and a black and purple grip, viewed from an angled side perspective on a beige surface, with a stack of miscellaneous colored papers in the slightly blurred background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/nail_fastener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/nail_fastener_descriptions.txt new file mode 100644 index 0000000..e8b6a52 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/nail_fastener_descriptions.txt @@ -0,0 +1,14 @@ +07ff51c22696473.png The nail fastener is metallic with a smooth, shiny texture, held vertically by a hand over a dark, glossy bathroom countertop with a faucet and soap dispenser visible in the background. +7371a8927f5c414.png The nail fastener is a rusted, dark brown metal with a textured surface, lying horizontally on a pinkish tiled floor, featuring a flat head and a pointed tip visible in the dim lighting. +ee03a3418250481.png The nail fastener is metallic and rusted with a dark, weathered texture, held vertically in a hand with a wood-textured background, displaying a small, round head and a slender, slightly bent shank. +469ef4b5d9c8439.png The nail fastener appears dark with a slightly reflective surface, viewed from the side against a rough, mottled background in shades of gray and yellow, with a flat head and straight body visible despite the low resolution. +6c86f352957d4bd.png The nail fastener in the image appears to be a metallic silver with a slightly rough texture, viewed from a side angle while being held by a hand against a softly blurred dark green background, with a notable flat head and slender shank. +bfac8afc1c54406.png The metallic nail fastener, appearing gray with a smooth texture, is held horizontally in a hand against a concrete background, with a flat head and pointed tip clearly visible. +58170197733f4c8.png The nail fastener is metallic gray with a smooth, reflective surface, viewed at a slight angle with the head facing up, held between fingers against a blurred background of a red-covered bed and geometric-patterned rug. +f7d3221daad14f2.png A rust-colored, slightly bent nail fastener is positioned diagonally against a speckled, dark marble-like surface with some reflective areas. +b155da49a47546e.png The nail fastener appears brown with a slightly rusted texture, viewed flat on a rough, speckled stone-like surface. +83cc9c790f0d49c.png The nail fastener is metallic with a slightly shiny finish, lying horizontally on a textured white surface with the head visible, surrounded by a background of a spiral notebook and scattered blue objects. +513717d258af47d.png The image shows a silver, cylindrical nail with a flat head viewed from a side angle against a plain, blurred beige background. +078ffc1a9e364ae.png The nail fastener appears metallic with a smooth, shiny texture, viewed from an angled side perspective against a blurred background that resembles a light-colored surface, and it is being held between fingers. +9f6bbdb0f62a415.png The nail fastener is metallic with a silver sheen, lying horizontally on a textured, light brown wooden surface, appearing sharply pointed with a flat, circular head. +d3f3fcbc7b9a4b4.png A shiny, metallic nail fastener with a smooth, slightly pointed tip and round head lies diagonally on a speckled, textured carpet background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/nail_file_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/nail_file_descriptions.txt new file mode 100644 index 0000000..077b440 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/nail_file_descriptions.txt @@ -0,0 +1,14 @@ +b03dc2b5ab99474.png The nail file features a distinct purple color with intricate white floral and paisley patterns, is held horizontally by a hand over a bathroom sink with a visible toilet and small waste bin in the background, and exhibits a two-sided design with one coarse and one fine-textured surface. +bd4d27da0b0e473.png A black nail file with a text logo in white is angled diagonally on a smooth, light-colored surface with a faint circular marking and a blurred wall in the background. +92f3fcd2804e40d.png A horizontally placed, pastel blue and white striped nail file with a smooth texture rests on a light brown, slightly textured surface. +e99dc297b0af480.png A black nail file with a matte texture lies flat on a wooden surface with a detailed grain pattern and partial shadow, against a background with papers. +4d1af193cb1d4e3.png A white, rectangular nail file with rounded edges and blue "PURE ICE" text is lying flat on a wooden surface, showing a smooth texture and a slightly bulky appearance. +dfc042f0ad2447f.png The nail file appears to be a tapered, light-colored object with a smooth texture, positioned diagonally on a dark, rough stone-like background. +2ec81c8a5c854fb.png The nail file appears silver with a smooth, metallic texture, is held horizontally in a hand with a sleeve, and is set against a brown textured carpet background, exhibiting a slim, elongated shape. +88e41da5fcf6498.png This nail file is a glass type with a gradient from white to pink, laid flat on a marbled white countertop, featuring a pointed tip. +22e44477aa1142f.png The nail file is beige with a smooth texture, held horizontally in a hand against an indoor background with tiled flooring, scattered clothing, and shoes. +879b403bccdf454.png The nail file has a metallic tip with a black handle, held vertically between thumb and index finger against a blurred indoor background featuring a green potted plant. +76b07c1bbe2140c.png The nail file is translucent with a subtle pink hue, featuring a smooth texture, viewed in a tilted angle resting on a dark wooden surface, held by a hand, with a slight reflection from overhead lighting. +e17e34761d89432.png A silver-gray, metal-textured nail file with an orange, translucent handle is lying flat on a textured, light brown carpet. +e000887b8283464.png A stack of cream-colored, rectangular emery boards with rounded ends lies overlapping on a patterned fabric featuring purple and black motifs, adjacent to a pillow with geometric designs and some yellow fabric. +f37c6777f7e44e1.png The image shows a black, rectangular nail file with slightly rounded edges, held horizontally by a hand above a light wood-patterned floor, with a noticeable textured surface indicating a rough grit. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/nail_polish_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/nail_polish_descriptions.txt new file mode 100644 index 0000000..589c910 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/nail_polish_descriptions.txt @@ -0,0 +1,14 @@ +bee342bdc3db491.png The nail polish is a lime green color with a glossy texture, seen from a slightly elevated angle, placed on a polished wooden table in a classic, dimly lit room with ornate furniture. +d5c2572d9c334da.png A pink nail polish bottle with a black cap is held horizontally in a hand over a dark textured blanket, with a soft light illuminating its glossy surface. +713eba31f9d342c.png The nail polish bottle, positioned upright on a wooden surface, features a white or translucent body with a black cap, set against a cluttered background of yellow bags and dark cords. +4e7c58c4dd4145f.png The nail polish bottle appears to be a deep red color with a shiny texture, observed from a top-down angle resting on a rough, beige surface, and featuring a transparent cap with a visible white label. +34987db5657a4d5.png A bright pink, glossy nail polish bottle is held horizontally in a hand against a quilted, floral-patterned fabric backdrop. +9c00ec1851ed45c.png A glossy dark blue nail polish bottle with a black cap is lying sideways on a quilted fabric featuring a floral pattern in muted tones. +7444591025e44df.png The nail polish bottle has a dark, glossy color with a smooth texture, viewed from above on a vibrant pink and white patterned tablecloth, with a black keyboard partially visible in the top right corner. +365157686dc5486.png The image shows a low-resolution view of a coral pink nail polish bottle with a white cap, held in a hand against a blurred indoor background, showcasing its rectangular shape and glossy label. +26b6b41c5fc0414.png The nail polish bottle is viewed from above with a dark blue color and shimmer texture, resting on a black surface with indistinct background elements and labeled with "568" on the cap. +759dce0bb6b14b2.png A hand holds an upright, glossy magenta nail polish bottle with a black and multicolored patterned cap, set against a speckled beige countertop background. +6372a6bc8071462.png The nail polish appears to be a small bottle with a deep red color and glossy texture, positioned upright on a worn blue plastic stool in a room with visible shelves and tiled flooring in the background. +22f239416fd54af.png The nail polish bottle is a glossy, deep black color, viewed from a slightly tilted angle, resting on a textured, light brown carpet, with a hand gently holding it. +9b5343f31f1a44b.png The nail polish appears in a dark, glossy shade with a shiny, reflective texture, positioned with an upright view on a wooden desk amidst electronic devices, featuring a distinct gold cap. +6d2b9b38addb4d5.png A nude pink nail polish bottle with a reflective silver cap is centered on a wooden surface, surrounded by various personal care products in a cluttered setting, exhibiting a solid matte texture and a prominent logo on its label. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/napkin_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/napkin_descriptions.txt new file mode 100644 index 0000000..afa7b36 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/napkin_descriptions.txt @@ -0,0 +1,14 @@ +b2ce1597a012401.png The napkin appears off-white with a slightly textured surface, shown held in a hand against a glossy black appliance background with a dimly lit side view. +1b8dde4684c8421.png The white napkin, with a textured surface resembling paper towel material, is held vertically by a hand against a background of a light blue sheet and floral-patterned fabric. +ba7df7b9e989497.png A pale blue napkin with frayed edges is draped over a white sink in a bathroom, with a tiled floor and toilet visible nearby, amidst low light and shadowy surroundings. +7099195410444df.png A white, textured napkin, viewed from above, hangs off the side of a wicker basket on a white bathroom counter with a mirror in the background. +a2d500500bb3431.png A plain white napkin with a smooth texture lies flat on a wooden surface beside a rolled, ribbon-tied cloth, with drum hardware and a colorful floral-patterned carpet in the background. +d3ecea93cd9349e.png The napkin, white and textured with subtle embossed patterns, is lying flat on a speckled dark granite countertop in a kitchen environment, distinct from another crumpled napkin nearby. +3cb66c80375e457.png A plain white, roughly folded napkin with a slightly wrinkled texture is held in a hand against a background of maroon fabric with black abstract patterns. +2b3c0b6df79a4bb.png The napkin is a smooth, flat, white rectangle with a subtle horizontal embossed line near the bottom edge, positioned on a wooden table with a textured grain pattern. +5aff9a6c5c414bb.png A bright magenta napkin with slight folds sits flat on a white stove top, surrounded by a quartet of black electric burners amidst a clean and minimal kitchen environment. +df6e9ca9dd6e4d9.png A white napkin with a smooth texture is being held vertically from the corner, positioned over a dark table with woven placemats, and next to a package of black-and-white text. +e29cacb80d63479.png The image shows a small stack of white napkins with a slightly crumpled texture, held by a hand from a side view, set against a dimly lit red fabric background. +e7ee31949f8f449.png The napkin appears white and crumpled with a slight sheen, placed flat on a dark, glossy surface in what seems to be a carpeted room with scattered paper and slippers nearby. +9566e4141620480.png A crumpled, light brown napkin lies flat on a glossy black stove surface with subtle reflections, adjacent to a multi-colored patterned cloth hanging from a handle. +51cae8b6e25b4c7.png A folded napkin with an autumn leaf pattern featuring vibrant reds, yellows, and browns is placed on a wooden surface in front of a stainless steel toaster. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/necklace_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/necklace_descriptions.txt new file mode 100644 index 0000000..93231f3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/necklace_descriptions.txt @@ -0,0 +1,14 @@ +7b833219f50c45c.png The necklace features a gold chain with a small pendant displaying a spiral design in green and gold hues, positioned horizontally on a textured red fabric background. +40691bdc4a51499.png A gold-colored chain with a tangled texture and a small lobster clasp is held in an open palm against a background of wooden flooring and off-white walls. +ad8f1b497747491.png The necklace is golden with a series of rounded embellishments, resting on a cushioned surface with a clear plastic cover, viewed from above in an indoor setting with a curtain and household items in the background. +ab2066a71a5f4ea.png A multi-strand necklace featuring gold-toned links interspersed with translucent green stones, displayed flat on a dark, textured striped surface. +e24043d383894fe.png The necklace features a pink strand with a central pendant displaying floral details, set against a lace-covered wooden dresser in a mirrored background environment with decorative objects. +338bf35261394d2.png A hand holds a chunky silver necklace with white pearl-like beads, ornate with textured metal embellishments, set against a soft beige fabric background. +ff70fb12f9e44af.png The necklace appears to be gold with a smooth, shiny texture, viewed from above on a plain gray background, featuring a small, distinct pendant that resembles a floral shape. +d9e0c3a5923e478.png The necklace appears golden with intricate, textured detailing and leaf-like fringes, positioned flat on a light-colored surface, with a decorative central pendant and a chain gathered towards the top. +ca1677d0bfb7442.png The necklace is silver and features multiple round, reflective discs evenly spaced along a delicate chain, set against a dark, matte background, viewed from above. +693bf8536a15498.png The necklace features a gold chain with a round, intricate pendant adorned with small, reflective beads and delicate hanging embellishments, displayed against a dark marbled surface. +d68b5bce907e435.png The necklace is a delicate, gold-toned chain with a subtle shine, draped loosely across an outstretched hand against a softly lit wooden table and curtain backdrop. +e8f82918fec942f.png A white beaded necklace with a pearl-like texture is draped over a dark patterned fabric on a sofa in a dimly lit living room setting with scattered toys and furniture in the background. +785ae111721846c.png A small necklace with a light pendant, possibly pale in color, lies flat on a tiled floor, with a textured, neutral-colored wall in the background. +5726462e55014cb.png The necklace appears to be silver with a delicate chain and clasp, partially extended out of a textured blue box against a speckled stone background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/newspaper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/newspaper_descriptions.txt new file mode 100644 index 0000000..4fac1a3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/newspaper_descriptions.txt @@ -0,0 +1,14 @@ +6fc99344b04f4b1.png The newspaper appears to be off-white with bold blue and black text and is propped upright against a brown cushioned sofa, with a distinct geometric-patterned blanket draped below it. +df1a747530c04f7.png A white newspaper with visible black text columns lies open on a textured gray cushion, positioned at an angle on a wooden floor with parallel lines. +0fb247167d0a49b.png A low-resolution image shows a newspaper with black and pinkish sections, laid flat on a shiny beige floor with visible tile lines, and surrounded by a reflection of a window and boxes. +5a07ea829e7b4b2.png The newspaper, positioned on the tiled floor against a white wall, features blue and black text with a prominent blue header, a color photo of a person, and the open pages reveal a rough, slightly crumpled texture. +f82c31ccaf91445.png A predominantly black and white newspaper with visible text "ShArk" is lying on a bed with a camouflage-patterned cover featuring images of wildlife, set against a background of a bookshelf filled with various books and an iPod box. +77a4256f017c497.png A folded newspaper with a predominantly white background and black text lies on a light brown, diagonally patterned parquet floor, featuring visible headlines and images despite the low resolution. +d824dd0766cd4aa.png A newspaper with a primarily white color and black text, slightly folded, is lying on a checkered black and white floor with a person's foot visible in the bottom-right corner. +944b57930926437.png A folded newspaper with a black and white print texture is positioned flat on a white bathroom countertop near a sink, surrounded by assorted colorful toiletries, creating a cluttered and intimate indoor setting. +d85c987971654be.png A crumpled newspaper with a white background and printed text and images lies on a smooth beige floor, displaying slight shadows and subtle creases. +1b5cb0ff195a438.png A grayscale newspaper with text-filled columns and a visible black-and-white image at the top center, lying flat on a patterned, round cushion atop a reddish-brown wooden surface. +f469df6025fb4bf.png The newspaper on the marbled floor displays a predominantly black-and-white text layout with splashes of red accents, viewed from above in a living room setting with a couch and green cushions in the background. +84075e25c990415.png The newspaper, titled "The Courier," lies folded on a beige carpet with a visible color photograph and bold black headline text, viewed from an oblique angle against a simple indoor setting. +6f297a74b27b463.png A low-resolution image of a newspaper on a checkered tile floor shows it lying at a slight angle, featuring a white background with bold black and red text in a distinct script, accompanied by a yellow-toned advertisement on the bottom right. +42bbd656a6f449e.png A person holds a curved, partially open newspaper displaying a grayscale page amidst a room with wooden flooring and an intricately patterned fabric featuring pink and brown floral designs on a white background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/night_light_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/night_light_descriptions.txt new file mode 100644 index 0000000..afe4d6f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/night_light_descriptions.txt @@ -0,0 +1,14 @@ +527ffa19bee24d8.png This night light has a white, slightly glossy body with a transparent dome positioned upright against a cream-colored wall, casting a subtle shadow, and is surrounded by a light background with a folded towel or cloth partially visible at the bottom left. +0e6932c60c8a463.png The night light features a white base with a translucent, ribbed cover, positioned horizontally on a wooden surface with visible wood grain, surrounded by scattered coins and fabric in the background. +320fbdf07f8f473.png A square white night light with a smooth texture is positioned flat on a textured brown carpet, viewed from above, with a person's hand visible nearby. +9e20f35be3cc42b.png A hand is holding a small, rectangular, metallic mesh object with a slight reflective texture and a white base, set against a light wooden table in a kitchen environment with teal cabinets and red accents in the background. +470504246d944ad.png A hand holds a cylindrical night light with a blue, honeycomb-patterned surface above a blue fabric-covered wooden chair, surrounded by a cluttered background with a backpack and scattered items. +09ce0ff5119b4a2.png The night light features a translucent ribbed plastic cover with a white base, viewed from an overhead angle on a beige fabric surface, alongside a patterned blue and white container, with visible metal prongs. +9d9c00bc3a724d2.png The night light is white and translucent with a smooth, glossy texture, held at a slight angle in front of a black stovetop and frying pan, and it features a rectangular shape with rounded edges. +a604a076e29340d.png A blue-illuminated night light with a rectangular shape is plugged into a white wall socket, casting a soft glow against a beige textured wall above a granite countertop, alongside a visible light switch and a green-labeled spice jar in the foreground. +ad4becaebb7c401.png A rectangular, black night light with a green border and a small protruding attachment rests on a light wooden floor against a plain white wall background. +d9f106bb53e8417.png A ceiling-mounted, circular night light with a smooth, bright yellow dome is set against a neutral, lightly textured surface. +e45b1de0cfc44b4.png A clear, ribbed night light with a white plug lies on a textured red quilted fabric surface, viewed from above. +8f723041b382418.png The night light has a white base with a vertically ribbed translucent cover, positioned at a slight angle on a glossy white bathroom countertop, with a textured wall and outlet in the background. +36a198871c67496.png The night light in the image is a small, off-white, rectangular device with a textured grip in the center, held by a person over a white bathroom sink fixture with a partially visible wall-mounted mirror in the background. +fa4cec5736c1465.png This night light features a black and green cylindrical shape with a shiny texture, lying horizontally on a wooden surface, with visible plug prongs and a blurred office background including a white container with a barcode. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/nightstand_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/nightstand_descriptions.txt new file mode 100644 index 0000000..28beebf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/nightstand_descriptions.txt @@ -0,0 +1,14 @@ +15f54354a5534bd.png A small black wicker-like textured dresser with three drawers is positioned flat on a carpeted floor next to a couch, surrounded by various clutter, viewed from a top-down perspective showing bare feet. +d3b9ecf94afb418.png The low-resolution image shows a small, rectangular wooden nightstand with a dark reddish-brown finish, seen from an overhead angle on a speckled gray tile floor, featuring a single open storage compartment and worn edges. +0e5e0de0a6f2483.png The nightstand is dark brown with a smooth finish, viewed from a slightly angled side perspective, situated on a carpeted floor with a fan and various objects in the cluttered background, featuring a single drawer and an open lower shelf containing assorted items. +704897800a5b463.png A slender, tall, white-painted nightstand with three drawers featuring blue panels and nautical-themed decor, set against a tiled floor and adjacent to a bathtub with anchor-patterned curtains. +6547a2eb5b034f6.png The nightstand is cream-colored with a slightly glossy finish, viewed from a slight angle showing its open shelf and closed lower compartment, set against a carpeted floor with nearby walls adorned with educational posters. +4458bc28717142f.png The nightstand appears wooden with a brown finish, tilted sideways against a pale wall, beside a sofa with brown patterned upholstery, featuring a cluttered top surface visible from a side angle. +989fda14ed924c2.png A small, rectangular wooden table with a reddish-brown finish and simple, straight legs is centered on beige-tiled flooring in a narrow bathroom setting, bordered by a bath and visible doorway. +42f25daa365c446.png The white nightstand, viewed from the side and tilted at an angle, features three visible shelves and appears to be in a small room with light-colored tiled flooring and a partially visible green object in the background. +ec90c64b0c894e1.png The nightstand is a dark-colored piece with a slightly glossy surface, viewed from an angled perspective beside a bed with white and gray bedding, set against a purple wall and a wooden floor with a fan above and a decorative lamp on the background wall. +2de9cbe2ca62442.png A small, dark-colored ottoman with a square shape is centered on a light carpeted floor in a kitchen setting, surrounded by white cabinets and a black and stainless steel stove. +c58e33e22873438.png A white nightstand with a single drawer and an open shelf below is shown front-facing against a gray wall, featuring a mix of items including stationery and personal care products, with a distinctive silver drawer handle and a smartphone charger hanging over the side. +8964da4df520415.png A small, dark wooden nightstand with a smooth surface viewed from a front angle stands against a beige paneled wall amidst a cluttered room, featuring visible items like electronics and a lower shelf filled with scattered objects. +fbfcca14aa5e486.png The image shows a person holding a dark brown, cylindrical object with vertical grooves, likely made of wood, set against a blurry background of a wooden floor and some indistinct items. +81e9c57065c3408.png The nightstand is a wooden, warm brown color with a smooth texture, seen from a diagonal viewpoint against a cream wall, featuring ornate handles and a scalloped edge, with a cluttered surface including bottles, a vase with red and white roses, and a pair of black shoes underneath. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/notebook_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/notebook_descriptions.txt new file mode 100644 index 0000000..8341812 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/notebook_descriptions.txt @@ -0,0 +1,14 @@ +35ed048143ac45a.png The notebook has a white, lined surface with a faint sketch of a heading box, viewed from a slight angle, surrounded by a patterned floral and leafy background. +6eb54acd13c0473.png The notebook, viewed from above, features a glossy peacock feather pattern with vibrant blues and greens, resting on a dark fabric couch surrounded by a cluttered background. +edcff4d4f435476.png The notebook in the image is silver with a smooth texture, viewed from an oblique angle, held by a hand, with a background featuring a beige wall, a door, and shoes on a wooden floor. +8a8b0d7f0ded44a.png A notebook lying open on a dark red floor has white pages filled with text, with a shadow from a nearby purple wall and a pink chair casting shapes across the scene, and a white plastic bag is crumpled against the wall background. +98e79d063d4e487.png The notebook is black with visible spiral binding, positioned upright on the bedpost against a backdrop of shoes and other personal items on the carpeted floor. +545a93dc418a45f.png The notebook has a green textured cover, possibly laying flat on a white and gray marbled surface, with paper visible on the top edge and a black strap-like object nearby. +40764a084c2e4f0.png The notebook is white with a spiral binding, positioned upright and slightly open on a blue fuzzy pillow atop a dark surface, accompanied by a beige blanket in the background. +b00fdd299317476.png The notebook, seen from an overhead perspective on a marbled bathroom floor, features a vibrant checkerboard pattern in alternating green and purple squares, bordered by a pink edge with a visible coiled binding. +09162d4f1ced4bc.png A spiral-bound notebook with a gray cover is lying on a disheveled mix of white and teal blankets, viewed from a slightly elevated angle, with the metal spiral binding clearly visible along one edge. +014d38fa76cd476.png A closed notebook with a black cover and a distinct blue spine rests on a marbled countertop in a kitchen setting, with adjacent chairs and visible kitchen items blurred in the background. +7fa40e5d0d444a5.png A spiral-bound notebook with a turquoise, striped pattern and doodles on the cover is placed on a checkered tablecloth surface, viewed from a slightly elevated angle. +6f443b7bc7f0468.png The notebook, held vertically, has a floral pattern with shades of pink and purple and is placed on a white furry surface with a brown backdrop, featuring a metal handle on one side. +5141a00d9de64cc.png The notebook has a dark cover with colorful leaf patterns and a visible brand logo, is viewed from an angled top-down perspective against a reddish-brown, smooth floor, and is next to a cardboard box on its side. +7ac15cf294cb453.png A spiral-bound notebook with a glossy cover featuring a vivid peacock feather pattern, placed at an angle on a textured dark couch in a room with a cluttered, dim background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/notepad_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/notepad_descriptions.txt new file mode 100644 index 0000000..f01a54a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/notepad_descriptions.txt @@ -0,0 +1,14 @@ +ab2e7795ac1e48e.png The notepad, seen from a side angle, features a red top binding and off-white pages, with a plain, unmarked front cover, standing vertically on a brown leather couch. +3370bbe08aef49d.png A small, spiral-bound notepad with a red cover stands upright on a wooden table, accompanied by a closed food container and a towel against a warm-colored wall background. +4c2beb3d120d493.png A person holds a small, folded, white notepad with visible edges, in front of a tiled bathroom wall featuring faucets and a paint-splattered bucket on a countertop. +bac4a94589ce429.png The notepad, viewed at an angle from a slightly elevated position, exhibits a metal spiral binding on its left side, features lined pages partially opened at the middle, and sits against a dark, textured background that contrasts with its white paper and subtle shadows. +d5effac99375473.png The notepad is a small, bright yellow spiral-bound notebook with slightly rounded corners, viewed from a top angle on a light wooden surface with a green funnel-like object partially visible to the left. +5094ed44e732407.png The green notepad with a visible spiral binding, viewed from an oblique top angle, rests on a wooden desk alongside office electronics, while a textured blue office chair sits in the foreground. +c9470d5e0b5c4c7.png The notepad, viewed from a side angle, appears to be medium-sized with white pages and a slightly textured, stack-like appearance, held over a blue-gray countertop against a kitchen backdrop with assorted items like a blender, spray bottle, and oil container. +6660d31f52a1422.png The notepad, held upright by a person's hand, is white with a logo printed at the top, featuring a glossy texture against a brown leather couch backdrop. +dba40f7b680d4e0.png A small, black notepad with white edges is held upright in a hand against a colorful, patterned fabric background with abstract shapes and floral elements. +bb01cf2e90a44d0.png A lined yellow notepad with a red margin is lying closed on a wooden countertop, with a stainless steel container and a box of tea bags visible in the background. +289005529ec04bf.png The notepad with a blue cover featuring white text is spiral-bound and positioned on a beige couch with a slightly worn texture, viewed from above at an angle, with a greenish-blue cushion nearby. +41fbbbdc40764fd.png A hand holds a spiral-bound notepad with a muted blue cover and pink rings, featuring gold lettering, placed on a dark wooden surface in a room with a warm-toned wood floor and a gray pot in the background. +308af359739d4c7.png A plain white notepad, viewed from a slightly tilted overhead angle, is held in a hand wearing a metal watch, with a floral-patterned bedspread as the background. +ec3493d0115a4a7.png The notepad features white and pink pages with a horizontal crease, viewed from an elevated angle on a brown wooden table surrounded by kitchen items and electrical outlets. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/nut_for_screw_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/nut_for_screw_descriptions.txt new file mode 100644 index 0000000..610d57f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/nut_for_screw_descriptions.txt @@ -0,0 +1,14 @@ +b4fd8c357be2420.png A close-up shot shows a shiny, metallic hex nut with a smooth texture, held between fingers against a blurred dark background, highlighting its reflective surface and flat facets. +06638493e4644be.png The nut, viewed from an angle and held between fingertips, appears metallic with a shiny silver texture, displaying some reflective properties, and is set against a blurred warm-toned background. +75944080957f484.png The image shows a brass-colored hexagonal nut with a rough, matte texture, viewed from an oblique perspective against a wooden surface background with part of a hand holding it, revealing slightly rounded edges and an internal threading. +bda7029f8cca405.png This is a shiny, metallic hexagonal nut with a smooth texture, viewed from a slightly low angle against a blurred background with what appears to be appliance controls. +c57b5bdf1bac456.png The nut appears to be metallic and rusty, hexagonal in shape, viewed from above against a dark, slightly textured background with faint lighter areas. +c1575552ae6b4b9.png The nut appears metallic and silvery with a hexagonal shape, viewed from a top-down angle against a dark, glossy background. +61d7d9c81255471.png The nut appears metallic with a slight sheen, viewed from an angled side perspective on a textured white cloth background, with defining hexagonal edges and a hollow center. +8394e7de2d1f4b3.png The hexagonal nut appears metallic with a dull, bronze hue, resting upright on a dark, speckled surface, slightly angled, highlighting its flat top and central threaded hole. +6e81e60222a64eb.png The nut, appearing metallic with a shiny silver color and smooth texture, is seen from a slightly angled perspective held between fingers against a soft, neutral-colored fabric background with a folded quilt. +2b959536a736433.png The object appears to be a metallic nut with a dull, somewhat reflective surface, viewed from a top-down perspective against a speckled, textured gray background, highlighting its circular shape and central hole. +7fef3887308d4b6.png The hexagonal nut appears metallic with a dark finish, viewed from a slight diagonal angle, against a blurry beige background with a visible shadow underneath. +7f49b122232a477.png A silver hexagonal nut with a smooth metallic texture is held between fingers, viewed from an oblique angle, with the brown parquet floor of a room as the blurred background. +1ae4da8e85af40a.png The hexagonal nut is metallic silver with a slightly worn texture, viewed from an angled side perspective against a background of wood grain, and is attached to a dark strap. +8986eacc7d9e472.png A matte black hexagonal nut with visible wear and a flat top is positioned at a slight angle against a textured wooden surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/orange_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/orange_descriptions.txt new file mode 100644 index 0000000..4c172a5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/orange_descriptions.txt @@ -0,0 +1,14 @@ +ff769383c806433.png The orange is a rich, vibrant hue with a slightly glossy, textured surface, held in a hand above a shiny black countertop next to a white sink in a tiled environment, with its roundness and small blemishes faintly visible. +3bdcf1c89417448.png The orange has a smooth, glossy surface with vibrant orange color, viewed from a slightly angled side perspective, placed on a patterned carpet featuring geometric shapes in muted grays and whites. +8c235880df2d47e.png The orange, with a smooth and bright orange texture, is centered on a wooden surface viewed from above, surrounded by a simple interior setting with carpet, visible shoe, and cardboard box edges. +c3c63565c78a484.png An orange sits on a marbled countertop in a bathroom, viewed from a slightly elevated side angle, displaying a smooth, light orange texture with a visible navel facing upwards, surrounded by various personal care items. +473c23e8ac30490.png A small, smooth orange sits centrally on an intricately patterned fabric surface, displaying a glossy finish and slightly dimpled texture, against a softly blurred room background. +b6e236613530425.png An orange is held in a hand over a kitchen counter, displaying a smooth, bright orange surface with a slight gloss, viewed from the side against a background of a coffee maker, olive oil, and seasoning bottle near a stovetop. +7f4bb18e4342416.png A small, round, bright orange fruit with a slightly dimpled texture is centrally positioned on a white background patterned with evenly spaced, multicolored dots. +09b75ade315548e.png The orange appears yellowish with a slightly rough texture, viewed from above, set against a gray-brown textured background that resembles concrete, with no distinct markings visible. +4a9291dd9ff74bc.png The orange, seen from a side-on viewpoint, features a vivid orange color with a slightly dimpled texture, resting on a red-and-white striped fabric with a blurred Eiffel Tower image in the background. +899726ae2c0a403.png The orange, seen from a slightly top-down angle, exhibits a mix of bright yellow and light orange colors with a smooth texture and a few small dark speckles, set against a tiled floor and partial bathroom fixtures in the background. +486b202f8e224b2.png A small, round orange with a smooth, glossy surface sits in the center of a brown leather couch, viewed from above, contrasting against the muted background with its vibrant hue. +b41b6d29d4c8425.png The orange, sitting on a white bathroom countertop near a toilet, features a vibrant, slightly mottled orange color and a round shape with a subtle indentation on top. +25a5ab79f82e415.png The orange, with a bright and smooth texture, is placed centrally on a marble-patterned countertop, surrounded by kitchen items like a blender, utensils, and a blue bowl, with a sticker and a visible blemish enhancing its natural look. +d46a65972bcd47d.png The orange, with a smooth, bright orange skin and a slight glossy sheen, is positioned centrally on a light wood-grain surface with minimal shadowing, viewed from a top-down angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/oven_mitts_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/oven_mitts_descriptions.txt new file mode 100644 index 0000000..8ada936 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/oven_mitts_descriptions.txt @@ -0,0 +1,14 @@ +d6c84305b6084a3.png The oven mitt is bright red with a quilted texture, lying flat on a wooden table with a lace-covered object in the background. +7b362affdb3c46f.png A black oven mitt is positioned flat on a black stovetop, bordered by wooden kitchen cabinets and tan flooring, with a white kitchen towel nearby. +f9490f07a3f7459.png A green oven mitt with a quilted texture stands upright on a wooden cutting board in a kitchen setting, surrounded by various containers and utensils on a granite countertop. +b02f8a60bc834d0.png A single blue oven mitt with white horizontal stripes and a logo is lying flat on the light-colored bathroom floor near a white door and adjacent to wooden cabinets. +db1379bd8aa5418.png A red oven mitt with a quilted texture is held flat in a hand, featuring a white interior with floral patterns, against a blurred background of orange walls and dark curtains in a bedroom setting. +f165ed871051491.png A pale green oven mitt with a quilted texture is resting on a worn brown leather couch, displaying a tear, amidst a contrasting blue wall and a patterned pillow in the background. +0a3149fd8de545e.png A person holds a bright red silicone oven mitt, shaped like a hand with thumb division, over a kitchen counter with various items, standing on a striped mat background. +98f9184960d247e.png A brown quilted oven mitt with colorful patterns is worn on a hand resting on a white, curved surface, with a muted wall background. +40ba853f5f35464.png A pair of worn, floral-patterned oven mitts in muted earth tones, held by a person wearing a long-sleeve blue shirt, resting on a dark countertop with a green tea box in the vicinity. +7b3007e61813478.png A person is holding a dark-colored, textured oven mitt from the side view, above a carpeted floor with a striped rug nearby, against a neutral wall backdrop. +c683b07c923b4e7.png A pair of quilted blue oven mitts, positioned upright on a small green fabric-covered table beside a beige sofa, with visible horizontal stitching and a cozy living room background. +02e65cbe20934f7.png A dark blue quilted oven mitt is lying flat on a wooden table with a tiled floor and scattered items in the background. +be5a453f6611487.png A hand holds a black oven mitt with white stripes, appearing flat against a light-colored wooden floor in a household setting with a beige wall and a white doorway in the background. +e77cf90d642b4aa.png The oven mitt features a gray quilted fabric with a metallic strip visible on one side, held upright by a hand against a dark tabletop with a patterned rug partially visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/padlock_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/padlock_descriptions.txt new file mode 100644 index 0000000..7362ba9 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/padlock_descriptions.txt @@ -0,0 +1,14 @@ +8c2d158b9546480.png A brass padlock with a slightly rounded rectangular body held at an angle, featuring engraved text and a shiny silver shackle, placed against a blurred wooden surface background. +309de8675cef483.png The padlock is metallic with a silver shackle and a ridged, horizontal blue body, viewed from a slightly elevated angle against a wooden floor background, with a black keyhole plate as a distinguishing feature. +9e2cea166d5947c.png A person's hand holds a small green padlock with a metallic shackle over a semi-transparent plastic surface on a multicolored fabric background. +f5533167d4fe4bf.png The padlock appears rusty and metallic with a brownish hue, viewed from a top-down angle on a heavily scratched, dark wooden workbench, featuring an aged body with visible corrosion and a shackle partially open. +c72ea359b4f7471.png The padlock is metallic silver with a smooth, reflective texture, viewed from a top-down angle on a fringed green and beige plaid fabric, featuring a circular body with a central keyhole and stamped text. +648002953f13452.png The padlock is gold-colored with a smooth metallic texture, viewed from above on a turquoise circular surface with a spiral pattern, set against a background of patterned textiles in pink, and features a slightly worn appearance with a shiny silver shackle. +dbf8f9f79ba7454.png The padlock has a metallic silver body and shackle with a black band, positioned vertically on a ribbed, light-wooden surface with visible reflections, and two partially visible feet suggesting an overhead perspective. +09c9fdbd8b774d8.png The padlock has a rectangular brass body with engraved text, featuring a shiny silver U-shaped shackle, and is viewed diagonally in the palm of a hand over a dark fabric background. +1b74585c76a8483.png The object is a metallic, silver-toned wristband watch with decorative elements, viewed from the top at a slight angle on a beige wooden surface. +4fe57983488f47f.png The padlock appears black with a glossy finish, featuring a red hexagonal emblem on its front, seen from an angled top-down perspective against a dark, textured surface. +13e91c32fffa4e8.png The padlock is metallic with a dull, dark bronze body and a shiny silver shackle, held in a hand against a plain white background and partially visible yellow fabric. +b671b05094ef4cb.png The padlock is yellow with a smooth, slightly ribbed texture and a vertically oriented shackle viewed from a three-quarter angle, situated on a wooden table against a blurred workshop background featuring white cabinets and a metal chair. +1ad2690d02814f0.png A tarnished brass padlock with a silver shackle is viewed from the front on a worn, yellowish-brown surface, featuring embossed numbers and a slightly scratched texture. +d1be600095a2451.png A brass-colored padlock with a smooth surface and a silver shackle is positioned horizontally on a sleek black surface, amidst a patterned tiled floor and colorful objects in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/paint_can_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/paint_can_descriptions.txt new file mode 100644 index 0000000..b489b2c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/paint_can_descriptions.txt @@ -0,0 +1,14 @@ +d1faa9efe2c04f2.png A hand holds a red and orange textured paint can with a metal lid, viewed from an oblique angle, against a background of patterned tiles in a bathroom-like setting. +db07b03813b9461.png A white paint can with a slightly worn texture sits on a beige carpeted floor, viewed from above alongside two standing legs. +f2020f3cb2294fb.png The paint can has a white body with a red lid and handle, viewed from a slightly above side angle on a carpeted floor next to tiled flooring and white cabinetry in the background. +91fa8fbcf486488.png A green cylindrical paint can with a black lid is held horizontally by a hand over a black countertop, set against a white wall and partially open door, highlighting its bold red and black label design. +27b285fdd5ba46a.png A partially visible paint can with a matte white body and green top border is tipped over on a beige bathroom countertop, against a background of a wall mirror, light switch, and cream-colored wall, featuring a black lid with a metal handle on the side. +7c082c86df18463.png A small, dark red paint can with a white lid is placed at an angle on a black rectangular surface, set against a textured, brownish background. +1b89de2823a3476.png A cylindrical paint can with an orange label and silver lid sits on a light wooden desk against a plain wall, surrounded by scattered papers and a closed book featuring a white and red cover design; a metal handle is visible in the centered side view. +1e6348beae24489.png The paint can is teal with a black label featuring bold text and is held by a hand at an angle in a bathroom setting with a countertop and toilet in the background. +1abf1de917e94d2.png A cylindrical paint can with a metallic lid and a purple label, positioned upright in the corner against a red wall, alongside other painting tools and accessories in a cluttered garage-like environment. +76dc662101704af.png A gold and silver paint can with a black lid, partially sideways on a beige carpet floor, featuring a barcode and text labels. +2c72455d0fb246d.png A metallic paint can with a black label and orange text sits slightly tilted on the edge of a patterned, light-colored fabric surface, against a white wall background. +1eb6d4416eae4ed.png The paint can is predominantly blue with a black lid and orange label, held at a slight angle against a soft blue fabric background with a bed and pillow visible. +857e3504543348a.png The small paint can, featuring a silver top and an orange band at the bottom, is held sideways by a hand in a dimly lit bathroom with a shower and sink visible in the background. +39752443d8a8484.png A red paint can with a white lid sits on a small white sink in a bathroom, surrounded by teal tiles and a green soap holder. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/paintbrush_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/paintbrush_descriptions.txt new file mode 100644 index 0000000..364ae29 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/paintbrush_descriptions.txt @@ -0,0 +1,14 @@ +eb1bd44b65f1462.png A paintbrush with a glossy golden handle and a white bristle tip lies flat horizontally on a white countertop, next to a sink and power cord, with a checkered floor partially visible. +f2b489eddd8c4dd.png The paintbrush features a sleek black handle with a metallic ferrule, soft brown bristles, and is held horizontally against a dark blue background, with a portion of a white tiled floor and bed visible on the left. +e2b74f4839e1467.png A slender, yellow-handled paintbrush with black text is lying diagonally on a textured, brown surface with a thin brush tip slightly darker in color. +6f087b5880a844e.png The paintbrush has a wooden handle with a light tan color, metallic ferrule, and dense, dark brown bristles, lying flat on a textured dark surface with a wooden floor background visible at the top. +d4e16adc70be44b.png A paintbrush with white bristles and a red handle lies flat on a speckled brown countertop next to a white basin, with a metallic ferrule connecting the handle to the bristles. +8178b5a903b1477.png The paintbrush, viewed from the side, has a light wooden handle with a metallic ferrule and bristles angled downwards, set against a dimly lit, textured fabric surface with a gentle gradient from dark to light in the background. +87756dd3898c4c4.png The paintbrush has a slender, light pink handle with a metallic ferrule holding light bristles, viewed from a side angle against a red and white textured wall with floral-patterned bedding in the background. +808a7bbaab2f408.png The paintbrush, positioned diagonally on a wooden countertop, features a slender black handle with a metallic ferrule and fine bristles, surrounded by kitchen items including a honey bottle and jars in the blurred background. +8b82e5a5b18d45a.png A hand holds a light brown paintbrush with a metallic ferrule and white bristles, viewed horizontally against a tiled bathroom wall decorated with a subtle floral pattern. +4be3b7446bda478.png A hand is holding a small paintbrush with a light wooden handle and dark bristles, viewed from an oblique angle against a floral-patterned tablecloth background with a white bowl and spoon nearby. +944ad04b0781420.png A wooden-handled paintbrush with white bristles is shown lying flat on a smooth, dark countertop surface, with a hand touching it near the base against the backdrop of a light-colored wall and scattered objects including two blue bottle caps. +185cec160d2241e.png The paintbrush has a red handle and worn bristles with a metallic silver ferrule, held horizontally in a hand against a background of patterned bedsheets and a tiled floor. +5ffbca2621904dc.png A small blue-handled paintbrush with white bristles lies flat on a speckled, multi-colored terrazzo floor, with a slight overhead angle revealing its narrow form and the textured handle design. +a94f19b2adbe4a3.png A wooden-handled paintbrush with a metal ferrule and dark bristles is lying horizontally on a glossy, light-colored tiled floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/paper_bag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/paper_bag_descriptions.txt new file mode 100644 index 0000000..70b5bc5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/paper_bag_descriptions.txt @@ -0,0 +1,14 @@ +9631b71fd0b046e.png The image shows a white paper bag placed adjacent to a black mini fridge, viewed at an angle slightly from above, with a kitchen cabinet background and distinctively appearing smooth with a flat surface and a metallic clip on top. +ad897fb4e684440.png The paper bag appears off-white with a distinct red logo in the center, held upright with thin red handles, against a patterned backdrop featuring vibrant pink and brown floral designs. +fef5d638ddf3421.png A light brown, slightly crumpled paper bag with a matte texture is resting on its side on a white bathroom countertop next to a sink, partially covering a small, shiny object, with a mirror and a dark faucet nearby. +0f752414b3bf4ec.png A small, pink paper bag with a white top and small rope handles lies flat on a patterned, floral fabric against a tiled floor background, exhibiting a blotchy texture. +4b7a7f34296e43c.png The paper bag is light brown with a slightly crumpled texture, viewed from an overhead angle on a glossy, beige-tiled floor with light reflections. +b260d96516ba4f7.png A brown paper bag with slightly wrinkled texture and green text is laying flat on a lightly colored bedspread in a bedroom setting, with shelves and a window in the background. +fe5fa49ff317408.png The crumpled, light brown paper bag is being held at an angle in a dimly lit room with wood flooring and a doorway in the background. +2f6f2f6c878143d.png The paper bag, featuring a light brown hue and a matte texture, is positioned flat on a cluttered kitchen countertop with visible text and a logo, amidst a stainless steel sink and various kitchen utensils in the background. +af3b65f3322c49c.png The paper bag appears off-white with a glossy texture, covered in a pattern of blue and gray flowers, viewed from a low angle against a plain pale background, with folded corners and visible side creases. +753ed2db7a0d434.png A vibrant mustard yellow paper bag with black text is resting flat on a white bathroom sink countertop, amidst various toiletries and reflected partially in the mirror. +1d6163da921845b.png The paper bag is a brown, matte-textured rectangular shape with faint branding visible on the side, positioned upright on a dark surface against a blurred background with hints of green and red hues. +31859c8f932f412.png The brown paper bag, with visible crumples and creases, is partially open and positioned upright on a bathroom countertop near a pink sink, surrounded by a large seashell and a covered soap dish, viewed from an overhead angle. +53fb0b418921480.png A crumpled brown paper bag lies flat on a wooden kitchen counter, surrounded by spice containers and a tropical-themed jar against a backdrop of brown-toned cabinetry and a wall outlet. +8d954d464bd1486.png A crumpled, light brown paper bag lies haphazardly on a beige carpet, casting a shadow with a slight overhead viewpoint, surrounded by a plain interior setting with a visible foot nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/paper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/paper_descriptions.txt new file mode 100644 index 0000000..8bd571b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/paper_descriptions.txt @@ -0,0 +1,14 @@ +3ef4811568514de.png A slightly tilted, smooth white sheet of paper lies on a beige bedspread, surrounded by a disheveled mix of brown and blue fabric. +1e276b4d468a4e6.png The image shows a white, lined spiral notebook with crumpled edges, placed at an angle on a white ceramic sink in a cluttered bathroom environment, featuring visible metal fixtures and wooden walls. +9c1fcb5074bc422.png A partially visible sheet of white paper with a smooth texture is seen peeking from a transparent plastic bag filled with various colorful items, situated on a dark fabric-covered surface amidst clutter. +c36f3e5eff3c4bd.png A folded newspaper with predominantly white and gray tones rests on a textured dark gray fabric background, viewed from above, featuring visible black and white images and text on its front page. +5795369a191c47e.png The paper being held at an angle features a prominent orange header with the word "OPINION" and a white lower section with text, set against a light-colored tiled floor background. +c3abe2103f2249a.png The image shows a newspaper displayed upright on a dark kitchen counter, featuring a visible but slightly blurred headline with a pale beige hue and a tiled backsplash as the background. +536d54e12270499.png The paper is a Tamil newspaper with visible text, headlines, and images, lying flat on a light beige woven-textured chair, viewed from above, against a tiled floor background. +5fa72d8d18cb4b8.png A hand holds a slightly off-white, thin sheet of paper at an angle over a white toilet lid, against a blank, pale wall background. +51c1c9e087ff404.png A plain white sheet of paper with a smooth texture is placed flat over a white sink, viewed from an elevated angle, with a grey tiled floor visible in the background. +2c569b9d647a4f4.png The image shows a slightly crumpled and folded white paper held vertically by fingers against a dark wooden background. +2e5f245d85e940e.png A beige-colored paper with a smooth texture is positioned at an angle on a wrinkled, patterned fabric surface with a curtain and some clothing in the background. +e36d2bd9acb5403.png A white, perforated sheet with structured blue printed text lies flat on a wooden surface, displaying a grid layout and a small, indented triangular fold at the top corner. +9b8124604f0d457.png A slightly crumpled white paper stands upright on glossy tiled flooring in a dimly lit room with scattered documents and electronic cables in the background. +6f360fbe0923499.png A plain white sheet of paper lies flat against a speckled tan wall and countertop, positioned near an off-white Gojo soap dispenser and an electrical outlet, with slight shadows indicating subtle wrinkling. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/paper_plates_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/paper_plates_descriptions.txt new file mode 100644 index 0000000..7350656 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/paper_plates_descriptions.txt @@ -0,0 +1,14 @@ +908c353d8f24453.png The large, white paper plate with a subtle ribbed texture appears upright on a cluttered kitchen countertop, surrounded by plastic bags and a yellow container under dim lighting. +0ac5449beb1c4e9.png A white, ribbed-edge paper plate is viewed from above, lying on a brown and orange patterned fabric with a speckled tiled floor partially visible beneath. +bfd9e6bb962643e.png The paper plate is white with scalloped edges and a red logo in the center, positioned flat on a patterned fabric background featuring red, green, and beige tones. +dfeb58ea829e473.png A stack of white, scalloped paper plates with a visible barcode on the top is wrapped in plastic and placed on a dark, textured fabric sofa, with part of a tiled floor visible in the dimly lit background. +42224bcb3b72477.png A small, white paper plate with a scalloped edge and a faint floral pattern sits on a dark, textured floor, viewed from a slightly elevated angle. +0857b4d9d609494.png A white rectangular paper plate with a slightly glossy texture is placed centrally on a beige plastic chair in a tile-floored indoor setting. +e205ec1cdac743f.png A white paper plate with a fluted edge is seen from a top-down perspective resting on a speckled granite surface, partially wrapped in clear plastic. +38543afdd9924e4.png The paper plate is white with a floral pattern in purple and green along the rim, held upright at an angle against a background of dark wooden flooring. +69aec8088b0742e.png A paper plate with a colorful, abstract floral pattern featuring yellow, pink, and black is captured at a tilted angle on a light-colored tabletop beside a red-lidded container, set against a beige wall with a visible power outlet. +14e21eeac99b442.png A white paper plate with a light blue and purple decorative edge is viewed from the side, horizontally protruding from a wooden cabinet with black handles, set against a plain light-colored wall. +1dc438bd832d4fe.png A hand holds a white, slightly textured paper plate at an angle, with a bathroom setting featuring a toilet and a white shower curtain in the background. +f860c2736d8b42e.png A white, slightly textured paper plate is positioned centrally with a slight left tilt against a dark, glossy wood-like surface, highlighting its ridged outer rim. +91432681f305422.png A plain white paper plate with visible ridges around the edge is being held in a hand against a background of a dark kitchen counter and wooden cabinetry. +17086aa1e02446a.png A white, fluted paper plate is held sideways by a hand against a cluttered kitchen cabinet backdrop, with cardboard boxes and stacked dishes visible in low resolution. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/paper_towel_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/paper_towel_descriptions.txt new file mode 100644 index 0000000..f0c8ba4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/paper_towel_descriptions.txt @@ -0,0 +1,14 @@ +7717c50ea2ac4b3.png A white paper towel with a subtle embossed swirl pattern is viewed from above, lying flat on a beige textured fabric background with a floral pattern partially visible around the edges. +f9707d4e8968458.png A hand is pulling a white, slightly translucent paper towel with a smooth texture horizontally against a tiled floor background, imparting a gentle curvilinear distortion to its shape. +ff695021beaa42c.png A white paper towel with a thin, slightly translucent texture is draped flat over a toilet tank lid, with an abstract painting and teal-colored ceramic dish containing crumpled items visible in the surrounding bathroom environment. +4e7860174d00471.png The paper towel in the image is white with an embossed texture and subtle floral patterns, standing vertically on a thin wooden table amidst various beverage containers and a crumpled snack bag. +a3c3f9c18b6f458.png A person holds a white, cylindrical paper towel with a slightly textured, dimpled surface at a sideways angle against a kitchen countertop, surrounded by mugs, coffee containers, and other kitchen items. +86e722bf69eb4c1.png A white, rolled-up paper towel with a slightly crumpled texture is positioned horizontally on a dark rectangular surface, surrounded by a wooden floor background and a partial view of a person's shoes and jeans. +d47764190bfa4cd.png A white paper towel with a textured surface is held at one corner, draping downward over a wooden floor with a warm brown tone in a domestic interior setting. +93075b74d67f462.png A white paper towel with a subtle textured pattern, partially unfolded and placed flat on a wooden table, surrounded by framed photos and a small candle in the background. +0078e8058f7f4be.png A single white paper towel with a subtle embossed texture lies flat on a brown, quilted bedspread, viewed from an overhead angle. +58e57457b413495.png The image shows a white, cylindrical object with a slightly crumpled texture lying on a tiled floor, with visible cords and a partial view of a round, white stand. +45ef9bb712b04e6.png A small, white paper towel with a textured, slightly dimpled surface lies flat on a bright pink tabletop, surrounded by a metal container, a yellow-and-green sponge, and sheets of paper in a casual indoor setting. +8fb9153fcaa8439.png The paper towel is white with a slightly embossed texture, held by a hand in the foreground, against a bathroom setting with a visible shower, tiled walls, and toilet. +a4e74c5ba8324db.png A folded, white paper towel with a subtly dimpled texture, viewed from a slightly raised angle, rests atop a plaid-patterned tablecloth in red, green, and white on a wooden table. +8a55871c5a054bf.png A white paper towel with embossed patterns is standing upright on a bathroom counter, with a beige wall and various bathroom items, including an air freshener and a small red container, visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/paperclip_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/paperclip_descriptions.txt new file mode 100644 index 0000000..ee2e74c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/paperclip_descriptions.txt @@ -0,0 +1,14 @@ +8cce6ac82fa0464.png A small, yellow paperclip with a glossy texture is held upright between fingers against a mottled dark green and black stone-like background with subtle reflections. +50f1f69c374449f.png A small, silver, metallic paperclip with a smooth texture lies flat on an outstretched palm against a background of light wooden floorboards and a partially visible patterned rug. +5d587e29d5b743b.png The paperclip is metallic silver with a smooth texture, viewed from a slightly elevated angle resting on overlapping pages of a book with text, and is positioned beneath the handle of a thick, dark object, possibly a tool or wooden piece. +12cb48d49ec2489.png The silver paperclip, seen from a slightly angled side view, has a rounded triangular end and is held against a tiled bathroom wall with a soft sheen in the background. +41772383ea02466.png A hand holds a small, metallic purple paperclip with a smooth texture, viewed from the side against a light wood-grain surface with distant books in the background. +eeaeaa027d1a4ca.png The metallic paperclip, silver-colored with a shiny texture, is viewed from above between fingers, positioned against a multicolored, mottled countertop background. +e7f514209f114e8.png A slender, metallic paperclip with a smooth surface is partially embedded in a textured grayish carpet near a rusty hexagonal dumbbell head. +8005d2279e1e4ec.png A green paperclip lies flat on a marbled surface with its oval loops overlapping, set against a blurred background of indistinct objects. +7ecd7b2defcc441.png The paperclip is silver with a smooth metallic texture, viewed from a side angle being held between fingers, against a patterned surface with blurred green and gray tones in the background. +76c8d4493be64a4.png A silver, smooth-textured paperclip is positioned vertically on a hand with a wooden background, showing a slight inner offset in its elliptical loops. +856f9cf0769649e.png A silver-colored paperclip with a metallic sheen is lying flat on a textured beige leather surface with visible wrinkles, set against a blurred background that includes a speckled object. +12ecbc0a3bdb4b4.png The paperclip is metallic with a shiny, smooth texture, viewed from the side with a human hand holding it vertically against a striped fabric background. +3aa34174c750429.png The image shows a silver, metallic paperclip with a standard oval shape held vertically between two fingers over a tiled floor background. +523eb7162c554ff.png A small, metallic gold paperclip lies flat on a wooden surface with a rich brown hue, oriented horizontally with its double-looped design clearly visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/peeler_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/peeler_descriptions.txt new file mode 100644 index 0000000..78383c7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/peeler_descriptions.txt @@ -0,0 +1,14 @@ +92cae1f85c1147e.png The peeler is bright red with a smooth texture, held upright in a hand with a visible black star emblem on the handle, set against a kitchen background featuring purple cabinets and various dishware on the shelves. +a84f978b5b6d4e5.png A metallic, silver peeler with a straight blade is lying flat on a wooden surface, with a minimalist handle design and a visible open frame around the blade. +18ed6c6de4c8464.png A black-handled peeler with a metallic blade is being held in a hand over a polished wooden floor, with a background featuring a dark entertainment unit and a few visible items like books and electronic devices. +30897021a009430.png A black peeler with a textured handle and a shiny, metallic blade is shown from a three-quarter angle, held in hand over a carpeted floor with a yellow surface in the background. +15da944c41a94fc.png A black-handled peeler with a metallic blade is resting on a textured red sofa, seen from an overhead angle, with a white rectangular book in the background. +741ad8b2fa0149d.png The peeler has an orange handle with a smooth texture, a metallic blade, is viewed from an angled top perspective on a plain white surface, and features a hole at the end of the handle for hanging. +dc1a03fa655c447.png A person is holding a purple peeler with a sleek, smooth finish, viewed from a three-quarter angle against a background of wood paneling and tiled flooring. +4623d6cd45cb438.png A black-handled peeler with a metallic blade is resting horizontally on a marbled kitchen countertop with a dark appliance in the background. +73ca054c93c7400.png A black peeler with a smooth handle and a slightly curved metal blade is held above a pale pink bathtub surrounded by matching pink tile walls. +cd127d80bde6434.png The image shows a peeler with a red handle and a metallic blade lying flat on a light-colored, speckled marble floor, emphasizing its simple, utilitarian design. +2a12b14d89ef457.png A peeler with a red handle and metallic blade rests at an angle on a colorful checkered fabric, featuring a predominantly blue and orange pattern amidst a multi-textured background. +f6339e2a98884d2.png A blue-handled peeler with a metallic blade is lying flat against a blurred brown background, displaying a slightly textured, possibly worn surface. +909880e3a14d449.png A handheld peeler with a black handle featuring a central green stripe, viewed in profile against a plain, light-colored background, and showing a metallic blade at the top. +e05efa20c10d4c9.png The peeler features a green handle with a white grip and a serrated blade, held upright with a wooden table in the foreground and a doorway in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/pen_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/pen_descriptions.txt new file mode 100644 index 0000000..52da5e6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/pen_descriptions.txt @@ -0,0 +1,14 @@ +5daaaa173d994fe.png A metallic pen with a shiny silver texture is held horizontally in a hand over a wooden floor, with its clip and cap slightly visible, contrasting against a patterned blue garment in the background. +241da9c536ec4fc.png The pen in the image is slim with a metallic silver body and a blue grip, lying horizontally on a bright turquoise fabric with intricate patterns faintly visible in the background. +70f48d84937c461.png The pen, viewed from above, features a transparent body with a blue cap and blue tip, resting against a plain white background with a faint shadow. +cb09026891804e3.png The pen appears in a diagonal position with a smooth black barrel transitioning into a metallic gold cap, set against a shiny, brown surface background. +f9fdad4177db49e.png A blue-capped, transparent ballpoint pen with a blue rubber grip and a clear clip, viewed from above on a light wooden surface. +345e2ff5a68847e.png A slim, blue pen with a shiny texture is held horizontally against a backdrop of a wooden post and blue curtains, with a visible silver tip. +19b43d0f12a04fc.png The pen is silver with a black grip, viewed from a slightly oblique angle held in a hand, against a plain, slightly textured beige background, and features a pocket clip near the top. +07a204d86ba5462.png A matte black pen with a clip is held horizontally by a hand against a smooth, light-colored background. +dc19dbef81f8441.png A blue pen with a metallic tip and a translucent clip is held horizontally above a wooden surface, exhibiting a smooth texture with a slight sheen. +eb8590fdfc58413.png A silver pen with a black tip and clip lies horizontally against a textured, patterned carpet with blue and beige zigzag lines, photographed from an overhead angle. +dbcfcc2cbf6d428.png A red pen with a silver clip and tip is lying horizontally against a blurred, geometric-patterned background in shades of gray and white. +8608a2fef7d14ec.png The pen, lying horizontally on a white bathroom sink, has a silver metallic texture with a black grip section, set against a tiled wall and surrounded by toiletries. +ae14e29dd9fb49c.png A black pen with a clip and visible branding lies diagonally on a striped fabric surface, featuring multiple colors, with a casual background of folded clothes. +64d5c65397de43d.png A transparent plastic pen with a black grip and tip lies horizontally on a mottled beige and dark brown granite countertop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/pencil_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/pencil_descriptions.txt new file mode 100644 index 0000000..60fad6a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/pencil_descriptions.txt @@ -0,0 +1,14 @@ +84bdb8b027b84e8.png The pencil is vertically positioned with a metallic silver body and a sharpened wooden tip, set against a wooden desk background with visible keyboard keys and black cable, displaying a shiny texture that reflects light. +9e5590a1d4274c2.png The object appears to be a black writing instrument with a pink cap, lying horizontally on a light wooden surface, featuring white text on the barrel and a smooth, matte texture. +be2a8ec523c8475.png The pencil is yellow with black stripes and text, shown from a side angle held in a hand, with a sharpened graphite tip and a blurred background of wooden cabinets and a pink wall. +ee959ff6733c4fd.png A yellow mechanical pencil with a white tip and pink eraser rests diagonally on a textured gray fabric surface, with light reflections enhancing its smooth plastic texture. +4c00a4eb7e40435.png A dark, possibly wooden or tinted pencil lies horizontally on a patterned fabric background with geometric shapes, and the low resolution obscures finer details. +c86e6ba9b953433.png A yellow pencil with a slightly worn eraser and ferrule is viewed from above, lying on a white surface next to a textured, speckled brown countertop. +c41d2ebb05894d8.png A vertically standing green pencil with a black end, partially blurred against a textured wall and a tiled floor background. +6293e7a36e9149f.png A sharpened yellow pencil with a metal ferrule and red eraser is held horizontally against a textured, striped fabric background. +528284c041484db.png The pencil is black with a slightly glossy texture and visible white areas on its surface, held horizontally against a floral-patterned fabric background. +d8d315ff693b439.png A red and black pencil with a sharpened wooden tip lies diagonally on a cracked concrete surface, featuring a visible white band near the black-painted end. +832b1260d1eb492.png A person is holding a red pencil with an eraser on a wooden table in a dimly lit kitchen environment, visible by a red pot, a paprika spice container, and a wall-mounted clock in the background. +64d6878730be4e3.png A hand holds a short, blunt pencil with a wooden texture, viewed from above against a background of brown and gray interlocking stone tiles. +6ed4a49023794d7.png A red pencil with a gold ferrule and white eraser, lying flat on a wooden floor, partially obscured by furniture legs in a cozy room setting. +d5b54705eb06408.png A yellow mechanical pencil with a smooth plastic texture is held vertically against a speckled countertop background, featuring a visible clip and eraser at the back end. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/pepper_shaker_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/pepper_shaker_descriptions.txt new file mode 100644 index 0000000..99cb36a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/pepper_shaker_descriptions.txt @@ -0,0 +1,14 @@ +5b5e4a16a7ed476.png A cylindrical pepper shaker with a black and green label featuring white text, viewed from a top-down angle on a wooden surface, displaying a slightly reflective texture and a distinct small white rectangular detail on the side. +bad37531567c411.png A transparent, cylindrical glass pepper shaker with a shiny metal lid is being held at an angle, with a soft gray fabric background that appears to be part of a sofa or chair. +dbd9ae5ab165435.png The pepper shaker resembles a small football player figure with yellow and black details, lying on its back in a hand, set against a household background with a bed and wooden floor partially visible. +4f266c1fd2e14bc.png The pepper shaker is a sleek, cylindrical metallic object lying horizontally on a speckled white countertop near a curved sink. +a70045298c6e456.png The image shows a person holding a rectangular, white and red container with a barcode, resembling a box of sodium bicarbonate, against a backdrop of a light-colored tufted sofa and a patterned pillow. +1915b49aad48458.png The pepper shaker is a clear glass square bottle with a stainless steel cap, lying on a kitchen countertop, against a background featuring a dark chevron-tiled wall and electrical outlets. +883cbec42376407.png The pepper shaker resembles an orange fox with a smooth texture, viewed from above against a white background, with distinctive black eyes and a white tail tip. +0bd0f4be8d09469.png A matte black cylindrical object with a smooth texture is held horizontally in a hand over a tiled floor, featuring a metallic open end visible at the bottom. +7bf43d8c66ee415.png A wooden pepper shaker with a polished, rich brown finish and metallic cap is held horizontally against a wood-grain table background, displaying turned grooves along its cylindrical body. +a48abf682eab4a7.png A cylindrical pepper shaker with a gray body and a brown cap lies horizontally on a wooden surface, featuring a printed label with images and text. +87b3d3a2f7e84e4.png The pepper shaker is a small, clear, square glass container filled with fine, grayish-black pepper, seen from a sideways angle, held over a dark stovetop with kitchen utensils in the background, and features a smooth metallic cap. +3c38a51d87fc454.png The pepper shaker has a transparent plastic body showing the pepper inside, a smooth black top, and is positioned at an angle in a casual indoor setting with a carpeted floor and shelves in the background. +02387f275c764e7.png A transparent pepper grinder with a green cap, lying horizontally on a wooden surface, features a cylindrical body filled with visible peppercorns and a distinctly labeled green and white sticker against a plain wall background. +b727a27d942d4bb.png The pepper shaker is a small, clear glass container lying horizontally with a black plastic lid and an orange label featuring white text, situated on a white countertop with a backdrop of kitchen appliances including a blender and kettle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/pet_food_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/pet_food_container_descriptions.txt new file mode 100644 index 0000000..70bd821 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/pet_food_container_descriptions.txt @@ -0,0 +1,14 @@ +56f4fa4581ec4af.png This pet food container is a light-colored plastic with a smooth surface, viewed from an elevated angle, situated on a patterned carpet, featuring a flip-top lid and a small transparent window on its front. +2f3d1f2da1c3492.png A crumpled yellow and pink Puppy Pedigree pet food bag showcasing puppy images and text, viewed from the front atop a white surface, with a red and white logo prominently displayed. +4ef31e5d84a4400.png The pet food container is a cylindrical jar with a metallic lid and a transparent body showing contents, adorned with a blue butterfly design, positioned sideways on a colorful woven mat with a textured brown floor in the background. +9850bf32b7d2482.png A small, cylindrical pet food container with an orange label and metallic lid is lying sideways on a textured beige fabric surface, against a grayish background. +d1dfc5c9002a4cc.png A transparent plastic bottle with a red cap contains small red pellets, viewed from above on a wooden surface alongside colorful plastic toys and a coiled black cord near an electrical outlet. +1e889a1377714a5.png A small, silver-topped pet food can with a blue label is viewed from above on a wooden surface, next to a large book with architectural motifs. +574863019403454.png A translucent plastic container with a vibrant green lid is seen from an angle in a cluttered utility room, partially filled with food resembling kibble, against a backdrop of various household items and appliances. +df2751093d6d465.png A semi-transparent rectangular pet food container with a blue lid, viewed from a slightly elevated angle, is placed on a yellow and green wooden stand in a living room with floral curtains and wooden flooring. +7003fc62307f439.png A beige rectangular plastic container filled with brown kibble is viewed from above, set against a neutral-toned floor with adjacent lids and equipment nearby. +1e058943a3704c8.png The pet food container is off-white with a matte texture, and it is being held at an angle in a dimly lit room with a patterned carpet and scattered furniture as the background. +31d8ed3a8df64b7.png A white, rectangular pet food container with a red label and blue logo is seen tilted against a wooden headboard, set against a quilted patchwork blanket background. +1ee477f879144c6.png A black plastic pet food bowl containing brown kibble is placed on a tiled floor with beige and cream tones, viewed from a top-down angle with a white pole partially visible on the left side. +2292b696a156495.png The pet food container is a translucent plastic with a slightly frosted texture, partially filled with brown kibble and topped with a black lid featuring two handle clips, situated on a tiled kitchen floor in front of a refrigerator and wooden cabinets. +8fd5eb02c7f44e5.png The pet food container is a slightly translucent, rectangular plastic box with a smooth surface, viewed from above on a beige, textured carpet, and features faint markings visible through the lid. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/phone_landline_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/phone_landline_descriptions.txt new file mode 100644 index 0000000..ba24c32 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/phone_landline_descriptions.txt @@ -0,0 +1,14 @@ +21ed76d7b811487.png A white, slightly scuffed phone landline is lying on its side against a tiled wall and floor, with a coiled cord visible and surrounded by a gray, indoor setting. +4796c8d9e92948c.png A silver cordless phone with a black top, a small screen, and visible buttons is viewed from a slightly upward angle, set against a soft, light-colored fabric background. +8bbddfdcce2f463.png The phone landline is dark gray with a matte finish, viewed from a side angle on a patterned surface, showing buttons and what appears to be a display, against a backdrop of wires and a wicker chair. +9512693a3ee6486.png A cream-colored phone landline is held upside down by a hand, showing its textured underside with black rubber feet and a cable, set against a speckled tile floor. +e0cec2ebf6f0413.png A black, cordless phone with a digital display and white button labels, is resting upright on its base against a backdrop of brown wooden furniture and tangled wires on a cream-colored, slightly stained wall. +bf4dc8fc831a4f3.png A silver and black cordless phone stands upright in its charging base on a wooden nightstand beside a metallic lamp, with a beige wall in the background. +80011772e3b1453.png A black, flat phone landline with a coiled cord is held by a hand above a light wood desk, viewed from a slightly elevated angle in a white-walled corner. +40bbaed5e585413.png The photo shows a black landline phone with a textured keypad, viewed from a slightly elevated angle, placed on a light tiled floor in front of a wooden cabinet, partially surrounded by colorful household items. +826d43e3ccf445e.png A gray, cordless landline phone with a visible keypad and antenna is resting upright on a kitchen counter next to a dish rack, against a light-colored wall with a refrigerator nearby adorned with colorful magnets. +8b8ea97faea940f.png A black and beige traditional landline phone with a cord is positioned on a light-colored kitchen countertop, surrounded by wooden cabinets and featuring a push-button keypad with a small display. +0f952555696a413.png The phone landline, viewed from above, has a dark maroon body with a smooth texture, is placed on a speckled gray stone floor, and features a series of buttons and a small display screen. +fb7149221967481.png A white, curved phone landline with a visible cord is on the bathroom floor near a dark blue bath mat, surrounded by colorful towels. +561ee06be479422.png The phone landline is a matte black device with a rectangular shape, positioned at a slight angle in someone's hand against a dark office setting with books and laptops around. +eae99b21c1f2421.png The image shows a white, smooth-textured landline phone being held horizontally against a plain white background, with a coiled cord visible and buttons on the handset. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/photograph_printed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/photograph_printed_descriptions.txt new file mode 100644 index 0000000..47e8271 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/photograph_printed_descriptions.txt @@ -0,0 +1,14 @@ +658c94de396048b.png The photograph has a glossy finish with a slightly curled shape held in a hand, featuring a mix of muted tones and distinct lines suggesting figures in a standing posture against a cluttered countertop background with various personal care items. +70ae6657770a436.png The photograph shows a blurry image with dark and muted colors held at an angle, with a textured background possibly depicting an indoor environment and a black table surface. +c3e37d6ed9cb4b8.png A small, glossy photograph features a central figure in a blue and white garment against a vivid green background with an ornate gold arch and red base, all set on a light, reflective tiled surface with faint lines and shadows. +6ac6921ae2a246c.png A vertically oriented photograph with a green backdrop depicts a person in a light jacket and another in a pink dress, placed on a patterned fabric surface with green leafy designs. +87e4415ad49f4f0.png The photograph being held above a textured carpet shows a slightly blurred view of an indoor setting with dim lighting, featuring a person in a colorful top bent over, surrounded by scattered objects on a dark surface. +2067a43ce141487.png A hand holds a mirror-like trapezoidal object with a shiny gold frame, reflecting the speckled granite countertop and blurred kitchen cabinets in the background. +010655b647d841a.png This printed photograph shows two people standing on a light sandy beach with one wearing a dark patterned outfit and the other in a light colored attire, against a backdrop of vibrant flowers that include reds, yellows, and greens. +46d2e847736145e.png A photograph in a wooden frame depicts three individuals seated together in a sepia tone with a bar-like background, held at an angle by a hand with a wooden floor and plumbing visible in the surrounding bathroom environment. +8e0f289ced344ee.png The photograph printed shows two animated pandas with distinct black and white coloring, positioned against a light blue sky background, with one panda reaching up while both appear joyful and dressed in detailed clothing. +39c00347f495474.png A printed photograph lies on a green fabric surface, with a partial view of a figure in a white garment against a backdrop of an interior room featuring a wall-mounted shelf and a pillow with a black and red patterned design. +c1fe1081a8c14a1.png The photograph printed shows a person in a black, speckled shirt, viewed from the side in an outdoor setting with a blurred background of blue and green tones against a concrete surface. +afc5df653d1e4b9.png The photograph printed features a glossy, predominantly blue flyer with white text and images of people standing and interacting in a professional setting, held in a hand with a carpeted floor and framed pictures faintly visible in the background. +49037afafb9c409.png The photograph printed shows a close-up of an individual in a red polka-dotted outfit with white rope details, captured from the front against a blue metal grill background, with the image placed on a woven mat surrounded by patterned fabric. +2d4dc61c4060465.png A low-resolution, hand-held photograph features a white-domed building against a blue sky with scattered clouds, viewed from a frontal angle, surrounded by greenery and set against a refrigerator adorned with colorful magnets. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/pill_bottle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/pill_bottle_descriptions.txt new file mode 100644 index 0000000..5af5103 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/pill_bottle_descriptions.txt @@ -0,0 +1,14 @@ +5342b989e658433.png The image depicts a white, textured pill bottle with a blue and red label, resting horizontally at a slight angle on a soft, light gray fabric surface. +518e7815424849d.png The pill bottle is white with a textured surface, viewed from the side, with a visible hand holding it against a speckled, granite-like countertop background. +b442ac22f8f1494.png The pill bottle is seen from a side angle, displaying a dark-colored cylindrical body with a contrasting bright yellow cap and a multi-colored label, resting on a white surface amidst a casual indoor setting with soft furnishings in the background. +f9bec70e0cde4b6.png A translucent amber pill bottle with a white child-resistant cap is angled in a hand against a floral-patterned fabric background, with light creating subtle reflections on the smooth surface. +871f072a4320437.png The pill bottle is predominantly white with a prominent red cap and red label accents, viewed at an angled perspective against a textured black countertop, with a blurred background featuring a cozy living room setting. +9345e10bef6e430.png A person holds an orange prescription pill bottle with a white cap, viewed at an angle against a background that includes a computer monitor and keyboard. +32ad2ba1c7d2412.png The orange, semi-transparent pill bottle with a white cap is positioned horizontally on a beige surface, set against a background of white plastic storage drawers. +c6f5b675bcb8494.png The pill bottle has a white, slightly glossy exterior with a red, ribbed cap, and is viewed at an angle against a window with an outdoor scene featuring a car and pavement, with text visible against the bottle's surface. +78b9848df94c450.png The orange translucent pill bottle with a white cap is held upright in a dimly lit bedroom with a bed and blinds in the background. +f67fecd85ee245e.png A white pill bottle with a red and white label is positioned on its side against a patterned fabric backdrop, featuring a ribbed cap and partially visible text. +1c751c84d34442e.png A small red cylindrical cap on a white container, viewed from above at a slight angle, resting on a speckled brown and gray surface, with distinctive illustrated labels on the container's side. +7cee048e038542e.png This pill bottle is white with a ridged white cap, featuring a red and black label with bold text, and is held in a hand over a speckled countertop near a white object. +32066be2bb29481.png A small, white cylindrical pill bottle with a white cap featuring black text is lying sideways on a smooth, light gray surface with streaks and spots of water, viewed from an overhead angle. +9f3371b5af5247b.png The pill bottle is small with a blue cap and a white label featuring text and icons, viewed from an angled perspective on a light wooden surface with a white-tiled background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/pill_organizer_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/pill_organizer_descriptions.txt new file mode 100644 index 0000000..a4883a4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/pill_organizer_descriptions.txt @@ -0,0 +1,14 @@ +b840ea2562aa4a6.png A rectangular, translucent pill organizer with a green top rests on a gray, textured fabric surface, viewed from above, with faint reflections suggesting hard plastic material. +dc9f7640dddf48a.png The pill organizer is transparent with a frosted texture, held horizontally in a hand, viewed from the side, against a dimly lit home interior featuring a sofa and cabinetry. +26bc02c13ec7455.png A translucent white pill organizer with bold blue letters indicating days of the week is held at an angle with pills visible in its compartments, against a green wall background and wooden trim environment. +212c23bfdaee4b2.png The image shows a purple, rectangular pill organizer encased in plastic, placed horizontally on a beige cushioned surface, with a dark wood table and various household items in the background. +fc062c82f22d4bb.png The pill organizer is rectangular, black with a smooth texture, viewed from a slight angle being held in a hand, set against a cluttered indoor background with visible household items. +14ab55e1b4b9446.png A black pill organizer with a transparent lid is being held above a bathroom sink and countertop, containing various pills and capsules in its compartments, with a cluttered background including toiletries and a purple container. +a05a7faf4f13479.png The image shows a multi-colored, segmented pill organizer with a rectangular shape, viewed from above on a dark, shadowy background, distinctly featuring different colored compartments aligned in a grid layout. +11cc9eb197a34b3.png A semi-transparent, rectangular pill organizer with visible compartments sits on a cluttered surface covered by a light-colored fabric, surrounded by scattered items, in a dimly lit indoor setting. +78f5d65f1921418.png A translucent green, rectangular pill organizer with white lettering across its compartments is positioned upright on a dark fabric surface, such as a couch, with visible cushion seams and texture. +1dde158d40724de.png A translucent green pill organizer with a smooth texture is held vertically in a hand against a kitchen environment, featuring multiple compartments and set against wooden cabinetry. +e3784f31cf8d48e.png The pill organizer is translucent with blue lettering, positioned horizontally on a speckled granite countertop beside a white sink. +4a1d32746fd64ed.png The pill organizer is a rectangular, opaque white plastic container viewed from an angled perspective, lying on a reflective glass table with a green cloth background. +c21763f50884449.png A blue pill organizer with four compartments labeled "MORN," "NOON," "EVE," and "BED" is placed on a white bathroom counter, showing a matte texture and surrounded by a blurred bathroom environment. +e819d7034fbe4f1.png The pill organizer is a translucent plastic case with seven compartments in a gradient of colors from blue to pink, opened by hand from an angled top-left view, set against a soft, neutral background of pillows and an unmade bed. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/pillow_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/pillow_descriptions.txt new file mode 100644 index 0000000..8e0edd5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/pillow_descriptions.txt @@ -0,0 +1,14 @@ +69279f1014b5483.png The pillow is off-white with a slightly wrinkled texture, positioned horizontally against a plaid-patterned fabric backdrop, featuring muted blue and beige tones on what appears to be a dark carpeted floor. +20c52d2b0895434.png The pillow is white with black horizontal stripes, positioned upright against a white radiator in a tiled bathroom setting, and partially obscured by a foot. +26f0e96f5d4d446.png A plain, light gray pillow lies atop a neatly made bed with white sheets, viewed from a slightly elevated angle in a bedroom with dark wooden furniture and a teal wall. +a46af07744ed471.png The pillow is a light green color with a smooth, slightly wrinkled texture, positioned horizontally on a beige bedspread in a softly lit bedroom setting. +b340fff9edbc4b7.png A vertically positioned white pillow with a smooth texture and a navy cover draped over it sits on a wooden floor against a simple white wall, beside an empty wooden side table and a black electronic device with blue lights. +f3f3c8ba649e4cd.png A brown, ribbed-texture pillow rests on a colorful, patterned carpet, with a slight shadow cast from the subdued lighting in a dimly lit room. +d5cebe28c11345b.png A beige pillow with subtle vertical stripes lies flat on a wooden floor beside a striped green and white rug, in a room with an open door and visible furniture. +37b754907bd144c.png The pillow is dark gray with a soft, smooth texture, seen from the side, held vertically by a person standing in a kitchen with beige and gray-tiled flooring and light-colored cabinetry in the background. +a47ad274ecfb4d4.png A light-colored, smooth-textured pillow is positioned on a made-up bed with white linens, placed in a dimly lit bedroom with a beige wall and a small framed decoration in the background. +16e16ffb18b048d.png A white floral-patterned pillow with pink and purple flowers appears to be standing upright on a kitchen countertop, next to various kitchen items. +dbc686eddd8d437.png A low-resolution white pillow with a smooth texture rests diagonally, slightly bent, on a dark upholstered armchair against a plain, light-colored wall in a room with a wooden floor and a glimpse of a patterned fabric nearby. +3f2e1ce1d152460.png The visible pillow has a solid red color with a smooth texture, placed upright against a navy blue couch in a living room setting, complemented by contrasting pillows, including a striped one, in a cozy, home-like environment. +30f4a143dd5948f.png The pillow is rectangular with diagonal blue and yellow stripes, placed flat on a dark seating surface, and set against a red armrest backdrop in a room with a wooden floor. +9b2a72f8a3014cd.png A rectangular pillow on the floor features a vivid red base adorned with a black geometric pattern, set in a dimly lit room with exercise equipment nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/pitcher_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/pitcher_descriptions.txt new file mode 100644 index 0000000..e9c7196 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/pitcher_descriptions.txt @@ -0,0 +1,14 @@ +4d49009d75044d7.png The image shows a bird's-eye view of a white ceramic toilet with a clear or lightly tinted lid and a faint purple-tinted circular object on the seat, set against a tiled floor and accompanied by a beige mat. +b5b3c8f148f3402.png A smooth, off-white pitcher with a wide handle is tilted horizontally against a terracotta-tiled floor, with a kitchen shelf background containing various items. +c2aa192ce2de4ee.png The transparent glass pitcher, viewed from above, rests on a blue and white checkered cloth, on a round table with additional objects including two glasses and a banana nearby. +a0b3243eb84148f.png A deep blue plastic pitcher with a smooth texture is viewed from an angled perspective on a white bathroom countertop, accompanied by a mirrored reflection, amidst various toiletries and a blue towel hanging nearby. +a3a2f55e5a404f8.png The pitcher is a translucent lavender color with a smooth texture, viewed on its side against a kitchen counter with a sink and blender visible in the background, featuring a round lid with a handle. +4a6355c319e04ec.png A semi-transparent, frosted plastic pitcher with a red bottom is viewed from a side angle, hung against a tiled kitchen backsplash above a black stove. +7bf879f00b43441.png A translucent, white plastic pitcher with a simple handle is lying horizontally on a white toilet lid against a background of brown flooring and miscellaneous bathroom items. +4f45704f93fb46a.png The pitcher is translucent pink with a smooth texture, viewed from an overhead angle, lying on a white tiled floor near a yellow plastic chair, with a visible handle and spout. +86131be591974c7.png The object is a cylindrical, copper-toned pitcher with a slightly textured matte finish, viewed from an off-center angle on a white surface, set against a pale green background with indistinct objects. +1264f435d0b84ac.png The image shows a white, matte-finished pitcher lying on its side next to a brown countertop, with a curvy shape and a handle visible, set against a background that includes a white sink and several bottles. +4cc0549979fe492.png The clear glass pitcher with a smooth and reflective texture is held obliquely to the right, contrasting against a colorful patterned bedspread and a white pillow in a dimly lit bedroom setting. +931a6b3918c8475.png The clear glass pitcher, with a smooth shiny texture, is held upright by a hand and features a blue base, against a bathroom countertop background with visible toiletries and a toilet paper roll. +4e0c28f98c864c8.png The silver metallic pitcher, viewed from the side, features a straight handle and a spout, set against a vibrant blue-patterned mat on a speckled floor with a teal wall backdrop, and is adorned with a small label on its surface. +b38dc809bf04421.png The image shows a transparent, plastic pitcher held at an angle with a blue handle and a simple cylindrical shape against a wooden floor background with light-colored planks. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/placemat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/placemat_descriptions.txt new file mode 100644 index 0000000..c47a048 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/placemat_descriptions.txt @@ -0,0 +1,14 @@ +0f320d33621d4c2.png A round, textured orange placemat is centered on a larger gray fabric, viewed from above, with a wooden floor and partial view of a rectangular outlet in the background. +f25973bafd2a412.png A vertically oriented, light-colored, textured rectangular object with faint horizontal lines is leaning against a dark sofa in a dimly lit room with a carpeted floor and scattered items. +81fb5dfa9f7e4c8.png The placemat features a multicolored, striped pattern with a knit texture, viewed from above on a round wooden table, alongside a vase with white flowers and books in the background. +b0ae9c2577c2406.png A woven placemat with a red and black braided pattern is laid flat on a light-colored tiled floor, with frayed edges on one side, surrounded by bare feet and the corner of a wooden structure. +5ef01d76c3914d2.png The placemat is folded and features a striped pattern with alternating yellow, white, and green colors, placed on a light-colored tiled floor with part of a pink object visible on the left. +e6227fa250f5420.png The placemat is dark brown with a smooth, leather-like texture, featuring a grid-like pattern of stitch lines, positioned diagonally on a white countertop next to a tiled floor and kitchen appliances. +4b7d0dd2431b44b.png The black placemat features white stitched edges, is held at an angle by a person wearing a green sweater, against a background of a carpeted room with nested wooden tables and a vase of flowers near a fireplace. +b4ef612fbdce44e.png The placemat is a vivid magenta, rectangular in shape, with a smooth texture, centrally placed on a cream tablecloth adorned with heart motifs, situated in a dining room with a background of glass doors revealing a patio area. +832f5473a58048a.png A transparent placemat with a blue design featuring a fish on the left and a star shape on the right is positioned flat on a brown-tiled floor. +75863c08488843d.png The oval-shaped placemat, viewed from above, features a cream background with alternating green-striped and floral pattern sections, situated on a white tiled floor. +51f6b47567134ce.png A small, rectangular placemat with a fringed edge and a pattern of muted, horizontal stripes in shades of grey and purple lies flat on a tiled, marbled floor, viewed from a slightly elevated angle. +e9d369a3121442c.png A striped, rectangular placemat with a pattern of alternating dark and colorful lines lies flat on a tiled floor in front of a step within a tiled bathroom-like environment. +1ed71bfc64fa4fe.png The placemat in the image is rectangular with alternating green and white vertical stripes, positioned flat on a light brown carpet, viewed from above, with two cats nearby. +5b9871e6136746e.png A rectangular placemat with a textured pattern of small, evenly spaced dots in shades of brown is laid flat on a white cloth, against a neutral-toned cushioned background above and a geometric patterned carpet below. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/plastic_bag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/plastic_bag_descriptions.txt new file mode 100644 index 0000000..7cc41e3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/plastic_bag_descriptions.txt @@ -0,0 +1,14 @@ +f05ce711069f41f.png The image shows a crumpled, semi-transparent brown plastic bag being held from above in front of a tiled floor with faint writing visible on the bag. +d0d12f0c67164be.png The image shows a translucent plastic bag with a faint green text or design on it, partially crumpled and lying on a patterned surface, viewed from a slightly elevated angle against a plain wall background. +77ac3340acbe494.png An orange plastic bag with crumpled texture is lying flat on a blue textured bed cover, viewed from a top-down angle, in a room with a cork bulletin board and light-colored walls in the background. +0336b607f16644a.png A white plastic bag with blue text is crumpled on a brown couch, with a wooden-paneled wall and door in the dimly lit background. +ee5553d25f60486.png In a dimly lit bedroom with striped bedding and wooden blinds, a semi-transparent white plastic bag with yellow text is held aloft by a hand, showing a slight crumple in its texture as it hangs with soft shadows. +7d098774f5e44c7.png A crumpled white plastic bag with blue text and graphics is displayed partially unfolded against a dark, floral-patterned background, with its texture appearing slightly glossy and semi-transparent. +3bb2395d0fa74ff.png A crumpled, pale yellow plastic bag is sitting on a beige carpeted floor, viewed from above, surrounded by scattered debris and framed by a doorway. +1a2fd90c0d4c45a.png A crumpled, semi-transparent gray plastic bag with handles is lying flat on a patterned quilted bedspread featuring red, blue, and green checkered patches. +c65840b856134e9.png The plastic bag is translucent and crinkled, held upright by a person in a room with a desk and chair, containing a dark rectangular object. +90234e54f972415.png A clear, partially transparent plastic bag with a blue zip-seal is lying flat on a quilted mattress with a light beige color, set against a wooden floor background. +2bf47bb095514a6.png A crumpled, semi-transparent white plastic bag sits on a wooden floor, viewed from above, with two handle loops visible and a slightly shiny, wrinkled texture distinguishing its surface against a background with pet-related items. +bf21cddcd1cc4a0.png A transparent plastic bag held from the top left corner, exhibiting a slightly crinkled texture, set against a carpeted floor and next to a blue exercise mat. +625a68720e7342c.png A transparent plastic bag with a red zip closure lies flat on a black granite bathroom countertop, surrounded by a white sink, tissue box, and assorted toiletry items, distinguishable by its see-through design and bold zip accent. +46e99b4b08a4428.png A white plastic bag with red circular patterns is crumpled on a wooden floor, slightly open revealing its contents, positioned near a pet carrier and other household items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/plastic_cup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/plastic_cup_descriptions.txt new file mode 100644 index 0000000..f41fa45 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/plastic_cup_descriptions.txt @@ -0,0 +1,14 @@ +65e8a3b4c5dc464.png The plastic cup is transparent with a greenish tint, held sideways by a hand above tiled flooring, with a blue mat partially visible in the background. +3ecd5b194abf4a5.png The image shows a translucent green plastic cup with a smooth texture, held upside down at an angle by a hand in the foreground, set against a warm-toned indoor environment featuring a brown wooden chest of drawers and beige carpet. +e22f3f51342e44b.png The plastic cup is translucent white with decorative brown lettering, "Gobble til you Wobble," lying on its side on a white bathroom counter beside toiletries and a faucet, with a faint shadow cast on a wallpapered wall. +fbcd50576f24498.png A translucent, matte-finished orange plastic cup with a handle is viewed from above at an angle, resting on a floral-patterned tablecloth next to a tiled wall. +c75bb8633818482.png The plastic cup appears translucent with blue markings, lying on its side on a tiled floor, with faint reflections visible and a wooden cabinet in the background. +607695563b95478.png A blue, semi-transparent, cylindrical plastic cup with a matching straw rests horizontally on a wooden surface, surrounded by coasters and a tissue box, with a patterned carpet in the background. +9c125d6f51894d7.png A vibrant pink plastic cup with a smooth texture and a simple handle is positioned upright at an angle on a granite countertop, against a blurred background with faint outlines of wooden structures and clothing. +b26cd5713e4440a.png The transparent plastic cup appears bluish with a textured surface featuring floral motifs, presented from a tilted overhead angle on a beige countertop, set against a cluttered backdrop of toiletries and a patterned curtain. +a35c937f01d0453.png The plastic cup is red and slightly opaque with a smooth texture, viewed upright on a wrinkled yellow fabric next to a pillow, amidst a cluttered background including a dark object and a foot. +82dd095e893b4a4.png The plastic cup is predominantly white with colorful printed graphics, held horizontally against a wooden floor background in a living room setting, featuring a visible image that includes small text along the top edge. +f2ca6e457fc9410.png The plastic cup is translucent green with a ribbed texture, laying on its side on a marbled countertop beside a round sink, with a small white and orange bottle visible nearby. +e43d9cd0539c474.png The plastic cup is turquoise with a glossy texture, featuring a colorful design on one side, photographed from a diagonal top-down angle on a light-colored kitchen counter, with a black microwave and stove visible in the background. +14c6c75f0786488.png A red plastic cup with a smooth, glossy texture is positioned upside down on a rustic wooden table, with a person's arm visible reaching toward it, set against a background of a wooden floor and a cardboard box. +b9ef89a74eae488.png A small blue plastic cup with a slightly glossy texture is viewed from above, resting on a beige marble-like surface with faint brown veins, with a shadow partially obscuring the left side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/plastic_wrap_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/plastic_wrap_descriptions.txt new file mode 100644 index 0000000..fc9e476 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/plastic_wrap_descriptions.txt @@ -0,0 +1,14 @@ +f41419bcc7f640c.png A partially opened rectangular clear plastic bag with a blue zipper seal and a white block label area lies on a marble-like surface, displaying the brand logo in white with moderate reflections and creases. +2b0b620b48ec43e.png A roll of silver plastic wrap lies at an angle on a light-colored kitchen countertop, amidst various kitchen items like a blender, sauces, and honey, against a stark black background wall. +d84037c4a45a4cf.png A rectangular box of yellow plastic wrap with red and black text lies on a beige carpeted floor, viewed from above, with part of a person's feet and lower body visible in the foreground. +42fecbfdfae1479.png A person is holding a roll of transparent plastic wrap with a slight yellow tint, positioned upright in a modern kitchen with dark cabinets and a glossy, black marble backsplash. +b1087cdb1d504e6.png The plastic wrap box is predominantly yellow with red text, featuring an avocado image, viewed from a tilted side angle on a carpeted floor with miscellaneous items in the background. +4465f5739b8e4d6.png A cylindrical roll of clear plastic wrap with a brown cardboard core is positioned diagonally, viewed from an angle showing the open end, against a wooden table and a blurred, darker background. +e26b310877dc4b4.png The bright yellow plastic wrap box, held upright by a hand in a kitchen setting near a sink and toaster oven, features bold black and white text with small, visible perforations at the top edge. +db097952a95548c.png A rectangular box of plastic wrap with a predominantly blue and white design featuring text and an image of fresh produce lies on a tiled floor partially surrounded by a fluffy teal bath mat. +747496e242f9484.png A partially unrolled translucent plastic wrap with a white core is positioned upright on a glass table amid scattered papers and a laptop in the background. +20eb74defb0f416.png The image shows a rectangular box of plastic wrap with a bright yellow color, featuring red and black text and graphics, viewed from above and resting on a tiled floor with a dark grouted, cream and beige marbled pattern. +10e99e57e83f4b1.png A yellow box of plastic wrap with colorful images on the side is held in a hand in a dimly lit kitchen, featuring a stove and kettle in the background. +dbd2e9f4a07544a.png A bright yellow and red box labeled "plastic wrap" is positioned horizontally on a white countertop, with a visible perforated cutting edge and a background featuring a beige wall, electrical outlets, and kitchen items. +0d1295388a3542c.png The plastic wrap appears as a translucent cylindrical roll with a bluish logo visible on a wooden desk surface, situated in front of a black keyboard and near a cylindrical blue object. +79479ecf017c4a6.png A cylindrical roll of plastic wrap appears amber or brownish on a tile floor viewed from a top-down perspective, with subtle reflections hinting at its smooth texture amidst the distinct grid of tiles. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/plate_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/plate_descriptions.txt new file mode 100644 index 0000000..f860042 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/plate_descriptions.txt @@ -0,0 +1,14 @@ +8f4f7da0822b417.png A red plate with white and green polka dots is placed on a bathroom countertop amid various personal items, viewed from slightly above the edge. +f1191a6cbbf64e2.png A reflective silver-colored metal plate with a smooth surface is placed on a patterned cloth over a bed, viewed from above with part of a textured carpet and green wall in the background. +9bd18f1fc0cb470.png The plate is predominantly white with a colorful geometric pattern around the rim, featuring red, blue, green, and pink shapes, and is being held above a dark green granite countertop near a white sink, viewed from an angle slightly above and to the side. +6b2e8b94b3064cd.png A person holds a smooth, slightly reflective white plate with a subtle logo in the center, set against a backdrop of light blue fabric, and accompanied by two small circular objects nearby. +9de1642070aa420.png A translucent, blue plate with a matte texture is leaning against the leg of a wooden chair on a wood-patterned floor, with a radiator and a partial view of a packaged item in the background. +97fc65d96d8149a.png The plate, held at a tilted angle, has a shiny, cream-colored center with a glossy reddish-brown rim, set against a cluttered kitchen countertop featuring spices and containers. +f3058957f2434af.png The plate is plain white with a glossy finish, held horizontally by a hand in the foreground against a background featuring a wooden cabinet and dark television screen. +394c0751e9f8495.png The plate is a transparent, amber-colored glass with a fluted rim, photographed from a slight angle on a beige tiled floor with dark grout lines. +7232d05b08884f5.png The image shows a white, oval-shaped plate positioned vertically on its edge, highlighting its smooth, glossy texture against a dark wooden table with visible grain patterns and an oval brown placemat beneath it. +ec831779a7d54fd.png A person holds a matte, light pink, oval-shaped plate with a side view against a wooden floor backdrop, partially covered by crumpled pink fabric. +4fa653f08d7d4da.png The plate has a smooth, predominantly white surface with a green rim adorned with orange floral patterns, positioned vertically against a dark countertop, near a window with metal bars and brass objects, creating an indoor kitchen setting. +ff5b7ea449e54e6.png The image depicts a shiny, oval-shaped metallic plate with a smooth, reflective surface, viewed from an angled top perspective against a dark background with a hint of a yellow cloth on the side. +90a24523eeab44a.png A white ceramic plate with a delicate floral pattern along the rim is positioned flat on a dark, speckled countertop next to a stovetop, with part of a patterned rug visible in the corner. +4b1e00571ef3416.png The plate is white with a smooth texture, viewed from a side angle on a bed with contrasting black and white sheets, and it appears to be disposable. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/playing_cards_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/playing_cards_descriptions.txt new file mode 100644 index 0000000..fbae810 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/playing_cards_descriptions.txt @@ -0,0 +1,14 @@ +60e3d0b5303345a.png A small stack of playing cards with a blue and white intricate back design is balanced upright against a granite countertop, blending into the speckled pattern of the beige and grey stone background. +987bc8f089e74d3.png A slightly worn playing card box lies angled on a tiled floor, with a red and white color scheme featuring intricate red artwork and bold text, contrasted by a shadow cast upon it. +c2ee9d5c3a6c4b6.png A small, orange box with a visible circular logo and text, resting on a wooden table near a patterned tissue box and a white envelope, viewed from an angled top perspective. +a3c0a4949bde45b.png The playing cards box is predominantly white with bold blue panels featuring white text, held in a hand against a white, slightly textured background with a visible shadow, and displays minimalistic dice imagery. +c5b20ca8861c485.png A low-resolution image depicts a pack of playing cards with a geometric and metallic text design on the side, viewed from an angled top-down perspective on a black table with a beige carpet and rubber bands in the background. +ea5b65f97cf0459.png A hand holds a deck of playing cards from the side view; the deck has a black band with white "Drone: 777 POKER SIZE" text, against a patterned bedspread of red, orange, yellow, and gray squares with abstract designs. +04c82587f04b411.png A hand holds a deck of playing cards from the side, revealing mostly uniform blue edges against a white countertop with black metal shelving in the background, creating a simple and neutral setting. +2feb80c6257f403.png A hand holds a slightly worn deck of playing cards, showing the nine of spades on top, with a background of white bathroom tiles and a countertop. +c7437e47978a40b.png The playing cards box is red with a pattern of heart symbols and the word "CLASSIC" prominently displayed, lying slightly askew on a textured beige countertop next to various toiletries and a white sink. +3c127941a8ba4f0.png A glossy, checkered red and white deck of playing cards rests partially fanned out on a white bathroom sink with chrome faucets, amidst toothbrushes and hygiene products in a tiled bathroom setting. +220b321b8d5e4df.png A hand holds a six of clubs playing card with a white background and black club symbols against a light wooden surface with a bowl of assorted fruits in the background. +540507550119414.png A deck of playing cards with a blue and white intricate back design and a visible "King of Diamonds" card is placed in an open box on a wooden desk, surrounded by a keyboard, a monitor base, and a white cable. +34320378ea00441.png The playing cards box is orange with an intricate circular emblem in the center, featuring a logo and the word "DISCOVER," placed on a countertop with a glossy white appliance and wooden floor visible in the background. +c6d4c5c1c35244b.png The image shows a hand holding a slightly fanned-out deck of playing cards with a predominantly white and black color scheme and distinct face card patterns visible from a side view against a blurred background featuring a bookshelf filled with various items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/pliers_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/pliers_descriptions.txt new file mode 100644 index 0000000..00e207e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/pliers_descriptions.txt @@ -0,0 +1,14 @@ +886414b740224be.png The pliers have black handles and metallic jaws, viewed from above, lying on a white paper with a speckled countertop background featuring reddish and blue hues. +eb89ead03d9a404.png The pliers feature bright green handles with a textured grip and yellow detailing, viewed from a top-down angle against a dark surface, distinguished by their long, slender metal jaws and a visible coil spring in the center. +4e76540b18dc46a.png The pliers have black rubber handles and a metallic, slightly shiny head, viewed from above on a tile floor background with light reflections. +425ec57d3674438.png The pliers have green rubber grips, metallic jaws, and an adjustable joint, shown lying flat on a wooden floor with a hand holding them, casting a long shadow in ambient indoor lighting. +a7c5e51bd7124c3.png A silver-colored pliers with a glossy texture lies flat on a tiled floor, viewed from above, with slightly angled handles and a shadow cast nearby. +cb0a5c6c746545e.png The pliers have red rubberized handles with a shiny metallic tip, viewed from a top-side angle, held against a lace tablecloth backdrop on a dark wooden surface. +7d91a9252b2641a.png The pliers have orange and black rubberized handles with a metallic head, viewed diagonally from above, against a dark, speckled surface background. +70d4a3d36d0948b.png The pliers have shiny, metal jaws and red handles with black tips, lying on a glossy tiled floor reflecting light, viewed from an elevated angle. +b2ac0946a1bd409.png The pliers in the low-resolution image have pink handles with visible wear, are positioned at a slightly tilted angle against a dark background, and feature a rusted metallic head with a noticeable gripping jaw. +0fdfc90dfc7e46f.png A person is holding a pair of pliers with yellow and black handles, positioned vertically against an indoor background featuring a white wooden ceiling, exposed ductwork, and framed pictures on the wall. +e924bfabebf547f.png A pair of dark gray pliers with a worn, metallic texture lies at an angle on a wooden surface, partially in shadow, with a blurry outdoor scene visible through a glass door behind it. +71b7a6116ef8488.png The pliers are metallic and rusty with a dark brown hue, lying flat on a wooden floor, showcasing curved handles and a textured grip area. +03b0b6bcc3064e9.png The pliers have black rubber grips, a metallic central portion with a slightly reflective texture, are positioned with handles down on a speckled countertop near a sink, and exhibit a curved jaw design. +0341e66ba8204a0.png The pliers are rust-colored with a matte texture, seen in a top-down view on a tiled floor, with straight handles and a wedged head design. diff --git a/utils/area/descriptions/objectnet/generated_descriptions/plunger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions/plunger_descriptions.txt new file mode 100644 index 0000000..c3de92f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions/plunger_descriptions.txt @@ -0,0 +1,14 @@ +aa552e1084c4416.png The plunger has a bright green handle and white shaft, with a black rubber suction cup, and is resting on a detailed, patterned rug with a neutral color scheme seen from above. +134087adb1ec43b.png The black plunger with a ribbed texture lies horizontally on a cream-colored towel placed on a wooden floor, surrounded by a kitchen cabinet backdrop. +43eee00bdcdd4ce.png A red plunger with a wooden handle stands upright on a hexagonal, terracotta-colored tile floor in front of a cream-colored door with a metallic vent. +3ee8241367a3444.png A black rubber plunger with a wooden handle lays diagonally on a beige tiled floor with geometric patterns, viewed from above. +ca874ca5a2bd4fb.png The plunger, viewed from an angle above and held by a hand, features a black rubber suction cup with a white handle, set against a bathroom backdrop with a patterned shower curtain and a decorative wall sign. +5a46730940114c1.png A blue rubber plunger with a white and blue handle is held upright in a bathroom setting, distinguished by a grey towel background. +0156d6d6d25a411.png The plunger features a black rubber suction cup and a wooden handle, leaning against an oven in a kitchen with a tiled floor, next to a green broom, with visible shadows on the ground. +925171cacc4345f.png A black, ribbed plunger with a straight handle is vertically positioned on a white toilet seat against a beige wall background. +ea06ef475dbf483.png A plunger with a dark rubber cup and a reddish-brown wooden handle stands upright against a white door on a wood-floored corner with dim lighting, highlighting its shadowy contours and ambient texture. +ce4d9ac3b16b473.png The plunger features a black rubber cup with a white handle and a green hand grip, lying horizontally on a light-colored tiled floor in a dimly lit room with a carpeted area nearby. +6b00e6e17e234ec.png A blue rubber plunger with a white handle and blue grip tip lies horizontally on a brown tiled bathroom floor, surrounded by woven blue and white rugs and adjacent to a toilet. +1c9f0fcf57c34a1.png An orange rubber plunger with a wooden handle is being held horizontally by a person wearing a red sleeve, positioned on a beige carpet near a white wooden-paneled wall. +66011a52af5146b.png A black and white plunger with a long handle stands upright on a piece of white paper in front of a wooden door, set against a tiled floor background. +7c1730c837de4aa.png The plunger has a dark rubber cup and a light wooden handle, positioned diagonally against a pale wall with a small animal cage and a light wood floor in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/air_freshener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/air_freshener_descriptions.txt new file mode 100644 index 0000000..8aeff0f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/air_freshener_descriptions.txt @@ -0,0 +1,3 @@ +b974474a9f2c41e.png A can of air freshener with a white and blue design featuring a sky and clouds motif is being held at a slight angle in a dimly lit room with a zebra-patterned curtain in the background. +0aa20e51a8d54b8.png The air freshener features a predominantly purple can with gold accents and floral imagery, resting horizontally on a wooden surface with visible grain, amidst a casual indoor background including a pair of jeans. +795aabaa92d948a.png The air freshener is a cylindrical can with a white label featuring green and black graphics, and it is being held horizontally over a sink with visible bathroom items, including a green cap and a slightly reflective metal surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/alarm_clock_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/alarm_clock_descriptions.txt new file mode 100644 index 0000000..33870c1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/alarm_clock_descriptions.txt @@ -0,0 +1,3 @@ +049e2d2518994a7.png A black alarm clock with a digital display face is positioned slightly angled on a speckled granite countertop, surrounded by kitchen items like a pot and a pineapple, against a light-colored wall. +db0325d8daa0471.png The low-resolution image shows a small black digital alarm clock placed on top of a wooden nightstand, with visible red LED numbers displaying the time against a background of a beige-colored wall and a bookshelf filled with DVDs. +b91c7e355bc84ba.png The alarm clock, shaped like a Batman figure, is predominantly black with yellow accents including the iconic Batman logo, as seen from an angled top-down viewpoint sitting inside its open cardboard packaging against a patterned carpet backdrop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/backpack_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/backpack_descriptions.txt new file mode 100644 index 0000000..763dc59 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/backpack_descriptions.txt @@ -0,0 +1,3 @@ +a36b1b15f9784e6.png The backpack is black with a rounded and slightly shiny texture, viewed from a side angle, resting on a bed with light blue striped sheets and a plaid pattern pillow in the background, featuring small frontal pockets and a top handle. +2facce9b07d6492.png The black backpack with a shiny texture is lying on a plastic chair viewed from an elevated angle, with prominent red lettering and surrounded by a cluttered indoor setting featuring additional chairs and reflections in nearby mirrors. +c57a2240dfa74ac.png The backpack is black with a visible logo on the front pocket, appears to have a soft texture, is held sideways by a hand, and is set against a bathroom environment with tiled floors and household items like a radiator and bathroom tissue in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/baking_sheet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/baking_sheet_descriptions.txt new file mode 100644 index 0000000..08b37cf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/baking_sheet_descriptions.txt @@ -0,0 +1,3 @@ +209b8c5bc7584dc.png The baking sheet, viewed from the side and held by a hand, appears dark and narrow with a smooth texture against a blurred indoor setting featuring bedding and pillows. +a59e130a3ef0449.png The baking sheet, viewed from a side angle, has a metallic, slightly reflective surface with a smooth texture, set against a kitchen backdrop featuring a gray tiled backsplash and stainless steel appliances. +7d0eeb25119b49e.png A metallic baking sheet with a smooth, reflective surface is positioned horizontally on a red circular surface, surrounded by a dimly lit, cluttered background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/banana_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/banana_descriptions.txt new file mode 100644 index 0000000..6529e37 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/banana_descriptions.txt @@ -0,0 +1,3 @@ +e28bc01a929b4b2.png A slightly curved, speckled yellow banana with some brown spots is lying horizontally on a white bathroom countertop next to a white sink and partially visible toilet, with a blurred, tiled floor in the background. +7ba26081eaa74ce.png The banana is predominantly bright yellow with a slight hint of green at the stem, lying horizontally on a textured, beige carpet, held at one end by a hand, while a blue sticker is adhered close to the middle. +0bccbb90b74d4ce.png A slightly curved yellow banana with some brown spots and a sticker is held horizontally over a wooden floor, with a hand and a red object partially visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/band_aid_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/band_aid_descriptions.txt new file mode 100644 index 0000000..43b6cd3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/band_aid_descriptions.txt @@ -0,0 +1,3 @@ +004670f1df1c40e.png The band aid appears white with a smooth texture shown in a flat, horizontal position against a plain, dark background, featuring slightly rounded ends. +b457d9780a2f47b.png A beige band aid, viewed from above, with a small centrally located gauze pad, set against a marble-patterned floor background with subtle gray veining. +3646584ddd624ae.png The band aid appears in a diagonal orientation with a light brown, textured surface, held between two fingers against a wooden, plank-like background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/baseball_bat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/baseball_bat_descriptions.txt new file mode 100644 index 0000000..f3f0d58 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/baseball_bat_descriptions.txt @@ -0,0 +1,3 @@ +df88d338bdae476.png The baseball bat is light brown with a smooth wooden texture, featuring visible engravings, and is held at an angle above a bathroom sink in a tiled restroom setting. +20d4e62ee99348e.png A black and silver baseball bat with taped grip lies diagonally across a light beige tiled floor, positioned against a white door, with a brand logo visible near the handle. +b6d793285832481.png The baseball bat appears metallic silver with glossy texture, displayed at an oblique angle in a bathroom setting, and features a noticeable red marking or signature. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/baseball_glove_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/baseball_glove_descriptions.txt new file mode 100644 index 0000000..9be0021 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/baseball_glove_descriptions.txt @@ -0,0 +1,3 @@ +4f939f6b0bdd456.png A brown baseball glove with a woven pocket and black lacing is lying palm-up on a white textured bedspread, against a backdrop of wooden flooring and a side table. +064a1f058775488.png The baseball glove appears to be a light brown leather with black lacing and is held by a hand on a dark countertop in a blurred indoor setting, displaying a woven webbing pattern. +d582feb1afd9479.png The baseball glove is dark-colored, likely black, appearing slightly worn with visible stitching, and is positioned palm-up on a carpeted floor in a neutral indoor setting with no other distinct objects nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/basket_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/basket_descriptions.txt new file mode 100644 index 0000000..fb6825c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/basket_descriptions.txt @@ -0,0 +1,3 @@ +60d3abd3d9fd44c.png The metal wire basket, held from an oblique angle with a wooden floor background, features a round shape with a dark brown hue and thin, intersecting wires forming a grid-like open structure. +7afbcaf200bf4c2.png The basket is a round, light brown woven container with a lattice texture, viewed from a slightly elevated angle against a textured maroon fabric background featuring small white dots. +a09b8b6bc8bf40e.png The basket is blue with a perforated plastic texture, viewed from an angled top-down perspective, resting on a rough wooden shelf against a backdrop of cinder blocks and a red object. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bathrobe_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bathrobe_descriptions.txt new file mode 100644 index 0000000..47c5fcf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bathrobe_descriptions.txt @@ -0,0 +1,3 @@ +7f40a0ae6b08496.png A teal, plush bathrobe is casually draped over a glass coffee table in a living room with a patterned rug and brown sofa, highlighting its soft texture and relaxed placement. +de414600a1104ed.png A dark gray bathrobe is casually folded on a patterned blanket with red, white, and star motifs, set against a background featuring a striped, textured surface and partially visible furniture. +350b4595cb984ad.png A white bathrobe with black cow-like spots is crumpled on a brown tiled floor next to a white bathtub and a digital scale in a bathroom setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/battery_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/battery_descriptions.txt new file mode 100644 index 0000000..bd133a3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/battery_descriptions.txt @@ -0,0 +1,3 @@ +cec6d2244a85464.png The battery is red with white text and a logo, laying horizontally on a soft, multicolored striped fabric background. +dd810143a21d4f2.png The battery is cylindrical with a blue body, metallic silver bottom, and red ring at the top, with visible branding text, held between fingers against a textured, soft gray fabric background. +d1f87afc167a4fa.png A beige cylindrical battery with black text indicating "ALKALINE BATTERY" is standing upright on a glossy tiled surface, with a blurred tiled wall in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bed_sheet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bed_sheet_descriptions.txt new file mode 100644 index 0000000..09a075d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bed_sheet_descriptions.txt @@ -0,0 +1,3 @@ +f8fb6d6a2beb41e.png This bed sheet features a floral pattern with prominent purple flowers against a washed-out green and white background, viewed at an angle that reveals subtle wrinkles, possibly on a bed, and the setting shows part of a pillow or another fabric in the top left corner. +9b492145f5e0471.png A folded bed sheet with a checkered pattern in light purple and white is placed on a woven mat with green and purple stripes, viewed from above within an indoor setting featuring a patterned floor. +e80cfb7698b6471.png The bed sheet features a repeating pattern of black floral designs on a light green background, with a textured appearance and a partial view overlaid against a second, ornate blue and white patterned fabric. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/beer_bottle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/beer_bottle_descriptions.txt new file mode 100644 index 0000000..7822470 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/beer_bottle_descriptions.txt @@ -0,0 +1,3 @@ +9973a91d2ec14d9.png A green beer bottle with a white label featuring a dark logo is resting at a downward angle between soft, dark-textured seats. +9379938ec5e24e6.png A brown beer bottle with a vibrant yellow label and blue accents is held at an angle, set against a plain indoor background with visible power outlets and a small candle. +1b8956f178d6478.png A translucent, amber-hued beer bottle with a short neck and green label lies horizontally on a light-colored countertop, with someone's hand wearing a dark bracelet, lightly gripping the cap against a backdrop of paper towels. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/beer_can_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/beer_can_descriptions.txt new file mode 100644 index 0000000..5a40f22 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/beer_can_descriptions.txt @@ -0,0 +1,3 @@ +e93efb59e47c4e5.png A beige and gold beer can with a red label and white text is lying horizontally on a wooden table cluttered with stacks of books and magazines, with a patterned carpet partially visible underneath. +60c6b2dd3aa047a.png A vibrant green and shiny blue can with white text lies on its side on a dark purple textured rug, surrounded by a bathroom setting featuring toiletries in a basket. +663a62dc46c14e5.png The beer can is a vibrant metallic blue with white text, lying horizontally on a smooth off-white surface, with its top facing left and displaying distinctive blue and white graphics. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/belt_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/belt_descriptions.txt new file mode 100644 index 0000000..d7009b6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/belt_descriptions.txt @@ -0,0 +1,3 @@ +b74d8486c8e449c.png A dark brown leather belt with a smooth texture is laid flat on a mottled beige surface, featuring a silver rectangular buckle and a prominent rivet beneath the buckle. +9c5331a086ca41d.png The belt appears black and thin, lying in an oval shape on a patterned brown and green fabric background, surrounded by distinctly printed textiles and a tiled floor. +96d1a5285faa42a.png The object appears to be a circular, rusty metal lid or component with a protruding knob and a hook, viewed from the side against a light-colored background with a patterned cushion above. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bench_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bench_descriptions.txt new file mode 100644 index 0000000..fb40542 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bench_descriptions.txt @@ -0,0 +1,3 @@ +b86e7e31918241f.png A dark, glossy piano bench with rectangular legs is seen from a low, front-facing angle, situated on a colorful geometric patterned rug, with a reflective floor and subdued lighting in the background. +5757bc3b667a472.png The bench features a tufted, light beige cushioned seat with dark wooden legs, set against a wooden floor and white cabinetry in a kitchen environment, viewed from a slightly elevated angle. +5131a87315974d2.png The bench appears to be a small, matte black wooden stool with a simple rectangular seat and visible grain texture, viewed from above, surrounded by a carpeted floor and miscellaneous laundry items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bicycle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bicycle_descriptions.txt new file mode 100644 index 0000000..5125e07 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bicycle_descriptions.txt @@ -0,0 +1,3 @@ +c14a8021909f473.png The bicycle is primarily green with black and white accents, featuring a smooth texture and a visible suspension coil, viewed from the right side against a light yellow wall and tiled floor, with distinct straight handlebars and a triangular frame. +ebbbcd2dd1f54d4.png This low-resolution image depicts a small, child-sized bicycle with pink and white coloring, equipped with training wheels, viewed slightly from the side in a room with wooden flooring and a plain white wall background. +17ccab61a8cc461.png The bicycle appears to be a dark-colored, possibly black, bike with a simple frame design, photographed from the side in an outdoor setting with a pink wall behind it, featuring a rear-mounted white bucket adding a makeshift utility function. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bike_pump_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bike_pump_descriptions.txt new file mode 100644 index 0000000..dc077c1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bike_pump_descriptions.txt @@ -0,0 +1,3 @@ +9ead98431c30454.png The bike pump features a slim, blue cylindrical body with a black handle and hose, resting horizontally on a glossy tiled floor with a cross-tile pattern. +0fe3f7a3fe9b404.png The bike pump is a slim, metallic silver cylinder with a black handle and hose, lying horizontally on a grey, striped carpet with a wooden floor edge visible, alongside a person in jeans and a polka-dot shirt. +c90eaf8dcce34b8.png The bike pump is predominantly blue with a white handle, positioned upright against a dark brown wall and resting on a red floor, featuring a retractable hose and metal foot panel, contrasted with the white and brown surroundings. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bills_money_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bills_money_descriptions.txt new file mode 100644 index 0000000..8dc0a97 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bills_money_descriptions.txt @@ -0,0 +1,3 @@ +2fea8b514bd14b7.png A greenish, rectangular paper bill with intricate patterns and visible numerical and text elements is centrally placed and angled on a dark, flat surface, surrounded by a partially visible cluttered environment with colorful textiles. +18c387ebd3444bb.png The image shows crumpled, light-colored banknotes with a pinkish hue stacked against a muted wall background, featuring a red, netted kitchen strainer attached to the wall beside them, under a window with dark, metal bars. +a892be0c60214f3.png A person is holding a slightly curled U.S. twenty-dollar bill with a portrait facing outward against a wooden surface background, showing a grayish-green hue and textured details despite the low resolution. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/binder_closed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/binder_closed_descriptions.txt new file mode 100644 index 0000000..714ba41 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/binder_closed_descriptions.txt @@ -0,0 +1,3 @@ +cfbb1058603b4af.png A person is holding an upright, metallic silver, smooth-textured binder on a cream countertop, with a wooden floor and a partially visible dining chair in the background. +512b71cecadc45c.png The closed binder is white with a pattern of multicolored polka dots, viewed from above on a tiled floor, with a partially visible dark fabric in the foreground. +97fab1b148684f5.png A light grey binder with a smooth texture is lying flat on a concrete floor at an angle, with no distinct markings or features visible against the uniformly rough background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/biscuits_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/biscuits_descriptions.txt new file mode 100644 index 0000000..beb77e5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/biscuits_descriptions.txt @@ -0,0 +1,3 @@ +0b6581d81b1944b.png Two round, golden-brown biscuits with a ridged texture are resting flat on a plain, light-colored surface, with small crumbs scattered nearby. +a99dfadb16df482.png The low-resolution image displays a collection of light brown, round biscuits with a slightly textured surface, partially visible from above inside a purple, foil-lined package, positioned on a white ledge near a green metal structure. +a1d5fb26f9684b1.png The item appears to be a dark brown, crinkled packaging of biscuits held at an angle by a hand, set against an indoor background featuring wooden flooring and a green potted plant with white blinds behind. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/blanket_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/blanket_descriptions.txt new file mode 100644 index 0000000..2ad5462 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/blanket_descriptions.txt @@ -0,0 +1,3 @@ +218bd93df0ab4da.png There is no blanket visible in the image; instead, there is a countertop with various kitchen items, including metal spoons, a hot plate, and a container. +b34926b7c437409.png A neatly folded pale mint-green blanket with subtle patterns is placed on a glass table, surrounded by a tiled floor and nearby household items like slippers and headphones. +ef128fdfecbd440.png The blanket appears to be a folded, plush, beige or taupe textured fabric, resting on the edge of a wooden countertop, in a kitchen-like setting with spice jars and utensils in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/blender_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/blender_descriptions.txt new file mode 100644 index 0000000..1965dd0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/blender_descriptions.txt @@ -0,0 +1,3 @@ +7c1ad6a5a421440.png A person is holding a silver and black compact blender with a jar attached, viewed from an overhead angle in a kitchen setting, with a countertop featuring a toaster and various kitchen items in the background. +2bb52d2ce522473.png A white hand blender with a slim, elongated design lies horizontally on a dark, floral-patterned fabric, featuring a long power cord and a distinctive narrow blending arm. +4ecaad4a642f44f.png The blender is white with a transparent glass jar lying on its side on a speckled beige countertop in a kitchen setting, with wooden cabinets and assorted kitchen utensils in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/blouse_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/blouse_descriptions.txt new file mode 100644 index 0000000..fc22fe9 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/blouse_descriptions.txt @@ -0,0 +1,3 @@ +2e79e976f01d4bb.png A coral-colored blouse with a smooth texture is laid flat on a dark table, featuring ruffled details along the neckline and situated in a room with a tiled floor and various household items around. +9a5d1b3e2f21433.png The blouse is predominantly blue with a smooth texture, crumpled and positioned on a round pinkish-white surface, viewed from above in a tiled room with pale tiles. +8e44aed6b14b488.png A crumpled, dark-colored blouse with visible ornate patterns near the edges is placed on a hard, gray cement floor, viewed from above. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/board_game_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/board_game_descriptions.txt new file mode 100644 index 0000000..b5c0deb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/board_game_descriptions.txt @@ -0,0 +1,3 @@ +c5889449613a4da.png The board game box features a red and yellow color scheme with landscape artwork, positioned on a textured, earth-toned tiled floor in a bathroom setting with visible toilet and cleaning supplies. +59a2375776d74d0.png A brightly colored Monopoly box with a green background and red sides, viewed from an angled top-down perspective, lies on a carpeted floor, featuring distinct game images like dice and a race car. +54d4ecf39be946d.png The image shows a red and white board game box titled "Dal Negro" resting on a marbled gray tiled surface near the edge of a white curved basin, with a shadowy environment indicating indoor lighting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/book_closed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/book_closed_descriptions.txt new file mode 100644 index 0000000..d88f459 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/book_closed_descriptions.txt @@ -0,0 +1,3 @@ +8bec7ec3a870425.png The closed book, titled "Doña Bárbara" with a dark cover featuring subtle textural patterns, is positioned on a white toilet lid with a tiled bathroom floor and a glimpse of clothing and towels in the background. +4eeebe58568f4d5.png The book is positioned flat on a beige carpet, featuring a primarily white cover with black and light blue text, and is surrounded by a simple indoor environment with visible white cables. +77b691524eb44c8.png The image shows a black and red book with white text being held over a bathroom sink with soap dispensers, featuring a partially visible apple on the cover and a slight reflection in the mirror. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bookend_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bookend_descriptions.txt new file mode 100644 index 0000000..6c6b23a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bookend_descriptions.txt @@ -0,0 +1,3 @@ +89ad21f2c0fb494.png A triangular white bookend viewed from above features intricate black floral designs and is situated on a beige carpet with visible shadows and various small objects around. +c411cabe9e7b479.png A metallic, rust-colored bookend with an intricate twisted design and a looped structure is positioned at a three-quarter angle on a light wooden surface, with a blurred beige background and a small bright yellow object adjacent to its base. +5b2167ed86e64c2.png The bookend is orange, ribbed in texture, and L-shaped, held upright by a hand against a background of a bathroom featuring a blue bathtub and tiled floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/boots_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/boots_descriptions.txt new file mode 100644 index 0000000..99fc6ac --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/boots_descriptions.txt @@ -0,0 +1,3 @@ +1fc29ec613fd4e9.png The boots are dark with light gray inner linings, positioned upright on a brown mat within a tiled bathroom setting, and have a high-ankle design with the tops folded outward. +5298c3be4d2c4c2.png The boots are predominantly black with vibrant pink and blue floral patterns, shown in an upright position on a textured brown carpet against a plain white wall, with thick, rugged rubber soles visible from the slightly angled viewpoint. +ba0de00afb42463.png A pair of black, suede-textured boots, viewed from a side angle, are placed on a wooden floor in a bathroom setting, with distinguishing feature of a simple, rounded toe design. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bottle_cap_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bottle_cap_descriptions.txt new file mode 100644 index 0000000..a2d699f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bottle_cap_descriptions.txt @@ -0,0 +1,3 @@ +e7030d6a0f684a7.png The bottle cap appears to be a textured, light-colored plastic viewed from the side against a dark, pebble-like textured background. +0aa33a1268ac4c5.png The bottle cap is black with a smooth texture, featuring a metallic loop on one side and a visible internal threading, displayed upright on a light wooden surface with a subtle pink object in the upper right background. +0ecb2fb8fb9641f.png The bottle cap is metallic with a weathered, silver texture and a circular, indented shape, seen from a slightly overhead angle against a marbled beige surface, distinct for its worn appearance and the presence of a nearby floss container. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bottle_opener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bottle_opener_descriptions.txt new file mode 100644 index 0000000..d21c495 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bottle_opener_descriptions.txt @@ -0,0 +1,3 @@ +bd11f97d3eff4c4.png The object is a white plastic and metal can opener with a black rubberized handle, viewed from above against a light wood surface with plastic wrap boxes in the background. +67c65063314b4bf.png The bottle opener has black rubberized handles and a metallic head, laying flat on a light gray fabric couch with a metal hinge visible. +d9f21c2f290e4a4.png The bottle opener has a black metal framework with a colorful "Welcome to Fabulous Las Vegas Nevada" design in the center, set against a plain white paper backdrop on a dark surface, viewed from above. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bottle_stopper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bottle_stopper_descriptions.txt new file mode 100644 index 0000000..cdaa0d7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bottle_stopper_descriptions.txt @@ -0,0 +1,3 @@ +6ed1310c9af14be.png The bottle stopper has a golden, textured handle resembling a twisted rope, with a metallic sheen, and is viewed from an angle showing its rubber rings; it is set against a light-colored kitchen countertop with white tiled walls in the background. +6e7fee35a6f74cc.png The bottle stopper features a metallic base with a ribbed black seal and a decorative top shaped like a dark green, translucent flower, set against a wooden countertop with glass jars in the background. +235304647fac449.png A bronze-colored sculpted beetle-shaped bottle stopper with a shiny texture is viewed from a slightly above angle against a beige carpeted background, perched on a metallic furniture leg. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/box_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/box_descriptions.txt new file mode 100644 index 0000000..93b7379 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/box_descriptions.txt @@ -0,0 +1,3 @@ +e9d3024ba62f4e3.png The box, seen from a slightly elevated side angle, is orange with bold, colorful text and graphics; it rests on a tiled floor with sunlight casting shadows from the open lid on one end. +73acdc60626046b.png The box is rectangular with a vibrant gradient of yellow to orange featuring swirled patterns and a prominent label at its center, placed on a wooden stool in a kitchen with red and white cabinets visible in the background. +fdb55c8f554846a.png A rectangular white and blue box with visible printed text is being held on a toilet lid in a bathroom environment, with a trash bin containing empty toilet paper rolls nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bracelet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bracelet_descriptions.txt new file mode 100644 index 0000000..d630669 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bracelet_descriptions.txt @@ -0,0 +1,3 @@ +4eb35f5a5dca4e8.png The bracelet, seen from a top perspective nestled in a textured gray quilt, features a metallic gold finish with intricate beaded detailing and symmetrical patterns. +3e9b4818facd447.png The bracelet is a metallic gold, twisted rope-style piece with a reflective texture, held upright in a hand against a wooden door with a shiny knob in the background. +8cb06fb222d148f.png A silver, textured bracelet featuring embedded stones is held horizontally by a hand over a smooth, reflective white surface, with blurred containers in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bread_knife_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bread_knife_descriptions.txt new file mode 100644 index 0000000..0fc5e29 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bread_knife_descriptions.txt @@ -0,0 +1,3 @@ +b70a4e615015456.png The bread knife features a dark purple handle and blade with a serrated edge, viewed from the side against a beige wall and carpeted floor. +28af5929f4914c3.png The bread knife has a black, ergonomic handle and a sleek, metallic blade with a subtle serrated edge, positioned diagonally on a dark counter surface next to a striped cloth, with part of a white appliance visible in the corner. +2c3d9ae86dfa498.png The image shows a black-handled knife with a shiny, possibly serrated blade lying flat on a light-colored countertop in a kitchen setting, with visible wooden chairs and a water jug in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bread_loaf_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bread_loaf_descriptions.txt new file mode 100644 index 0000000..8fae334 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bread_loaf_descriptions.txt @@ -0,0 +1,3 @@ +ce759a9975ec474.png The bread loaf appears light brown with a smooth texture, partially enclosed in a clear plastic bag, placed on a kitchen countertop with a hand interacting with it, and surrounded by a colorful item and kitchen items in the background. +af992b17881c4c8.png The bread loaf, packaged partially in a clear plastic bag with colorful branding, appears rectangular with a light brown hue and a smooth, even texture, resting horizontally on a dark fabric surface with a teal wall and small pink table in the background. +e8fbf1874ff2496.png The bread loaf appears golden brown with a smooth, slightly glossy texture, viewed at an angle on top of a white laundry appliance, partially wrapped in a yellow plastic bag with indoor laundry items in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/briefcase_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/briefcase_descriptions.txt new file mode 100644 index 0000000..4f88d54 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/briefcase_descriptions.txt @@ -0,0 +1,3 @@ +ca9c81c976ff468.png A silver metallic briefcase with a rugged texture and reinforced corners is positioned upright on a dark bedspread, surrounded by white and patterned pillows and a plush teddy bear in the background. +c9501fe6104c462.png A rectangular, navy blue plastic briefcase with rounded edges and a central colorful sticker is viewed from above, resting on a light gray tiled floor next to a red mattress edge and some scattered cables. +0f2122eb14914c9.png A black briefcase with a smooth texture is seen from a slightly elevated viewpoint on a bed covered with gray floral-patterned bedding, surrounded by scattered household items and papers. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/brooch_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/brooch_descriptions.txt new file mode 100644 index 0000000..c6b40ce --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/brooch_descriptions.txt @@ -0,0 +1,3 @@ +a21e04383f0f4a8.png The brooch appears to have a dark, textured surface with a prominent golden or light-colored oval element, resting at an angle on a smooth, light-colored floor. +21fca286e57142a.png The brooch has a metallic silver color with a floral design, featuring a textured surface with raised elements, held between fingers against a black matte background. +2db7be249c72404.png The brooch is metallic with a shiny, reflective surface, featuring a small, detailed central design, placed on a white, smooth surface with a soft shadow visible on the left side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/broom_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/broom_descriptions.txt new file mode 100644 index 0000000..5c9e9cf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/broom_descriptions.txt @@ -0,0 +1,3 @@ +47465c39204f49f.png This broom features natural brown bristles with a slightly frayed texture, bound together by blue and black bands, and is lying flat on a light-colored marbled floor with a wall in the background. +0791e9f1199a4d2.png A broom with tan bristles and a blue plastic dustpan rests diagonally on a light wood floor, with a tag attached to the blue handle. +c00dacae73ab44c.png A blue-bristled broom with a wooden handle is lying diagonally across a tiled kitchen floor, surrounded by cream-colored cabinetry and a beige dishwasher, with snacks visible on a countertop in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/bucket_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/bucket_descriptions.txt new file mode 100644 index 0000000..38c3dc9 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/bucket_descriptions.txt @@ -0,0 +1,3 @@ +4fabfee48e3142f.png A white plastic bucket with black text and a handle is lying on its side on an ornate, patterned cloth-covered table in a richly decorated room with upholstered chairs and wooden furniture in the background. +51b1e6313a2541d.png A pink plastic bucket with a matte texture is positioned upright on a carpeted floor near a table leg, against a bright blue backdrop, amidst miscellaneous clutter including a purple object and an electrical outlet. +32c88f13fc0f430.png The image shows a plain, smooth, bright red plastic bucket with a cylindrical shape viewed from a slightly elevated angle, placed on a speckled, gray tiled floor adjacent to a cream-colored wall, with a small dark spot visible on the bucket's side and various items partially visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/butchers_knife_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/butchers_knife_descriptions.txt new file mode 100644 index 0000000..0d57ec1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/butchers_knife_descriptions.txt @@ -0,0 +1,3 @@ +e3a321193247417.png The butcher's knife has a multicolored metallic blade with a smooth finish and an orange handle, held upright by a hand against a beige indoor wall with framed pictures, and is partially illuminated, showing its glossy surface. +a9fae5d09e51494.png The butcher's knife has a smooth, reflective silver blade and a black handle with three visible metal rivets, photographed from above on a white background with a red patterned design and some colored illustrations. +020bbb4806d2466.png The image shows a purple-handled butcher's knife with a textured black blade cover held vertically over a coarse carpeted floor, emphasizing its clean, sleek lines and contrasting textures. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/butter_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/butter_descriptions.txt new file mode 100644 index 0000000..f06a4de --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/butter_descriptions.txt @@ -0,0 +1,3 @@ +145360b3016e4e0.png A rectangular block of butter is wrapped in white paper with faint blue markings on a textured, dark brown surface, viewed from an angled top perspective. +3cbb6d183ec8499.png The object is a white, rectangular package with printed text and images on the sides, standing upright on a marble surface with a tiled wall background. +c45181cb9d2b403.png A small, rectangular, cream-colored block wrapped in paper sits with its folded seams visible, placed on a wooden surface with visible grain patterns. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/button_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/button_descriptions.txt new file mode 100644 index 0000000..79efd43 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/button_descriptions.txt @@ -0,0 +1,3 @@ +eebb2c8da20146f.png A small, smooth black button with a slightly domed shape is viewed from above, resting on a plain white surface with subtle shadowing around its edges. +adae0e8083fa47b.png The button is pearl white with a smooth, glossy texture, viewed straight-on and attached to a blue and white vertical striped fabric background, with its four-hole design and sewn threads clearly visible even in low resolution. +3f1c3b637ef24ab.png The button is translucent with a smooth finish, viewed from a close-up angle, attached to a gray and white striped fabric, and is held against a blurry background of hanging clothes. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/calendar_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/calendar_descriptions.txt new file mode 100644 index 0000000..7e36f4e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/calendar_descriptions.txt @@ -0,0 +1,3 @@ +389f9e4192a74e8.png The calendar is viewed head-on, featuring vibrant red flowers at the top with a white background displaying black and red text and numbers for November, against a plain light wall. +0183913608034f9.png A low-resolution image shows a white calendar lying on a wooden floor, viewed from above at an angle, with visible monthly grid layout and a small colored picture in the top left corner, surrounded by soft brown and beige furnishings. +231688aff56f4c4.png The calendar features a vibrant red header with blue text on a glossy surface, viewed frontally against an orange textured wall, showcasing a bold red and black numerical display organized into a gridded format for each month of 2019. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/can_opener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/can_opener_descriptions.txt new file mode 100644 index 0000000..e691857 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/can_opener_descriptions.txt @@ -0,0 +1,3 @@ +5d4a2be854cf468.png The can opener has a metallic silver body with a black handle, positioned diagonally on a smooth, cream-colored sink surface, showcasing a wheel blade attached to a small gripping mechanism. +b08bb815f20e432.png The can opener appears metallic with a shiny texture, held in a hand at an angle showing its multi-functional design, set against a wooden tabletop background with a reflective surface and a cylindrical object nearby. +fbff309c493f439.png The can opener, seen from a side view, features a metallic body with white, likely plastic handles, held against a dimly lit interior background with a window, air conditioner, and patterned floor tiles. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/candle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/candle_descriptions.txt new file mode 100644 index 0000000..aba415d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/candle_descriptions.txt @@ -0,0 +1,3 @@ +a8081f8136d6475.png The candle is a solid, glossy red cylinder held at a slight angle over a glass table with books and a reflective surface, against a dimly lit room background. +356c14b093d0445.png A two-toned cylindrical candle with a white top and dark base lies horizontally on a patterned pillow on a rumpled bed with a light purple throw blanket, adjacent to folded clothes. +d7e9cbaf2cc24da.png A tall, slender off-white candle with a slightly uneven texture is vertically oriented in a dark, worn, and patchy concrete environment, displaying a curved wick at its top. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/canned_food_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/canned_food_descriptions.txt new file mode 100644 index 0000000..9e068b0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/canned_food_descriptions.txt @@ -0,0 +1,3 @@ +373b174c17d8406.png The image shows a hand holding a can with a predominantly red label featuring white nutritional information on one side, against a countertop background next to a sink. +2fe542aaf3854e4.png A slightly tilted can of mushrooms with a white label featuring an image of mushrooms, set against a dark backdrop with a glimpse of lime green surface and objects below. +6f46a919646a450.png The can, primarily featuring bright yellow and green hues with a fruit cocktail design on its label, is viewed from an angled lateral perspective against a dark wooden table, held by a hand. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/cd_case_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/cd_case_descriptions.txt new file mode 100644 index 0000000..23d916c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/cd_case_descriptions.txt @@ -0,0 +1,3 @@ +eb143c11cf024ad.png The CD case is seen from a top-down angle, has a dark border and features a background with a gradient mix of green and brown tones, with visible yellow and white text on the front, placed on a beige textured surface. +21b21a118249437.png The CD case is clear and rectangular, viewed from a top-down angle against a white tiled floor with beige patterns nearby, reflecting light that gives it a slightly glossy appearance. +58ad35f34a414dc.png The CD case appears to be a standard jewel case with a predominantly white cover featuring a colorful graphic design and text, placed on a blue carpeted floor at a low angle, near a fan and wooden furniture, creating a casual indoor setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/cellphone_case_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/cellphone_case_descriptions.txt new file mode 100644 index 0000000..3b46348 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/cellphone_case_descriptions.txt @@ -0,0 +1,3 @@ +cf3fd903a88f4f3.png A black cellphone case with a smooth texture is held horizontally over a floral-patterned surface, showing the camera cutout and a partial glimpse of a blue cable in the background. +982074426ce346f.png The cellphone case is transparent with a smooth, glossy texture and is held upright in a hand against a background of a wooden door and tiled floor in a domestic interior. +ad03d0d1ac7642f.png The cellphone case appears to be a translucent brown with a smooth texture, lying flat on a gray concrete floor alongside a white electric plug and cable. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/cellphone_charger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/cellphone_charger_descriptions.txt new file mode 100644 index 0000000..6c40ac0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/cellphone_charger_descriptions.txt @@ -0,0 +1,3 @@ +80ddb3bfbfaf459.png A black cellphone charger with a long, coiled cable is resting on a textured, greenish-gold couch surface beside some blue and white fabric. +4904146071e14f1.png A black cellphone charger with a smooth texture lies flat on a round, patterned cushion, featuring concentric circles, atop a metal-framed chair with brown tiled flooring and a background of a white lamp. +9ef045ca7661476.png The image shows a white square-shaped cellphone charger with a glossy texture held in hand, having a connected thin white cable, against a background of a light-colored countertop and a partially visible paper towel. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/cellphone_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/cellphone_descriptions.txt new file mode 100644 index 0000000..c6df98a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/cellphone_descriptions.txt @@ -0,0 +1,3 @@ +180c4be6b5224fd.png The cellphone appears to be black and glossy with a visible circular camera housing on the back, viewed from a side angle against a background of white paneled walls and dark tile flooring, held upright in a hand. +9d5a9aa691d2452.png A silver smartphone with a smooth texture is lying flat on a gray, concrete surface, viewed from a slightly elevated angle, displaying a web browser open to an image search. +fc12ccc097bf44e.png The cellphone, seen from a slightly angled back view, is metallic gray with a glossy finish, featuring a camera lens at the top and positioned against a zigzag-patterned pillow on a soft fabric background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/cereal_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/cereal_descriptions.txt new file mode 100644 index 0000000..0d76d9d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/cereal_descriptions.txt @@ -0,0 +1,3 @@ +c4dc27b48849475.png A white bowl containing small, multicolored cereal pieces with a slightly irregular texture is situated on a cluttered dorm room desk alongside a closed box labeled "Kellogg's Bran Flakes", viewed from a slightly elevated angle. +51774bd2ecf540d.png A person's hand rests on a box with a vertical orientation against a textured greenish surface, showing a white label with text and nutritional information, adjacent to a black remote control on the right. +6fc331d6d94c477.png A box of crunchy raisin bran cereal, featuring a low-angle view of the packaging with an image of a bowl filled with brown, flaky cereal pieces and dark raisins, set against a blue and white background on a shelf. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/chair_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/chair_descriptions.txt new file mode 100644 index 0000000..5201544 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/chair_descriptions.txt @@ -0,0 +1,3 @@ +9daca1a0fde9450.png The chair is black with a smooth, matte texture, viewed from the side against a background featuring a storage shelf with white bins and a door, and it has a slightly curved backrest and seat on a metallic base. +2797c5e370084ef.png The chair is a lightweight, white plastic piece with a slatted backrest, seen from a side angle lying on its side in a tiled room with shoes and a shelf in the background. +b9543d5d04e9407.png A plush, beige recliner with a tufted design is viewed at an angle in a living room setting, distinguished by a zebra-patterned throw blanket draped over the seat. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/cheese_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/cheese_descriptions.txt new file mode 100644 index 0000000..e67d93f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/cheese_descriptions.txt @@ -0,0 +1,3 @@ +47918730d97746f.png A wrapped, cylindrical cheese package with green and red labeling is lying flat on a light beige tiled floor, showing slight reflective glare over its plastic covering indicating a smooth texture. +59f3952b74ea416.png A packaged block of cheese with a predominantly red and white label featuring a boy's face and a sandwich image, set against a bright, blurry background with a wooden base. +0e82ff88360b40a.png A wedge of yellow cheese with a smooth texture sits on a black plastic dish in a bathroom sink, with a chrome faucet and white porcelain details in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/chess_piece_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/chess_piece_descriptions.txt new file mode 100644 index 0000000..b5b6449 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/chess_piece_descriptions.txt @@ -0,0 +1,3 @@ +5e1811aabdd3445.png The chess piece is a light-colored, textured rook held upright in a hand, viewed from a slight angle against a tiled surface with bread in the background. +7c4459d46745475.png A small, smooth, and matte yellow chess piece resembling a queen is held horizontally in a hand against a dimly lit background, with visible grooves and a cross-like top viewed from an elevated angle. +e39b9b32d15d459.png A light brown wooden chess king is laying on its side on a white tiled floor, displaying a crown with a cross at the top and visible grooves along its shaft. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/chocolate_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/chocolate_descriptions.txt new file mode 100644 index 0000000..847501b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/chocolate_descriptions.txt @@ -0,0 +1,3 @@ +2a49c382ff34418.png The chocolate is wrapped in a shiny red foil with gold accents and text, held in a person's hand against a richly patterned, multicolored carpet background. +49f0a094058a4b7.png The chocolate is wrapped in a dark blue foil with a bright yellow gradient, lying flat on a textured dark surface next to a shiny metallic scoop and some paper, creating a juxtaposition of colors and materials. +1a673a3b651d4ba.png A small, rectangular chocolate wrapper with a partially visible bright red label featuring distinct black and white text rests on a weathered wooden surface amidst scattered kitchenware, under low lighting conditions. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/chopstick_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/chopstick_descriptions.txt new file mode 100644 index 0000000..b8e9054 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/chopstick_descriptions.txt @@ -0,0 +1,3 @@ +20bbeae3642b454.png A single metallic chopstick with a smooth texture is laid flat on a dark-brown leather sofa background, with distinctive reflective highlights running along its length. +9e06ce04aa5b4d7.png A light-colored, smooth chopstick lies horizontally on top of a white cardboard box with printed text, set on a dark wooden table beside a few papers and a water dispenser in the background. +6e1f7ed357db488.png The chopstick appears cream-colored with a smooth texture, held horizontally by a hand in a bathroom environment with visible tiles, a trash bin, a sink, and a textured mat. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/clothes_hamper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/clothes_hamper_descriptions.txt new file mode 100644 index 0000000..3ccfcbf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/clothes_hamper_descriptions.txt @@ -0,0 +1,3 @@ +d1a9c5ba1dc8458.png The clothes hamper is a cylindrical container with alternating horizontal pink and white stripes, slightly tilted on a dark wooden floor, and partially filled with various brightly colored clothes spilling over the edge, next to a white wall and a partially open door. +d5f42d94ea1141c.png The clothes hamper is green with a grid-like texture, viewed from a side angle in a carpeted room with a closed white door and some laundry spilling over its top. +e798045b5f3b409.png A bright red cylindrical clothes hamper with a smooth surface is centrally positioned on a tiled floor in a room with brown patterned curtains and adjacent furniture. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/clothes_hanger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/clothes_hanger_descriptions.txt new file mode 100644 index 0000000..390bfb7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/clothes_hanger_descriptions.txt @@ -0,0 +1,3 @@ +fc56509d4e4a4b6.png A black velvet clothes hanger with a shiny metal hook is resting horizontally on a textured white quilt, in front of a wooden wall with a large framed mirror and a partially closed window in a softly lit bedroom setting. +7e0748ca6799427.png A white plastic clothes hanger with a smooth surface is hanging in a vertical position, set against a background featuring a beige curtain and wooden furniture, with a colorful clothing pattern visible below. +d38d6d24a97c443.png The clothes hanger is beige with a smooth texture, viewed from the side laying flat, against a carpeted floor background, with a visible hook at one end. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/coaster_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/coaster_descriptions.txt new file mode 100644 index 0000000..bdda1ae --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/coaster_descriptions.txt @@ -0,0 +1,3 @@ +c296e7f1261a400.png The coaster is a vibrant purple color with an ornate, scalloped edge design and is held at an angle against a soft, carpeted background with a wooden floor partially visible. +c741ab6a0b1748a.png The coaster has a white surface with abstract multicolored patterns, viewed from a slight side angle against a wooden tabletop background, held in a hand with visible shadows enhancing its rectangular shape and thin profile. +b8178ff5b1534a8.png The coaster is a light brown cork material, viewed upright in a vertical position, with a hand holding it against a wooden surface in a room with a framed illustration in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_beans_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_beans_descriptions.txt new file mode 100644 index 0000000..e939987 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_beans_descriptions.txt @@ -0,0 +1,3 @@ +78c4dcc9102147c.png A single, medium-brown coffee bean with a smooth texture rests on a flat, gray stone-like surface, exhibiting a visible central groove and subtle highlights. +dfe74a7758d4400.png The image shows a hand holding a jar with a brown lid and a partially visible label against a plain indoor background with tiled flooring. +5c06d6e05b014b4.png A single dark brown, glossy coffee bean with a prominent center groove is situated on a flat, light beige surface, casting a small shadow to one side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_french_press_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_french_press_descriptions.txt new file mode 100644 index 0000000..13a6091 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_french_press_descriptions.txt @@ -0,0 +1,3 @@ +a0ea82a98f28447.png The coffee French press is cylindrical with a transparent body and a grid-like texture, viewed in a horizontal position on a wooden floor, featuring a black base and lid. +eda2eae6b6014b8.png The coffee French press has a transparent glass body with black accents, viewed from a slightly tilted angle on a wooden kitchen table, surrounded by warm-toned wood furnishings and wallpaper in the background. +a6afba3051af448.png The coffee French press is seen from a side angle, featuring a transparent cylindrical glass body with a black handle and lid, resting on a textured beige carpet. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_grinder_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_grinder_descriptions.txt new file mode 100644 index 0000000..d6c8c37 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_grinder_descriptions.txt @@ -0,0 +1,3 @@ +5fa406f4076948f.png The coffee grinder held at an angle in a bathroom setting has a sleek black and metallic cylindrical body with a transparent top container, visible against a tiled floor, a white bathtub, and a nearby trash bin. +8f90ceda5a5d4de.png A silver and black coffee grinder with a clear plastic top is positioned facing forward on a granite countertop, set against a tiled kitchen backsplash, with a small, round, orange object beside it. +3827714bc0d3422.png The low-resolution image shows a handheld cylindrical coffee grinder with a smooth silver body and a transparent lid, positioned horizontally in a person's hand against a backdrop of a dark wooden table and beige and maroon cushions. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_machine_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_machine_descriptions.txt new file mode 100644 index 0000000..f2fd2ca --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_machine_descriptions.txt @@ -0,0 +1,3 @@ +934425769fbb45b.png The coffee machine is white with a matte texture and a sleek, smooth design viewed from an angled top-down perspective, positioned on a brown speckled countertop against a tiled backsplash, with identifiable features like a front ventilation grill and control buttons on top. +f133e0aef6974e2.png A maroon coffee machine with metallic accents, positioned on a countertop against a beach-themed backsplash, features visible buttons and knobs on its front with a digital display above the brew area. +1e80ebea50824ec.png The coffee machine is a glossy black with a transparent pot, positioned on a wooden countertop in a kitchen featuring turquoise wooden paneling and adjacent to a metal sink and stove. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_table_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_table_descriptions.txt new file mode 100644 index 0000000..9da296e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/coffee_table_descriptions.txt @@ -0,0 +1,3 @@ +58df159aa53449f.png The coffee table is a black, rectangular, and wood-textured surface with several items scattered on top, viewed from an angle that includes a living room environment with a couch and floor showing clear wood-patterned flooring. +6ce9ca6b5bf745f.png The coffee table is a dark-toned rectangular structure with a smooth surface and metal legs, viewed from a side angle amidst a cozy living room with a plush sectional sofa, decorated cushions, a patterned rug, and hardwood flooring. +332c72126e934fe.png The object appears to be a rectangular, light brown wooden surface with a smooth texture, viewed from an overhead angle, placed against a plain cream wall, with a crumpled white cloth on the left and a transparent blue-capped bottle on the right, lacking distinct detailing due to low resolution. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/coin_money_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/coin_money_descriptions.txt new file mode 100644 index 0000000..b7894bf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/coin_money_descriptions.txt @@ -0,0 +1,3 @@ +3b3d9e32383c4ad.png The coin appears metallic with a silver hue, featuring a raised profile likely of a person in profile view, held between fingers against a plain, light-colored curtain backdrop. +d1fd90e5aedc4c5.png The coin appears bronze in color with a slightly reflective texture, viewed from an overhead angle on a textured, light-brown surface, with indistinct details due to its small size and low resolution. +919ed8a665cb4ac.png The image depicts a person holding a silver-colored coin with a smooth texture and slight edge beveling, viewed in a vertical upright position against a plain, light-colored surface on a table with scattered items including a comb and makeup brush nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/comb_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/comb_descriptions.txt new file mode 100644 index 0000000..6a05dc9 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/comb_descriptions.txt @@ -0,0 +1,3 @@ +67500341ef584ea.png A black plastic comb with fine, straight teeth is being held horizontally by a hand in a kitchen, featuring a tiled floor, wooden cabinetry, and a refrigerator in the background. +70d6d46d37984e0.png The comb is metallic with a shiny silver finish, presented horizontally and held by a hand, set against a kitchen counter with paper towels and a green mug in the background. +ab122aba726249d.png The comb is black with a pink ribbed handle, lying flat on a white desktop next to a laptop, with a distinct section designed for gripping. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/combination_lock_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/combination_lock_descriptions.txt new file mode 100644 index 0000000..8c76ac3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/combination_lock_descriptions.txt @@ -0,0 +1,3 @@ +64b1e7747e8945f.png The combination lock is silver with a metallic sheen, seen from a side angle on a cluttered wooden surface with toys and a photo-covered wall in the background, featuring a large dial and a shiny curved shackle. +02468396b3a94b2.png The combination lock is silver with a black dial, resting flat on a beige-colored countertop next to a silver faucet and white sink, with distinct numerals visible despite the low resolution. +624d34c4fed3467.png The combination lock is metallic blue with a white-dial face, showing numbers and notches in a top-down view, placed on an off-white sheet with a dark desk and keyboard in the background, and it is accompanied by two keys attached to a small white tag. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/computer_mouse_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/computer_mouse_descriptions.txt new file mode 100644 index 0000000..5883ab4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/computer_mouse_descriptions.txt @@ -0,0 +1,3 @@ +bdaf714b13e1454.png The computer mouse is blue with a matte texture, viewed from a top-down angle on a metallic surface, featuring a black scroll wheel and the Logitech logo printed in white. +55cfd6594e614dd.png The computer mouse is black with a smooth texture and a visible logo, viewed from above on a floral-patterned tablecloth beside a laptop, glass jug, and fruit. +5a1563a476fd4d9.png A black computer mouse with glowing red accents and a distinctive logo on top is viewed from a high angle, placed on a dark mouse pad with a dimly lit desk environment featuring figurines in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/contact_lens_case_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/contact_lens_case_descriptions.txt new file mode 100644 index 0000000..300b425 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/contact_lens_case_descriptions.txt @@ -0,0 +1,3 @@ +c85a8eb80e8d448.png A white, ribbed contact lens case is seen from a slightly elevated side view, resting on a worn, textured metallic surface with scattered paint specks in the background. +923dc7f1edae4b6.png The contact lens case features a turquoise blue lid with a ribbed texture seen from a side angle, held against a blurred indoor background with a beige carpet and a dark fireplace enclosure. +ec5b99bc47e142d.png A small, dual-sided cylindrical contact lens case with a white base and opaque purple lid, held at an angle by a hand over a speckled granite countertop, against a blurred bathroom background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/cooking_oil_bottle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/cooking_oil_bottle_descriptions.txt new file mode 100644 index 0000000..cb0536a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/cooking_oil_bottle_descriptions.txt @@ -0,0 +1,3 @@ +8d0569c1dfd64c3.png A dark green, textured bottle with a green cap is held upright next to a wooden bed frame, positioned in a carpeted room with quilted bedding and white closet doors in the background. +dd6955d7502a45d.png The cooking oil bottle, viewed from above, is transparent with a pale yellow liquid inside, featuring a yellow cap, set against a light brown tiled floor with white paint or powder markings scattered around. +45f0a3fe3f124f4.png A transparent plastic bottle lying horizontally on a flat, reddish-brown surface contains light amber liquid and features a yellow cap with vertical grooves on its body. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/cork_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/cork_descriptions.txt new file mode 100644 index 0000000..ec9b4ed --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/cork_descriptions.txt @@ -0,0 +1,3 @@ +69868075bc6f4ed.png The cork is a light beige color with darker brown generic markings, held between fingers with visible ridges, set against a vividly colored background featuring lemons and leaves. +00536e86f1bf450.png A cylindrical cork with a warm, light brown hue and textured surface is positioned perpendicular to a hand holding it against a multicolored fabric background. +ef9bc41de6554c6.png A hand holds a cylindrical cork with a light tan, mottled texture, attached to a dark base, positioned in front of a patterned fabric backdrop with blue and brown hues. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/cutting_board_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/cutting_board_descriptions.txt new file mode 100644 index 0000000..db0b721 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/cutting_board_descriptions.txt @@ -0,0 +1,3 @@ +416386d8c69d465.png The cutting board is a small, square, light brown block with a rough texture and a prominent circular discoloration at its center, viewed from above against a dark, uneven surface. +3fdc765874464f0.png A worn white cutting board with a handle, exhibiting numerous knife scratches and slight discoloration, lies flat on a brown countertop beside some white and blue containers, with a wooden floor and kitchen cabinets partially visible in the background. +a3bbee57d80d411.png A small, blue plastic cutting board with a handle cutout is placed flat on a beige cushion, surrounded by a dark navy-blue sofa and a tiled floor visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/deodorant_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/deodorant_descriptions.txt new file mode 100644 index 0000000..703d20c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/deodorant_descriptions.txt @@ -0,0 +1,3 @@ +3d6edb35922e435.png A beige stick deodorant with a transparent cap, viewed from the top at a slight angle on a beige countertop with visible dirt and a partially readable label on its flat side. +25bddc4e4b584d4.png The deodorant has a blue plastic cap and base with a transparent middle section revealing the product inside, standing upright on a tiled bathroom floor in front of a closed door. +7f1d8052bd224f7.png A red, cylindrical deodorant stick with a blue and white label is held in an outstretched hand against a carpeted background with scattered gym equipment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/desk_lamp_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/desk_lamp_descriptions.txt new file mode 100644 index 0000000..1f0aeed --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/desk_lamp_descriptions.txt @@ -0,0 +1,3 @@ +842fa9f030604d8.png The desk lamp is matte black with a conical shade pointing downward, set against a cluttered wooden desk with books and papers in a dimly lit room. +015f9b63030648b.png A weathered red and white desk lamp with a curved neck is positioned upright on a textured concrete surface against a backdrop of green tarpaulin and leafy vegetation, displaying a circular base and a distinct metallic holder. +7c935d5343504f8.png A black, glossy desk lamp with a silver flexible neck and a conical lampshade is lying horizontally on a beige and gray carpet with abstract patterns, highlighting its smooth, reflective surface and compact base. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/detergent_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/detergent_descriptions.txt new file mode 100644 index 0000000..c296497 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/detergent_descriptions.txt @@ -0,0 +1,3 @@ +d5d4579f03be4d2.png The detergent container is a deep blue bottle with a silver cap, standing upright on a light beige, tiled floor, with part of a red object, possibly a handle or wheel, partially visible in the foreground. +8b356eed4bf14e3.png A tall, slender bottle containing bright yellow liquid, capped with a blue top, is placed upright on a tiled floor with a shelf in the background; the partially visible label and the reflective floor add a touch of subtle sheen. +099013e091f547c.png The detergent package is predominantly blue with red accents, displaying a glossy plastic texture, lying flat on a white toilet seat against a tiled floor with blue and gray geometric patterns, with a red storage caddy partially visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/dish_soap_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/dish_soap_descriptions.txt new file mode 100644 index 0000000..a26e93e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/dish_soap_descriptions.txt @@ -0,0 +1,3 @@ +a8f24bf8389c478.png The dish soap is in a transparent green plastic bottle with a textured surface, lying horizontally in a white sink, featuring a green cap and a label with yellow and red accents displaying pictures of lime. +e1a7c6cd9322495.png The dish soap has a bright green color with red and white logo details, viewed from an angled side perspective, set against a floral-patterned counter with a partially visible plastic container in the background. +ced8711a04ad4bf.png The dish soap is vibrant green with a smooth translucent texture, viewed from a frontal angle with a partially squeezed bottle, set against a cozy indoor background featuring a bed with patterned linens and a striped armchair. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/document_folder_closed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/document_folder_closed_descriptions.txt new file mode 100644 index 0000000..3e89b72 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/document_folder_closed_descriptions.txt @@ -0,0 +1,3 @@ +fb528208b74547c.png A white document folder lies on a tiled floor, adorned with a delicate green and black floral pattern and a single dark button closure. +1401227f22ac4ac.png A blue, textured document folder with a visible button clasp is lying flat and diagonally across a wooden table, amidst a cluttered setting with a laptop, papers, and a carpeted floor. +da5c2b89e1964a6.png A peach-colored, smooth-textured document folder lies flat on a floral, green bedspread, viewed from a diagonal top angle in a cozy room with a mustard wall and a cluttered dresser in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/dog_bed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/dog_bed_descriptions.txt new file mode 100644 index 0000000..0c94b1d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/dog_bed_descriptions.txt @@ -0,0 +1,3 @@ +049e8632cac148a.png A tan, quilted-texture dog bed with dark brown edges is placed on a herringbone-patterned tile floor, viewed from an overhead perspective, with an adjacent shaggy rug and a closed door in the background. +9214d08ce734497.png The dog bed is dark brown with a soft, suede-like texture and features a rectangular shape with raised edges outlined by a white and red checkered trim, placed on a beige carpet with shadows and nearby black and yellow fabric objects. +066fd2cb9cd74dd.png The dog bed is a dome-shaped structure with a gray and white paw print pattern, viewed from a front angle on a light wood floor in a kitchen setting with white cabinetry. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/doormat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/doormat_descriptions.txt new file mode 100644 index 0000000..3f3574f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/doormat_descriptions.txt @@ -0,0 +1,3 @@ +3b40d7bfb991410.png A rectangular woven doormat with red, white, and blue stripes bordered by dark blue edges is positioned flat on a beige tiled floor, partially illuminated by sunlight from an overhead view. +2279faba665e471.png The doormat features a geometric, concentric rectangular pattern in shades of brown and beige, positioned in front of a white door on a tiled floor, with a blue scooter, a pair of black shoes, and a tan wall with a colorful artwork nearby. +0cbbe70eb6944b2.png The doormat features a woven texture with a pattern of alternating red and brown squares, positioned diagonally on a light-colored tiled floor with a partial view of a foot and blue garment edge in the foreground. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/drawer_open_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/drawer_open_descriptions.txt new file mode 100644 index 0000000..bdda63e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/drawer_open_descriptions.txt @@ -0,0 +1,3 @@ +7d2bf674343142e.png The image shows a wooden drawer open from a top-down perspective, containing neatly arranged silver utensils with a stone-textured countertop and a tiled floor in the background. +f6c70efb8c6640c.png A blue drawer is open on a light gray tiled floor holding assorted items like papers and a colorful box, with red canisters in the background and visible feet nearby. +93aef068af834e1.png The open drawer viewed from above has a wooden texture with a reddish-brown exterior and beige interior, containing assorted items like a black wallet, car keys, and a white notepad against a background of wooden floorboards. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_descriptions.txt new file mode 100644 index 0000000..ae2cfca --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_descriptions.txt @@ -0,0 +1,3 @@ +ff671f42e584484.png A low-resolution, soft-textured dress with a pink base color and scattered dark floral patterns is draped flat across a bathroom countertop cluttered with various toiletries and reflections visible in the mirror. +2ce21c667c954a1.png An orange, sleeveless dress with pleated texture is hanging vertically from a wooden hanger against a white cabinet background, viewed from a low angle. +3d860f6e328b405.png A sleeveless, salmon-colored dress with a smooth texture is draped over furniture in a living room setting with a wall-mounted TV and darker furniture in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_pants_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_pants_descriptions.txt new file mode 100644 index 0000000..0cb78b2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_pants_descriptions.txt @@ -0,0 +1,3 @@ +28db3e4aecad4ce.png The dress pants appear dark gray and have a smooth texture, viewed from above as they are laid flat on a shiny, brown marble table in a kitchen setting, featuring belt loops and pleats with some household items partially visible in the background. +1578473e0828412.png Black dress pants with a smooth texture are lying flat on a bed, surrounded by a variety of colorful bedding, showcasing a straight leg design with pockets visible despite the cluttered environment. +d856ec3c346d4c3.png Dark blue dress pants with a smooth texture are neatly folded and placed on a beige carpeted floor, viewed from above with a closet door slightly visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_shirt_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_shirt_descriptions.txt new file mode 100644 index 0000000..5283bfc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_shirt_descriptions.txt @@ -0,0 +1,3 @@ +4cc376e59c064d1.png The dress shirt is predominantly blue with a black and white plaid pattern, lying flat and spread out on a vibrant red and pink floral and checkered tablecloth, with the arms extended. +34669127ef7c433.png This dress shirt is a vibrant teal color with a smooth texture, laid flat on a glass surface within a tiled room, and features visible button details and a standard collar. +5e9f0c036aac442.png A crumpled white dress shirt with a blue checkered pattern is viewed from above, lying on a multicolored woven surface with a decorative black and gold cushion beside it, featuring a visible red embroidered text near the collar. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_shoe_men_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_shoe_men_descriptions.txt new file mode 100644 index 0000000..d10c26a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_shoe_men_descriptions.txt @@ -0,0 +1,3 @@ +248478af6f9c454.png A black leather dress shoe with lace-up detailing is upright on its heel, balanced by a finger, set against a blue textured rug in a room with a wood floor and gray cabinets in the background. +068536c84b2a460.png The dress shoe appears to be a dark brown with a matte texture, viewed from a top angle, placed on a muted blue carpet, featuring visible laces and a rounded toe. +13a0ccc35099451.png The black dress shoe, seen in profile against a kitchen backdrop with white tiled counter and wooden cabinets, features a shiny leather texture with a distinctive low heel and rounded toe. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_shoe_women_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_shoe_women_descriptions.txt new file mode 100644 index 0000000..b3319a3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/dress_shoe_women_descriptions.txt @@ -0,0 +1,3 @@ +d3f7d00e3e3b453.png A maroon women's dress shoe with a chunky heel features gold buckles, showcased from the side against a textured wooden floor. +36b485f198ef4ad.png The image displays a beige, strappy high-heeled sandal with a lattice pattern, held sideways over a black surface, with a red cushioned chair and tiled floor visible in the background. +b57a98fde49649f.png The low-resolution image shows a black leather dress shoe with a pointed toe and a pleated embellishment at the front, viewed from above on a beige kitchen floor with a nearby cupboard and a pet bowl. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/drill_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/drill_descriptions.txt new file mode 100644 index 0000000..9cb921e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/drill_descriptions.txt @@ -0,0 +1,3 @@ +1f702eb7791642f.png The drill is predominantly black with yellow accents and a metallic bit, viewed from above on a tiled floor next to a kitchen cabinet, showing a pistol grip and attached battery. +c7b1fb7fb2e14d5.png The drill is predominantly orange with black accents, featuring a visible drill bit at the end, held horizontally by a hand over a table with multicolored placemats in a bright, indoor setting. +c198aaf06919483.png A yellow and black cordless drill is held in a hand at an angled side view, showcasing its compact body against a hardwood floor background, with a metal belt clip and visible branding on the side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/drinking_cup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/drinking_cup_descriptions.txt new file mode 100644 index 0000000..6d49692 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/drinking_cup_descriptions.txt @@ -0,0 +1,3 @@ +a447f1f0246a4d6.png A translucent blue plastic cup rests sideways on a speckled black countertop, set against a beige wall with visible power outlets and a reflective mirror surface above. +735245bafd5b4e3.png The drinking cup is yellow with a smooth texture, viewed from a side angle held over a marbled countertop in a kitchen setting, featuring a distinct elongated shape. +19164a310fef494.png A bright yellow drinking cup with a glossy finish is viewed from the side, placed upside down on a water dispenser with a translucent speckled surface against a pale green background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/drinking_straw_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/drinking_straw_descriptions.txt new file mode 100644 index 0000000..caa10c6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/drinking_straw_descriptions.txt @@ -0,0 +1,3 @@ +0dce5303d1484c8.png A black drinking straw with a smooth texture is held horizontally between fingers against a tiled floor background and white cabinet, viewed from a slightly angled side perspective. +5e09f1c5dc34479.png A metallic silver straw held diagonally by a hand over a tiled bathroom floor with a bathtub and toilet visible in the background. +504b4da4524a44f.png A vertically upright straw with a white exterior featuring a single yellow stripe along its side, positioned against a plain light gray wall on a smooth, reflective gray surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/drying_rack_for_clothes_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/drying_rack_for_clothes_descriptions.txt new file mode 100644 index 0000000..148ab91 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/drying_rack_for_clothes_descriptions.txt @@ -0,0 +1,3 @@ +d4da6093fc7c445.png A white, X-framed drying rack stands open on a tiled floor in front of a glass door, with several assorted-colored garments draped over its bars, casting shadows due to a light source from above. +4cd54333b4cb4ee.png The drying rack, made of white metal with a folding accordion design, is suspended vertically from a wooden beamed ceiling amidst a cluttered garage environment with visible wires and pipes. +985dad8c96d4415.png A silver and black foldable drying rack with several colorful clothes is positioned upright in a corner of a room with light green walls and a patterned curtain featuring a monkey design and the words "Sweet dreams." diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/drying_rack_for_dishes_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/drying_rack_for_dishes_descriptions.txt new file mode 100644 index 0000000..6828eb0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/drying_rack_for_dishes_descriptions.txt @@ -0,0 +1,3 @@ +a973eb551cf345a.png The drying rack is silver with a wireframe design, positioned beside a stainless steel sink on a beige countertop, set against a warm-toned wooden cabinet backdrop. +9e61177e6d76414.png The drying rack is a silver metal frame with two wire shelves, holding various kitchen items like cutting boards, pans, and utensils, positioned on a countertop in a white-tiled kitchen with a brown decorative tile strip above. +8fad3f0d56f8475.png The object is a tilted black, ridged plastic mat or tray with a slightly curved edge, resting against a beige carpet foreground and a light-colored bed skirt background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/dust_pan_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/dust_pan_descriptions.txt new file mode 100644 index 0000000..57c5b09 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/dust_pan_descriptions.txt @@ -0,0 +1,3 @@ +1ca281768c0741b.png A red dust pan with a flat, wide scoop and a perforated handle extends vertically from the ground, situated on a light-colored tiled floor next to a wooden door and a wall, with a pink towel hanging nearby. +d68b351da6fb48b.png A light brown dust pan with a smooth texture is lying flat on its back, showing a wide scoop and a short handle, on a marble-tiled floor near bare feet and patterned sandals. +670661643c05405.png The lime green dust pan with a smooth, glossy texture is leaning against a yellowish tiled wall on a wooden surface in a kitchen corner, featuring a slightly curved handle and a flat, wide scoop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/dvd_player_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/dvd_player_descriptions.txt new file mode 100644 index 0000000..71076c6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/dvd_player_descriptions.txt @@ -0,0 +1,3 @@ +48131986a6da474.png The object appears as a matte white rectangular device with a black circular button and a disc slot on the front, positioned on a dark shelf under a lit area with visible cables above it. +38d6aaa47e52482.png The gray, sleek-textured DVD player is positioned vertically on a white sink in a bathroom setting, with visible silver buttons and a backdrop of beige tiles and assorted toiletries. +d03ae62048ce483.png The DVD player is black with a matte texture, viewed at a slight angle on a patterned floor with a few small items nearby, showing a flat front panel with minimal visible buttons or text. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/earbuds_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/earbuds_descriptions.txt new file mode 100644 index 0000000..f89fa3a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/earbuds_descriptions.txt @@ -0,0 +1,3 @@ +80c19267ef4b4a3.png The earbuds have a metallic silver finish with black cables and are coiled in a compact arrangement on a textured, dark brown tile floor with a mottled appearance, partially shadowed by an unidentified object. +dbd8dde16222418.png The earbuds are black with a smooth texture, positioned with their wires loosely coiled on a worn wooden surface, featuring a dark-colored jack visible amidst the tangled cable. +38ddefefc2c2428.png The earbuds are black with red tips, featuring over-ear hooks and are resting on a shiny white surface beside a small potted plant in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/earring_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/earring_descriptions.txt new file mode 100644 index 0000000..0f60acc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/earring_descriptions.txt @@ -0,0 +1,3 @@ +26d07a705879495.png A silver hoop earring with a smooth, reflective surface is lying flat on glossy tiled squares with visible grout lines, next to a pair of blue tweezers. +ee1b6e7a97714ec.png A small, round earring with a mint green surface and smooth texture is viewed from a slight angle on a light beige surface, with a hook visible and a colorful box as the background. +61c965f79b4043b.png The earring appears silver with a smooth, sleek texture, held in a human hand against a textured, light-colored background, and features an oval hoop design with a visible hinge clasp. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/egg_carton_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/egg_carton_descriptions.txt new file mode 100644 index 0000000..d947c43 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/egg_carton_descriptions.txt @@ -0,0 +1,3 @@ +c808ada9eb3c4ac.png The image shows a transparent, plastic egg carton being held by a hand above a carpeted floor, with its clear compartments making the eggs inside visible, set against a dimly lit room with additional objects like slippers visible in the background. +57891f12c750414.png The egg carton is white with green and yellow labeling, positioned at an angle on a kitchen counter with a smooth texture, surrounded by a mug and a glass, in a modern kitchen setting. +247d63c2d3a8405.png A white plastic egg carton, held by a hand with the lid facing upward, is positioned against a backdrop of beige bed sheets and a faintly visible gray curtain, with "LARGE" text printed along the side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/egg_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/egg_descriptions.txt new file mode 100644 index 0000000..bff2a68 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/egg_descriptions.txt @@ -0,0 +1,3 @@ +48ecd6c60ee1439.png A smooth, white egg is held in a hand with decorated fingers, against a subdued brown and patterned blue background, viewed from an oblique angle. +29f7941a7f8c4a7.png The egg is a smooth, uniform white color, positioned resting on a slightly rumpled gray pillow with a soft pink and brown background from a low-angle side view. +4794963e798a490.png A smooth, white egg is centrally placed on a speckled taupe countertop, viewed from a slightly elevated angle, casting a subtle shadow on the surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/envelope_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/envelope_descriptions.txt new file mode 100644 index 0000000..f85ac71 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/envelope_descriptions.txt @@ -0,0 +1,3 @@ +9d7ef603c6b6456.png A white, matte envelope is viewed from above, lying flat on a dark, textured fabric background. +d897740ca83c4cb.png The envelope is off-white with a crumpled texture, viewed from a side angle as it is being held above a light wooden table, with a tiled floor and a person's legs visible in the background. +17c9287b90bf45d.png The envelope is off-white with a light green stripe and visible printing, resting horizontally on a textured beige carpet, with a visible tear on one side and a fabric piece partially visible in the corner. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/eraser_white_board_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/eraser_white_board_descriptions.txt new file mode 100644 index 0000000..10b3da8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/eraser_white_board_descriptions.txt @@ -0,0 +1,3 @@ +ee63133f05e44bc.png The eraser white board is small with dark gray felt on one side and held upright in a hand against a textured brown tabletop backdrop. +c9f275e22e6a4d7.png The eraser white board has a dark gray, smooth plastic body with a slightly curved shape, a white soft-textured cleaning surface with gray speckles, viewed from above with a wooden tabletop background and a hand for scale. +f1e98997d9c042e.png A person holds a rectangular, dark-colored whiteboard eraser with a slightly textured surface, embossed text, and a light-colored edge against a dark wall background above a fireplace. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/extension_cable_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/extension_cable_descriptions.txt new file mode 100644 index 0000000..a1d53d7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/extension_cable_descriptions.txt @@ -0,0 +1,3 @@ +a65f439aea0f4bf.png The image shows a bundle of red, black, and yellow extension cables hanging vertically on a wall filled with various stickers, with a metal beam rack and miscellaneous items like bags and tools in the background. +52f0ca71e38748e.png A white extension cable with a thin, smooth texture is partially coiled on a carpeted floor, featuring a small label near its plug and a flat, rectangular socket end. +d2dd82debaa14f4.png The extension cable is black with a smooth texture, coiled on a tiled floor, positioned centrally from a top-down viewpoint, with a blue rectangular mat visible in the upper background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/eyeglasses_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/eyeglasses_descriptions.txt new file mode 100644 index 0000000..887231a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/eyeglasses_descriptions.txt @@ -0,0 +1,3 @@ +e558956e717c4b5.png The eyeglasses have a dark frame with a glossy texture, viewed from above, resting on a floral-patterned surface beside a small clock and a coin, with other items blurred in the background. +9c1c39b196d54ef.png The black-framed eyeglasses, viewed from above and held in hand, are positioned against a colorful, textured rug background with a variety of vivid hues and patterns. +07eb65afc3d84f6.png The eyeglasses, viewed from a side angle, feature a sleek black frame with thin temples and notable red tips, set against a background of beige tiles and a brown fabric surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/fan_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/fan_descriptions.txt new file mode 100644 index 0000000..367bebb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/fan_descriptions.txt @@ -0,0 +1,3 @@ +9d0320790f8e405.png A wire-framed, floor-standing fan with gray blades is viewed from above on a concrete floor, surrounded by clutter including fabrics and cables. +fc19dbb08fc9478.png A ceiling fan with wooden blades blurred in motion is centered in a dimly lit room, with a glowing globe light fixture beneath, set against a plain beige ceiling and adjacent to a kitchen cabinet and closed window blinds. +a019c61daeda4ae.png A brown ceiling fan with three blades is seen from below in a room with white walls and a barred window, mounted on a smooth white ceiling. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/figurine_or_statue_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/figurine_or_statue_descriptions.txt new file mode 100644 index 0000000..174495c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/figurine_or_statue_descriptions.txt @@ -0,0 +1,3 @@ +a9d7ddcb692640b.png A small golden laughing Buddha figurine with red and green accents stands on a textured circular base, set against a plain, light-colored background. +5ce79655bbe4479.png The figurine is beige with a textured, possibly floral base, a large bow on what appears to be a hat or bonnet, and it is centered on a mantel against a plain wall with a framed picture above and objects like a game controller flanking it. +7e0a3ee892e24c3.png The brownish-red figurine, held in a hand, is shaped like a dog with a slightly glossy texture and is seen from a side angle, against the backdrop of a carpeted living room. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/first_aid_kit_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/first_aid_kit_descriptions.txt new file mode 100644 index 0000000..7622bec --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/first_aid_kit_descriptions.txt @@ -0,0 +1,3 @@ +eaaa5e51bc5e457.png The first aid kit is a small, rectangular, bright orange pouch with a visible white cross and text, held upright by a hand, against a backdrop featuring a beige surface and a blue-green object. +e350e46717ae474.png A white, rectangular first aid kit with green and black text is placed on a flat, light-colored surface among personal care items, viewed from a slightly elevated angle. +517a3ba11d77432.png The first aid kit is bright red with a smooth texture, viewed from an angled top perspective on a white countertop, featuring a white medical cross emblem inside a circle, and is positioned against a backdrop that includes a vertical paper towel holder and a metallic dish. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/flashlight_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/flashlight_descriptions.txt new file mode 100644 index 0000000..08a40c7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/flashlight_descriptions.txt @@ -0,0 +1,3 @@ +31d0b96ec1084d9.png The flashlight has a turquoise and white body with a black handle, viewed from an angled overhead perspective on a gray concrete floor, featuring a central circular lens. +e7a8e99016b9454.png The flashlight is gold-colored with a black head and tail, lying horizontally on a brown tiled floor with visible joints, featuring a metallic handle on its side. +ac21c3f105f24f3.png A slim, black flashlight with a silver metallic detail is lying horizontally on a multi-colored tiled floor, viewed from an overhead angle against a background of gray and tan tiles with a grout-lined white tiled wall in the distance. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/floss_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/floss_container_descriptions.txt new file mode 100644 index 0000000..405d3f0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/floss_container_descriptions.txt @@ -0,0 +1,3 @@ +d02b1db5586649f.png The floss container in the image is matte grey with a slightly curved rectangular shape, viewed from a slight side angle, held between fingers against a neutral, blurred indoor background with indistinct furniture shapes. +76811c558524486.png A white rectangular floss container labeled "REACH" with "mint waxed" prominently displayed in green, sits on a brown book with gold-embossed text, against a background featuring a colorful puzzle box and a blurred stack of papers. +f4305435b30b46a.png The floss container is a green, slightly translucent plastic with a white and blue label, viewed from a top-front angle, resting on a brown textured surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/flour_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/flour_container_descriptions.txt new file mode 100644 index 0000000..5b2f91c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/flour_container_descriptions.txt @@ -0,0 +1,3 @@ +ee577feaf6fd408.png The flour container is a smooth, off-white, cylindrical tub with a black lid, viewed from an angle where it is lying horizontally on a light wooden kitchen countertop surrounded by various pantry items and a visible whiteboard in the background. +583a7c591bd143c.png A red, square-shaped container with a handle and flat lid is being held sideways against a beige countertop, accompanied by a metal measuring spoon and coffee-related items in the background. +81d4abdb419e496.png The flour container is a translucent cylindrical plastic jar with a blue lid, viewed from a tilted angle and set against a bathroom sink and mirror. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/fork_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/fork_descriptions.txt new file mode 100644 index 0000000..93b4c78 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/fork_descriptions.txt @@ -0,0 +1,3 @@ +974fcb7d94924fd.png The fork is a light cream-colored plastic utensil with a smooth texture, viewed from an angled top perspective, resting on a white speckled surface in front of a laptop. +37b97c2587ca42c.png The fork is silver with a glossy finish, featuring a decorative handle resting diagonally on a textured beige carpet background. +33c509ef67544db.png The image shows a small, metal, gray fork with a shiny texture, held upright between fingers, in a home setting featuring plants, a wooden table, and soft furnishings in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/frying_pan_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/frying_pan_descriptions.txt new file mode 100644 index 0000000..9ec5521 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/frying_pan_descriptions.txt @@ -0,0 +1,3 @@ +deb0faad5740415.png The frying pan appears circular with a black, slightly reflective surface, viewed from an angled top-down perspective, with a smooth black handle and a light purple fabric background, and is being held by a hand on the left side. +b0e237d022744f0.png A black, smooth-textured object resembling the underside of a frying pan is resting upside down on a beige carpeted floor, with a faint shadow cast against a light-colored wall and window blinds visible in the background. +84bacdf13eb64f8.png This frying pan is a worn, green-tinged metal with visible stains, held horizontally above a dotted white bedspread with a gray blanket in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/full_sized_towel_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/full_sized_towel_descriptions.txt new file mode 100644 index 0000000..2a59858 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/full_sized_towel_descriptions.txt @@ -0,0 +1,3 @@ +81a8c038eefd4c5.png A folded, pink towel with a subtle pattern lies on a tan tiled bathroom floor, with a white mat and a toilet visible in the background from a low angled view. +1099f983b44d453.png The towel appears gray with a fluffy, textured surface, viewed from a top angle as it drapes over a dark piece of furniture, set against a backdrop of a wooden floor and gray wall. +81a4e83d530d43d.png The full-sized towel displays a light beige color with a soft, plush texture, hanging on a dark hook against a plain wall, with a view from a bathroom floor highlighting its rectangular shape and draping folds in an indoor setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/glue_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/glue_container_descriptions.txt new file mode 100644 index 0000000..f10384a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/glue_container_descriptions.txt @@ -0,0 +1,3 @@ +3bc59a8d8116430.png The glue container is white with a cylindrical shape, featuring a pointed nozzle cap, lying horizontally on a reddish-brown wooden surface with a neutral wall in the background. +8ebe9a55653a410.png A purple and yellow cylindrical glue stick is held horizontally by a hand against a speckled gray surface, with the cap visible on one end. +fe368273016b4d6.png The glue container is white with a red label, shown from a side angle in a hand against a background of assorted objects, including a grey shelf and cylindrical bottles. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/hair_brush_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/hair_brush_descriptions.txt new file mode 100644 index 0000000..2f5a706 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/hair_brush_descriptions.txt @@ -0,0 +1,3 @@ +5085e95f6d90437.png A side view of a hair brush with a smooth, light wooden handle and dense, dark bristles, held over a purple and white patterned bedspread with a polka-dotted container in the background. +8b827ac6a60b42d.png The hairbrush features a black handle and an oval-shaped silver bristle pad, resting diagonally on a brown quilted fabric surface with stitching lines creating a diamond pattern. +5dbe9526b9934a3.png The hair brush is light blue with evenly spaced, flexible bristles, viewed from above at an angle against a wooden tabletop background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/hair_dryer_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/hair_dryer_descriptions.txt new file mode 100644 index 0000000..61c9728 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/hair_dryer_descriptions.txt @@ -0,0 +1,3 @@ +4f41d708841841c.png A glossy purple hair dryer rests diagonally on a wooden table, surrounded by various items like a hat and fruit, with a visible power cord and a sleek, rounded design. +8d064d10dca6422.png The hair dryer is matte black with a sleek cylindrical shape, viewed from the side against a textured white wall, featuring a concentrator nozzle and control buttons visible on the handle. +b03cbdf98f47419.png A matte black hair dryer with a metallic nozzle is held horizontally in a bathroom setting with brown tiled walls and visible pipes in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/hairclip_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/hairclip_descriptions.txt new file mode 100644 index 0000000..59cade6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/hairclip_descriptions.txt @@ -0,0 +1,3 @@ +20b6790783494fc.png The hairclip appears black and glossy with a linear form, viewed from above, placed on a woven, light brown, textured background. +e3487fe8d3c841a.png This small, translucent pale green hairclip has a smooth texture and is held in a hand against a bathroom background with toiletries and a neutral-colored countertop visible. +d06790313ace4be.png A small, dark hairclip with a glossy texture is positioned upright on a white surface, with a blurred, light-colored background and a stove visible to the side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/hairtie_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/hairtie_descriptions.txt new file mode 100644 index 0000000..b351862 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/hairtie_descriptions.txt @@ -0,0 +1,3 @@ +b2a1da29e2534ce.png A close-up view of a small, thin, dark blue hairtie with a smooth texture is held between fingers against a beige countertop background, with part of a blue cylindrical bottle visible nearby. +fb59610dc11342f.png A thin, black hairtie with a slightly shiny texture is resting flat on a wooden table, surrounded by a home office setting with scattered objects and a laptop in the background. +3fb9def747b7438.png The image shows a pale pink fluffy hairtie positioned on a bed with dark sheets, viewed from an angle that captures the corner of a dimly lit room, revealing soft shadows and a slightly blurred foreground. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/hammer_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/hammer_descriptions.txt new file mode 100644 index 0000000..82c686d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/hammer_descriptions.txt @@ -0,0 +1,3 @@ +72e58aae7f61439.png The hammer is held at an angle, with a wooden handle featuring a blue mark and a black metal head, set against a tiled floor background with light-colored square patterns. +ddca54b7755f4f9.png A blue-handled scraper with a flat, wide metal blade is positioned upright against a pink-tiled bathroom counter surrounded by various personal care products, a towel rack, and a floral-patterned wallpaper. +43aea4ab8962439.png The hammer has a metallic silver head and a textured black handle, viewed from a side angle with a beige wall and wooden countertop in the background, and is being held by a hand wearing a dark wristband. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/hand_mirror_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/hand_mirror_descriptions.txt new file mode 100644 index 0000000..256a4cf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/hand_mirror_descriptions.txt @@ -0,0 +1,3 @@ +da3809fb5ea240f.png A small rectangular hand mirror with a reflective surface and plain frame lies flat on a cluttered wooden table next to a comb, with a gray, concrete floor partially visible in the background. +6ddfcad75be24df.png A circular, silver-textured hand mirror with a small handle is lying flat on a light wood-grain surface, casting a shadow, with a dark area in the mirror reflecting part of the environment. +cb03533b0e254da.png The hand mirror features a vibrant pink frame with a textured, circular pattern held upright by a black handle, against a background of indoor office equipment and a wooden surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/hand_towel_or_rag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/hand_towel_or_rag_descriptions.txt new file mode 100644 index 0000000..9cb32f6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/hand_towel_or_rag_descriptions.txt @@ -0,0 +1,3 @@ +54adfe4903f6480.png The hand towel appears cream-colored with a slightly textured surface, laid flat on a white background that resembles a sheet, and features a visible label at the bottom edge. +21ebe12eb12a4af.png A dark-colored, possibly black hand towel with a white checkered pattern lies crumpled on a wooden floor, casting a shadow, in front of plaid-patterned furniture. +de5f08ab2195444.png A dark green, textured knit cloth lays flat on a light wood surface, surrounded by shelves and assorted items in a workshop-like setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/handbag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/handbag_descriptions.txt new file mode 100644 index 0000000..f7cd044 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/handbag_descriptions.txt @@ -0,0 +1,3 @@ +341ef98ed36b4e7.png The handbag is black with a shiny texture, featuring a large silver decorative element resembling the letter "B" on the front, with a prominent zippered pocket and handles made of a checkered pattern material, set against a plain lime green surface. +8c569d95ff2d457.png A dark handbag with a slightly glossy texture and brown leather accents is seen from an overhead view on a wooden floor, featuring dual leather handles and a central label. +dccda990577f4f5.png A black, shiny, smooth-textured handbag is seen from above on a tiled floor with a structured silhouette and prominent handles. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/hat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/hat_descriptions.txt new file mode 100644 index 0000000..ba334c1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/hat_descriptions.txt @@ -0,0 +1,3 @@ +d41a75c4c70d433.png A blue baseball cap with white embroidered text is centrally positioned on a plaid-patterned bed, viewed from a low angle with a bright doorway in the background. +f7ab496511bd4c1.png The hat is a medium blue cap with visible white embroidery, seen from above and slightly to the side, lying on a rumpled green sheet with a patterned black and white pillow in the background. +9afb4c1bd9a54fa.png A black baseball cap with white embroidered text or logo is lying on a colorful patterned bedsheet, viewed from above, among various items including papers and electronic devices. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/headphones_over_ear_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/headphones_over_ear_descriptions.txt new file mode 100644 index 0000000..dc687aa --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/headphones_over_ear_descriptions.txt @@ -0,0 +1,3 @@ +11122738f42e4fd.png The over-ear headphones, held slightly tilted by a hand, are black with a matte texture, displayed against a white bathroom background with a tiled floor and bathtub. +cabc8a130bfc41f.png The headphones appear to be gray and pink with a smooth texture, laying on their side on a teal bathroom rug, with a toilet and tile wall in the background. +3cfaf17cdbbc4b2.png The over-ear headphones appear black with a subtle red lighting accent on the ear cups, shown from a slightly top-down angle, set against a wooden floor background, held by a hand. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/helmet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/helmet_descriptions.txt new file mode 100644 index 0000000..7adecc2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/helmet_descriptions.txt @@ -0,0 +1,3 @@ +d2cb9700f27e4e7.png A glossy black helmet with a transparent visor and "AEROSTAR" printed in white on the top is seen from a slightly elevated angle, resting on a dark countertop in a tiled kitchen environment. +fac9413f88cb446.png The helmet is matte black with a smooth texture, seen from a side angle, and is resting on a blue and white patterned bed against a plain wall. +8fe67d6bd89c435.png A black helmet with a glossy surface and a clear visor is perched on a pink ledge, set against a garden backdrop with green foliage and flowers. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/honey_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/honey_container_descriptions.txt new file mode 100644 index 0000000..86c161b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/honey_container_descriptions.txt @@ -0,0 +1,3 @@ +9b6b3ab2d1da43d.png A square glass jar with a black lid, containing golden honey and a yellow hexagonal label, is held at an angle above a black stovetop with circular patterns in a kitchen setting. +aa235753f863430.png The translucent, bear-shaped plastic container with a yellow lid is held horizontally by a hand over a carpeted floor with shoes and a framed picture visible in the cluttered background. +82f34787e34d41e.png A small, brown, cylindrical honey container with a yellow cap and vibrant labels sits on a patterned, white and green floral background viewed from above. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/ice_cube_tray_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/ice_cube_tray_descriptions.txt new file mode 100644 index 0000000..de4b195 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/ice_cube_tray_descriptions.txt @@ -0,0 +1,3 @@ +23367237a813494.png A white plastic ice cube tray with a grid of twelve rectangular compartments is viewed from above, placed on a mottled, grey stone flooring background. +8252c6df4d1d48d.png A bright green, smooth-textured ice cube tray is held at an angle by a hand with a bracelet, on a wooden floor with a couch leg and a blue plastic bag in the background. +958d1a66d4fe460.png A white ice cube tray with a smooth texture is positioned vertically in the center of the image against a round, black, and white polka-dotted background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/ice_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/ice_descriptions.txt new file mode 100644 index 0000000..07c4b93 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/ice_descriptions.txt @@ -0,0 +1,3 @@ +d4d6f818ace4494.png A smooth, translucent, light gray, dome-shaped ice cube rests on a hand set against a wooden countertop background. +1ce2272e694b468.png The ice cube appears translucent with a slightly cloudy interior, held in a hand with fingers visible from a top-down viewpoint, against a textured beige carpet background. +079a2bbe59c04d8.png A translucent, cone-shaped ice piece with a smooth texture sits against a dark, fabric background, subtly reflecting ambient light. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/iron_for_clothes_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/iron_for_clothes_descriptions.txt new file mode 100644 index 0000000..5bddc7d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/iron_for_clothes_descriptions.txt @@ -0,0 +1,3 @@ +f8952cdbf63b4e9.png A white iron with a blurred texture, viewed from a slightly elevated angle, sits on a colorful newspaper over a speckled stone floor, with a coiled cord and a pointed front visible. +88e9cd6e40ee4eb.png A black and silver clothes iron lies face down on a white tiled floor, surrounded by a tiled background with visible grout lines, contrasting a nearby toilet and bathroom setting. +719f5c51561e486.png The iron is positioned upright on a black surface with a shiny metallic body and dark handle, set against a reflective wall with a wooden cabinet and green-striped rug in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/ironing_board_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/ironing_board_descriptions.txt new file mode 100644 index 0000000..be4557d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/ironing_board_descriptions.txt @@ -0,0 +1,3 @@ +5aa4330ba050460.png The ironing board is white with a perforated surface, viewed from an angled side perspective, set against a cluttered indoor background with wooden floors and miscellaneous household items. +7a749e8cf63e407.png The ironing board is covered in a floral-patterned fabric, positioned upright beside a bed with a yellow bedspread, and is situated against a plain wall on a tiled floor. +e3037a6d005c48a.png The ironing board is covered in a bright turquoise fabric with a smooth texture, positioned upright and leaning against a white paneled door on a tiled floor with a glossy appearance, with its compact size and simple design being its most notable features. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/jam_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/jam_descriptions.txt new file mode 100644 index 0000000..d1b3814 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/jam_descriptions.txt @@ -0,0 +1,3 @@ +67155eff5ba44d2.png The image shows a low-resolution bottle of purple grape jam lying on a light-colored, flat surface, with a label displaying grape images and text, viewed from above. +33600019e2b74e5.png A small jar with a bright red lid sits on a colorful patterned surface with floral and geometric designs, set against a green background wall. +6afa0127ee634d4.png The jam appears as a dark, possibly berry-colored substance in a clear glass jar with a golden lid, held in a person's hand from a side angle against a soft-focus background of a carpeted floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/jar_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/jar_descriptions.txt new file mode 100644 index 0000000..582d9ef --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/jar_descriptions.txt @@ -0,0 +1,3 @@ +e71981a621bd402.png A person holds a small, yellow-orange jar with a smooth, glossy texture and a partially visible label, in a cozy indoor setting with wooden elements and fabric in the background. +27b2e96b9748400.png This is a low-resolution image of a glass jar with a gold-colored lid, containing green olives in a brine-like liquid, labeled in blue and white, with a hand tilting it backward on a carpeted floor in a room with shelves visible in the background. +57c58b6b5c484b4.png The jar is transparent with a metallic lid, viewed from the front, sitting on a dark surface against a mint green wall and metal grid background, containing a white powdery substance. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/jeans_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/jeans_descriptions.txt new file mode 100644 index 0000000..5274563 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/jeans_descriptions.txt @@ -0,0 +1,3 @@ +df72df6bec87497.png A pair of mid-blue denim jeans with slight fading around the thigh area is hanging vertically on a wooden door in a dimly lit room, featuring a visible rear pocket and surrounded by a beige carpeted floor and a partial view of a guitar. +7bdc68a18fc74c5.png A pair of mid-wash blue jeans with a slightly worn texture is laid flat on an unkempt bed with blue sheets, viewed from above in a well-lit room with both pants legs extended. +d9f95cd2e93c4db.png The jeans are medium blue with a slightly faded texture, laid flat on a light stone-like surface, featuring a back pocket with subtle stitch detailing. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/kettle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/kettle_descriptions.txt new file mode 100644 index 0000000..0944cf8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/kettle_descriptions.txt @@ -0,0 +1,3 @@ +a0e56ab7d7a940a.png The kettle is metallic with a brushed steel texture, viewed from slightly above at an angle, and is set against a cluttered bathroom countertop with various bottles and items as the backdrop. +1001ca1e1fb0411.png A metallic silver kettle with a ridged design is tilted at an angle with a black handle and spout, set against a dimly lit kitchen sink with a blurred countertop and cups in the background. +8e033693d10343f.png A stainless steel kettle with a brushed texture is shown from a bottom side view, held over a white sink in a bathroom environment, with its curved spout and handle visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/key_chain_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/key_chain_descriptions.txt new file mode 100644 index 0000000..5233b51 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/key_chain_descriptions.txt @@ -0,0 +1,3 @@ +750d96b9bb8d45d.png A person is holding a set of keys on a blue strap keychain with a black and white tiled bathroom floor and pink stool visible in the background. +4cee2e23fd204c1.png A small metallic key chain with a blue fabric strap and a black rectangular tag with a QR code is placed on a white bathroom sink, featuring a nearby toilet paper holder in a dimly lit environment. +a00c41fd4259473.png A brass-colored key chain with a smooth, metallic texture is positioned flatly on the edge of a white porcelain sink, in front of a wooden floor and bathtub background, featuring a hook clasp. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/keyboard_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/keyboard_descriptions.txt new file mode 100644 index 0000000..eb6ab0a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/keyboard_descriptions.txt @@ -0,0 +1,3 @@ +713e7aa50e8546d.png The keyboard is black with a matte texture, lay flat in a top-down view on a tiled floor, with visible connecting cables and simple rectangular keys. +590d1c75d087441.png The keyboard is black with a matte texture, seen from an angled top view on a wooden desk, accompanied by a laptop, mouse, and scattered paper items in a home or office setting. +e9ad547a25af40b.png A black keyboard with white lettering is viewed from above on a wood-grain desk, surrounded by objects including a closed notebook, a pen, and a cylindrical item, with a person partially visible to the left. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/ladle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/ladle_descriptions.txt new file mode 100644 index 0000000..eda8743 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/ladle_descriptions.txt @@ -0,0 +1,3 @@ +f71f4b1f6ebc417.png The ladle has a shiny metallic bowl and a black handle, resting diagonally on a brown upholstered chair with a white paneled door in the background, distinct for its reflective surface. +aa50a22c69f0437.png A metallic ladle with a shiny, reflective surface is held vertically over a stove, set against a background of rustic kitchen elements including a textured grey stone floor and red objects. +687fe7194087452.png The ladle is a bright teal color with a smooth texture, lying on a colorful fabric draped over a red couch, with its handle slightly elevated and bowl facing upwards, against a backdrop of a patterned pillow. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/lampshade_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/lampshade_descriptions.txt new file mode 100644 index 0000000..d157508 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/lampshade_descriptions.txt @@ -0,0 +1,3 @@ +c050538198414c5.png The lampshade is cylindrical with a black and white polka dot pattern, viewed from below, contrasting against a plain ceiling with a dark trim near the closed window shade. +7105dfd7efd1444.png A white, slightly textured object resembling an upside-down lampshade is tilted in a tiled bathroom corner with a textured brown floor and a partially visible silver grab bar against the back wall. +9b81e6c5ac9844f.png The lampshade is beige with a slightly textured surface, viewed from the side at an angle, set against a cozy bedroom environment with a blue and white patterned comforter visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/laptop_charger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/laptop_charger_descriptions.txt new file mode 100644 index 0000000..388873f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/laptop_charger_descriptions.txt @@ -0,0 +1,3 @@ +3a4c981293fd411.png The image shows a hand holding a black, rectangular laptop charger with a smooth texture, coiled with a black cable and a plug, set against a gray flooring and white wall background. +1a545eef6dab4ce.png The laptop charger is black with a matte texture, viewed from above on a light wood surface, featuring a rectangular shape with an attached cord looped in a spiral, and surrounded by various colorful cables in the background. +8ca8eed1be63488.png A black laptop charger with a rectangular adapter featuring printed labels is held in a hand against a cluttered background including a beige surface and a brown paper bag with a green logo. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/laptop_open_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/laptop_open_descriptions.txt new file mode 100644 index 0000000..21e1b83 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/laptop_open_descriptions.txt @@ -0,0 +1,3 @@ +fb30581bf9ad4a7.png A black, matte laptop is shown open from a side viewpoint, positioned on a white washing machine, with a red and white cloth nearby and laundry knobs visible in the background. +a69953f6abf747f.png A black Dell laptop with a reflective screen is open at an angle on a colorful, patterned table with a dim, cluttered room in the background. +da509f50fb694a3.png The open laptop, viewed from a top-side angle, features a dark-colored, matte finish surface with a reflective screen, set against a tiled floor background, and is held casually in one hand. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/leaf_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/leaf_descriptions.txt new file mode 100644 index 0000000..3c579eb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/leaf_descriptions.txt @@ -0,0 +1,3 @@ +69108200b4e0443.png The brown, curled, and slightly dried leaf rests atop a wooden table with a background of patterned placemats, presenting a natural, earthy contrast to the warm indoor setting. +6e6962349f1d42a.png The leaf is a vibrant green with a smooth texture, viewed from above, emerging from a potted plant on a windowsill with a patterned curtain in the background. +70647591ee744ed.png A dark green cylindrical plastic pot with subtle horizontal ridges is partially covered by an orange lid, against a beige-tiled floor, with small, shriveled green plant remnants curving over the edge. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/leggings_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/leggings_descriptions.txt new file mode 100644 index 0000000..070837c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/leggings_descriptions.txt @@ -0,0 +1,3 @@ +5d8f98c7a07f4b4.png The leggings have a dark, heathered gray color with a subtle textured appearance, lying flat on a bed with a swirled patterned fabric visible in the background. +fada053c0929440.png The leggings are dark-colored with a smooth texture, lying flat on a light carpeted floor in a domestic setting with a crib and furniture visible in the background. +56b231f2722c4e0.png The leggings are black with a smooth texture, laid flat on a tiled floor with beige and white patterns, and a few shelves are visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/lemon_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/lemon_descriptions.txt new file mode 100644 index 0000000..25369c6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/lemon_descriptions.txt @@ -0,0 +1,3 @@ +369ef4492ceb457.png The object appears smooth and bright green, resembling a lime, held in a hand over a tiled floor with a standard side view showing its round shape and consistent coloration. +1eea60ab0b46434.png The lemon is vibrant yellow with a slightly textured surface, positioned horizontally in a hand against a soft, light-colored bedspread with carved wooden headboard details in the background. +bab7da075ba74dd.png The lemon appears vibrant yellow with a slightly rough texture, held in the right hand of a person standing on a patterned wooden floor with a partially visible dog and door in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/letter_opener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/letter_opener_descriptions.txt new file mode 100644 index 0000000..750548d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/letter_opener_descriptions.txt @@ -0,0 +1,3 @@ +5424dc5a3bbb4f7.png A translucent, straight-edged object with a beige handle is resting diagonally on a dark, flat surface with muted lighting. +c7a465978c604b7.png The letter opener is metallic and sleek with a silver finish, placed horizontally on a textured gray fabric surface, next to a gaming console controller, with carpet visible in the background. +feee84bdfd364e5.png A black letter opener with a smooth texture is held in a diagonal position over a textured blue fabric background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/lettuce_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/lettuce_descriptions.txt new file mode 100644 index 0000000..6758cc3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/lettuce_descriptions.txt @@ -0,0 +1,3 @@ +9e08f852e0284a4.png A green romaine lettuce with a smooth, elongated structure stands upright in a glass of water on a cluttered bathroom counter, surrounded by toiletries and reflected in a mirror. +7b208b42b9ce4dd.png A packaged iceberg lettuce with a light green, smooth texture is placed on a metal countertop, partially shadowed against a brown, peeling wall in what appears to be a kitchen setting. +83b64e1a1b3c4d7.png A romaine lettuce with vibrant green leaves transitioning to pale yellow towards the stem is lying horizontally on a speckled gray and white carpet, with visible human feet in the foreground and a strip of wood floor along the side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/light_bulb_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/light_bulb_descriptions.txt new file mode 100644 index 0000000..60dd251 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/light_bulb_descriptions.txt @@ -0,0 +1,3 @@ +e913f5ee91484f6.png The light bulb is white and frosted with a smooth texture, viewed from a side angle while being held in a hand, set against a wooden table background with kitchen cabinets and a checkered floor pattern in the distance. +e41cc0c6c6fa486.png The light bulb has a matte white finish with a metallic screw base, viewed from an angled perspective on a light wooden surface beside a black laptop, amidst colorful objects in a cluttered setting. +e768e135b90c403.png The light bulb is a transparent, smooth, teardrop-shaped object with a metal screw base, lying on a textured cream carpet, positioned at an angle with its base closer to the left and its tip slightly elevated. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/lighter_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/lighter_descriptions.txt new file mode 100644 index 0000000..e956073 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/lighter_descriptions.txt @@ -0,0 +1,3 @@ +ce3c9ec8b3f347f.png A white lighter with a metallic top and red button is lying diagonally on a wood-textured surface in a well-lit environment. +ef508d0fcb4e4f6.png A white lighter with a metallic top and a red thumb lever is viewed from above against a dark reflective surface, with a distinct toothbrush and scattered items in the background. +77fb02260a14407.png A light blue lighter, viewed from above, rests on a dark, slightly reflective surface, featuring a red ignition button and a metallic top. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/lipstick_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/lipstick_descriptions.txt new file mode 100644 index 0000000..01b1898 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/lipstick_descriptions.txt @@ -0,0 +1,3 @@ +e83e6c0c4053402.png The object is a dark-colored, possibly dark purple or black lipstick case with a glossy finish, viewed from a side angle against a carpeted background with household items, including a floral patterned fabric and a white cushion, visible in the environment. +d34ccfc18e4849a.png The lipstick features a vibrant red casing with gold decorative patterns and a silver band near the base, viewed from a slightly elevated angle against a plain white surface with shadows cast, under indoor lighting. +0684079ecced4ee.png A white cylindrical lip balm container with red text stands upright on a textured countertop, next to a larger bottle, with a bathroom-like background featuring a window and brown walls. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/loofah_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/loofah_descriptions.txt new file mode 100644 index 0000000..58562af --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/loofah_descriptions.txt @@ -0,0 +1,3 @@ +3cb42265611e461.png The loofah is light pink with a delicate, airy texture, hanging by a loop against cream-colored tiled wall background, showcasing a soft, poufy appearance. +7ea3ebc0b6494b4.png A bright pink and orange loofah with a soft, fluffy texture is placed atop a wooden counter, with a window and plant in the softly lit background. +656825ce25fb4f4.png A pale yellow, textured loofah with an irregular cylindrical shape and a looped string is placed upright on a patterned tablecloth, surrounded by a softly lit indoor setting with a wooden chair and sheer curtains in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/magazine_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/magazine_descriptions.txt new file mode 100644 index 0000000..e832e34 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/magazine_descriptions.txt @@ -0,0 +1,3 @@ +38dd20ec77a44fa.png The magazine on the table is blue with white text and imagery on the cover, placed on a patterned tablecloth with fruit motifs, and viewed from a top-down perspective beside a person's feet on patterned flooring. +4dec40931c724a9.png The magazine has a colorful cover primarily featuring bold yellow text against a vibrant background, positioned at a slight angle on a wooden kitchen countertop near a modern stove with a metal backsplash and visible kitchen utensils. +100ac2e92dff420.png A dark-colored magazine with a matte texture is viewed from a slight angle, featuring white text and a logo on the upper left, set against a dimly lit background with hints of blue and red fabric. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/makeup_brush_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/makeup_brush_descriptions.txt new file mode 100644 index 0000000..6ac5dea --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/makeup_brush_descriptions.txt @@ -0,0 +1,3 @@ +b317440f6f6e434.png The makeup brush has a dual-ended design with a pink sponge on one side and a brown bristle brush on the other, resting on a flat gray surface in a top-down view. +3581466bd547467.png The makeup brush, viewed from a slightly above angle, features a vibrant metallic purple handle with a gradient of white to pink bristles, set upon a textured gray carpet background. +0ea1a1914ba84ed.png A person is holding a black mascara wand with a brown cylindrical cap against a kitchen backdrop featuring tiled walls and various utensils. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/makeup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/makeup_descriptions.txt new file mode 100644 index 0000000..3548a95 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/makeup_descriptions.txt @@ -0,0 +1,3 @@ +6ef14097850f484.png The image shows a round, maroon-colored makeup compact with white text on the lid, placed on a speckled black countertop beside a stovetop, highlighted against a bright pink fabric in the lower foreground. +661d9ce80b3d4dd.png A closed eyeshadow palette with a translucent lid is placed on a stack of yellow fabric on a bed with purple floral-patterned sheets. +da451abde53c46b.png The image shows a white plastic bottle with a label, held horizontally over a bathroom sink with a toothbrush, toothpaste, and a red and black container in the background, all slightly blurred likely due to low resolution. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/marker_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/marker_descriptions.txt new file mode 100644 index 0000000..fdf3389 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/marker_descriptions.txt @@ -0,0 +1,3 @@ +fc3608b2c17c4ec.png A black-capped marker with a predominantly metallic silver body is held horizontally in a hand, against a backdrop of dark fabric and a lighter gray item, featuring a prominent yellow ring near the cap area. +98e74e282ff44e5.png A black and white marker with a black cap and visible logo lies horizontally on a textured carpet with a background showing a partially visible door and dark furniture. +9d821596e2ca46a.png A black-capped, white-bodied marker with bold text is held in a human hand, set against a blurred background featuring a patterned bedspread and various personal items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/match_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/match_descriptions.txt new file mode 100644 index 0000000..b6e1db0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/match_descriptions.txt @@ -0,0 +1,3 @@ +ffa7caac9de6492.png A hand holds a wooden matchstick with a red-tipped head against a bathroom background featuring a towel, a blue and white electric toothbrush, and a decorative box. +ab84a08231504c0.png A person holds a wooden matchstick with a red tip, positioned vertically on a textured dark surface, with vertical blinds casting shadows in the background. +72d6f8a9f9a14f3.png A brown matchstick with a white tip is held horizontally by a hand showing painted nails, positioned against a background of shiny, brown-tiled flooring. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/measuring_cup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/measuring_cup_descriptions.txt new file mode 100644 index 0000000..6cd4ec5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/measuring_cup_descriptions.txt @@ -0,0 +1,3 @@ +b7c7ae7489f7454.png The measuring cup is bright red with a matte texture, viewed from a slightly angled top perspective, set against a blurred beige background, and features a small hole at the end of the handle. +0b1356010ee9471.png A translucent cylindrical measuring cup with blue measurement markings is positioned at an angle on a table covered with a vibrant floral-patterned tablecloth, set against a tiled wall and partially cropped white chair. +32572c864c3e404.png The measuring cup is semi-transparent, held at an angle with a hand visible, against a background featuring a red wall, a gray bedspread, and a red-striped pillow. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/microwave_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/microwave_descriptions.txt new file mode 100644 index 0000000..96f392d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/microwave_descriptions.txt @@ -0,0 +1,3 @@ +b19aa069e8cb491.png The black microwave, viewed from a low angle, is embedded between wooden cabinets and features a visible digital clock display, with a simple, sleek design and minimalistic button layout, against a white wall background. +e5ec742a643e419.png The object has a gray and orange exterior with a metallic texture, viewed from a slight upward angle showing its transparent front panel, set against a white indoor wall with visible wires and a red circular object in the background. +5ae52ff00ff5428.png The white microwave, viewed from the front, features a keypad on the right side, a slightly curved handle at the center of its door, and is integrated into a kitchen setup with matching white cabinetry in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/milk_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/milk_descriptions.txt new file mode 100644 index 0000000..2965e89 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/milk_descriptions.txt @@ -0,0 +1,3 @@ +a33a7727939f4d1.png A white, semi-translucent plastic milk jug is tipped slightly to the left, held by a hand, with a wooden floor and light cabinetry in the background. +90ed3f89db8f4aa.png A white cylindrical bottle labeled "WHOLE" in large red letters lies horizontally on a plush, light-colored fabric surface with a beige wall and pillows in the background. +3b3c4e6792de486.png The image displays a round, metallic container filled with off-white liquid, likely milk, placed on a speckled terrazzo floor beside a door, viewed from above. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/mixing_salad_bowl_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/mixing_salad_bowl_descriptions.txt new file mode 100644 index 0000000..7b05a49 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/mixing_salad_bowl_descriptions.txt @@ -0,0 +1,3 @@ +bb5c011640e4439.png The mixing salad bowl is a shiny, metallic round bowl with a smooth texture, viewed from the side, sitting on a black induction cooktop with visible brand markings, against a light, plain wall background. +df2903680eea41b.png The white mixing salad bowl with a dimpled texture is viewed from an angled perspective, resting on a patterned purple bedspread surrounded by assorted clothing and textiles in a bedroom setting. +5c2b6f86b3ce49a.png A silver metallic mixing salad bowl with a shiny texture is positioned on a cluttered wooden desk beside a glowing laptop screen, amidst various office supplies and electronics, viewed from an overhead angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/monitor_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/monitor_descriptions.txt new file mode 100644 index 0000000..8db2ad1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/monitor_descriptions.txt @@ -0,0 +1,3 @@ +c7fc3baf5fd8482.png A dark-colored laptop, viewed from an angled top-down perspective, is placed on a wooden surface with a closed lid, surrounded by miscellaneous items against a gray fabric background. +db3a4e8f92ef4d9.png A black, rectangular monitor with a glossy screen is viewed from a slightly tilted angle, set on a white desk against a beige wall with cubby shelves and miscellaneous items nearby. +82a6640873e0491.png A hand is holding a silver laptop with visible screws and ports on the back, set against a patterned rug and a sofa, showing a partially disassembled or modified state. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/mouse_pad_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/mouse_pad_descriptions.txt new file mode 100644 index 0000000..eb5fe84 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/mouse_pad_descriptions.txt @@ -0,0 +1,3 @@ +10d70a49eeba446.png A person holds a small, dark mouse pad with subtle text or design near the top edge, set against a textured beige carpet with a foot and cable also visible nearby. +e9f0940a440d4be.png A black, rectangular mouse pad with a smooth surface is held at an angle by a hand over a bedspread featuring a deer pattern. +962e8fe0361f400.png The object appears to be a small, square, printed card or cover with colorful graphics held by a hand above a beige, textured tile background, near a basket with a white towel. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/mouthwash_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/mouthwash_descriptions.txt new file mode 100644 index 0000000..f2e8685 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/mouthwash_descriptions.txt @@ -0,0 +1,3 @@ +361aee78a8304ee.png The object appears to be a clear bottle with a greenish hue and a black cap, viewed from a low angle against a colorful, textured ceiling background with turquoise and purple elements. +de104a68d772417.png The mouthwash is in a transparent, partially filled bottle lying on its side, with a turquoise liquid inside and a white cap, set against a light wood surface with diffused sunlight filtering through white curtains in the background. +38834438df274ef.png The image shows a low-resolution view of a teal-colored liquid in a flat, oval-shaped bottle with a textured surface, positioned on a white countertop alongside personal hygiene items like a toothbrush and toothpaste. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/mug_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/mug_descriptions.txt new file mode 100644 index 0000000..3fb7978 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/mug_descriptions.txt @@ -0,0 +1,3 @@ +4e871d5cfe274e9.png The white mug with a smooth surface is lying on its side on a brown, textured fabric couch, with faint text visible on its side and the handle pointing upward. +f3d10f3438c9489.png The mug appears to be a matte black cylindrical shape with a slightly lighter interior, viewed from an angled side perspective on a white surface against a reflective dark tiled background. +01ab19084050445.png The mug is a light cream color with text on its side, viewed from a tilted angle on a wooden countertop background next to a row of labeled cream and olive green canisters. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/multitool_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/multitool_descriptions.txt new file mode 100644 index 0000000..5fbf02a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/multitool_descriptions.txt @@ -0,0 +1,3 @@ +32e5a03d407b49c.png The multitool is metallic with a silver-gray finish, featuring an open knife blade and bottle opener, positioned against a textured, speckled dark brown and yellowish background, viewed from above. +1664bcbb48e449b.png The image depicts a hand holding a dark gray multitool with metallic accents and a pair of folded plier-like jaws, positioned in a kitchen setting with a visible basket of fruit and a tile backsplash in the background. +0ca26c857165453.png A small, blue multitool with a glossy finish, held sideways between fingers, against a smooth, light-colored background, featuring visible metal layers and edges. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_clippers_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_clippers_descriptions.txt new file mode 100644 index 0000000..65ec919 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_clippers_descriptions.txt @@ -0,0 +1,3 @@ +e05d9c0df7204ba.png The nail clippers have a shiny silver metallic body with a red and blue design on the lever, viewed from a top angle on a maroon speckled surface, featuring a small attached beaded chain. +1e71fb794f394f0.png A metallic, multi-tool nail clipper is positioned on a marbled stone surface, featuring an extended nail file and a small bottle opener against a swirling dark and reddish-brown background. +206b585679054aa.png The nail clippers are metallic silver with a shiny and smooth texture, viewed from a side angle on a dark, glossy surface next to a wooden patterned background, featuring a standard lever arm design with a small file attachment visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_fastener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_fastener_descriptions.txt new file mode 100644 index 0000000..55da1f2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_fastener_descriptions.txt @@ -0,0 +1,3 @@ +db9b5efb5a5549e.png The nail fastener is a dark, metallic object with a slightly rusted texture, held laterally between fingers, against a kitchen-like backdrop featuring a blurred metallic container. +1b7d615b1a3b403.png A dark metallic nail with a flat head and a threaded shank lies horizontally on a textured brown leather surface, illuminated by warm lighting which highlights the material's sheen and creases. +05c3095427eb4f0.png The nail fastener is metallic with a smooth, reflective surface and parallel ridges along its shaft; it is held at an angle by fingers in the foreground with a blurred floral vase and patterned wallpaper in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_file_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_file_descriptions.txt new file mode 100644 index 0000000..59f270d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_file_descriptions.txt @@ -0,0 +1,3 @@ +f4a4b12f382d468.png The nail file appears metallic gray with a ridged texture on one side, positioned vertically against a light, smooth surface, featuring a distinctive pivot point near the top. +6aac3a0dc512449.png A hand holds a frosted glass nail file with a pink gradient tip, placed horizontally over a marble countertop in a bathroom setting, with visible soap and a sink in the background. +978adff40f784c0.png A small, red Swiss Army-style tool with a metallic nail file attachment partially extended, rests horizontally on a zippered cloth case in a cluttered room with visible electronics and a water bottle in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_polish_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_polish_descriptions.txt new file mode 100644 index 0000000..7d92a6f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/nail_polish_descriptions.txt @@ -0,0 +1,3 @@ +2e58966066604c4.png The nail polish bottle appears upright with a vibrant red color and glossy finish, placed against a neutral, slightly textured background, with the cap matching the polish hue. +3bba3709fd6e4d9.png The image shows a black nail polish bottle with white text, held at an angle by a hand with silver rings, against a soft-focus red quilted pad background with soft lighting. +3991385061dc42e.png A metallic purple nail polish bottle with a dark cap and white patterned base, lying horizontally on a marbled brown countertop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/napkin_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/napkin_descriptions.txt new file mode 100644 index 0000000..958d797 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/napkin_descriptions.txt @@ -0,0 +1,3 @@ +35b927bb6a244fa.png The napkin features a colorful pattern with balloons and streamers on a white background, held at an angle displaying its thin, textured paper material, and placed on a wooden table with assorted objects like a cereal bowl and packaging in the background. +533b8ee3b4f0441.png The napkin appears off-white and papery with a slightly coarse texture, held at a diagonal angle against a background of wooden flooring and a partially visible open shelving unit. +0e946c5a9c20483.png A blue and red object with a possibly glossy or smooth texture is held in a hand from the side, positioned over a light brown carpet backdrop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/necklace_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/necklace_descriptions.txt new file mode 100644 index 0000000..aa04f46 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/necklace_descriptions.txt @@ -0,0 +1,3 @@ +a973ed5faaf3441.png The necklace is silver with a twisted or rope-like texture, lying flat on a tiled floor with light beige and slightly reflective tiles. +cc06ebf615a44c0.png The necklace is golden with a shiny texture, held horizontally against a black surface, in a bathroom setting with visible plumbing fixtures and tiles, featuring a small cluster of pearls or stones at one end. +9cc833f1532f4fa.png The necklace features a delicate, silver chain entangled on a textured, dark gray surface, with a distinctive crescent-shaped centerpiece that appears white and slightly reflective. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/newspaper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/newspaper_descriptions.txt new file mode 100644 index 0000000..a94d850 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/newspaper_descriptions.txt @@ -0,0 +1,3 @@ +eef1774caf1348e.png The newspaper, appearing off-white with a prominent black header and colorful ads, is casually propped against dark, glossy wooden furniture against a beige wall, suggesting an indoor setting. +a5d4b97b66454ef.png A newspaper with a mix of gray and white pages featuring large red text is spread open on a wooden parquet floor, viewed from above with part of a person’s feet visible at the bottom. +f486ff4399924cf.png A folded newspaper with a predominantly light gray and white color scheme, featuring visible text and images, lies flat on a glossy, reflective white tile floor with part of a blue-patterned fabric nearby, viewed from a slightly elevated angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/night_light_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/night_light_descriptions.txt new file mode 100644 index 0000000..9a78695 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/night_light_descriptions.txt @@ -0,0 +1,3 @@ +d90acc8c18d946b.png The night light has a simple rectangular white casing with visible metal prongs, positioned on an outstretched hand against a background featuring a woven basket, wooden furniture, and soft interior lighting. +62621ba9dd154f2.png A hand holds a small, spherical gray night light with star-shaped cutouts on a reflective surface, set against a dimly lit room with subtle wall textures. +3635d55dc06c463.png The night light is a small, rectangular, white device with a slightly rounded top-edge, featuring a small circular sensor or bulb on one side, placed on a space-themed blanket with planet designs, adding vibrant colors to the surrounding area. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/nightstand_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/nightstand_descriptions.txt new file mode 100644 index 0000000..a8a91d5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/nightstand_descriptions.txt @@ -0,0 +1,3 @@ +231de54e4d584e7.png The nightstand is viewed from an angle, featuring a black and white color scheme with a smooth texture, placed on a stone-patterned tile floor with a pink wall and the side of a bed visible in the background, and it has two drawers with sleek, curved handles. +a87bcbc5d18d43f.png The low-resolution image shows a dark brown, box-like nightstand with a smooth texture, viewed from a low angle, surrounded by a minimalistic room with a gray floor and various boxes. +5d294671b4f14a5.png The nightstand features a two-tone design with a gray top and drawer faces, a white frame, and round white knobs, surrounded by a warm wood floor and accompanied by baby items and a plush toy in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/notebook_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/notebook_descriptions.txt new file mode 100644 index 0000000..22078d4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/notebook_descriptions.txt @@ -0,0 +1,3 @@ +03a13d66e8494e0.png The notebook has a green and blue cover with a grid pattern and visible text, lying flat on a textured carpeted floor, surrounded by indistinct furniture elements. +fd3eba10e52f458.png The notebook is white with a glossy cover featuring multiple small images and text, positioned flat on a smooth, dark gray floor, with a spiral binding on the left side and a wooden table with wheels partially visible in the upper background. +eafe8ed0e8f045b.png The notebook is a light gray spiral-bound item held upright in a dimly lit bathroom with a marbled counter, illuminated by a wall sconce and set against a window with brown blinds where a small yellow duck toy is visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/notepad_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/notepad_descriptions.txt new file mode 100644 index 0000000..2b11cb0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/notepad_descriptions.txt @@ -0,0 +1,3 @@ +42ab101119b7461.png The notepad, viewed from a side angle, has a brown textured cover with visible white pages and is placed on a speckled carpet, accented by a hand holding it. +c797b2f68e53494.png The notepad has a red top margin and lined pages, positioned at an angle on a white, slightly wrinkled bedspread, with a dark patterned floor in the background. +249ffbe0d90a4c8.png The notepad has a green cover with a cartoon image and white spiral binding, lying flat on a light-colored textured surface with a red and black object partially visible nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/nut_for_screw_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/nut_for_screw_descriptions.txt new file mode 100644 index 0000000..d1be57d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/nut_for_screw_descriptions.txt @@ -0,0 +1,3 @@ +6876512c034443e.png The small metallic hexagonal nut, with a shiny silver texture, is positioned on its side against a glossy white surface in an indoor setting with soft shadows. +eb3e91cbc3044af.png A metallic hexagonal nut with a slightly worn silver-gray texture is positioned upright on a wooden surface with visible grain lines, casting a short shadow to the side. +d7c24fc7c5964a0.png The nut is metallic and shiny with a hexagonal shape, viewed from a slightly elevated angle against a speckled granite countertop background with blurred surrounding environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/orange_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/orange_descriptions.txt new file mode 100644 index 0000000..bdcf026 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/orange_descriptions.txt @@ -0,0 +1,3 @@ +54ad232e13f2478.png A round, glossy orange with a deep orange hue and slightly textured surface sits atop a white countertop, next to a beige wall and various bathroom items. +47dcd367a5c64f1.png The orange, held in a hand against a brown couch and white fabric background, appears vibrant with a smooth texture and some subtle dimples, viewed from a side angle. +43e0920601284cb.png A bright orange spherical fruit with a smooth texture sits on a dark table in a classroom environment, with a whiteboard and light-colored floor visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/oven_mitts_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/oven_mitts_descriptions.txt new file mode 100644 index 0000000..1bda467 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/oven_mitts_descriptions.txt @@ -0,0 +1,3 @@ +bb1df2594e7648c.png A beige quilted oven mitt lies flat on the bed, partially obscured by a book with a brown and white bedsheet in the background. +3361fb5e372849e.png A dark silicone mitt with a textured grip lies flat on a black glossy surface beside a decorative box against a plain, light-colored wall. +23d5b85976ed46a.png A dark green oven mitt with a worn, slightly stained texture is viewed from above against a speckled gray surface, featuring a subtle curved shape. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/padlock_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/padlock_descriptions.txt new file mode 100644 index 0000000..70ac5ee --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/padlock_descriptions.txt @@ -0,0 +1,3 @@ +ffedd1e3f5f4474.png The padlock is metallic with a shiny, reflective surface, positioned flat on a wooden surface with visible grain patterns, featuring a circular body with embossed text, and a distinct narrow keyhole. +f79152a59bee481.png The padlock is silver with a shiny, reflective texture, viewed from a slightly angled side perspective, attached to a rusty brown metal gate, with a visible keyhole and a looped shackle. +3f1a2a7717d4450.png The padlock is metallic and circular with a shiny, reflective texture, viewed from below at an angle against a red corrugated surface background, featuring a visible shackle extending upward. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/paint_can_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/paint_can_descriptions.txt new file mode 100644 index 0000000..1782bdf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/paint_can_descriptions.txt @@ -0,0 +1,3 @@ +92333ac2ef4a42c.png A blue paint can with a partially visible white label lies on its side on a patterned pink and red fabric, featuring a white handle, and is set against a backdrop of beige curtains and a white wall. +e309ac80510344e.png A silver spray paint can with a black cap is held horizontally against a background of a beige carpet and sofa, featuring a partially visible label and subtle reflective surface. +fd3e2e76fb274d2.png A partially rusted and dented black paint can lies on its side on a speckled granite countertop, with its base showing remnants of white paint, surrounded by a cardboard box and foil, in a dimly lit kitchen environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/paintbrush_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/paintbrush_descriptions.txt new file mode 100644 index 0000000..117ec2b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/paintbrush_descriptions.txt @@ -0,0 +1,3 @@ +3bc2edd2dbb543c.png The paintbrush is mostly in profile view, featuring a slender dark purple handle and metallic section, resting against a tower-like holder with pencils, set against a bright turquoise wall and partial flag display in the background. +c7e05a30af7f414.png The image shows a paintbrush with a yellow, pointed bristle tip and a blue handle, held horizontally against a textured, light-colored wall. +33b4ad2cefb7429.png The paintbrush has a worn, reddish-brown handle with peeling paint, fan-shaped yellowish bristles, and is placed on a metallic surface next to a black stove burner with red and green stickers in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_bag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_bag_descriptions.txt new file mode 100644 index 0000000..8175faa --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_bag_descriptions.txt @@ -0,0 +1,3 @@ +aba3150ab33943e.png A brown paper bag with black printed text and handles lies flat on a tiled floor with a geometric pattern, viewed from above alongside a person wearing bright pink socks. +762ddc82fd8d476.png A crumpled, light brown paper bag viewed from above rests on a pink floral tablecloth with a checkered pattern, against a tiled, white and gray background. +1cf322c7070d434.png The paper bag is a light brown color with a smooth texture, displaying a green logo and text, held at a tilted angle with twisted handles, set against a bathroom-like environment with a wood-framed mirror and blue-striped wall backdrop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_descriptions.txt new file mode 100644 index 0000000..6a99a0e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_descriptions.txt @@ -0,0 +1,3 @@ +111db806be624a9.png A person is holding a slightly curved, white sheet of paper with faint lines of text, against a dark brown table in an open office environment with carpet flooring and scattered office supplies in the background. +76f9f412fff64e7.png The paper is plain white with a smooth texture, viewed from an overhead angle, placed diagonally on a striped bedspread with a visible bedpost and remote control nearby. +2d5af21630b846d.png The image shows a crumpled, white piece of paper held by a hand in an upright position, set against a beige tiled floor background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_plates_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_plates_descriptions.txt new file mode 100644 index 0000000..f408af7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_plates_descriptions.txt @@ -0,0 +1,3 @@ +fe1d4c25a8ee452.png A stack of white, slightly crumpled paper plates is viewed from the side with the textured edges visible, set on a pale countertop surrounded by various kitchen containers in the background. +fb912e7b1c66424.png A round, floral-patterned paper plate with pink flowers and a textured off-white background is viewed from a slightly elevated angle, resting on a wooden surface amidst scattered items. +811439d7c5284b7.png A stack of red and white paper plates with a glossy texture is viewed from the side against a soft beige and green bedsheet backdrop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_towel_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_towel_descriptions.txt new file mode 100644 index 0000000..d4087e7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/paper_towel_descriptions.txt @@ -0,0 +1,3 @@ +79a9669a093f401.png The white paper towel, held by a hand in the foreground, appears thin and slightly crumpled with its edge wavering, set against a background of a wooden table and chairs, a copper bottle, and colorful fabric. +e1fe405ef1864ba.png A white paper towel with a subtle texture is seen from above, lying flat on a light wooden floor with natural wood grain patterns, beside a piece of furniture. +578e83790770455.png A cylindrical white paper towel with a subtle embossed pattern is laying horizontally on a wooden floor, viewed from above, with a partial view of a foot in the lower right corner. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/paperclip_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/paperclip_descriptions.txt new file mode 100644 index 0000000..2b8fc56 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/paperclip_descriptions.txt @@ -0,0 +1,3 @@ +9f9972ce1a3e462.png The silver paperclip with a smooth metallic texture is held up close against a blurred wooden surface, positioned vertically between fingers showing its classic looped design. +8ae68e190fdb431.png The object is a black binder clip with metallic silver arms, positioned upright on a cream-tiled bathroom floor with a beige rug in the background, held by a hand. +30b235f855c248d.png A light blue, slightly glossy paperclip is held between fingers in the foreground, viewed from an elevated angle, with a bathroom featuring a tiled shower in the blurred background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/peeler_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/peeler_descriptions.txt new file mode 100644 index 0000000..5f7e8a6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/peeler_descriptions.txt @@ -0,0 +1,3 @@ +a747e4cf1492418.png The peeler appears metallic with a shiny silver texture, resting horizontally on a patterned white and gray fabric background with a grid design, showcasing a straight handle and a visible peeling blade in low resolution. +62b82275de1343c.png The peeler has a black, textured handle with a metal blade, lying flat on a gray tiled floor, featuring a hole at the handle's end. +6063bd6cb454480.png The peeler features a black ergonomic handle with visible finger grips, a metallic blade set horizontally, viewed from a top-down angle on a speckled beige counter, with blue and purple objects in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/pen_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/pen_descriptions.txt new file mode 100644 index 0000000..e8339b7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/pen_descriptions.txt @@ -0,0 +1,3 @@ +bc4da2c67c124f2.png The pen is dark-colored with a metallic sheen, viewed at a slight angle in a hand against a plain white background, featuring a shiny chrome tip and a clip on the side. +5f3338ae3f39421.png A white and purple retractable pen is positioned diagonally with a visible clip on a beige, textured countertop next to a sink, against a background of tiled flooring. +7d6ad8f1f550411.png The pen is metallic and copper-colored with a smooth, reflective surface, held vertically in a hand, set against a tiled kitchen background with various bottles and a sink visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/pencil_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/pencil_descriptions.txt new file mode 100644 index 0000000..f042f83 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/pencil_descriptions.txt @@ -0,0 +1,3 @@ +443d9b859eba410.png A person holds a black pencil with a sharpened wooden tip, featuring printed white text along its body, against a soft-focus white background. +4af6bbe57b8c41d.png The pencil is a light brown color with a hexagonal shape, featuring multiple round cutouts along its body, set on a glass table with a dark underlayer and scattered stones visible in the background. +819d74ad1106431.png The pencil is black with a slightly reflective, smooth surface; it is held horizontally at an angle by a hand against a plain light gray wall, with a blurred patterned background below. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/pepper_shaker_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/pepper_shaker_descriptions.txt new file mode 100644 index 0000000..1124525 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/pepper_shaker_descriptions.txt @@ -0,0 +1,3 @@ +25607dd214744f8.png The pepper shaker is a small, cylindrical glass container with a textured diamond pattern and gray metallic cap, positioned at a tilted angle against a pink tiled wall, held by a hand above a glossy black and white speckled surface. +5db41076d13d492.png The pepper shaker is a red and white rectangular box with a glossy finish, viewed from an angle held sideways by a hand, set against a contrasting dark circular tabletop and a cozy living room environment with a metal cage in the background. +e37e97b405f44e9.png The object appears as a cylindrical, off-white or beige container with subtle ridges around the top, viewed from above, placed on a light-colored countertop beside a hairbrush and some personal care items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/pet_food_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/pet_food_container_descriptions.txt new file mode 100644 index 0000000..c90fcfa --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/pet_food_container_descriptions.txt @@ -0,0 +1,3 @@ +a2560d4a04c3424.png A person holds a small, clear plastic pet food container with two matte blue caps, positioned over a beige bathroom sink, against a background featuring a toilet, an electrical outlet, and various toiletries on a countertop. +c80523b100694eb.png The pet food container is white with multicolored details and text on the front, viewed from above on a tiled floor with a pair of dark shoes visible at the bottom, featuring a visible lid and text. +698afbb018304d4.png The image shows a white, round container filled with granular, off-white material, viewed from above, placed against a light green background on a wooden surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/phone_landline_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/phone_landline_descriptions.txt new file mode 100644 index 0000000..d5d448d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/phone_landline_descriptions.txt @@ -0,0 +1,3 @@ +0bff293b1a8e447.png The phone landline appears black with a glossy texture, viewed from a slightly above angle, set against a dimly lit background with a dark surface beside a plastic container holding various items, featuring a small illuminated display and visible buttons despite the low resolution. +ee1d68a3ad9d4c4.png The phone landline appears to be light beige and smooth, held in hand from the side at a slight upward angle, with a dimly-lit interior room containing a wooden door, a coat rack, and household clutter in the background. +45450c14e0bd4d3.png A black and silver landline phone with a keypad and a small display screen is positioned horizontally on a wooden desk, surrounded by a computer keyboard and mouse, against a plain wall featuring faded colored marks. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/photograph_printed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/photograph_printed_descriptions.txt new file mode 100644 index 0000000..5832ccb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/photograph_printed_descriptions.txt @@ -0,0 +1,3 @@ +b897932bbb584b8.png The photograph printed, held over a white sink with a shiny faucet in a bathroom with gray checkered tiles, appears slightly curved with a dark background, showing a warm-toned, partially visible image featuring a person in casual attire. +0d10a1cbb6d247c.png A cream-colored photo album with a glossy, reflective surface is placed on a carpeted floor, viewed from a low angle, with a wooden holder enveloping its sides and a blurred, circular object in the background. +3fbcc18e917b4f7.png The photograph printed depicts a colorful illustration featuring a figure in a yellow dress with purple adornments, set against a vibrant green and blue background, held at an angle on a round, pink paddle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/pill_bottle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/pill_bottle_descriptions.txt new file mode 100644 index 0000000..6c71393 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/pill_bottle_descriptions.txt @@ -0,0 +1,3 @@ +e72d405f826244b.png The pill bottle is a small, white, cylindrical container with a blue and green label visible, held in an upright position by a hand against a domestic indoor background featuring a wooden surface and soft shadowing. +67153c433c6f44c.png The pill bottle is white with a blue label visible, viewed from the front, surrounded by a close-up wooden surface and partially obscured background of colored containers and cups. +6e056fd9b0634f7.png A white plastic pill bottle with a red label lies horizontally on a textured blue carpet, displaying a ribbed cap and red label text. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/pill_organizer_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/pill_organizer_descriptions.txt new file mode 100644 index 0000000..603bff0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/pill_organizer_descriptions.txt @@ -0,0 +1,3 @@ +9b38532d3613450.png A blue, rectangular pill organizer featuring seven compartments filled with pills is positioned vertically on a smooth, cream-colored surface under warm lighting, with blurred bathroom items in the background. +b0034c1a81c743f.png A blue, translucent rectangular pill organizer is being held at an angle against a beige couch, with visible day markings on its compartments. +a407e8f79208495.png The pill organizer is transparent with blue compartments labeled by the days of the week, angled diagonally on a wooden counter next to a kettle and a colorful background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/pillow_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/pillow_descriptions.txt new file mode 100644 index 0000000..561d7ed --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/pillow_descriptions.txt @@ -0,0 +1,3 @@ +9d9e4e4028604bd.png A dark green pillow with a subtle textured fabric and a visible tan seam is propped against a yellow wall, partially resting on a deep blue blanket. +8a3f6577aa6b475.png A white pillow with small patterned details is resting in a slightly crumpled pose on a bed with matching sheets, surrounded by a printed tapestry and dimly lit environment. +b9631acad0e0426.png A grey pillow with a smooth texture lies flat on a granite countertop in a bright kitchen environment, featuring a distinct dark cabinet below and a fruit bowl in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/pitcher_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/pitcher_descriptions.txt new file mode 100644 index 0000000..53c9838 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/pitcher_descriptions.txt @@ -0,0 +1,3 @@ +ca5016cd1de045a.png The pitcher is transparent with a textured grid pattern, has a bright red lid, and is standing upright on a shiny, light-colored floor next to a wall and a beige mat. +d329524fe8ce49a.png A transparent, faceted glass pitcher with a green lid is positioned in the foreground at an angle on a white table, surrounded by a domestic setting with red roses and decorative candle holders in the background. +380e7c2fc770404.png The pitcher is a translucent, deep purple color with a glossy finish, held sideways in a living room environment with wood-paneled walls and a small cuckoo clock in the background, featuring a simple, curved handle design. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/placemat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/placemat_descriptions.txt new file mode 100644 index 0000000..014ad39 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/placemat_descriptions.txt @@ -0,0 +1,3 @@ +9d742c6bd6f0426.png The placemat is a rectangular, light brown object with a striped texture, viewed from above on a reddish floor, featuring a dark central band, and is situated near a blue plastic chair and a resting dog. +2d75afa14b4e466.png A white, slightly crumpled fabric with subtle folds lies atop a dark wooden dresser in a bedroom environment, with framed pictures on the wall and a patterned curtain visible in the background. +fc416338587a4f5.png The object appears to be a book with a dark cover resting partially open on a textured, light-colored bedspread in a softly lit bedroom environment, featuring a tufted headboard and pillows. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/plastic_bag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/plastic_bag_descriptions.txt new file mode 100644 index 0000000..56ea0a2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/plastic_bag_descriptions.txt @@ -0,0 +1,3 @@ +5864d4d39d9046c.png The plastic bag appears to be translucent white with a slight crumpled texture, viewed from above in a kitchen environment, held by a person kneeling on a light-colored tiled floor with a pet bed nearby. +3208a4c0ef2445e.png A semi-translucent white plastic bag with a blue recycling logo and text is crumpled and resting in a bathroom sink, surrounded by various toiletries and a razor on a beige countertop. +a12b1735042e4d7.png A small green plastic bag with white circular patterns is lying flat on a wooden table surface surrounded by various items, including a tin can, a water bottle, and a red box, viewed from an angle slightly above. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/plastic_cup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/plastic_cup_descriptions.txt new file mode 100644 index 0000000..077dc51 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/plastic_cup_descriptions.txt @@ -0,0 +1,3 @@ +7f9fa2ea9186486.png The plastic cup features a red rim and patterned design with comic-style graphics, seen in an inverted position from a slightly angled side view against a background of a window, a brown textured couch, and crumpled fabric. +c17a5c1b41b3444.png A glossy blue plastic cup is placed on its side atop a black bag on a beige-patterned surface, surrounded by a white hanger, a remote control, and a cluttered room in the background. +514326fb3a4a498.png A white plastic cup with horizontal ridges is stacked upside-down on a black container, viewed from a slightly elevated angle, surrounded by a cluttered table with various bottles and papers. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/plastic_wrap_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/plastic_wrap_descriptions.txt new file mode 100644 index 0000000..9cad009 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/plastic_wrap_descriptions.txt @@ -0,0 +1,3 @@ +b8c503e80378461.png A multicolored box labeled "plastic wrap" lies on a textured brown carpet, surrounded by a wooden floor and a plastic bag, featuring a prominent fruit design on its packaging. +e28778dfdefc496.png A yellow box of Glad ClingWrap with red and white branding and an image of a pineapple is placed diagonally on a wooden countertop next to plastic cutlery holders. +33ddbd473bc74ca.png A hand holds a small, partially translucent plastic wrap box with a mostly white exterior and a hint of red on one side, set against a tiled floor background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/plate_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/plate_descriptions.txt new file mode 100644 index 0000000..624f520 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/plate_descriptions.txt @@ -0,0 +1,3 @@ +f0d7a9b43a824fd.png A white ceramic plate with a faint shine and a central black mark is held vertically by a hand over a colorful patterned fabric backdrop, featuring vibrant circular and geometric designs in blue, orange, and green. +f310da5a268940e.png The round metallic plate, seen from a top-down view, has a shiny silver texture with intricate embossed patterns along the rim and center, and it is placed on a black induction cooktop with the brand name "Preethi" visible in the background. +67330ab297bc46a.png The plate is off-white with a subtle orange floral pattern, held at an angle above a kitchen counter with a black surface and a window in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/playing_cards_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/playing_cards_descriptions.txt new file mode 100644 index 0000000..e6c6ea3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/playing_cards_descriptions.txt @@ -0,0 +1,3 @@ +dc7563c36a734c4.png A slightly worn, primarily black and white deck of playing cards is viewed edge-on from a slight angle, held in a hand against a neutral-colored surface with a barcode visible at one end. +779ade06d970456.png The playing cards box is primarily black with a red side, featuring a large spade symbol with intricate detailing at the center, viewed from an angle that shows the front and side, set against a reflective glass table background. +3f77a73a10ca453.png The playing cards show a colorfully illustrated character with a red diamond symbol, held by a hand against a blue-tiled background with a yellow rubber band securing the deck. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/pliers_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/pliers_descriptions.txt new file mode 100644 index 0000000..7bd2b5b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/pliers_descriptions.txt @@ -0,0 +1,3 @@ +1754ff41582e44c.png A pair of needle-nose pliers with black rubber handles and a metallic tip is resting on a speckled countertop, viewed from above, with a kitchen appliance partially visible in the background. +486ad9ac77f84b0.png The pliers have orange and black rubber grips with a rusted brown metal nose, viewed from the side against a blue patterned fabric with leaf and star motifs. +c9694adb7cf8417.png The pliers have black rubber grips with a red accent, a shiny metallic jaw seen in a three-quarters view, held in a hand against a light-colored kitchen countertop background with a stove visible nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_aug/plunger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_aug/plunger_descriptions.txt new file mode 100644 index 0000000..45811b2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_aug/plunger_descriptions.txt @@ -0,0 +1,3 @@ +56e6ebcc5599481.png The plunger features a light wooden handle and a reddish-brown rubber cup with a slightly shiny texture, positioned upright on a dark fabric couch, with visible stitching and part of a sectional couch background. +7011b7abd53f4ba.png The plunger has a black rubber suction cup and a white handle with a black ergonomic grip, leaning diagonally against a wooden door in a room with a wooden floor and a white wall, set next to a white appliance. +ec1293b4275e404.png A black accordion-style plunger with a ribbed texture is lying on a tiled bathroom floor at a slight angle, near a toilet and next to a dark patterned mat with an ornate design. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/air_freshener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/air_freshener_descriptions.txt new file mode 100644 index 0000000..1406b16 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/air_freshener_descriptions.txt @@ -0,0 +1,3 @@ +e67e1b83eb66442.png A person is holding a cylindrical air freshener with a shiny, gold-colored cap and label featuring an illustration of vanilla and spices, against a background of wooden furniture and a gray carpet. +8e0dd788f0ec4e7.png The air freshener is a cylindrical canister with a predominantly blue label featuring white text and is viewed from a slightly elevated angle on a tiled surface, surrounded by a cluttered background including a laundry basket and folding chair. +26d4dd2f5c16426.png The air freshener is a cylindrical spray bottle with an orange cap and gradient label transitioning from yellow to orange featuring a leaf design, held at a slight angle against a wooden shelf with a dark vase and a picture frame in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/alarm_clock_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/alarm_clock_descriptions.txt new file mode 100644 index 0000000..5c6d8fc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/alarm_clock_descriptions.txt @@ -0,0 +1,3 @@ +51997a57ba6948b.png A black digital alarm clock with a rectangular shape is angled slightly towards the right, displaying "22:54" in a gray-blue screen, set against a wooden floor with visible grain patterns. +9afa9bf642e243a.png The photo shows a white and black device with a perforated texture placed on a reflective table, viewed from a side angle against a softly lit background of sheer, patterned curtains. +c21c96d0829d447.png The alarm clock is cube-shaped with a bright green face and white numbers, seen from a tilted angle with a black mesh organizer and white bedding in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/backpack_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/backpack_descriptions.txt new file mode 100644 index 0000000..3cfc19b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/backpack_descriptions.txt @@ -0,0 +1,3 @@ +de8efedb7ab54eb.png The backpack is primarily black with gray accents, featuring a smooth texture and multiple zippers, viewed from a side angle against a tiled white wall and gray floor, making its side pockets and shoulder straps visible. +7fa0726e54684f9.png The backpack features a black base with vibrant orange accents and geometric triangle patterns, seen from a side angle against an indoor background with shelves, and it includes a mesh section and the word "PRODIGY" printed on the front. +165fd8c71b9643b.png The backpack is black with a matte texture, featuring bold, white lettering and a roll-top design, held in a hand against a plain, light-colored wall backdrop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/baking_sheet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/baking_sheet_descriptions.txt new file mode 100644 index 0000000..9eb8295 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/baking_sheet_descriptions.txt @@ -0,0 +1,3 @@ +069384740bd74ea.png The baking sheet appears to be smooth and matte black, viewed at an angle while being held over a textured, light gray armchair, with a dark cloth and a blue sofa in the background. +74de5289a99c4dc.png A matte beige baking sheet with a smooth texture is held at a slight angle by a hand against a kitchen backdrop featuring light-colored tiled flooring, wooden furniture, and a multicolored mat. +1a814cc8fa50494.png The baking sheet is metallic and slightly tarnished with a smooth texture, viewed upright with a hand holding it against a kitchen backdrop featuring hanging pots, a bowl of fruit, and a white door with a calendar. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/banana_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/banana_descriptions.txt new file mode 100644 index 0000000..a6d42e1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/banana_descriptions.txt @@ -0,0 +1,3 @@ +d3b0651d852e449.png The banana is a ripe yellow with small brown spots and slight bruising, lying horizontally on a wooden desk next to a black keyboard and wire, with a textured skin and a subtle curve. +fc8c194769e4490.png A bunch of slightly speckled, vibrant yellow bananas is resting on a white wire fruit stand, viewed from an angled side perspective, against a beige wall with a partial view of a clock in the upper background. +487d3adb722f495.png The banana is curved and mottled with brown spots over a yellow base, lying on a white kitchen countertop with a slight diagonal orientation, and its distinct blackened stem contrasts against the muted background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/band_aid_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/band_aid_descriptions.txt new file mode 100644 index 0000000..0bcbc97 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/band_aid_descriptions.txt @@ -0,0 +1,3 @@ +a85bf142b9ef4c6.png A beige band aid with a smooth texture and rounded edges is positioned horizontally on a textured, dark woven fabric background. +7832bef3a597421.png The band aid is beige with a smooth texture, viewed from a side angle against a floral patterned tablecloth, near a blue and orange box in an indoor environment. +4729d90d10104d7.png The band aid is beige with a faint white strip across the center, placed upright against a light blue, ridged plastic stool on a textured tiled floor beside a brown squat toilet. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/baseball_bat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/baseball_bat_descriptions.txt new file mode 100644 index 0000000..d285288 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/baseball_bat_descriptions.txt @@ -0,0 +1,3 @@ +7c5ee434c842428.png The baseball bat is matte black with a grayish grip, held vertically against a plain white wall and beige carpet, featuring blue text and a subtle pattern near the wider end. +bacef9265f78413.png The baseball bat has a red cap with a black handle grip, viewed from an overhead angle against a tiled floor, with visible cabinetry and an open drawer in the background. +7cff7ccc0c784fd.png The baseball bat is light brown with a smooth, matte texture, lying horizontally across a white countertop in a kitchen setting with a stove and backsplash in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/baseball_glove_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/baseball_glove_descriptions.txt new file mode 100644 index 0000000..90af01a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/baseball_glove_descriptions.txt @@ -0,0 +1,3 @@ +086236fa2bf3444.png A brown leather baseball glove with visible stitching lies open on a light-colored carpeted floor, viewed from an angled top perspective, surrounded by scattered household items. +bbcf7b23124e449.png The baseball glove appears dark with lighter tan accents, lying open and horizontally on a wooden floor, held by a partially visible person in casual attire. +e47d29d86ecb4e3.png A dark brown baseball glove with light tan lacing is leaning upright against a silver appliance on a speckled countertop in a kitchen setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/basket_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/basket_descriptions.txt new file mode 100644 index 0000000..2889841 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/basket_descriptions.txt @@ -0,0 +1,3 @@ +a831dd89958a4cf.png A white wire laundry basket sits on top of a washing machine, filled with assorted towels and clothes, set against a cluttered laundry room environment with a shelf above. +f4f1ce6a5873481.png The object is a pink plastic basket with an open lattice design held upright, featuring a textured handle that includes striped bands, set against a neutral indoor background with a window and vertical bars to the right. +8bacce005dec424.png A tan, woven basket with a tall wooden handle is filled to the brim with assorted small containers, set against a cozy bedroom environment with a blanket-covered bed. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bathrobe_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bathrobe_descriptions.txt new file mode 100644 index 0000000..27908db --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bathrobe_descriptions.txt @@ -0,0 +1,3 @@ +57a94c686b9941f.png A soft, light pink bathrobe with a plush texture hangs from a hook on a light green tiled wall in a bathroom, partially open with a visible belt tied at the waist. +9413d58bd9e7431.png A light-colored, possibly beige bathrobe hangs from an extended arm, with a textured fabric visible from an upward angle, set against a tiled bathroom environment with partial lighting fixtures on the ceiling. +2d21cfc66dc54b8.png A low-resolution image shows a red and black plaid bathrobe with a soft texture, lying flat on a marble floor with no prominent background elements visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/battery_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/battery_descriptions.txt new file mode 100644 index 0000000..cf757b8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/battery_descriptions.txt @@ -0,0 +1,3 @@ +7aa915a2ae4b4f9.png The battery has a glossy black and copper-colored casing with the "Duracell" label visible, held horizontally by a hand against a kitchen background with floral wallpaper, a refrigerator, and a white door. +00a24f7a7b1343e.png The battery is silver with red accents, held horizontally between fingers against a speckled granite countertop background, featuring visible brand text and a metallic sheen. +c8f90116eedb44a.png The battery is a cylindrical "GP Heavy Duty" with a mostly worn blue and white label, viewed from the side against a plain, light gray background, with noticeable scuff marks and a slightly flattened viewpoint. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bed_sheet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bed_sheet_descriptions.txt new file mode 100644 index 0000000..def01fb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bed_sheet_descriptions.txt @@ -0,0 +1,3 @@ +415557a494b1483.png A pale blue, wrinkled bed sheet is draped unevenly over various kitchen appliances and utensils, positioned upside down in a bright, tiled kitchen environment with colorful objects on shelves below. +3ad1cda6d4124d4.png A dark green, intricately patterned bed sheet with white circular floral designs is folded and placed on a beige plastic chair against a marbled gray floor and off-white wall. +ca5015fbbe694cd.png The bed sheet features a bold black and white floral pattern with large, intricately detailed flower motifs, viewed from a slightly elevated angle, resting on a light-colored surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/beer_bottle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/beer_bottle_descriptions.txt new file mode 100644 index 0000000..9ba7bcc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/beer_bottle_descriptions.txt @@ -0,0 +1,3 @@ +f19cf9f2585c4dd.png A brown, partially transparent beer bottle with a visible white label lies horizontally on a dark, glossy countertop with a blurred, light-colored wall in the background. +aacf116ff213483.png A green beer bottle with a red and white label is lying horizontally on a dark wooden surface, surrounded by faint industrial items, including a hose and cables. +ea3eec73fa464ac.png A brown glass beer bottle is upside-down on a wooden table, featuring a mostly white label with a blue ribbon design, amidst a cluttered background with papers and a lamp near a window. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/beer_can_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/beer_can_descriptions.txt new file mode 100644 index 0000000..ed9fb02 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/beer_can_descriptions.txt @@ -0,0 +1,3 @@ +9a0862c159c44b6.png The beer can is orange with a minimalist design and is being held horizontally by a hand over a wooden table, in a home environment with visible chairs and doors in the background. +8a16a41d01d14fd.png A hand holds a beige, metallic can with a red emblem near the top, viewed from the side, against a dimly lit room featuring a ceiling fan and window blinds in the background. +e99ea9e9ea5a471.png A horizontally positioned beer can with a predominantly dark color scheme features reflections from a metallic surface, set against a blurred kitchen countertop background near a stainless steel sink. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/belt_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/belt_descriptions.txt new file mode 100644 index 0000000..a23539f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/belt_descriptions.txt @@ -0,0 +1,3 @@ +e80cd0b9adbf44d.png The belt is a light brown leather with a matte finish, seen from a top-down viewpoint, lying on a deep green and red quilted fabric background with floral patterns, featuring a silver rectangular buckle. +263aedc40a6d452.png A black belt with a shiny, metallic buckle is laid flat and diagonally across a leopard-print couch, blending subtly with the patterned background. +57a38962f3cd42c.png A dark green belt with a smooth texture is partially coiled on a tiled floor near a woven mat and fabric items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bench_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bench_descriptions.txt new file mode 100644 index 0000000..6d8b88e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bench_descriptions.txt @@ -0,0 +1,3 @@ +64058da6dcde4a8.png A dark-colored chair with a simple design is seen from a side angle on a wooden floor, next to a cluttered space with clothes and a refrigerator adorned with photos and notes. +fa12185d6e77461.png The dark wooden object, resembling a small bench or stool, is tilted on its side on a speckled tile floor in front of a barred window with soft light filtering through, creating a stark contrast in the dimly lit room. +6aca88743def4dd.png The bench is made of light brown wood with a smooth texture, viewed from a slightly elevated angle, positioned on a concrete surface with a brick wall and a large window reflecting trees in the background; it features a simple, sturdy design with a solid backrest. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bicycle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bicycle_descriptions.txt new file mode 100644 index 0000000..3eb2cf0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bicycle_descriptions.txt @@ -0,0 +1,3 @@ +c376f7e021a0441.png A dark green bicycle with a metal frame is viewed from the side, resting against a textured brick wall background, with visible highlights on its wheels and a front basket. +ecce0e0a37234af.png The bicycle is a small children's bike with a red and black frame viewed from a side angle, positioned on a beige tiled floor in a living room setting, with a black handlebar and a teddy bear on a blue sofa in the background. +1eb08585774f4c3.png The bicycle is lime green with black accents, viewed from the side lying on a geometric-patterned tiled floor in an indoor space, featuring a small, sleek frame with noticeable training wheels. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bike_pump_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bike_pump_descriptions.txt new file mode 100644 index 0000000..dd1d28e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bike_pump_descriptions.txt @@ -0,0 +1,3 @@ +e16e61d17fb74f6.png The bike pump is black with a visible logo or text, featuring a sleek cylindrical body, T-shaped handle, and foot braces; it lies horizontally on a wooden floor, viewed from an angled overhead perspective, with a foot in the foreground suggesting human presence. +a31c23541dee489.png A black, compact, cylindrical object with a smooth texture is held in a hand against a dark fabric background, viewed from a slightly top-side angle, with three subtle grooves visible near the center. +b123d52975bb40a.png The bike pump is metallic grey with a blue handle and base, viewed from a side angle, leaning against a bed with a patterned cover, on a tiled floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bills_money_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bills_money_descriptions.txt new file mode 100644 index 0000000..a7a6810 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bills_money_descriptions.txt @@ -0,0 +1,3 @@ +26d1486f5762480.png A folded light-colored banknote, featuring text and emblem details, lies on a dark wooden desk with a keyboard and mouse visible in the background. +868b72996c8942a.png A horizontally held, crumpled green-toned bill with visible white edges, is being held pinched between fingers, contrasted against a coarse, light carpeted background. +c3a3ec3b26194c1.png A folded bill with a prominent portrait, primarily green and off-white, is positioned upright on a white toilet seat, set against a tiled bathroom wall with a toilet cistern and cleaner bottle partially visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/binder_closed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/binder_closed_descriptions.txt new file mode 100644 index 0000000..cd7b5e4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/binder_closed_descriptions.txt @@ -0,0 +1,3 @@ +2ae9325a45e4458.png A sky-blue, matte-textured binder lies closed at a slight angle on a carpeted floor, with metal rings partially visible along its edge and surrounded by a dimly lit room featuring furniture and storage boxes in the background. +d4f3a4e7e780431.png A white binder with a slight glare is lying flat on bright green carpet, viewed from the side, amidst a setting with wooden furniture and colorful toys in the blurred background. +20fd06f721354ab.png A white binder, viewed from above, lies flat on a dark, reflective surface with a visible one-inch wide circular hole near the top left corner, framed by kitchen items such as a pan and skillet with a tiled floor in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/biscuits_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/biscuits_descriptions.txt new file mode 100644 index 0000000..68f5293 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/biscuits_descriptions.txt @@ -0,0 +1,3 @@ +f93cb312354342d.png Two round, lightly browned biscuits with a slightly uneven texture are visible from a top-down angle inside a clear plastic bag on a light-colored tiled surface, with a blue striped cloth nearby. +ecd49aa7959c46f.png A person is holding an oblong, light brown biscuit with a rough, textured surface against a wood-grain backdrop. +49eba4a32864496.png A round, cream-colored biscuit with a swirl pattern on top, viewed from a slight overhead angle against a textured white surface, stands out with its distinct creamy hue and central holes, while a blurred table and cup are subtly discernible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/blanket_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/blanket_descriptions.txt new file mode 100644 index 0000000..cc27937 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/blanket_descriptions.txt @@ -0,0 +1,3 @@ +a7582779139c4c6.png A multicolored blanket with a floral pattern, mainly in shades of red, green, and blue, is held vertically in a dimly lit bathroom, reflected in the mirror above a light-colored countertop and sink. +9ecb23561c1f494.png The blanket is light gray with a soft texture, featuring a dark trim on one edge, folded and resting on a tiled floor between a wooden chair and a desk in a low-light room. +f9cd0dec50ff42d.png A blue blanket with red circular patterns is draped over a person lying on a striped pillow against a maroon-brown floor, with a red cylindrical object nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/blender_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/blender_descriptions.txt new file mode 100644 index 0000000..a3e866d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/blender_descriptions.txt @@ -0,0 +1,3 @@ +cbbd27dfb53a42e.png The blender, viewed from above, appears predominantly black with a metallic rim, set against a dimly lit background with some circular containers visible nearby. +4630eeee1fcf4e0.png The blender is white with a cylindrical design, positioned horizontally on a tiled floor with a glimpse of kitchen items nearby, featuring a simple control knob on the side. +5b5bc15ed6ee48b.png The blender has a sleek, black base with a transparent square container, viewed from above and slightly tilted in a bathroom setting, with a countertop featuring toiletries and a red cloth in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/blouse_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/blouse_descriptions.txt new file mode 100644 index 0000000..ea75682 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/blouse_descriptions.txt @@ -0,0 +1,3 @@ +d553c68435444b5.png The blouse is a floral-patterned fabric with a mix of red, blue, and yellow on a white background, lying flat on a bed with brown bedding in a room with closed blinds in the background. +c3f45e46178b481.png The blouse is a shiny, metallic teal with a crinkled texture, viewed from the side and laid flat against a brown background patterned with multicolored stars, featuring short sleeves and intricate embroidery near the shoulders. +07b4eaedff54484.png A turquoise blouse with a slightly shiny texture is being held in a hallway, with its left side draped over the handlebars of a bicycle, and a doorway with visible ceiling beams in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/board_game_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/board_game_descriptions.txt new file mode 100644 index 0000000..79f3c92 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/board_game_descriptions.txt @@ -0,0 +1,3 @@ +ff365af3f53841c.png A person is holding a mostly black box with bold yellow text and vibrant red graphics, featuring a depiction of a duel scene, in a cluttered bedroom setting. +8a566043fd854e5.png A person in a blue sleeve holds a vertically oriented game box that is black with intricate designs and a visible board layout, set against an orange and green bed background. +fea00ae6e5a541c.png A black box with white text on the cover sits atop a quilted gray fabric surface, with a cluttered background featuring stacked square items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/book_closed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/book_closed_descriptions.txt new file mode 100644 index 0000000..fae8eba --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/book_closed_descriptions.txt @@ -0,0 +1,3 @@ +edea72f651dd442.png The book is closed with a dark-colored cover, resting horizontally on a creased, dark gray upholstered couch, with a plain off-white wall as the background. +b2c994e0702f4a3.png A small, closed book with a colorful cover featuring a printed image lies on a stone tile floor with scattered clothes nearby, and is viewed from above. +fcb91a04cd514ac.png The closed book, positioned on a tiled floor and viewed from a slight angle, features a partly visible human figure on the cover with large text, and appears to have a dark, possibly blue and white color scheme, partially shadowed by the dim lighting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bookend_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bookend_descriptions.txt new file mode 100644 index 0000000..8b7586d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bookend_descriptions.txt @@ -0,0 +1,3 @@ +2a8ded5b08714f4.png The bookend is a gold, metallic, duck-shaped figure with a smooth texture, seen resting horizontally on a speckled granite-like surface in a kitchen or countertop environment. +f311ae3c24c9427.png A black, L-shaped bookend with a smooth texture is held horizontally against a blue and white polka-dotted cushion in a dimly lit room with beige walls and a visible light switch. +97e65d55b87f485.png A wooden bookend with a varnished finish is held vertically on a wooden table, contrasting against a cream-colored wall with a shadow cast behind it. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/boots_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/boots_descriptions.txt new file mode 100644 index 0000000..0a10713 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/boots_descriptions.txt @@ -0,0 +1,3 @@ +3a311bd8d90b4cb.png The boots are black with a matte texture, viewed from the side atop a tiled surface in a dimly lit room with curtains and a kitchen sink in the background. +bb80017ef3f3466.png A pair of black, suede-textured boots are displayed on a carpeted floor, viewed from above, with one boot standing upright and the other lying on its side, surrounded by a subtle brown-toned carpet and a person's leg in the frame. +bc5eb8a570b64ce.png The black leather boot, viewed from the side and positioned on a kitchen countertop, features a sleek design with laces undone, contrasting against a backdrop of wooden cabinets and various kitchen appliances. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bottle_cap_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bottle_cap_descriptions.txt new file mode 100644 index 0000000..60a1c9f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bottle_cap_descriptions.txt @@ -0,0 +1,3 @@ +82b3cfccec4d4fa.png The bottle cap is black with a ribbed texture, positioned upright on its side against a blue and black abstract background. +fc23f1c3b5c34d5.png The blue bottle cap sits flat on a grey and white patterned fabric with geometric designs, appearing smooth in texture with no visible logos or markings. +ef251bc4ee134f5.png The translucent, ridged bottle cap is viewed from a side angle resting on a wooden surface, with a blurred background that hints at an indoor environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bottle_opener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bottle_opener_descriptions.txt new file mode 100644 index 0000000..46ff5d2 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bottle_opener_descriptions.txt @@ -0,0 +1,3 @@ +e95c2b2a8afb4ca.png The bottle opener is metallic with a brushed texture, resting flat on a dark, speckled countertop next to various items including a box of matches, with a slightly curved, narrow body and a standard open-loop design at one end. +a424c54d5e68467.png The bottle opener resembles a red soda bottle with a shiny metal cap opener at the top, shown from a top-down angle on a glossy white tiled floor background. +24819be0e6df4ca.png The metallic bottle opener is a silver winged corkscrew-type tool with a smooth, shiny texture, viewed from the side lying on a glass table next to a hand, with a partially visible glass, a spice rack, and some bottles in the blurred background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bottle_stopper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bottle_stopper_descriptions.txt new file mode 100644 index 0000000..cfa5609 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bottle_stopper_descriptions.txt @@ -0,0 +1,3 @@ +452df7d72b4d4b2.png The bottle stopper is metallic with a shiny silver finish, featuring a conical top and spiraled black rubber grip, held hand sideways over a kitchen countertop with utensils and a toaster visible in the background. +1cff7b51c9db4ff.png The bottle stopper features a shiny silver top with a black ribbed body, viewed from an angled side perspective, and is set against a dark, smooth background. +38f92826b94f4a5.png The bottle stopper is a light beige color with a smooth, matte texture, held upright between fingers against a blurred background of a beige couch and blankets. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/box_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/box_descriptions.txt new file mode 100644 index 0000000..2578f6c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/box_descriptions.txt @@ -0,0 +1,3 @@ +d2a16671d7544f7.png The box is orange with an assortment of snack logos, displaying a "12 Pack" label in black, held at an angle revealing its top and side against a tiled kitchen floor background. +5060991bbe68402.png The box is predominantly green with a smooth texture, featuring colorful images of toy construction vehicles against a partially visible indoor background with chairs, viewed from an angle with its top lid slightly open, showcasing a distinctive striped caution tape design along its edges. +3c5ddb0ae4fb4a9.png A brown cardboard box with black labels is viewed from the side at a slight downward angle, stacked atop other boxes and set against a dark floor with a blue storage container and some clothes partially visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bracelet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bracelet_descriptions.txt new file mode 100644 index 0000000..1dd7cbc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bracelet_descriptions.txt @@ -0,0 +1,3 @@ +d68df25fe65646f.png A thin, metallic bracelet with a smooth texture is lying flat on a dark, matte surface, appearing circular and featureless with a slight reflective sheen. +70250af040eb4e8.png The bracelet on the right appears to be composed of red beads arranged in a circular pattern, with a slightly shiny texture, laid flat on a wooden surface beside a computer mouse and various desk items, visible from a top-down perspective. +4ed865a53370400.png The bracelet features a circular gold design adorned with clear and yellow stones, set on a dotted, maroon fabric background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bread_knife_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bread_knife_descriptions.txt new file mode 100644 index 0000000..19787e8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bread_knife_descriptions.txt @@ -0,0 +1,3 @@ +ad6238d21caf460.png The bread knife has a silver serrated blade and a black handle with rivets, lying flat on a dark countertop against a kitchen backdrop with a white appliance and vegetables underneath. +7178639266fd490.png The bread knife features a serrated metallic blade with a black handle, positioned diagonally on a rumpled grey bed sheet background with pillows in view. +b9eb5885431443c.png A person is holding a bread knife with a light-colored, smooth handle and a serrated blade, against a dimly lit wooden floor background cluttered with objects. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bread_loaf_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bread_loaf_descriptions.txt new file mode 100644 index 0000000..dd9f3d8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bread_loaf_descriptions.txt @@ -0,0 +1,3 @@ +6030ecc4ae1d4e0.png The bread loaf, seen in a partially transparent plastic package held by a hand in a bathroom environment, has a light brown color with a slightly textured surface, suggesting a sliced oat variety. +e56468a354ce4a1.png The bread loaf is packaged in a branded plastic wrap displaying the word "WHITE," with a golden-brown oval shape, smooth texture, and is situated horizontally on a wooden bench in a room with similarly colored wood paneling. +3b7105ce487a439.png A loaf of bread in a plastic bag sits on a fabric-covered surface, displaying a light brown and golden crust with visible wrinkles and folds, viewed from the side at an angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/briefcase_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/briefcase_descriptions.txt new file mode 100644 index 0000000..4602256 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/briefcase_descriptions.txt @@ -0,0 +1,3 @@ +daa4a87ba9cf49b.png A dark gray, hard-shell briefcase with a black handle is viewed at an angle from above, placed on a colorful patterned cloth surface, featuring silver accents at the top including a number lock mechanism. +a011799ba98a44e.png A black hard-shell briefcase with a smooth, curved top and a side handle is positioned lying flat on a patterned carpet, featuring wheels and reinforced corners visible in a dimly lit interior space. +012284321773437.png A black and silver hard-shell briefcase with metallic edges is seen from a side view, resting on a patterned bedspread with a bookshelf and a cardboard box in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/brooch_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/brooch_descriptions.txt new file mode 100644 index 0000000..357a785 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/brooch_descriptions.txt @@ -0,0 +1,3 @@ +ebd6b28035f5448.png The brooch is a delicate piece featuring alternating rows of turquoise and gold beads on a textured gold base, viewed from an angled top perspective against a plain, lightly wrinkled fabric background. +431ee1d875d5457.png The gold-toned brooch features a sleek, elongated shape with a single clear gemstone at one end, lying on a marbled stone surface with shades of brown and gray, viewed from an angled top perspective. +fecbbb8950b842b.png The brooch features a prominent turquoise stone with dark veining set in a brown, triangular frame, held at an angle in a hand with painted nails against a bathroom countertop with a white sink and a roll of toilet paper in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/broom_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/broom_descriptions.txt new file mode 100644 index 0000000..a75cb43 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/broom_descriptions.txt @@ -0,0 +1,3 @@ +e0a85214ada945b.png The broom in the image features a beige wooden handle with a black and red bristle head lying diagonally against a plain white wall, with a background comprising a wooden floor, an orange chair, and a part of a wooden desk. +c96be70cad2e46b.png The broom in the image has a straight, thin, red handle with a black bristle head, leaning diagonally across a doorway in a carpeted room, with a light-colored wall and another room in the background that features a window and furniture. +74bf53f442c948a.png The low-resolution image shows a broom with a blue handle leaning against a wooden kitchen chair, with a dark bristle head visible against a background of a cluttered kitchen featuring wooden cabinets and a bright overhead light. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/bucket_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/bucket_descriptions.txt new file mode 100644 index 0000000..d1ffc66 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/bucket_descriptions.txt @@ -0,0 +1,3 @@ +a1f589768f3c4da.png The bucket is white with a smooth texture, featuring a teal rim, being held at an angle in a kitchen environment with wooden flooring and stainless steel appliances. +594416546da34e6.png The image features a bright green plastic bucket with a smooth texture, displaying a red interior, viewed from above at a slightly tilted angle on a wooden floor, surrounded by various household items including a nearby pink object and a shelf of jars. +765939f7b2f8471.png The yellow bucket with a smooth texture is upright on tan tile flooring, featuring a metal handle and a printed label, situated next to a kitchen area with a broom leaning against the wall in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/butchers_knife_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/butchers_knife_descriptions.txt new file mode 100644 index 0000000..985c3c8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/butchers_knife_descriptions.txt @@ -0,0 +1,3 @@ +527fd1d3af0c453.png The butcher's knife, viewed from a first-person perspective against a tiled floor background, has a white handle and a shiny metal blade with visible light reflections, held in a downward orientation. +633c2bfe331f496.png A black-handled butchers knife with a shiny, possibly stainless steel blade lies flat on a speckled countertop, displaying three visible rivets on the handle while surrounded by various objects, such as a lighter and lotion, amidst a dimly lit kitchen or living area. +f8020ee0b4b54d9.png A black-handled butcher's knife with a metallic blade featuring a series of vertical indentations is held in a hand over a blue and white plaid-patterned cushion. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/butter_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/butter_descriptions.txt new file mode 100644 index 0000000..ced3aed --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/butter_descriptions.txt @@ -0,0 +1,3 @@ +8ecb8d142444423.png A small block of butter wrapped in a white and partially visible printed paper rests on a flat yellowish surface, seen from a slightly angled overhead perspective, with a soft shadow indicating overhead lighting. +167bf9310afb46f.png A pale yellow block of butter with smooth, slightly uneven surfaces is viewed from above, placed in a white dish, set against a backdrop of colorful printed newspapers, and partially covered with a yellow lid. +7b744741204e4d2.png The butter is encased in a rectangular blue and silver package with a nature-themed illustration, set on a dark, speckled countertop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/button_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/button_descriptions.txt new file mode 100644 index 0000000..7df5c7e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/button_descriptions.txt @@ -0,0 +1,3 @@ +08a08cec5e08447.png The button is a round, metallic object with a dark top and shiny rim, viewed from a tilted side angle on a wooden surface, with a blurred background featuring a laptop and some containers. +af05dbf5e3a1405.png The button is a light cream color with a smooth, glossy texture, seen from a slightly elevated side angle, attached to a soft, polka-dotted fabric in a domestic kitchen setting surrounded by papers on a bulletin board. +e8d13958e204478.png A small, purple button with embossed text sits on a light blue fabric, bordered by a decorative stitch, against a textured brown background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/calendar_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/calendar_descriptions.txt new file mode 100644 index 0000000..a1f7178 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/calendar_descriptions.txt @@ -0,0 +1,3 @@ +7245f7f3a13d426.png The calendar features a vibrant image with a golden arch framing a colorful deity, set against a cream background, viewed at an angle showing partially visible pages with prominent black and white date text on top. +a1d72a2d5234476.png The calendar features white squares filled with handwritten colorful annotations and doodles, including pumpkins and party hats, viewed from an angled yet semi-overhead perspective, set against a kitchen environment with visible cabinets and a stove. +e06e87bd46c0406.png The calendar, hanging on a teal-colored wall, features vibrant multicolored images of deities against a black backdrop, adorned with a small plush toy and surrounded by household items in a rustic indoor setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/can_opener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/can_opener_descriptions.txt new file mode 100644 index 0000000..09562f3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/can_opener_descriptions.txt @@ -0,0 +1,3 @@ +9fd7297899264c5.png The can opener features metallic handles with light blue rubber grips and a matching blue turning knob, shown from an angled view against a bathroom setting with a blurred background. +52028dd0a06043e.png A red can opener with a smooth plastic texture is resting on a brown leather surface, viewed from above with a distinct bottle opener feature on one side, next to a wooden tray. +67852634d49644f.png The can opener features a sleek, bright red handle with a matte texture, viewed from a side angle as it is held in a hand, set against a light-colored tiled floor that emphasizes the tool's metal cutting wheel. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/candle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/candle_descriptions.txt new file mode 100644 index 0000000..0a424e3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/candle_descriptions.txt @@ -0,0 +1,3 @@ +c200514fcf2d434.png A small white candle sits in a clear glass holder on a textured blue cloth, viewed from a slightly elevated angle, with a dark, indistinct background. +891f61b791c54bf.png A hand holds a small, textured, vertically ribbed red candle with a pointed base over a floral pattern fabric, set against a dark, blurred background. +67936170fcd44af.png A white, cylindrical candle in a glass holder with a single burnt wick is placed on a turquoise surface, surrounded by personal care items and a reddish vase with flowers against a cream-colored wall. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/canned_food_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/canned_food_descriptions.txt new file mode 100644 index 0000000..bea33dc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/canned_food_descriptions.txt @@ -0,0 +1,3 @@ +f6430cb5ed0a4c2.png A hand is holding a red and blue canned food with a silver top in a bedroom environment, featuring a red blanket in the foreground and a door and basket in the background. +40527362a81f429.png The canned food, positioned at an angle on a white bathroom sink, features a simple beige label with black text and a small image of a chef hat, contrasted against the muted beige wall background. +a3332a76db4a410.png The canned food is a cylindrical tin with a bright yellow label featuring an image of corn, set upright on a floral-patterned tablecloth, and partially lit from the front. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/cd_case_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/cd_case_descriptions.txt new file mode 100644 index 0000000..341f751 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/cd_case_descriptions.txt @@ -0,0 +1,3 @@ +e6e227e76f704fe.png The CD case, viewed from above on a beige carpet, has a predominantly blue cover featuring a graphic of two revolvers crossed over each other with the words "Boondock Saints" positioned across the top. +695d3e934377492.png A hand holds a thin, white-edged object, likely a CD case, over a red fabric background with a partially visible laptop nearby. +ff94a47667bc41d.png The CD case features a vibrant blue and purple cover with dynamic artwork of characters, lying flat on a beige countertop, surrounded by a domestic setting with paper towels and a warmly lit background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/cellphone_case_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/cellphone_case_descriptions.txt new file mode 100644 index 0000000..8725e22 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/cellphone_case_descriptions.txt @@ -0,0 +1,3 @@ +8803cce9281c411.png A person is holding a glossy, dark brown wallet-like object with a rectangular shape, viewed from a slight angle on a speckled dark countertop against a kitchen-like backdrop with a white bowl and bottles. +b9725b9479224ff.png The cellphone case is black with a smooth texture, held upright in a bedroom setting with a plaid-patterned bedspread, visible from a side angle with a cutout for the camera. +0a39390e0bcb441.png A worn, two-toned cellphone case with a dark blue and black color scheme and a flap closure lies flat on a dark kitchen countertop, amidst a background of stacked utensils and patterned ceramic containers. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/cellphone_charger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/cellphone_charger_descriptions.txt new file mode 100644 index 0000000..9b55b11 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/cellphone_charger_descriptions.txt @@ -0,0 +1,3 @@ +ac6cb00885e64a8.png The cellphone charger is silver with a smooth, metallic texture, viewed from above, lying on a white bathroom sink with visible attached cords and clear reflections. +80f2ef2f15cd419.png A black cellphone charger with a glossy finish and visible prongs is positioned on a patterned, furry gray and white fabric background, with its cable loosely coiled around it. +2eaf871cfa20478.png The black cellphone charger appears tangled against a white-paper-covered tabletop, with its matte finish and plugged-in accessories visible, set in front of a monitor in a blurred office environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/cellphone_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/cellphone_descriptions.txt new file mode 100644 index 0000000..3e71caa --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/cellphone_descriptions.txt @@ -0,0 +1,3 @@ +291eef4d65fc45f.png The cellphone, observed from a slightly tilted side view, is sleek and black with a glossy surface, set against a wooden floor background with cabinet fixtures nearby. +f846c79109fd45a.png A black-framed cellphone with a white front panel is lying flat on a light gray speckled tile floor. +297191828c3c47f.png The cellphone is black with a glossy texture, viewed from an angled overhead perspective, resting on a wooden parquet floor, featuring a reflective screen with a visible light spot. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/cereal_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/cereal_descriptions.txt new file mode 100644 index 0000000..5bd6d8d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/cereal_descriptions.txt @@ -0,0 +1,3 @@ +6d411923213045b.png A yellow cereal box with the word "Cheerios" in black text is lying horizontally on a dark wooden surface against a pale wall background, with nutrition facts and branding clearly visible. +cb8bd4232306406.png The cereal box is predominantly blue with an orange sunburst design, featuring a large orange honey dipper logo and "Honey Bunches of Oats" text, positioned upright on a red and gray tiled floor with pink tiles in the background. +141caec6c903498.png The cereal box displays a predominantly brown-themed design with a vibrant cartoon bird and splashes of colorful milk and cereal pieces, resting on a cluttered table with condiments and household items, in a casual kitchen setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/chair_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/chair_descriptions.txt new file mode 100644 index 0000000..9b10cf8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/chair_descriptions.txt @@ -0,0 +1,3 @@ +a6064853d4cc4ca.png The chair has an ornate wooden frame with intricate carvings and a light-colored, patterned fabric seat, viewed from above on a carpeted floor with a child's feet visible nearby. +23ad12394c8d4d3.png The chair in the image is upholstered in a dark olive green fabric, featuring ornate wooden legs with a curved design and is positioned on a tiled floor in a living room setting with another identical chair and a white-paneled door in the background. +8fed88c0b21d443.png A bright yellow, horizontally slatted plastic chair is viewed from above, set against a light-colored tile floor with a paint can in the background, featuring a wide backrest and straight armrests. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/cheese_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/cheese_descriptions.txt new file mode 100644 index 0000000..a015498 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/cheese_descriptions.txt @@ -0,0 +1,3 @@ +ae56c2b759f44fa.png A small, rectangular block of pale yellow cheese wrapped in a clear package with a white label is being held by a person over a patterned white and green floral bedspread, with a TV remote visible nearby. +80bdaa9aa2b247f.png A wedge-shaped piece of light cream-colored cheese with faint specks, resting on a textured white napkin on a marbled tabletop, accompanied by a clear, empty glass and a blurred background containing a partially visible dish. +372adecd868947e.png The image shows a block of orange American cheese in plastic packaging, resting on a kitchen counter next to a coffee machine and a white stove, with a stainless steel container and a pepper shaker in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/chess_piece_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/chess_piece_descriptions.txt new file mode 100644 index 0000000..7d831bc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/chess_piece_descriptions.txt @@ -0,0 +1,3 @@ +de3afea8daf6445.png The chess piece is a beige wooden rook with a green base, viewed from above on a textured brown fabric surface, featuring a series of evenly spaced grooves along its cylindrical body. +593b8bd9e98c497.png The image shows a small, off-white, slightly glossy chess piece resembling a king, held sideways in someone's hand against a light-colored, smooth background. +f1581dfbfe824ce.png The image shows a dark blue king chess piece with a glossy texture, viewed from a slightly elevated angle on a rough, gray concrete background, with distinct ornate crown details on top. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/chocolate_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/chocolate_descriptions.txt new file mode 100644 index 0000000..8626300 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/chocolate_descriptions.txt @@ -0,0 +1,3 @@ +e2ea1198c80a434.png A partially unwrapped rectangular chocolate bar with a textured brown surface is lying on a beige carpeted floor, viewed from above alongside a leg and sock-covered foot. +b1f967cb97b54be.png A purple wrapper with a rectangular shape is laid flat on a bright pink table, displaying a logo and text, surrounded by a closed black wallet and a colorful book or magazine edge under soft lighting. +aade67c4e0f14e6.png The object is a yellow, rectangular chocolate bar package with red text placed upright on a beige tiled bathroom shelf near a toilet roll holder. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/chopstick_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/chopstick_descriptions.txt new file mode 100644 index 0000000..3f24ec8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/chopstick_descriptions.txt @@ -0,0 +1,3 @@ +6fb1ccca29f4464.png A long, slender, light-colored chopstick with a smooth texture is diagonally resting on a kitchen countertop amidst various containers, including salt and pepper shakers, in a casual kitchen setting. +f372542358e3476.png A hand holds a light blue pencil with illustrated characters near the eraser, against a kitchen background with wooden cabinetry and various colorful containers. +dade0d7fb9ea49b.png Two light-colored chopsticks with a smooth texture and decorative patterns near the top are resting diagonally on a dark, quilted fabric background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/clothes_hamper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/clothes_hamper_descriptions.txt new file mode 100644 index 0000000..2a6cba6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/clothes_hamper_descriptions.txt @@ -0,0 +1,3 @@ +3d6a380868d9426.png The image shows a blue plastic clothes hamper with rectangular perforations, lying on its side on a carpeted floor next to a patterned blue and white rug. +ab1f2c825c1d4e9.png A white, rectangular, plastic clothes hamper with perforated sides is positioned upright on a tiled bathroom floor, surrounded by a pink rug and various bathroom items including a towel, laundry bag, and a glimpse of a washing machine. +fad4362b9fb54b8.png A blue, mesh pop-up clothes hamper is positioned sideways on a cream-tiled floor, surrounded by diverse household items including a laptop, a red object, and a striped garment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/clothes_hanger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/clothes_hanger_descriptions.txt new file mode 100644 index 0000000..b32ec23 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/clothes_hanger_descriptions.txt @@ -0,0 +1,3 @@ +4de6b553dbc04c8.png A white plastic clothes hanger with a smooth texture is positioned upright and leaning against a brown leather sofa, set against an intricately patterned beige and black rug. +83177174f432443.png A beige, plastic clothes hanger is captured from a side angle, held by a hand against a wooden floor backdrop, with its hooked end and one horizontal bar visible despite the low resolution. +ea08ecec22644bf.png A pink wire clothes hanger with a smooth texture is lying flat on a dark blue ping pong table, slightly turned to one side, contrasting against the table's matte surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/coaster_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/coaster_descriptions.txt new file mode 100644 index 0000000..6356734 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/coaster_descriptions.txt @@ -0,0 +1,3 @@ +f6c9dd501c8b41d.png The coaster is a round, brown piece with a smooth texture, viewed from the side, set against a kitchen environment with various containers and utensils in the background. +79be389edbcf497.png The coaster is circular, black, with a textured grid pattern of raised dots on its surface, held at an angle by a hand against a backdrop of light purple quilted bedding. +f9ed0ccc57ad40c.png The coaster has a square shape with a brown wooden frame, showcasing a colorful painted pastoral scene with trees and a cottage, placed on a flat gray fabric surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_beans_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_beans_descriptions.txt new file mode 100644 index 0000000..2a25b99 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_beans_descriptions.txt @@ -0,0 +1,3 @@ +88287cb6a5ef488.png The image shows a jar with a golden lid and label, standing upright on a dark, shiny kitchen countertop with a tiled backsplash and cabinets in the background. +571d002a198b4ab.png A person holds a silver, foil bag of coffee against a multicolored, patterned blanket background above a collection of stuffed animals. +a31a0d8d7ec9435.png A red package of coffee beans with a visible barcode lies horizontally on a textured wooden floor, casting a shadow to the left, while the packaging is slightly crumpled. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_french_press_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_french_press_descriptions.txt new file mode 100644 index 0000000..800132b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_french_press_descriptions.txt @@ -0,0 +1,3 @@ +53855bbdb2d44a1.png The coffee French press is cylindrical with a predominantly black plastic frame and transparent sections, held horizontally, against a textured blue fabric background. +5ca6880379ff495.png The coffee French press is metallic with a shiny, reflective surface, held at an angled side view over a wooden table with a gray placemat, with a wooden cabinet and basket visible in the background. +7e3bc6a44d374a0.png A red-lidded coffee French press with a glass body displaying a swirl pattern is held diagonally by a hand over a white tiled bathroom countertop near a sink. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_grinder_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_grinder_descriptions.txt new file mode 100644 index 0000000..60c8f45 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_grinder_descriptions.txt @@ -0,0 +1,3 @@ +a1ea1597a602464.png The coffee grinder has a sleek silver metallic body with a black base, positioned horizontally on a tiled floor with beige and brown tones, featuring a clear plastic top and a visible power cord extending from the base. +a5a6ca8e0b7d464.png A black, cylindrical coffee grinder with a matte finish is lying on its side on a wooden floor, featuring a transparent, flat top section and visible simple markings, against a warm-toned wood grain background. +17129cd958d34b3.png A sleek, cylindrical black coffee grinder with a glossy finish is being held upright, featuring a transparent top cover and a visible power cord, set against a granite-patterned kitchen countertop with wooden cabinets in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_machine_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_machine_descriptions.txt new file mode 100644 index 0000000..20f9fb7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_machine_descriptions.txt @@ -0,0 +1,3 @@ +d0ee29e62aae4f8.png The coffee machine is white with a smooth texture, viewed slightly from above at an angle, placed on a speckled beige carpet next to a wooden cabinet and white appliance box, featuring a transparent carafe partially filled with dark liquid. +5d54e00a1007447.png The coffee machine is a vibrant red with a metallic silver front panel, seen from a top angled view, featuring a distinct handle and buttons, set against a kitchen countertop with a stainless steel sink in the background. +f323a40f42724e5.png The black coffee machine with a glass carafe and red digital panel is positioned at a three-quarter angle on a kitchen counter, surrounded by various household items against a neutral-toned background with a window. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_table_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_table_descriptions.txt new file mode 100644 index 0000000..810dc57 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/coffee_table_descriptions.txt @@ -0,0 +1,3 @@ +118632e00d994be.png A light brown wooden coffee table with a smooth texture is viewed from a slightly elevated angle, positioned against a marble-patterned floor, featuring a clear plastic container with a bright yellow lid and floral design. +a13f91b77b8a473.png The coffee table has a dark, rich woodgrain texture with a square shape viewed from a top-down angle, distinctively set against a laminate wooden floor background. +02e963141ffa48a.png The coffee table is a dark wood color with elegant, curved legs, seen from a slightly elevated angle in a cozy living room with a brown leather couch and various items on top, including a box and drink cups, highlighted by soft, ambient lighting reflected on the wooden floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/coin_money_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/coin_money_descriptions.txt new file mode 100644 index 0000000..aae2fee --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/coin_money_descriptions.txt @@ -0,0 +1,3 @@ +e6f3b85d2b9a4c0.png A small silver coin with a smooth texture sits flat on a book with a red and black cover, against a colorful floral tablecloth background, displaying an embossed profile and ridged edges. +aba106f5e71e45f.png This image shows a bronze-toned coin on its edge being held by fingers against a glossy cream surface, with partially visible engravings and a blurred background. +18db8770b893412.png The coin is a dark metallic color with a matte texture, viewed from an angle revealing partial lettering and an embossed design, held between fingers against a tiled background with scattered dark debris. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/comb_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/comb_descriptions.txt new file mode 100644 index 0000000..afcc519 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/comb_descriptions.txt @@ -0,0 +1,3 @@ +75a58b5f267d46d.png A blue comb with a smooth texture is balanced on a countertop edge over a cup, set against a bathroom background with a jar of seashells and a decorative bottle. +2aad71f5d0a24a0.png A light pink plastic comb with wide teeth and a grip handle is positioned diagonally atop a dark wooden surface, featuring a hole at the handle's end and ridged texturing along the grip. +a5d748e0a02b43f.png A light pink, plastic comb with evenly spaced teeth and a circular hanging hook is positioned horizontally on a creamy, off-white bathroom sink against a textured, pale wall background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/combination_lock_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/combination_lock_descriptions.txt new file mode 100644 index 0000000..4567fc4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/combination_lock_descriptions.txt @@ -0,0 +1,3 @@ +a99833a9ecf7416.png A person is holding a purple combination lock with a circular dial, viewed from a top-side angle, against a background of a white countertop and beige walls, accompanied by a small dish of decorative coral. +7589631b83904bb.png The combination lock appears from a close-up angle, showcasing a smooth, metallic, circular face with a slightly reflective surface, set against a wood-grain background, with a curved metal shank partially visible. +034a035f0fc4453.png The combination lock, viewed from above on a textured dark gray surface, features a black body with a silver shackle, displaying a set of numbered dials and a small red logo. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/computer_mouse_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/computer_mouse_descriptions.txt new file mode 100644 index 0000000..32706fa --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/computer_mouse_descriptions.txt @@ -0,0 +1,3 @@ +7bd9c4a9b69b455.png The black, matte-textured computer mouse with a dotted surface is viewed from a top-side angle, positioned on a beige stone-like countertop near a white toilet and a container with a teal label. +672ca692b4ee4bf.png A black computer mouse with a matte texture is viewed from above, resting on a round, floral-patterned fabric surface against a wooden floor background. +84bb496448a34d1.png The computer mouse is smooth and matte white with subtle button markings, viewed from the top in a bathroom setting with a faucet and soap dispenser in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/contact_lens_case_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/contact_lens_case_descriptions.txt new file mode 100644 index 0000000..28b6b19 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/contact_lens_case_descriptions.txt @@ -0,0 +1,3 @@ +2d03d4a7912d404.png A blue and white contact lens case with textured, labeled caps rests on a glossy, off-white corner of a tabletop, displaying minor surface marks in the background. +76350f15136e4a1.png The contact lens case features a smooth matte texture with one side in pastel pink and the other in light teal, embossed with "R," resting on a reflective stovetop with faint circular burner patterns in the background. +50542da3bd45493.png The contact lens case is positioned from a top-down view on a tiled bathroom surface, featuring a matte white container with a green lid on the right and a white lid on the left, projecting distinct shadows onto the beige tiles below. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/cooking_oil_bottle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/cooking_oil_bottle_descriptions.txt new file mode 100644 index 0000000..6a376e5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/cooking_oil_bottle_descriptions.txt @@ -0,0 +1,3 @@ +3749e0bd1720450.png The cooking oil bottle, viewed from a front angle on a kitchen counter, features a transparent plastic body with a yellowish liquid inside and a red label, set against a background with a dartboard on the wall and a vase of red roses in the kitchen. +5a2ca974a0bc438.png A yellow cooking oil bottle with a blue cap and a visible label lies horizontally on a beige countertop near a white sink, amidst scattered water droplets in a bathroom-like setting. +51975439321c4e4.png The cooking oil bottle is primarily transparent with a green cap, contains yellow oil inside, is being held at an angle above a textured carpet with a geometric pattern, and its label is partially visible. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/cork_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/cork_descriptions.txt new file mode 100644 index 0000000..f82a90e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/cork_descriptions.txt @@ -0,0 +1,3 @@ +124b74a7872f494.png The cork is cylindrical with a beige top, inserted in an upright bottle, surrounded by blurry bottles and a light-colored refrigerator interior in the background. +9155d3e308fa436.png The cork appears light brown with a textured surface and dark markings, showing red staining on one end, viewed in a person's hand against a soft-focus woven chair background. +dee21dcfa9354e3.png A hand is holding a rounded, light brown cork with a slightly mottled texture, viewed from an angled perspective against a cluttered background of various tools and bottles on a wooden surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/cutting_board_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/cutting_board_descriptions.txt new file mode 100644 index 0000000..4b8ae7c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/cutting_board_descriptions.txt @@ -0,0 +1,3 @@ +289a6b51bf2e4df.png The cutting board, viewed edge-on, appears dark with a rough, rustic texture, positioned against a soft, beige fabric background of a couch, held horizontally by a hand in a dimly lit setting. +871ef5d44f37445.png A light brown, smooth-textured cutting board is held vertically against a background featuring a navy blue bedspread and various items like a black suitcase, creating a distinct contrast between foreground and background. +10613d5045d4493.png The cutting board is small, rectangular, and orange with a smooth texture, standing upright against a white tiled wall near a kitchen sink, with a window letting in bright sunlight in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/deodorant_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/deodorant_descriptions.txt new file mode 100644 index 0000000..eaf7ff1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/deodorant_descriptions.txt @@ -0,0 +1,3 @@ +15afca2f3bea4fd.png A white deodorant with a red label is lying on a carpeted floor, being held sideways by a person's hand, against a backdrop of a plastic container and a white bag. +49239b565f1f4e7.png The deodorant is a navy blue stick held horizontally in a hand, featuring a white and green label, against a background of a wood table and cream-colored wall. +8801391d52a644a.png A hand holds an upside-down, white cylindrical deodorant bottle with dark blue text and a red logo, against a plain beige wall. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/desk_lamp_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/desk_lamp_descriptions.txt new file mode 100644 index 0000000..da88ffc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/desk_lamp_descriptions.txt @@ -0,0 +1,3 @@ +6243f48d6bce4a7.png A black desk lamp with a round base and a visible pink bulb is placed on a beige tiled floor with wooden cabinets in the background, viewed from an overhead angle. +a62529db6114496.png The desk lamp has a sleek black finish with a slender, curved neck and a circular base, viewed from the side, situated on a bed with colorful pillows and a light-colored wall in the background. +fdc220b564a1408.png The desk lamp features a metallic arm with black fixtures, viewed from a slightly elevated angle on a speckled granite surface surrounded by computer accessories, a tissue box, and various small items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/detergent_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/detergent_descriptions.txt new file mode 100644 index 0000000..35f7ead --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/detergent_descriptions.txt @@ -0,0 +1,3 @@ +7628265f712e472.png The detergent package is primarily blue with bold white and red text, displaying a rectangular shape lying flat on a smooth beige tile floor against a backdrop of black tiled wall. +a7ee3fbc5cf04af.png The detergent container is white with a red cap, features a prominent label with light blue elements and an image, viewed from a slightly tilted top angle on a soft fabric background with a quilt-like pattern. +230bdbd7ba52467.png A person holds a yellow bottle with a green cap in their hand, positioned horizontally against a cluttered background featuring decorative items including a wooden box and fabric with leaf patterns. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/dish_soap_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/dish_soap_descriptions.txt new file mode 100644 index 0000000..90e3bcc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/dish_soap_descriptions.txt @@ -0,0 +1,3 @@ +eb5afd5cbf70486.png The dish soap is a small, round container with a green lid and a white label featuring lime imagery, sitting on a speckled countertop with kitchen cabinets and a wall outlet visible in the background. +adcde2926c1740f.png A blue, slightly translucent plastic bottle of dish soap lies horizontally on a colorful floral-themed countertop with a patterned tea kettle and cup visible in the background. +9f0f05e095fe403.png A tall, transparent bottle filled with bright teal dish soap stands on a wooden table, with a white cap and a green label bearing a logo, surrounded by household items in a casual living room setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/document_folder_closed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/document_folder_closed_descriptions.txt new file mode 100644 index 0000000..7e5b932 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/document_folder_closed_descriptions.txt @@ -0,0 +1,3 @@ +678c3825384f4a5.png The document folder is blue with a slightly glossy texture, seen from a top-down angle on a patterned chair, and has a visible rectangular label on its front. +5a4c734b5299404.png The document folder appears to have a brown border and a checkered pattern in shades of blue and gray, held upright with its edge visible against a yellow plastic chair in a dimly lit environment. +cd92c869a18b4e7.png A dark, possibly black, matte document folder rests closed on a cluttered desk, partially covered on one side by a patterned cloth, with an abstract tapestry as the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/dog_bed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/dog_bed_descriptions.txt new file mode 100644 index 0000000..a2cde35 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/dog_bed_descriptions.txt @@ -0,0 +1,3 @@ +848235962b76447.png The dog bed is red with a textured, gathered fabric outline, viewed from above on a white tiled bathroom floor, adjacent to a toilet and striped rug. +aac455605525414.png A gray, crumpled fabric dog bed is positioned on a light-colored, textured armchair, surrounded by a small side table with a glass top and part of a colorful, patterned blanket. +6ff140f473fb47d.png A soft, dark-colored dog bed with a textured surface is positioned on a warm-toned carpet alongside another dark rectangular object, viewed from above. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/doormat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/doormat_descriptions.txt new file mode 100644 index 0000000..2ecd70a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/doormat_descriptions.txt @@ -0,0 +1,3 @@ +325096a4dbd74db.png The doormat features a vivid multicolored plaid pattern with thin, intersecting black lines, resting on a reflective tiled floor that creates a slightly distorted mirrored effect. +cef83593b9c14a1.png A rectangular, light grey doormat with a smooth texture is placed flat on a tiled bathroom floor beside a white toilet, with a patterned shower curtain featuring shells and vines partially in view. +11ca2963bdb74d8.png A purple folded yoga mat with slight dirt marks rests on a rough, speckled stone floor amidst a room containing a wooden chair, turquoise suitcase, and miscellaneous items in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/drawer_open_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/drawer_open_descriptions.txt new file mode 100644 index 0000000..20087fe --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/drawer_open_descriptions.txt @@ -0,0 +1,3 @@ +989c8ddc0f55457.png The drawer, viewed from above in dim lighting, reveals a warm wood color with a matte finish, containing a white grater and a wooden rolling pin among other faintly distinguishable kitchen utensils, set against a kitchen environment with tiled flooring and partial glimpses of adjacent cabinetry. +635e35c48c594e0.png The image depicts a hand holding a transparent plastic container filled with assorted items, set in a cluttered environment with shelves in the background containing tools, paper rolls, and containers, all viewed from a slightly elevated angle. +42a3035edf8d45a.png A wooden drawer with a warm brown finish and ornate brass handles is partially open, showing dark folded clothes inside, with a cluttered top surface including a woven basket in a bedroom environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_descriptions.txt new file mode 100644 index 0000000..6f28bb7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_descriptions.txt @@ -0,0 +1,3 @@ +4194c7d77a264f6.png A beige, sleeveless dress with a sheer upper section and intricate lace detailing on the bodice hangs on a wire hanger in a home kitchen environment, featuring visible cabinetry and appliances. +65438d399d044a1.png The dress features a bright coral body with intricate black and white embroidery around the neckline, complemented by patterned sleeves and set against a brown marbled floor background with visible human feet. +53a538d981db4b6.png A long-sleeved, plaid dress with a color pattern of black, white, and red hangs over the back of a chair in a room with a green and blue wall, a TV on a stand, and a distinctly cluttered background with a visible bag and electronics. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_pants_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_pants_descriptions.txt new file mode 100644 index 0000000..442b425 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_pants_descriptions.txt @@ -0,0 +1,3 @@ +ecb4911aa74a4b6.png The dress pants are a light beige color with a smooth texture, viewed from above as they rest fully extended on a plastic chair in a tiled indoor environment, featuring slightly wrinkled fabric along the legs. +611dc2a5acaf443.png The dress pants are beige with a smooth texture, hanging vertically on a wall rack beside a white bag and dark clothing against a light blue wall and brown door. +bb8338c800104ad.png The dress pants are beige with a smooth texture, viewed hanging vertically from a piece of furniture, featuring white piping along the sides, set against a background of a room with visible computer equipment and a window. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_shirt_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_shirt_descriptions.txt new file mode 100644 index 0000000..ca19b03 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_shirt_descriptions.txt @@ -0,0 +1,3 @@ +5abf1a9cba60420.png A red and black horizontally striped dress shirt with three-quarter-length sleeves is laid flat on a light-colored couch with a white blanket. +9a49b58c5b6640f.png A crumpled, navy blue dress shirt with a subtle striped pattern lies on a brown tufted cushion, set against a textured beige carpet background. +30afead6ec97438.png A green plaid dress shirt is laid out with its sleeves partially rolled, against a pink quilted blanket with a colorful plush toy nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_shoe_men_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_shoe_men_descriptions.txt new file mode 100644 index 0000000..bcfb706 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_shoe_men_descriptions.txt @@ -0,0 +1,3 @@ +6499148fb4f6423.png The dress shoe is black with a shiny finish, viewed from a side angle on a carpeted floor, against a dimly lit room with a blue wall, wooden shelf, and metal table in the background. +72c058b473f44d3.png A black dress shoe with a matte texture is seen from a top-down angle, situated on a dark carpet, with a finger partially obscuring the top of the image and a scuff visible on the shoe's toe area. +ad3d67d8ff624c3.png A glossy black leather dress shoe with laces is held at an angle against a tiled floor background, showing detailed stitching along the sides. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_shoe_women_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_shoe_women_descriptions.txt new file mode 100644 index 0000000..bc143cb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/dress_shoe_women_descriptions.txt @@ -0,0 +1,3 @@ +cd5cde63b0724ae.png The dress shoe is black with a floral pattern, featuring a closed pointy toe and moderate heel, seen from a side angle in a bathroom setting with a tub and toiletries in the background. +dc9791038d1644b.png A pair of burgundy suede pointy-toed women's dress shoes with ankle straps tied in bows is positioned front-facing on a wooden floor. +ee3786753ade494.png The image shows a pair of brown leather flip-flops with a simple design, positioned flat on a textured stone-tile and carpeted floor with a background of other casual shoes. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/drill_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/drill_descriptions.txt new file mode 100644 index 0000000..9c305a1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/drill_descriptions.txt @@ -0,0 +1,3 @@ +93ee7785ca3f417.png A gray handheld rotary tool with a black power cord is being held at an angle above a colorful patterned bedspread, against a background of wooden cabinets and scattered papers. +006c0fad654d47e.png The image shows a black and red handheld power drill with a visible ventilation grille, held in a hand viewed from above, set against a cluttered kitchen countertop with various utensils in the background. +d72dc6ca63e347d.png A black-handled drill with visible red accents lies on rumpled white bedding, with its coiled cord prominently displayed against a contrasting background of a pink-and-white blanket. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/drinking_cup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/drinking_cup_descriptions.txt new file mode 100644 index 0000000..8649b19 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/drinking_cup_descriptions.txt @@ -0,0 +1,3 @@ +1e3f5471dc364e2.png The drinking cup is a clear glass with black decorative patterns and markings, positioned upright on a white bathroom countertop with a partially visible sink and mirror above, and a roll of toilet paper nearby. +c53444248bd0480.png A translucent teal drinking cup with vertical ridges is lying on its side on a beige cushioned surface, surrounded by textiles in a casual home setting. +e44a945bae5c402.png A white, cylindrical, and slightly tapered cup with bold red text that reads "TAKE IT To Go" is positioned sideways on a textured carpet floor with a dimly lit interior background including a partially visible wall and doorway. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/drinking_straw_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/drinking_straw_descriptions.txt new file mode 100644 index 0000000..6115649 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/drinking_straw_descriptions.txt @@ -0,0 +1,3 @@ +c91c412a76ef48d.png A yellow, slightly bent drinking straw with a smooth texture is positioned at a diagonal angle on a speckled countertop, with a blurry sponge and crumpled tissue visible in the background. +e43a6ee5c1184b9.png A vibrant red, slightly glossy straw lies diagonally across a patterned textile background, contrasting sharply against the dark and light fabric folds beneath it. +88e931bad2bb486.png A red, slightly translucent drinking straw is held horizontally by a hand against a cluttered background featuring a beige countertop, with various toiletries and a white sink nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/drying_rack_for_clothes_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/drying_rack_for_clothes_descriptions.txt new file mode 100644 index 0000000..17d7258 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/drying_rack_for_clothes_descriptions.txt @@ -0,0 +1,3 @@ +51f9fe18b37f4fb.png The drying rack, viewed from above, appears wooden, light-colored with a natural grain texture, resting on a richly patterned carpet featuring floral designs, amidst a dimly lit room with scattered wires and a wicker basket. +97c4c0290bba47e.png A silver metal drying rack in a folded A-frame position is placed against a backdrop of blue floral curtains, resting on a white tiled floor, and holding a mix of dark and light garments. +761be02a099f4d4.png This drying rack features a metal framework with red and white rods arranged at varying angles, seen from an angled top-down view in a dimly-lit room, with a background of indistinct structural elements. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/drying_rack_for_dishes_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/drying_rack_for_dishes_descriptions.txt new file mode 100644 index 0000000..b76a9d1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/drying_rack_for_dishes_descriptions.txt @@ -0,0 +1,3 @@ +ba9fd919ed904eb.png A black, slotted plastic drying rack is precariously perched on a white paper towel holder beside a kitchen sink, contrasting with the white cabinetry and countertop in a warmly lit kitchen. +6cc55c53a57c4d8.png The drying rack for dishes appears metallic with a smooth, shiny texture, viewed from a slightly overhead angle, held by a hand over a wooden floor with a greenish-grey wall in the background, featuring parallel bars arranged horizontally. +241ee951064744c.png A metallic drying rack with a wire grid structure is being held by a hand against a plain, off-white wall, partially surrounded by a wooden headboard and draped blankets. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/dust_pan_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/dust_pan_descriptions.txt new file mode 100644 index 0000000..5b90b57 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/dust_pan_descriptions.txt @@ -0,0 +1,3 @@ +184d18eee00b432.png A bright red plastic dustpan with a smooth texture is leaning upright against a beige wall with chipped paint, featuring a short handle with a hole at the end for hanging, positioned on the edge of a tiled step. +d5781a37cacc4a0.png A gray dustpan with a smooth texture is lying on a speckled, light-colored tiled floor, positioned at an angle against a white wall, with some debris scattered nearby. +ca37ae0b6d09457.png A brown dustpan with a yellow edge, lying flat with the handle pointing away, is set against a background of polished wooden floorboards. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/dvd_player_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/dvd_player_descriptions.txt new file mode 100644 index 0000000..0880c0e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/dvd_player_descriptions.txt @@ -0,0 +1,3 @@ +45e09fca3f734e4.png The DVD player is glossy black with a flat, rectangular design, viewed from a slightly elevated side angle on a wooden surface, with vertical blinds allowing light to illuminate the background. +a7678d3b7728423.png The DVD player is black with a smooth texture, viewed from an angled close-up showing the front panel with LG branding and a blue indicator light, against a backdrop of a textured wall. +f09b253f57b1474.png The DVD player is black with a matte texture, shown in a tilted side view held by a hand, featuring a distinctive front-loading disc tray and multiple buttons on the top, set against a cluttered background with a desktop and various objects. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/earbuds_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/earbuds_descriptions.txt new file mode 100644 index 0000000..aeaed34 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/earbuds_descriptions.txt @@ -0,0 +1,3 @@ +4aa0a9d106004e7.png The earbuds are white with a glossy texture, viewed from above in a coiled position, resting on a textured dark surface with a hint of a keyboard in the background. +34c31f454cc8458.png The white earbuds, seen resting on a wooden desk with their cords coiled, have a smooth texture and are set against a background featuring a pink plastic object and a keyboard in the foreground. +06f935bcd67046e.png The earbuds are black with a glossy texture, resting on a large, circular dark surface, connected by wires with an angled plug, and surrounded by minor scuff marks indicating wear on the surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/earring_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/earring_descriptions.txt new file mode 100644 index 0000000..b050961 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/earring_descriptions.txt @@ -0,0 +1,3 @@ +2a1218163732424.png A metallic, leaf-shaped earring with a small gold heart at the top is lying flat on a white, glossy surface with a stove burner partially visible in the background. +1ebd598bf3654c9.png A single, textured gold earring with a fan-like design is lying flat on a light green fabric surface, with a simple interior room setting in the background. +f66ec377630c44d.png The earring is gold-toned with a textured, circular design, positioned on a soft, blue fabric background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/egg_carton_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/egg_carton_descriptions.txt new file mode 100644 index 0000000..c0c0951 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/egg_carton_descriptions.txt @@ -0,0 +1,3 @@ +ec1e9220b981492.png A blue plastic egg carton with smooth, circular indentations holds four white eggs, viewed from a top-down angle on a white rectangular surface with a dark kitchen counter background. +690578c06342487.png A light blue, textured silicone egg holder with a handle is laid flat on a speckled black countertop amidst various kitchen items, including metallic cookware and a red pot with white polka dots, in a kitchen setting. +aa01115e229c4d6.png A white egg carton labeled "LARGE EGGS" in bright pink text rests partially open on a red plastic surface, with a beige carpeted floor, office chair, small table, and toys in the softly lit background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/egg_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/egg_descriptions.txt new file mode 100644 index 0000000..b5765d8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/egg_descriptions.txt @@ -0,0 +1,3 @@ +baeb192a7a31493.png A brown egg with a smooth, matte texture is propped upright against the corner of a beige-colored countertop with a darkened reflection on the left, likely from a mirror or wall edge, creating a well-lit and cozy environment. +8f4839aa9bfd418.png The egg is smooth with an off-white color, viewed in a close-up shot against a dimly lit bathroom with a mirror and a brown towel in the background, slightly oval with a hand holding it gently. +82d65a605bf144b.png The egg appears off-white with a slightly speckled texture, resting on a patterned surface resembling tiled stone from a slightly elevated perspective. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/envelope_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/envelope_descriptions.txt new file mode 100644 index 0000000..2d0607e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/envelope_descriptions.txt @@ -0,0 +1,3 @@ +f2a666e742314a3.png A white envelope with a smooth texture is viewed from above, placed on a cream-colored countertop, surrounded by various kitchen items including a spice rack and red-lidded container in the background. +8038799ee653404.png A white, smooth-textured envelope is held vertically by a hand against a speckled, multicolored carpeted background. +28db7e3869ae47f.png The image shows a plain white envelope with a smooth texture lying flat on a carpeted floor, viewed from above with a pair of feet in light-colored pants in the foreground. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/eraser_white_board_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/eraser_white_board_descriptions.txt new file mode 100644 index 0000000..5a02436 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/eraser_white_board_descriptions.txt @@ -0,0 +1,3 @@ +13880d24830e4a0.png The eraser whiteboard features a worn, off-white color with visible smudges and graphic stickers, positioned upright on a wooden windowsill against a dark and partially tiled background. +d7071207bbe1475.png A rectangular black eraser with a smooth textured surface is propped diagonally against a tan wall, situated on a light beige carpeted floor. +338c521c813343f.png The eraser white board is primarily black with a blue oval emblem on top and a ribbed texture, viewed from an angle on a tiled floor background, with a visible white felt base. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/extension_cable_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/extension_cable_descriptions.txt new file mode 100644 index 0000000..a516b7e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/extension_cable_descriptions.txt @@ -0,0 +1,3 @@ +8e81afa49d03485.png A black extension cable with a multi-socket white power strip sits coiled on a brown floor near a toilet, surrounded by a reddish rug and a partially open door. +07e1cedcd7e544f.png A coiled, bright orange extension cable with a standard plug is placed on a black and white checkered floor, viewed from above, surrounded by a contrasting tiled pattern. +ad0f1900d2ee4d8.png A white extension cable is coiled on a tiled bathroom floor, surrounded by green bath mats and bathroom fixtures, with visible shadows indicating an overhead light source. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/eyeglasses_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/eyeglasses_descriptions.txt new file mode 100644 index 0000000..5a4acf7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/eyeglasses_descriptions.txt @@ -0,0 +1,3 @@ +613791d1aa25464.png A pair of black, rectangular eyeglasses with thin frames lies on a textured, brown carpet at an angle, against a plain white wall background. +578e4c2906cc430.png The eyeglasses have a thin, black frame seen from a top-down angle, resting on a dark surface with scattered white specks, and a contrasting beige temple tip visible near the bottom right. +8af1f07636f04d2.png The eyeglasses have a black rectangular frame with transparent lenses, held by a hand, resting on a blue textured fabric surface, against a backdrop of wooden furniture. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/fan_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/fan_descriptions.txt new file mode 100644 index 0000000..1a4620a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/fan_descriptions.txt @@ -0,0 +1,3 @@ +7513b853fe3642f.png A small black fan with a mesh cover is positioned on a wooden floor in front of a radiator, set against a background featuring a table with bottles and containers on top. +5a8bf24f36c447d.png The fan is an upright, circular, grey and white plastic object with a handle at the top, resting on a textured dark rug in front of a wooden door in an indoor setting. +a18fe523290442e.png The image shows a ceiling fan with white blades radiating symmetrically around a bright central light, viewed from below against a dimly lit ceiling. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/figurine_or_statue_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/figurine_or_statue_descriptions.txt new file mode 100644 index 0000000..786b581 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/figurine_or_statue_descriptions.txt @@ -0,0 +1,3 @@ +52cb82b4e95c445.png The figurine features a person wearing a blue cowboy hat and attire, standing on a white towel against a vibrant backdrop depicting a colorful aquatic scene with fish and coral. +f3e08063d53441c.png A small, transparent glass figurine resembling an animal, possibly a cat, with elongated ears and a curled tail, is held above a textured wooden surface, with a background showing a person's arm, leg, and part of a carpeted floor. +79c72bc38c1d42d.png A textured, grey and beige owl figurine with ornate detailing is positioned laterally on a dark kitchen countertop, surrounded by neutral-colored cabinets and a floral decor piece in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/first_aid_kit_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/first_aid_kit_descriptions.txt new file mode 100644 index 0000000..b5905af --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/first_aid_kit_descriptions.txt @@ -0,0 +1,3 @@ +97f7bd13fd20409.png This first aid kit is bright red with a prominent white cross on its side, viewed from an angled side perspective, resting on a grey upholstered couch with a slightly open zipper and a hand gently holding it. +8281ac50cb40428.png A white rectangular first aid kit with blue and red labeling and a visible handle is placed on a wooden surface against a corkboard background, viewed from a slightly elevated angle. +d7dfe7cec6764d6.png A turquoise plastic first aid kit with a white label showing text and diagrams is propped at an angle on a textured carpeted floor with a dark wall and red object in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/flashlight_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/flashlight_descriptions.txt new file mode 100644 index 0000000..ba34176 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/flashlight_descriptions.txt @@ -0,0 +1,3 @@ +a1583815648b40b.png A black, cylindrical flashlight with a textured grip, labeled "Duracell," lies horizontally on a wooden tabletop, surrounded by a colorful, slightly cluttered environment and viewed from above. +c8bce29025d9471.png The flashlight is black with a matte texture, viewed from a slightly elevated angle showing its cylindrical shape and attached wrist strap, set against a plain white background with faint markings. +a4fd2d12d458478.png The flashlight is black with a textured grip, viewed from a side angle in a hand, set against a background of a wooden desk with a white fan grille and lamp nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/floss_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/floss_container_descriptions.txt new file mode 100644 index 0000000..871f1b7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/floss_container_descriptions.txt @@ -0,0 +1,3 @@ +b0b87f03611440f.png The floss container is white with green text, has a smooth texture, and is held at an angle over a tiled floor background. +b5626a224493459.png The floss container is white with green accents and branding, featuring a smooth, rounded shape and is viewed from a slightly angled top perspective against a light wooden background, with a finger partially visible holding it. +5de2ae761cd647c.png The floss container is white with a blue label, viewed at an angle on a speckled countertop with a wooden drawer in the background, featuring a distinct V-shape at the top. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/flour_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/flour_container_descriptions.txt new file mode 100644 index 0000000..7f77bb5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/flour_container_descriptions.txt @@ -0,0 +1,3 @@ +8b01f308296c430.png The flour container is cylindrical with a white body and a bright orange lid, viewed from an angled top-down perspective, sitting on a beige chair in a room with a tiled floor and scattered objects. +104539e794d640c.png The flour container is a rectangular, white box with red text and decorative elements on the front, viewed from an overhead angle on a wooden countertop with other kitchen items like a dish rack and a decorative teapot in the background. +e78df9f8180d45f.png The round flour container has a blue lid and a white body adorned with colorful floral patterns, viewed from an angled top-down perspective, positioned on a tiled floor near a white wall and black electrical cords. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/fork_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/fork_descriptions.txt new file mode 100644 index 0000000..77a5f1d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/fork_descriptions.txt @@ -0,0 +1,3 @@ +7b481acb7f894ba.png A metallic silver fork with a shiny texture lies flat against a textured black and white abstract patterned surface. +22b6e64496a34d5.png A metallic silver fork with a smooth, reflective texture is viewed from above on a patterned woven placemat, set against a wooden table, featuring straight, evenly spaced tines. +c2045aa55d894fc.png The fork, viewed from above, has a silver color with a slightly reflective metal texture, lying on a white countertop near a large yellow container and a cluttered open drawer, with distinctive curved tines and a narrow handle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/frying_pan_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/frying_pan_descriptions.txt new file mode 100644 index 0000000..6aac47c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/frying_pan_descriptions.txt @@ -0,0 +1,3 @@ +f697047920c449b.png The frying pan is dark and glossy with a smooth texture, viewed from an angle that shows the rounded edge and handle, resting on a red and white floral-patterned bedspread. +cee03fc6d66649e.png The frying pan is matte black with a smooth texture, viewed from an overhead angle on a wooden floor with visible grain patterns, and features a dark handle angled slightly upwards. +2201fca768634a9.png The frying pan, viewed from the side and lying on a speckled white and gray countertop, features a shiny silver finish with a long handle, set against a kitchen background with white cabinets and a nearby window. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/full_sized_towel_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/full_sized_towel_descriptions.txt new file mode 100644 index 0000000..70ba200 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/full_sized_towel_descriptions.txt @@ -0,0 +1,3 @@ +d7e10ecabbcd483.png The full-sized towel appears gray with a textured surface, held horizontally by an individual's hands, set against a bathroom backdrop featuring a red accent wall and white tiles. +bce4584c35cc4fa.png A cream-colored towel with a slightly ruffled texture is draped over a dark countertop amidst a cluttered kitchen setting, surrounded by wooden cabinets and various items. +704dcd4f5fd14cf.png A folded, light purple towel with a soft, plush texture is resting against a bright green wall on a beige tile floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/glue_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/glue_container_descriptions.txt new file mode 100644 index 0000000..40bc23e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/glue_container_descriptions.txt @@ -0,0 +1,3 @@ +6f9eada283064da.png The glue container is a bright yellow bottle with a red cap, lying on its side atop a soft, textured off-white surface, featuring dark blue labeling with bold red and white text. +691720ac0b164d8.png The glue container is white with bright orange text, featuring a pointed nozzle cap, resting on a striped cloth background with yellow and white lines beside a red surface. +8e00bf253f4549e.png The glue container is a small, off-white plastic bottle with a brown cap and orange label, held sideways by a hand, placed in a kitchen setting with a stove and an appliance visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/hair_brush_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/hair_brush_descriptions.txt new file mode 100644 index 0000000..a2df9e1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/hair_brush_descriptions.txt @@ -0,0 +1,3 @@ +ea3f416143b0465.png A cylindrical hair brush with a bright blue handle and dark bristles is laying flat on a rough, gray concrete surface. +f2ba87a7375940b.png A blue hairbrush with a black bristle pad and colorful floral patterns on the handle is lying horizontally on a light blue textured surface, possibly a bag, against a navy blue background. +3bb2096ab110473.png The hair brush, viewed from the side, features a dark handle and bristles, with a smooth texture, resting on a creamy leather sofa surrounded by a window with striped blinds in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/hair_dryer_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/hair_dryer_descriptions.txt new file mode 100644 index 0000000..1ebc14a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/hair_dryer_descriptions.txt @@ -0,0 +1,3 @@ +2e74204a13b348f.png The hair dryer is primarily red and black with a glossy finish, viewed from a front-side angle, held by a hand in a cozy living room setting with visible furniture and decor elements in the background. +c11cf334dbbf4ac.png The hair dryer, partially visible from a side angle, features a glossy, dark exterior and is set against a dimly lit background with warm, red and brick wall tones. +484963bfea7f4da.png A black and silver hair dryer with a glossy finish is positioned flat on a wrinkled white sheet, with visible orange controls and a vented nozzle facing slightly upward. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/hairclip_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/hairclip_descriptions.txt new file mode 100644 index 0000000..eb28c5f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/hairclip_descriptions.txt @@ -0,0 +1,3 @@ +e6d78b12ce09478.png The hairclip is transparent with a smooth, slightly glossy texture, viewed from the side against a wooden door background with visible knots and grain patterns. +ee6497443eb4443.png The hairclip is a small, black, metal pin with a simple, curved design, viewed from above on a flat pink surface surrounded by everyday items like a sponge and tissue. +eae5a67890d8437.png A small, black, matte-textured hairclip is shown in a hand-held side view, set against a room with colorful hot air balloon stickers on a white wall, and a vibrant green and blue interlocking foam tile floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/hairtie_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/hairtie_descriptions.txt new file mode 100644 index 0000000..47a52bf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/hairtie_descriptions.txt @@ -0,0 +1,3 @@ +3bf557b00dc7484.png The hairtie is dark in color with a coiled, cord-like texture, lying flat on a rough, dark carpeted surface with a small reflective metal clasp, surrounded by a partially visible cluttered background. +3e4222c662f14dc.png A pink and black hairtie with possible polka dot patterns is centrally placed on a floral pink and purple bedsheet, featuring large roses and green leaves, viewed from a top-down angle. +ff4743acdf23462.png A dark, textured, elastic hairtie with a ribbed surface is held in an open palm against a gray-tiled bathroom background, positioned above a white toilet and sink. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/hammer_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/hammer_descriptions.txt new file mode 100644 index 0000000..db649fb --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/hammer_descriptions.txt @@ -0,0 +1,3 @@ +9b30574df54840d.png The hammer has a metallic head with a claw design and a red and black handle, positioned upright on a brown wooden floor, in front of a white panel door with visible wiring and a colorful rug nearby. +b6e219f760b2400.png The hammer, viewed from above on a patterned white bedspread, features a shiny metal head with a claw on one side and a distinctive red and black rubber handle, contrasting against a vibrant red room with wall art and pillows. +c52ff6f5e3544e1.png A metallic claw hammer with a black and red handle is positioned horizontally on a speckled gray countertop, against a background of household furniture including a white chair and a sofa, with the hammer's head pointing right and the handle being held delicately by a finger. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/hand_mirror_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/hand_mirror_descriptions.txt new file mode 100644 index 0000000..43633af --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/hand_mirror_descriptions.txt @@ -0,0 +1,3 @@ +d0edb1f64aa94f3.png The hand mirror has a black, textured oval frame with a smooth reflective surface, viewed from above against a white tiled floor displaying a shadow on the left side. +5b9aa584736a42a.png A round, silver metal-framed hand mirror with a red outer edge rests flat on a beige countertop, reflecting sunlight from a nearby window with a sheer curtain backdrop. +db00e3f82898436.png The hand mirror features a purple handle with a smooth finish, lying flat on a tiled bathroom floor with a muted off-white color and a visible metal air vent in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/hand_towel_or_rag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/hand_towel_or_rag_descriptions.txt new file mode 100644 index 0000000..b38304d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/hand_towel_or_rag_descriptions.txt @@ -0,0 +1,3 @@ +c3cae2b3b3fe4c9.png A blue and white patterned cloth with a diamond lattice texture is folded and held in a hand above a wooden tabletop, with a kitchen environment visible in the background. +dfbde1551147438.png A white hand towel with a black border and a pattern of alternating black and red squares is folded on a light wooden surface, with a tiled floor background visible. +8073c20147744c9.png The image shows a folded white hand towel or rag with a distinct red circle in the center, lying on a beige carpeted floor viewed from an overhead angle, with a bathroom tile area partially visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/handbag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/handbag_descriptions.txt new file mode 100644 index 0000000..6fa2e11 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/handbag_descriptions.txt @@ -0,0 +1,3 @@ +917a7da8e4844db.png The handbag is small and gray with a slightly textured surface, viewed from the side with a hand holding it against a dark tiled floor and a green mat featuring a leaf pattern in the background. +e4e502516b5f425.png The handbag is light blue with a checkered pattern texture, displayed side-on by a person in a room with orange patterned curtains and a wooden wardrobe in the background. +cba47b0996a74cb.png The handbag appears to be small and dark brown with a smooth texture, viewed from above against a wooden floor background, featuring metallic ring accents and a curved top. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/hat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/hat_descriptions.txt new file mode 100644 index 0000000..9cbf17e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/hat_descriptions.txt @@ -0,0 +1,3 @@ +0ab50819ab604d1.png The hat is a casual baseball cap with a brown front, black brim, and leopard-printed mesh back, viewed from the side on a kitchen counter with a pitcher, dish, and other utensils in the background. +c33b28ab62a446c.png The image shows a light beige, flat-brimmed cap with a smooth texture, held at an angle in a bathroom featuring patterned curtains and a tiled floor with a newspaper-filled wicker basket as part of the background. +a3c5ed6101ef4e9.png A dark navy beret with a gold emblem is resting on a desk beside a keyboard and monitor, surrounded by various desk items, showcasing a soft texture and semi-lateral viewpoint. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/headphones_over_ear_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/headphones_over_ear_descriptions.txt new file mode 100644 index 0000000..abb01b1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/headphones_over_ear_descriptions.txt @@ -0,0 +1,3 @@ +f5f27916e96c481.png Black over-ear headphones, with a glossy silver accent on the ear cups, held above a white ceramic sink, set against a light-colored tiled background. +c923723dc6104bb.png The headphones are black with a matte texture and are lying flat on a wooden table, viewed from above, amidst a cluttered environment featuring a wooden dresser and various small objects. +d35c7a55c1be414.png The over-ear headphones are black with silver accents, featuring a cushioned design, lying flat on a textured dark-purple fabric with a tiled floor partially visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/helmet_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/helmet_descriptions.txt new file mode 100644 index 0000000..ff4ebae --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/helmet_descriptions.txt @@ -0,0 +1,3 @@ +d378c8b18c8e491.png A matte black helmet with a transparent visor is viewed from an oblique angle, resting on a wooden desk cluttered with household items and set against a blue wall, with a small window providing partial natural light. +cb0a3297b11f4a9.png A dark, matte helmet with a coiled tube attachment is resting upright on a carpeted floor, positioned in front of a bookshelf containing books and boxes, with a neutral wall backdrop. +c913c0b034c74f2.png The helmet is predominantly green with black and white accents, featuring a glossy finish, seen from a frontal viewpoint resting on a bright pink shelf against a plain light-colored wall, with a clear visor and a distinctive logo design at the top. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/honey_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/honey_container_descriptions.txt new file mode 100644 index 0000000..0b1f0af --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/honey_container_descriptions.txt @@ -0,0 +1,3 @@ +41a80bb887fe42c.png A translucent bear-shaped plastic container with a beige cap features a yellow sticker labeled "Oregon Honey," set against a kitchen counter with cereal boxes and other kitchen items blurred in the background. +854c43b8761f426.png The honey container is a transparent glass jar with a green lid, viewed from an angled top perspective, placed on a white, circular table with a geometric pattern, set against a dark and possibly indoor background. +9aab471045364c6.png The honey container is clear plastic with visible brown honey inside, has a yellow label and cap, and is photographed from a slightly elevated frontal perspective against a dark background and a wooden shelf. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/ice_cube_tray_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/ice_cube_tray_descriptions.txt new file mode 100644 index 0000000..a7942c5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/ice_cube_tray_descriptions.txt @@ -0,0 +1,3 @@ +b83c751b83ad491.png The ice cube tray is white and rectangular with a smooth texture, viewed from a high angle on a speckled grey floor; it is surrounded by a pink bucket, a stone block, and a multi-colored cloth. +991e4eca00e2474.png A white, plastic ice cube tray with a smooth texture is positioned horizontally on a bathroom countertop, surrounded by toiletries, with a mirror reflecting part of the room in the background. +b1d7e8a3d4f3402.png The white ice cube tray, seen from an angled side view, leans against an off-white wall in a room with beige carpet and a wooden baseboard, featuring a series of rounded, slightly raised compartments. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/ice_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/ice_descriptions.txt new file mode 100644 index 0000000..6238b2f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/ice_descriptions.txt @@ -0,0 +1,3 @@ +83c367f83e42409.png The ice appears as a translucent, slightly curved wedge with smooth surfaces, viewed from above against a warm brown wooden background. +b2e82fac671049a.png A hand is holding a semi-transparent, frosty ice cube with a slightly cloudy and rough-textured surface, positioned over a white sink with chrome faucet fixtures and red and white cleaning products in the background. +5aef71ee3721480.png An empty blue ice tray with a grid pattern rests on a white bathroom countertop, set against a beige wall and partially visible black towel in a casually arranged manner near a shiny chrome faucet. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/iron_for_clothes_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/iron_for_clothes_descriptions.txt new file mode 100644 index 0000000..3bc7ffe --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/iron_for_clothes_descriptions.txt @@ -0,0 +1,3 @@ +949a4eea866a42c.png The iron for clothes has a shiny black handle and a textured silver soleplate, viewed from an angled side perspective on a wooden table with a colorful woven mat and visible power cord, set against a soft-lit room with white walls and decorative elements in the background. +a577574d502a4e3.png The iron for clothes is a teal and white appliance positioned upright on a plaid fabric with a textured, slightly worn appearance, set against a soft-lit interior background with a contrasting window frame. +83d411aedcec4ca.png The iron for clothes is primarily green and white with a glossy finish, positioned in a profile view on a gray ironing board, with visible black and white power cords in a plain indoor setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/ironing_board_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/ironing_board_descriptions.txt new file mode 100644 index 0000000..6da6b9b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/ironing_board_descriptions.txt @@ -0,0 +1,3 @@ +0b782080302b485.png The ironing board, seen from a side angle, features a colorful cover with orange and strawberry motifs against a white background, resting on a dark floor beside a stack of gray folding chairs and a wooden block, amidst a plain white wall backdrop. +c3953f4b736a422.png The ironing board is covered with a white floral-patterned fabric on a beige background, viewed from an elevated angle, set against a wood-paneled floor and a patterned black rug with sunburst designs. +05fdae4fbd21488.png The ironing board features a blue cover with water droplet patterns, is viewed from above, positioned on a textured beige carpet beside a wooden surface with various items surrounding it. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/jam_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/jam_descriptions.txt new file mode 100644 index 0000000..83cd578 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/jam_descriptions.txt @@ -0,0 +1,3 @@ +e40471446a06453.png The jar, viewed from a tilted angle, contains dark purple jam and has a label with purple accents against the backdrop of a textured brown countertop, with a hand holding it near a white appliance. +c2652543168a425.png The object is a glass jar of jam with a red and white checkered lid being held by a hand over a wooden table, surrounded by a black and yellow bug zapper, a salt shaker, and a wooden spatula. +33b7e68ad53b4be.png A jar of dark purple jam with a ridged dark blue lid and a label is tilted on a white sink in a bathroom with a white wall and black and white photographs in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/jar_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/jar_descriptions.txt new file mode 100644 index 0000000..808de0b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/jar_descriptions.txt @@ -0,0 +1,3 @@ +b95837cb4bbb4b7.png A person is holding a transparent, clear glass jar with a slightly bulged lid in their right hand, viewed from a side angle and resting on a beige countertop surrounded by miscellaneous bottles. +0dceaaf2add74d2.png A transparent glass jar with a bright yellow lid is held horizontally by a hand over a light wooden surface, with a tiled backsplash partially visible in the background. +9e9b6da192dd45d.png The jar, seen in an angled view, is transparent with a metallic lid and a smooth, reflective surface, held above a tiled floor with a radiator in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/jeans_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/jeans_descriptions.txt new file mode 100644 index 0000000..3e16a2f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/jeans_descriptions.txt @@ -0,0 +1,3 @@ +ca046f79028b4a9.png This pair of jeans is a faded blue with visible whiskering, laid flat on a tiled floor beside a green container and involving a partial view of a wooden surface. +daae676df3a2403.png A pair of medium blue jeans with a slightly worn texture is draped over a wooden chair, positioned at an angle in a dimly lit kitchen space with sunlight streaming in from the background. +874e494304034a4.png The low-resolution image shows a pair of blue denim jeans with a faded texture primarily on the thighs, lying flat with legs extended upward on a glossy white tiled floor. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/kettle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/kettle_descriptions.txt new file mode 100644 index 0000000..c4399dc --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/kettle_descriptions.txt @@ -0,0 +1,3 @@ +bf2ddc7ad302400.png The glass kettle, seen from a slightly top-down view, features a black handle and lid, set on a reflective glass table with a patterned rug underneath. +5ce5b171be814a1.png The kettle is metallic with a slightly tarnished texture, viewed from an elevated angle showing its round top and distinctive spout and black handle against a white bathroom countertop and wooden cabinet backdrop. +8d3747ad9eb443c.png A metallic silver kettle with a smooth texture and black handle is viewed from a slightly elevated angle on a wooden surface, with a blurred background including a wall and partial view of a keyboard. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/key_chain_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/key_chain_descriptions.txt new file mode 100644 index 0000000..5b9c950 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/key_chain_descriptions.txt @@ -0,0 +1,3 @@ +b26c96fda78f4d1.png A cartoon character key chain with a red background and black hair is lying on a vibrant pink and white heart-patterned blanket, positioned at a slight angle. +185ed74a3463470.png A silver, Eiffel Tower-shaped key chain embellished with small, evenly spaced rhinestones is positioned on a soft, light beige fabric background, viewed from a slightly overhead angle. +6b0af6678dd64de.png The key chain consists of two metallic keys—one with a brass hue and the other silver—attached to a simple metal loop, and is held in a hand over a white sink with beige tiled walls in a bathroom setting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/keyboard_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/keyboard_descriptions.txt new file mode 100644 index 0000000..f8ae2fd --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/keyboard_descriptions.txt @@ -0,0 +1,3 @@ +8ff40ef6369d4a0.png The image shows a black keyboard with a glossy finish viewed from the narrow side, revealing its slim profile, placed on a textured, reddish-purple fabric background with a visible power cord and USB connector extending outward. +c5954e78491140f.png The keyboard is black with a matte texture, viewed from an angle above in a bathroom setting, distinguishable by the white toilet and tiled floor backdrop, with a visible cord and a slightly curved design. +bb020b2953244e2.png The keyboard is black with white lettering and a slight curvature, viewed from above, set against a tiled floor with visible grid lines. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/ladle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/ladle_descriptions.txt new file mode 100644 index 0000000..4f31f3d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/ladle_descriptions.txt @@ -0,0 +1,3 @@ +c929cc5ab9a146f.png A person is holding a metallic, silver ladle with a smooth, reflective surface and a spherical bowl, viewed from a side angle against a dimly lit background with a wooden floor. +3595bd75219b420.png A person holds a silver metal ladle with a smooth, shiny finish in front of a partially visible red, circular stool with a floral patterned background curtain, all captured from an overhead angle. +935b9b3368d1409.png A vibrant blue ladle with a smooth, glossy texture lies diagonally on a granite countertop, surrounded by a kitchen environment featuring fruits and a potted plant in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/lampshade_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/lampshade_descriptions.txt new file mode 100644 index 0000000..4085022 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/lampshade_descriptions.txt @@ -0,0 +1,3 @@ +7bee6ab707fe41e.png The lampshade features a mint green color with black floral designs, accented by gold trim, and is captured at an angle showing its side with a wooden surface and a beige wall in the background. +1ceef499f543497.png The lampshade is a reddish-brown color with a cylindrical shape, viewed from above on a wooden floor in a kitchen setting, surrounded by cabinets and an oven, featuring a simple fabric texture with no visible pattern or embellishment. +d712cd284818495.png The lampshade is composed of brown woven material with a conical shape, viewed from an angle slightly below eye-level, set against a living space with wood flooring and visible wall art. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/laptop_charger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/laptop_charger_descriptions.txt new file mode 100644 index 0000000..3971033 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/laptop_charger_descriptions.txt @@ -0,0 +1,3 @@ +4240138a3e5b4e8.png A coiled black laptop charger with a rectangular power brick and connectors lies on a wooden floor near a geometrically patterned rug, viewed from above. +ad5a8b68b82f40b.png A black rectangular laptop charger with a smooth texture and two attached cables, viewed from above on a beige carpeted floor with visible spots and slight debris in the background. +981f91f650be402.png A black, rectangular laptop charger with a matte texture is held in a hand in direct sunlight, casting shadows on a tiled floor, with a bottle of lotion and part of a laptop visible in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/laptop_open_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/laptop_open_descriptions.txt new file mode 100644 index 0000000..42cc589 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/laptop_open_descriptions.txt @@ -0,0 +1,3 @@ +60ad2b2cb642487.png A black laptop with a textured finish is open wide on a carpeted floor, displaying a yellow screen with visible text and patterns, against a backdrop of a sofa and a pair of shoes. +5308d113c4f747c.png The laptop is open with a metallic silver lid and a vibrant blue display depicting an abstract scene, being held at an angle against a background of white brick walls. +35566f76c03f4d9.png The laptop open shows a dark-colored device with a smooth texture, viewed from a slightly elevated front angle on a floral-patterned bed cover, with a vivid animated wallpaper featuring a character and clouds on the screen. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/leaf_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/leaf_descriptions.txt new file mode 100644 index 0000000..bdddc02 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/leaf_descriptions.txt @@ -0,0 +1,3 @@ +75db46dd250f410.png The leaf appears dry and brown with visible veins, held in a hand from a sideways angle in a cluttered indoor setting with kitchen items and decorative elements in the background. +d9df4f37c55e4e4.png The leaf is a vibrant green and has a serrated texture with visible central veins, lying flat on a light, subtly textured background that resembles fabric with horizontal lines. +5cfe2460bf2d44c.png A narrow, dark green leaf with a glossy texture lies flat on a patterned fabric background featuring pinkish-red zigzag and floral designs. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/leggings_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/leggings_descriptions.txt new file mode 100644 index 0000000..9e60dc7 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/leggings_descriptions.txt @@ -0,0 +1,3 @@ +fddf9d8ec2c9492.png The leggings are a deep maroon color with visible stitching, viewed from a flat, horizontal angle against a gray-striped background. +98af556759fc420.png Bright pink leggings with a smooth texture are laid flat on a patterned fabric featuring abstract designs in black and pink against a light background. +01dd8db9cc234cd.png A pair of full-length leggings featuring a colorful skull pattern in pink, green, and white hues on a dark background, laid flat on a red carpeted floor with a sofa and scattered debris in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/lemon_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/lemon_descriptions.txt new file mode 100644 index 0000000..c73cb9e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/lemon_descriptions.txt @@ -0,0 +1,3 @@ +1e135f1bb331419.png The lemon appears bright yellow with a smooth texture, viewed from the side with a hand holding it, against a dark grey fabric background. +4a6c75a93387484.png The lemon is held in a hand above a stainless steel sink, appearing vibrant yellow with a few dark spots on its somewhat smooth texture, and is positioned in a slightly angled view with a clean kitchen setting visible in the background. +492a387d3b9e4dc.png A hand holds a small, round lemon with a bright yellow, smooth skin from a side angle against a kitchen background with white surfaces and a bunch of bananas in the distance. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/letter_opener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/letter_opener_descriptions.txt new file mode 100644 index 0000000..656bcb5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/letter_opener_descriptions.txt @@ -0,0 +1,3 @@ +5dc6465c06e44aa.png A black-handled letter opener with a metallic blade is held horizontally by a hand wearing a brown sleeve, set against a background with a white round table and light wood flooring. +67650642731643b.png The letter opener is metallic with a reflective silver blade and a dark handle, held horizontally by a hand against a smooth, light-colored surface in a minimalist interior setting. +47f6ce5e3f7b4db.png The letter opener is a cream-colored, rectangular object with a textured surface and a slot on top, lying flat on a floral-patterned quilt in a diagonal perspective. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/lettuce_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/lettuce_descriptions.txt new file mode 100644 index 0000000..999d756 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/lettuce_descriptions.txt @@ -0,0 +1,3 @@ +8b2247112d1844f.png The image shows a bundle of vibrant green leaves with a slightly ruffled texture, enclosed in a transparent plastic bag held from a high-angle viewpoint, set against a neutral indoor background. +273331e50b9f4d7.png The lettuce appears to be a light to medium green romaine variety with a slightly elongated shape and smooth, firm leaves; it is held horizontally against a plain white and gray background, showcasing its distinct central rib and red-tinged base. +0bb464a5e2fe465.png A group of vibrant green leaves with slightly ruffled edges, possibly lettuce, lies on a textured white cloth atop a brown leather sofa, set against a tiled floor with a light pattern. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/light_bulb_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/light_bulb_descriptions.txt new file mode 100644 index 0000000..b23138a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/light_bulb_descriptions.txt @@ -0,0 +1,3 @@ +1d2bb15274c7406.png The light bulb appears white with a matte, slightly dusty texture, viewed from a side angle on a smooth gray surface with visible coiled tubes at the bottom and a metallic top, set against a pale wall background. +e118bb6155924a1.png The image shows a small, matte white LED light bulb with a smooth texture and a metallic screw base, positioned horizontally against a plain white backdrop, with visible icons and text on its midsection. +8d13c7c321164a1.png In the image, a person is holding a white, smooth-textured incandescent light bulb with a round top and narrow base, viewed from an angled top-down perspective against a bathroom setting with visible tiles, a sink, toilet, and red rug. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/lighter_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/lighter_descriptions.txt new file mode 100644 index 0000000..ab331e3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/lighter_descriptions.txt @@ -0,0 +1,3 @@ +02ebeb23fc0248c.png A white lighter with a vertical blue and gray design is held in a hand, against a cozy living room background with a brown wooden floor and beige furniture. +1ba921b2e1914de.png The lighter is a glossy white rectangle with rounded edges, held at an angle in a hand, against a background of a patterned rug and wooden baseboard. +69be388c433e41c.png The lighter is cylindrical, predominantly green with a red button, and is being held horizontally in a hand over a dark wooden surface, viewed from a slightly tilted side perspective. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/lipstick_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/lipstick_descriptions.txt new file mode 100644 index 0000000..0941d0d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/lipstick_descriptions.txt @@ -0,0 +1,3 @@ +55dc82a380e24cf.png A vibrant red lipstick lies diagonally on a patterned fabric with geometric designs in black and pink. +08aeee339ab745c.png The object is a white cylindrical tube viewed from an elevated angle on a speckled carpeted surface, with a smooth texture and no visible branding or embellishments. +0e3a56958fdd48c.png A metallic silver lipstick tube lies horizontally on a colorful plaid tablecloth with a blurred indoor plant and fruit bowl in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/loofah_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/loofah_descriptions.txt new file mode 100644 index 0000000..cd13b0b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/loofah_descriptions.txt @@ -0,0 +1,3 @@ +69d4e0eaecb3468.png A dark, netted loofah with a black handle sits on a white bathroom countertop, framed by several colorful bottles and wooden cabinetry, with a wall-mounted mirror reflecting the room in the background. +1ee8894cbda0410.png A bright pink loofah with a tightly clustered texture is held in a hand over a patterned rug with a hardwood floor in the background. +a66f4a4944c641f.png A light purple, mesh-textured loofah with a small loop is positioned centrally on a smooth, white sink surface, slightly shadowed on one side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/magazine_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/magazine_descriptions.txt new file mode 100644 index 0000000..be738dd --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/magazine_descriptions.txt @@ -0,0 +1,3 @@ +12fceb09864f44e.png A person holds a magazine or paper item with a predominantly white cover and unreadable text against a backdrop of a cluttered table featuring various items, including patterned fabrics and boxes. +b6965d055ce540f.png The magazine, viewed from the side as it is held by a hand, features a smooth white cover with indistinct brown details or text, set against a background of a hardwood floor with a nearby cardboard box and power strip. +2ed6302e141d42e.png The magazine appears to have a glossy blue spine with white text, held at an angle by a person against a background featuring wooden flooring and miscellaneous items like shoes and electronic devices. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/makeup_brush_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/makeup_brush_descriptions.txt new file mode 100644 index 0000000..fdda966 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/makeup_brush_descriptions.txt @@ -0,0 +1,3 @@ +fa6f40a94d164e3.png A black-handled makeup brush with soft, fluffy bristles viewed from above rests on a quilted, white and navy patterned fabric background. +231db09a227a425.png The makeup brush features a small, compact design with black bristles and handle, viewed from above, set against a light brown wooden surface, and includes three visible rivets. +fff96728e9c44db.png A makeup brush with a sleek black handle and shiny silver ferrule supports dense, light brown bristles, set against a textured, light gray background carpet, lying diagonally with the bristles pointing to the right. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/makeup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/makeup_descriptions.txt new file mode 100644 index 0000000..3fe7b94 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/makeup_descriptions.txt @@ -0,0 +1,3 @@ +e354b418047c46d.png A compact makeup container with a silver lid and beige label is being held above a white bathroom sink with various toiletries, displaying a minimalistic and shiny finish. +3544b7461d5d416.png A cylindrical white tube of makeup lies horizontally on a black textured carpet with a geometric white pattern, featuring printed text on its side. +dbf6055eb7eb496.png A small, round makeup container with a black lid and clear base seen from the side in a dark bathroom environment, resting on a cream-colored countertop surrounded by grooming products and a blue hairbrush. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/marker_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/marker_descriptions.txt new file mode 100644 index 0000000..e89eb4f --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/marker_descriptions.txt @@ -0,0 +1,3 @@ +4f4b299cded9469.png The marker has a gray body with black text and a black cap, held horizontally in a hand against a wooden floor background with visible planks and a blurred container in the corner. +ca9af8395b22443.png A white marker with black text and a black cap is resting diagonally on ornate gold-patterned fabric, viewed from above, with distinct swirling designs in the background. +bd72310c6e6f42d.png A person holds a gray marker with a black cap and prominent branding in a bathroom setting, viewed from a slightly angled perspective above a white ceramic sink with black fixtures against a light gray wall. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/match_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/match_descriptions.txt new file mode 100644 index 0000000..a47c65a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/match_descriptions.txt @@ -0,0 +1,3 @@ +66cad57507fe440.png A wooden matchstick with a darkened, possibly burned tip lies horizontally on a textured, ribbed and slightly dirty off-white surface with a circular indent nearby, suggesting an industrial or workshop environment. +b9c6445b53844a1.png The matchstick, held vertically between fingers against a speckled granite surface, features a light wooden shaft and a distinct green tip. +31fcb5fa80874df.png A small, rectangular matchbox with a red and yellow cover featuring a black logo is partially open, revealing matches inside, and is resting on a wooden desk next to a black laptop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/measuring_cup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/measuring_cup_descriptions.txt new file mode 100644 index 0000000..1048e0c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/measuring_cup_descriptions.txt @@ -0,0 +1,3 @@ +8d9aacac9d5c426.png The measuring cup is semi-transparent with a frosted texture, viewed from above at a slight angle on a speckled granite countertop in a kitchen environment, next to colorful household items and a metallic dish rack. +486d03af4ff7414.png A small red plastic measuring cup with a metal handle is lying on a white hexagonal-tiled floor near a dark fabric mat, viewed from a slightly elevated angle, with a decorative white lattice visible in the background. +81e046c0070c457.png A white, plastic measuring scoop with a smooth texture is held horizontally by a hand, set against a tiled wall background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/microwave_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/microwave_descriptions.txt new file mode 100644 index 0000000..7f28d2c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/microwave_descriptions.txt @@ -0,0 +1,3 @@ +3c5335ca5e1e404.png The black and silver microwave, tilted at an angle on a granite countertop, features a reflective glass front with a control panel on the left, set against a background of wooden cabinets and white curtains. +8982113e97f4440.png The microwave, viewed from a slightly angled perspective, is stainless steel with a glossy finish, featuring a black door and digital keypad, set against a white tiled backsplash in a kitchen with white cabinetry and countertop clutter. +570f1967a86e43e.png A black microwave with a smooth, glossy finish is viewed from an elevated angle, situated on a wooden surface next to a brightly colored bag in a dimly lit room with pale walls. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/milk_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/milk_descriptions.txt new file mode 100644 index 0000000..8c20867 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/milk_descriptions.txt @@ -0,0 +1,3 @@ +917c6466055e44d.png A carton of almond milk with a red and purple design featuring the label "Almond," tilted against a wooden floor against a couch backdrop, shows a prominent circular cap and distinct brand markings despite the low resolution. +c9cadad5a2754ad.png A partially filled, clear plastic gallon jug of 2% milk with a blue cap is being held sideways against a plain light blue background wall, with a visible label containing text. +a15eb9ff009f440.png A brown cardboard milk carton with a red cap and red decorative design featuring a playful cow leans diagonally against a white sink, set in a tiled bathroom environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/mixing_salad_bowl_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/mixing_salad_bowl_descriptions.txt new file mode 100644 index 0000000..d5b7129 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/mixing_salad_bowl_descriptions.txt @@ -0,0 +1,3 @@ +7a8cf5785af7470.png A metallic mixing bowl with a smooth, reflective surface is seen in a bathroom setting on a gray speckled countertop, surrounded by various toiletries and adjacent to a small fan. +135983bfed3a498.png The mixing salad bowl appears transparent with a smooth texture, seen in a tilted diagonal view from the side, against a carpeted floor with a tangled rope in the background. +f4d40fcbd508435.png The mixing salad bowl is transparent with a textured or ribbed pattern, viewed from a slightly elevated angle, placed on patterned blue and white cushions against a green wall with a brown carpet. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/monitor_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/monitor_descriptions.txt new file mode 100644 index 0000000..1238c72 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/monitor_descriptions.txt @@ -0,0 +1,3 @@ +9b6c9b8092d44e9.png The monitor is black with a red base, mounted on a wall next to two light switches, viewed from a right-side angle, with a sticker label in the upper corner and a desk setup beneath. +37a4c4d1db6b44f.png The monitor, displaying a bright interface on a white screen, is angled slightly downward in a dimly lit room with visible gaming peripherals, surrounded by a wooden structure and a vibrant splash of blue and red from adjacent items. +62366486578d452.png The monitor, partially visible as part of a laptop lid, appears black with a matte texture, viewed from a slightly elevated angle in a cluttered office environment with a wooden desk, characterized by a thin display frame and a shiny logo emblem at the center above the screen. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/mouse_pad_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/mouse_pad_descriptions.txt new file mode 100644 index 0000000..862cdf8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/mouse_pad_descriptions.txt @@ -0,0 +1,3 @@ +fed6cdf9afd9465.png A person is holding a flexible, black object with a logo, bending it slightly over a plush, grey shaggy carpet, with a partial view of their red-sleeved arm. +ff004c718bff458.png The mouse pad appears to be rectangular with a dark base color featuring a pattern of light green plant-like designs, positioned on a wooden desk beside a computer monitor and mouse. +6fa59acd99d74d8.png A black, rectangular mouse pad with a reflective patch in the top left corner is placed flat on a light wooden table, surrounded by a gray textured rug and other contrasting dark objects. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/mouthwash_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/mouthwash_descriptions.txt new file mode 100644 index 0000000..22cd6ff --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/mouthwash_descriptions.txt @@ -0,0 +1,3 @@ +6b4655156f2e4b0.png The mouthwash bottle is clear, showcasing an amber liquid inside, held upright by a person in a white shirt and star-striped shorts, standing against a bright background of vertical blinds partially illuminated by sunlight. +f520794d350646a.png The low-resolution image shows a bottle of mouthwash with a translucent, light purple liquid, positioned horizontally on a white toilet seat, featuring a black cap and an angular, rectangular bottle shape with a white label containing text. +650dc5f6e3ed4c2.png A flat bottle with a deep purple liquid and a red cap is held horizontally over a textured granite countertop, surrounded by various toiletry items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/mug_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/mug_descriptions.txt new file mode 100644 index 0000000..fec2d97 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/mug_descriptions.txt @@ -0,0 +1,3 @@ +54153b6ca772454.png A plain white mug with a smooth finish is seen from a low-angle side view and placed on a wooden floor with subtle grain patterns, against a white wall and baseboard with a visible outlet and a length of cable running along the baseboard in the background. +be905efefad243d.png A ceramic mug with a camouflage pattern and a white interior is resting on a dark granite countertop in a bathroom, viewed from a slightly elevated side angle. +559790fd86534a1.png A white mug with small dark speckles and a smooth texture is viewed from a side angle, lying on its side on a wooden floor with a distinct grain pattern. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/multitool_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/multitool_descriptions.txt new file mode 100644 index 0000000..4e6c5d0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/multitool_descriptions.txt @@ -0,0 +1,3 @@ +088b0ee4e22d4f3.png The multitool, viewed from the side and held between a thumb and fingers, features a bright green outer casing with a slightly metallic, segmented center, set against a tiled floor with a colorful carpet in the distant background. +7f739b70b831409.png Red multitool with visible knife and scissors extended, positioned on a wooden surface with scattered objects in a cluttered indoor environment. +3171acecbffb48e.png The multitool, appearing metallic and sleek, is lying on a textured, brown carpet floor viewed from the side, showcasing a series of folded implements along its edge. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_clippers_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_clippers_descriptions.txt new file mode 100644 index 0000000..b63ec17 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_clippers_descriptions.txt @@ -0,0 +1,3 @@ +bff267cb91624b7.png The nail clippers are metallic silver with a shiny, reflective texture, viewed from an angled top-down perspective resting in a person's palm against a warm-toned wooden background, featuring a visible lever and rivet connection. +0064fc880298473.png The shiny silver nail clippers are captured from a top view, held in a hand with a textured gray wall in the background, and have a slightly open lever. +26b8cf6fb0c742a.png A metallic silver nail clipper with a smooth, reflective texture is positioned at an overhead angle on a cream-colored bathroom sink, featuring a detached lever resting to the side. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_fastener_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_fastener_descriptions.txt new file mode 100644 index 0000000..44bb17d --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_fastener_descriptions.txt @@ -0,0 +1,3 @@ +b49d10764e13408.png A metallic, slightly rusted nail with a flat head and a textured, threaded shank lies horizontally on a cracked, gray concrete surface. +92d96a9c83da441.png The nail fastener is metallic with a slightly rusted appearance, viewed from a side angle showcasing its curved shaft and bent head, against an indoor background featuring a blurred wall and muted colors. +2940b895033e4eb.png A long, slender, metallic nail fastener with a pointed tip and a small, flat head, appears silver-gray, lying diagonally on a light-stained wooden surface next to a dark fabric, with a shallow focus enhancing texture details. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_file_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_file_descriptions.txt new file mode 100644 index 0000000..e893848 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_file_descriptions.txt @@ -0,0 +1,3 @@ +cf1974f620b04e8.png A person is holding a narrow, rectangular yellow nail file over a speckled granite countertop, with a red object in the background. +ee7c5abf00ce401.png A curved, light pink nail file, with a matte texture, is held upright in a hand against a burgundy-patterned bedspread with light-colored pillows in the background. +edff3f25ab4d4bd.png A gray and white nail file with a rough texture lies flat on a patterned fabric background featuring concentric circles in various shades of brown. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_polish_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_polish_descriptions.txt new file mode 100644 index 0000000..d672ee1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/nail_polish_descriptions.txt @@ -0,0 +1,3 @@ +2de23d1dd2724a3.png A person holds a black nail polish bottle with white text in a bathroom setting, with a visible sink and blue container in the background, highlighting its glossy, reflective surface. +62437d526b6847f.png The nail polish bottle is vibrant red with a glossy texture, lying horizontally on a tiled surface, with a white cap and a partially visible blue cylindrical container in the background. +a7bdf2265a6f4be.png A glossy, deep burgundy nail polish with a golden cap is lying on a patterned fabric featuring blue and green floral motifs, viewed from an overhead angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/napkin_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/napkin_descriptions.txt new file mode 100644 index 0000000..2a14e32 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/napkin_descriptions.txt @@ -0,0 +1,3 @@ +f34409339f9a410.png The napkin is white with a subtle diamond texture, held at an angle in a hand against a tiled floor, with a light blue towel and a bottle visible in the bathroom background. +09240d678d4e441.png The napkin is white with a lightly textured surface, lying flat on a windowsill in an indoor setting, with a partial view of a window frame and greenery outside. +e854f7642aa2488.png The napkin in the image is red with a white checkered pattern, held at an angle, with a table covered in a patterned cloth and a chair in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/necklace_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/necklace_descriptions.txt new file mode 100644 index 0000000..627b725 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/necklace_descriptions.txt @@ -0,0 +1,3 @@ +a0b2dfd77f32456.png The necklace features three strands of smooth, round red beads with a metallic clasp, arranged in a semi-circular layout on a plain white background. +96ce799d9a074c3.png A brass-colored necklace with a heart-shaped pendant featuring a central red gemstone rests on a beige bathroom counter amidst common toiletries. +f1664ee304f349d.png The necklace features a thin chain with a small, shiny pendant, lying on a patterned, quilted fabric background in a top-down view with subtle lighting. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/newspaper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/newspaper_descriptions.txt new file mode 100644 index 0000000..62407bf --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/newspaper_descriptions.txt @@ -0,0 +1,3 @@ +90f854170c5f4b2.png A folded newspaper with red and white sections and bold black text lies on a dark, smooth floor, featuring distinct images and large headlines. +db7e93eeed974b7.png The newspaper lies flat on a tiled floor and features a layout with distinct blue and white sections accompanied by images, surrounded by additional household elements including a colorful floral-patterned rug. +c2d4bbcd8dc84fd.png A newspaper with a bold, colorful header, showcasing a gradient of blue to orange tones, is lying flat on a marbled floor, with text and images visible despite the low resolution. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/night_light_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/night_light_descriptions.txt new file mode 100644 index 0000000..04ca0c6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/night_light_descriptions.txt @@ -0,0 +1,3 @@ +562c9d443e064bd.png The night light has a metallic silver frame with a clear cover and a small circular bulb, held in an outstretched hand against a tiled floor with a pet feeding area in the background. +0ef4bf6623f04e6.png The night light is an off-white rectangular device with rounded edges, showing a side view with a small, rectangular cutout near the top and a visible logo imprint, set against a speckled beige and brown granite countertop. +bcdec1380d8a4d6.png The night light appears to be a white unicorn with golden hooves and a pink snout, lying on its side on a beige sofa with fluffy white and pink cushions in the background, set in a cozy indoor environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/nightstand_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/nightstand_descriptions.txt new file mode 100644 index 0000000..b6a62c3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/nightstand_descriptions.txt @@ -0,0 +1,3 @@ +b2ed4260f1484af.png The nightstand is a wooden piece with a light brown, weathered texture, featuring two rectangular drawers with metal handles, seen from a slightly low-angle side view against a backdrop of a white wall and vertical blinds, with assorted electronics and cables scattered at its base. +c61297dda7a24ff.png The object appears to be a white, rectangular cabinet or nightstand on its side, with visible wooden panels and black wheels, situated in a carpeted room with nearby furniture and decorative items like a plant and a red clipboard. +8d87ffd939b9457.png The nightstand is a medium brown color with a smooth wooden texture, seen from a slightly elevated side angle, situated on dark wood flooring near a white toilet and bath mat in a dimly lit bathroom. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/notebook_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/notebook_descriptions.txt new file mode 100644 index 0000000..6441d9e --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/notebook_descriptions.txt @@ -0,0 +1,3 @@ +853d448b5a7c4ce.png A small notebook with a colorful cover featuring a floral design is resting at an angle on a fabric surface with a multicolored leaf pattern, set against a blurry indoor background. +7c2480204f85409.png The notebook, viewed from above on a tiled floor, features a cover primarily in blue with white text and graphics, and a red header, highlighted by a spiral binding on one side. +c2e774a2fea4447.png A light gray spiral notebook with a smooth texture is positioned flat on the edge of a bathroom countertop near a white sink with a reflective mirror in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/notepad_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/notepad_descriptions.txt new file mode 100644 index 0000000..664f9a0 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/notepad_descriptions.txt @@ -0,0 +1,3 @@ +c28d4687850148b.png The notepad, appearing white with a slight sheen, is viewed from a side angle resting against a dark blue surface, set within a cozy environment featuring striped and patterned pillows. +44a8e18198c4417.png The notepad, viewed from a side angle, features a plain white cover with a slim profile, held in a hand against a wooden surface background, emphasizing its thinness and minimal design. +8d48448623fb477.png A green notepad with a white vertical stripe and text is lying flat on a red, patterned fabric surface, viewed from an overhead angle. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/nut_for_screw_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/nut_for_screw_descriptions.txt new file mode 100644 index 0000000..c42ee00 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/nut_for_screw_descriptions.txt @@ -0,0 +1,3 @@ +bee697311e934ed.png A dark, hexagonal metal nut with a coarse texture is positioned atop folded paper on a wooden floor background, showing an angled side view with shiny, worn edges. +53515fbe82184b9.png The nut appears metallic with a silver, worn texture, viewed from an oblique angle, set against a background of white and wood-like surfaces with visible shadowing. +b443212ee04d40b.png The nut for screw is metallic and shiny with a smooth texture, viewed from a slightly tilted angle between fingers, set against a blurred background featuring a keyboard. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/orange_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/orange_descriptions.txt new file mode 100644 index 0000000..ad4bc9c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/orange_descriptions.txt @@ -0,0 +1,3 @@ +af1d97849012402.png The orange, with a vibrant orange color and slightly dimpled texture, is captured from a top-down perspective against a neutral, light-brown background, displaying a small green nub at its center with subtle shadowing. +2cbc9e635525413.png A round, orange fruit with a slight glossy texture and a small sticker is resting on a crumpled gray fabric surface with soft lighting creating gentle shadows. +85321f1f0a9b4e4.png The orange appears vibrant and smooth from a slightly angled top view, positioned on a wooden surface with a pink cutting board partially visible beside it. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/oven_mitts_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/oven_mitts_descriptions.txt new file mode 100644 index 0000000..f3a66b4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/oven_mitts_descriptions.txt @@ -0,0 +1,3 @@ +eeae5d998e7b41f.png A pair of black and red oven mitts are seen from a top-down viewpoint, resting on a light-colored countertop in a kitchen environment with scattered household items. +b778d495b9db40f.png The image features a bathroom with a white toilet and teal fuzzy bathroom cover, but no oven mitts are visible. +bd07b0faa1644bc.png A dark green quilted oven mitt with a worn appearance is lying flat on the top of a white washing machine, with a hint of a laundry detergent container visible on the wooden floor nearby. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/padlock_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/padlock_descriptions.txt new file mode 100644 index 0000000..ccf0199 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/padlock_descriptions.txt @@ -0,0 +1,3 @@ +01ca3fedccfe430.png A black padlock with a curved shackle is attached to a coiled cable, packaged on a red and gray card, and placed on a tiled floor with light-colored tiles and dark diamond-shaped accents. +13d451dd13c4432.png The padlock has a tarnished brass color with a slightly weathered texture, viewed from a top angle while being held in a hand over a bathroom setting with a white toilet and tiled floor background, featuring a rounded shackle and flat rectangular body. +0a47c7c7b0c14ac.png The padlock is metallic with a checkered texture, viewed frontally in a locked position, set against a dark wooden background, featuring a black circular handle and a visible keyhole. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/paint_can_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/paint_can_descriptions.txt new file mode 100644 index 0000000..fe76159 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/paint_can_descriptions.txt @@ -0,0 +1,3 @@ +4ee4aa0695f2437.png A red and white paint can with metallic handles is held at an angle against a gray carpeted floor, displaying a prominent blue logo and text, set in an indoor environment with a black cabinet and heater in the background. +22b0e16ad403430.png The image shows a cylindrical paint can with a white upper section and a red lower section, featuring bold black text across the label, viewed from a slightly elevated side angle on a reflective dark surface, with a cluttered garage environment in the background. +c5fcc0ba3e8a49c.png The paint can appears to be a standard metallic color with a smooth, reflective surface, viewed from a top-down perspective on a wood-patterned floor, with a faint shadow and a visible dent on the lid. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/paintbrush_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/paintbrush_descriptions.txt new file mode 100644 index 0000000..c5a7d61 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/paintbrush_descriptions.txt @@ -0,0 +1,3 @@ +1c285d8caa7341e.png A rectangular-bodied paintbrush with dark bristles and a light wooden handle rests diagonally on a folded, green-striped cloth laid on a polished wooden floor. +4308d3b4945b486.png The white-handled paintbrush, with beige bristles partially dipped in white paint, is held horizontally by a hand against a speckled beige countertop, alongside kitchen items and a white ceramic-tiled background. +95fc334081fb483.png The paintbrush features a wooden handle with a natural finish and light brown bristles, lying flat on a white tabletop in a kitchen setting with a bright green cloth and various household objects in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_bag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_bag_descriptions.txt new file mode 100644 index 0000000..9af7221 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_bag_descriptions.txt @@ -0,0 +1,3 @@ +53301e542a4a4d4.png The paper bag is light brown with a smooth yet slightly crumpled texture, viewed at an angle from the side showing its gusseted bottom, placed on a dark wooden surface against a softly lit wall background. +3dd74a114fe0459.png A light brown paper bag with a smooth texture is viewed from a top-down angle, resting on a wooden patterned floor beside a brown cushioned chair with a mesh-like back. +135aef2263a34a7.png The paper bag is light brown with dark printed text, viewed from above on a beige carpeted floor amidst scattered electronic accessories and furniture, and features a distinct heart-shaped design. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_descriptions.txt new file mode 100644 index 0000000..9d3cf38 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_descriptions.txt @@ -0,0 +1,3 @@ +3defab4b2615479.png A white sheet with subtle horizontal lines lies on a dark, flat surface, curling slightly along one edge, displaying blurred text at the top in a dimly lit environment. +1e93b91afc5b4d0.png A slightly curved, plain white paper held in a hand is viewed from an angle against a textured gray carpet background with wooden furniture visible at the top. +1993c4ae4db24cc.png A hand is holding a folded, primarily pink paper with some visible text and illustrations, viewed from above against a background of a patterned bedspread and a fabric bag. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_plates_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_plates_descriptions.txt new file mode 100644 index 0000000..45c65f8 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_plates_descriptions.txt @@ -0,0 +1,3 @@ +308a1ef6188b4f5.png A stack of white paper plates with colorful patterns along the edges is held upright in a hand against a textured brown countertop and exposed brick background. +793a5e8686f140f.png The image shows a white, plastic food container on a black and white stove with wooden paneling in the background. +1ca426af0ff44d1.png A plain white paper plate with a subtle raised edge and faint ribbed texture is positioned flat on a speckled brown granite or laminate countertop. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_towel_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_towel_descriptions.txt new file mode 100644 index 0000000..81d1615 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/paper_towel_descriptions.txt @@ -0,0 +1,3 @@ +2caf291f855946d.png A white paper towel with a subtle embossed swirl pattern and colorful leaf and floral designs in pink, green, and blue lies flat on a dark tabletop, which is part of a dining setup with a woven placemat and a bowl of multicolored objects in the background. +b6a5d35027fd47a.png A white, textured paper towel roll is positioned horizontally with a visible perforation line, placed on a kitchen counter next to wooden cabinetry and beneath a metal rack holding various spice containers, set within a tiled backsplash environment. +38e607c083f84d9.png A white paper towel roll with a subtle embossed swirl pattern is being held horizontally over a floral-patterned quilt on a bed, with a beige wall as the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/paperclip_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/paperclip_descriptions.txt new file mode 100644 index 0000000..f879026 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/paperclip_descriptions.txt @@ -0,0 +1,3 @@ +73a899bb9067485.png A metallic, silver paperclip lies flat on a shiny white surface, reflecting light with a slightly elongated oval shape and a minimal shadow, against a blurred background. +191cfa2e5cea4a7.png The image shows a silver, smooth-textured paperclip in a three-quarter top view on a light-colored, slightly textured surface with a faint, curved line in the background. +12523cdf66a74b9.png The silver paperclip, with a smooth and shiny texture, is resting vertically against a metallic cylindrical object on a wooden surface, with a blurred colorful box and cables in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/peeler_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/peeler_descriptions.txt new file mode 100644 index 0000000..308d875 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/peeler_descriptions.txt @@ -0,0 +1,3 @@ +304c8cfa0ed6445.png The peeler features a matte black handle with a shiny, curved blade, viewed from a slightly overhead angle against a speckled gray and black granite countertop. +efd7c1569a3f439.png The peeler, viewed from above, has a shiny metallic finish with a straight handle and a parallel blade, set against a light wooden surface near a pinecone, contrasted by a tiled floor. +d9cf7ce475ed4af.png The peeler has a smooth, matte gray handle with a ribbed grip, and is positioned diagonally against a wooden table with a dimly lit, carpeted floor and metal rack in the background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/pen_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/pen_descriptions.txt new file mode 100644 index 0000000..ed120ec --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/pen_descriptions.txt @@ -0,0 +1,3 @@ +bf5eaeea82d147e.png The image shows a red pen with a translucent cap lying diagonally on a textured gray fabric surface with a dark, vertically striped background visible at the top. +df1d67f46398472.png The pen has a transparent barrel with a blue grip and tip, resting diagonally on a light wood surface, with a blurred background of a black laptop and decorative object. +2da13fc6726c45a.png The pen is bright red with white patterns, positioned horizontally on a wooden surface, set against a multicolored, textured carpet background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/pencil_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/pencil_descriptions.txt new file mode 100644 index 0000000..761d385 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/pencil_descriptions.txt @@ -0,0 +1,3 @@ +feb71e7d80b044d.png A yellow pencil with a red eraser and silver ferrule is shown at a slight angle in an indoor room with carpeted floor and a bookshelf in the background. +9253f8094a82458.png A yellow pencil with a hexagonal body, metal ferrule, and pink eraser is held horizontally over a bathroom countertop, with personal grooming items blurred in the background. +e5bd17a10557413.png An orange pencil with a light eraser and metal ferrule lies horizontally on a white countertop in a dimly lit kitchen environment. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/pepper_shaker_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/pepper_shaker_descriptions.txt new file mode 100644 index 0000000..3ba5e9a --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/pepper_shaker_descriptions.txt @@ -0,0 +1,3 @@ +1733879da0314d5.png The pepper shaker has a bright yellow, round top with small perforations and a translucent white base, sitting on a dark, marbled countertop amidst scattered debris near a cleaning brush in a red and black colored environment. +d81c676c48c1470.png A cylindrical, red canister with white text lies on a speckled countertop, surrounded by coffee pods and other kitchen items. +cfd9187b93e3405.png A small, clear plastic pepper shaker with a green lid and visible leaf patterns on its body is centered on a worn, paint-splattered table against a plain off-white wall background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/pet_food_container_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/pet_food_container_descriptions.txt new file mode 100644 index 0000000..242b2b6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/pet_food_container_descriptions.txt @@ -0,0 +1,3 @@ +bb4099f81d17422.png The pet food container is a dual-bowl setup with a smooth, light gray surface, viewed from an angled side perspective against a dim, textured wall and tiled floor, featuring round indentations and a subtle sheen. +7947fbb207314aa.png A turquoise, smooth plastic bowl is viewed from above, positioned on a plush gray carpet, with a laptop and wooden shelf visible in the background. +cc84649cde44447.png The pet food container has a vibrant yellow base color with a purple top featuring a cat illustration, resting on a bathroom sink against a softly lit background with a window and toiletry items. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/phone_landline_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/phone_landline_descriptions.txt new file mode 100644 index 0000000..d4552d4 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/phone_landline_descriptions.txt @@ -0,0 +1,3 @@ +cc02645bcf6f4d9.png The phone landline is a slim, black and silver handset with a keypad and small display, lying flat on a wooden table amidst papers and household items, viewed from a slightly elevated angle with a casual kitchen backdrop. +640484fe93604e4.png The black phone landline with a glossy texture lies flat on a glass-top wicker table, amid a beige and red-toned living room with a visible kitchen in the background. +669ac0057d3e44d.png A black and silver cordless phone with a visible keypad stands upright on a wooden circular table with a lamp behind it, accompanied by a framed picture and docking station, set against a pink wall and an upholstered chair. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/photograph_printed_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/photograph_printed_descriptions.txt new file mode 100644 index 0000000..a99f0e9 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/photograph_printed_descriptions.txt @@ -0,0 +1,3 @@ +8a79cc73b004445.png A vertically positioned, rectangular, color photograph with muted tones is leaning against a countertop organizer filled with various toiletries and cosmetics on a chevron-patterned blue and white cloth, set on a white surface. +e3a89efc56a5466.png A small, rectangular printed photograph with a glossy finish displays a group of people seated together against a vibrant, painted tropical backdrop featuring palm trees, set on a rough, earthly-textured gray surface. +29853c5587f44b1.png The photograph printed shows a person in a red and black outfit with a slightly glossy texture, lying on a light brown, textured carpeted floor, viewed from a low angle, with a blurred indoor background featuring colorful magnets on a metallic surface. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/pill_bottle_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/pill_bottle_descriptions.txt new file mode 100644 index 0000000..ef4e382 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/pill_bottle_descriptions.txt @@ -0,0 +1,3 @@ +f3107f3ec0994f8.png A person is holding a small white pill bottle with a yellow and blue label, shown at an angle with the background featuring a beige carpeted floor and wood-paneled walls. +430bc3cf5c704d4.png The pill bottle is cylindrical with an orange body and a white cap, viewed from a slightly elevated angle on a wooden floor, and features a distinctive ridge pattern on the cap. +421dbcf7d76b462.png The pill bottle has a white cap and a dark-colored body with a blurred label, viewed from an angle against a dark, speckled background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/pill_organizer_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/pill_organizer_descriptions.txt new file mode 100644 index 0000000..1d176c3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/pill_organizer_descriptions.txt @@ -0,0 +1,3 @@ +3c346ffcae7f45b.png A rectangular pill organizer with a grid of transparent turquoise lids is positioned at an angle on a beige bathroom sink with visible faucet details and a comb nearby. +1fe6e24af712462.png The pill organizer is white with clear lids labeled with black letters for each day of the week, held in a hand in a home environment, set against a backdrop of a striped sofa and an abstract-patterned carpet. +729e57d5458f4ec.png A transparent pill organizer with black lettering indicating the days of the week is positioned at a slight diagonal on a textured, light-colored carpet. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/pillow_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/pillow_descriptions.txt new file mode 100644 index 0000000..86adb3c --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/pillow_descriptions.txt @@ -0,0 +1,3 @@ +5b64b24134f3411.png A black and white stripe-patterned pillow with a soft, slightly crumpled texture is positioned horizontally on a pale tile floor, partially obscured by a wall corner, with feet visible nearby for scale. +5af203a146c34d3.png The pillow features a colorful patchwork pattern with squares and circles in blue, yellow, and green tones, appears to be hand-held at an angle showing its top surface, and is set against a background of a cement floor and pink wall. +b350c9c315aa4b6.png The pillow, viewed from above at a slight angle, features a purple center with black-and-white zebra-striped edges, sitting on a green floor against a red wall backdrop, near a patterned curtain with floral designs. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/pitcher_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/pitcher_descriptions.txt new file mode 100644 index 0000000..c4a36f3 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/pitcher_descriptions.txt @@ -0,0 +1,3 @@ +a5264793afcb451.png A clear, cylindrical glass pitcher with a red handle and top is held at an angle by a hand, viewed from slightly above, against a background of marble floor and wooden furniture. +3a94bb6a2c5945f.png The pitcher has a translucent, clear body with a vibrant red lid and handle, viewed from a top-side angle, against a dark background with a wooden surface, featuring condensation droplets on its exterior. +01bcde4bec6e429.png The transparent glass pitcher is placed upright on a tiled floor, reflecting light, with a distinct handle and positioned against a background featuring an air conditioner unit and a wooden cabinet. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/placemat_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/placemat_descriptions.txt new file mode 100644 index 0000000..c84b78b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/placemat_descriptions.txt @@ -0,0 +1,3 @@ +0b73005d81bb46f.png A rectangular placemat with a black background features large, textured, beige floral patterns viewed from above, placed on a tiled floor with a slight shadow cast around its edges. +24ae438051fe44e.png A round, woven placemat with a tightly coiled pattern and alternating brown and black concentric circles is placed on a white door against a hardwood floor and beige rug backdrop. +74020be6d6904ff.png The object appears to be a plain white square with a flat texture, lying on a light wood floor, viewed from an overhead angle, with a checkered fabric and floral-patterned fabric faintly visible at the bottom edges of the image. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/plastic_bag_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/plastic_bag_descriptions.txt new file mode 100644 index 0000000..5a14d23 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/plastic_bag_descriptions.txt @@ -0,0 +1,3 @@ +37d0511cc10d45a.png The plastic bag appears translucent with a crumpled texture, seen from a top angle on a speckled blue-gray desk in a room with computer equipment and tiled flooring. +cf732146df9d429.png A beige plastic bag with red and black lettering is upright with handles twisted, resting on a green carpeted floor with a white and black object partially visible in the foreground. +5fa281945ebd433.png A semi-transparent white plastic bag with an orange circular logo on top is standing upright on tiled flooring against a corner, with a surrounding environment of draped fabric and a patterned bedspread. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/plastic_cup_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/plastic_cup_descriptions.txt new file mode 100644 index 0000000..35f2ff5 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/plastic_cup_descriptions.txt @@ -0,0 +1,3 @@ +33f76ac7419141f.png The red plastic cup, held upright by a hand in the foreground, appears smooth with no noticeable texture, set against a background of a black sofa and white wall. +04a5f768fad6400.png The cylindrical plastic object is transparent with a hint of a logo, held sideways by a hand over a colorful patterned rug, displaying a smooth texture with a reflective surface. +53147c2dd9784e5.png A pink plastic cup with a smooth texture and horizontal ridges is placed on its side against the cushioned armrest of a beige patterned sofa. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/plastic_wrap_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/plastic_wrap_descriptions.txt new file mode 100644 index 0000000..fc8a532 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/plastic_wrap_descriptions.txt @@ -0,0 +1,3 @@ +9986825824e54c3.png A roll of light beige plastic wrap lies horizontally on a speckled gray countertop with part of a white-tiled wall visible in the background. +062f487ad82c418.png The plastic wrap box is green with colorful text, lying horizontally on a soft, light-colored fabric surface with a subtle pattern, and part of a crumpled paper or plastic is visible in the corner. +006f5807fc60450.png A roll of translucent, slightly glossy plastic wrap, viewed from a diagonal angle, rests on a smooth, light-colored countertop with a reflecting light spot, and features visible layers and an inner cardboard core. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/plate_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/plate_descriptions.txt new file mode 100644 index 0000000..8aa5ed6 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/plate_descriptions.txt @@ -0,0 +1,3 @@ +3a6ccce6560e4c2.png A translucent, wavy-textured plate with a radial pattern rests on a brown sofa, viewed at eye level, with a white tiled floor and drawers in the background. +8b9c0acdd23a49f.png A round, plain light yellow plate with a smooth texture is viewed from above, set against a fabric background featuring a pattern of colorful cars and windmills. +54d95261be34453.png An elongated white plate with a subtle green floral pattern around the edge is held flat in the foreground against a neutral-colored room with carpeted flooring and a partially open white door. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/playing_cards_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/playing_cards_descriptions.txt new file mode 100644 index 0000000..aa0dae1 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/playing_cards_descriptions.txt @@ -0,0 +1,3 @@ +3298388e025e49e.png The box of "Cards Against Humanity" is shown from a top-down perspective on a textured blue surface, featuring a glossy black finish with white typography and small icon details on the top right corner. +fd3626a5839f42c.png A hand holds a pink and orange box of playing cards at an angle on a white toilet seat with tiled bathroom walls in the background, featuring bold black text on the box. +7528599d8e75418.png A hand holds a playing card with an ornate black and white design against a glossy ceramic tile background, viewed from a slight angle showing the card's back. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/pliers_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/pliers_descriptions.txt new file mode 100644 index 0000000..d3def1b --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/pliers_descriptions.txt @@ -0,0 +1,3 @@ +190727ae0b0f421.png The pliers have red rubber-coated handles and metallic jaws, lying flat with the handles slightly splayed on a wooden surface against a pale blue wall backdrop, featuring a shadowed area to the left and a soft pink object partially visible at the bottom. +66fe3ee0d5d646e.png The image shows a pair of black-handled needle-nose pliers with metallic jaws, lying flat on a light gray tiled floor, with "HUSKY" printed on the handle. +ef77078be8b34e5.png The pliers have blue rubber grips and metallic jaws, viewed from an angle that shows their length while resting on a patterned carpeted floor in a dimly lit indoor environment with a nondescript utility background. diff --git a/utils/area/descriptions/objectnet/generated_descriptions_occ/plunger_descriptions.txt b/utils/area/descriptions/objectnet/generated_descriptions_occ/plunger_descriptions.txt new file mode 100644 index 0000000..683b471 --- /dev/null +++ b/utils/area/descriptions/objectnet/generated_descriptions_occ/plunger_descriptions.txt @@ -0,0 +1,3 @@ +96baa394473c438.png The plunger has a black rubber cup and a yellow stick handle, lying horizontally on a faux wood-patterned bathroom floor, with white cabinetry and a visible toilet paper roll in the background. +36c224fd45b5428.png A black rubber plunger with a white textured handle is standing upright on a tiled floor, positioned against wooden cabinetry in a bathroom setting. +0c16d8bd13be4d5.png A black rubber plunger with a wooden handle is seen lying flat on a patterned linoleum floor next to a white vent, casting a shadow on the yellowish surface. diff --git a/utils/area/descriptions/sun/classnames.txt b/utils/area/descriptions/sun/classnames.txt new file mode 100644 index 0000000..38f3d6d --- /dev/null +++ b/utils/area/descriptions/sun/classnames.txt @@ -0,0 +1,302 @@ +[ + "abbey", + "airplane cabin", + "airport terminal", + "alley", + "amphitheater", + "amusement arcade", + "amusement park", + "anechoic chamber", + "apartment building", + "apse", + "aquarium", + "aqueduct", + "arch", + "archive", + "arrival gate", + "art gallery", + "art school", + "art studio", + "assembly line", + "athletic field", + "atrium", + "attic", + "auditorium", + "auto factory", + "badlands", + "badminton court", + "baggage claim", + "bakery", + "balcony", + "ball pit", + "ballroom", + "bamboo forest", + "banquet hall", + "bar", + "barn", + "barndoor", + "baseball field", + "basement", + "basilica", + "basketball court", + "bathroom", + "batters box", + "bayou", + "bazaar", + "beach", + "beauty salon", + "bedroom", + "berth", + "biology laboratory", + "bistro", + "boardwalk", + "boat deck", + "boathouse", + "bookstore", + "booth", + "botanical garden", + "bow window", + "bowling alley", + "boxing ring", + "brewery", + "bridge", + "building facade", + "bullring", + "burial chamber", + "bus interior", + "butchers shop", + "butte", + "cabin", + "cafeteria", + "campsite", + "campus", + "canal", + "candy store", + "canyon", + "car interior", + "carrousel", + "casino", + "castle", + "catacomb", + "cathedral", + "cavern", + "cemetery", + "chalet", + "cheese factory", + "chemistry lab", + "chicken coop", + "childs room", + "church", + "classroom", + "clean room", + "cliff", + "cloister", + "closet", + "clothing store", + "coast", + "cockpit", + "coffee shop", + "computer room", + "conference center", + "conference room", + "construction site", + "control room", + "control tower", + "corn field", + "corral", + "corridor", + "cottage garden", + "courthouse", + "courtroom", + "courtyard", + "covered bridge", + "creek", + "crevasse", + "crosswalk", + "cubicle", + "dam", + "delicatessen", + "dentists office", + "desert", + "diner", + "dinette", + "dining car", + "dining room", + "discotheque", + "dock", + "doorway", + "dorm room", + "driveway", + "driving range", + "drugstore", + "electrical substation", + "elevator", + "elevator shaft", + "engine room", + "escalator", + "excavation", + "factory", + "fairway", + "fastfood restaurant", + "field", + "fire escape", + "fire station", + "firing range", + "fishpond", + "florist shop", + "food court", + "forest", + "forest path", + "forest road", + "formal garden", + "fountain", + "galley", + "game room", + "garage", + "garbage dump", + "gas station", + "gazebo", + "general store", + "gift shop", + "golf course", + "greenhouse", + "gymnasium", + "hangar", + "harbor", + "hayfield", + "heliport", + "herb garden", + "highway", + "hill", + "home office", + "hospital", + "hospital room", + "hot spring", + "hot tub", + "hotel", + "hotel room", + "house", + "hunting lodge", + "ice cream parlor", + "ice floe", + "ice shelf", + "ice skating rink", + "iceberg", + "igloo", + "industrial area", + "inn", + "islet", + "jacuzzi", + "jail", + "jail cell", + "jewelry shop", + "kasbah", + "kennel", + "kindergarden classroom", + "kitchen", + "kitchenette", + "labyrinth", + "lake", + "landfill", + "landing deck", + "laundromat", + "lecture room", + "library", + "lido deck", + "lift bridge", + "lighthouse", + "limousine interior", + "living room", + "lobby", + "lock chamber", + "locker room", + "mansion", + "manufactured home", + "market", + "marsh", + "martial arts gym", + "mausoleum", + "medina", + "moat", + "monastery", + "mosque", + "motel", + "mountain", + "mountain snowy", + "movie theater", + "museum", + "music store", + "music studio", + "nuclear power plant", + "nursery", + "oast house", + "observatory", + "ocean", + "office", + "office building", + "oil refinery", + "oilrig", + "operating room", + "orchard", + "outhouse", + "pagoda", + "palace", + "pantry", + "park", + "parking garage", + "parking lot", + "parlor", + "pasture", + "patio", + "pavilion", + "pharmacy", + "phone booth", + "physics laboratory", + "picnic area", + "pilothouse", + "planetarium", + "playground", + "playroom", + "plaza", + "podium", + "pond", + "poolroom", + "power plant", + "promenade deck", + "pub", + "pulpit", + "putting green", + "racecourse", + "raceway", + "raft", + "railroad track", + "rainforest", + "reception", + "recreation room", + "residential neighborhood", + "restaurant", + "restaurant kitchen", + "restaurant patio", + "rice paddy", + "riding arena", + "river", + "rock arch", + "rope bridge", + "ruin", + "runway", + "sandbar", + "sandbox", + "sauna", + "schoolhouse", + "sea cliff", + "server room", + "shed", + "shoe shop", + "shopfront", + "shopping mall", + "shower", + "skatepark", + "ski lodge", + "ski resort", + "ski slope" + ] \ No newline at end of file diff --git a/utils/area/descriptions/sun/generated_descriptions/abbey_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/abbey_descriptions.txt new file mode 100644 index 0000000..160323b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/abbey_descriptions.txt @@ -0,0 +1,15 @@ +sun_ajuopgcqzceavmmx.jpg The abbey, viewed from an angle, showcases weathered gray stone walls with gothic arches and partially preserved tall windows, situated against a lush green lawn and dense tree backdrop under a cloudy sky. +sun_ajhtswxgrqbeiikc.jpg The abbey features a weathered, light stone appearance with a central round tower and tall rectangular bell tower, set against a background of rolling green hills and surrounded by tall grass and scattered trees. +sun_afxrdjhhoumuktjy.jpg The abbey features a blend of beige and gray brick textures with ornamental red brick arch patterns, seen from a slightly elevated angle, set against a backdrop of lush greenery and bright blue sky, with its distinct turreted rooftops and arched windows highlighting its historical architecture. +sun_arrohcvipmrghrzh.jpg The abbey features light beige stone with a textured, historic façade dominated by a tall, square bell tower with arched windows, viewed from a ground-level angle under a vibrant blue sky with white clouds, surrounded by a cobblestone path and traditional half-timbered buildings. +sun_azxqcnmbkuudkugp.jpg The abbey features textured stone arches and columns in a bluish-gray hue, viewed from an angled perspective against a grassy foreground and a night sky with a bright circular light. +sun_artequklmfvncjvd.jpg The abbey appears as a red-brown stone ruin with archways and a partial tower, set against a backdrop of green grass and a light sky, showcasing distinct weathered textures and intricate stonework patterns. +sun_agwrzefitjpjokra.jpg The abbey features a pale stone facade with a rough texture, viewed from the front and slightly to the side, with steep, red-tiled roofs and ornate arched windows, set against a backdrop of tall, leafless trees and a neatly manicured lawn in the foreground. +sun_aeklzyiwoovunajl.jpg The image shows a weathered, beige stone abbey with intricate Gothic architecture featuring pointed arches, decorative tracery, and castellated battlements, viewed from the front with a partially open wooden gate and a van parked in front, set against an overcast sky. +sun_akvncbypzmzogddt.jpg The abbey features a pale stone facade with arched windows, captured from a frontal viewpoint, set against a clear blue sky with a tree and greenery visible in the foreground. +sun_afuaceyoawymlqfs.jpg The abbey features tall, pointed Gothic architecture with a textured stone facade in warm, earthy tones under dramatic night lighting, viewed from a low angle against a dark, cloudy sky. +sun_asztnlqhlrvirneh.jpg The abbey features a Romanesque architecture with light brown and beige stonework, characterized by three round towers with pointed, gray slate roofs, set against a clear blue sky and surrounded by a paved courtyard and sparse greenery. +sun_asjtntjyxonepswm.jpg A weathered stone abbey with a series of arched openings stands in ruins, viewed from a low angle showcasing the rough, gray texture of the stones against a backdrop of green grass and overcast sky, with a distinctive tower rising on the right side. +sun_ayahbvkpizprwkbw.jpg The abbey features a light stone facade with a textured, historic appearance, viewed partially obscured by dark, dense foliage in the foreground, against a backdrop of clear blue sky and leafless trees. +sun_airyypykbhawlcdg.jpg The image depicts a rustic, stone abbey ruin with a warm, golden hue from the setting sun, featuring a high archway and jagged walls against a clear blue sky, with shadowed trees peeking through the openings. +sun_adriivoqvpifqgze.jpg The abbey, viewed from the front under a clear blue sky, features intricate Gothic architecture with dual tall towers, ornate stone carvings, and a prominent rose window, set against the backdrop of an urban environment with a statuesque column nearby. diff --git a/utils/area/descriptions/sun/generated_descriptions/airplane_cabin_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/airplane_cabin_descriptions.txt new file mode 100644 index 0000000..2f37c59 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/airplane_cabin_descriptions.txt @@ -0,0 +1,10 @@ +sun_akzqlgepekqslhbn.jpg The airplane cabin features rows of blue seats with white headrests, viewed from a rear aisle perspective, under an overhead compartment with a white textured surface and dim yellow lighting illuminating the passengers seated in a compact, enclosed space. +sun_aandnxlejgzxqiou.jpg The airplane cabin appears dimly lit with a bluish-purple ambient glow, viewed from the rear facing forward, showcasing predominantly light-colored overhead compartments and rows of occupied seats beneath them. +sun_ajffbuefbuffssfk.jpg The airplane cabin features a light beige overhead storage with dark blue and gray patterned seats, viewed from within the cabin's center aisle, with small windows and passengers visible against a backdrop of a bright, evenly lit interior. +sun_avwwfrhtvupdxldb.jpg The airplane cabin features beige and brown upholstered seats with personal screens, presented from a forward-looking viewpoint, amid a spacious layout separated by smooth white partitions, under a soft-lit ceiling and carpeted aisle, with curtains dividing the sections. +sun_atawmmnkjfcsazbk.jpg The airplane cabin features seats with red headrest covers and individual screen monitors, viewed from the aisle with overhead compartments visible above, set against a well-lit interior. +sun_axxqkypwexedhjce.jpg The airplane cabin features a luxurious first-class setup with beige and tan seats, a fold-out table with a keyboard and mouse, individual screens, and an elegant meal service, viewed from an angled perspective showing a spacious and modern interior. +sun_btgtzwcjjrpujfcu.jpg The airplane cabin features dark patterned seats with orange headrest covers viewed from the back, showing overhead luggage compartments and passengers seated under arched lighting in a narrow corridor. +sun_ajixaqgsbzkvhaob.jpg The airplane cabin, viewed from the rear toward the front, features rows of blue fabric seats with white geometric patterns, illuminated by overhead fluorescent lighting within a narrow aisle, complemented by beige walls and luggage compartments. +sun_aiuxjkewfazzuedg.jpg The airplane cabin features a spacious interior with a white and purple color scheme, illuminated by soft ambient lighting at the ceiling, with visible modern fixtures, a sleek bar area with a glossy countertop, and plush carpeting, viewed from a slightly elevated perspective facing toward the rear. +sun_addrwdlacrymymur.jpg The airplane cabin features a symmetrical layout with rows of beige and blue textured seats, viewed from the center aisle towards the front, surrounded by muted gray side panels and overhead storage compartments, with a red carpet running along the aisle, and emergency exit signs visible. diff --git a/utils/area/descriptions/sun/generated_descriptions/airport_terminal_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/airport_terminal_descriptions.txt new file mode 100644 index 0000000..5ae6257 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/airport_terminal_descriptions.txt @@ -0,0 +1,10 @@ +sun_anvvhwnodyafezpm.jpg The airport terminal features an arched, metallic roof with a grid-like pattern and large glass panes, viewed from a ground-level perspective, with a shiny, reflective floor and modern check-in counters flanked by orange accents in the background. +sun_bhkwpzfvrgmkpucv.jpg The airport terminal features a vast interior space with a high, intricately patterned glass and metal ceiling, viewed from a central perspective, showcasing rows of gates and bustling activity beneath a diffuse, natural light. +sun_anmwwydafqtilqqp.jpg The image depicts a wide, glowing airport terminal tunnel with a purple and pink illuminated ceiling, a reflective white floor, and silhouetted figures walking, creating a futuristic ambiance. +sun_azbrxtvucszcvhbo.jpg The airport terminal features a bare, wood-paneled wall with a central doorway under a modest overhead light, accompanied by simple grey cabinetry and seating, all set against a carpeted floor and plastic blue chairs, marked by a clear "Gate 4" sign. +sun_abozsykcfwpbtpkw.jpg The airport terminal features a spacious corridor with a tiled floor and white ceiling, lined with shops and illuminated signs, including a prominent black directional sign with yellow and white text for public transport, set against a backdrop of chairs and distant travelers. +sun_afcdhvryylnbwimp.jpg The airport terminal is bustling with people and features a modern design with sleek glass and metal elements, illuminated by subtle blue lighting from the high ceiling framework, and is distinguished by vibrant signage and retail outlets amidst a dynamic commercial environment. +sun_avjttcnhpnevqnxb.jpg The airport terminal features a modern design with a central walkway flanked by sleek white and blue arched structures, viewed from an elevated position, showcasing a spacious interior with a high ceiling, glossy flooring, and bustling travelers, with shopping areas visible on an upper level. +sun_alzornbiiofnxflm.jpg The image depicts a modern airport terminal interior with a sleek, metallic, greenish-grey color scheme, featuring a curved, ribbed ceiling with overhead lights, large wall clocks, and potted plants lining the glass wall on the left, while black leather seating is positioned in the foreground on a smooth, dark floor. +sun_bjidxdixmppsanav.jpg The airport terminal features a sleek, reflective metallic interior with smooth, curving walls, viewed from a low angle down an endless, brightly lit corridor with moving walkways, where passengers are visible in the distance reflecting in the polished surfaces. +sun_aolssexgeaplxojj.jpg The airport terminal features a futuristic tunnel with green lighting, smooth walls, and a glossy floor, viewed from the center towards the glowing horizon, with people silhouetted along moving walkways. diff --git a/utils/area/descriptions/sun/generated_descriptions/alley_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/alley_descriptions.txt new file mode 100644 index 0000000..152bca2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/alley_descriptions.txt @@ -0,0 +1,17 @@ +sun_acojhtjciuciuhey.jpg The alley is paved with irregular cobblestones in shades of gray and brown, flanked by narrow brick and stucco buildings with various potted plants on balconies, while a blue and white motorbike is parked in the foreground, adding a sense of charming urban character. +sun_afooqtjmzlsfcazl.jpg The alley is narrow with a mix of muted browns and greys, featuring a busy scene of pedestrians, market stalls with goods, and distinct tall minarets in the background. +sun_aoanzrwejcyztous.jpg The alley is lined with narrow, whitewashed stone walls, featuring a rugged texture, with a cobblestone path leading into a tight, enclosed space between buildings that have colorful window frames and Tibetan-style prayer flags above, under an overcast sky. +sun_astgdhvmfotsstlf.jpg The narrow alley is flanked by a beige plaster wall with peeling paint on the left and a rough, light-brown stone wall on the right, with lush green foliage visible at the far end and a view from behind several people, including one wearing a colorful knit hat, enhancing the sense of constrained space. +sun_aaljqlfhwfnxwyek.jpg The alley, viewed from an elevated perspective, features warm-toned peach and yellow building facades with small balconies and potted plants, leading into a narrow, winding path populated by a few pedestrians and characterized by its quaint, old-town charm amidst stone and stucco textures. +sun_abwoewruulbqboes.jpg The alley is a narrow, dusty path flanked by weathered, beige walls with visible cracks and uneven textures, lined by scattered bricks on the right, and extending to a vanishing point with a distant view of a motorcycle parked under a slightly overcast sky. +sun_aqywtkjiftykwdth.jpg The narrow alley, viewed from above, features cobblestone paving with weathered, muted gray and brown textures, flanked by aged, cream-colored buildings with arched windows and a faded red-tiled roof visible in the background. +sun_auyvnstqehktpbbd.jpg The narrow cobblestone alley, viewed from ground level, is flanked by reddish-brown brick buildings on both sides, with one side partially covered in green ivy, leading towards a prominent church steeple in the overcast background. +sun_aqzxwtsrnlsiczsn.jpg The narrow, cobblestone alley is flanked by aged stone walls with mossy textures and is viewed from a low angle, revealing ornate carvings on the right and lush greenery faintly visible at the end. +sun_akeowktgwmqgsqye.jpg The alley features a narrow cobblestone path flanked by tall, historic buildings with pastel-colored facades—pale yellow, light blue, and peach—each adorned with ornate windows, red-tiled roofs, and decorative window boxes against a backdrop of café tables and a clear sky. +sun_ackulkbcceprdszd.jpg This alley features a narrow, downward stone staircase with gray steps and black railings, flanked by old stone walls with green foliage on the right and rustic street lamps lining the path, leading to a small archway at the bottom in a slightly enclosed, historical setting. +sun_altaxaueregenjep.jpg A narrow stone alley with rough-textured, weathered walls in shades of light brown and gray, bounded by a vine-covered building on the right, features an arched wooden door at the end, viewed from an oblique angle with a foreground path leading toward the distant rustic background. +sun_avfpcbylyvmvfyhx.jpg The alley is a narrow passage with aged, beige and brown-stained walls, shadowed and lined with open windows and clotheslines hung with varied colored laundry, extending into the distance between tall weathered buildings. +sun_addontedcyafqkyh.jpg The alley features sunlit, textured stone walls with protruding windows and doors, partially shadowed by lush green vines, and narrow pathways creating a rustic, intimate atmosphere. +sun_asvhrnmsmqvqmgud.jpg The alley, flanked by red-brick walls with some graffiti and metal-barred windows, is narrow with a wet, dark asphalt surface and features a red car facing forward, surrounded by an urban environment with trees visible at the end. +sun_agyeeljqboaflujf.jpg The alley features a narrow, winding cobblestone path with a worn, textured surface, flanked by tall, stone walls with a weathered, earthy appearance, and scattered greenery growing between the stones, set against a softly lit, rustic village backdrop. +sun_apfqfbrxzryormej.jpg The alley features a narrow, cobblestone path flanked by old, weathered buildings in shades of grey and beige, with patches of greenery and parked cars visible from a slightly elevated angle. diff --git a/utils/area/descriptions/sun/generated_descriptions/amphitheater_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/amphitheater_descriptions.txt new file mode 100644 index 0000000..2ed25be --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/amphitheater_descriptions.txt @@ -0,0 +1,13 @@ +sun_aogdcswzymonyaeq.jpg The amphitheater, viewed from an elevated angle, features a partly overgrown and weathered stone structure with a mostly open oval center surrounded by terraced seating, set against a backdrop of trees and distant mountains under a cloudy sky. +sun_azzkzcizrkfynylc.jpg The amphitheater features a sandy beige floor surrounded by weathered stone walls, viewed from an elevated angle, with lush green trees in the background and small groups of people scattered across its open space. +sun_alyydilsbbceucjh.jpg The amphitheater features a circular arrangement of light concrete steps with dark wooden seating slats, viewed from a higher vantage point showcasing the roof's underside and surrounding foliage, while green shade cloth above contrasts with brick walls in the background. +sun_acfpnhnvjrtjzpaz.jpg The amphitheater, viewed from an elevated side angle, is composed of weathered stone steps in shades of gray, set against a background of a serene body of water and distant hills under an overcast sky, with greenery partially encroaching the structure. +sun_bowjbdbtlrsoqwrw.jpg The amphitheater is composed of weathered, light brown stone with a tiered, elliptical seating structure, viewed from an elevated angle that reveals a partially open structure flanked by historic brick buildings and surrounded by a mixed urban and hilly landscape. +sun_cchwztkclklgjwon.jpg The amphitheater in the image features a light, marble-like texture with a grand, curved arrangement of columns and tiered seating, viewed from the stage area with clear blue sky and trees in the background. +sun_avyaqxadsuviidhk.jpg The amphitheater, viewed from a high angle, features a semicircular arrangement with weathered stone seating in light gray contrasted against patches of green grass on slopes, while an arched stone passage and sections of rust-colored wooden seating frame the interior, set against a backdrop of ancient stone walls and sparse trees. +sun_afwrqkynuexvkvwf.jpg The amphitheater, viewed at an angle, features light gray stone seating in curved, tiered levels, set against a rocky hillside landscape with sparse vegetation and a clear blue sky. +sun_atnyjocqjssbxywe.jpg A sunlit ancient amphitheater with weathered, light gray stone steps and seating is shown partially, viewed from a side angle; it is surrounded by natural greenery on rugged hills and features a partially visible ruined structure in the background. +sun_agmotsqlofbdilic.jpg The amphitheater is composed of weathered beige stone with tiered seating, viewed from an elevated angle showing the surrounding verdant hillside and scattered buildings under a clear blue sky. +sun_aplsanotxgtdakev.jpg The amphitheater displays a series of tiered, light brown stone seats with rough texture viewed from a frontal lower angle, surrounded by a sparse, rocky hillside in the background, and features a congregation of people adding a sense of scale and activity. +sun_ajpiotkhfmqnhjvy.jpg The amphitheater features concentric light beige seating rows with a smooth texture, viewed from an elevated angle, surrounded by rustic wooden buildings and green grass in a serene outdoor environment. +sun_ctdhshxrigriwxyp.jpg The amphitheater features curved, tiered seating with a white and green color palette, nestled among lush greenery on a hillside, offering an angled top-down view that highlights its intimate, open-air setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/amusement_arcade_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/amusement_arcade_descriptions.txt new file mode 100644 index 0000000..eca4e13 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/amusement_arcade_descriptions.txt @@ -0,0 +1,10 @@ +sun_amzyklcxqiogebyq.jpg The amusement arcade features a row of brightly colored slot machines with illuminated screens and buttons, viewed from an oblique angle, set against a backdrop of patterned carpet and glowing overhead decorative lights, fostering a lively yet dimly lit gaming environment. +sun_aeiylqvsmdmcqfcs.jpg The amusement arcade features a row of vintage arcade machines with dark exteriors and colorful side art, set against a subdued, warmly lit carpeted room, with a decorated Christmas tree visible in the background. +sun_aazpwcmchbahisry.jpg The amusement arcade features a narrow walkway lined with vintage black and dark-themed arcade cabinets, highlighted by bright side panel designs and joystick controls, amidst a bustling crowded setting with visible reflections from overhead lighting. +sun_aqlqcfitimwqbplz.jpg The amusement arcade features a vibrant, multicolored ceiling with a bustling crowd standing on a patterned carpet, surrounded by various arcade machines, including visible game cabinets with bright, colorful panels. +sun_ahcqhzdkzoutrhdd.jpg The amusement arcade features a brightly colored, blue and red retro-style cabinet with "Metal Slug" artwork, surrounded by young children in casual clothing, set against a lightly textured, beige indoor backdrop. +sun_anhyqlkmhbhmbmrk.jpg The amusement arcade features rows of vibrant, colorfully lit slot machines with shiny chrome and vivid graphics, viewed obliquely from the side, surrounded by mirrored ceilings and bright, decorative signage overhead, set against a bustling background of red-cushioned seats and dim ambient lighting. +sun_advudbxqemqaxzby.jpg The amusement arcade features a vibrant color scheme with red, blue, and turquoise carpeting, reflective ceiling panels, and an array of arcade machines lining the walls, each with colorful displays and distinct themes, set in a spacious interior with a clear view of adjacent machines and gaming areas. +sun_albwfsustdfhifez.jpg The small amusement arcade is filled with brightly colored, upright arcade machines arranged along the walls, featuring distinct decals and screens, contrasting against the warm tones of the orange and yellow walls and carpeted flooring, with a counter and chairs visible in the background. +sun_awhemrrqknixfhbi.jpg The amusement arcade features a row of vintage pinball machines with a vibrant mix of yellows, reds, and blues, positioned against a white wall decorated with a "Happy Birthday" banner and distinctive artwork on the machines, highlighting an array of intricate, illuminated playfields and retro designs. +sun_atpilbhhbmhmeuzq.jpg The amusement arcade features a row of pinball machines set against a wooden interior with yellowish lighting, showcasing vibrant, colorful graphics and shiny metal frames that reflect the bright overhead lights. diff --git a/utils/area/descriptions/sun/generated_descriptions/amusement_park_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/amusement_park_descriptions.txt new file mode 100644 index 0000000..a3f3670 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/amusement_park_descriptions.txt @@ -0,0 +1,10 @@ +sun_bqfbulfsvmxttfay.jpg A colorful Ferris wheel with alternating red, blue, and green gondolas is seen at an angle against a clear blue sky, surrounded by vibrant yellow flags and dense crowds, with a backdrop of colorful mural-like amusement park attractions. +sun_bxrvchtfalygojan.jpg A vibrant red roller coaster track with white supporting pillars is silhouetted against a clear blue sky, viewed from below at an angle that captures the dynamic, curved motion of the ride. +sun_bqzftxmevmdwqcxa.jpg The amusement park features brightly colored cartoonish architecture with a red brick building and whimsical facades, viewed from ground level amid a crowd, set against a clear blue sky. +sun_auhgahkwvzxjuxhu.jpg A vibrant blue and orange Ferris wheel with white seats stands against a clear blue sky, viewed slightly from below, with a few people walking underneath and a background of greenery and parked cars. +sun_atxelodxwhgitdsb.jpg The amusement park features a brightly lit roller coaster with white lights, shimmering reflections on nearby water, and a dark, night-time backdrop highlighting the illuminated rides. +sun_afomocapsnyzxnmf.jpg A colorful indoor amusement park features a prominent red and blue balloon, green roller coasters, and yellow support structures, set against a high-ceilinged glass and metal atrium with trees and crowds below. +sun_bhratbdkkxrwhtew.jpg Against a cloudy sky, the vintage amusement park features a colorful carousel with a striped red and yellow canopy and ornate details at a side viewpoint, while a classic Ferris wheel anchors the right, contrasting with scattered adults and children on the grassy foreground, and an array of classic cars parked nearby enhances the nostalgic atmosphere. +sun_btgplwrjjgyhejts.jpg A towering, densely decorated Christmas tree sits in front of vibrant amusement park signage with castle-like structures atop, flanked by a pastel-colored high-rise building and lush greenery under a clear sky. +sun_altazhdznzwzrlff.jpg A sleek, vibrant blue roller coaster track winds elegantly through the air, with a bright blue sky as the backdrop and sparse trees dotting the ground, emphasizing the dynamic motion of the coaster cars filled with riders. +sun_ahsxnblqksptbmuk.jpg The image displays a large Ferris wheel with a metal frame and multiple gondolas in shades of white and rust, viewed from a low angle against a cloudy sky, with supporting structures and cables adding complexity to the structure's texture. diff --git a/utils/area/descriptions/sun/generated_descriptions/anechoic_chamber_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/anechoic_chamber_descriptions.txt new file mode 100644 index 0000000..52a18ba --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/anechoic_chamber_descriptions.txt @@ -0,0 +1,10 @@ +sun_agqhginrjtyvvwrc.jpg The anechoic chamber features dark blue, foam-like, sound-absorbing wedges on the walls and ceiling, viewed from an angle inside, with a tripod-mounted device and some technical equipment against the pattern background. +sun_acafilpbvkubbdfi.jpg The anechoic chamber has a grid of white, cube-like panels covering the walls and ceiling, with pointed blue-gray foam wedges at the bottom, viewed from a high angle with a person setting up equipment in the foreground, highlighting a combination of sleek geometric repetition and acoustic design. +sun_aeonwxdwtfaytxan.jpg The anechoic chamber features a blue and white color scheme with pointed foam wedges covering the walls to absorb sound, viewed from an interior angle showing no visible ceiling or floor, creating an impression of a futuristic and controlled environment. +sun_adbquckezglvkljt.jpg The anechoic chamber in the image features a beige, foam-textured surface forming large wedge-shaped patterns on the walls, captured from a front-facing viewpoint with a metal frame intersecting the geometric surface, accompanied by two individuals standing in the midst of the intricate design. +sun_azfjyprmllcowvmn.jpg The anechoic chamber features a grid of gray and beige foam wedges lining the walls, with a central black speaker tower on a stand, reflecting a geometric, sound-absorbent environment viewed from a slightly elevated front perspective with overhead lighting. +sun_aprcuenmxsdirmrx.jpg The anechoic chamber features light beige, wedge-shaped foam panels covering the walls and ceiling, creating an angular, textured surface with a central figure standing on a checkered floor that reflects the room's geometric design. +sun_arrxguwlvfvarvsk.jpg The anechoic chamber features uniformly arranged blue foam pyramid panels covering the walls and ceiling to absorb sound, with a partial circular metal structure and various electronic equipment visible, all observed from an upward angle, enhancing its futuristic and structured appearance. +sun_awytwnrfgqpxxlme.jpg The anechoic chamber is lined with uniformly arranged, yellow foam wedges on all visible surfaces, under bright overhead lights, creating an intricate, geometric pattern that absorbs sound, with a central focus on a small, elevated platform at the center of the room. +sun_aaacpgupgzvdjapw.jpg The anechoic chamber features a uniform blue, jagged, foam-like texture covering the walls, visible from a slightly elevated angle, with a tall white cone structure in the foreground and reflective metallic spheres clustered inside, against a backdrop containing an array of electronic equipment and panels. +sun_amhkwltpijzulvic.jpg The anechoic chamber is predominantly blue, covered in jagged, foam-like pyramids, viewed from an interior angle showing an array of spiky surfaces with two vertical poles holding electronic equipment. diff --git a/utils/area/descriptions/sun/generated_descriptions/apartment_building_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/apartment_building_descriptions.txt new file mode 100644 index 0000000..09f2450 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/apartment_building_descriptions.txt @@ -0,0 +1,10 @@ +sun_aqzobbwwyyjwoezx.jpg The apartment building is viewed from a street corner perspective, featuring a warm terracotta color with rounded bay windows and a prominent storefront at the ground level reading "SLEEP TRAIN," amidst an urban environment with visible street signs and parked cars. +sun_agumbtptxfrjbvkm.jpg The apartment building, viewed from the front, features a red brick exterior with decorative horizontal gray brick bands, evenly spaced rectangular windows, and is set in a grassy environment with a prominent yellow fire hydrant in the foreground. +sun_arliekmtdsvuxmcf.jpg A beige-colored, multi-story apartment building with exposed structural elements on one side, visible debris scattered on the ground, and a backdrop of clear blue sky. +sun_akhcuwchtiknntyc.jpg The apartment building features a beige, smooth texture with a frontal view, exhibiting a central vertical panel of reflective dark glass, framed by uniform rows of windows, and is set against a dimly lit sky with bare tree branches partially visible. +sun_aeruoezcwarmcjuk.jpg The apartment building is a tall, modern high-rise with a sleek white facade and numerous glass windows, viewed from a low angle against a clear blue sky, with distinct vertical lines and a protruding section at the top. +sun_azcbxolklaomimic.jpg The structure features a tan stone facade with a prominent vertical window grid, viewed from a street-level perspective, flanked by trees and power lines under a clear blue sky, with a notable tower and cross at the top. +sun_alqothqrdugzjdre.jpg The apartment building is a multi-story structure, viewed from a street-level angle, with a combination of beige brick and white facades, featuring uniform rectangular windows and a prominent red and white awning at the base, set against a backdrop of clear blue sky and modern urban surroundings. +sun_aicdkihwymofoeye.jpg The apartment building is viewed from a low angle behind yellow-orange beams and features a grid-like facade with white and brown alternating sections and numerous balconies, set against a clear sky. +sun_agmvunkaracwpnnt.jpg The apartment building is primarily composed of red brick with cream-colored accents around the windows, viewed from a frontal perspective, with a car parked in the foreground and a clear sky in the background. +sun_amqjuxrpttuwkkwb.jpg The apartment building has a white façade with a red-tiled roof, seen from a diagonal viewpoint, featuring red shutters and a prominent tree in the foreground against a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/apse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/apse_descriptions.txt new file mode 100644 index 0000000..397e607 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/apse_descriptions.txt @@ -0,0 +1,16 @@ +sun_bxksfbqrhoivjsqz.jpg The apse features richly colored stained glass in intricate geometric and floral patterns set within ornate Gothic archways, viewed from a frontal perspective, with golden ribbed vaulting against a dark, starry, polychrome interior backdrop. +sun_bpckybjgfjynujly.jpg The apse features a large mosaic depicting a crucified and ascending figure surrounded by vibrant, swirling patterns in gold, red, and blue hues, viewed frontally with a congregation seated in a church setting, and the distinct architectural arch framing the scene. +sun_bekoawxmfssleuxd.jpg The apse features rich, earthy tones with intricate mosaic artwork depicting religious figures and geometric patterns set above a series of tall, arched windows that filter light onto the decoratively detailed walls, with a slightly elevated frontal viewpoint that captures a sense of depth within a historic, ornate interior. +sun_aulnzckztegbujqb.jpg The apse is semicircular with a series of tall, narrow arched windows filled with stained glass that allow colorful light to filter through, framed by stone walls that are a mix of smooth beige and textured gray surfaces, and accented with an ornate crucifix and a deep blue tapestry hanging centrally, creating a serene and sacred setting within a gothic-style church interior. +sun_btyikdiooedkvend.jpg The apse features an intricate gold and dark-toned nave with ornate columns spiraling upwards, viewed from a frontal lower angle within a grandiose architectural setting, highlighted by a richly frescoed curved ceiling and stone archways. +sun_ajthpwhshuyiveka.jpg The apse is viewed from the front, featuring a smooth, light beige wall with a wooden paneling backdrop, a cross mounted above, and construction materials partially visible at the base. +sun_bqmfdqurmypfritz.jpg The apse is adorned with vibrant gold and blue mosaics depicting religious figures, shown from a front-facing viewpoint with richly textured walls, surrounded by an ornate architectural framework and paintings in a dimly lit cathedral environment. +sun_blwwjqwabjdauive.jpg The apse features tall, pointed stained glass windows with vibrant colors set amidst a high arching ceiling, seen from a frontal, ground-level viewpoint, with slender stone columns and intricate statues lining the walls, and subtle dim lighting contributing to a serene Gothic ambiance. +sun_bkvyxvreglagziop.jpg The apse features an elaborate, gold-hued mosaic with intricate patterns and religious iconography, viewed head-on, set against a backdrop of richly colored frescoes depicting figures, with a distinct architectural canopy supported by marble columns in the foreground. +sun_aywusgbrbqbadkce.jpg The apse displays a semi-circular, richly decorated fresco with vibrant reds, blues, and greens depicting religious scenes, viewed head-on amidst a classical architectural setting with ornate columns flanking its sides and a white stone backdrop. +sun_auphcbwqekpbwmfx.jpg The apse has a golden mosaic ceiling with religious figures, viewed from below at an upward angle, flanked by stone columns, with detailed artwork and text along the lower edge against a richly decorated interior. +sun_bztfaepqjqxghdnv.jpg The apse features vivid mosaic artwork with predominantly green and gold hues, showing religious figures and intricate geometric patterns, viewed from a slightly low angle with a warm, dimly lit interior ambiance, and flanked by arched windows and lavish ornamentation. +sun_adhyvrisesrsacuv.jpg The apse features a richly ornate design with deep red hues accented by intricate gold detailing, viewed from a central front angle, surrounded by vividly colored stained glass windows and set within a dark, medieval Gothic architectural interior. +sun_aexmplnvctqinxuj.jpg The apse features intricate gold and mosaic decorations viewed from a central nave perspective, framed by a vaulted ceiling and surrounded by tall, arched windows casting light onto richly adorned walls and columns. +sun_aqvtatgzrkinbxqt.jpg The apse is richly decorated with golden mosaic depicting religious figures, surrounded by an ornate archway with a colorful tiled pattern, viewed from the front in a grandiose church interior with marble columns and intricate woodwork, set against a dimly lit, expansive space that emphasizes its majestic and sacred atmosphere. +sun_amirvaewncjrhrji.jpg The apse features a light cream-colored, textured decor with ornate Corinthian columns, flanked by statues and intricate reliefs on the upper wall, viewed from a frontal angle within an elaborately adorned church interior, highlighted by a central altar topped with golden candelabra and a cross, set against a polished marble floor. diff --git a/utils/area/descriptions/sun/generated_descriptions/aquarium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/aquarium_descriptions.txt new file mode 100644 index 0000000..2eee8e7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/aquarium_descriptions.txt @@ -0,0 +1,15 @@ +sun_abamvaizztqbjssd.jpg The aquarium exhibits a large, curved tunnel with a vibrant blue-green hue above, showcasing a variety of dark silhouettes of fish swimming against a lively background of lush aquatic plants, all viewed from a bustling indoor setting with people walking through. +sun_aydekoxhpnobbuvu.jpg The aquarium features a vast, blue-tinted tank with silhouettes of people in the foreground, showcasing schools of fish and two prominent large marine creatures above, creating a vibrant underwater scene. +sun_aqzlijeqktetgrtd.jpg The aquarium features a transparent tunnel with an overhead view of swimming sharks and fish, surrounded by vibrant blue waters and rocky coral formations, creating an immersive viewing experience in a dimly lit public exhibit space. +sun_akhuvtsqontzwtbo.jpg The aquarium, viewed from the front, displays a deep blue hue with textured rock formations and coral within a clear, curved glass enclosure, set against a brightly lit indoor environment. +sun_albheujeaogefcsy.jpg The aquarium features a large, curved glass tunnel with a vibrant blue and turquoise aquatic backdrop filled with diverse marine life, viewed from an interior perspective with people walking through, highlighting the immersive environment and underwater textures. +sun_aktnhuanjwnxaahd.jpg The aquarium displays a vast, deep blue scene with various fish swimming throughout, silhouetted observers in the foreground against a large glass panel, and a textured backdrop of rocks and coral dimly visible in the low light. +sun_afnayhseouzvkhni.jpg The aquarium features a vibrant blue hue with a rocky texture visible in the background, viewed from a frontal perspective with a busy crowd of onlookers silhouetted against the skyline of the tank, and illuminated by overhead lighting reflecting off the water. +sun_awgmzkhilxdcuwmw.jpg The aquarium features a dimly lit, large glass tank from a frontal viewpoint, housing a swimming turtle and several sharks against a sandy and textured rock background, with silhouetted visitors observing the marine life. +sun_axgloeychjvfslqg.jpg The aquarium features a large, curved glass wall filled with various species of fish swimming in a vibrant blue water with rocky coral formations, viewed from a wide-angle front perspective with a dark, expansive overhead canopy and faint reflections dotting the surface. +sun_auhbzrixgbnkynar.jpg The aquarium features a large panoramic glass wall showcasing vibrant blue-green water with an assortment of colorful fish swimming amidst detailed coral structures, viewed from a darkened exhibit area filled with silhouetted onlookers. +sun_aousoedboylwfefu.jpg A large sea turtle with a mottled brown and green shell and a distinct, smooth head glides above a curved glass tunnel, surrounded by a dim, bluish aquatic environment with wavy patterns on the surface reflecting the aquarium lights, witnessing an observer looking up from inside the tunnel. +sun_anrvdfochcmdmwzc.jpg The image shows an underwater tunnel aquarium with a textured, wavy blue ceiling teeming with fish, viewed from the entrance where the pathway gently descends with onlookers gazing upward, surrounded by a smooth, neutral-colored background wall. +sun_amjxfdjjpymuevrb.jpg The aquarium features tall, flowing strands of green kelp swaying under sunlight that filters through the water, creating a serene underwater scene with a predominantly blue and green color palette. +sun_ankggxiristwxewe.jpg The aquarium features a vibrant deep blue and green environment illuminated by sunlight, with tall, golden kelp swaying vertically, surrounded by diverse marine life, including various fish, and viewed from an inside perspective with visitors observing through a large glass panel. +sun_aguvvqkaqcoqtvta.jpg The aquarium contains large, vertical windows showcasing a dense forest of tall, dark green kelp swaying amidst a variety of fish, while a silhouette of a person in the foreground adds depth against the translucent water and dim lighting. diff --git a/utils/area/descriptions/sun/generated_descriptions/aqueduct_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/aqueduct_descriptions.txt new file mode 100644 index 0000000..455af6a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/aqueduct_descriptions.txt @@ -0,0 +1,14 @@ +sun_auekmqrggmlqarft.jpg The stone aqueduct stretches horizontally across a lush green valley and consists of multiple tall, narrow arches supporting a weathered, dark-colored structure above, with a distant hillside and scattered buildings in the background. +sun_aczdirzvswrrqbgs.jpg The aqueduct is constructed from light tan stone with a rough, weathered texture, viewed from a slightly angled side perspective with a clear, expansive sandy beach in the background and distinct, repeating arches extending into the distance. +sun_avpcdmlgahttxfmb.jpg The aqueduct is a series of weathered stone arches illuminated by streetlights, stretching diagonally from the foreground to the background against an urban nighttime setting, with sections appearing dark and textured due to the low resolution. +sun_afdmfnnbsnfqmnjr.jpg A white, arched aqueduct with a weathered texture stretches across an urban plaza, set against modern, angular skyscrapers and a partly cloudy sky. +sun_akhphgyjsqnnjjfn.jpg The aqueduct features a series of uniform, gray stone arches with a textured surface, viewed from a straight-on perspective against a clear blue sky, with small birds scattered across the background. +sun_agbqdxfgjelhbepp.jpg The aqueduct is constructed from irregular gray stones, forming two rounded arches over a shallow stream, surrounded by lush green foliage and grass, viewed at an angle that emphasizes its rustic, aged texture. +sun_akhrdxystoxifvgr.jpg The image shows a weathered stone aqueduct with a series of arches and partially collapsed sections, reflected in a calm body of water, set against a backdrop of dense trees under an overcast sky. +sun_ajlaxptrakzafroo.jpg The aqueduct is an elevated structure with a series of parallel, cylindrical pipes that are light gray and stretch across a steep, rocky hillside with sparse vegetation, viewed from a frontal perspective under a clear blue sky. +sun_adoyqhesbzhqjrkp.jpg The low-resolution image shows a gray stone aqueduct with segmented arches, viewed from a slight angle, prominently placed against a backdrop of historic buildings and a distant medieval wall, set under a cloudy sky. +sun_ayhcyvupydapkzzp.jpg The silhouetted aqueduct is seen in side view against a cloudy sky, featuring dark, weathered stone arches with a prominent row of double-tiered pillars, set amidst a sparse urban background. +sun_alfkqkrgwnvsmtpz.jpg The aqueduct is made of light gray stone blocks, with a series of arches casting shadows from the evening sun, viewed from an angled perspective as it stretches into the distance above a busy urban square with buildings and people. +sun_aqaxgrflfovgycyn.jpg The aqueduct features dark, textured wooden trusses spanning over a calm river, supported by stone piers, with a backdrop of lush green hills under a clear blue sky. +sun_awsbvnvlcfcsrhqy.jpg The aqueduct, viewed from a slightly angled perspective, features a series of repetitive beige stone arches set against a clear blue sky, with a textured cobblestone surface and surrounding greenery at the base. +sun_atvujmyjnlixtnfb.jpg The aqueduct, viewed from a low angle at night, has a dark, stone-textured surface with an extensive series of illuminated arches against a dimly lit urban backdrop. diff --git a/utils/area/descriptions/sun/generated_descriptions/arch_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/arch_descriptions.txt new file mode 100644 index 0000000..8f2e24c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/arch_descriptions.txt @@ -0,0 +1,15 @@ +sun_brammhphxaojjaro.jpg The white stone arch, viewed from a frontal perspective, features intricate carvings and inscriptions above multiple archways flanked by tall lampposts, with trees and vehicles lining the street in an urban setting. +sun_aerqfpclpmevnddo.jpg The arch appears as a massive, reddish-brown rock structure with rugged texture, viewed from a low angle against a clear blue sky, with another arch frame in the background showcasing intricate layering and shadow play. +sun_bnunhwbsxmmdzwmk.jpg The arch is a weathered stone structure with intricate carvings, viewed from the front against a backdrop of a partly cloudy sky and scattered trees, highlighting its aged, light gray surface. +sun_bhnahpeeroozqinw.jpg A pale, stone-textured triumphal arch with sculpted figures on top is seen from a frontal viewpoint, framed by trees and urban buildings in the background. +sun_bkhbfkhsgyheoulz.jpg The arch is a reddish-brown, ornate structure with intricate carvings, viewed from the front against a backdrop of blooming trees and a rocky garden, with a classical decorative style and a weathered texture. +sun_anocmtavfqkqynra.jpg The stone archway in the image is a light sandy color with a rough, aged texture, viewed from a low angle showing a sequence of arches leading down a narrow stone-paved corridor with visible shadow patterns, set against a background of old stone walls adorned with sparse vegetation and a clear blue sky above. +sun_aumbkzmwjuxhfyme.jpg The arch is a rustic, light brown stone structure viewed from beneath, featuring a slightly weathered texture with sunlit upper surfaces, framed by narrow streets and stone buildings, and set against a backdrop of blue sky and pedestrians. +sun_bqyexofsqinaaucr.jpg The arch is an ornate, beige structure with intricate detailing and white accents, viewed from the front against a clear blue sky, flanked by smaller arches and featuring a bustling crowd of people below. +sun_afxhungtrhfszpbs.jpg The arch appears silver with a smooth texture, towering in an upward curve against a clear blue sky, surrounded by lush green trees and a reflective body of water in the foreground. +sun_bggglvqfvzdwgkil.jpg The arch is a sleek, metallic silver structure with a smooth texture, viewed head-on against a backdrop of a city skyline at dusk, featuring reflections in a calm river and a luminous, twilight sky. +sun_aczmvpgmmruxmqfc.jpg The arch features a richly decorated interior with red and gold geometric patterns on the ceiling, surrounded by fluted columns and intricate carvings, against a backdrop of a clear blue sky and distant classical buildings with vibrant greenery at the foreground. +sun_bmtksenrdbiltdxf.jpg The arch is a light gray stone structure featuring intricate sculptural details on top, set in an overcast urban park environment with flagpoles on either side and buildings visible in the background. +sun_btzshyxltozkwxks.jpg The arch is a weathered, reddish-brown structure with a dark, semi-circular top, viewed head-on against a backdrop of green foliage and a distant, cloudy horizon. +sun_baflokqptenjzyxl.jpg The arch appears silver-gray with a smooth texture, viewed from a low angle against a clear blue sky, surrounded by a cityscape of mid-rise buildings and distant cars in the foreground. +sun_biikterqvjcwsott.jpg The image depicts an ancient stone arch with a weathered texture in shades of beige and gray, viewed from a slightly angled perspective, set against a backdrop of a clear sky and distant ruins, with distinct rectangular and arched openings and a visible keystone. diff --git a/utils/area/descriptions/sun/generated_descriptions/archive_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/archive_descriptions.txt new file mode 100644 index 0000000..abb184c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/archive_descriptions.txt @@ -0,0 +1,16 @@ +sun_acyowcswlgnljikg.jpg A person is retrieving a beige paper file with colored tabs from a densely packed wooden shelf filled with similarly organized documentation, set against a dimly lit indoor background. +sun_aidukrotbafxsalj.jpg The image depicts a partially assembled storage archive system with multiple tall, pale gray, metallic sliding shelves featuring visible handles, situated in a spacious, industrial-looking environment with a cement floor and exposed ceiling lights, partially surrounded by construction equipment and cables. +sun_akikocxlujmmbnva.jpg A man sits in front of a wall of grey, labeled box files on shelves, next to a bookshelf with assorted books, visible in an indoor office setting with fluorescent lighting. +sun_acyhctobdkxwfssi.jpg The archive consists of uniformly arranged grey boxes with black labels, stacked neatly on metal shelving against a backdrop of an indoor office space, with visible white light from the ceiling and a section of light wood cabinetry to the left. +sun_afngadshxudodkct.jpg Rows of wooden shelves filled with stacks of weathered, brown paper files are seen from a slight angle, with a dimly lit industrial ceiling overhead. +sun_alqkfvupjndalrwd.jpg The archive displays an assortment of multicolored file folders, predominantly purple and white, neatly arranged on metal shelving, viewed from a straight-on perspective, with a cluttered desk beneath and an office setting in the background. +sun_bvbhoqkgkjcdprvm.jpg The image shows a room filled with shelving units lined with white cardboard archive boxes featuring blue detailing and labels, with a person organizing them, under low warm lighting creating shadows, indicative of a structured and organized office environment. +sun_cvoqhoxlktagzpnk.jpg The archive appears as a wall of uniformly aged, brownish books and folders tightly packed on wooden shelves with visible labels, viewed from an angle that shows a high, ornate wooden ceiling, and surrounded by a dense environment of historical, library-like ambiance. +sun_ahtjyrnmufhrnvmm.jpg The archive consists of a narrow, cluttered corridor filled with stacked cardboard boxes and documents, predominantly in muted browns and greens, under a stark white overhead light, giving the scene a cramped, warehouse-like feel. +sun_cgjyqrfnfoqwodvz.jpg Rows of grey metal shelves filled with vertically arranged cream-colored file folders, each with colored tabs, are seen from a slightly elevated perspective in a well-lit, organized storage room with a light-colored floor. +sun_agldbemmbvkfoybc.jpg The image shows a dimly lit archive room with a grid of large, reflective glass panels framed in black, through which shelves filled with documents are visible, set against a backdrop of beige brick and tile walls with muted orange carpeted flooring. +sun_agfvluwixdsozaql.jpg A small, dimly lit room with metal shelving filled with uniformly stacked archive boxes in neutral tones like grey and beige, surrounded by a sparse assortment of files and office supplies against plain walls. +sun_ajkmeuujrhbclelc.jpg The archive appears as a collection of aged, yellowed documents stacked horizontally on a metal shelf, set against a background of metallic industrial shelving and a corrugated metal ceiling, viewed from the front at a slight angle. +sun_cvnwmmpjdpvbphyp.jpg A person stands in an aisle between rows of shelves filled with vertically arranged, color-coded files in a well-lit environment, emphasizing the vibrant and organized display of the archive. +sun_ascrvwtifkapmxvg.jpg Shelves filled with beige and brown wrapped parcels and folders line both sides of a narrow corridor in a well-lit, organized archive room with a smooth gray floor and a ceiling featuring evenly spaced lights. +sun_cfaiiqysycvmfwdz.jpg A vast wall of uniformly stacked brown cardboard archive boxes with white labels fills the high-ceiling warehouse background, with a worker operating an elevated lift in the foreground, offering an industrial and organized appearance. diff --git a/utils/area/descriptions/sun/generated_descriptions/arrival_gate_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/arrival_gate_descriptions.txt new file mode 100644 index 0000000..85e2521 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/arrival_gate_descriptions.txt @@ -0,0 +1,10 @@ +sun_aykwtyvknquxsqzc.jpg The arrival gate features a light beige, textured jet bridge extending from a terminal building, viewed from the side with a foreground of concrete pavement and a background of parked airplanes under a cloudy sky. +sun_aujvbfrqwlxdfxif.jpg The arrival gate features a sleek, metallic design viewed from a side angle, with a large white airplane lined up against it, set against an open tarmac and a clear sky dotted with fluffy clouds. +sun_brpbxyebzltywzhs.jpg A broad, concrete airport tarmac is busy with parked service vehicles and staff in orange vests, with two nearby blue and white airplanes, and a large terminal building in the hazy background. +sun_ajialvqzpnbrkgtw.jpg The arrival gate features a mostly gray and glass exterior with distant rectangular terminal structures in the background, visible from a slightly elevated viewpoint with multiple jet bridges attached to nearby aircraft. +sun_ahumgozeosrwabnj.jpg The arrival gate features a sleek, metallic gray passenger boarding bridge connected to a white airplane with red and yellow stripes, viewed from the side against a concrete tarmac, with several people and a visible jet bridge structure in the background. +sun_btslkdoftsstrxmi.jpg The arrival gate features a metallic texture with a sleek, silvery-gray color, viewed from a slight angle showing its horizontal structure extending towards a parked airplane, set against the backdrop of an expansive airport tarmac with a red-brick terminal building and another aircraft in flight. +sun_arhpjebzpqhxlgbd.jpg The arrival gate features a green and white airplane docked with a jet bridge at a busy airport terminal, surrounded by various service vehicles and baggage carts against a backdrop of a large, modern building with multiple curved roofs. +sun_blqgvwyohunprcsh.jpg The image depicts a night view of an arrival gate where a jet bridge with a beige color and corrugated texture is connected to a large aircraft featuring a red and blue stripe on its silver fuselage, set against an illuminated airport tarmac with scattered bright lights in the background. +sun_baztzymzwiycdahj.jpg The arrival gate features a sleek, metallic facade with large glass panes, set against an overcast sky, alongside multiple parked aircraft, including a prominently visible red and white Turkish Airlines plane. +sun_bqkrdbboxpnqkgpq.jpg The arrival gate is adjacent to a large white airplane with blue accents, viewed from the side against a backdrop of a sunlit tarmac and scattered clouds, with several service vehicles and carts nearby. diff --git a/utils/area/descriptions/sun/generated_descriptions/art_gallery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/art_gallery_descriptions.txt new file mode 100644 index 0000000..0bb2a21 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/art_gallery_descriptions.txt @@ -0,0 +1,10 @@ +sun_asiloekdtiroucfz.jpg The art gallery features light cream walls adorned with framed landscape paintings, observed from an interior viewpoint with wooden flooring, spotlights on the ceiling, and a black bench in the foreground. +sun_apyuddclmgxtygjf.jpg The art gallery features warm wooden floors and white walls adorned with black-and-white figure sketches, viewed from an angle showing people observing the artworks, under a subtle glow from overhead spotlights. +sun_cmxdyfmxnonocrat.jpg The art gallery features a minimalist design with smooth white walls and a dark gray tiled floor, showcasing vibrant, abstract artworks with colorful square patterns, under soft, diffused light from a large, central circular ceiling skylight. +sun_bicpqutuqxptsrxz.jpg The art gallery features low wooden pedestals displaying a series of monochromatic busts with intricate, textured surfaces arranged against a neutral wall, creating a harmonious and minimalist exhibit space. +sun_ajsrxkacpaqcphfb.jpg The art gallery features a large, colorful tapestry with a surreal landscape of winding trees in vibrant blues and oranges, viewed from a straight-on angle in a minimalistic room with light walls and a gray floor, and three people standing closely observing the artwork. +sun_crkutdgavzlliavf.jpg The image shows a minimalist art gallery with a neutral-toned sculpture on a pedestal, set against a spacious room with polished concrete floors, white walls, and track lighting, featuring a row of small windows near the ceiling and various abstract installations scattered throughout the space. +sun_appplrfiyaorqker.jpg The art gallery showcases a modern setting with a smooth, reflective gray floor, featuring diverse sculptures and paintings displayed against white walls with soft overhead lighting, where a prominent textured blue angular sculpture appears in the foreground and a crowd gathers in front of various artworks. +sun_cxsvxcvzgdgcuifb.jpg The art gallery features a minimalistic interior with polished gray flooring, white walls adorned with an eclectic mix of framed paintings in diverse styles, and a modern television displaying video art placed centrally, under soft, ambient lighting. +sun_aztfwlrngdpyrqyi.jpg The art gallery features a large portrait of a Siamese cat with striking blue eyes in an ornate golden frame, viewed from behind by visitors standing on a polished wooden floor, set against dark gray walls adorned with additional framed artworks. +sun_attoqolfnbfghijw.jpg A vibrant art gallery with a dominant orange wall displays several framed images, while a foreground features photo equipment, blue-themed products, and various tech items, all set against a bright, industrial-inspired interior with visible air ducts and a person standing near a glass case in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/art_school_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/art_school_descriptions.txt new file mode 100644 index 0000000..273df31 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/art_school_descriptions.txt @@ -0,0 +1,10 @@ +sun_aabogqsjulyvmcse.jpg The art school features a spacious, softly lit room with red curtains and tiled flooring, hosting wooden easels and artists in casual attire engaged in painting, with scattered art supplies visible on tables amidst a neutral-toned, bright backdrop with multiple light sources. +sun_azpgocoasaxlmqcy.jpg In a brightly lit classroom with white walls, a young child with short blonde hair sits at a blue table covered in paper and art supplies, surrounded by colorful child-sized chairs and a backdrop featuring whiteboards and charts. +sun_ayedmmtgtemkugsu.jpg A young girl in a pink outfit paints on an easel in a vibrant art classroom with colorful chairs and various artworks displayed on beige walls, featuring a lively and creative atmosphere. +sun_agzmhxpckfjehlll.jpg A young woman with a cheerful expression is holding carving tools over a large ornate, dark brown carved wooden panel, in a workshop setting with scattered clay tools and a partially sculpted clay dome in the background. +sun_ajzlgvchpdfbuzlu.jpg The art classroom features young students painting on easels with vibrant colors amidst a backdrop of framed artwork on beige walls, where adults observe, adding a lively and engaged atmosphere. +sun_aypgtqwbrivyucsj.jpg The image shows a group of students seated around a light wooden table covered with art supplies and drawing papers, under ambient indoor lighting, with a background featuring tiered platforms or steps and a blank presentation board. +sun_aycvdaajritpmalj.jpg Two students, bundled in winter clothing with brown and blue jackets, sketch on red stools in an outdoor art class overlooking a terrace with brick railings, surrounded by trees and scattered dried leaves on the ground. +sun_aoajmddzacamwqxg.jpg The image shows a group of people in a dimly lit gallery space with neutral-colored walls, where a person is explaining framed abstract artwork that features vibrant colors and textured brushstrokes, observed from a side perspective. +sun_acurtdqckoflmdaj.jpg A group of students seated at white tables in a classroom with light-colored walls, focusing on art projects under the guidance of a teacher in a patterned shirt, with various art supplies scattered across the table. +sun_azphvplujtqppajx.jpg A person in a blue, patterned top and black pants is seated at a desk, focused on painting with an array of colorful paints on a canvas, in a cluttered, dimly-lit room with a carpeted floor and scattered artistic supplies. diff --git a/utils/area/descriptions/sun/generated_descriptions/art_studio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/art_studio_descriptions.txt new file mode 100644 index 0000000..5ba5c34 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/art_studio_descriptions.txt @@ -0,0 +1,10 @@ +sun_afmbeccsadefdgik.jpg The art studio features three large, brightly colored abstract canvases with one in predominantly blue-green tones positioned centrally on the floor, while two others lean against light wooden walls with large windows revealing an outside view, bathing the room in natural light. +sun_bkxkraecdemenrwt.jpg People are seated around a table engaging with papers and books in a library-like environment with shelves filled with magazines and books in the background, against a backdrop of subdued lighting and neutral blue and beige tones. +sun_bldnkbjcpfpitudl.jpg The image depicts an elegant dining area with rich red and black furnishings, featuring round tables set with glassware, large red vases, and leafy green plants against a warm beige and stone textured backdrop, viewed from a slightly elevated perspective. +sun_ambfhzrjyjwifhkx.jpg A man stands next to a ladder in a studio with large, complex abstract artworks featuring bold red, orange, and intricate line patterns on the walls, accompanied by metallic chairs and a radiator against a plain light-colored room backdrop. +sun_bhqgmtqgqidryvdr.jpg The art studio features a well-lit space with a light-colored wall lined with vibrant paintings and photographs, including animals and landscapes, complemented by an easel holding canvas artworks with red lines and a scenic bridge, surrounded by art supplies and a window covered with blinds. +sun_bpgxafscsgkhdiqa.jpg The art studio is filled with natural light from large windows on the left, featuring a cluttered foreground with various art supplies on tables and a large abstract painting with vibrant blues and yellows propped on the right side, while an individual stands observing the work with a palette in hand. +sun_aquregbijmtbtcrv.jpg The art studio features soft pastel-colored walls with a prominent equine painting, cluttered shelves lined with art supplies, a large window with partially open blinds allowing natural light, and cabinetry with subtle decorative motifs, creating a cozy and personalized space. +sun_aqhvdsfjfdmurrxs.jpg The art studio features large canvases on easels displaying vibrant, textured landscape paintings with earthy tones in a spacious, well-lit environment with white walls and tile flooring. +sun_aupxhqwylatpbskj.jpg The art studio is cluttered with various paintings featuring vivid colors and intricate human forms, resting on the floor and leaning against walls with a paint-splattered purple rug at the center and unfinished easel setups adding to the creative chaos. +sun_aldetvqnrzcrjwjs.jpg The art studio features warm, golden lighting with large, angular skylights casting geometric shadows, a prominent easel and painting in the center surrounded by eclectic furnishings against a backdrop of cluttered shelves and a cozy seating area. diff --git a/utils/area/descriptions/sun/generated_descriptions/assembly_line_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/assembly_line_descriptions.txt new file mode 100644 index 0000000..b8191ef --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/assembly_line_descriptions.txt @@ -0,0 +1,10 @@ +sun_ayzxhknqrejdajxi.jpg The assembly line features a blue-gray metallic engine block with a smooth yet industrial texture, positioned in the foreground with a worker in a yellow shirt attending to it, set against a backdrop of yellow and metallic structures with overhead equipment and a light industrial ceiling. +sun_agoomfzlihditvyj.jpg A low-resolution image reveals a motorcycle assembly line with predominantly blue and silver colors, featuring an overhead perspective and organized in a long, narrow factory space with orange coiled air hoses, creating a dynamic visual contrast against the uniform gray flooring and white ceiling. +sun_aobyzqleevihkhst.jpg The assembly line, viewed from an elevated angle, features workers in tan uniforms sitting at a long, metallic surface assembling items with green and orange components, set against a spacious, sterile factory backdrop with glossy teal flooring and white, structural columns. +sun_amedtqzgbyoxbbhp.jpg The assembly line features bright green mechanical structures with a glossy texture, viewed from a high angle, surrounded by a bustling industrial environment with overhead cables and a mix of workers in casual attire. +sun_amblmbkodwwsoxbf.jpg The assembly line features a detailed view of a vehicle chassis, predominantly gray with metallic textures, seen from an oblique angle inside a brightly lit factory environment, highlighted by yellow machinery and a partially assembled car with its hood open and headlights visible. +sun_ayutxdvgcjciyprv.jpg A long, light gray assembly line with overhead fans, orange suspended cables, and boxes lined neatly on a smooth surface, situated in a spacious industrial warehouse with a high ceiling and evenly spaced skylights. +sun_afgmybccdsozwffb.jpg The image depicts a spacious industrial assembly line in a large warehouse with a long corridor view, featuring white machinery with red accents evenly spaced on both sides, under a high metal roof, with a well-lit environment from overhead lights. +sun_atxjrpgipuwjytdn.jpg A side view from an elevated angle shows a sleek, black automotive assembly line with workers assembling car bodies against a bright, industrial background of orange flooring and white overhead fixtures. +sun_adejqjcmaaijonjd.jpg A group of women in white uniforms and caps are working on an assembly line filled with black cameras, set in a factory environment with a series of tables and fluorescent lamps, viewed from a diagonal angle and showcasing a clean, organized workspace. +sun_atgeochjdywgqxyf.jpg The assembly line is viewed from an elevated angle, revealing a series of colorful, predominantly red and green, industrial machines aligned in a spacious indoor facility with a high, trussed ceiling and a concrete floor, surrounded by stacks of packaged goods and machinery parts. diff --git a/utils/area/descriptions/sun/generated_descriptions/athletic_field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/athletic_field_descriptions.txt new file mode 100644 index 0000000..acdf514 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/athletic_field_descriptions.txt @@ -0,0 +1,10 @@ +sun_alhozglghatozsra.jpg The athletic field features a vibrant green grassy surface viewed from ground level, surrounded by a border of lush trees under a clear blue sky, with metal floodlight poles and a children's play structure visible at the periphery. +sun_bkvrxqrawegeonsu.jpg The athletic field features a green, grassy texture with a central white goalpost visible from a direct frontal viewpoint, set against a backdrop of dense, dark trees and a pale sky. +sun_byqozbcykrkzvgkj.jpg A lush green athletic field is viewed from the side, with a textured grass surface and a tall light post in the background, bordered by dense trees under a clear blue sky. +sun_bwpttdqximftkypj.jpg A green, artificial turf athletic field with a visible white goalpost is viewed from a slightly elevated standpoint, with a large overpass dominating the background. +sun_beydfaxsfippbeew.jpg The athletic field features a lush green grass surface with parallel mowing lines stretching across its length, viewed from a side angle revealing a distant white goalpost, bordered by a gravel path and a dense background of tall leafy trees under a cloudy sky. +sun_bauguufmwqfznvvo.jpg The athletic field appears as a green, well-maintained grassy surface viewed from an angle with residential buildings and trees in the distant background, alongside bare soil and a coiled hose in the foreground. +sun_byzhoaejuiojtzlb.jpg A grassy athletic field with a worn, patchy texture is viewed from a slightly elevated angle, surrounded by dense green trees and featuring goalposts at two ends, with a background of sloping hills and scattered houses. +sun_apzjipfgmwfelsnl.jpg The athletic field features a vivid green, well-manicured grassy expanse with a slightly elevated view highlighting a reddish-brown baseball diamond, flanked by metal bleachers and a backdrop of tall fencing and sparse trees under a clear sky. +sun_bjcepytalojarrjl.jpg The athletic field is a vibrant green with a slightly patchy texture, viewed from a ground level angle, surrounded by a chain-link fence in the foreground, with a backdrop featuring a row of red-roofed buildings and bleachers on the right side under an overcast sky. +sun_brrvlqrjirayqdym.jpg The athletic field features a green, grassy texture with bare patches, viewed from a low angle, framed by a row of small, evenly spaced spectator stands and lush, dense trees in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/atrium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/atrium_descriptions.txt new file mode 100644 index 0000000..fee4ac2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/atrium_descriptions.txt @@ -0,0 +1,13 @@ +sun_bjfvbjcxbfjxmfix.jpg The atrium features a geometric, tessellated ceiling with a mix of white and translucent panels contrasted against angular, metal-clad walls in muted shades, while a modern interior space includes scattered greenery and people, viewed from a slightly elevated perspective. +sun_bznygocveovyqfcj.jpg Tall palm trees with textured brown trunks rise towards a glass-paneled ceiling, surrounded by multiple levels of white and beige balconies lined with greenery in a spacious, brightly lit atrium. +sun_bekohtibkijbtchk.jpg Tall palm trees with textured brown trunks and fan-like green leaves reach towards the glass-paneled ceiling of a sunlit atrium, surrounded by beige walls and black railings. +sun_akypvrysfcrbtaeu.jpg The atrium features a spacious, multi-level interior with large white columns and a glass-paneled ceiling, offering a view from an upper floor with visible greenery and a minimalist decor that contrasts with the clean lines of the modern architecture. +sun_btwixqkvzjmqkqpu.jpg The atrium features a sleek, modern design with a transparent arched roof allowing natural light to illuminate the light gray-tiled floor, with white walls and columns, a wooden railing along the mezzanine, and green foliage visible through the large windows in the background. +sun_boiypdhdstwelufr.jpg The atrium features wooden beams and a neutral-toned ceiling, with large windows providing ample natural light, showcasing a grid-like tile floor and modern furniture in a spacious, airy environment. +sun_aurxzcbkrewmblcd.jpg The atrium features a warm wood-toned framework with intricate iron railings, viewed from below, showcasing a glass ceiling that allows ample light to filter into the multi-tiered, beige-walled interior. +sun_brtzlhwktqwkzibi.jpg The atrium features a spacious, light-filled environment with a clear glass ceiling and white steel framework, surrounded by multiple levels of balconies, complemented by lush green palm trees and seating areas, and bustling with people under the natural daylight. +sun_aaepnczurcpxcpgk.jpg The atrium features large angular blue steel beams supporting a clear glass roof, viewed from a side angle with visible tables and people in the foreground, brick walls at the base, and a retail environment inside. +sun_blszjcgzvttzwqxv.jpg The image shows a spacious atrium with a glass-domed ceiling, featuring lush greenery, a winding water feature, and a central ornate structure resembling a vintage hotel amidst pathways and bridges, with warm earth tones and natural textures dominating the scene. +sun_bsxsmqmkhxxlkoub.jpg The image depicts an atrium with a high vantage point showcasing a large, grid-patterned glass ceiling allowing in diffused light, flanked by brown brick walls and lined with light wooden benches and potted plants against a softly carpeted floor. +sun_bnsxifdibicpxxnt.jpg The atrium features a circular skylight with a geometric design, illuminating a central platform adorned with light wood furniture and lush greenery, viewed from eye level in a spacious environment with a two-tiered balcony and glass railing. +sun_bqmxjabuzthscxud.jpg The atrium features a lush, tropical environment with abundant green foliage and palm trees under a large glass ceiling, interspersed with white, lattice-like structures and surrounded by multi-story, beige-walled balconies in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/attic_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/attic_descriptions.txt new file mode 100644 index 0000000..bceab65 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/attic_descriptions.txt @@ -0,0 +1,15 @@ +sun_aynshzivgnrjsvvx.jpg The attic features a sloped wooden ceiling with four skylights, viewed from a low angle, with warm-toned wooden floorboards and a partially illuminated area where two open laptops rest on a minimalistic workspace. +sun_asdtvpzscfnfdodr.jpg The attic features a light-colored, unfinished wooden framework with a visible slanted A-frame roof structure, set against a dimly lit environment that highlights the raw, textured wood and exposed construction materials. +sun_adzpdgwudhieudjr.jpg The attic features unfinished wooden framing and paneling in a warm, natural beige tone, viewed from an elevated angle showing slanted roof beams and partially completed partition walls, with a rough plywood floor and small, light-diffusing windows enhancing the rustic, construction-site ambiance. +sun_abhjioffbrncifvx.jpg The attic, viewed from an entry point towards the window, features unfinished wooden beams and plywood walls with a central window revealing greenery outside, all under soft, low-resolution lighting that highlights a red ladder on the right and construction tools on the floor. +sun_cocdxcsvjzylmrdv.jpg The attic has a dimly lit atmosphere with rough, dark wooden beams and floorboards, an old wooden chair, and a large window casting soft light on a textured rag or rug, visible through an open doorway. +sun_ckhdngfbljrvikpm.jpg The attic features a spacious, beige, carpeted floor with a textured appearance, viewed from the entrance with reflective silver insulation panels lining the sloped ceiling and a central brick chimney as a focal point in the background. +sun_aliqepetuupwdpip.jpg The attic features warm, polished wooden floorboards with a reddish-brown hue, viewed from a low angle that emphasizes the spacious triangular ceiling and leads toward a plain off-white wall with a small wooden door and a noticeable cut-out opening on the floor. +sun_cpkyhkdrdfmsfwtv.jpg The attic features a rustic, dimly-lit environment with arched, ribbed ceilings casting shadows, exposed brick walls, and an assortment of scattered debris and furniture, creating an atmosphere of neglect and decay. +sun_ahplanseggxesrxc.jpg The attic is cluttered with clothing on hangers to the left, featuring a mix of bright and muted colors in a space with wooden paneling and beams above, with boxes and a person standing in the right foreground, all under dim lighting that casts soft shadows. +sun_asbdowbkkuwwlwip.jpg The attic features dark wooden beams and planks with a rough texture, viewed from a low angle showing a narrow gabled ceiling and a central window, contrasted by a dimly lit, spacious environment with a wooden table visible in the foreground. +sun_crjwqxjtzwtvbhat.jpg The attic is viewed from a raised perspective, displaying exposed wooden beams with slanted walls, lined with silver ductwork and black insulation bags, set against a backdrop of yellow insulation and interrupted by several wooden support structures. +sun_cfoczfoxtmfecfoq.jpg The attic features a minimalist setup with a slanted ceiling and a skylight revealing a view of trees, a cozy bed on a light carpeted floor adorned with plush toys, and framed pictures on the cream-colored walls, creating a warm and inviting ambiance. +sun_acbhdcxpyjxepqle.jpg The attic features a wooden interior with a slanted roof made of brown, textured planks, viewed from a straight-on perspective, with scattered items and a wooden truss in the foreground, alongside a cluttered assortment of household objects. +sun_awttfatelnyhvfbb.jpg A cozy attic displays warm wooden textures and muted colors from a lofted viewpoint, featuring a prominent wooden boat hanging from the ceiling, framed by large windows with a soft glow illuminating a collection of framed pictures on the wall. +sun_cpubocgflnbwveaw.jpg The attic features unfinished wooden beams and walls with a rustic brick chimney, observed from a corner viewpoint, showcasing a window with natural light filtering through, and exposed insulation scattered on the floor. diff --git a/utils/area/descriptions/sun/generated_descriptions/auditorium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/auditorium_descriptions.txt new file mode 100644 index 0000000..eefee79 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/auditorium_descriptions.txt @@ -0,0 +1,15 @@ +sun_ahyxzyjlxujlguhy.jpg An auditorium with light brown seating and beige walls is captured from an elevated rear-side viewpoint, featuring a stage at the front right, packed seating with an audience, and dim ambient lighting creating soft shadows in the background. +sun_bekewxldnuprmsha.jpg The auditorium features green cushioned seating arranged in tiered rows with wooden accents, viewed from a low angle that highlights the gradient of seats leading to beige acoustic wall panels and a simple stage with a projector stand, set within a minimalistic interior space. +sun_ageaudwlvlioisiq.jpg The auditorium features a front-facing view with rows of orange seats and a prominent wood-paneled stage, complemented by a white presentation screen in the background and sleek gray walls outlining the space. +sun_agwllmmrxvvfmlnt.jpg The auditorium features red, cushioned seats with angular metal frames arranged in rows on a light-colored floor, observed from a side angle, with a minimalist, gray-paneled wall and ceiling design accompanied by circular air vents and ceiling lights. +sun_aolqvaywhhawzvct.jpg The auditorium features rows of blue cushioned seating arranged in ascending tiers, viewed from the front with a wooden podium in the foreground, set against a neutral-toned backdrop with high ceilings and scattered overhead lighting. +sun_apzqacqnepjofogd.jpg The auditorium features rows of red seats with wooden armrests aligned towards a stage framed by a dark proscenium, viewed from a slightly off-center angle, with light-colored walls and ceiling setting a neutral backdrop. +sun_apkjcdmscmksowdt.jpg The auditorium features rows of green, cushioned seats ascending toward a wood-paneled wall, with a sleek, modern design highlighted by a ceiling of horizontal wooden slats interspersed with linear fluorescent lights, viewed from a lower side angle with white walls and acoustic panels. +sun_bajwtrmcgmnpmkne.jpg The auditorium features angled, off-white ceiling panels with a grid-like pattern viewed from a descending right-hand angle, surrounded by wooden wall paneling, filled with tiered seating in light gray and black hues, and occupied by people in casual attire against a backdrop of a projection screen and lecture equipment. +sun_atnavotebfbklvmp.jpg The auditorium features a large, white curved screen at the front with rows of subdued maroon seats leading up to it, viewed from a descending perspective, and an understated gray ceiling with recessed lighting. +sun_acbfyedrzzdxemwv.jpg The image shows a front-facing view of an auditorium with rows of green upholstered seats arranged in a symmetrical and orderly manner, set against a light-colored backdrop with several high windows and walls painted in shades of yellow and white. +sun_anzutxeutleudtbf.jpg The auditorium features a steep, elevated seating arrangement with rows of maroon chairs, viewed from the stage area, against a backdrop of dark gray, matte-textured walls with exposed lighting fixtures on the ceiling, creating an industrial atmosphere. +sun_awbgduswmqagdgyw.jpg The image depicts a warmly lit auditorium featuring rows of dark, cushioned seats on the left, wooden flooring extending from the foreground to a gently curved ceiling lined with recessed lights, set against a background of light-colored, vertical-paneled walls. +sun_alwkmhblbzypyozq.jpg The auditorium features wooden-tiered seating filled with people, viewing from the front towards a subdued pinkish-brown wall, with visible ceiling lights and long horizontal windows above. +sun_agafdsizxwefqzde.jpg The auditorium features a series of tiered desks in a neutral beige with rows of blue cushioned office chairs occupied by uniformed individuals under a suspended ceiling with recessed lighting and a wall clock in the background, viewed from a slightly elevated angle. +sun_aevbevoqecveijwl.jpg The auditorium features vibrant red cushioned seats arranged in an ascending order with a viewpoint from the lower left, set against a contrasting background with gray paneled walls and warm wooden accents on the ceiling, under a softly lit environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/auto_factory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/auto_factory_descriptions.txt new file mode 100644 index 0000000..c23eaff --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/auto_factory_descriptions.txt @@ -0,0 +1,10 @@ +sun_avqwbloqzqduolbf.jpg The auto factory features metallic machinery and workers in gray uniforms assembling components under a brightly lit interior with hanging red and yellow equipment, indicative of a bustling assembly line environment. +sun_aplxfzfvbtxmrjnr.jpg The image depicts an auto factory interior where a metallic gray car body is suspended on a yellow assembly line with technicians working below, illuminated by bright overhead lights and surrounded by industrial equipment in a spacious, high-ceiling environment. +sun_brjibybygcstxpmi.jpg The image features a metallic and industrial environment with a predominantly silver and gray texture, showcasing car engines mounted on red stands viewed from a side angle, with overhead lighting and ceiling grid structures forming the background, and a technician in a light-colored uniform working nearby. +sun_ameafxxhsnjeqzfs.jpg The image displays a bustling auto factory with a focus on a partially assembled silver car surrounded by vibrant orange robotic arms mid-operation, emitting sparks against a backdrop of metallic structures and equipment in an industrial setting. +sun_alhqvksmpgypdqdr.jpg The auto factory image shows a bustling assembly line with workers in uniforms, focusing on assembling mechanical components amidst a backdrop of partially built car bodies, under bright, industrial lighting with visible overhead conveyors and a mix of metallic gray and vivid red elements. +sun_bitubasrpxezfafs.jpg A red sports car is positioned on an assembly line with its hood open, surrounded by vibrant yellow and blue industrial machinery under bright overhead lighting in a bustling factory environment. +sun_algrgwfzwzkpxvla.jpg The image shows a beige car seat on an angled assembly line in an auto factory, with fluorescent lighting and various workers in the industrial background. +sun_augfvnonlisphtth.jpg The image shows a bustling auto factory interior with rows of silver and blue cars on an assembly line, viewed from above, surrounded by workers in blue attire against a backdrop of industrial machinery and orange cables. +sun_anjigamlobjhxdwk.jpg The auto factory is viewed from a side angle with a prominent red hue illuminating the interior, showing silhouetted machinery and a person against reflective transparent panels, suggesting a busy industrial environment. +sun_ahutiqvphdbkkumr.jpg The auto factory interior features a predominantly industrial gray and metallic color scheme with a utilitarian texture, viewed from an oblique angle highlighting assembly line machinery and overhead pipes, with workers visible in the foreground and background, under a well-lit grid ceiling in a spacious, organized setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/badlands_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/badlands_descriptions.txt new file mode 100644 index 0000000..535ad79 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/badlands_descriptions.txt @@ -0,0 +1,15 @@ +sun_bandnxlejgzxqiou.jpg The badlands display layered formations in muted tones of gray and beige with subtle red-brown bands, viewed from an elevated edge under a cloudy sky, creating a stark and rugged landscape against the expansive horizon. +sun_bieubuwceahatwug.jpg The badlands display a sweeping landscape of soft pastels with pink, cream, and light brown hues, featuring rounded, layered mounds and ridges with a person standing on a prominent foreground hill, set against a background of distant, striated elevations and sparse vegetation. +sun_acwbxoqkmimcnupk.jpg The badlands landscape is characterized by jagged, sedimentary rock formations in muted shades of brown and beige with a rugged texture, viewed from a low angle that highlights the sweeping hills and sharp ridges, set against a clear blue sky that enhances the stark, undulating topography. +sun_bhblefrromawiqvx.jpg The badlands exhibit a series of jagged and eroded beige and pinkish formations with distinct sharp peaks set against a backdrop of a clear sky, viewed from a low angle with a foreground of dry, grassy plains. +sun_bsdegxcseviuvife.jpg Layers of muted earth tones with rugged, eroded formations rise sharply against a bright sky, featuring jagged peaks and narrow ridges where hikers traverse worn pathways that wind through the stark, barren landscape. +sun_bqogketumcqznmzs.jpg From a rear viewpoint, the grayish-white and dusty pink layered badlands spread into the distance, characterized by their rugged, sharply eroded ridges and valleys under a cloudy sky, creating a stark, barren landscape. +sun_bchsjlaecrlqndlz.jpg The badlands display layered, eroded rock formations with a pale gray and brown color palette, under a clear blue sky, featuring rough, stratified textures and sharp peaks across a vast, barren landscape. +sun_bgpmylpbaddmkupf.jpg Undulating rust-colored terrain with a craggy texture is visible, surrounded by sparse greenery in a lush background, with a person kneeling in the foreground. +sun_aapsxmikghxbzhcl.jpg The badlands exhibit layered sedimentary formations in earthy tones of brown and red, capped with patches of snow, against a horizon of rugged and weathered ridges under an overcast sky. +sun_bxeurxofgqjjatgr.jpg Layered with pale gray and beige hues, the badlands feature jagged, eroded mounds and ridges, covered sparsely with green vegetation, with a prominent pointed hill in the center against a clear blue sky. +sun_bkrfeyzyhynwhynm.jpg The badlands feature rugged, jagged formations with distinct reddish-brown peaks and striated layers, set against a clear blue sky with scattered white clouds, creating a stark and dramatic contrast. +sun_bohrznfqrlczbtpy.jpg The badlands exhibit a rugged, eroded landscape with layered gray and tan striations, viewed from a high vantage point with vast flat plains in the background and a clear blue sky overhead. +sun_anhiqhrhfuotdrge.jpg The badlands display a textured surface of eroded, light reddish-brown earth with subtle undulations, set against a backdrop of sparse, green vegetation and cloudy sky. +sun_bveclyqazovicbwb.jpg The badlands exhibit a rugged landscape with light gray and brown stratified sedimentary layers, viewed from a slightly elevated perspective; sparse vegetation clings to the eroded ridges under a clear blue sky, with the distant plains stretching into the horizon. +sun_azfbufhejqsgjbzm.jpg The image depicts reddish-brown, undulating hills with a rough, textured surface, viewed from a slightly elevated angle, with a sparse, small green shrub providing contrast amid the barren landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions/badminton_court_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/badminton_court_descriptions.txt new file mode 100644 index 0000000..bd9db20 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/badminton_court_descriptions.txt @@ -0,0 +1,10 @@ +sun_ahntvxqzyuejrdcq.jpg The badminton court has a green surface with white boundary lines set in a high-ceilinged indoor space, featuring tall mustard and brown walls, and is viewed from a front-facing perspective with red flooring surrounding the court. +sun_avijaozwmknwtzzs.jpg The badminton court features a beige floor with colorful boundary lines in green, blue, and red, surrounded by dark walls and gymnasium equipment, viewed from a slightly elevated angle with cones marking specific areas. +sun_apidnkswukuqyuvm.jpg The badminton court features a rich blue surface with white boundary lines, viewed from an elevated angle showing its enclosed indoor environment with wooden walls and bright overhead lighting, set against a backdrop of transparent wall segments revealing an adjacent area. +sun_aldaqkrjbornccnq.jpg The badminton court features a blue textured surface with white boundary lines, seen from an elevated side angle, set in an indoor environment with orange walls, a black chair, and two players actively engaging near the net. +sun_amgjlfhwzdvhkofk.jpg The badminton court features a green surface with white boundary lines, viewed from a lower side angle, set against a backdrop of wooden flooring and a large indoor gymnasium with spectators and walls adorned with banners. +sun_aiorrsomwrhkypuv.jpg The badminton court features a green surface with white boundary lines, viewed from an elevated angle, surrounded by beige walls and a row of mirrors along one side. +sun_aydknlajxeonuwgq.jpg The image shows an indoor badminton court with a wooden surface, white boundary lines, and a central net, viewed from a side angle with players in motion and a dark green wall as the background. +sun_acvzunkfqqnctjln.jpg The badminton court features a smooth wooden floor with distinct blue and white lines, viewed from a side perspective, surrounded by a gymnasium environment with wooden walls and metal racks in the background. +sun_aeqksrrmuhclxpop.jpg The image shows an indoor badminton court with a matte green floor marked by white boundary lines, viewed from a slight angle capturing one player holding a racket mid-action, enclosed by dark green walls and wooden support beams, with partially curtained windows letting in diffuse light from the side. +sun_azsjcpiwazenefla.jpg The badminton court features a grayish-blue floor with clear white and blue markings, viewed from a mid-height angle, surrounded by a gymnasium environment with wooden walls and banners, hosting multiple players engaged in a game with badminton equipment visible. diff --git a/utils/area/descriptions/sun/generated_descriptions/baggage_claim_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/baggage_claim_descriptions.txt new file mode 100644 index 0000000..4c9ce63 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/baggage_claim_descriptions.txt @@ -0,0 +1,10 @@ +sun_aqxrffpudgvvetir.jpg The baggage claim area has a dark, ribbed conveyor belt with scattered luggage in various colors like green and gray, surrounded by a group of people waiting under a ceiling with recessed lighting in a somewhat dimly lit airport environment. +sun_agpwpcsrdqkcnepg.jpg The baggage claim features a curved, dark, matte-textured conveyor belt in the foreground, with a chain-link fence and a worker in a yellow jacket beside luggage carts in the industrial background, under muted lighting. +sun_awwnggbgyzjmmesj.jpg A cluttered baggage claim area filled with an array of variously colored and textured suitcases viewed from a slightly elevated angle, featuring predominantly dark luggage interspersed with a few bright pieces, against the backdrop of airline counters and electronic displays. +sun_advknuuqnuslxbne.jpg The baggage claim is seen from a ground-level angle featuring a polished metal and dark wood carousel surrounded by a glossy, speckled floor with fluorescent lighting reflecting off the surface, set against a backdrop of modern, sleek architectural lines and softly illuminated walls. +sun_ahndhqctugrkzxpa.jpg The baggage claim area features sleek, metallic carousels with a shiny silver finish, situated in a spacious, modern airport terminal with a grey tiled floor and overhead grid-like ceiling, accented by vibrant purple flowers atop the carousels and surrounded by minimalistic pillars and large signboards. +sun_apiadyhzwaerojlu.jpg The baggage claim area features sleek metallic surfaces and a carpeted floor under a warmly lit, high-ceilinged environment with large overhead screens displaying advertisements, blending modern industrial design with digital elements. +sun_aeqtzurhkdhksuha.jpg The baggage claim features a circular conveyor with a metallic silver rim and a textured wooden surface, viewed from a front angle with a beige column in the center, surrounded by green plants and signs against a backdrop of an airport interior. +sun_altcuqgtvipeafki.jpg The baggage claim features a metal carousel with a matte finish, positioned at a three-quarter angle, showing various suitcases in dark blue and red against a backdrop of beige walls with vertical paneling and a large, luminous advertisement. +sun_aceztladfgbbrohg.jpg The baggage claim features a curved, metallic conveyor with a silver sheen and ribbed texture, viewed from an angled perspective in a beige-tiled terminal with a sign marked "E2" overhead. +sun_adzdrkywxmhpguxz.jpg The baggage claim features a smooth, light blue circular conveyor belt with visible black slats set against a wooden-paneled wall and colorful advertisement banners, viewed from a low angle capturing passengers nearby. diff --git a/utils/area/descriptions/sun/generated_descriptions/bakery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bakery_descriptions.txt new file mode 100644 index 0000000..ae6629a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bakery_descriptions.txt @@ -0,0 +1,17 @@ +sun_abjonbyzovhazgcr.jpg The bakery displays a variety of large brown pastries on metal racks over a wooden table, set against a lattice wood wall adorned with artificial flowers, with a refrigerated display case and colorful candy sticks in the foreground. +sun_azjqtqqggocjgirf.jpg The bakery features a warmly lit, curved glass display filled with an array of bread and pastries surrounded by a cozy, light-colored environment with decorative elements such as sunflowers and ceramic dishes on shelves. +sun_afqgfkipktrhgbak.jpg The bakery display features an array of colorful, intricately decorated cakes with smooth and textured surfaces viewed from a slightly elevated angle, set against a marble countertop and glass background with visible labels for each item. +sun_aylptwsfzbydvhrh.jpg Rows of light brown, textured loaves with distinct flour dusting fill wooden shelves in a warmly lit bakery, with strings of decorative lights visible in the softly blurred background. +sun_aixrlmuwerikpjzw.jpg The bakery display shows metal shelving filled with a variety of bread and pastries, set against a white tiled wall with floral patterns, viewed from the front with distinctive different bread shapes and textures. +sun_aoiubeyyxzqvhkoy.jpg In the image, the bakery showcases shelves filled with assorted baked goods including loaves with golden-brown crusts and colorful pastries in an open display surrounded by warm wooden frames, viewed from a side angle with a tiled floor and surrounding patrons enhancing the bustling atmosphere. +sun_asyynixvffgrnqlu.jpg The bakery display features a variety of pastries with shiny, golden-brown textures and powdered tops, set against a glass case backdrop that reflects the warm ambient lighting, with labeled cards providing a quaint, organized appearance. +sun_afrcucsmkcgakdxj.jpg The bakery features warm, inviting tones with a variety of pastries displayed behind a glass counter, flanked by shelves of brightly colored bottles, and is set in a cozy, rustic interior with a wooden ceiling and a welcoming sign overhead, viewed from a slight angle capturing a group of people in white aprons. +sun_akltnutkgunwrsxd.jpg The bakery displays a variety of freshly baked bread and colorful pastries behind a glass counter, with a wooden backdrop filled with neatly stacked loaves, creating a warm and inviting atmosphere. +sun_aoopkrddeylhyrra.jpg The bakery interior features warm beige and yellow tones with an open viewpoint showcasing glass display cases filled with various pastries and breads, and a background of shelved products against a tiled floor. +sun_akzlpafsotikudks.jpg The bakery showcases neatly aligned golden-brown baguettes with a crisp texture on a wooden rack, against a light-colored wall, with a mix of long and rounded loaves behind them. +sun_broxosnqfmcyjwzh.jpg Warm lighting illuminates a cozy bakery with a front-facing view of a glass display filled with assorted pastries, a background of wooden shelving with decorations and products, and tables draped in patterned cloths under soft-hued pendant lights. +sun_avibdzdggivzvrzu.jpg The bakery features a window display with an assortment of vibrant cakes and pastries highlighted by warm interior lighting, a dark textured exterior facade with white lettering, and a worker in a striped apron attending to pastries, all viewed at various angles from both inside and outside the establishment. +sun_aroihzesxymmoren.jpg The bakery showcases a tiled mosaic wall with cream, brown, and blue patterns, where two smiling women, wearing black aprons and headbands, stand behind glass shelves holding various textures of baguettes, with metal racks and bright overhead lighting enhancing the cozy and artisanal ambiance. +sun_asyigpspyrcmqekj.jpg The bakery scene shows metal racks filled with trays of brown and chocolate-glazed pastries in an industrial kitchen environment, with a beige tiled floor and white walls, creating a warm and busy atmosphere. +sun_bkxvouciolcpqplr.jpg The bakery, viewed from the street through a large glass window, features a warm-toned interior with a display case filled with a variety of pastries, women in light uniforms serving behind the counter, and a tiled floor with reflections of people and city buildings in the glass backdrop. +sun_amyfpaqdrttzjvfu.jpg The low-resolution image shows a festive bakery display with a variety of pastries in a warmly lit glass case, decorated with a small, festive Christmas tree on the side, featuring golden and red ornaments, against a backdrop of wooden floors and a slightly visible kitchen area. diff --git a/utils/area/descriptions/sun/generated_descriptions/balcony_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/balcony_descriptions.txt new file mode 100644 index 0000000..07909b3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/balcony_descriptions.txt @@ -0,0 +1,14 @@ +sun_arzmequecbmthsfa.jpg The balcony, seen from the front, features a white balustrade contrasting against a textured yellow wall with a decorative white arch above the door, surrounded by lush greenery and situated beneath rustic terracotta roof tiles. +sun_ajvkngohrnxjbknp.jpg The balcony is a small, off-white stone structure with a series of arches, seen from a ground-level viewpoint against a weathered brick wall, and accompanied by trailing green foliage to the side. +sun_bunqipwxhpkotpkx.jpg The balcony features white walls with ornamental detailing, a wrought iron railing, and a view looking up towards a blue-tinted glass reflecting the sky, set against an ornate façade with leafy surroundings. +sun_bpqjmibgpllcbwed.jpg The balcony features transparent glass railings with a black metal frame, reflecting the urban city skyline visible in the background from a high-angle perspective, while the setting sun casts a warm, golden hue across its surface. +sun_bskppwhjwfdwutpi.jpg A light wood balcony with vertical slats is viewed from below, positioned against a red brick wall, with a roof sloping downward and a clear blue sky above, marked by the sunny glare on its surfaces. +sun_bszwascvbqqsmduv.jpg The balcony features light brown wooden railings with vertical black metal balusters, viewed from below against a cream-colored building and clear blue sky. +sun_aatewqiuajrkbjhz.jpg The light-colored stone balustrade, viewed from the side, features bulbous spindles with a coastal backdrop of blue water and lush, mountainous islands. +sun_biifrfhqcctiqmtq.jpg The balcony features a modern design with frosted glass panels framed by a grid pattern in light gray metal, viewed from a slight upward angle against a plain light gray building facade with a hint of greenery visible on the side. +sun_bqkkdacezesfgmab.jpg A small, black metal balcony with simple vertical railings and decorative swirls at the base extends from a beige brick wall, positioned beneath a sliding glass window partially covered by curtains, with a blue and white sign mounted on the wall below it. +sun_ajpqomllvnzcsazb.jpg The balcony, viewed from the side, is defined by white railings and overlooks a vibrant red-flowered tree contrasted against a backdrop of suburban houses and a distant waterline. +sun_bmlxuqmhxrsfvrst.jpg The balcony is minimalistic and angular in design, featuring a stark white color with a smooth texture, viewed frontally against a modern, beige, and white building exterior, with black metal railings and a transparent glass panel visible near square windows. +sun_bbkxokzuypgosoks.jpg The balcony features a rusty-red tile floor with a smooth texture, white vertical metal railings, three patterned reclining chairs, and a potted plant set against a backdrop of lush greenery and tiled rooftops, viewed from an oblique angle. +sun_bsspkbphhniutgjh.jpg The balcony features an ornate, wrought iron railing against an off-white stone facade, adorned with sculpted figures and floral motifs, viewed from a frontal angle with an elegant arched window in the background. +sun_bxypibkspsgbtuct.jpg The balcony is lush and vibrant with numerous green plants and red cushions on chairs, overlooking a garden and a multi-story building with orange walls and white windows in the background, while a cat rests peacefully on one of the chairs. diff --git a/utils/area/descriptions/sun/generated_descriptions/ball_pit_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ball_pit_descriptions.txt new file mode 100644 index 0000000..469f232 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ball_pit_descriptions.txt @@ -0,0 +1,10 @@ +sun_aaeasyzzvkyhilyw.jpg The ball pit consists of a dense scattering of black, silver, and pink balls in a dimly lit indoor environment, with people standing and walking through them at a slightly angled, eye-level perspective. +sun_ahvuscrvcxyxmeml.jpg The ball pit is filled with a multitude of vibrant green, glossy balls with a smooth texture, viewed from a slightly elevated angle, set in an outdoor environment with children playfully immersed and partially obscured among the balls. +sun_asavdyobqwnjhvyr.jpg A young child is sitting amidst a vibrant mix of blue, red, green, pink, and orange plastic balls in a mesh-enclosed, green-padded ball pit against a backdrop of blue and orange netting. +sun_amnkttaerjveakes.jpg The ball pit features a mix of vibrant yellow, blue, and red inflatable structures with a transparent section, containing multi-colored balls in purple, yellow, red, and blue, and is situated indoors with a carpeted floor and a background of household items, viewed from a low angle with a child and an adult in proximity. +sun_ajbmkbmuusrydsfc.jpg The ball pit is filled with an array of vibrant red, yellow, green, and blue balls scattered across the floor, viewed from a front angle with colorful slides in the background and a playful mural depicting a whimsical landscape. +sun_adzxwyewfzmtkxgw.jpg The ball pit is filled with an assortment of densely packed, glossy red, yellow, blue, and green balls, viewed from a slightly elevated angle, situated in an indoor play area surrounded by a green netted barrier with a child partially submerged and smiling in the center. +sun_aycohtvjvvktvyak.jpg The ball pit is filled with a dense array of colorful, smooth plastic balls in shades of red, yellow, blue, green, and orange, viewed from an elevated angle, surrounded by wooden boundaries, with a red slide on one side and a netted area overhead. +sun_apkitexskbjvtlpg.jpg The ball pit has a box-like structure with green sides and a bright red rim, filled with multi-colored balls (red, blue, yellow, green) and features a yellow interior back panel, set against a carpeted floor in an indoor environment. +sun_apkrapshhnwpggrd.jpg The ball pit contains a vibrant mix of red, blue, green, yellow, and orange plastic balls with a smooth texture, viewed from a slightly elevated angle, set against a soft turquoise enclosure, with a child at the center adding human interaction to the playful environment. +sun_afyksyxmxcrgvlqw.jpg The image shows an inflatable ball pit with a green canopy resembling leaves, containing multicolored balls with a visible wooden-like trunk pattern on the sides, set on a wood-toned floor with various toys in the blurred background. diff --git a/utils/area/descriptions/sun/generated_descriptions/ballroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ballroom_descriptions.txt new file mode 100644 index 0000000..c3db838 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ballroom_descriptions.txt @@ -0,0 +1,15 @@ +sun_aszsvdtmokjooabn.jpg The ballroom features a richly detailed, teal-patterned floor, warm wooden walls and columns, a high ceiling with intricate molding and a soft blue hue, all viewed from an elevated corner perspective with bright lighting accentuating the ornate architectural details. +sun_abpwcweehdkefavz.jpg The ballroom features a richly patterned blue and gold carpet, illuminated by dim, purple-tinted ambient lighting with chandeliers, decorated with draped gold fabrics and elegantly set tables, viewed from an elevated perspective showcasing a lively, festive atmosphere. +sun_azdmvlaklwaltfvd.jpg The ballroom has a large, parquet floor with a group of dancers dressed in elegant attire, including a prominent figure in a vibrant blue dress and another in a sleek black outfit, surrounded by a spacious room with high, dark ceilings and geometric wall decorations, viewed from an angle showcasing the expansive dance area. +sun_abxwnxggocskkzbd.jpg The ballroom features a light gray-walled environment with large windows, a wooden floor, and scattered folding chairs, while people in casual attire engage in dance practice, with some wearing patterned tops, seen from a slight elevated angle. +sun_agdkfsmyoqznahnk.jpg The ballroom features an opulent, golden-hued interior with intricate carvings and ornate chandeliers, viewed from a ground-level perspective with a grand stage backdrop, while blurred figures suggest dynamic dancing activity. +sun_bymcoqruveocvity.jpg The ballroom features a wooden floor reflecting subtle lights from above, with the viewpoint showcasing elegantly set tables adorned with red and white decorations, all under a ceiling that mimics a starry night sky with numerous small, warm lights. +sun_bfbaefjxeoqkdwts.jpg The ballroom features a vibrant and colorful atmosphere with purple and blue lighting that creates a shimmering effect on the grand, ornate ceiling, viewed from an elevated angle, showcasing an elegant central dance floor surrounded by candlelit tables decorated with lush floral arrangements, all set within an expansive hall adorned with arched windows and intricate moldings. +sun_aqywjesucujoeegp.jpg The ballroom features a richly textured brown wooden interior with a red velvet curtained stage, circular and rectangular windows near the ceiling, elegant light fixtures, and round tables with red-patterned tablecloths, viewed from a central perspective. +sun_aziebzehaxqhxums.jpg The ballroom features light wood flooring with a smooth texture, viewed from an elevated angle showing a spacious dance area with mirrored walls and ceiling lights, while tables and chairs are stacked in the background, and a couple dances in the center. +sun_akobcskhcblbppjh.jpg The ballroom features a polished wooden floor with people in formal attire dancing under string lights, surrounded by red and white draped cloth, and a stage in the background with a band performing. +sun_aifeafaphsqyestb.jpg The ballroom features an opulent, gilded decor with ornate golden balconies, intricate ceiling details, and warm lighting, as viewed from a central, expansive hardwood floor surrounded by red-cushioned chairs and dramatic stage curtains. +sun_akpaaaajndugdzeh.jpg The ballroom features a large open space with light wooden flooring, warm brown walls adorned with framed pictures, and reflective wall mirrors that create an illusion of depth, viewed from an angle that highlights the spacious floor and ceiling with hanging golden streamers. +sun_admfsgiiywubfrqv.jpg The ballroom features a polished wooden floor with several couples dancing, set against a mirrored wall reflecting the participants dressed in casual and colorful attire, primarily viewed from the front in a lively, spacious, and informal setting. +sun_axddrqgaqzvulufw.jpg The ballroom features a blue and white color scheme with a peaked roof and exposed beams, decorated with round, glowing paper lanterns hanging from the ceiling, reflected in the polished wooden floor, and surrounded by white chairs arranged around tables adorned with floral centerpieces, with wide-open white-framed doors providing an inviting entryway. +sun_afsroeazaidaoltr.jpg The ballroom features a warm, dimly lit environment with a glossy wooden floor reflecting the soft yellow glow of ceiling lights, viewed from the entrance towards the deep stage flanked by light-colored walls and scattered wall sconces. diff --git a/utils/area/descriptions/sun/generated_descriptions/bamboo_forest_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bamboo_forest_descriptions.txt new file mode 100644 index 0000000..920bbac --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bamboo_forest_descriptions.txt @@ -0,0 +1,10 @@ +sun_aqylwmoboptpcuts.jpg The photo shows a lush bamboo forest with vibrant green, smooth-textured stalks and leaves arching overhead, creating a natural canopy, with visible rocks and a dirt path in the serene, sun-dappled background. +sun_abyslesqmfvkscyo.jpg Tall, dense bamboo stalks with vibrant green hues and smooth textures rise vertically in a tropical environment, surrounded by dappled sunlight filtering through the leaves, with a sign at the base. +sun_asywfkspmpaelmbu.jpg The bamboo forest features tall, slender stalks with a golden-green hue and smooth texture, set against a slightly shadowed backdrop of dense foliage, while the foreground displays a small stone waterfall surrounded by lush ferns and moss-covered rocks. +sun_acjduqzweostyisd.jpg The bamboo forest is characterized by tall, slender green trunks with an abundance of leafy green foliage, viewed from an eye-level perspective, set against a densely packed background of vertical and leaning bamboo stalks interspersed with patches of sunlight filtering through the canopy. +sun_agonaewcxqzglctb.jpg The bamboo forest features tall, slender bamboo stalks in shades of light green with a smooth texture, captured from a ground-up perspective against a sunlit, verdant canopy background, creating a vertical tunnel-like effect. +sun_arvplvvjcfmsrmnp.jpg Tall, slender green bamboo stalks with smooth surfaces rise vertically amidst a dense cluster, seen from a low angle against a background of shimmering green foliage and dappled sunlight. +sun_aupvrblgospyseje.jpg Slender, vertically upright bamboo stalks display a gradient of deep green to olive with distinct horizontal nodes, set against a densely packed forest environment and a stone lantern foreground, under diffused canopy light. +sun_atcmmwqvaguvzvrg.jpg The image shows a dense cluster of tall, green bamboo stalks with a smooth, segmented texture and a gradual gradient to lighter green near the joints, set against a backdrop of fallen, dried bamboo leaves and darker shaded bamboo in the background. +sun_atvagbkdykfzyogo.jpg Tall, vertical green bamboo stalks rise amidst a dense undergrowth of broad, glossy leaves, with filtered sunlight casting dappled shadows throughout the serene forest setting. +sun_awdvtwlzbuxstjcp.jpg Tall, slender bamboo stalks in various shades of green rise vertically against a dense lush background, with a textured earthen path and wooden railings accentuating the serene forest atmosphere. diff --git a/utils/area/descriptions/sun/generated_descriptions/banquet_hall_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/banquet_hall_descriptions.txt new file mode 100644 index 0000000..442eb89 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/banquet_hall_descriptions.txt @@ -0,0 +1,10 @@ +sun_braitnailonroszx.jpg The banquet hall features elegantly set tables with crisp white tablecloths and neatly folded napkins, surrounded by brown wooden chairs, and the warm ambient lighting casts a cozy glow, enhancing the intimate atmosphere with rows of similar tables in the background. +sun_btayoxxtelqmmrac.jpg Warm-toned wood paneling and elegant chandeliers illuminate the room, with round tables dressed in crisp white linens set against a patterned carpet, viewed from a mid-room perspective where a suited waiter attends a setting amidst a backdrop of large bright windows and paneled walls. +sun_awtgidfxyibkkkor.jpg The banquet hall features warm lighting and polished wood accents with a close-up view of guests seated around circular tables covered with white tablecloths, surrounded by a backdrop of framed artwork and paneled walls. +sun_bxzwxmgjeinupbrb.jpg The banquet hall, viewed from an elevated angle, features numerous round tables with white tablecloths and chairs, set against a warmly lit background with an elegant stage and large projection screens, creating a luxurious and spacious atmosphere. +sun_butboikefmgeyrtm.jpg The banquet hall features elegantly dressed tables with white tablecloths and blue-bowed chair covers, viewed from a slightly elevated angle, surrounded by large windows and monochromatic wallpaper, with chandeliers hanging from a high, light-patterned ceiling. +sun_babjtppsnozdurdt.jpg Rows of white-draped tables accompanied by white chairs fill the banquet hall, illuminated by soft natural light filtering through sheer curtains, with colorful floral centerpieces adding contrast amidst the orderly arrangement. +sun_brobgqewlypqwxov.jpg The banquet hall features warm wooden tones and cream-colored walls, viewed straight on with neatly arranged tables covered in white cloths and a patterned carpet, while modern pendant lights hang from the ceiling and abstract artwork decorates the back wall. +sun_bfllfcpptunjixri.jpg The banquet hall features elegantly arranged round tables with white tablecloths and red cushioned chairs under grand chandeliers, set against a warmly lit room with cream-colored curtains and soft, decorative wall panels. +sun_aferuvanaztjlrbz.jpg Softly illuminated by spherical paper lanterns, the ballroom features white-clothed, bow-adorned tables and chairs, with a warm carpeted floor, seen from a slightly elevated angle, and large windows enhancing the ambient light. +sun_bojujnhzonblebek.jpg The banquet hall features tables with white chairs and light blue tablecloths, positioned near large windows overlooking a waterfront scene with docks and boats, creating an elegant and scenic atmosphere. diff --git a/utils/area/descriptions/sun/generated_descriptions/bar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bar_descriptions.txt new file mode 100644 index 0000000..7ba592e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bar_descriptions.txt @@ -0,0 +1,14 @@ +sun_agfhycwkqiatbwfs.jpg The bar is characterized by a rustic wooden texture with a warm brown hue, visible from a side angle with a backdrop of dim lighting and bottles, surrounded by several individuals in casual attire engaging in conversation. +sun_ascnfgzhjrfctqps.jpg The bar has a rich wooden texture with a warm reddish-brown hue, positioned in the foreground of a chic restaurant interior adorned with red walls and framed artwork, while aligned wooden chairs and wall-mounted pendant lights create a sophisticated and ambient dining atmosphere. +sun_acmusnizblebofti.jpg Amidst a warm, rustic setting with exposed brick arches, a colorful array of bottle tops and open wine bottles adorns the bar's surface, where two men and an infant are gathered. +sun_ahmobjmqpgpvncsu.jpg The bar features a dark wood finish with a smooth texture, as viewed from the front, backed by a variety of illuminated glass shelves and mirrors reflecting bottles and glasses, with red bar stools and a floral arrangement decorating the area. +sun_aztupfbhjajooxgh.jpg The bar is curved with a warm brown wooden surface and red cushioned stools, situated in a busy, warmly lit environment featuring people gathered around and a central display of fruits and pastries. +sun_aaooplqkehabhmeh.jpg A dimly lit bar with wooden shelving and white tiled walls, showing a bartender in the foreground carrying a tray with glasses, while other staff members are present and shelves are lined with additional glassware and bar equipment. +sun_arexaxhpbdqzsxmk.jpg The bar is a smooth, glossy wooden surface with a rich brown color, viewed from waist height amidst a softly-lit, intimate setting with red and green accents. +sun_asyrjbxiwcrbpwae.jpg The bar features a curved wooden facade with a glossy finish, complemented by a dark marble countertop, set within a cozy and traditional interior with soft lighting, patterned seating, and decorative artwork on the walls. +sun_azgodphrixbgcjsu.jpg A wooden bar with a rich dark brown finish and a polished black leather edge is situated along a rectangular shape with a mirrored back displaying an array of colorful bottles, set against a backdrop of soft lighting and high stools, seen from a slightly elevated corner angle. +sun_admxodcafdxoxvmf.jpg A cozy, dimly lit bar with dark wooden paneling is densely stocked with various liquor bottles behind a counter, featuring a prominent green Heineken beer tap and an assortment of snacks and colorful posters on the side. +sun_avclougqzurbcxge.jpg The bar features wooden tables and chairs with a reddish-brown hue and a glossy texture, viewed from an angle showing a row of tables against a dark-paneled wall, with a softly lit environment and framed pictures in the background. +sun_agaxuyvrobrkxhwd.jpg The bar features warm amber lighting reflecting off polished dark wood surfaces, with neatly arranged chairs and tables on a patterned carpet, set in a softly illuminated, cozy indoor environment with a quiet, inviting atmosphere. +sun_atauypmepehojhec.jpg The scene depicts a dimly lit bar environment with a smiling person in the foreground holding a blue cocktail shaker, surrounded by a variety of liquor bottles and glassware on shelves, textures of metallic corrugated panels to the left, and a soft reflective glow. +sun_ayvzgabpecpuiwun.jpg The wooden bar features a rich, dark brown color with a polished texture, viewed from an angle that highlights hanging glassware and bar stools with patterned seats, set within a cozy, dimly-lit pub environment with patterned wallpaper and shelves lined with bottles. diff --git a/utils/area/descriptions/sun/generated_descriptions/barn_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/barn_descriptions.txt new file mode 100644 index 0000000..e44341b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/barn_descriptions.txt @@ -0,0 +1,14 @@ +sun_abjmewmivgfelnxq.jpg A red barn with white trim and a gray roof is viewed from an elevated angle, featuring a wooden deck on one side, set against a backdrop of lush green trees and grass, with a parked blue vehicle nearby. +sun_agdllchaeokpxyxh.jpg The barn features a distinctive green roof with multiple vented cupolas, white walls with red accents around the doors and window frames, viewed from a slightly lower angle showcasing its elongated, asymmetrical shape, set against a clear blue sky with dry grass in the foreground. +sun_asvehawziygnksyu.jpg The barn is weathered gray with a corrugated texture, seen from a side angle, set in a grassy field with a stark, leafless tree in the foreground and a few evergreen trees in the background. +sun_apbldekibpvfswah.jpg The image shows a red barn with a white gambrel roof, viewed from a front-side angle, featuring smooth metal siding and a large open entryway, set against a grassy landscape with neighboring structures. +sun_ayhyzjwfntdmvcmt.jpg The barn features weathered wooden planks with a silver rusted metal roof, viewed from a side angle amidst lush green trees, with open sections revealing farm equipment inside and a distinct red and white metal gate at the front. +sun_abrmvxpwdqbxvcdw.jpg The structure is a small red wooden building with vertical siding, featuring a sloped roof and white trim around a green door and window, situated on a slight incline with a dirt path in front and surrounded by lush greenery and trees. +sun_alpwjfgdvuaeeatf.jpg The barn is a dark brown, weathered wooden structure with a steep pitched roof viewed from a slight angle, set against a lush green forested background, and features arched openings at the base with old wooden carts stored underneath. +sun_aetahtsbkzopzsdk.jpg The barn is a weathered, brown wooden structure with a pointed gable roof, viewed from the side, surrounded by green grass and sparse trees, with a smaller, attached shed on the right and one visible window on the upper section. +sun_awusmryleqqtvftd.jpg The barn is a deep red color with smooth corrugated metal siding, featuring a wide front-facing entrance and a gabled roof with a smaller side extension, set against a backdrop of tall, scattered trees under a clear sky. +sun_atirmzebzwclruji.jpg The barn is a rustic red wooden structure with vertical planks, viewed from a front angle beneath a clear sky, featuring a rounded roof with a white trim and a mix of large and small windows at the upper and lower levels, flanked by lush green grass and trees. +sun_aedfbkkgfwdiygbm.jpg The barn is an aged, rusty-red structure with a corrugated metal roof, partially covered by patches of rust and wear, viewed from a side angle amidst a grassy field with two horses grazing in the foreground and a tree-dotted hillside in the background. +sun_alkdnghrovpebzqc.jpg The barn appears to be a textured gray stone structure set in a pastoral landscape, viewed from a side angle, with a slightly overgrown exterior and a backdrop of rolling green hills and scattered trees. +sun_afvtbpunzjwqxsmc.jpg The barn is a large, red structure with a smoothly arched roof covered in dark shingles, viewed from a slight side angle against a clear blue sky, featuring a series of small rectangular windows along its length and a distinct small upper loft area. +sun_ajdmbmmvlknxtnbf.jpg A small, rectangular, stone barn with a weathered, gray texture stands in the foreground of a lush, green pasture, viewed from a side angle, backed by gently sloping hills and sparse trees under a partly cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/barndoor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/barndoor_descriptions.txt new file mode 100644 index 0000000..944118c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/barndoor_descriptions.txt @@ -0,0 +1,12 @@ +sun_aqnnbebudkoepbxq.jpg A weathered wooden barndoor with a grayish-brown color and peeling texture is shown from the front, set within a rustic stone archway surrounded by an uneven grassy ground. +sun_aaoambggxfqxoibv.jpg The barndoor is a weathered teal color with a wooden texture, viewed directly from the front, surrounded by a rustic stone wall, featuring a sturdy metal latch and visible wood grain patterns. +sun_arwwgugntuhriuwr.jpg The barndoor is a light wooden color with a vertically planked texture, seen from a straight-on angle, slightly open to the right, situated in a rural environment with a gravel foreground and fields in the background, flanked by a blue vehicle on the left. +sun_adfcruirfxncrnld.jpg The barndoor is a light brown wooden structure with a horizontal slat texture, featuring a central oval decorative element and metal handle, set within a stone archway on a rustic stone wall background. +sun_asepwywwpvzykowi.jpg The weathered wooden barndoor, viewed from the front, features a grayish-brown texture with visible grain patterns and rusty iron hinges, set against a rustic backdrop with patches of concrete and surrounding greenery. +sun_aguyooavzkcdvqop.jpg The barndoor is weathered with red peeling paint, set diagonally on its wooden panels, viewed from a front-left angle against a rustic stone building backdrop with a visible grassy foreground. +sun_aceabwzexewiqbrg.jpg A frontal view shows a light brown wooden barndoor with vertical planks and black metal hinges, featuring distinctive diagonal cross-bracing, set within a rustic building with a stucco wall and overhanging roof against a simple outdoor background. +sun_afkzhwaatxbdwyje.jpg The barndoor is a solid green, vertical wooden plank structure with central hinges, set against a half-timbered building with a white framed glass window above, surrounded by leafy foliage and potted plants on a red brick surface. +sun_awhrchugbsodgnkb.jpg The barndoor is an aged, textured wooden structure with a weathered gray-brown color, viewed from the front, set in a stone archway with two small blue marks on its surface and a rough concrete ground beneath. +sun_aowuhwvpxbmeldhk.jpg The barndoor is weathered, vertical wooden planks with a grayish-brown hue and a hint of green moss at the bottom, centered on a worn brick wall with patches of crumbling mortar and surrounded by overgrown grass, viewed from directly in front. +sun_ajdqbjvvjfmusnne.jpg The image depicts a section of a rustic wall with a partially blocked rectangular opening, where a grey concrete block fill contrasts against the textured and weathered tan surface with scattered small holes, and the viewpoint is front-facing, set in an outdoors setting with sunlight streaming from the top left. +sun_ajojppfhhlxkaser.jpg The barndoor appears as a vertically paneled, faded wooden structure with visible grain texture, situated in the center of a brick building under a sunny sky, with surrounding greenery and an adjacent tiled-roof structure on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions/baseball_field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/baseball_field_descriptions.txt new file mode 100644 index 0000000..00fe936 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/baseball_field_descriptions.txt @@ -0,0 +1,10 @@ +sun_afbqfnerfxwtiwot.jpg The baseball field features a mix of lush green and dry brown grass textures under bright sunlight, viewed from a slightly elevated angle with a backdrop of dense green trees and a chain-link fence. +sun_amovpnfhcwgnxaxk.jpg From a wide view, the baseball field showcases a lush green grassy texture in the foreground, with a slightly curved dirt infield and net-covered backstop, flanked by metal bleachers and surrounded by tall trees and residential houses in the background. +sun_alwrfglpkhxpenia.jpg The baseball field features a light brown, sandy infield and is surrounded by lush green grass, with a wire fence backstop on the left and a tree-lined background under an overcast sky. +sun_aucsnrpinlnxgmvm.jpg The baseball field features a clear aerial view with light brown, textured infield dirt sharply contrasting the lush, green grass of the outfield, bordered by a backdrop of trees and advertisements on the surrounding fence, and players are positioned around the field. +sun_aoumgforqudqfymc.jpg The baseball field is viewed from an elevated position behind home plate, showcasing a lush, green outfield with intricately patterned mowing lines, a well-defined dirt infield with contrasting light brown baselines, and a cityscape and trees in the background. +sun_avaybpjlrfqswhgf.jpg A lush green field with scattered yellow flowers forms the foreground of the image, where a player in a dark blue and white baseball uniform stands with a glove, set against a backdrop of dense, leafy green trees. +sun_atuyofwsiihutusn.jpg The baseball field is viewed from above and shows a large white tarp covering the infield, with green grass partially visible around it and a backdrop of foggy hills and light towers in the distance. +sun_ahzkzftqrsmedplq.jpg The baseball field features a well-maintained lush green grass with a subtle striped mowing pattern, viewed from home plate towards the pitcher's mound, set against a backdrop of distant trees and an overcast sky, with clearly marked bases and baseline. +sun_amnhcdxjzjzqxnzd.jpg The baseball field features a green grass outfield and a tan dirt infield with surrounding netting, viewed from an elevated angle against a backdrop of tall, ornate brick buildings and a cloudy sky. +sun_aaihwgkqncxqmiqr.jpg The baseball field, viewed from ground level, features a vast expanse of green grass with distant stands, sparse trees, and a characteristic chain-link fence against a clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/basement_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/basement_descriptions.txt new file mode 100644 index 0000000..8e608a2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/basement_descriptions.txt @@ -0,0 +1,14 @@ +sun_abepytfbwzaursez.jpg The basement features a predominantly gray concrete floor with patches of exposed aggregate, scattered debris, and rusty pipes, viewed from an angle that reveals a dimly lit and unfinished space with wooden beams and insulation visible in the background. +sun_avzoanrcqyudcsbe.jpg The basement features a beige color scheme with a smooth ceiling and walls, viewed from an angled perspective showing a bar area with wooden stools, a decorative "GAMEROOM" sign, pendant lighting, and a couch with floral patterns against a pale backdrop. +sun_arfvubkoyubolpku.jpg The basement is characterized by white walls and a black-and-white checkered floor, viewed from a corner showing wooden stairs partially obscured by a doorframe, a telephone mounted on the wall, and a pair of wooden bifold doors against a plain background. +sun_akgermdcffffnixv.jpg The basement features exposed, irregularly textured brick walls with a weathered appearance in shades of red and beige, viewed from a corner perspective that includes a small arched window and cluttered items like a brown armchair and makeshift table in a minimally furnished, dusty environment. +sun_afrdzoefhhyyqdop.jpg A sparsely furnished basement with unpainted concrete walls and floor, exposed wooden beams and pipes on the ceiling, centered red metal support column, and assorted items scattered, including a treadmill against the back wall, viewed from a low angle that captures the length of the room. +sun_ahxagcoygtgljpie.jpg The basement features unfinished wooden beams and supports with exposed insulation and concrete walls, scattered construction materials on the floor, visible wiring, and an open doorway leading to another section, all illuminated by natural light from a small, distant window. +sun_anshvhjphxqatnyx.jpg The basement features an industrial appearance with unfinished concrete textures, exposed pipes on the ceiling, a mixture of beige and gray colors, scattered metal and wooden objects, and a prominent red door visible in a distant, softly lit hallway. +sun_azxtaayippbfdwho.jpg The image shows a basement with light-colored walls and a textured carpeted floor, featuring small rectangular windows along the top of the wall, a distinctive support beam in the center, and partially-visible exposed ductwork above. +sun_anoawvwrfdihqpgw.jpg The basement features cinder block walls in beige and light green, with a stack of blue panels leaning against one wall and a set of metal frames nearby on a bare concrete floor, viewed from a low angle revealing exposed ceiling beams and wires above. +sun_arjpndcrmrodldiq.jpg The basement has a rustic appearance with exposed brick walls, a concrete floor, metallic ductwork visible above, and a narrow window allowing light to stream in, creating an industrial and unfinished look. +sun_apqqaoxvnhplfvsk.jpg The basement features dark green textured recliners arranged towards a large television, with a brick fireplace on the right and a pool table in the foreground, amidst a neutral carpeted floor and cream walls. +sun_atryfdeeejmpvjqy.jpg The low-resolution image depicts an unfinished basement with exposed wooden framing and a concrete floor, featuring clear plastic sheeting on the walls illuminated by natural light from a small window, all viewed from a corner angle. +sun_ablgxmlqsejzolxh.jpg The basement features a warm-toned, wooden bar with matching chairs, set against olive and mustard-colored walls, with a guitar and framed art on display, leading to carpeted stairs. +sun_aqxsmnqfuhrayjef.jpg A dimly lit basement scene features a person in utility attire and boots standing in reflective floodwater, surrounded by exposed wooden stairs, a mix of cardboard boxes, scattered equipment, and concrete walls illuminated by ambient lighting. diff --git a/utils/area/descriptions/sun/generated_descriptions/basilica_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/basilica_descriptions.txt new file mode 100644 index 0000000..8f3c2c4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/basilica_descriptions.txt @@ -0,0 +1,15 @@ +sun_blsbpqjmkatjrdcb.jpg The basilica, illuminated in a golden hue, features a prominent central dome flanked by smaller domes, is viewed from a distance with the cityscape of Paris and other architectural structures in the background, presenting a striking contrast against the twilight sky. +sun_bjbgybombccjqqsz.jpg The basilica features a dominant façade of textured, dark brown stone with intricate carvings and adorned with gold-capped domes, viewed from the front with multiple tiers and columns, set against a mostly gray sky and open plaza, enhancing its imposing architecture. +sun_bowdcefpvbfnozzg.jpg The basilica features twin spires and a rose window with a sandy beige texture against a clear blue sky, viewed from the front with a spacious plaza in the foreground and flanked by streetlights. +sun_byxpqgmivjhpfvbc.jpg The basilica features a pale yellow color with a textured surface, viewed from a slightly elevated front-facing angle, set against a backdrop of a townscape with greenery, and is distinguished by its central dome, twin towers with green domes, and prominent classical columns at the entrance. +sun_bmmqjlktystudwsz.jpg The basilica, viewed from a frontal angle, features a grand dome with a cross atop, characterized by warm orange and earthy tones, intricate architectural details, and statues lining the roof, set against a clear blue sky with surrounding historic buildings. +sun_bnzkvcighfnqzeyy.jpg The basilica appears brilliant white with a smooth texture, viewed from a low vantage point emphasizing its pointed spires against a clear blue sky, featuring large arched stained-glass windows and surrounded by an urban setting with minimal vegetation. +sun_bxuvlrvvacwbaebs.jpg The basilica features a grand white and beige facade with a prominent domed roof, viewed from a frontal angle across a stone bridge, framed by lush green trees and a clear blue sky. +sun_bfeucjyvnqcshkbg.jpg The basilica features a grand central dome with a light gray hue adorned with intricate detailing, viewed from a frontal ground perspective under a clear blue sky, surrounded by imposing columns and an obelisk on the left, with a bustling crowd in the foreground. +sun_biaymzoqhwcskhet.jpg The basilica features a combination of light stone and dark slate roofing, viewed from a slightly elevated angle showcasing its prominent towers and rounded apses, set against a clear blue sky with a sparse urban foreground and minimal vegetation. +sun_bljlcmlslrnbmyrw.jpg The basilica features a gray stone facade with intricate carvings, flanked by two symmetrical towers, viewed from the front at street level, set against an overcast sky and autumnal trees. +sun_bovjnnwvbfldlyhc.jpg The basilica features a symmetrical façade with alternating patterns of white and dark marble, visible arches, and a central tower, set against a clear blue sky with minimal clouds and surrounded by a stone fence and lush green foliage. +sun_bjvtogdbhkozhzpm.jpg The basilica features a gray stone facade with ornate carvings and twin towers topped with spire-like structures, viewed from the front with a slightly upward angle, set against an urban environment with surrounding buildings and parked cars. +sun_bjzouurcdlugixmf.jpg The basilica features a dark domed roof with white detailing, viewed from a slight angle against a dramatic cloudy sky, and has distinctive red brick walls with white accents and arched windows. +sun_bndjwdffgovogfpn.jpg A grand basilica with a richly textured façade in gray and beige hues, featuring an ornate central entrance flanked by columns and topped with statues, is viewed from a low angle against a backdrop of a partly cloudy sky, with a distinct clock tower rising prominently in the middle. +sun_bvvmdrcbrnxlujkx.jpg The basilica features a richly detailed facade with cream-colored stone and mosaic art beneath five large arched entrances, set against a bright blue sky, with a bustling square filled with people and market stalls in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/basketball_court_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/basketball_court_descriptions.txt new file mode 100644 index 0000000..d7d85f6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/basketball_court_descriptions.txt @@ -0,0 +1,10 @@ +sun_aaxbgykvqmwapvph.jpg The basketball court features a smooth light gray surface with a black-framed hoop and transparent backboard in the foreground, situated in a residential backyard with a two-story house and stone chimney in the background, while several people are engaged in a game beneath a clear blue sky. +sun_ahdbdaepytzllzod.jpg The outdoor basketball court features a faded concrete surface with yellow boundary lines, surrounded by lush green vegetation and trees, viewed from an elevated position behind one net, with a visible basketball hoop and rustic metal backboard at the far end. +sun_aivspexbeapovnrb.jpg The basketball court features a weathered, faded blue backboard with a rusted hoop, seen from a side angle with a reflection on a large puddle on the cracked concrete surface, surrounded by a chain-link fence and distant, blurry trees and mountains under a cloudy sky. +sun_aphqlkcqmmkplrbr.jpg The basketball court features a blue playing surface with white and yellow lines, surrounded by green netting, situated on a rooftop with a large golf ball-like structure and a distant skyline in the background. +sun_ajpzarvmkiatgqge.jpg The basketball court features a green surface with white line markings, viewed from an angled perspective showing a tropical environment with lush palm trees and a thatched-roof structure in the background, while a rust-colored backboard pole and a netless hoop contribute to its distinguishing characteristics. +sun_akucgyejzvbtoqav.jpg The basketball court is a bright blue surface with white lines, situated on a ship's deck under a netted enclosure with partial views of the sea and distant cityscape framed by a clear sky. +sun_aesrvufbqtrspmdz.jpg A green basketball court with red and blue markings is viewed from a slightly elevated angle, surrounded by trees and playground equipment in a park setting. +sun_amkanalhuqzowpnh.jpg The basketball court is viewed from a slightly elevated angle, featuring a smooth, light-colored surface surrounded by tall chain-link fencing amidst a wooded area, with trees and foliage providing a natural backdrop, while basketballs are stored in a metal rack in the foreground. +sun_azhycevewbnvfycf.jpg The basketball court features a worn grayish-green surface with faded white lines, viewed from an angular side position, surrounded by lush green trees in the background, and has one visible rusty hoop with a backboard. +sun_ajpzasnayjxorpxh.jpg The basketball court features a vibrant blue and red modular surface with a black center area, viewed from a side angle, set in a lush green garden with trees and a small playground in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/bathroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bathroom_descriptions.txt new file mode 100644 index 0000000..6d5c56f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bathroom_descriptions.txt @@ -0,0 +1,18 @@ +sun_aboxhvgkojcuttxb.jpg The bathroom features light-colored walls and vanity with a subtle patterned countertop, viewed from the doorway showing a mirrored cabinet, a pale sink, and a small window with a towel rack beneath. +sun_axtowvqybawxetvt.jpg A warm-toned bathroom with wooden cabinetry and door, featuring a granite countertop, a large mirror framed in matching wood, and soft lighting from multiple overhead fixtures, complemented by a rustic, earthy atmosphere. +sun_afzzlindiuzytcbe.jpg The bathroom features a muted palette with off-white tiled walls and a white countertop, reflected in a large mirror illuminated by a row of exposed bulb lighting, a shower with a patterned curtain of translucent blue circles, and a compact layout with toiletries neatly arranged. +sun_afergaboqluzhrqe.jpg The bathroom features beige walls and a light marble-textured countertop with a white basin, seen from a side angle showing a large black-framed mirror, chrome faucet, small decor item, and an angular view of the neighboring toilet against a neutral background. +sun_akmhkayuemtkmupl.jpg The bathroom features a black-and-white checkerboard floor, a white freestanding tub with metallic fixtures, light blue towel accents, and a dark cabinet against the wall, viewed diagonally from an angle highlighting both the bathtub and the vanity area. +sun_ahijqszoswveeyji.jpg The bathroom features a green and white color palette with a marble texture on the tiled surfaces, viewed from an elevated corner perspective, showcasing a bathtub, vanity with a mirror, and a small window, all highlighted by ambient lighting. +sun_alpmlqmasbueqthv.jpg The bathroom features a pastel-colored floral shower curtain with a green-tiled wall backdrop, viewed from the doorway, showcasing a white vanity with a mirror and a hint of a toilet seat below. +sun_adjtzjtekvpcjarg.jpg The bathroom features a light wood vanity with granite countertops, adorned with decorative items, set against a large mirror reflecting a small recessed ceiling light, two framed pictures on a cream wall, and textured hand towels on metallic rings near a white toilet. +sun_aefytdxhmjdqphtu.jpg The bathroom, viewed from the doorway, features white tiled walls with a circular glass shower enclosure, a white toilet beside a towel rack holding grey towels, and a small corner shelf with toiletries near a white countertop. +sun_apcodcuebukpuatw.jpg The bathroom features textured pebble-patterned walls in various shades of grey and blue, with a viewpoint showcasing the toilet and a small raised window, contrasted by a tiled floor and accented with hanging towels. +sun_ajcbalthjpmuyygk.jpg The bathroom features a smooth, light-colored countertop with an off-white sink and shiny chrome faucet, viewed from a front-side angle, set against a beige wall with a large mirror and includes neatly arranged toiletries and a toothbrush holder to the left. +sun_ahaulkltgpkeeemi.jpg The bathroom features light beige curtains filtering sunlight through a large window, illuminating white tiled walls and a compact arrangement consisting of a washing machine, a white sink with a mirror above, and wooden shelves holding towels, all situated on a dark tiled floor. +sun_avdncwmkqjpvjfhs.jpg The bathroom features a white and gray marble countertop with twin sinks, reflective chrome fixtures, a circular mirror mounted on the tiled wall, and natural light streaming through a window partially covered by sheer curtains, all set against a backdrop of white tiles with blue accents. +sun_ashuryqswqjvgmtd.jpg The bathroom features light beige tiled walls and flooring with wooden accents, viewed from the doorway showing a white towel radiator, a window with shutters, and a glass shower enclosure on the right. +sun_apuxwtwzivorffnr.jpg The bathroom features a soft green color scheme with paneled walls, a white corner bathtub with a glass shower partition, and a small sink area beneath a slanted ceiling, framed by a bright window with a translucent curtain. +sun_apfmyjfgtjmwzvfb.jpg The bathroom features maroon wallpaper with small white patterns, a brass wall-mounted mirror and light fixtures, a white tiled countertop with a round sink and brass faucet, and a soft yellowish light illuminating the space. +sun_akdxkwnlffyvmvwp.jpg The bathroom features a sleek, modern design with smooth white fixtures contrasted against a textured dark wall panel, viewed from a frontal angle with a reflective glass shower and subtle greenery as distinct accents. +sun_arzvplncihxrkwnw.jpg The bathroom features a beige and olive color scheme with wooden cabinetry, a white countertop, a patterned shower curtain depicting characters, and matching towels visible from a front-facing angle with a mirrored view. diff --git a/utils/area/descriptions/sun/generated_descriptions/batters_box_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/batters_box_descriptions.txt new file mode 100644 index 0000000..6ac23d7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/batters_box_descriptions.txt @@ -0,0 +1,10 @@ +sun_atyfsdhglprtykhv.jpg The batter's box features a white chalk outline on reddish-brown dirt, viewed diagonally with a baseball field and trees in the blurred background, and a person standing nearby holding a rake. +sun_amqjeexftwmhvzar.jpg The batter's box is a tan-colored dirt area with visible footprints, viewed from the side with a chain-link fence and seated spectators in the background, alongside a blue-uniformed batter swinging at the ball. +sun_ahzopfajkoiqxazq.jpg The batter's box is a light brown dirt area bordered by green grass, with a batter in mid-swing wearing a black jersey and striped pants, viewed from the side on a sunny day next to a chain-link fence and trees in the background. +sun_atdzefvlnypcflbg.jpg The batters box is a flat, rectangular patch of bright green artificial turf set on a light brown dirt field, viewed at an angle with background details of empty orange stadium seats and netted fencing. +sun_afnfdjdbpolrpppr.jpg The batter's box is viewed from an elevated angle, set on a brown, textured dirt surface with a white home plate, surrounded by a player in a white uniform and a catcher in dark gear, indicating a baseball field environment. +sun_ajnvvbqloantwzld.jpg The batters box, viewed from slightly above, has a reddish-brown dirt surface contrasting against a dark green grass background, with a white rectangular boundary that frames a player standing with a bat, visible despite the dim lighting. +sun_awpattkosqttxkpc.jpg The batter's box appears as a dusty brown rectangular area with uneven texture outlined by white chalk lines, positioned next to the white home plate on a dirt infield, with a shadowy chain-link fence visible in the background. +sun_agpbpiqlrtczvbjc.jpg The batter's box is outlined on reddish-brown dirt with a blurred wooden bat mid-swing and partially in motion, set against a background of a green barrier and seated individuals wearing blue and gray. +sun_atxopmnbihjuhtkt.jpg The batter's box is defined by a light brown dirt surface with a slightly rough texture, situated on a baseball field viewed from the third base side, with a player mid-swing and a dugout and player in the blurred background. +sun_avjhxykfudtxmuxq.jpg A well-maintained baseball batter's box with a brown dirt texture is viewed from a slight angle, framed by a background of green grass and a black fence with rectangular panels, while a player stands poised with a bat. diff --git a/utils/area/descriptions/sun/generated_descriptions/bayou_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bayou_descriptions.txt new file mode 100644 index 0000000..ea64fbe --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bayou_descriptions.txt @@ -0,0 +1,16 @@ +sun_aoeuoswgdyrqmruv.jpg A serene bayou with calm, dark blue water bordered by lush green vegetation and dense palm trees under a clear blue sky, with visible textures of foliage and a distant horizon. +sun_auwwnyzuzeewivmz.jpg The bayou is characterized by muddy brown water reflecting the surrounding greenery, with a wooden bridge and a small structure visible in the background, framed by lush green vegetation and a white wooden deck on stilts in the foreground. +sun_afbwubgixerlfghq.jpg Tall palm trees with green fronds and brown trunks dominate the scene, set against a clear sky and reflected in calm waters, with a small white building and lush foliage providing a vibrant green backdrop. +sun_alzozzvwhejmlmrw.jpg The bayou features a calm expanse of reflective water bordered by dense green vegetation and tall, swaying palm trees under a clear blue sky, with a distant view of a small dock and vibrant orange structures adding a splash of color to the serene landscape. +sun_aptntgdkqjgxmxsf.jpg A serene bayou scene features smooth, dark water reflecting the muted sky colors, silhouetted leafless trees lining the horizon and a distant bird in flight, with sparse vegetation visible along the water's edge. +sun_aozoyookankmikyq.jpg A brown, murky bayou with a pair of kayaks navigates through bare, leafless trees reflecting in the water under a clear blue sky, emphasizing the stark contrast between the vibrant kayaks and the surrounding winter vegetation. +sun_aeaqnsdfewyxqmar.jpg A calm bayou scene features a smooth, reflective water surface with a person in a small boat wearing a red head covering, surrounded by sparse palm trees and vegetation on the banks under a hazy sky. +sun_aczpuaqawfrkmeuq.jpg A tranquil bayou scene with brown, hanging moss cascading from lush green trees, reflecting in the still, murky water dotted with patches of algae, set against a background of dense foliage and partially visible rustic structures. +sun_adugbxdynrixbqhy.jpg The bayou scene features a metal navigation marker with a vivid red triangular sign and a ladder on a rusted pole over calm greenish water, bordered by lush greenery and a line of wooden posts extending into the distance under a cloudy sky. +sun_ajttlovkwmqdqwsb.jpg The bayou scene features a shimmering, brownish-toned water surface reflecting sunlight, with a boat in motion creating soft ripples, surrounded by lush greenery and tall, slender palm trees set against a backdrop of a clear blue sky. +sun_afcqgkfhcrarbusm.jpg The image shows a serene bayou with vibrant green cypress trees draped with moss leaning over calm, reflective blue water, set against a background of dense forest under a clear sky. +sun_asnpzdfpbjwehjge.jpg The bayou is characterized by a warm brown, intricately textured traditional houseboat with arched windows, positioned on calm blue waters with lush palm trees and a clear sky in the background, viewed from a side angle. +sun_azpdgqebfmxrctfd.jpg A calm, reflective body of water stretches out under a bright sky, bordered by verdant palm trees and patches of lush grass, with a small canoe floating near the center, amid scattered ripples and aquatic vegetation. +sun_awqukazlzsxaokai.jpg A tranquil bayou scene with calm, reflective water in a muted grayish-blue tone, featuring a traditional canoe with a silhouetted figure paddling, surrounded by lush green vegetation and a line of tall palm trees under a clear sky. +sun_aapymkzhpzyqngqq.jpg In the image, a bayou scene is depicted with partially submerged, derelict blue fishing boats overgrown with lush green vegetation, surrounded by tall grasses and dense foliage under a cloudy sky. +sun_aqalzlnjsitzfbde.jpg The bayou features a houseboat with a brown, textured thatched roof floating on tranquil waters, surrounded by a lush background of tall palm trees under a hazy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/bazaar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bazaar_descriptions.txt new file mode 100644 index 0000000..8bc6d48 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bazaar_descriptions.txt @@ -0,0 +1,15 @@ +sun_acevvvpdvxkxhtgk.jpg The bazaar features an assortment of colorful objects with a variety of textures laid out on tables, viewed from a street-level perspective in an outdoor setting, with two people standing under an umbrella on a paved walkway. +sun_buyvnstqehktpbbd.jpg The bazaar is brightly adorned with a vibrant array of colorful lights and glittering decorations hanging from above, viewed from a straight angle down a decorated pathway lined with glowing lanterns, where figures in the distance add a lively human presence amidst a festive, almost celebratory atmosphere. +sun_acohvgdfehlmtrak.jpg The outdoor bazaar, viewed from a slightly elevated angle, features a bustling assembly of people interacting amid parked cars and makeshift stalls, with a backdrop of stacked hay bales and white stone structures under a partly cloudy sky. +sun_aeuojpcvkkqewevp.jpg This bustling bazaar, viewed from a slightly elevated angle, features vibrant blue and white umbrellas and various wooden stalls against a backdrop of an old stone wall and distant cityscape, with people moving about amid crates and cages displaying goods. +sun_ajlgeddohgfckmdy.jpg A person wearing a red cap and a colorful shirt stands in front of a light pink building wall while holding a book, surrounded by miscellaneous items on tables and the ground, with several people browsing the outdoor market scene. +sun_ayzkcjxxyppnjszk.jpg The bazaar features an array of vibrant, multicolored textiles stacked neatly on shelves, with a busy background of people browsing and the warm glow of artificial lighting enhancing the rich textures. +sun_bykzcanmbpokcood.jpg The bazaar features warm, golden lighting that accentuates the intricately arched ceiling and textured stone walls, with colorful fabrics draped and displayed on either side, creating a narrow alley bustling with people. +sun_bdspglluzsvdetkl.jpg Stacks of colorful books with varied textures are displayed on the ground amidst bustling people and columns in an open-air market setting, offering a lively scene despite the low resolution. +sun_bafvyefdfobptgrz.jpg The bazaar features colorful textiles draped across stalls with a variety of vibrant hues, set within a long, arched hallway with stone walls and ceilings illuminated by overhead lights and natural light from small, high windows, creating a bustling atmosphere as people browse the merchandise. +sun_arexcqjuvrityjeu.jpg The bazaar is a vibrant, bustling market with arched, ornately painted ceilings and warm ambient lighting, featuring a diverse array of colorful textiles and intricate hanging lanterns amid spacious, arched walkways filled with shoppers. +sun_altkrsejbcfywicw.jpg The bazaar features vibrant, hanging garments in bright hues of pink, blue, and red with intricate patterns, viewed from eye level amidst bustling crowds, with richly patterned textiles adorning the walls and a narrow passage lined with people and merchandise. +sun_dgssopljydhtsgpp.jpg This low-resolution bazaar image shows a bustling indoor market with wooden stalls laden with colorful arrays of fruits and vegetables, a high arched ceiling with round windows, and a prominent clock on a central white turret, all under warm artificial lighting. +sun_avgsqadpsvowixyh.jpg Amidst a bright, sunlit setting with a backdrop of lush greenery, the bazaar showcases vibrant red and white tablecloths adorned with colorful potted flowers and decorative floral arrangements under a shaded pavilion with a lattice wall. +sun_bafmfybkndnlumop.jpg The bazaar is bustling with vibrant textiles in a variety of colors like reds, blues, and yellows hanging from above, surrounded by a dense crowd of shoppers, under a high-ceilinged, covered space with visible hanging lights and assorted merchandise creating an energetic scene. +sun_bkbbxewfnuxtxfkd.jpg Under the warm glow of arching lights, the bustling bazaar is a vibrant tapestry of vivid fabrics and colorful displays of goods, with people navigating amid stalls adorned with intricate textiles and diverse assortments, framed by a soaring arched ceiling and illuminated signs in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/beach_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/beach_descriptions.txt new file mode 100644 index 0000000..b8b93e8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/beach_descriptions.txt @@ -0,0 +1,16 @@ +sun_bcfcszklvyvhvztf.jpg Tall palm trees with rust-colored fronds rise from dune grasses against a backdrop of turquoise ocean under a sky scattered with fluffy white clouds, viewed from a sandy foreground. +sun_bccvrsqmfcigfluj.jpg Golden sand stretches across the foreground with scattered straw beach umbrellas casting shadows, while the calm, deep blue sea and clear sky create a serene backdrop. +sun_awsamwyxpmsnpwid.jpg The beach features golden sand with waves gently breaking onshore, viewed from a slightly elevated angle, against a backdrop of calm, blue ocean and sky, with noticeable writing in the sand in the foreground and a few people enjoying the water. +sun_bqfgezskcdsbpzwm.jpg The beach features golden sand with a smooth texture, fringed by swaying palm trees under a clear blue sky, with sparse visitors relaxing under straw umbrellas near the gently lapping sea. +sun_atspikhaxqmylgdw.jpg A sandy path flanked by tufts of grass in varying shades of green leads directly to the calm, muted blue-gray ocean, under a mostly overcast sky. +sun_aouwehildzyxhawb.jpg A sunlit beach with light beige sand meets turquoise water, bordered by gentle waves and grassy dunes, while a distant hilly island under a clear blue sky forms the serene, picturesque backdrop. +sun_bmmujjseegzcwkgu.jpg The low-resolution image features a serene beach with pale yellow sand gently sloping into turquoise water, bordered by a line of lush green palm trees against a clear blue sky, creating a tranquil and inviting tropical landscape. +sun_bneroebdzopnizrc.jpg A sandy beach stretches along the shoreline with light gray sand, rough-textured waves dotted with rocky outcrops, and a backdrop of grassy green hills under a clear blue sky. +sun_bnscfyyqadhrqeku.jpg The beach is a sandy expanse bordered by gently crashing waves on one side and lined with tall, scattered palm trees on the other, viewed from an elevated point that reveals a paved walkway with barriers and distant hazy buildings under a clear blue sky. +sun_ajpjrklsvsyakdxy.jpg The low-resolution beach scene features a vibrant, multicolored playground area with geometric structures and a striped hut on light yellow sand, surrounded by a white fence, under a bright blue sky scattered with fluffy clouds, with a distant townscape lining the horizon across a calm sea. +sun_abctlikybqabezjv.jpg A tranquil beach scene features a gently sloping sandy shore with a leaning palm tree in the foreground, surrounded by calm, turquoise waters and distant rocks under a blue sky scattered with soft clouds. +sun_aswnczvbaurdsvze.jpg A tranquil beach scene features a sandy shore with scattered green patches, bordered by calm, light blue waters dotted with small boats, while a foreground palm tree with lush, arching fronds partially frames distant hills under a bright blue sky. +sun_acacflqoyxhsqzhe.jpg A tranquil beach scene features clear turquoise waters with smooth, large light gray rocks and lush green foliage on the left under a bright blue sky with scattered white clouds. +sun_brduavpzflmjkglk.jpg A vibrant beach scene shows colorful umbrellas in shades of blue, yellow, green, and red dotting the sandy shoreline, with blue lounge chairs occupied by sunbathers under a mix of cloudy and clear skies, and a backdrop of lush green trees and rustic thatched structures. +sun_abrkvhnqbvsupzwv.jpg A tranquil beach scene features soft, pale sand beneath a vibrant sky tinged with pink and purple hues, with smooth, weathered driftwood in the foreground, backed by rugged, forested cliffs. +sun_azfrxtdrjwjqojdx.jpg The beach features soft, golden sand leading to gentle waves reflecting warm hues from a dramatic sunset, with a rock formation silhouette and an arch framing the sun on the horizon. diff --git a/utils/area/descriptions/sun/generated_descriptions/beauty_salon_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/beauty_salon_descriptions.txt new file mode 100644 index 0000000..ccd9e2a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/beauty_salon_descriptions.txt @@ -0,0 +1,10 @@ +sun_addduafaabmyvbez.jpg The beauty salon has a warm red and brown color scheme, with a textured tiled floor leading to a series of black styling chairs and mirrors against the red wall, under soft lighting, and features shelves stocked with hair products. +sun_aeufenxypojbveap.jpg The beauty salon features a bright, open layout with white walls, a tiled floor, blue salon chairs, and wood-accented counters, highlighted by mirrors and shelves stocked with beauty products along the back wall, and a flower arrangement adding a pop of color near the entrance. +sun_biyzgwctitbyjyzc.jpg Black leather salon chairs with wooden armrests are positioned around the room on a pale pink floor, set against a colorful, intricately patterned glass partition and mirrored walls, with various salon equipment visible in the background. +sun_acfzpnfpngukrlki.jpg The beauty salon features a light yellow interior with wooden flooring, seen from a front-facing angle, showcasing black styling chairs, wall mirrors, a green and gold decorative table, and a series of styling products in the foreground, all set against large windows revealing a green outdoor scene. +sun_bpijbayokulbqqad.jpg The beauty salon features maroon chairs and stylist robes, with a warm wooden floor and wall mirrors reflecting the well-lit interior, complemented by festive decorations and a printed wall sign in the background. +sun_asuiomfemmfzxhlo.jpg In the beauty salon, a woman with light hair stands styling a client's hair under soft, warm lighting, surrounded by a mirror and a neutral-toned textured wall, while hair products and styling tools are visible on organized shelves in the background. +sun_ahsdglgmgybvxhls.jpg The beauty salon features vintage furnishings with muted colors, including a black, antique-style barber chair with metal detailing, positioned centrally on a plain floor, surrounded by wooden cabinetry, mirrors, and scattered seating, all set against simple walls adorned with sparse decor and a wall-mounted hairdryer, creating a nostalgic atmosphere. +sun_aiwtagecuvblegdt.jpg This beauty salon features a series of dark brown leather chairs with circular armrests arranged in a linear perspective, reflected in large mirrors along a wall adorned with exposed hanging light bulbs under a high, white ceiling, and set on red-brown tiled flooring. +sun_afizghkvlqvhlrde.jpg The beauty salon features a warm, wooden floor contrasted by sleek black styling chairs facing mirrored stations along a beige wall, with a bright window on the right allowing natural light to enhance the elegant and organized atmosphere. +sun_akddpaabthvhjvmu.jpg The beauty salon features a row of black leather swivel chairs against a long, dark countertop with storage, set against a backdrop of exposed brick walls and reflective mirrors, viewed from a side angle with a warmly lit interior and wooden flooring. diff --git a/utils/area/descriptions/sun/generated_descriptions/bedroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bedroom_descriptions.txt new file mode 100644 index 0000000..5aa409e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bedroom_descriptions.txt @@ -0,0 +1,13 @@ +sun_ajopqzsgqpgxpxex.jpg The bedroom features a floral-patterned bed with a coral-colored blanket, set against soft green walls adorned with framed artwork, and is viewed from a corner angle that includes a radiator, bedside tables with lamps, and a fluffy white rug on the carpeted floor. +sun_augiegrolizsvtdl.jpg The bedroom features a beige color palette with brown accents, showcasing a bed with orange and brown pillows and an orange bedspread, positioned in a spacious, well-lit room with large windows draped in matching beige curtains, flanked by potted plants and two chairs with a small table in the background, and a large dresser with a mirror to the side. +sun_aqlfngrsbdvrjjvi.jpg The bedroom features a richly textured, patterned bedspread in shades of brown and red, flanked by black-based lamps with beige shades on wooden nightstands against a plain white wall. +sun_akendlqecdqfkkku.jpg The bedroom features a twin bed with a blue and white patchwork quilt, set against a wall with nautical-themed wallpaper and dark wooden paneling, and includes a window with blue curtains and a shelf displaying small model airplanes. +sun_abycukxhccunypwt.jpg The bedroom features a rich, dark wooden bed with ornate carvings and matching furniture against a soft cream wall, accompanied by an intricately patterned rug and a large mirror, creating a classic and elegant ambiance. +sun_aopmpnhodsxpeigs.jpg The bedroom features a floral-patterned bedspread in vibrant colors, with a white and blue-trimmed headboard viewed from the side, against a plain white wall backdrop complemented by soft lighting, a wicker chair, and coordinated bedside tables with lamps. +sun_auxozunscwleiawu.jpg The bedroom features a warm, burgundy accent wall behind a metal-frame bed with wooden posts, adorned with patterned bedding and burgundy accents; it has a cream carpeted floor, wooden furniture, and a doorway revealing a glimpse into a bright adjacent space. +sun_anvggvugbbvdmaml.jpg The bedroom features a wooden-framed bed with a multicolored patchwork quilt and pink pillows, positioned at an angle in a room with white walls, exposed ceiling beams, a circular mirror above a wooden dresser, and a subdued carpeted floor. +sun_apkxdnlpdvdktcsp.jpg A four-poster bed with a black textured spread and tropical-themed cushions is centered against a pale blue wall, surrounded by white trim and framed by wooden blinds on the left and a rattan nightstand with a warm-lit lamp on the right. +sun_acxwxejdlwmphccb.jpg The bedroom has a white wall with a framed picture, a white bed visible through the open door, and is adjacent to a living area featuring a tan couch, dark wooden furniture, and a window with a view of greenery. +sun_aampvkbsihnfucrn.jpg The bedroom features a neatly made bed with green and white bedding and a plaid pillow, positioned centrally against a light peach wall with sheer white curtains, flanked symmetrically by two wooden bedside tables each topped with a white lamp, seen from a frontal viewpoint. +sun_aqjesvxuhiltafjy.jpg The bedroom features a wooden headboard and crib with a gray bedspread, a floral pillow, and framed monochrome seascape photos against pale walls, viewed from the foot of the bed. +sun_agpfzncwgubruhjm.jpg The bedroom features a modern, neutral-toned decor with beige walls and carpet, a grey upholstered bed adorned with black pillows, complemented by a sleek black office chair and a glass-topped circular table holding a laptop and white flowers, all set against large, vertically-paneled windows. diff --git a/utils/area/descriptions/sun/generated_descriptions/berth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/berth_descriptions.txt new file mode 100644 index 0000000..b3a53af --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/berth_descriptions.txt @@ -0,0 +1,16 @@ +sun_aapudmxxmiipjevf.jpg A blue padded train berth is positioned horizontally beneath a window with blue curtains on the sides, framed by a red border, and above it hangs a stack of brown blankets, with the view outside showing a blurred landscape under daylight. +sun_atbwywgrllnthkvy.jpg The berth features a textured, patterned beige mattress extending in a V-shape from the foreground, side-flanked by light brown fabric-walled panels with wooden trim, and a central wooden bulkhead with a louvered hatch and small fan above. +sun_agjlvqogdmgvhiwi.jpg The berth features a navy blue bedding with subtle dotted patterns, viewed from a side angle, set against a warm wooden interior with white storage compartments overhead and accompanied by a small window that casts light into the cozy cabin space. +sun_aksydrdtuoqibpbg.jpg The berth features a light beige, slightly textured mattress positioned in a compact, warm-toned wooden cabin with an adjacent shelf holding electronic equipment, and the viewpoint emphasizes the snug, enclosed space with visible cables and fixtures against the wooden backdrop. +sun_agrhmmbopmsvdgsp.jpg The berth features a checkered pattern in muted tones, viewed from a side angle, with soft pillows against a background of wooden paneling and a distinct nautical interior design. +sun_aekxzuayjekgbjcu.jpg The berth features white mattresses on two-tier bunk beds with blue-striped pillows, viewed at an angle showcasing a metal ladder, set against a simple white cabin wall and a patterned carpet floor. +sun_avegxvvqyslkfefi.jpg The berth features a blue upholstered cushion with a shiny, smooth texture positioned at a middle level, accented by blue straps and surrounded by teal-colored metal panels with a mesh pocket and colorful informational signs on the wall. +sun_ajkllkqxlkkdgiqu.jpg The berth appears upholstered in a muted peach fabric with a textured, quilted pattern, viewed from a side angle, positioned in a compact, enclosed environment with a floral-patterned upper mattress, faint beige walls, and adjacent small shelves holding a vase of flowers and a compact television. +sun_axzgymbmhaaesgpd.jpg The low-resolution image shows an upper berth with a smooth, white sheet, enclosed by a metal safety rail with a cream-colored support, against a wood-panelled cabin wall, with items like a black bag and folded clothing scattered on the berth. +sun_ahmfraigrlfmamsd.jpg The berth features a white mattress with a dark blue blanket, positioned in a wooden-paneled train cabin with a window to the left and a small table attached to the wall. +sun_asrlckehxbacdyep.jpg A wooden bunk bed with a light finish and star cutouts is seen from an angle, featuring a metal ladder, with blue bedding and a colorful quilt, set against a compact interior with beige walls and cabinets. +sun_aigihjhzadpokqra.jpg Blue padded bunk beds with a smooth surface are stacked in a narrow compartment, viewed from an angle that shows blanket-covered individuals lying on them, surrounded by metal railings and small netted storage, in a dimly lit, constrained interior space. +sun_acbkknivcdmxhlha.jpg A cozy boat berth with polished wood paneling surrounds a neatly made bed with a checked sheet, accompanied by storage compartments and boxes, viewed from a slightly elevated angle. +sun_afegheipzyojmtue.jpg The berth features a V-shaped arrangement with light gray cushions set against a compact, wood-accented interior with a small kitchenette, white cabinetry, and a circular window, while the low-resolution image reveals a cozy maritime environment with a soft, muted color palette and minimalistic design elements. +sun_axfjmrfhlkyblsde.jpg The berth features a dark wood frame with a brown cushioned mattress, bordered by a wooden paneled wall and ceiling, with a circular blue pillow and a striped pillow on top, set in a narrow cabin environment with a reddish door in the foreground. +sun_adcusrerahjzqmhk.jpg The berth features a patterned comforter with earthy tones, seen from a direct angle, surrounded by a light-colored interior with small windows and wooden accents, set against a neutral wall with a built-in shelf and mirror. diff --git a/utils/area/descriptions/sun/generated_descriptions/biology_laboratory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/biology_laboratory_descriptions.txt new file mode 100644 index 0000000..23d7c2c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/biology_laboratory_descriptions.txt @@ -0,0 +1,10 @@ +sun_arsxbjrguhpitggk.jpg A man is seated at an old-fashioned computer with a beige CRT monitor and keyboard, in a cluttered laboratory environment with various equipment including wires and a covered microscope, while wearing a patterned sweater and appearing to be smiling. +sun_0woyspvwzawpznmu.jpg Rows of tidy, white workstations equipped with black microscopes and glassware are visible in a well-lit environment with large windows, reflecting a clean and organized biology laboratory setting. +sun_aqpcanqpyfjlfgmj.jpg The biology laboratory is cluttered with various scientific equipment, including microscopes and gas cylinders, set against a backdrop of shelves filled with bottles and supplies, with a predominantly white and metallic color scheme, creating a busy and functional environment. +sun_adqflfuthjcbffyx.jpg The biology laboratory features neutral-colored countertops with an array of equipment, storage shelves filled with various containers and tools, and a central pathway leading to a windowed wall against a backdrop of scientific posters and ambient fluorescent lighting. +sun_ahuowtmshrehgnxi.jpg The biology laboratory features predominantly white and beige tones with cluttered shelves of colorful reagents and equipment, viewed from a wide angle, showcasing researchers in white lab coats working amidst a background of posters and organized storage boxes. +sun_aqgtygkrpoamkwpi.jpg The biology laboratory features long countertops cluttered with various scientific equipment, glassware, and plastic containers, set against a backdrop of wooden cabinets filled with bottles, all under fluorescent lighting, with visible shelves and storage units creating a busy and organized environment. +sun_akxpggaiovuztkuv.jpg The biology laboratory features a light beige and brown color scheme with people engaged in conversation around a black countertop holding a large microscope, with scientific equipment and cabinetry in the background. +sun_bhiplnjaxcfjsmge.jpg The biology laboratory features light blue wooden cabinets topped with assorted glassware and bottles, viewed from a slightly elevated angle against a background of stacked plastic chairs and sunlit windows. +sun_axyiszljcqaumqyx.jpg The image depicts a laboratory setting with two large metallic bioreactors featuring complex tubing and gauges, set against a tiled wall background and surrounded by organized shelves holding various scientific instruments, all in a bright, industrial-like environment. +sun_aowztxykiomdmtyi.jpg The biology laboratory is characterized by its sleek, white countertops and cabinets with contrasting dark tabletops, viewed from an angle revealing an orderly arrangement of scientific equipment and shelves filled with supplies, all set against a backdrop of off-white walls and large windows that allow ambient light to fill the space. diff --git a/utils/area/descriptions/sun/generated_descriptions/bistro_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bistro_descriptions.txt new file mode 100644 index 0000000..fec5392 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bistro_descriptions.txt @@ -0,0 +1,15 @@ +sun_awlgasqbvouhxzgq.jpg The bistro features warm wooden chairs and tables set with white linens, under soft, yellow-hued lamps in a cozy, narrow interior with a long bar counter, situated against a backdrop of cream-colored walls adorned with framed artwork. +sun_begaqriykgpevrkl.jpg The bistro has warm wooden walls and floors with high-back black chairs surrounding a tall, polished bar counter, complemented by hanging chandeliers, greenery, and framed artworks in a cozy, rustic setting. +sun_amxqakxclskcffrf.jpg The bistro features warm wooden tones and red walls with a slightly glossy texture, seen from a slightly angled viewpoint that captures small tables with wooden chairs, a central flower vase, framed wall art, and ambient lighting, creating a cozy and intimate dining environment. +sun_affrdoixdlewafig.jpg The bistro features a warmly lit interior with rich red walls, ornate golden ceiling moldings, and black bar counter, surrounded by small tables with red chairs, amidst a lively, bustling atmosphere. +sun_bvevqdopzlqfpeyz.jpg The bistro features dark wooden floors and tables contrasted with striped brown and cream upholstered chairs, viewed from an indoor angle facing large windows overlooking a street scene, set against a backdrop of cozy, dim lighting and a smooth gray ceiling. +sun_brhihuhutcdhvfbt.jpg The image depicts a warmly-lit bistro with wooden flooring, yellow walls, a variety of dark wooden chairs and tables set with white napkins, a buffet arrangement on the left, and colorful mural artwork adorning the back wall. +sun_bneqefkapennukcs.jpg The bistro features warm wooden furniture with smooth textures, wall-mounted art in black frames against beige walls, and large windows with sheer curtains revealing a verdant outdoor space, all viewed from an angle showcasing multiple tables and chairs. +sun_aqpbnntimexjdcgv.jpg The bistro features a low-resolution view of a blue and metallic counter setup with a glass display of pastries, situated under a grid-patterned ceiling with bright overhead lights and surrounded by a brick wall on one side, creating a vibrant and welcoming atmosphere. +sun_afcofuuzebuadceo.jpg The bistro features a spacious, contemporary design with white tablecloths and blue glassware, viewed from a slightly elevated angle, surrounded by a mix of wood and deep blue accents with large windows providing natural light from the background. +sun_awyejaxmlnnwmolk.jpg The bistro features warm, golden-brown leather seating with wooden accents, viewed from an indoor perspective that highlights arched decorative mesh structures and spherical pendant lights against a softly lit, intimate ambiance. +sun_aolgveaomcxzwfju.jpg The bistro features a warm wood-paneled interior with a polished, dark wood bar lined with high stools, complemented by dim overhead lighting and a potted plant on a tile floor, set against a backdrop of neatly arranged shelves of bottles and a decorative display cabinet. +sun_akoemqlvdepmhlye.jpg The bistro features vibrant red walls and large windows casting natural light onto the interior, with round tables covered in white tablecloths and surrounded by classic curved wooden chairs with dark woven seats, creating a cozy and inviting atmosphere. +sun_blfshsgxdrczobta.jpg The bistro features warm, earthy tones with textured walls, tiled floors, and sleek wooden furniture, viewed from an interior angle highlighting its cozy ambiance with round tables set with placemats and large windows opening to a leafy garden. +sun_aasprukpcyklohuq.jpg The bistro features warm wooden textures and tones with neatly arranged tables, set with yellow napkins in a well-lit space, showcasing a modern bar counter surrounded by minimalist stools and subtle wall decorations. +sun_aqvkgsnnjnuoisoa.jpg This bistro features warm wooden furnishings with an elegant curved design, set against a softly lit interior with neatly arranged white table linens, reflecting a cozy and sophisticated ambiance accentuated by bottles and glasses displayed in a background cabinet. diff --git a/utils/area/descriptions/sun/generated_descriptions/boardwalk_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/boardwalk_descriptions.txt new file mode 100644 index 0000000..9db5481 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/boardwalk_descriptions.txt @@ -0,0 +1,16 @@ +sun_biihgffmrwfkogph.jpg The boardwalk features weathered, light gray planks with a smooth texture, viewed from a slightly elevated angle surrounded by lush green foliage, with a distant view of a townscape and pine trees in the background. +sun_bihbrcvornbwnhsc.jpg The boardwalk is composed of weathered, light gray wooden planks running diagonally through a coastal landscape, with yellowed grass on one side and a calm body of water on the other, under an overcast sky with distant buildings visible in the background. +sun_brkapfeapshkanqv.jpg The boardwalk is a light brown wooden structure with vertical railings, situated in a lush, green forested area next to a flowing river, viewed from an angled perspective that highlights the dappled sunlight casting shadows on the path. +sun_bvmgsvzptervtafk.jpg The boardwalk is a narrow, light-colored wooden path with a rough texture, winding through a lush, forested area with tall trees and dense greenery visible in the background. +sun_biefjcpfyverycpd.jpg The boardwalk appears as a weathered, brown wooden path meandering through a dense forest, surrounded by tall trees and lush green undergrowth, with a railing adorned with patches of lichen. +sun_bwjjoweqkkvysqpq.jpg The boardwalk has a weathered, light gray wooden texture with crosshatched railing designs, stretching straight ahead into a vibrant green, tree-lined forest under a clear blue sky. +sun_brnxfdnooqgncfrk.jpg The boardwalk is composed of light gray, evenly spaced wooden planks with smooth texture, viewed from an angled perspective, bordered by natural wooden railings, and set amidst lush greenery and clusters of purple wildflowers. +sun_anpwhdfatrdsjyht.jpg The boardwalk is a narrow, wooden path with a grayish-brown hue, lined with lush green foliage and dense vegetation on both sides, providing a tunnel-like perspective through a forested environment. +sun_bukmijksmqpswdzf.jpg A narrow, gray boardwalk stretches straight into the distance with long shadows cast by its metallic railings, surrounded by white sand dunes and sparse desert vegetation under a clear blue sky. +sun_bexhxzbhafwoefrh.jpg The boardwalk features a weathered grey appearance with wood grain texture, captured in a slightly elevated side view, meandering through leafless trees and sparse undergrowth, complemented by a subdued, overcast sky. +sun_buuamathbqpyirah.jpg A snow-covered wooden boardwalk stretches into the distance under a partly cloudy sky, flanked by sparse winter trees and bushes, with rustic wooden posts and rope railings lining the path. +sun_aakppbiezuybprnw.jpg The boardwalk, with its reddish-brown hue and smooth texture, extends over a serene body of water with lush green forested hills in the background and a gazebo-like structure along its path. +sun_bjricwyvyzhwpmwu.jpg The boardwalk features a weathered wooden texture with a grayish tint, viewed from an angled perspective leading to a wooden platform, surrounded by marshy vegetation and a distant lake with a sailboat under a blue sky. +sun_bufnjkipykitohpw.jpg The boardwalk has a light gray wooden texture with faint sunlit patterns, viewed from the entrance leading towards a bright beach and ocean horizon, flanked by leafy trees casting intricate shadows. +sun_bowksagtgggbnjqi.jpg The boardwalk is an aged, weathered wood structure in a gentle curve, viewed from an angled perspective, with a lush green marshland and dense trees visible in the background. +sun_afjuazufegqtriym.jpg The boardwalk, viewed from a central perspective, features weathered gray wooden planks leading into the distance, flanked by matching railings, set against a backdrop of a blue sky and dry brush-like vegetation. diff --git a/utils/area/descriptions/sun/generated_descriptions/boat_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/boat_deck_descriptions.txt new file mode 100644 index 0000000..2ff9156 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/boat_deck_descriptions.txt @@ -0,0 +1,10 @@ +sun_ahoqelgnbrzklqmi.jpg The boat deck features a greenish textured surface with a central raised area, observed from a slightly elevated angle, surrounded by metal railings and adjacent to a blue canvas cover, set against a backdrop of a pebble-strewn shore with several docked boats and a white building. +sun_amfzsuoihddmzevb.jpg The boat deck appears worn with a mix of gray and brown tones, set against a stunning view of a river flanked by steep, mist-covered mountains under a bright, diffused sky. +sun_avwwohutwpgwcuxb.jpg The boat deck is covered in dark metal with a slightly worn texture, viewed from above in choppy waters, featuring several individuals in orange gear, winches, and safety equipment, with another vessel visible on the stormy sea horizon. +sun_awgeweigfkrhqxzl.jpg The boat deck features a predominantly white surface with a slightly textured finish, viewed from an elevated angle towards the bow, with a metal winch and cables visible, set against a dry, gravelly background. +sun_afxalkehxpwbgbec.jpg The boat deck features a combination of sleek white surfaces and blue cushioned seating under a matching blue canopy, with a wooden floorboard texture, viewed from a rear angle against a marina background filled with moored sailboats and a clear sky. +sun_alwfdkihfyapcbhi.jpg The boat deck features a partially covered area with a black railing, a red and white lifebuoy with a distinct emblem, a yellow vertical pipe near a porthole, and stairs leading upwards, set against an industrial backdrop with sunlight casting shadows. +sun_avyzgiptxhwuzmft.jpg The boat deck features a light wooden texture with rows of blue cushioned lounge chairs, viewed from a slightly elevated angle, against a serene backdrop of calm blue waters and a distant shoreline, distinguished by a red nautical flag and white railings. +sun_asaettavpdtgjonx.jpg The boat deck is composed of weathered brown wooden planks with a white metal railing, viewed from the side with an overhanging lifeboat and a visible red structure on the ship, set against a backdrop of a calm waterway and distant hazy skyline. +sun_assycayumnxkxbry.jpg The boat deck is a spacious pontoon model with white cushioned seating accentuated by dark blue stripes, viewed from an elevated angle under a metal canopy, set against the backdrop of a tranquil lakeside marina with boats docked in the distance. +sun_aqzpzgmsxokiqwpe.jpg A wooden boat deck with a rustic texture and slightly worn planks leads to a structure with a yellow and black smokestack, viewed from a raised angle against a background of tall buildings and a clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/boathouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/boathouse_descriptions.txt new file mode 100644 index 0000000..3e0c7f9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/boathouse_descriptions.txt @@ -0,0 +1,13 @@ +sun_ajgzmopowfkjkmql.jpg The boathouse features a distinctive red, pitched roof with two cupolas and weathered green walls, seen from a frontal perspective with a backdrop of dense trees and a few docked sailboats in the foreground. +sun_alwxqvbzflfzajwb.jpg The boathouse features a gray stone facade with a large, arched entrance, viewed from the water, surrounded by lush greenery, and has a gabled roof with red trim. +sun_aoulukmjdlkogdqh.jpg The boathouse has a steep, dark green roof adorned with small dormers, features a half-timbered facade with light-colored vertical panels, and sits on a calm body of water surrounded by dense trees. +sun_axrgcaoqibnxihah.jpg The boathouse features a two-story structure with a black upper level and three distinct blue garage-style doors below, set against a backdrop of bare trees with a reflective water body in the foreground. +sun_ajqsynkujvgwxckw.jpg The boathouse, viewed from across a serene lake, features a light-colored facade with green rooftops, surrounded by lush green trees and partially cloudy skies, reflecting a tranquil setting with rowboats dotting the foreground. +sun_auoceiimmujktmom.jpg The boathouse appears as a classical structure with arched windows, in a muted cream and grey hue, set against a misty park landscape, reflected on a calm water surface. +sun_azgncoyotrymscda.jpg The boathouse features a red and gray color scheme with pointed gables, seen from across the water, set against a backdrop of other boathouses with colorful roofs and multiple oars stacked outside. +sun_azpkytsnirefocso.jpg The boathouse features a traditional design with a prominent gabled roof, painted in a mix of white and dark green, visible from a side view, set against a backdrop of trees with early spring foliage, alongside a row of similar structures by a calm waterfront. +sun_acppawjzwuwmqnxw.jpg A gray and white boathouse with a prominent central cupola and symmetrical windows reflects a colonial style, set against a forested backdrop and positioned at the water's edge, with its dual staircases adding architectural interest. +sun_amdtzfwwgssaclji.jpg A charming boathouse with a thatched roof and dark wooden siding stands by a tranquil riverbank, reflecting in the water, surrounded by bare trees and featuring a small dock with a sailboat moored beside it. +sun_awkjoyohrynsgkee.jpg The boathouse is a large, white wooden structure with a weathered texture, panoramic view facing the water, featuring a central lighthouse-style tower, multiple windows, and is set against a backdrop of a ferris wheel and clear blue sky. +sun_anmkzcvbspvoidmp.jpg The boathouse is a small, weathered, wooden structure with a gabled roof, situated beside a calm reflective lake, surrounded by rugged, bushy terrain and hills in the background. +sun_acqmvgdmowlzwmyj.jpg The boathouse features dark, weathered wooden siding and a steep, shingled roof, seen from a slightly elevated lakeside perspective, surrounded by lush greenery and partially obscured trees, with red accents on the railings and a small dock extending into the water. diff --git a/utils/area/descriptions/sun/generated_descriptions/bookstore_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bookstore_descriptions.txt new file mode 100644 index 0000000..905d7be --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bookstore_descriptions.txt @@ -0,0 +1,14 @@ +sun_atuijenrrdgmsdco.jpg The bookstore, viewed from an interior perspective, features an aisle filled with neatly stacked books on tables in soft brown tones and a carpeted floor, surrounded by tall white and blue shelves, with several people browsing amidst fluorescent ceiling lights. +sun_ajtqtuilhloyhzxh.jpg The bookstore features dark, wooden bookshelves filled with colorful books, viewed from an interior angle with potted plants atop the shelves and a sign welcoming visitors, against a backdrop of warm lighting and additional shelving. +sun_aedudnpyadgdejwp.jpg This bookstore features warmly lit wooden shelves filled with colorful books, viewed from a corner perspective, with stacks of children's books prominently displayed on a central table, contrasting against a patterned glass door in the background. +sun_awxeoupzgqvnohln.jpg The image shows a vibrant bookstore with rows of colorful book covers displayed on wooden shelves and tables, amidst a bustling interior filled with closely packed bookshelves in various orientations and a mix of glossy and matte finishes, all set against a backdrop of a richly stocked, warmly-lit environment. +sun_anrvrwtfzltvgfjx.jpg The bookstore features wooden bookshelves filled with colorful books under warm lighting, viewed from an elevated angle, with a backdrop of people reading and relaxing in a cozy cafe setting. +sun_adezibrntsesgpvf.jpg A narrow aisle filled with towering stacks of assorted books with varied colors and glossy textures leads to a warmly lit window in a cluttered, cozy bookstore, where a person is browsing amid the floor-to-ceiling shelves. +sun_anxyxgqyfossgzul.jpg The bookstore features sleek, dark blue shelving filled with a wide array of books, contrasted against large windows displaying red lettering, revealing a modern, spacious interior with a tiled floor and ample natural light. +sun_avsybhiblxqxcayh.jpg The bookstore features a warm-toned, dimly lit interior with wooden floors, dark wood shelving lined with books, a metallic ladder against the shelves, and a distinct central aisle with small tables displaying books. +sun_axegrdryxqiyspkt.jpg The bookstore features bookshelves in pastel pink and green filled with various books arranged neatly, with a purple-walled backdrop adorned with photographs and decorations, and a glass display case to the left holding miscellaneous items, all under soft ceiling lighting and a textured rug on the floor. +sun_atumyooruzcvkqff.jpg The bookstore is densely packed with stacks of colorful, assorted books piled high to the ceiling, creating narrow aisles, with a view down a long corridor filled with more books under fluorescent overhead lighting. +sun_agvjurcwdbixvnyi.jpg Rows of densely packed, dark wooden shelves filled with multicolored books extend into the distance under a grid-patterned ceiling with glowing round lights, creating a cozy, narrow aisle surrounded by an eclectic mix of displayed books and a globe, set within a warmly lit interior space. +sun_aykbfhhohjbrijwf.jpg The bookstore features warm wooden shelves filled with books, viewed from an interior front angle, and is set against a dimly lit background with warm lighting and posters on dark walls. +sun_avbvgwhtxxwuunli.jpg This bookstore features rows of shelves filled with colorful books under soft fluorescent lighting, viewed from a central aisle perspective with polished floors, where a person walks toward the back in an organized setting that includes both aisle-end displays and overhead signs. +sun_apueywubczdudsle.jpg The bookstore has a warm, cozy ambiance with wooden bookshelves lined with colorful books from floor to ceiling, a rustic chandelier overhead, and a checkered floor, viewed from an interior perspective with an archway to another room. diff --git a/utils/area/descriptions/sun/generated_descriptions/booth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/booth_descriptions.txt new file mode 100644 index 0000000..b812f33 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/booth_descriptions.txt @@ -0,0 +1,16 @@ +sun_bbjpjqofgipplghz.jpg The booth features a clean white backdrop with the recognizable Google logo in colorful letters, positioned indoors with several people gathered around a high counter equipped with large computer monitors displaying data, indicative of a busy tech conference environment. +sun_bbenspierwgqocpo.jpg The booth has a black and white panel design with a banner reading "EUROGRID & GRIP," featuring displayed posters and brochures, surrounded by a conference room environment equipped with chairs and a table adorned with plants. +sun_bhstssxsuiemuiid.jpg A jewelry booth with dark red table coverings, illuminated displays of necklaces and earrings, set against a backdrop featuring large, colorful jewelry images in a softly lit exhibition space. +sun_bwldntlykaqqybkv.jpg The booth features a white and gray color scheme with text and vibrant images on large vertical panels, viewed from the front with two people standing inside, and is set in a conference or exhibition environment with additional booths in the background. +sun_artpjizuzqwekzhi.jpg The booth features a predominantly red and black color scheme with a large, angular canopy adorned with celestial imagery, positioned within a spacious convention hall, enhanced by its prominent rectangular signage and sleek, modern design. +sun_bqqwbfyriloladnm.jpg The booth features a combination of black metal framing and vibrant red and blue panels, situated on a purple carpet with a backdrop of large banners, and includes visible shelving with various electronics creating a tech-focused display amidst a bustling convention setting. +sun_bynqosrdsprnawmf.jpg The booth has a red and silver color scheme with a glossy texture, viewed from an angle showing open sides, featuring TASCAM branding prominently displayed against a backdrop of musical equipment and product posters within a busy exhibition hall environment. +sun_babvwlfbltaoaeal.jpg A folding, gray fabric-covered booth with a curved design displays various printed materials and EMS symbols, set against an interior wall backdrop with red lighting accents and medical equipment in the foreground. +sun_brvafmnvwcswwnwh.jpg The booth features a blue and black backdrop with display screens and informational posters, positioned at a slight angle in a convention hall setting, with visible electronics equipment and standing attendees. +sun_bgjuahxxcccznxja.jpg The booth features a white backdrop with purple lettering and images related to equine dental services, displaying horse skulls and dental tools, set against a busy indoor exhibition environment. +sun_bdhxynafmviuftcm.jpg The booth features a predominantly black table with a computer monitor and brochures, set against a backdrop of tall banners with blue and white logos and text, and the space is framed by black curtains on either side in a convention hall environment. +sun_axhdxuovpvzeomxs.jpg The booth features red and black panels with a textured surface, is viewed from an angle showing a promotional display area against a vibrant red carpet, and includes a large poster depicting a serene forest scene in the background. +sun_bczwgyukesaajxnx.jpg The booth features a variety of colorful quilts displayed against black panels, with numerous attendees browsing tables laden with pamphlets and fabric samples in a busy, well-lit indoor exhibition hall. +sun_bjfvgsegbycyusjw.jpg The booth features a central display of three graphic t-shirts against a light gray slat wall, surrounded by neatly organized racks of merchandise in plastic packaging, set on a gray carpet with a striking dark green starburst pattern; it is framed by a grid-patterned ceiling and a prominent "Master Industries" sign above. +sun_bywponagcufuqjxv.jpg The booth features a blue and white color scheme with a smooth texture, seen from the front with two men interacting in front of printed displays and electronic setups, set against a backdrop of dark surroundings with a prominent "Desktop EDA" sign overhead. +sun_bjnmjwgdnualguty.jpg A blue and black booth with a rectangular shape is viewed from the front, featuring a predominantly blue counter and backdrop with a large logo, set against a bustling exhibition environment with people and tech equipment. diff --git a/utils/area/descriptions/sun/generated_descriptions/botanical_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/botanical_garden_descriptions.txt new file mode 100644 index 0000000..eb6fb96 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/botanical_garden_descriptions.txt @@ -0,0 +1,10 @@ +sun_ajniywnxzgeiaujp.jpg A lush, green expanse of grass dotted with young trees and sparse vegetation is shown from a ground-level perspective, with a backdrop of mature trees under a clear, bright sky. +sun_ajvzymarvnaedgtw.jpg A serene botanical garden scene is viewed from ground level showcasing a pathway surrounded by lush trees with white blossoms and a striking small tree with pink flowers, against a backdrop of dense, varied green foliage and a bright blue sky. +sun_abpwkgabzukjifga.jpg A rustic wooden bridge spans a lush, green botanical garden with a dense assortment of tropical plants and trees, characterized by leafy textures and earthy tones in a vibrant, slightly upward view. +sun_acqorgyskauidqfl.jpg A rustic wooden archway covered with vibrant red flowers stands in the foreground, leading to a lush, green garden with dense foliage and a partially cloudy blue sky in the background. +sun_axowedbihyzwlxhu.jpg A lush path winds through the botanical garden, surrounded by vibrant yellow-flowered bushes contrasted against the dark, towering evergreens, under a dappled sunlight filtering through the varied foliage. +sun_akbbryhxzdowzceh.jpg In the botanical garden, a wooden ladder leans against a leafy tree amidst vibrant green and burgundy foliage, with a sunlit lawn and shadowy tree trunks in the background. +sun_acyjrzznztmroglp.jpg A tree-lined path with arching trunks creates a canopy of lush green foliage overhead, surrounded by manicured hedges, leading down a sunlit, slightly shadowed dirt pathway. +sun_aptyzmluwzhdusmc.jpg The botanical garden features a lush canopy of green trees with a striking carpet of pink flowers scattered across the ground, set against a backdrop of pathways and shaded areas under the dense foliage viewed from a ground-level perspective. +sun_ajshszzwxizwzuao.jpg Lush greenery surrounds a tranquil pond with tall evergreens in the background, featuring a variety of green hues and a reflective water surface dotted with aquatic plants. +sun_avomarywluvntaye.jpg A lush, green botanical garden features a tranquil scene with a rustic wooden bridge arching over a small pond surrounded by dense greenery and vibrant flowerbeds, set against a backdrop of towering trees and a clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/bow_window_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bow_window_descriptions.txt new file mode 100644 index 0000000..f6e5466 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bow_window_descriptions.txt @@ -0,0 +1,10 @@ +sun_altiyvkozyuqndjp.jpg The bow window features white-framed sections with glass panels, flanked by cream-colored shutters, set against a cozy indoor environment with floral-patterned cushions and a wooden beam above, while offering a sunlit view of lush green foliage outside. +sun_anbsyvzrmxjixoas.jpg The bow window, with its white trim and smooth frame, projects outward from a brick facade beneath a shingled roof, reflecting an outdoor scene with trees and shrubbery visible in the background. +sun_armobaqhtgunzygc.jpg The bow window features a central large white-framed window with mesh screen flanked by two narrower side windows, all set in a green-trimmed exterior with a red brick wall backdrop and bordered by neatly trimmed shrubs. +sun_ayipgppdailjlnyp.jpg A white-framed bow window with lace curtains overlooks a vibrant marina backdrop, flanked by two wooden chairs and a small table set against a cozy interior with a bed and soft furnishings. +sun_arkabaozbwvitgxf.jpg A white-framed bow window with five panels is set within a stone wall, surrounded by dark red shutters, viewed head-on with a lawn and shrubbery in the foreground. +sun_anqdjititrjqzhoz.jpg The bow window features three white-framed glass panels with a soft beige interior ledge, framed by green textured curtains, offering a view of a leafy suburban street with a wooden side table displaying a cactus and spider plant in front. +sun_apnvdyecnjjmcuhi.jpg The bow window features a crisp white frame with a smooth texture, viewed straight-on highlighting its three-panel design and set against a tan siding, revealing an interior with warm wooden kitchen cabinetry and a glimpse of a dining area. +sun_avfrfkyakuatkebc.jpg The bow window, viewed from inside, features white frames and curtains, a textured white stone wall and green foliage outside, with a coastal backdrop, while inside shows patterned blue cushions on a bench. +sun_auiozzxufohlnsmt.jpg The bow window features a dark wooden frame with vertical slats, viewed straight on from an indoor bedroom setting with wood-paneled walls and a bed in the foreground, allowing light to filter through sheer curtains. +sun_abwoxppbytkgtvic.jpg The bow window features dark brown wooden frames with textured, mullioned glass panels, viewed straight on against a red brick wall with a hanging floral basket. diff --git a/utils/area/descriptions/sun/generated_descriptions/bowling_alley_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bowling_alley_descriptions.txt new file mode 100644 index 0000000..604614b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bowling_alley_descriptions.txt @@ -0,0 +1,10 @@ +sun_akdtojzfogdccaih.jpg The bowling alley features smooth, light wood lanes framed by scuffed metallic rails, viewed from a side angle with colorful wall art depicting pins and balls, and illuminated by overhead fluorescent lights casting shadows in the spacious interior. +sun_akkaqthqddfyyads.jpg The bowling alley features a dimly-lit, modern interior with multiple polished wooden lanes, blue triangular pinsetter decorations, overhead electronic scoring screens, and a bustling environment with people gathered near the seating area. +sun_amzhuihhhlrjritl.jpg The bowling alley features a light wooden lane with a glossy finish, viewed from a low angle emphasizing a player in mid-action holding a bright blue ball, surrounded by a busy background of arcade-like structures and various people engaging in activities. +sun_anzhbxxcsirjbpby.jpg The bowling alley features a polished wooden lane reflecting ambient lights, a vivid red bowling ball in the foreground, and players in casual attire in a spacious, well-lit recreational setting. +sun_adatxnooiamkiwux.jpg The bowling alley features muted wooden lanes with a shiny finish, a frontal perspective showing several parallel lanes under a white drop ceiling, and a backdrop of warning signs, creating an organized and functional atmosphere. +sun_aeznxtyujkpluann.jpg The bowling alley features a rack of colorful bowling balls with hues of pink, blue, and green on a glossy lane surface, seen from a side angle with dim illumination and neon lighting creating a vibrant and lively atmosphere. +sun_azwmdrnyyglrlkfn.jpg The bowling alley features a polished wood lane surface with multiple players engaged in a game, viewed from a perspective that highlights the lanes stretching towards a mural-adorned back wall, with overhead monitors displaying scores and a yellow and blue color scheme. +sun_ahhzvbzfxdsfnoxp.jpg The bowling alley features polished wooden lanes with a vivid mural of blue and purple hues on the back wall, viewed at an eye-level angle, flanked by retro-style scoring monitors and a metallic ceiling sphere reflecting the brightly lit space. +sun_awcyfvgnqtgdoagd.jpg The bowling alley features a wooden-textured lane with a golden-brown hue, viewed from behind a bowler in a dynamic throwing pose, framed by dimly lit pin machines and a gently arched ceiling in the background. +sun_aqzdaulpoobbeprf.jpg The bowling alley features smooth, polished lanes with overhead screens displaying player scores, set against a vibrant wall mural depicting abstract designs, and the viewpoint captures the scene along a perspective that includes a person walking near the lanes. diff --git a/utils/area/descriptions/sun/generated_descriptions/boxing_ring_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/boxing_ring_descriptions.txt new file mode 100644 index 0000000..43b8bc6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/boxing_ring_descriptions.txt @@ -0,0 +1,10 @@ +sun_axfktanelimtgokq.jpg The boxing ring has red, white, and blue ropes surrounding a floor with a dark textured canvas, viewed from an inside angle, with a high ceiling and gym posters visible in the background. +sun_cdtiwoqpjmsjlwlf.jpg The boxing ring features a tan canvas mat with red and blue corner pads, surrounded by white ropes, viewed from an elevated angle under a large geometric lighting structure amid a dimly lit arena with scattered spectators. +sun_ctmjxagxbuzajdnk.jpg The boxing ring has red and blue ropes surrounding a blue mat with white and red sections, viewed from an elevated angle, set in a gym environment with graffiti on the walls. +sun_aylwfssbshtjdlug.jpg The boxing ring, viewed from an elevated angle, features vivid red corner pads and aprons contrasted by white ropes, set against a sparse gym environment with various colorful banners and posters adorning the walls. +sun_afncldghnxgrjtzd.jpg The boxing ring features blue and red ropes, a matte blue canvas, and a backdrop of gray lockers with a seated child on the right observing the action from a spectator's viewpoint. +sun_awcvqlsmjpwqlkgu.jpg The boxing ring features white ropes with red and blue corner pads, set in an indoor arena with brick walls and spectators in the background, while the mat is hidden by the action of two fighters in red and blue gear. +sun_acdirnoymdeivqri.jpg The boxing ring features a blue canvas with matching steps and red and blue ropes, set within a spacious indoor environment with white pillars and overhead lighting fixtures, and contains equipment and padding scattered on its surface. +sun_avtzvilxbjruccoh.jpg The boxing ring features a blue canvas, surrounded by red and white ropes, situated in a spacious, well-lit gym with wooden beams and visible punching bags in the background. +sun_awjawqnugwyzoixo.jpg The boxing ring has vibrant blue ropes with a red top rope, situated in an ornate venue with vintage-style architecture, visible from a slightly elevated angle, where the backdrop is dimly lit with an audience clapping in front of intricately detailed walls. +sun_ahglnmqmzddxbfae.jpg The boxing ring features a blue canvas with white and red ropes, branded corner pads, and is set in a well-lit gym environment with visible workout equipment and a vibrant red and blue ceiling accent. diff --git a/utils/area/descriptions/sun/generated_descriptions/brewery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/brewery_descriptions.txt new file mode 100644 index 0000000..5a9c010 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/brewery_descriptions.txt @@ -0,0 +1,15 @@ +sun_bkchialkujkcumbs.jpg The brewery, viewed from an angle showcasing its sleek, metallic silver tanks with a smooth reflective texture, features small observation windows and a series of intricate pipes and gauges, set against a warm, wood-paneled interior background. +sun_annedcsnupogvoap.jpg Large wooden vats with a light brown, textured surface are lined up in a brightly lit room with white brick walls and a green floor, with metal kegs and piping evident in the foreground and background. +sun_anraxdeafzathioo.jpg The brewery interior showcases gleaming copper brewing kettles of varying sizes with distinct curved lids and pipes against a background of exposed brick walls and large industrial windows, creating a warm, reflective ambiance punctuated by small wooden barrels. +sun_anainupdzrfccrxo.jpg The brewery features large, shiny copper vats with dome-shaped tops, viewed from an elevated angle, set against a backdrop of light brick walls and large windows, with visible gauges and pipes enhancing the industrial atmosphere. +sun_axouqabjhkwcbdei.jpg The brewery features a large, round, copper brew kettle with visible valves and an open hatch, situated in a tiled room with white brick walls and additional copper piping, viewed from a slightly elevated angle. +sun_ahxpmohdpqnzfkhy.jpg The brewery features a tunnel-like entrance framed by rows of stacked wooden barrels with visible brand markings, surrounded by subdued, warm lighting and a metallic interior structure in the background. +sun_btbqdshvtqxtrltj.jpg The industrial setting features large, metallic brewing tanks with a smooth, reflective surface and a person casually posed atop, set against a plain, light-colored wall with visible lines and minimal background clutter. +sun_aiccppawkhglgkyv.jpg The image shows a series of polished stainless steel fermentation tanks with a conical base and visible pipes and gauges, surrounded by a background of industrial-style walls, suggesting an interior view of a brewery production area. +sun_amkmowetswkgcgms.jpg The brewery features shiny copper vats with a reflective surface, standing upright in a clean, white-tiled room with large windows and visible control panels. +sun_asyrzwnlwmdnkogh.jpg The brewery features a small-scale setup with wooden-clad cylindrical tanks positioned on a wooden frame, visible metal pipes connecting the components, and a spartan white wall background suggesting an indoor environment. +sun_avudvfczewwawmza.jpg Large, shiny stainless steel fermentation tanks with visible pipes and platforms dominate the industrial interior of a well-lit brewery, surrounded by concrete floors and metal railings, under a high ceiling with skylights. +sun_aftkgqzymrduilvv.jpg The brewery features large, polished copper brewing vessels with wooden accents, seen from an interior side view with a high ceiling displaying visible wooden beams and industrial lighting, surrounded by stacks of boxes, some bottles, and a staircase leading upwards. +sun_anihdjhdgrolfqrf.jpg The image shows a brewery interior with large copper brewing kettles featuring smooth, shiny surfaces and glass panels, viewed from above in a tiled room with high ceilings and large windows providing natural light. +sun_btzeeidunjhppevh.jpg The brewery showcases stainless steel tanks with a smooth metallic texture, surrounded by interconnected pipes, viewed from a ground-level angle in an industrial setting with a tiled wall background. +sun_ashftwxtsrpsbfuf.jpg The image displays a brewery's large copper brewing tanks with a shiny, reddish-brown texture, seen from a slightly low angled view, set against a background of white industrial walls and ceiling panels, with several metal pipes and a tall chimney-like structure accentuating the manufacturing environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bridge_descriptions.txt new file mode 100644 index 0000000..1a23d22 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bridge_descriptions.txt @@ -0,0 +1,16 @@ +sun_bvkdaiottkloaamc.jpg The bridge is reddish-brown with a grid-like truss structure, viewed side-on against a backdrop of modern skyscrapers and a tree-lined riverbank. +sun_bkowhlvezbsljtmc.jpg The bridge is a pale yellow structure with multiple evenly spaced vertical supports and decorative towers, seen in a side view against a hazy, gray sky with a body of water in the foreground, providing a smooth texture with arching pathways. +sun_bwwgxdeljegegpao.jpg The bridge is an orange-red suspension structure viewed from the side with a backdrop of lush green hills and partially obscured by clouds over a blue bay, featuring two tall towers and a long span of cables. +sun_bffuowjltllcarel.jpg The bridge depicted is a light gray arch structure set against a backdrop of lush green trees and a clear blue sky, viewed from a valley beneath, with its elegant curvature prominently silhouetted above the forested hillside. +sun_bsgievjzvmmedifn.jpg The red, lattice truss bridge is seen from a straight-on, slightly elevated viewpoint, with a snowy path leading into a wooded area and a historical sign on the right side, set against a clear blue sky. +sun_avjhfpbxawpfecgk.jpg A tall, striking red bridge with a lattice structure dominates the foreground, viewed from an angle showing an arch extending over a calm waterway with a small island and lush trees in the background. +sun_asbasthnwycmkbus.jpg The bridge is a dark, stone viaduct with a series of tall, narrow arches, seen from a distance with rolling hills in the hazy background and a few puffs of smoke rising above. +sun_aeyhehnyrjurckky.jpg The bridge in the foreground is red with a smooth metal texture, captured from a side angle with the river reflecting its lights, and it is framed by a background featuring an illuminated older stone bridge and a sunset sky. +sun_ahfdjjnxulpcxrqo.jpg The image depicts a historically styled bridge illuminated at night with a greenish hue and bluish accents, viewed from a side angle with two prominent towers and a dark urban skyline in the background. +sun_bbxvctltntrtinjf.jpg The bridge is a silver suspension cable-stayed structure with tall, triangular towers set against a sunset sky, spanning over a large body of water with a green shoreline in the foreground. +sun_bzhrhodsyqfiivvx.jpg The image shows a cable-stayed bridge with yellow-lit cables and tall concrete pylons against a blue sky, viewed from a low angle with a river below and trees in the distant background. +sun_amqxqjltdapyorcv.jpg The image shows a black metal bridge with vertical railings spanning a river, seen from a low angle with a cityscape featuring large, rectangular buildings and scattered trees in the background. +sun_bsteovvizxdefkqw.jpg The image shows a rustic and weathered wooden footbridge with a series of uneven planks, captured from an eye-level perspective, surrounded by dense greenery and tree trunks reflected in the calm water below. +sun_blhlyutkworxxqou.jpg The image shows a dark-colored, metal truss bridge with lattice detailing, viewed at a slight angle above the water; its thick stone piers reflect in the serene river surrounded by lush green trees and a wooded hillside in the background. +sun_atntrwpdqxszhjnv.jpg The image shows a warmly illuminated suspension bridge against a deep blue twilight sky, characterized by its prominent stone towers, chain-like cables, and a glowing reflection on the calm water below, with city lights twinkling in the background. +sun_avvdrjnpymgddjhx.jpg The bridge, seen from a side angle, features textured stone arches in a pale, weathered gray, adorned with carved statues on top, set against a backdrop of leafy trees and historic architecture. diff --git a/utils/area/descriptions/sun/generated_descriptions/building_facade_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/building_facade_descriptions.txt new file mode 100644 index 0000000..6cb0b26 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/building_facade_descriptions.txt @@ -0,0 +1,10 @@ +sun_auhfhccyjhboxzro.jpg The building facade is composed of red brick with dark-framed glass windows, viewed from a ground-level angle, and features protruding balconies surrounded by a paved area with small trees. +sun_apsbxkldadsbpdnb.jpg The building facade features a reddish-brown brick exterior with classical architectural elements viewed from a slightly angled perspective, framed against a clear blue sky and neighboring structures, highlighting its arched windows and decorative cornice. +sun_bcnjhlgasrzhincx.jpg The building facade exhibits a beige stone texture with intricate Gothic detailing, featuring arched windows and ornate carvings, viewed from a frontal angle against a clear blue sky. +sun_aveviqphrvmhusav.jpg The building facade displays a series of beige-toned high-rise apartments with a textured pattern of evenly spaced windows and balconies, observed from an elevated angle amidst a background of similar structures, with shadows accentuating the vertical lines. +sun_ahiwwzamasbsvejt.jpg The building facade features a symmetrical arrangement of tall, light-colored stone columns set against a background of large, geometric-patterned glass windows, viewed head-on with a street in the foreground and framed by tree foliage. +sun_aigaxyitvodbwkxl.jpg The building facade features an off-white, neoclassical exterior with symmetrical rows of tall windows, ornate moldings, and several flag-topped poles, viewed from an angled street-level perspective amidst a row of parked cars and a clear blue sky. +sun_aneucacgncklitdg.jpg The building facade features a cream-colored exterior with a dark roof, multiple evenly spaced rectangular windows with white frames, visible signage suggesting a public establishment, and is set against a clear blue sky with adjacent brick buildings. +sun_ayevknwokhdtcwwr.jpg The building facade features a row of multi-story, pastel-toned structures with ornate window frames and subtle architectural detailing, viewed from an oblique angle with neighboring buildings closely lining a narrow street. +sun_avyxinwnlntjwypo.jpg The building facade features a multi-story, steeply pitched roof structure with red timber framing and cream-colored walls, an ornate oriel window with intricate carvings, viewed from a front-left angle against a clear blue sky backdrop. +sun_avoqrgcplsuyobvx.jpg The building facade features a classical design with light beige stone texture and columns, viewed from the front, flanked by modern storefronts with vibrant blue and red accents. diff --git a/utils/area/descriptions/sun/generated_descriptions/bullring_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bullring_descriptions.txt new file mode 100644 index 0000000..1aaae8e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bullring_descriptions.txt @@ -0,0 +1,14 @@ +sun_ajlemqndkhyxyxol.jpg The bullring features a curved, reddish-brown barrier with a smooth texture, viewed from an elevated angle, surrounded by spectators in a dense, multi-colored crowd, and includes several figures in a coordinated pose leaning over the railing. +sun_ajarfgcrghpcsndk.jpg The bullring is viewed from an elevated angle, with its vibrant red boundary contrasting against the earthy, textured yellow sand of the arena, set amidst a lush green forested backdrop under a partly cloudy sky. +sun_aefdykeadvgdnjwb.jpg The bullring features a sandy beige texture with a bull and matador at the center, viewed from an elevated angle, with the bull's dark, glossy coat and white horns contrasting the vibrant red cape held by the matador in an arena marked by a faint white boundary line. +sun_azfbhcxkxctjcqyg.jpg The scene depicts a dramatic bullfighting moment with a black bull adorned with colorful banderillas lunging towards a matador in a gold and brown traditional costume, set in a dirt arena with an overcast ambiance. +sun_avosnzplgnfucbeu.jpg The image shows a sandy, textured bullring from an elevated viewpoint, featuring a matador in golden attire with a red cape facing a dark bull at the center, set against a sparsely populated tan background. +sun_adzoraxofwabwetd.jpg The bullring features a rich ochre-colored sandy arena, surrounded by a vibrant red barrier and arched white and yellow spectator stands, under a crowd-filled backdrop, capturing the dynamic scene from a slightly elevated viewpoint. +sun_cbaiztwsehhewfhl.jpg A vibrant bullring with a sandy ochre floor is surrounded by red walls, featuring a crowd seated in the background and showcasing a man engaging a black bull with white horns at eye level. +sun_cdhjndykuzylmdde.jpg The bullring features a sandy beige floor surrounded by rich reddish-brown walls with white accents, viewed from a slightly elevated position and set in a lively atmosphere with an audience observing the scene, where a lone bull stands near a person in a bright pink outfit. +sun_cwezhafrdjtxogcq.jpg The bullring features a rich yellow-brown sandy floor with a deep red perimeter wall, showing a low-angle view where two horses in motion pull a harness alongside a fallen bull, with handlers guiding them, set against a clear, unobstructed backdrop. +sun_aemhffvbaptzgudj.jpg The bullring is a dark, textured surface with a greyish hue, visible despite the low resolution, and features a dynamic scene with a matador in bright pink and gold attire interacting with a bull, juxtaposed against a muted, earthy background. +sun_amyiesvhzqhyiyip.jpg The bullring features warm beige sandy ground and reddish-brown borders with white circular markings, viewed from an elevated angle showing concentric spectator tiers filled with a dense, colorful crowd under a sunlit sky. +sun_anizfueybzpclcap.jpg The bullring features a sandy yellow arena floor, surrounded by a series of tiered, arched seating in muted beige tones, set against a backdrop of cream and white buildings with a clear blue sky above. +sun_ckcgeomodheycdia.jpg The bullring features a sandy brown circular arena surrounded by a dark red barrier with white posts, set against a backdrop of densely packed spectators. +sun_aiqtmpypgwgktgab.jpg The bullring is viewed from a high vantage point and features a sandy beige arena surrounded by deep red barriers, packed with an audience, and figures dressed in bright magenta capes standing out on the circular open space. diff --git a/utils/area/descriptions/sun/generated_descriptions/burial_chamber_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/burial_chamber_descriptions.txt new file mode 100644 index 0000000..29c004c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/burial_chamber_descriptions.txt @@ -0,0 +1,10 @@ +sun_aruxxvurnrrieisd.jpg A large, oval-shaped stone with intricate spiral carvings in varying shades of gray sits in front of a stone wall, displaying a rough texture and surrounded by a few smaller stones on a paved ground surface. +sun_bbsqijdywpmqtdtj.jpg The burial chamber features warm amber lighting that highlights the intricate, multicolored frescoes and ornate archways with their detailed, repetitive patterns, standing beneath a vaulted ceiling in a richly decorated, historic underground setting with visible stone columns and an elevated sarcophagus. +sun_aedfklevdrplkedo.jpg The burial chamber features vertically stacked wooden coffins with metal nameplates, viewed from a front left angle, enclosed by a metal grate door, and flanked by a dimly lit stone wall with candles and a religious cross on the right. +sun_ajcwnpgyrubwskrf.jpg A golden sarcophagus with intricate carvings is centrally placed, surrounded by dimly lit walls adorned with ancient Egyptian hieroglyphs and depictions, in a reconstructed burial chamber set inside a museum or themed exhibit space. +sun_bmtnvwmnslgndkkn.jpg The burial chamber features a horizontally laid, weathered effigy with faded dark and earthy tones, situated in an indoor setting with a geometric pattern on the tomb's side panels and stained glass windows in the background. +sun_aonyhwxfnpdjukug.jpg The burial chamber features a weathered wooden coffin with a rectangular shape and an intricately carved design, seen from an overhead angle, surrounded by a dim, stone-walled crypt environment with scattered debris and an aged, earthy texture. +sun_bmwolbznqszsutww.jpg The image depicts a stone burial chamber with light gray, textured stone columns and arches, set within a semi-circular alcove, viewed from a corridor with a brick-patterned dome above, and a dimly lit space in the foreground. +sun_aidtnknjxhwgrxjb.jpg The burial chamber is a rectangular, reddish-brown stone sarcophagus with intricate carvings of figures in Egyptian attire on its sides, set against a backdrop of smooth, pale wooden planks and dark textured walls. +sun_bmtflpbvoixsltez.jpg The low-resolution image depicts an ancient stone burial chamber with a rough, textured gray surface, viewed from a slightly elevated angle, enclosed by arched pillars and softly illuminated with warm lights casting shadows, and featuring a flower-adorned sarcophagus in the center against a backdrop of layered stone walls. +sun_appjndaxygbsedaq.jpg The burial chamber is a dimly lit, spacious hall with a warm, earthen color palette featuring intricately patterned stone arches and columns, illuminated by soft lighting, and the flooring has a glossy texture reflecting the light, accentuated by the presence of a seated person in the right foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/bus_interior_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/bus_interior_descriptions.txt new file mode 100644 index 0000000..0abf0fb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/bus_interior_descriptions.txt @@ -0,0 +1,10 @@ +sun_abehcagumefhwepv.jpg The bus interior features vibrant, abstract-patterned seat upholstery in blue with multicolored accents and seatbelts, viewed from the front with a clear aisle and bright yellow support pole, set against a plain white ceiling and large windows. +sun_ajniqqmevovpigjc.jpg The bus interior features blue fabric seats with a wavy pattern viewed from the rear forward, surrounded by overhead luggage compartments and soft ceiling lighting. +sun_aefmeorznegoepui.jpg The bus interior features a predominantly beige and blue color scheme with smooth, cushioned seats outlined in white covers, viewed from the aisle towards the front, highlighting overhead storage units, and integrated monitors against a backdrop of large, curtained windows. +sun_asiklpdwajdjltqh.jpg The low-resolution image shows a bus interior with dark blue padded seats, wood-panel accents, a central aisle, and patterned curtains with light streaming in through side windows, creating a shadowed effect along the aisle. +sun_arskefblxexvzgic.jpg The image shows a bus interior from the rear to the front, featuring grey upholstered seats, a white ceiling with overhead storage, blue curtains along tinted windows, and a rectangular display screen visible at the front of the bus. +sun_agpwvfrihiyvgvim.jpg The bus interior features rows of upright gray seats with vertical red stripes, viewed from the front to back perspective, set against a background of large side windows and a plain ceiling with overhead lighting. +sun_adcrrogvclzxnrff.jpg The bus interior features colorful, patterned fabric seats with a central aisle, viewed from the front looking towards the back, with overhead metal bars and bright natural light entering through large windows. +sun_akoqarkgeobrmcmi.jpg The bus interior features rows of patterned gray seats with small, colorful dots set against a backdrop of large windows showing a partially visible outside landscape, photographed from an aisle view extending to the back. +sun_alhqkxqlqxlamnam.jpg The bus interior features orange and brown seating with a patterned texture, viewed from the front, with cream-colored curtains and overhead compartments lining the patterned ceiling. +sun_abbaiqqknfzqxfjs.jpg The bus interior features gray seats with a colorful, abstract pattern of orange, red, and blue wavy lines, viewed from the center aisle looking towards the back, with a gray ceiling and large windows providing an open, well-lit atmosphere. diff --git a/utils/area/descriptions/sun/generated_descriptions/butchers_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/butchers_shop_descriptions.txt new file mode 100644 index 0000000..0941d13 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/butchers_shop_descriptions.txt @@ -0,0 +1,10 @@ +sun_ansudhgziobwvzof.jpg The butchers shop features a display counter filled with an assortment of fresh meats labeled with white tags, a butcher in a white shirt and red apron handing a blue-packaged item to a customer across the counter, with hanging sausages in the background and a digital scale placed on the counter, all under bright indoor lighting. +sun_aafqnqpswjumfpet.jpg The butcher's shop displays various cuts of meat inside a glass-fronted counter adorned with blue and white tile patterns, surrounded by a metal framework with hanging bags in a bustling market environment, with a distinct pig's head and signage visible despite the low resolution. +sun_armeuchhvqyehmro.jpg A man leans against a large ribbed piece of meat in a butchers shop with light-colored walls, hanging cuts, and plastic storage containers on metal counters, highlighting the scene's raw textures and industrial vibe. +sun_ayfrntztowpzgrwc.jpg The butcher shop features a long, glass display case filled with a variety of meats arranged neatly, under a ceiling with white tiles and St. Patrick's Day decorations overhead, against a backdrop of brown wall panels and a tiled floor. +sun_akajzyedpyhzsusj.jpg The butcher shop features a bustling entrance with an orange-framed doorway, an illuminated interior showcasing white signs and displays of meat in glass counters, set against a backdrop of crowded shelves, reflective surfaces, and overhead fluorescent lighting. +sun_afxhewmiygfcsyio.jpg The butchers shop features white tiled walls and ceiling lit by fluorescent lights, with hanging cured meats like hams and salamis creating a rustic ambiance, and a counter displaying various cuts of meat in a modern, compact space. +sun_aimpvflpdjyzxipl.jpg The image shows a refrigerated display of cuts of red meat, labeled with prices on white and red tags, within a glass case, with a person in a white coat reaching across the green trays inside a typical butcher shop setting. +sun_agevcxjidilfbklu.jpg The butchers shop features bright lighting with a warm ambiance, showcasing a curved glass display filled with various meats in trays, set against a backdrop of white walls adorned with vibrant posters, while employees in white uniforms attend to the counter. +sun_azwnypifesvrbsjn.jpg The butcher shop's interior features a glass display case filled with assorted meats under fluorescent lighting, positioned diagonally from the viewer's left, surrounded by shelves stocked with colorful packaged goods and a wall displaying various signs. +sun_achyalidxmpvzoya.jpg The butchers shop features neatly arranged packages of meats in various shades of pink and red with a glossy texture, displayed on refrigerated shelves from a side viewpoint, accented by bright lighting and set against a red and cream tiled background. diff --git a/utils/area/descriptions/sun/generated_descriptions/butte_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/butte_descriptions.txt new file mode 100644 index 0000000..ccf1da7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/butte_descriptions.txt @@ -0,0 +1,17 @@ +sun_ahtuovjotwxbpzoz.jpg The butte is a reddish-brown rocky formation with horizontal striations, partially capped with sparse trees and snow patches, viewed from a side angle against a clear blue sky, in a landscape featuring a lake and a parked red truck with a boat trailer in the foreground. +sun_adeeublvfvdkgegg.jpg The butte is a light sandy beige color with rugged textures and vertical striations, viewed from a side angle against a clear blue sky, with sparse vegetation dotting the flat, open foreground. +sun_ajfwfqfhuknlxesi.jpg The butte is a reddish-orange monolith with a flat top and stratified layers, seen from a distance in a desert landscape featuring sparse vegetation and dramatic, cloudy skies. +sun_abgyelfwnvvoldnk.jpg The butte is a layered, reddish-brown structure with a flat top, viewed from a low angle against a clear blue sky, and it features rugged terrain and sparse vegetation at its base. +sun_agjikseqxrrqjmen.jpg The butte has a reddish-brown hue with stratified horizontal layers, viewed from a low angle against a clear blue sky and sparse vegetation at its base, highlighting its rugged and steep appearance. +sun_ajamyzwehwubpmjf.jpg The butte is a sandy beige color with rugged, eroded textures, viewed from a slightly elevated angle, surrounded by a flat green plain and a blue river in the foreground against a clear sky backdrop. +sun_aqnepfdzhlxlbhif.jpg The butte is characterized by its reddish-brown color and rugged texture, viewed from a frontal angle with distinct layers visible against a gray, overcast sky, accented by a lightning strike, and surrounded by a foreground of green trees. +sun_aiyetburjfxlpoyr.jpg The butte appears reddish-brown with a rough, rugged texture, viewed from a low angle against a backdrop of blue sky with scattered clouds, framed by verdant, forested vegetation in the foreground. +sun_avzsxealmrdtummm.jpg The butte appears reddish-brown with a rugged and stratified texture, viewed from a distance against a backdrop of a vast, open desert landscape and an overcast sky, featuring one distinct protruding pillar on its right side. +sun_alhxdpwssmpeuwlf.jpg The butte displays layers of beige and light brown sediment with horizontal striations, topped with sparse greenery, against a clear blue sky and surrounded by shrub-filled rocky terrain. +sun_aqrpqpeppkjwzuic.jpg The butte appears in the distance with a reddish-brown coloration and rugged, rocky texture, set against a twilight sky with scattered clouds, surrounded by expansive desert terrain that features layers of dark shadows and subtle hues. +sun_aqcpqawhbhduevtz.jpg The butte exhibits a golden-brown hue with rugged, striated textures under sunlight, viewed from a low-angle revealing its flat top against a vivid blue sky with scattered white clouds and surrounded by sparse green vegetation. +sun_adiyqakzbygspqau.jpg The butte is a striking reddish-brown formation with a flat top and steep, rugged sides, viewed from a distance in a sparse desert landscape with a prominent, twisted, leafless tree in the foreground and a vivid blue sky scattered with white clouds. +sun_awrdjhjthzfsgxsv.jpg The butte is a flat-topped, earthy-brown formation with rugged, slightly eroded sides, viewed from a distance amidst a sparse, snow-dusted landscape under a wide, cloudy sky. +sun_atqjwgyxfbbygdkd.jpg The butte is a massive, reddish-brown rock formation with a rugged, layered texture and steep, vertical sides, viewed from an angle that emphasizes its towering presence against a backdrop of a clear blue sky and scattered greenery. +sun_aujmehrtbkccnzph.jpg The butte in the foreground has a textured surface with a reddish-brown hue, featuring sheer vertical cliffs and a flat top, set against a clear blue sky with sparse, low-lying vegetation in the rocky and sandy terrain below. +sun_amhzsaitmrpowndh.jpg The butte is a squat, flat-topped rock formation with smooth, reddish-brown surfaces, seen from a distance under a clear blue sky, surrounded by other similar rock formations on a flat, sparse desert landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions/cabin_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cabin_descriptions.txt new file mode 100644 index 0000000..d50f94a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cabin_descriptions.txt @@ -0,0 +1,16 @@ +sun_btqpzxzhziyrekyc.jpg The cabin is constructed from light brown logs with a smooth texture, seen from a front angle surrounded by lush green trees, featuring a stone foundation, and a porch with wooden railings that leads to a small seating area with striped lawn chairs. +sun_ajpidmjarwmqgmbo.jpg A rustic log cabin with warm brown hues and visible wood grain stands amidst a lush green forest, illuminated by golden sunlight with stacked firewood under a small covered porch. +sun_bgnnxkvztmnlkwgs.jpg The cabin features dark brown log walls with a snow-covered gabled roof, viewed from the front, surrounded by tall, dense evergreen trees and resting on a blanket of white snow, with distinct logs extending from its walls. +sun_aezuqxobioknigyu.jpg The cabin, viewed from the side, features natural wood siding with a muted brown color and a lightly weathered texture, set in a forested environment with surrounding trees, a green metal roof, a front-facing window, and a small gravel patio area with a picnic table. +sun_bfsgxyxfouewrxmc.jpg This cabin features light brown log walls with visible wood texture, viewed from the front with a steep roof and blue front door, surrounded by trees and a clear sky. +sun_atnvrlxkgdrhjuoa.jpg The cabin is made of light-colored logs with a screened porch, viewed from the front left against a backdrop of lush green trees, with picnic tables and a black grill on a wooden deck. +sun_auewajdpuieiyyio.jpg The cabin is a small, rectangular structure made of light brown logs with a corrugated metal roof, surrounded by lush green grass and dense trees, featuring multiple dark-framed windows and a wooden door on one side. +sun_bdnhtdaajvfexyew.jpg The cabin features horizontally laid, rough-hewn log walls with a muted grayish-brown color, contrasted by greenish cream window frames and door, viewed from an angled front-right perspective with a simple shingled gable roof, set in a grassy, leaf-strewn environment with sparse, bare-branched trees and a visible chimney. +sun_amfcijdlmgzqlrni.jpg The cabin, viewed from the front left corner, has a weathered wooden texture with a natural brown color, featuring a small red door with circular windows, surrounded by lush green forest foliage under cloudy light. +sun_baubimgirfkqxxxx.jpg The cabin has a rustic wooden exterior with horizontal logs, topped by a vibrant red metal roof, viewed from a frontal angle beside a lush green lawn and a pine tree, with colorful banners hanging on the railing and open fields in the background. +sun_acnnwzitahpeirun.jpg A rustic, weathered wooden cabin with a pitched roof is viewed at an angle amidst a forested background of tall, slender trees and dense greenery, featuring a distinctly brown and textured exterior. +sun_bysqxeympsezhzjl.jpg The cabin has a weathered wooden texture with a mix of gray and brown hues, viewed from a front right angle, surrounded by tangled bare branches under an overcast sky, and features a distinctive triangular roofline. +sun_bapwmrxeppspsezc.jpg The cabin has a weathered gray-brown wooden exterior with horizontal logs and a small metal roof, viewed from the front with a neatly maintained grassy foreground, a sign on the front wall, and surrounded by lush green trees in a bright daytime setting. +sun_bdpmfijtmvezvdtl.jpg A rustic wooden cabin with a dark brown texture, viewed from an angled front-left perspective, features a light green corrugated metal roof, a welcoming wooden porch with stairs and railings, set against a backdrop of lush green trees and a gravel path leading up to it. +sun_bkrpaiwtgiwuqaoo.jpg The rustic cabin, viewed from the side, features dark weathered wood logs with a stone chimney, surrounded by lush green trees and grass, with a small front porch and a white propane tank visible. +sun_bfdmfnnbsnfqmnjr.jpg The cabin, viewed from a front-right angle, is composed of brown wooden planks with a dark grey slanted roof and features small rectangular windows, set amidst a forested area with tall trees casting dappled shadows across the surrounding path and adjacent deck. diff --git a/utils/area/descriptions/sun/generated_descriptions/cafeteria_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cafeteria_descriptions.txt new file mode 100644 index 0000000..2168723 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cafeteria_descriptions.txt @@ -0,0 +1,14 @@ +sun_acdqgpzumsmvknfn.jpg The cafeteria features a spacious, high-ceilinged room with white walls and numerous aligned pendant lights, red bench seating paired with black chairs, and large windows lining the sides, offering a bright and modern atmosphere. +sun_akvwqwxxliygargz.jpg The cafeteria features rows of long, beige tables filled with people, seen from a side viewpoint, with a neutral-toned floor and ceiling, and a prominently visible flag by the stairs in the foreground. +sun_avxwwlwmsqwkseuu.jpg The cafeteria features bright fluorescent lighting with rows of orange chairs and teal trays on long communal tables, viewed from a slightly elevated angle, and is bustling with people in casual attire against a backdrop of partitioned walls and patterned ceiling tiles. +sun_bcpombnddnwhhgck.jpg The cafeteria features a central view of long rows of black-topped tables with attached round metal stools on a glossy white floor, set against a background of a blue and white wall with multiple rectangular windows and a gray, industrial-style ceiling with visible piping. +sun_auhvdlrlmemecmgz.jpg The cafeteria features numerous children seated closely at long, rectangular tables, with a colorful, cluttered environment adorned with bulletin boards and hanging art, viewed from a slightly elevated angle. +sun_bjdgttnlsffrzlvn.jpg A long table with a beige tablecloth is filled with children eating, surrounded by wooden chairs in a cafeteria with warm lighting and a tiled white wall backdrop. +sun_bjachypjrbxpgsvq.jpg The cafeteria has brightly colored yellow walls and a white floor, with small light blue and green plastic chairs and tables, seen from a mid-level interior viewpoint surrounded by windows and occupied by children in a lively, school-like setting. +sun_aspxratxmusfpext.jpg The cafeteria features bright blue walls adorned with playful orange and white decorations, visible from an elevated angle, with sleek white chairs and tables arranged on a terracotta-tiled floor, creating a vibrant and casual atmosphere. +sun_amacypzblrwwdpcb.jpg The cafeteria features rows of teal plastic chairs and black metal-legged tables, set against a high-ceilinged room with exposed beams, large windows letting in natural light, and a wall filled with a bulletin board and posters, all contributing to a clean yet institutional atmosphere. +sun_afvwfsmqkjrutjta.jpg The cafeteria is viewed from a wide-angle perspective showcasing numerous round tables with burgundy tops and matching chairs, set against a brightly lit background featuring light beige tiles and a drop ceiling with recessed lighting. +sun_bsnpwzbtozkrgffx.jpg The cafeteria features pastel green chairs and cream-colored tables arranged in rows, with pink pillar accents and a spacious layout that includes large windows and plants under soft, natural lighting. +sun_asmgjtugettzplzi.jpg The cafeteria features soft yellow walls with square windows allowing natural light, light brown tables paired with matching wooden chairs on a grey tile floor, complemented by wall-mounted art and a potted plant, viewed from an angle showing the room's depth. +sun_baestfykdspfjxqz.jpg The cafeteria features an expansive array of blue plastic chairs lined uniformly around gray tabletops, with a bright, well-lit background framed by large windows and white walls, creating an orderly and spacious atmosphere. +sun_aughckodglpirnxy.jpg The cafeteria features long rows of metallic tables and round stools with a polished floor in a bright environment, highlighted by green partitions and service areas labeled "Eagle Cafe" on the far wall under a high ceiling with square tile patterns. diff --git a/utils/area/descriptions/sun/generated_descriptions/campsite_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/campsite_descriptions.txt new file mode 100644 index 0000000..fda0cf4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/campsite_descriptions.txt @@ -0,0 +1,13 @@ +sun_aztnmurvoyoehwfv.jpg The campsite is viewed from a distance and is situated on a grassy field with patches of brown earth, featuring several scattered tents predominantly colored in dark blues and greens, set against a backdrop of a clear blue sky and distant trees along the horizon. +sun_ajesrezktozovics.jpg A green and blue tent is set up on a grassy field with a red and purple motorcycle nearby, partially obscured by a striped windbreaker; a man is in the foreground holding a cricket bat with trees and a clear blue sky in the background. +sun_azyqrslcfuliwiez.jpg A colorful, tented campsite with a multitude of tassels, woven rugs, and wicker baskets sits on green grass, surrounded by palm-like potted plants, creating a vivid and eclectic environment. +sun_alcecqjdcjnxhdir.jpg A campsite with several white and gray caravans is positioned on a vibrant green grassy field, surrounded by lush trees under a partly cloudy sky, with a gravel path and utility pole visible in the foreground. +sun_alkofwkswrrcpawf.jpg The campsite features several vehicles, including a red SUV and a blue truck, parked on lush green grass with a dirt road in front, surrounded by tall, leafy trees and tents under clear blue skies, creating a vibrant and natural outdoor atmosphere. +sun_awrzqgstkxgxcwec.jpg A large, dome-shaped tent with red and white panels and a black base is set on a leaf-covered forest floor, with colorful autumn trees surrounding it, while two people are seated near a campfire with clothes hanging on a line and a picnic table in the background. +sun_acjlrbgbxnkdydjx.jpg A gray dome tent with a subtle checkered pattern is pitched on a sun-dappled, dry dirt ground, surrounded by dense greenery and tall, thin trees with sunlight filtering through the foliage. +sun_aecpeydhuzrghoad.jpg A vibrant green dome-shaped tent is set up in a shady forested area, with dappled sunlight filtering through the dense trees, positioned next to a picnic table covered with a light green cloth, and the forest floor is scattered with pine needles and patches of sunlight. +sun_amvxuvmotxbpgvqe.jpg A pale blue and white tent with pink accents sits in front of a white caravan, surrounded by bicycles under the leafy shade of trees on a grassy area, with visible folding chairs and a clear blue sky in the background. +sun_airpvitrxhkkvuot.jpg A group of light-colored RVs and trailers are positioned at the edge of a grassy, patchy dirt field lined with trees, under an overcast sky, with one set under a large metal canopy and accompanied by scattered patio furniture. +sun_audllvvahbkdscsw.jpg A light blue tent with a smooth texture stands on flat, bare ground surrounded by a semicircle of rocks, amid tall, dense trees with green foliage and a backdrop of stacked logs, accompanied by a few dark-colored chairs and a red cooler. +sun_adubzegaqwgnrwne.jpg A lush, vibrant green campsite features a white caravan on the left, a vivid rainbow arching across a cloudy sky, and a wooden picnic table in the foreground surrounded by scattered trees and tents. +sun_asoszlnqrbrczqdj.jpg Three low-resolution tents in muted gray and green hues are pitched on a grassy field, viewed from a slightly elevated angle, with a line of trees in the distant background and soccer goalposts faintly visible. diff --git a/utils/area/descriptions/sun/generated_descriptions/campus_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/campus_descriptions.txt new file mode 100644 index 0000000..8fa7277 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/campus_descriptions.txt @@ -0,0 +1,15 @@ +sun_bwifiqpscxsvfgae.jpg A vast grassy quad bordered by light-colored buildings, including a sloped-roof structure, features a walkway adorned with blue paw prints, all set against a clear blue sky with scattered clouds. +sun_albthhletanyjwjn.jpg The campus building, viewed from the front, features a symmetrical design with a rich red brick exterior punctuated by numerous windows, rounded corner towers, a central arched entrance with contrasting yellow doors, all set against a clear blue sky and surrounded by a few shrubs and parked cars. +sun_bfalnlehvueqzxuf.jpg The campus features a modern building with a clean white facade, blue accents, and large dark windows, seen from a ground-level angle with a foreground of neatly maintained green lawns and small trees, against a backdrop of a cloudy sky. +sun_bqdonmainqnkdcoj.jpg The image displays a historic-looking building composed of reddish-brown brick with tall, turret-like structures and arched windows, set against a backdrop of manicured lawns and palm trees, creating an atmosphere that blends classical architecture with a tropical environment. +sun_anlhyjfjqfdgfgzl.jpg The campus features a series of pale pink buildings with numerous rectangular windows and a large central facade, viewed from an angular perspective with power lines overhead and a grassy area alongside a paved path in a sparse, open environment. +sun_ddgptrwuingtasoh.jpg A historic campus view depicts a sunlit, verdant lawn in the foreground, bordered by classical stone buildings with tall columns on the left and brick structures with steep gables on the right, framed by autumnal trees and a clear sky in the background. +sun_dylabfyfkiigefwx.jpg A red brick building with arched windows and intricate detailing stands amidst a tree-lined path, bathed in warm sunlight with a backdrop of a clear autumn sky. +sun_axxmdoprjqnyrmpw.jpg A crowd of people walks on a pathway lined with autumn-colored trees toward a modern building with large glass windows and a dark geometric facade, under a partly cloudy sky that adds depth to the urban campus setting. +sun_azirpzgykhrkmqzz.jpg The campus features a large, brown-brick building with a clock, set against a partly cloudy sky, with an airy courtyard containing small, lush trees and lampposts in the foreground. +sun_bjcholoitrjrcwpy.jpg A grand white building with a central clock tower stands against a cloudy sky, flanked by symmetrical formal gardens and a pathway lined with manicured hedges and sparse winter trees. +sun_akgyyhdnnpenxrwv.jpg The image shows a row of historic, Gothic-style buildings with pointed roofs and ornate architectural details, set against a clear blue sky, viewed from a distance across a green lawn with scattered autumn-colored trees. +sun_buglpzhpmmooibek.jpg The campus features modern, rectangular white and beige buildings with horizontal stripes situated on an expansive, sloping green area with paved walkways, viewed from an elevated angle under a clear, bright sky. +sun_azhizuriiuroarih.jpg The image shows a campus entrance with two brick pillars topped with lanterns, leading to a tree-lined pathway and framed by a clear blue sky and greenery, giving it a formal and serene appearance. +sun_axkpwphidgrldnjy.jpg A historic campus with stone buildings featuring gothic-style architecture and a prominent tower is set against a clear blue sky, viewed from a ground-level perspective with ornate stone railings in the foreground and lush green lawns and trees in the background. +sun_axtadyexrbgtzobs.jpg The campus features a large, historic brick building with a steeply pitched roof and ornate tower, framed by red and orange autumn trees against a clear blue sky, with a wrought iron fence and rows of bicycles at the forefront. diff --git a/utils/area/descriptions/sun/generated_descriptions/canal_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/canal_descriptions.txt new file mode 100644 index 0000000..1ac64a7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/canal_descriptions.txt @@ -0,0 +1,15 @@ +sun_bvwefeqflhvtsydm.jpg The canal is murky green-gray with a smooth, reflective texture, viewed from a low angle with a narrowboat in the distance against lush green foliage and a white concrete bridge arching over the right side. +sun_blkewdnhetmusdtm.jpg The canal features a vibrant blue hue with gentle ripples, viewed from an elevated angle, surrounded by ornate, Venetian-style architecture with white columns and brick accents, and filled with gondolas creating a lively, urban backdrop. +sun_bjgptifbjypvanrg.jpg The canal, viewed from a bridge, features a muted grayish-blue water surface lined by textured stone embankments and flanked by historical buildings with a blend of pastel colors, set against a background of overcast skies and lush green trees. +sun_brfkbajowtzsysef.jpg A gently curved, dark gondola with a person standing at one end is floating on a pale green canal in front of an ornate stone bridge, surrounded by historic brick buildings with arched windows, under an overcast sky. +sun_bdcrbnhvzqcejrot.jpg A tree-lined canal with calm, murky brown water is viewed slightly from above, showcasing boats navigating through a narrow passage surrounded by moored houseboats and buildings, with lush green foliage and a small bridge in the background. +sun_aqvlqqorjorxjwnh.jpg The canal, viewed from above, features a narrow waterway with a murky green surface, lined by a series of colorful moored boats and flanked by aged, earth-toned buildings with weathered facades and verdant window plants, culminating in a distant low-arched brick bridge. +sun_bermrndkaczimcsp.jpg A serene canal reflecting a murky greenish-brown hue is flanked by colorful narrowboats and lush green trees, viewed from a slightly elevated angle with a charming riverside cottage visible on the left. +sun_bqroioqpjctxmnaa.jpg The canal, viewed from a slightly elevated angle, features brown, gently rippling water lined by brick arch bridges, with distinctive narrow, gabled row houses and sparse trees in the background under a clear sky. +sun_bexiyirxwdmantvf.jpg The canal, viewed from an elevated angle, showcases a series of colorful narrowboats with red, green, and navy hues lining its reflective surface, bordered by a grassy bank and backed by a modern brick building with vaulted roofs under a partly cloudy sky. +sun_bpsblunekvypkeyx.jpg A tranquil canal with clear reflective water is flanked by a tree-lined path with metal railings, featuring a white tour boat and a cyclist in the foreground, against an urban backdrop of high-rise buildings and verdant parkland under a blue sky. +sun_bzxszikqdwiwhyjo.jpg A narrow canal with dark rippling water reflects surrounding dense green foliage and a grey-roofed house with people in the background, while a red canoe with two occupants travels down the waterway under a canopy of overhanging trees. +sun_bjhgqmxjqmwtfdfz.jpg The canal appears in a wide view with murky green water surrounded by vibrant, multi-colored historic buildings under overcast skies, featuring a bustling scene with boats moored along the sides and narrow pedestrian walkways flanking the waterway. +sun_bixrgkjvzuambpgf.jpg A serene canal lined with historic brick buildings, featuring boats moored alongside, is viewed from a narrow angle with its calm, reflective water and framed by leafy green trees under a cloudy sky, dominated by a prominent, ornate clock tower in the background. +sun_bwbbfvsqshlvjjet.jpg The image depicts a vibrant canal with a deep blue hue, flanked by historic Venetian buildings with ornate facades, viewed from an elevated angle, and featuring gondolas gliding on the water against a backdrop of a large domed church and colorful, weathered structures. +sun_bntwohnhclgfhaig.jpg The canal features murky, brownish water reflecting nearby historic brick buildings and trees in a linear, perspective view, with parked boats lining the banks and overcast skies visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/candy_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/candy_store_descriptions.txt new file mode 100644 index 0000000..789c06e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/candy_store_descriptions.txt @@ -0,0 +1,10 @@ +sun_adomfndhzlfgqlvx.jpg The image depicts a market-like stall adorned with hanging bananas and various fruits, with a person in a white shirt standing in front of vibrant floral and red fabric elements, creating a colorful and bustling atmosphere. +sun_aapcxvfuiupvehvo.jpg The candy store features a dimly lit, warm-colored interior visible through large glass windows with a distinctive illuminated script sign and a diverse array of colorful candies and pastries displayed on shelves, set within a classic architectural facade. +sun_axwpkbhfeatfjbjx.jpg The candy store features vibrant, multicolored candy-filled tubes lining the wall in a glowing neon pink and purple environment, with smooth, curving counters and a textured, speckled floor in a playful, futuristic atmosphere. +sun_afzpxnkfrkfcypwd.jpg Rows of clear bins display an array of colorful gummy candies with glossy textures, including vivid reds, yellows, and oranges, viewed at an angle in a bright, organized candy store setting. +sun_acvgjyqdhizoityf.jpg The candy store features a colorful and eclectic display of assorted sweets in transparent bins, with vibrant packaged candies and lollipops lined up on racks against a soft pink wall backdrop, viewed from an angled front perspective. +sun_autppbuwrckoxkti.jpg A vibrant candy store showcases a variety of round, golden-brown and chocolate-colored baked goods displayed on wooden trays with small chalkboard signs, set against a warm, wooden backdrop with shelves, plates, and faintly visible jars in the background. +sun_agenlkfmsbuiklfz.jpg The candy store is vibrant with a wide array of colorful candies displayed on wall shelves and central counters, featuring a bright and playful atmosphere with vivid lighting and a variety of shapes and textures creating an inviting and cheerful environment. +sun_apieeuojtwxmwmey.jpg The candy store interior features muted green cabinetry against a checkerboard floor, adorned with rows of jars filled with colorful candies and seasonal autumn decorations, creating a warm and festive atmosphere. +sun_ambevvtbyvfzxkrr.jpg The image shows a candy store with a variety of transparent containers filled with brightly colored gummy candies, where the foreground features individuals in casual attire holding clear plastic bags, set against a backdrop of organized shelves and soft lighting. +sun_azxanmgjozztwmwi.jpg The candy store features an ornate design with warm brown tones and intricate textures on the ceiling and walls, viewed from an angle emphasizing glass display cases filled with various sweets, against a backdrop of patterned tiled floors and ambient lighting that highlights the vintage elegance of the interior. diff --git a/utils/area/descriptions/sun/generated_descriptions/canyon_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/canyon_descriptions.txt new file mode 100644 index 0000000..55e2938 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/canyon_descriptions.txt @@ -0,0 +1,15 @@ +sun_awranbsmpjfxcumb.jpg The canyon showcases a series of striking, vertical rock formations with warm orange and cream hues, accentuated by rugged textures and set against a wide-ranging backdrop of distant mesas under a clear blue sky. +sun_adckoecfpgdntquo.jpg The canyon displays stratified layers of reddish-brown and beige rocks with rugged texture, viewed from an elevated perspective, revealing a vast expanse with additional formations in the distant background under a clear blue sky. +sun_agqpslogrjggswbr.jpg The canyon features steep, rugged cliffs in shades of orange and brown with a layered texture, viewed from an elevated angle against a backdrop of distant, flat land beneath a partially cloudy sky. +sun_aaujfwgfegnrqxbd.jpg The image shows a massive dam nestled between rugged, rusty-red canyon walls, with a smooth, towering concrete surface standing in stark contrast against the textured rock face, under a clear sky with expansive open land in the distance. +sun_apuwqhnxyyoryrhd.jpg The canyon features reddish-brown, layered rock formations with jagged peaks, viewed from a ground perspective, against a backdrop of distant ridges and sparse green vegetation in the foreground. +sun_aubjkxtsprugjtpz.jpg The canyon features rugged, light brown rocky walls with varied textures, rising steeply from the clear, reflective water below, set against a bright blue sky. +sun_atrvpyuqvefmqcey.jpg The canyon features a striking array of vertical orange-red rock formations with rugged textures viewed from an elevated angle, set against a backdrop of scattered green pine trees on an uneven, sandy terrain. +sun_ayqvlnplqamhroqw.jpg The canyon features layered red and orange rock formations with steep, jagged cliffs, covered in patches of snow, under a partly cloudy sky, framed by evergreen trees in the foreground and a vast, expansive view into the distant canyon landscape. +sun_aiygmeizvjhdqbep.jpg The canyon appears with steep, shadowy cliffs in varying shades of brown and gray, displaying rough, striated textures with a deep, narrow gorge visible from a high vantage point and a soft blue sky peeking through the gaps. +sun_ahjurotycrbzmlrr.jpg The canyon features vibrant orange and red rock formations with a rugged, spire-like texture seen from an elevated viewpoint, surrounded by sparse greenery and a clear blue sky, creating a striking contrast against the earthy hues. +sun_asjtrqgzgtdamrlt.jpg Reddish-brown layered rock formations rise against a backdrop of partly cloudy blue sky, with a prominent cross-shaped structure embedded near the peak. +sun_adouftgdrzsideja.jpg The image depicts a canyon with layers of reddish-brown rock formations, observed from an elevated viewpoint, with a vast, rugged expanse stretching out under a clear blue sky, and sparse vegetation visible in the foreground. +sun_ajtvysscoirnzowp.jpg The canyon features warm, rust-colored rock formations with layered striations, viewed from a side angle against a clear blue sky, with sparse greenery at the base enhancing the rugged texture and depth. +sun_araruqcnvlotlmus.jpg The canyon features a striking array of tall, orange hoodoos with rugged textures, viewed from a high vantage point, set against a backdrop of distant mesas and a blue sky. +sun_aoynbjkebmfifolc.jpg The canyon features layers of rich red and brown hues with rugged, textured cliffs, viewed from a high vantage point with expansive vistas, surrounded by sparse vegetation and distant flat plains under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/car_interior_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/car_interior_descriptions.txt new file mode 100644 index 0000000..0140744 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/car_interior_descriptions.txt @@ -0,0 +1,10 @@ +sun_bcbwccvsvaufgxsv.jpg The car interior features a beige leather texture with wood trim accents, viewed from the back seat facing a dashboard equipped with a central console and a clean, minimally detailed background. +sun_dszbcethzezzzftn.jpg The car interior features beige leather seats with a smooth texture, shot from a side angle highlighting both front seats and a neutral dashboard, set against a plain gray background. +sun_abhjsykwmazvljrd.jpg The car interior features dark gray fabric seats with a textured pattern, viewed from an elevated perspective toward the front, displaying a simplistic dashboard with a central console holding multiple cup holders and a digital display, set against a light gray carpeted floor and a surrounding environment that suggests a compact vehicle design. +sun_aqlsbltniccotdqb.jpg The car interior features light gray leather seats with smooth textures and a child car seat with a plaid pattern, viewed from the rear passenger side, against a backdrop of a parking area visible through the rear window. +sun_axsnrmeoojcyvtfv.jpg The car interior features smooth, light gray leather upholstery with dual rear headrests, central seat belts, and a convertible design highlighted by an open top and a glimpse of outdoor foliage in the background. +sun_dmaijtlgsyzstkfx.jpg The car interior features white leather seats with gray inserts and a black steering wheel, viewed from the passenger side with a green and black door panel, and includes circular air vents and multiple dashboard-mounted gauges. +sun_dbyebdvrbglslywu.jpg The car interior features a retro design with turquoise panels, a smooth texture, and a view highlighting the sleek dashboard and steering wheel, set against a gray carpeted background with uniquely shaped bucket seats and chrome accents. +sun_dvstfjpskuyhigjy.jpg The car interior features a gray and black color scheme with leather upholstery, a sporty and angular dashboard design seen from the passenger side, classic-style circular air vents, and a prominent gear shifter in the center console. +sun_aosmdvbhccktkzvz.jpg The car interior features gray, textured fabric seats visible from an open-side viewpoint with a red metallic trim, showcasing a simple, vintage design with minimalistic door handles and a glimpse of a natural, wooden background through the windows. +sun_dqluxuibgbtkliiu.jpg The car interior features vibrant yellow and white seats with a smooth texture, a large matching steering wheel, and a modern dashboard, viewed from the driver's side, set against a contemporary showroom environment with glossy black and beige accents. diff --git a/utils/area/descriptions/sun/generated_descriptions/carrousel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/carrousel_descriptions.txt new file mode 100644 index 0000000..6e39347 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/carrousel_descriptions.txt @@ -0,0 +1,16 @@ +sun_afdwwbikjgrvkser.jpg The carrousel features a vibrant red and white striped canopy with decorative elements, seen from the side, surrounded by lush greenery and outdoor seating, with intricately painted animal figures including a horse and a deer as distinguishing features. +sun_afukmlyextjcdfmz.jpg The carrousel features brightly colored horses with detailed saddles, set against a vivid red and ornate canopy adorned with intricate patterns and surrounded by a bustling amusement park environment. +sun_ahitjiaidgmhllto.jpg The carrousel features a colorful array of retro-style vehicles and a vibrant, illuminated canopy with floral patterns, viewed from the side against a lively fairground setting. +sun_aymnrnvresdpvxml.jpg The carrousel features a blue and white canopy with illuminated decorative panels, viewed from the side against a park setting with surrounding trees and yellow flowers in the foreground. +sun_aecexycdojfkpgrd.jpg The carousel features intricately painted horses in hues of yellow, white, and black with ornate saddles, surrounded by a canopy of twinkling lights and set against a vibrant amusement park backdrop. +sun_atewcayvsqftlvhp.jpg The carrousel in the image features a glossy, white horse with a golden pole, surrounded by warm yellow lights illuminating a festive, outdoor setting with blurred figures and barriers in the background. +sun_aojhxprklmjabfjb.jpg The carrousel features a pink, ornately decorated canopy adorned with antique-style paintings and a perimeter of bright, round lights, set against a backdrop of trees and archways, with the viewer's perspective capturing it from an angle that showcases the horses in motion through the metal fencing surrounding it. +sun_axbxmfyjjcemwpfr.jpg The carousel features ornately carved, brightly painted horses with glossy black, white, and chestnut colors, adorned with elaborate saddles, set against a backdrop of warm glowing lights under a spacious indoor ceiling with visible structural beams. +sun_akivqhsdzavbqkvv.jpg This carousel is viewed from the side, featuring a red and white striped canopy with gold accents, a wooden platform, and intricately painted horses with a grassy field and trees in the background. +sun_aqfwgeehyzeaeuxo.jpg The carrousel features a brightly colored horse with a white body adorned with blue and gold accents, viewed from the side with children riding it, set against a vibrant backdrop of ornate, illuminated decorations and additional carrousel animals. +sun_ahstagxckjbzrlwo.jpg The carrousel features a white horse with colorful floral patterns and a pink, ornate crescent-shaped car amidst a vibrant, festively lit scene with black garlands, viewed from the side with a fairground backdrop. +sun_amxxltxsnzbjosmk.jpg The carrousel horse is painted a glossy beige with ornate gold, red, and green detailing on the saddle, viewed in profile with its front leg raised against a blurred background of other carrousel figures on a polished surface. +sun_abvwmfpynokyncvt.jpg The carrousel features a colorful, tent-like canopy with vivid painted murals displaying animals, viewed from a side angle in an urban square, with ornate, detailed horses and a green and white chariot, surrounded by people and modern buildings. +sun_asftrklxizngxfas.jpg The carrousel features vibrantly painted horses with elaborate designs, seen from a side-on perspective under a canopy of colorful lights, set against a backdrop of intricate, ornate patterns. +sun_adsafgyrinnekycc.jpg The carrousel features vibrant red and gold colors with ornate detailing and lights, viewed in motion from a side angle, set against a blurred background of the evening sky, with intricately painted horses and lit-up panels contributing to its festive appearance. +sun_aeibjsycnoeaejiv.jpg The carrousel features a bright orange and blue color scheme with intricate gold embellishments, seen from a frontal angle, set against a backdrop of an amusement park atmosphere with visible tiger figures and a striped canopy above. diff --git a/utils/area/descriptions/sun/generated_descriptions/casino_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/casino_descriptions.txt new file mode 100644 index 0000000..4129b37 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/casino_descriptions.txt @@ -0,0 +1,13 @@ +sun_ahvtedhgqvpcjhts.jpg A dimly lit interior showcases a row of slot machines with brightly colored neon signs featuring reds and blues, against a dark carpeted floor and a muted wall backdrop, with a single person visible among the illuminated machines. +sun_admhiawantxtzvac.jpg A person stands behind a black and teal gaming table featuring playing cards, against a colorful backdrop of a scenic bridge lit up at dusk, with the text "Seven Luck" prominently displayed above. +sun_aggfcjujvpqwipzb.jpg The photo depicts a red and blue poker table with multiple chairs set on a dark carpet in a dimly lit room, surrounded by rows of empty, black upholstered chairs, and featuring several visible poker chips and cards, creating a formal gaming atmosphere. +sun_atmpbcqcmuifuzaw.jpg A dimly lit, expansive casino floor is viewed from a low angle featuring rows of glowing, colorful slot machines with flashing lights, set against a background filled with ornate ceiling patterns and neon signage. +sun_akwimxlccckvdwqv.jpg A lively casino scene is depicted with a vibrant teal-colored craps table surrounded by people in formal attire under the glow of warm ambient lights and softly illuminated slot machines in the background. +sun_ahpriwupsxwhsafj.jpg A row of slot machines with vibrant, colorful displays and chrome details are aligned against a plain wall, viewed from an angle showing black housing and dark green chairs with gold lettering in front. +sun_aadbdepxqipklvvf.jpg The casino interior is brightly lit with multicolored neon signs and slot machines front and center, showcasing a busy atmosphere with people seated at machines within a vibrant, reflective environment featuring mirrored ceilings. +sun_aqzkhyvbyvjtpbao.jpg The dimly lit casino features a predominantly warm, orange glow with numerous slot machines lining the background, and a dark, expansive ceiling, with view from above accentuating the bustling atmosphere below, while a small, out-of-focus plastic penguin in the foreground adds an unexpected whimsy. +sun_aczwgavqicqxxnjl.jpg The casino features a grandiose, high-ceilinged room with elegant chandeliers, deep red carpeting and curtains, and multiple gaming tables surrounded by people, arranged in a circular fashion, set against an ornately decorated interior with cream-colored walls and pillars. +sun_azvdvlppoitgqmmy.jpg A group of people gathers around a green-felt poker table covered with playing cards, under a ceiling adorned with festive red streamers, emphasizing an informal, party-like casino setting. +sun_ayxjmmmkjcvnihuk.jpg The casino appears dimly lit with an illuminated, ornate archway labeled "Le Salon des Tables," featuring a brightly colored neon sign and stylized slot machines, set against a backdrop resembling a night sky with lamp posts casting a warm glow. +sun_aagpadlsccdmxuig.jpg A casino dealer in a vest and bowtie is dealing cards on a blue felt table adorned with colorful logos and text, surrounded by illuminated slot machines in a dimly lit environment. +sun_ajphbvzfhgpiqued.jpg The casino features green felt tables arranged in a spacious, elegant room with beige walls and soft lighting, surrounded by brown chairs and highlighted by a decorative plant in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/castle_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/castle_descriptions.txt new file mode 100644 index 0000000..841b5c5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/castle_descriptions.txt @@ -0,0 +1,16 @@ +sun_bzpxvhbrgytolsbz.jpg The castle is a multi-story stone structure with turreted towers and a textured facade, viewed from across a river with an old stone bridge in the foreground, nestled in a lush landscape of rolling hills and greenery. +sun_angzaadclwsplkoc.jpg The image shows a light-colored castle with distinctive red shutters and two round towers with conical roofs, surrounded by lush greenery and a bright blue sky, with a manicured lawn and a small, white bench in the foreground. +sun_aczyjfgjswcnkrpr.jpg The castle is a weathered, beige-brown stone structure with tall circular turrets, partially in ruins, set against a countryside backdrop with a moat-like reflection in the foreground. +sun_ahhyuptsykywnqhx.jpg A sprawling, stone-gray castle with textured, towering cylindrical turrets is seen from a slightly elevated viewpoint, set against a picturesque backdrop of mountains and framed by a lush green landscape dotted with small residential buildings. +sun_abvilellrddlmlet.jpg A pale yellow, rectangular structure with cone-roofed turrets is viewed from a slightly elevated angle with lush greenery and large trees in the background, featuring distinctive red window shutters and a nearby swimming pool area with a stone wall perimeter. +sun_aibcvarwcudoknhr.jpg The image shows a stone castle wall in muted grays with crenellations and two prominent, tall, pointed towers in a Gothic style, viewed from the ground level, set against a clear sky and surrounded by a neatly maintained garden with a manicured bush and vibrant flowerbeds. +sun_alalkgfoqjcbznpc.jpg The castle features beige stone walls with a textured, weathered appearance, viewed from a slightly angled perspective showcasing intricate pointed towers with patterned roofs, set against a backdrop of lush greenery and a partly cloudy sky. +sun_axuagpqjithvhjlt.jpg The castle features a mix of red brick and beige stone textures with a prominent tower and turrets viewed from a frontal angle, set against a partially cloudy sky, with intricate crest details above the arched entrance and surrounded by a bustling crowd in a landscaped setting. +sun_abmkqvtbasxdrdje.jpg The castle features a white and grey stone facade with multiple pointed towers and intricate roofline spires, viewed from the front amidst a lush garden with blooming pink flowers under a clear blue sky. +sun_alfklkcgxhhyubjz.jpg The castle displays a series of cylindrical towers featuring alternating pale and dark stone stripes, viewed from a slightly elevated angle against a backdrop of clear blue sky and sparse winter vegetation. +sun_auibwkroxsyrvmny.jpg A dilapidated, earthy-toned stone castle ruin is shown from a slightly low angle, surrounded by lush greenery and set against a clear sky, with a distinctive winged statue rising from one corner and modern outdoor seating at its base. +sun_aaduowpeqzaulmwq.jpg The castle displays light beige, stone-textured walls with round towers viewed from an elevated side angle, overlooking a vibrant blue sea and a small marina filled with white boats, set against a backdrop of distant white buildings along the coastline. +sun_ardcufegzmczlenz.jpg The castle, appearing from a slightly elevated viewpoint, exhibits a gray, textured stone facade with prominent battlements, set atop a rocky hill amidst lush greenery, with a tree-lined backdrop and a glimpse of water in the foreground. +sun_arkxdnmjanapnhyx.jpg The castle features pale gray stone walls with a weathered texture, viewed from a low angle looking up at its crenellated towers, set against a lightly wooded and grassy backdrop. +sun_aroazcovygzydjpl.jpg The castle, viewed from a side angle, features weathered sandy-colored stone walls with narrow vertical windows, set against a bright blue sky and sparse tree-lined landscape, with an expansive green lawn in the foreground. +sun_aedwlioqpfefnsyn.jpg The image depicts a light-colored, stone castle with a steep roof and symmetrical façade seen from a frontal angle, surrounded by lush green vineyards in the foreground and trees partially framing the sides against a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/catacomb_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/catacomb_descriptions.txt new file mode 100644 index 0000000..320b851 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/catacomb_descriptions.txt @@ -0,0 +1,16 @@ +sun_aofrsooyntvqaimk.jpg The catacomb features rough, light-brown stone walls with a prominent arched entryway, viewed from a side angle, leading into a dimly lit chamber with rustic wooden seating and medieval tools adorning the textured surfaces. +sun_azlfwosscnzmqnxr.jpg The catacomb features narrow stone passageways with warm, earthy hues and a texture of rough-hewn walls, viewed from an interior perspective highlighting the repeated, shadowed alcoves and a dimly lit, enclosed underground ambiance. +sun_asbnfwpsmzrxscxp.jpg The catacomb features rough, sandy-textured stone walls with rows of recessed niches, captured from a narrow perspective that emphasizes the tunnel's linear depth, with a dimly lit, shadowy environment highlighting its ancient, weathered qualities. +sun_awfrkhfuxnogrbta.jpg The catacomb features rough, earth-toned stone walls with uneven textures, seen from a slightly elevated side view, and is dimly lit by an overhead light casting shadows, with narrow passageways carved into the rock. +sun_auuhcjzejgrgujrt.jpg The catacomb is dimly lit and features rough, uneven stone walls with a narrow passageway, illuminated by yellow lights creating a warm glow, and has a shadowy, enclosed environment. +sun_aoicptfgbaafxvix.jpg The catacomb appears in warm, golden-yellow hues with rough, textured stone walls, viewed from a low central angle showing a narrow arched passage leading into darkness, with distinct recessed alcoves and uneven floor visible against dimly lit surroundings. +sun_aiaepdnehkfzmnca.jpg The catacomb appears in dull gray and brown tones with a rough, stone texture, viewed from an angle showing an arched corridor with shadowy recesses and graffiti on the walls, surrounded by a dimly lit, cave-like environment. +sun_aqvcmzrwypphupsg.jpg The catacomb exhibits a narrow stone passageway with earthy tones and rough textures, illuminated by a single overhead light casting a warm glow, flanked by arched alcoves on either side with a slightly uneven stone floor. +sun_awakucwpcyaxmruj.jpg A catacomb with rough, sandy-brown walls and a circular opening surrounded by uneven stone debris, viewed from a frontal perspective, with horizontal striations and a dimly lit interior. +sun_adnrcuutghwggmnl.jpg The catacomb features a reddish-brown, brick-textured wall leading to a narrow arched passage with a staircase, illuminated faintly from above, and flanked by a rough stone and brick surface that accentuates the dimly lit, enclosed underground environment. +sun_aauuytnrpbdfyftz.jpg The image depicts a catacomb with a warm, earthy color palette highlighted by orange and beige tones, featuring a series of arched alcoves and stone textures, with faded frescoes and geometric patterns on the walls, under a curved ceiling with visible cracks, set against a rough brick recess in the background. +sun_afrntypyqcenifoi.jpg The catacomb's interior showcases earthy brown and beige hues with rough, textured stone surfaces, viewed from the front to reveal multiple recessed burial niches, surrounded by faint, painted frescoes against a rustic, rock-lined background. +sun_ayaurahjbkhfbinu.jpg The image depicts a dimly-lit catacomb with rough, textured stone walls in shades of gray and brown, featuring a narrow arched tunnel-like perspective leading to an altar adorned with religious icons and cloths, while framed paintings line the walls and ground along the left side. +sun_aknfnuqnxcqyqxuq.jpg The image depicts a dimly lit, rough-textured catacomb with reddish-brown and gray stone walls, partially brick-laden, showing an archway in the background and exhibiting uneven, worn surfaces and mossy patches. +sun_agsblffhihnrudsf.jpg The catacomb features dark gray stone arches with smooth textures, viewed from an elevated perspective leading into a dimly lit chamber with intricate floor designs and warm, ambient lighting highlighting the stone architecture. +sun_azlmoutbdfdxbbfc.jpg The catacomb is a dimly lit, narrow tunnel with rough, earthen walls and ceiling in shades of brown and golden yellow due to the overhead lighting, with visible niches along the sides and an arched, stone-textured passage leading further into the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/cathedral_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cathedral_descriptions.txt new file mode 100644 index 0000000..86462c6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cathedral_descriptions.txt @@ -0,0 +1,14 @@ +sun_bqhdmuhtplzjwsvg.jpg The cathedral features a striking combination of light brown stone with intricate Gothic detailing, viewed from ground level, with tall spires reaching upwards against a cloudy sky, set in an urban environment with bustling streets and modern cars in the foreground. +sun_bdmofkxskgyloqhv.jpg The cathedral features tall, grey stone towers with intricate Gothic spires, viewed from the front-left against a cloudy sky, and is surrounded by a manicured lawn with several trees and parked cars in the foreground. +sun_bahriwbkduligeik.jpg The cathedral features a tall, pointed spire and smaller spires, constructed from light brown stone with a smooth texture, viewed from a street-level perspective surrounded by lush green trees and urban elements, with a clear blue sky in the background. +sun_blschektqreaqazn.jpg The cathedral, viewed from a side angle, features light stone walls with a clock tower topped by a domed white cupola, surrounded by leafless trees and set against a cloudy sky. +sun_ayovuzbxjucqhbao.jpg The image depicts the interior of a cathedral with tall, arched stone columns and a ribbed vaulted ceiling, bathed in soft, diffused light, with stained glass windows and a detailed altar visible in the distance. +sun_brggypqhqgguuxmo.jpg The cathedral features two illuminated towers with a warm beige facade, visible from a nighttime viewpoint with a dark sky and intricate column details accentuated by dramatic lighting. +sun_bmfpsolkgtxlubmf.jpg The image shows a cathedral with light beige stone walls, a prominent central dome, a large arched window, and a triangular front façade flanked by tall columns, with a slate roof and a cobblestone plaza in the foreground amidst surrounding old European-style structures. +sun_byoktqntylfgpplr.jpg The cathedral is viewed from the front, showcasing its ornate Gothic architecture with tall spires and intricate stone carvings, a light gray and sandy beige color palette, and it is set against a partly cloudy sky with adjacent medieval-style stone buildings visible on the right. +sun_bigjiiqpwgyemklt.jpg The cathedral features a textured light gray stone facade with prominent clock towers, viewed from a slightly angled upward perspective against a cityscape backdrop of modern buildings, highlighting its traditional architectural elements like arched windows and a cross-topped gable. +sun_blolhoyklcitzywn.jpg The cathedral features a light gray stone facade with intricate Gothic architectural details, including pointed arch windows and pinnacles, viewed from a low angle against a clear blue sky with a lamp post nearby. +sun_ahyglglhhuxzzpnm.jpg The cathedral interior is characterized by its light grey, stone-textured columns and arches, viewed from a central aisle vantage point, with distinctive chandeliers, vibrant iconography on a wooden iconostasis, and a dome lit by arched windows set against a backdrop of pews and small gathering of people. +sun_beomwjayzmifbbsf.jpg The cathedral in the image features light cream-colored walls with intricate carved details, viewed from the front with its twin bell towers distinctly visible, set against a cloudy sky and an open, cobblestone courtyard. +sun_blmxwodtagvdiqjq.jpg The image shows a grand cathedral with a large central dome and a wide facade of tall colonnades, viewed from the front with a green garden in the foreground, under a clear blue sky. +sun_azwghkyfprwbmmuq.jpg The low-resolution image shows a stone-colored cathedral with a textured, aged façade featuring two oval decorative elements above a prominent arched entrance, framed by adjacent stone buildings, with architectural details partially obscured by shadows. diff --git a/utils/area/descriptions/sun/generated_descriptions/cavern_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cavern_descriptions.txt new file mode 100644 index 0000000..1c0e5e3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cavern_descriptions.txt @@ -0,0 +1,16 @@ +sun_ahixbvnpoghukryb.jpg The image depicts a cavern with warm golden-brown stalactites and stalagmites that appear layered and rough in texture, viewed from an angle showcasing a narrow passageway illuminated by a distant light source, surrounded by shadowy walls. +sun_agemqswtqpaumisk.jpg The cavern displays a warm palette of browns and beiges with textured stalactites and stalagmites extending vertically, surrounded by a rugged, rocky backdrop with intricate mineral formations. +sun_akaeugvancwoiknl.jpg A dimly lit, arched cavern area with textured brick walls frames a musician playing a guitar on a small stage with a yellowish glow illuminating part of the scene, while "The Cavern" signage appears in the foreground. +sun_awibbhtejiewqjss.jpg The cavern displays a warm, earthy brown hue with a rugged, textured surface viewed from a low, side angle, featuring smooth, undulating rock formations and partially obscured by a person in the foreground. +sun_aidaupmwzyffmiwu.jpg The image shows a cavern with a reddish-brown rock surface possessing a rough, textured appearance, viewed from an angle that reveals a layered formation with darker shades in the recessed areas and a shadowy background. +sun_ajviujlvrlqbbixl.jpg The cavern features a rough, textured surface with a palette of earthy browns and tans, showcasing delicate white stalactite formations hanging intricately from the ceiling against a shadowed, rocky background. +sun_ajvxijrwnrbukdyv.jpg The cavern displays a mix of earthy brown and gray hues with rugged, textured rock walls, viewed from inside alongside a stream with two figures in outdoor gear traversing the watery foreground, while distinctive stalactites hang from the ceiling. +sun_apiybakmstfqfrqq.jpg The image depicts a dimly lit cavern with a reddish-brown hue, showcasing a skeletal figure lying flat on the rocky ground amidst a rugged and shadowy cave setting. +sun_ayzwjcmfporzrkdq.jpg The cavern has a dark, rocky texture with varying shades of brown and grey, viewed from the side showing a lit path with dim artificial lighting that highlights stalactites and stalagmites amidst an expansive rocky interior. +sun_aadfkenqeixsswhx.jpg The cavern displays a range of warm brown hues with a rugged, textured surface, featuring stalactites and stalagmites prominently jutting upwards and downwards, with subtle reflective glimmers indicating moisture, amidst a dark, shadowy background that creates a mysterious atmosphere. +sun_aqsyvbwpnbjiotkt.jpg The cavern exhibits jagged, beige stalactites hanging from the ceiling in a close-up view, with a rough, rocky texture, contrasted against a darker, shadowy background that highlights their intricate formations. +sun_afozwocnwezpughq.jpg Amidst a dark underwater environment, a diver navigates around textured, jagged stalactites with varying shades of brown and orange, highlighted by a light source. +sun_aeirxlzqrhofozan.jpg The image shows a cavern with a rough, beige and gray rocky texture, viewed from the entrance, surrounded by uneven rock formations, with a person standing at the foreground, adding a sense of scale to the scene. +sun_agpysxgkeqxnuemb.jpg The cavern displays a textured, brownish-orange rock surface with vertical striations, viewed from a downward angle highlighting stalactites hanging from the ceiling, with a distinctive, creamy-white stalagmite formation on the floor against a shadowy backdrop. +sun_aduiscuqchitvobd.jpg The cavern features a ceiling of elongated, jagged stalactites in warm hues of beige and brown with a rough, uneven texture, captured from a low-angle viewpoint against a dimly illuminated background, highlighting a prominent conical stalagmite in the foreground. +sun_aolkrbsxngqqdzwo.jpg The cavern features jagged stalactites and stalagmites with a rough, bumpy texture in varying shades of beige and brown, while the viewpoint captures a dark, shadowy background suggesting deep recesses within the dimly lit cave environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/cemetery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cemetery_descriptions.txt new file mode 100644 index 0000000..7ad55de --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cemetery_descriptions.txt @@ -0,0 +1,15 @@ +sun_aacyymgpypaxcnmd.jpg The cemetery features light gray, textured gravestones of varying shapes and sizes scattered across a green, manicured lawn, with trees and additional gravestones in the blurry background, all viewed from a slightly angled, ground-level perspective. +sun_agbpvhuhzxmtvimk.jpg The image shows a grassy cemetery with scattered, gray headstones adorned with flower arrangements, set under a canopy of tall, lush green trees with a wire fence in the distant background. +sun_aiyfhmlbqjvylsny.jpg The image depicts a serene cemetery scene with several gray stone gravestones of varying heights and textures, positioned slightly off-center in the foreground against a backdrop of lush green grass, scattered mature trees, and softly illuminated by natural light filtering through the trees. +sun_alfsxaumuuzkzwui.jpg A brightly colored turkey with iridescent plumage stands prominently in a grassy cemetery foreground with white stone crosses, against a lush backdrop of autumn foliage. +sun_alznkmhwkjmmxgcz.jpg The cemetery, with rows of gray and dark headstones scattered uniformly across snow-covered ground, is observed from a slightly elevated viewpoint, framed by a stark leafless tree on the left and a distinct urban skyline with skyscrapers in the hazy background. +sun_ateopnspchmfeaod.jpg The cemetery features rows of clean, white upright gravestones arranged on a slightly sloping grassy lawn with bare trees and a sparse winter forest in the background. +sun_acznqhahuqrvvwez.jpg The low-resolution image shows a cemetery with a dark, iron entry gate featuring an arched sign that reads "BOYD'S METHODIST CEMETERY," set against a lush, green background of trees under a cloudy sky. +sun_aevdbeymsvlktnbx.jpg Rows of light-colored gravestones stand on well-maintained green grass, contrasted against a clear sky and a large structure with columns, while a tree partially obscures the left side of the scene. +sun_aqqgfptomjnjaccv.jpg Rows of plain white headstones are neatly arranged in a vast, grassy field, viewed from a ground-level perspective, with a backdrop of leafless trees under a clear blue sky. +sun_aalfrkfjugaibhuq.jpg A gray stone gravestone with a smooth texture is centered in a grassy cemetery, adorned with a skunk plush toy on top, surrounded by green trees and other scattered headstones under a cloudy sky. +sun_aujitttsvjfmbzvl.jpg The cemetery features an array of weathered gravestones in shades of gray and white, set against a backdrop of lush green trees under a bright sky, with scattered low hedges adding texture to the foreground. +sun_alyzpaldcjosudsg.jpg The cemetery appears under a clear blue sky with numerous light gray and white stone headstones scattered across a lush green grassy landscape, featuring scattered tall evergreen trees in the background. +sun_arsfrrajtmnraqty.jpg A serene cemetery with aged, moss-covered gray tombstones is seen amidst tall, wild grass and lush, green foliage, surrounded by dense trees under a cloudy sky, captured from a slightly elevated angle. +sun_apddocvoxhkwsbee.jpg The cemetery displays a line of dark, polished gravestones with visible inscriptions, set on a grassy lawn with sparse flowers, under an overcast sky framed by bare trees in the background. +sun_awjhiqglqfkdrvec.jpg A low-resolution image shows a cemetery with a prominent barren tree silhouetted against an overcast sky, surrounded by dark gravestones on a gently sloping hill, and the scene is enveloped in a bluish tint giving it a somber, monochromatic texture. diff --git a/utils/area/descriptions/sun/generated_descriptions/chalet_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/chalet_descriptions.txt new file mode 100644 index 0000000..5ba7038 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/chalet_descriptions.txt @@ -0,0 +1,16 @@ +sun_akxyxrsirtmrhwgf.jpg The chalet features a warm brown, wooden texture with a prominent front-facing balcony adorned with decorative railings, set against a snowy mountainous backdrop under a clear blue sky. +sun_alasprrskkfbvnho.jpg The chalet features weathered wooden walls with natural brown hues and rustic texture, viewed from a frontal angle showing its multi-level structure, adorned with small balconies and pink-trimmed windows, set against a mountainous backdrop with greenery and stone elements in the foreground. +sun_aihvgkcealmbdjzp.jpg The chalet features a warm reddish-brown wooden exterior with a stone chimney, viewed from a ground-level angle amidst a backdrop of green trees and rugged rocks on the lawn. +sun_akjnpkfouavtqyhp.jpg The chalet, viewed from a slightly elevated angle, features a warm wooden facade with a stone base, snow-covered roof, and is surrounded by snow-laden trees in a serene winter landscape. +sun_axuvrxvaccakitgk.jpg The chalet has a warm brown wooden exterior with an A-frame roof, green railing in front, and is surrounded by lush greenery and clear blue sky, with large triangular windows prominently visible on the upper floor. +sun_aeiktbaoxsducrcn.jpg A rustic A-frame chalet with dark green vertical siding, prominent red-brown balcony, stone foundation, and set amidst a wooded environment with trees partially obscuring the structure. +sun_aliogreovfhiwgif.jpg The chalet features a stone exterior with a red metal roof, viewed from the front at an angle, set against a backdrop of rugged rock cliffs, with a prominent welcome banner and patio area in front. +sun_ahoegimrkigajprz.jpg The chalet, viewed from a slightly inclined path, features a log cabin texture with a prominent red A-frame roof, nestled amidst a dense green forest under a clear blue sky. +sun_agkekwuwhtuhwyly.jpg The chalet is a warm wooden structure with a steep pitched roof, adorned with decorative carvings on its façade, set against a backdrop of a forested hillside under a clear blue sky. +sun_assnhlzixoodrpab.jpg This chalet, constructed from rich brown wood with vertical paneling, is viewed from the front against a backdrop of snow-covered ground and evergreen trees, featuring two distinct wooden balconies and a white lower facade. +sun_aailmhugmeyacfhc.jpg The chalet, viewed from a slightly elevated frontal angle, showcases a wooden upper section with a warm brown color and a prominent balcony contrasted against a white lower facade, set against a mountainous background with surrounding greenery. +sun_anapyapvyylsxdix.jpg A wooden chalet with warm brown panels and a snow-covered roof, viewed from the front, is set against a wintery landscape with a bright blue sky and evergreen trees in the background. +sun_ayyxgxivqvhwglei.jpg This chalet features a warm, honey-colored wooden texture with a gabled roof, viewed from a side angle that reveals a spacious wooden deck and a backdrop of lush trees and grass. +sun_alubwjinjxgdpcql.jpg A rustic chalet with a curved facade featuring reddish-brown brickwork, arched windows, and a wooden entrance blends seamlessly into the overcast rural backdrop, enhanced by stone details and a clay-tiled roof. +sun_alnlhfcpvmvefvoc.jpg The chalet is a rustic wooden structure with dark brown horizontal planks and a gray slate roof, viewed from a side angle surrounded by lush green grass, a small wooden fence, and a backdrop of autumn-colored trees and distant mountains. +sun_aidpjgseakclsvdf.jpg The chalet features dark wooden siding with large windows, viewed from a slightly elevated side angle, surrounded by dense greenery and set against a backdrop of tall pine trees and a clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/cheese_factory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cheese_factory_descriptions.txt new file mode 100644 index 0000000..a0c3a9c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cheese_factory_descriptions.txt @@ -0,0 +1,10 @@ +sun_dctzsxnjxeelilem.jpg The cheese factory features industrial stainless-steel equipment with a smooth, metallic texture throughout the room, viewed from a ground-level perspective with tubes and tanks lining the beige-tiled walls, while a group of people in the foreground observes a man addressing them near a filled metal vat. +sun_dtsovianedzqumfc.jpg Rows of large, round cheese wheels with a pale yellow, speckled surface are neatly lined on wooden shelves in a long, narrow corridor with dark, arched ceilings and a reflective, light-bathed floor. +sun_dlmsywuofecghfnc.jpg A man in an apron inspects a wheel of cheese, surrounded by rows of large, round, pale yellow cheese wheels resting on rustic wooden shelves in a dimly lit interior with a neutral-toned wall. +sun_dliqdamztylzetbv.jpg The cheese factory features a stainless steel interior with a tiled floor and walls, showcasing large metallic vats and equipment under bright fluorescent lighting, with visible piping and a partially tiled wall in the background. +sun_dioedmltjfpeusgm.jpg In the dimly lit cheese factory, large wheels of pale yellow cheese with smooth, slightly mottled textures are stacked on wooden shelves along the walls, and a person in white attire stands beside them, enhancing the rustic industrial setting. +sun_dzeksjrfwissivee.jpg The image depicts a large, warmly lit cheese factory from an overhead perspective, with a grid of fluorescent lights reflected on a ceiling above a sprawling network of stainless steel machinery and conveyor belts within a spacious, open room with a tile floor and a grid-patterned ceiling. +sun_datjppfjzhykemzb.jpg The cheese factory features stainless steel vats with smooth, reflective surfaces in a tiled, industrial room with a person in white attire working next to them, with overhead pipes and tiled walls enhancing the functional setting. +sun_dytwpoubtnwhcmoh.jpg A copper vat filled with pale yellow liquid and a rotating mechanical stirrer is observed at close range, alongside a person wearing a white apron, in an industrial setting with metallic pipes and equipment in the background. +sun_duzmmalsuumgvkmb.jpg A woman in a white apron and headband is stirring a large stainless steel vat filled with pale yellow cheese curds, positioned against a tiled wall with grey and white squares, in a small, brightly lit room. +sun_dawrvlmsdapxqhau.jpg The cheese factory interior features shelves filled with round, pale yellow wheels of cheese with a smooth texture, seen from a narrow aisle between wooden racks and plastic crates, with a tiled floor and a person in a vest standing near an open doorway, framing an industrial setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/chemistry_lab_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/chemistry_lab_descriptions.txt new file mode 100644 index 0000000..e8349f4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/chemistry_lab_descriptions.txt @@ -0,0 +1,10 @@ +sun_bhweybjvaoxgvhia.jpg The chemistry lab features a bright, sterile environment with white walls and neutral flooring, seen from an angled perspective showing multiple lab benches equipped with various scientific instruments and computers, and it is distinctly populated by a person working amidst organized equipment and cabinetry. +sun_bulqruxltmjniwel.jpg A man in a white lab coat stands among shelves and countertops filled with translucent bottles and scientific equipment in a clean, sterile-looking chemistry lab with white walls and gray floors. +sun_bkgnbwcgkgacydwn.jpg The chemistry lab features a cluttered desk with a central white and gray oven flanked by various blue and metallic equipment, set against large windows with grid patterns providing a view of trees, creating a backdrop of natural light filtering through. +sun_adkmqpgdvpgtqoxg.jpg The chemistry lab features a clean, organized layout with white countertops and cabinets, gas cylinders at the forefront, various laboratory equipment and glassware on shelves, and a backdrop of light-colored walls and a blue floor. +sun_blumukkrvzjvkalw.jpg The image shows a chemistry lab with wooden cabinets and counters in a neutral-toned space, featuring prominent white containers and a microwave on the counter, set against a backdrop of brick walls with large windows and a chalkboard, illuminated by overhead fluorescent lighting. +sun_apemokseajiuenke.jpg The chemistry lab features a neutral-toned environment with white lab coats and blue shoe covers on individuals working at countertops filled with clear glassware; bright overhead lights illuminate the room, which is equipped with large windows providing a view of trees outside. +sun_bqdsaaudvcsngrsf.jpg The chemistry lab is seen from a front-facing angle, featuring white cabinets with open shelves that hold various equipment, set against a background of pale walls and large fume hoods, with the grey flooring and overhead bright fluorescent lighting giving a clean, organized appearance. +sun_bmzbtmiskqjjdkgi.jpg The chemistry lab features a combination of beige cabinets and black countertops with assorted glassware and equipment, viewed from a narrow aisle perspective, flanked by shelves filled with boxes and supplies, with a large, light gray refrigerator at the far end. +sun_amptsehjthnapqgl.jpg A person wearing a white lab coat and purple gloves is examining a test tube filled with an amber liquid, standing in a well-lit chemistry lab with wooden shelves stocked with various glass bottles and laboratory equipment, set against a background of soft pastel-colored walls and overhead fluorescent lighting. +sun_bobnewltqzbkygdu.jpg In the chemistry lab, a group of individuals in white lab coats are gathered around workbenches filled with scientific equipment, where the dimly lit environment reveals a mix of metallic apparatus and paper documents, set against a backdrop of blue cabinetry and overhead fluorescent lighting. diff --git a/utils/area/descriptions/sun/generated_descriptions/chicken_coop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/chicken_coop_descriptions.txt new file mode 100644 index 0000000..b55937c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/chicken_coop_descriptions.txt @@ -0,0 +1,10 @@ +sun_akebybcrrkpigvqr.jpg A small, yellow, vertical-slatted chicken coop with white trim, a slanted roof, a decorative white medallion, and a wheel attached on the left side, viewed from a slightly elevated angle against a backdrop of leaf-strewn ground and sparse trees. +sun_abqhswmwjxbsbaie.jpg The chicken coop is a triangular, A-frame structure made of light brown wood and wire mesh, viewed from a side angle, situated on dry grass with a red ATV and hose in the background. +sun_alymvmwmoxusbwym.jpg The small enclosed chicken coop features a wooden texture with a light beige interior, a slanted roof, and is equipped with feeding containers and a ventilation fan, set against a background of wood shavings covering the floor. +sun_asmmnyoeqpxcycwo.jpg The chicken coop is a rectangular, wooden structure with a natural wood finish and wire mesh sides, shown from a side angle in a garage setting, featuring a sloped roof, attached wheels for mobility, and a visible chicken inside. +sun_apzqgteufsqhnjpf.jpg The chicken coop is a white wire grid cage viewed from a slightly elevated angle, containing two chickens, with a hay-covered ground and scattered leaves in the background, alongside two red and white feeders inside the cage. +sun_avcnqhnorifjrghf.jpg The chicken coop is wooden with a reddish-brown hue and wire mesh, viewed from the front with leafless trees and a clear blue sky in the background, featuring a simple rectangular structure with a corrugated metal roof. +sun_apftzrumxtwydbbm.jpg The chicken coop has a rustic, wooden lattice texture with a weathered, beige color, viewed from the side with a slanted roof, situated in a lush garden environment with trees in the background and a neatly fenced area. +sun_azwqmombcgazyisc.jpg The chicken coop is blue with a red gabled roof and white trim, featuring a wire mesh enclosure in a lush green garden surrounded by tall plants. +sun_apmqceabqijyzwll.jpg The chicken coop has a corrugated metal roof with a rust-like texture, a wooden interior visible through an open door, and it is positioned in a concrete-floored environment with a parked car in the background. +sun_anfssksbdsapppkr.jpg A green metal-framed chicken coop with wire mesh panels is positioned on a concrete patio, viewed from a slightly elevated side angle, set against a backdrop of wooden fences and nearby garden furniture. diff --git a/utils/area/descriptions/sun/generated_descriptions/childs_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/childs_room_descriptions.txt new file mode 100644 index 0000000..91e793f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/childs_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_apjbkncrlfdhcled.jpg The child's room features bunk beds with navy blue bedding against a wooden frame, a multicolored patchy-patterned bedspread on a nearby bed, a background showing a kitchenette and dining area with light wood cabinetry, and a wooden entertainment unit with a television, all viewed from an angle capturing the entire space. +sun_ahrxomnspbljwmpr.jpg The child's room features soft blue walls with pink and white striped curtains framing a window, framed by evenly aligned shelves filled with colorful toys, books, and a toy kitchen set under a ceiling with intricate crown molding, all set against a beige carpeted floor with scattered pieces of vibrant furniture. +sun_ajeonybyemjoxwlx.jpg This child's room features twin beds with light wood frames and white covers, accented by pastel animal-themed wallpaper panels against bright yellow walls, with a central wood nightstand and framed picture creating a cozy and playful setup. +sun_azzidobckjbbitqu.jpg A pastel pink-themed child's room with butterfly wall borders, featuring a neatly made bed with a decorative headboard, a soft carpet, and two sunlit windows flanked by sheer curtains, surrounded by white furniture including a small table and chair set. +sun_aejokdhgxpffxfwn.jpg The child's room features a wooden crib and a small yellow table with checkered blue legs surrounded by a colorful assortment of toys and books, set against a beige carpet and walls adorned with a landscape painting. +sun_apefycqehqrwucgo.jpg The child's room features pastel yellow walls and soft, textured fabrics, viewed from an angle highlighting a white daybed with gingham pink pillows, an intricate dollhouse centerpiece, and framed art above, set against a bright backdrop of large doors letting in natural light. +sun_aewzytvtvjaqvyea.jpg The child's room features a wooden bunk bed with blue and red sports-themed bedding, including soccer ball designs, with a decorative border saying "GOAL" and "TOUCHDOWN" surrounding the room, and matching soccer-themed bean bags on the floor. +sun_atovljwcpggbvnor.jpg The child's room features olive green walls and carpeted flooring with a central white tent with a red base surrounded by colorful toys and play sets, two chalkboards labeled with names on the far wall, and a door to the right. +sun_awpvszooveyiagpu.jpg The child's room features vibrant lime green walls, with a wooden bed dressed in multicolored striped bedding, surrounded by matching wood furniture, a bookshelf filled with items, and a bright, well-lit atmosphere from a large window. +sun_aiflbrcvjmulftiu.jpg The child's room features a nautical theme with a white and blue boat-shaped bed, anchored by a textured blue plaid carpet on hardwood floors, complemented by blue furniture and maritime decorations against a backdrop of a window overlooking a serene water scene. diff --git a/utils/area/descriptions/sun/generated_descriptions/church_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/church_descriptions.txt new file mode 100644 index 0000000..6e6a0fd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/church_descriptions.txt @@ -0,0 +1,16 @@ +sun_aocqikwlrxdattjw.jpg The church interior features white walls and arches with a warm golden-yellow mural above the altar, viewed from a central aisle lined with dark wooden chairs and decorated with a vibrant blue banner, complemented by small decorative elements and flower arrangements. +sun_bzbomaqvwbgjmmhv.jpg The church features a weathered, gray stone facade with intricate carvings, viewed slightly from below at an angle, flanked by a tall, multipaneled bell tower with a dome top and red brick accents, set against a cloudy sky with distinct urban elements and vehicles in the foreground. +sun_bgijkqbuzkaypxwv.jpg The small, white church with a central bell tower is framed by lush greenery, viewed from the front with a clear blue sky and hilly landscape in the background, featuring arched doorways and simple architectural lines. +sun_bwiklclxejlrfdyt.jpg The church displays a symmetrical façade with twin tall, slate-gray spires capped in oxidized copper, a large central rose window beneath a pointed gable, and beige stone walls, surrounded by urban buildings and a clear blue sky backdrop. +sun_begdsfoutwajcnvj.jpg The church is constructed of gray stone with a prominent square clock tower featuring blue clock faces and is surrounded by lush greenery, with arched windows and a gabled roof visible from a ground-level angle. +sun_bsvbngjnhxvfllnf.jpg The church, viewed from the front, is characterized by its plain white façade with a central small bell tower, set against a backdrop of scattered gravestones on a grassy field and flanked by lush green trees and rolling hills under a partly cloudy sky. +sun_brdpsjtmhfwqlzcj.jpg The church is a light brown, stone-textured structure with a large central dome topped by a cross, viewed from a frontal angle with a steep flight of wide steps leading up to it, flanked by trees, and featuring arched windows and a decorative blue and red awning on the right side. +sun_aelmrvjswllwnwsv.jpg The image depicts the interior of a beige-toned church viewed from the back, featuring wooden pews on either side leading towards an ornate, multi-paneled altar with intricate carvings set against tall arched windows in a softly lit space. +sun_bymllcxypikztcgg.jpg The church features a red brick facade with a white steeple and columns, viewed from the front-right angle, set against a cloudy sky with leafless trees surrounding it. +sun_bgawnmpvlnylkdbe.jpg The church features a tall, white bell tower topped with a black pointed roof, framed by a mountainous background with soft sunlight filtering through mist, and surrounded by lush greenery. +sun_bkvyqxbhliehbcah.jpg The church is a red-brick building with a white cross and steeple, viewed from the front against a clear blue sky, featuring a symmetrical gabled roof and a simple entrance. +sun_bhplanseggxesrxc.jpg The church features a tall, dark spire with green detailing, viewed from an angle showing its expansive brick and stone facade, set against a cloudy sky and surrounded by a grassy area with nearby trees. +sun_aeamkzszvnijbhhg.jpg The church features a sharp, angular roof with a dark brown hue, a textured beige facade viewed from a side angle amidst a bright blue sky, flanked by lush green trees and surrounded by parked cars on a well-maintained lawn. +sun_ahoqbpqveygmlska.jpg The red-brick church has a tall white bell tower with a clock and cross on top, lined with tall arched windows, viewed from a side angle with green hedges and trees in the foreground against a backdrop of a partly cloudy sky. +sun_balngzwizgszgiax.jpg A beige-brick church with a light brown gabled roof features vertical multicolored stained glass windows and is set against a cloudy sky with a faint rainbow, surrounded by sparse greenery and a parked car in the foreground. +sun_atbjgsnyrcuqgfnr.jpg The church features a tall, dark, pointed steeple with a clock face on its white tower, viewed from a low angle against a clear blue sky, framed by silhouetted trees. diff --git a/utils/area/descriptions/sun/generated_descriptions/classnames.txt b/utils/area/descriptions/sun/generated_descriptions/classnames.txt new file mode 100644 index 0000000..92e91c6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/classnames.txt @@ -0,0 +1,300 @@ +abbey +airplane cabin +airport terminal +alley +amphitheater +amusement arcade +amusement park +anechoic chamber +apartment building +apse +aquarium +aqueduct +arch +archive +arrival gate +art gallery +art school +art studio +assembly line +athletic field +atrium +attic +auditorium +auto factory +badlands +badminton court +baggage claim +bakery +balcony +ball pit +ballroom +bamboo forest +banquet hall +bar +barn +barndoor +baseball field +basement +basilica +basketball court +bathroom +batters box +bayou +bazaar +beach +beauty salon +bedroom +berth +biology laboratory +bistro +boardwalk +boat deck +boathouse +bookstore +booth +botanical garden +bow window +bowling alley +boxing ring +brewery +bridge +building facade +bullring +burial chamber +bus interior +butchers shop +butte +cabin +cafeteria +campsite +campus +canal +candy store +canyon +car interior +carrousel +casino +castle +catacomb +cathedral +cavern +cemetery +chalet +cheese factory +chemistry lab +chicken coop +childs room +church +classroom +clean room +cliff +cloister +closet +clothing store +coast +cockpit +coffee shop +computer room +conference center +conference room +construction site +control room +control tower +corn field +corral +corridor +cottage garden +courthouse +courtroom +courtyard +covered bridge +creek +crevasse +crosswalk +cubicle +dam +delicatessen +dentists office +desert +diner +dinette +dining car +dining room +discotheque +dock +doorway +dorm room +driveway +driving range +drugstore +electrical substation +elevator +elevator shaft +engine room +escalator +excavation +factory +fairway +fastfood restaurant +field +fire escape +fire station +firing range +fishpond +florist shop +food court +forest +forest path +forest road +formal garden +fountain +galley +game room +garage +garbage dump +gas station +gazebo +general store +gift shop +golf course +greenhouse +gymnasium +hangar +harbor +hayfield +heliport +herb garden +highway +hill +home office +hospital +hospital room +hot spring +hot tub +hotel +hotel room +house +hunting lodge +ice cream parlor +ice floe +ice shelf +ice skating rink +iceberg +igloo +industrial area +inn +islet +jacuzzi +jail +jail cell +jewelry shop +kasbah +kennel +kindergarden classroom +kitchen +kitchenette +labyrinth +lake +landfill +landing deck +laundromat +lecture room +library +lido deck +lift bridge +lighthouse +limousine interior +living room +lobby +lock chamber +locker room +mansion +manufactured home +market +marsh +martial arts gym +mausoleum +medina +moat +monastery +mosque +motel +mountain +mountain snowy +movie theater +museum +music store +music studio +nuclear power plant +nursery +oast house +observatory +ocean +office +office building +oil refinery +oilrig +operating room +orchard +outhouse +pagoda +palace +pantry +park +parking garage +parking lot +parlor +pasture +patio +pavilion +pharmacy +phone booth +physics laboratory +picnic area +pilothouse +planetarium +playground +playroom +plaza +podium +pond +poolroom +power plant +promenade deck +pub +pulpit +putting green +racecourse +raceway +raft +railroad track +rainforest +reception +recreation room +residential neighborhood +restaurant +restaurant kitchen +restaurant patio +rice paddy +riding arena +river +rock arch +rope bridge +ruin +runway +sandbar +sandbox +sauna +schoolhouse +sea cliff +server room +shed +shoe shop +shopfront +shopping mall +shower +skatepark +ski lodge +ski resort +ski slope \ No newline at end of file diff --git a/utils/area/descriptions/sun/generated_descriptions/classroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/classroom_descriptions.txt new file mode 100644 index 0000000..8597057 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/classroom_descriptions.txt @@ -0,0 +1,16 @@ +sun_aeiaqojqsljsshid.jpg The classroom features a beige interior with a high ceiling and visible blue-painted beams, viewed from a corner showing wooden desks with black chairs arranged in rows, large windows letting in light from the left, a green chalkboard on the far wall, and storage units against the right wall. +sun_bqthorqonodbybym.jpg The classroom features worn wooden desks with slate boards, a central black chalkboard on a stand, and rustic wood-paneled walls adorned with educational posters, viewed from a front corner angle revealing a historic, rustic setting with a cozy, old-world charm. +sun_beyuneeqdstmisgl.jpg The classroom features a front-facing view with wooden benches and desks topped with books in the foreground, against a blackboard filled with chalk writing that spans the length of the wall, complemented by a portrait above and accompanied by a wood-textured floor. +sun_aqiifjnopzutryoq.jpg The classroom features light purple walls adorned with colorful cartoon murals and bright orange window curtains, viewed from a front angle showing round wooden tables and chairs with educational materials against a pinkish-red tiled floor. +sun_aeidezxtgwjpzsws.jpg The classroom features a warm beige carpet and matching walls, seen from a frontal viewpoint showing orderly rows of wooden desks with blue chairs, surrounded by a clutter of educational materials and posters, and accented by a ceiling with fluorescent lighting. +sun_bpksdzdcxyyovqiw.jpg The classroom, viewed from the entrance, features a warm brown tone with wooden desks and benches, a large black chalkboard on a textured wall displaying faint writing, and is illuminated by a single hanging light, with old-fashioned decor including a potbelly stove, reflecting an antiquated educational environment. +sun_aqtninmaukwxkclf.jpg The classroom is brightly lit with overhead fluorescent lights and features cream-colored walls, a large whiteboard, and multiple wooden tables with blue chairs, populated by students and decorated with colorful posters and educational materials. +sun_amqtfsnvzjtdpvvm.jpg A spacious classroom with red speckled flooring features numerous wooden chairs with attached white desks arranged in neat rows facing a blackboard, surrounded by white walls with rows of windows on one side and a shelf filled with books and trophies on the other. +sun_aqqqvkeocxjjbmvb.jpg The classroom has a green accent wall with a projector screen and colorful tiled ceiling, featuring light brown desks and chairs arranged in rows, with bulletin boards and classroom materials visible in the background. +sun_ayknoxjfplxlciot.jpg The classroom features rows of light wooden desks with students sitting on matching chairs, positioned in a descending tiered arrangement with maroon carpet and a white wall illuminated by natural light from windows on the left. +sun_arotujimwuzheyng.jpg From a side viewpoint, the dimly lit classroom, with a yellow-textured wall, features rows of light gray desks and blue chairs, accented by a bulletin board and sunlight streaming through a window. +sun_aaxmbromxzjleqcn.jpg The classroom is brightly lit with fluorescent overhead lights, featuring long dark tables and students sitting in rows with their hands raised against a background of large, rectangular windows that let in diffused daylight. +sun_aefsfjqxmgmylnhu.jpg This classroom features wooden desks and benches arranged in neat rows, with colorful decorations on the white walls, a chalkboard filled with white handwritten text at the front, and large windows on the side allowing natural light to illuminate the room where children are seated attentively. +sun_bgsbcyojqafzzfis.jpg The classroom features a vintage wood stove at the center with ornate design, surrounded by wooden desks lined in rows, a large green chalkboard at the front, wooden flooring, and a red upright piano on the right, set against walls adorned with windows, framed art, and an American flag. +sun_asmqioqkjhomhuvv.jpg The classroom features curved wooden desks with green cushioned chairs, natural light filtering through large, arched, multi-paned windows, and contains students attentively seated with open notebooks and scattered bottle water. +sun_axxkgcjmvkuyqysj.jpg The classroom features a neutral-toned beige color scheme with blocky metal chairs, rectangular tables cluttered with papers, and is set against a backdrop of tall windows in a tidy, institutional environment from a front diagonal viewpoint. diff --git a/utils/area/descriptions/sun/generated_descriptions/clean_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/clean_room_descriptions.txt new file mode 100644 index 0000000..0252c26 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/clean_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_aqkzagqfafgjhfid.jpg The clean room features predominantly white and light gray smooth surfaces with a high ceiling and bright overhead lights, showcasing a large intricate metallic machine to the left covered partly by a reflective silver material, and several people in white lab attire working around sophisticated equipment, set against a backdrop of open panels and industrial structures. +sun_aublhntnfxxitafg.jpg The clean room features a sterile, primarily white environment with smooth, shiny surfaces and bright lighting from ceiling panels, viewed from an angle showing two individuals in lab coats working at desks with scientific equipment, and a tile floor that reflects the light. +sun_acshzpzroxnbzmdl.jpg The clean room features a bright white color scheme with subtle ribbed texture suits worn by individuals, viewed from a side angle near automatic sliding doors and a wall-mounted fire alarm, emphasizing a sterile environment. +sun_aijhcjkiyxjjoygv.jpg The image shows a person in a yellow hazmat suit and blue gloves, viewed from the front while looking into a microscope, with a blurred background of laboratory equipment enhancing the sterile and controlled atmosphere. +sun_awthpjqtksshovaw.jpg The clean room shows a person in protective attire, interacting with multiple IV bags under a blue and stainless-steel laminar flow hood, set against a backdrop of organized blue storage bins on metallic shelving. +sun_aytnkuigtfedfuxo.jpg The clean room features a transparent enclosure with a metallic frame and glove ports, set against a sterile white floor and walls, alongside industrial equipment, visible from a slightly elevated angle with fluorescent lighting reflected on the surfaces. +sun_aiyphgtigguewlyv.jpg The clean room appears spacious and sterile with a glossy gray floor, a multitude of bright overhead fluorescent lights reflected on the surfaces, and individuals in protective white attire working at workstations amidst an orderly setup of laboratory equipment, all against a backdrop of white walls and organized machinery. +sun_agphrfaitkpasnin.jpg In the image, a person in a light blue cleanroom suit and hairnet is positioned at an angle interacting with stainless steel machinery, set against a background of equipment and panels that suggest a controlled laboratory environment. +sun_aohisesntpeasors.jpg A clean room with predominantly white surfaces features a group of people in white protective clothing and hairnets working near a metallic, angular structure, set against a light blue and cream backdrop, with red and blue barrier ropes. +sun_aqptczplbffiyksn.jpg The cleanroom features personnel in white protective suits surrounding a large, complex scientific apparatus with a metallic and white-textured surface, set against a backdrop of a beige floor, white walls, and ladders, indicating a controlled lab environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/cliff_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cliff_descriptions.txt new file mode 100644 index 0000000..f45786f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cliff_descriptions.txt @@ -0,0 +1,13 @@ +sun_brjrjwnoskhzijqm.jpg The cliff is composed of layered, brown and gray rock formations with rugged, uneven textures, featuring two distinct narrow streams cascading down the surface, set against a sparse sky in a distant, arid environment. +sun_bpypnzdzmfzlvjww.jpg The cliff appears as a rugged, light tan and gray rock face with rough, irregular textures, surrounded by greenery and viewed from below with an opening to a bright blue sky above. +sun_bcagzjpezawyetnr.jpg The cliff displays a chalky white color with a rough texture, viewed from a slightly angled perspective, surrounded by patches of green vegetation against a partly cloudy sky. +sun_bkryhjsjtqiwxmip.jpg The cliff presents a layered, dark gray texture with rugged striations, viewed from a lower angle with climbers ascending, surrounded by sparse vegetation and set against an overcast, rocky backdrop. +sun_bgdangwrplaiwcho.jpg The cliff is characterized by its green and brown mottled texture, viewed from a side angle, with patches of lichen or moss and fern-like vegetation at the base, contrasting against a clear blue sky. +sun_bflktkazczzevnym.jpg The image depicts a rugged cliff with jagged, dark brown to gray rocks jutting sharply against a barren, expansive landscape, with a backdrop of distant misty mountains and a partly cloudy sky creating a stark and desolate environment. +sun_bwxhmtdzvxlgrahn.jpg The cliff appears to have a reddish-brown, rough-textured surface with faded patches and extends diagonally downward from the upper right corner, featuring sparse vegetation and contrasting against a clear, pale blue sky. +sun_bhaalrgsxgqtcvin.jpg The cliff is a rugged, gray rock formation with a coarse texture, viewed from a side angle with expansive, forest-covered mountains in the background. +sun_bzxspahjfgthvdnz.jpg The cliff has a rugged, dark gray-brown texture with patches of greenery, viewed from the side with a backdrop of dense trees and a mountainous area, featuring a steep, slightly curving surface that extends vertically. +sun_blgbzmcmdqocbdeb.jpg The cliff is a rugged, light gray rock face with patches of moss and lichen, viewed from below at an upward angle against a bright sky, flanked by dense green foliage and tall trees. +sun_bijojbabpoxzlosy.jpg The cliff displays a rugged gray and brown texture with vertical and sloping layers, surrounded by patches of green foliage and set against a bright, overcast sky. +sun_bvojahxnwizghhci.jpg The cliff displays a warm, reddish-brown hue with a rough, jagged texture and an imposing, vertical prominence, set against a backdrop of blue sky and fluffy white clouds, with sparse vegetation clinging to its surface. +sun_bjumgodbrjsasfxy.jpg The cliff is dark gray with a rugged, jagged texture, extending sharply to the left with a person standing at its tip, set against a backdrop of misty, tree-covered hills and a cloud-laden sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/cloister_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cloister_descriptions.txt new file mode 100644 index 0000000..7609b8c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cloister_descriptions.txt @@ -0,0 +1,15 @@ +sun_aufgxjvzinvkkbkd.jpg The cloister features warm, golden-tan stone with intricate Gothic arches and ornate carvings along the walls, viewed from an angle that showcases the vaulted ceiling and statues, set against a softly illuminated background with people observing the architecture. +sun_ardsuqovzlkokipy.jpg A long, arched cloister with intricate stone tracery and pointed windows features a series of Gothic-style stained glass in the upper panes, casting colorful patterns on the floor, while a sunlit corridor stretches towards a shadowed, vaulted ceiling and distant exit. +sun_bcrpsqrkfdcfxeez.jpg The cloister features a series of beige stone arches with a ribbed texture, viewed from an interior perspective along a brick-tiled corridor, with framed pictures mounted on white partitions lining the sunlit walls. +sun_bbhwebvhcrhgodyk.jpg The cloister features a series of dark brown columns casting intricate shadows on a terracotta-colored tiled floor, with a perspective view leading to a wooden door, and sculptures lining the left white wall under archways. +sun_aekzcyxxxiwpupoo.jpg The cloister features beige stone arches with smooth textures, a perspective view revealing a long corridor lined with dark wooden benches against walls adorned with engraved plaques, all under an ornate wooden ceiling. +sun_byxrfpmzpboquhoy.jpg The cloister features cream-colored stone arches and columns with a rough texture, viewed from inside a covered walkway with sightlines through the arches to a garden environment, showcasing palm trees and manicured hedges. +sun_avvagpokirtzprco.jpg A dark stone cloister stretches in perspective, with a row of arched windows on the right adorned with intricate circular latticework and an uneven stone floor extending alongside shadowed, aged walls. +sun_bflvzciixfpkgbsg.jpg The cloister features warm-toned red and tan brick arches with a richly painted mural along the left wall, illuminated by soft light streaming in from a row of arches on the right, with a detailed diamond-patterned tile floor extending through the narrow corridor. +sun_bmkzrgcexhwrtwek.jpg The cloister features beige stone arches and pillars with a textured, slightly worn surface viewed from within, presenting a series of symmetrical arches leading to an outdoor courtyard that includes manicured greenery and a modern abstract sculpture in the background. +sun_bljlyowhtzgjofrm.jpg The cloister features stone columns with intricate capitals in a shaded corridor overlooking a lush, sunlit green garden with trees and a central stone fountain, framed by the walls of the encompassing structure. +sun_ahtwplqrfsocymcs.jpg The cloister features aged grey and mossy stone columns and arches with a textured surface, viewed from a side perspective looking down the length of the passageway, and is partly enclosed by lush greenery visible through arched openings. +sun_bqrztkwwjzlxzlqa.jpg The cloister features ornate wrought iron detailing in the foreground with an intricate, arched stone colonnade and a sunlit, grassy courtyard in the background, set against a backdrop of warm beige and stone textures. +sun_alipsdjmnmdawcdt.jpg The cloister features a series of cream-colored arches with a smooth texture, tiled walls with intricate geometric patterns, viewed from a central perspective looking toward a dark wooden door, set within a structured corridor with a warm, reddish-brown tiled floor and framed artworks lining the walls. +sun_asckbplukhpenutn.jpg The cloister features warm, beige stone with a textured, aged finish, viewed from an angle showcasing a sequence of Romanesque arches and columns, set against a sunlit courtyard on one side and shadowy corridor on the other. +sun_bkpdnrbutsijabnm.jpg The cloister features textured beige stone walls with arched openings along a covered walkway, a row of wooden lattice windows, and a dark wooden ceiling with a polished terracotta floor, viewed from an angle showcasing depth and symmetry within a monastic or historical setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/closet_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/closet_descriptions.txt new file mode 100644 index 0000000..a079ff6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/closet_descriptions.txt @@ -0,0 +1,16 @@ +sun_avypvmhmqinhgnli.jpg A cluttered closet with a mix of brightly colored and neutral clothing hanging haphazardly, surrounded by disorganized shelves in a narrow, carpeted space with visible bags and scattered items on the floor. +sun_arycnsirsyqrwxlj.jpg A minimalist closet with an orange-brown wooden door, partially open, revealing a white interior with a single metal rod, set against a plain cream wall backdrop with light wood trim. +sun_adoqcefwvzfyrnqn.jpg The closet is viewed front-on, showcasing an organized arrangement of colorful clothes on hangers and shelves against a vibrant orange background, with distinct white shelving and baskets enhancing the structured display amidst a setting of carpet flooring and additional visible support rods. +sun_afyjotseuhewmrdx.jpg The closet, viewed from the center facing the corner, features rich wooden shelves and cabinets housing white garments and shoes, set against a soft green wall with potted plants on top, creating an organized and inviting arrangement. +sun_auzjjlumfeitsbdu.jpg The closet features a warm, brown wooden texture with a straight-on view, displaying shelves holding folded towels and a hanging rod with wooden hangers holding white bathrobes; it is situated in a room with beige walls and includes a small safe and some papers at the bottom. +sun_aodlzwsmqqpzbeeg.jpg A well-organized walk-in closet viewed from a corner angle, featuring light wooden shelving filled with shoes and clothing, with a small black chair and recessed lighting against a warm, softly lit background. +sun_aefpdnkgwfpjctfb.jpg The closet displays a row of colorful, mixed-fabric shirts and tops hanging evenly on white plastic hangers, viewed head-on against a neutral-toned wall backdrop. +sun_aioqyrrgfmkqqtds.jpg The closet is viewed from the front, showcasing a variety of colorful, hanging clothes on wooden hangers against a plain white background, with a metal rod visible above. +sun_alktvagsqefzfqor.jpg The closet is white with multiple shelves and hanging rods, viewed from an angled perspective showcasing colorful hanging clothes, textured flooring, and a wicker chair in a corner adorned with a hat and handbag. +sun_axloeugswnewpihu.jpg A low-resolution closet image reveals a cluttered mix of differently colored garments on plastic hangers, including purple and black fabrics, against a white background with visible shelving holding folded jeans and a brown-patterned bag, viewed from a slightly oblique angle. +sun_aazyarazogyqnprd.jpg This well-organized closet features wooden shelves and drawers with a light brown finish, an open bifold door revealing neatly folded clothes, and a man organizing items amid a warm, yellow-painted room with visible hardware tools in front. +sun_aqogrroaqmlmjevw.jpg The closet is open with a door partially visible, containing multiple rows of colorful children's clothing on hangers, a section of polka-dotted fabric, and a bottom filled with various toys, all set against a plain white wall background. +sun_adzzxfsxraioeogr.jpg The closet has a white, multi-shelved interior showcasing neatly hung clothes in a variety of colors and patterns along with folded items, set against a wooden floor, and the view is straight on. +sun_auphegpwlhzcuopy.jpg The closet features dark shelves filled with assorted clothing and items, viewed from a frontal angle in a warmly lit room with light brown carpet and a central white-topped table beneath a decorative chandelier. +sun_awusfxkhbuodebbf.jpg The closet features a white interior with a smooth texture, viewed from the front with a parquet wooden floor, white shelving above holding paint cans, and a hanging rod on the right side. +sun_agountlxpzkytsmp.jpg The open beige closet with a white paneled door reveals neatly folded towels and boxes on its shelves with a tiled floor and a neutral-toned room as the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/clothing_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/clothing_store_descriptions.txt new file mode 100644 index 0000000..496cdc2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/clothing_store_descriptions.txt @@ -0,0 +1,10 @@ +sun_apwtftmgtxsiwkyj.jpg The clothing store features a selection of brightly colored sporty jackets and shirts displayed on racks against white walls, with a textured carpet floor, visible hanging sports brand posters, and a collection of soccer balls centralizing the focus of the room. +sun_argjebngsdzeeqmu.jpg The clothing store has a predominantly beige interior, crowded with racks of dark and light textured clothing in various sections, viewed from an aisle perspective with bright orange sale signs hanging across the ceiling. +sun_axjosuycrvhuqhes.jpg The clothing store features a modern white interior with red accents, viewed from a frontal perspective, showcasing a row of neatly hung colorful shirts on the right, with mannequins and a reflective wall in the clean, minimalist background. +sun_bpxjikmyyhvkxoyf.jpg The clothing store features a prominent display of tall brown and beige suede boots on a dark, polished table in the foreground, with a backdrop of red curtains and decorative greenery, evoking a festive and elegant ambiance. +sun_adzqrktysxlciszr.jpg The clothing store features neatly folded pastel t-shirts on wooden shelves bathed in warm indoor lighting, with a background of hanging bags and densely stocked racks creating a cozy, eclectic atmosphere. +sun_azjpppiitxnzegpc.jpg The clothing store features a sleek industrial design with a neutral color palette, showcasing black garments hanging on racks along a white wall, under soft overhead lighting with visible ductwork, and the store's interior displays structured metal shelves in a spacious, minimalistic setting. +sun_asgjgmemokdavrro.jpg The clothing store features a central display of black and plaid checkered jackets on racks, with a tiled floor and curved white walls adorned with red accents and shelves holding neatly folded clothing, creating a modern and organized environment. +sun_amnzuqqsdyevglhx.jpg A warmly lit clothing store interior is visible through a large glass window, featuring neatly arranged racks of multicolored shirts and jackets along light wood shelves, with a central mannequin dressed in dark attire against a cream-colored wall backdrop. +sun_avhtwqmeyaviyryr.jpg The clothing store is densely packed with assorted colorful garments on shelves, viewed from an aisle perspective with two children holding clothes, against a backdrop of vibrant clothing and accessories. +sun_auaoohjilibalryz.jpg The clothing store exhibits a colorful assortment of children's garments in pastel and vibrant tones on racks, viewed from an aisle with a clear overhead fluorescent lighting, in a lively environment accented by visible sale signs and a variety of neatly organized merchandise in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/coast_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/coast_descriptions.txt new file mode 100644 index 0000000..e528d62 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/coast_descriptions.txt @@ -0,0 +1,15 @@ +sun_aqlljqtdrutozzkp.jpg Aerial viewpoint reveals a coastal bay with clear turquoise waters progressing into darker depths, bordered by a sandy beach backed by lush greenery and palm trees, nestled against tall, rugged hills under a bright blue sky. +sun_abxzpoxzshixiiap.jpg The coast features vibrant turquoise water with a smooth texture, viewed from a low perspective, set against a backdrop of vivid blue sky and white clouds, with a lush palm tree-covered shoreline in the distance. +sun_aggycagzobnhqtpc.jpg The coast features rugged, beige rocky cliffs with scattered green vegetation, surrounded by calm, azure waters, viewed from a slightly elevated, tree-lined vantage point. +sun_ayrijaevkoimbelg.jpg The image shows a rugged coastline with dark, jagged rocks jutting out from frothy white waves under a clear blue sky, viewed from a high vantage point with dry, grassy foreground and a serene horizon line. +sun_adfuctvimydpmoor.jpg The coast features jagged, dark rocky cliffs with patches of light brown, surrounded by turbulent blue and white waves, viewed from a slightly elevated perspective with the open sea extending towards the horizon. +sun_ajvswcfkrmimcxnm.jpg The coast features deep blue waters with gentle waves lapping against a rocky shoreline, viewed from a slightly elevated grassy foreground, with a distant horizon under a partly cloudy sky. +sun_aipoguxdgahkjgqi.jpg The coast features lush green terraces descending steeply towards a calm, blue sea with scattered small boats, framed by hilly cliffs under a clear sky. +sun_aqxudlqvtlgezdrv.jpg The coast features rugged, rocky outcrops with patches of vibrant wildflowers in the foreground, set against a backdrop of choppy blue waves under a cloudy sky, providing a picturesque view from an elevated angle. +sun_aexhcalddhgjjgvm.jpg The coastline features vivid green vegetation on rolling hills, blending into a rugged shoreline with white-capped waves, viewed from an elevated perspective overlooking the expansive blue ocean and distant misty horizon under a partly cloudy sky. +sun_avpgnxmdlzxdwmte.jpg Dark, rugged rocky shoreline with patches of green vegetation, viewed from an elevated angle with distant mountains and a sailboat visible across the calm, blue-gray sea. +sun_bmduqcixasjsmdec.jpg The coast displays dark, hexagonal basalt columns with a rugged texture emerging from deep blue waters, viewed from an elevated angle with distant mountains and a clear sky enhancing the serene seascape. +sun_anyvjqugsblyeaot.jpg The coast features a rocky promontory extending into the blue-green sea with white waves, crowned by a lighthouse and surrounded by lush, dark green forest, viewed from a high vantage point with a hazy sky in the background. +sun_amkwbhfpxlztunlg.jpg The image depicts a rugged coastline with a foreground of dark, rocky terrain and an expansive, calm sea under a dusky sky, with a distant, jagged stone outcrop silhouetted against the fading light of a soft pink and blue sunset. +sun_azndxpvljvbjigjq.jpg The image depicts rugged limestone stacks rising from a blue-gray ocean, alongside a sandy beach under a partly cloudy sky, creating a dramatic coastal scene. +sun_abacczqzmassivlz.jpg A rocky coastline with reddish-brown cliffs and a smooth blue-green sea extends toward a distant headland under a partly cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/cockpit_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cockpit_descriptions.txt new file mode 100644 index 0000000..2bb4e42 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cockpit_descriptions.txt @@ -0,0 +1,16 @@ +sun_ajmkxnjycyzykcxm.jpg The cockpit features a predominantly dark gray and black color scheme with a complex array of illuminated digital screens and numerous small buttons across the control panels, viewed from the perspective of someone standing at the entrance, surrounded by a cockpit interior with blue-striped seating and partially visible exterior light through the windows. +sun_artfegprgyombfga.jpg The photo shows the cockpit interior with a dark, textured control panel overhead, viewed from a rear angle, featuring a pilot and a young passenger bathed in natural light from large forward-facing windows, set against a backdrop of bright green, patterned material. +sun_adrcmuimxkcovgxb.jpg The cockpit features a predominantly gray and metallic interior with a textured, instrument-laden dashboard and overhead panel, viewed from the front, set against a blue-tinted sky seen through the windows, showcasing an array of illuminated dials and modern avionics. +sun_cigzazjbbjlcvmmq.jpg The cockpit features a complex arrangement of blue-gray panels filled with numerous buttons and digital screens displaying various data, viewed from the front-right angle with large windows revealing a hint of the exterior, suggesting an advanced commercial aircraft flight deck. +sun_avcbjpjlymtlhisq.jpg The cockpit features a vintage design with a multitude of analog dials and switches set against a gray textured panel, viewed from a frontal angle, with a minimalistic white and green color scheme, distinctively framed by large side windows that brighten the confined space. +sun_ahwgdoyzuahwjnth.jpg The cockpit features a dark, metallic texture with numerous round dials and gauges, viewed from the front facing inward, surrounded by a cluttered array of controls and twin steering columns, with the background displaying additional instrument panels. +sun_ckscuzcntnrkthlr.jpg The cockpit is characterized by a densely packed array of black and gray textured dials and gauges on the dashboard, with a perspective focused on the pilot's seat, featuring a mix of analog instruments and switches, set against an enclosed metallic background. +sun_axazgjpclonuifkg.jpg The cockpit displays a neutral gray and beige color palette with a textured overhead panel, seen from an angle that reveals illuminated digital flight instruments, various labeled switches, and papers clipped near the front windows, against the blurred background of an airport terminal visible through large windows. +sun_antuburqooevfkwf.jpg The cockpit is predominantly black with a shiny, metallic texture, viewed from a central, frontal perspective showing a complex array of dials, gauges, and switches, against a backdrop of bright light entering through the windows, highlighting the clustered instruments and giving a historic aircraft ambiance. +sun_agutszbjastfsjpc.jpg The cockpit features a black instrument panel with multiple round gauges, surrounded by a red and wooden interior, viewed directly from the front with visible cables and a microphone reaching up from the bottom. +sun_anvvynrhbtssmelv.jpg The cockpit features a dark dashboard filled with numerous round dials and gauges, viewed from behind the pilots with a large, multi-paneled windshield offering a clear view of the runway and a grassy, tree-lined landscape. +sun_aoenmiylnuagxxta.jpg The cockpit features a vintage, military aircraft style with a predominantly pale blue textured finish, viewed head-on showcasing numerous analog gauges and dials, with a central emblem and multiple mechanical switches, set against a backdrop of closely-packed control panels. +sun_aofpqtigawvyqomh.jpg The cockpit features a combination of gray and beige tones with textured panels and numerous controls, viewed from a front-left angle within a dimly lit environment, with multiple screens displaying data and a fire extinguisher affixed to the side. +sun_aoxccvvopkkhlowy.jpg The cockpit features a green exterior with a matte texture, viewed from an angled perspective showing a cluster of round dials on a dark panel, a mix of metal and wooden structural elements, and a workshop-like background filled with tools and equipment. +sun_anjxzdstflkrggtj.jpg The cockpit features a predominantly gray metallic texture with clusters of analog dials and switches spread across the central panel, viewed directly from the front, with plush seats in the foreground and a muted, dimly lit instrument panel as the background environment. +sun_auqsmotaleiehran.jpg The cockpit, viewed from the rear center, features a vintage design with beige controls and a plethora of analog gauges on a dark instrument panel, surrounded by a green-tinted cabin interior. diff --git a/utils/area/descriptions/sun/generated_descriptions/coffee_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/coffee_shop_descriptions.txt new file mode 100644 index 0000000..1c37c80 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/coffee_shop_descriptions.txt @@ -0,0 +1,10 @@ +sun_aepsjlnfypehmpgt.jpg The coffee shop features large brown coffee dispensers labeled "Bengal Traders" against a backdrop of shelves with coffee supplies, and is viewed from a frontal perspective showcasing assorted coffee cups on a sleek dark counter. +sun_bhqnqmypubcqenhd.jpg The coffee shop features wooden furniture on a polished floor with a vibrant red and yellow textured wall adorned with small framed artworks, all set against a distinct rustic interior. +sun_bckgnrmopaexeors.jpg The coffee shop features warm wooden interiors with red and beige walls, visible chalkboard menus, and a distinct counter area, viewed from a customer table with a reflective marble surface and a poster-laden background, creating an inviting atmosphere despite low resolution. +sun_bpbzfvqwesedgzxs.jpg The coffee shop features a wooden counter with a textured, swirled pattern, accompanied by three round, black cushioned stools, a row of yellow mugs with text, glass jars, coffee dispensers, and a decorative mirror reflecting a colorful assortment of coffee syrups in the background. +sun_blwtewsfpvrmqgxt.jpg The coffee shop features a warm orange and purple color scheme with a modern interior, taken from a frontal perspective showing wooden furniture, a counter with a variety of coffee products, and a well-lit, appealing ambiance accentuated by overhead spotlights and a menu board. +sun_bwkjtiwaqshnyhfb.jpg The low-resolution image shows a cozy coffee shop with warm beige and brown tones, featuring a man reading in the foreground with a white-and-red to-go cup on a red table, while the background reveals tall chairs and a counter displaying pastries under soft lighting. +sun_buvvjzbdbhaqvsgf.jpg The coffee shop features a polished wooden counter with a curved design, a maroon and cream color scheme, a background with framed pictures and a "Stars Café" sign, with a ceiling spotlit and soft ambient lighting. +sun_bfeflbzurydmpcns.jpg The coffee shop features a bright, sunlit interior with a modern design, characterized by large glass windows revealing an urban street scene outside, pale wood flooring, and various seating options like chairs and a small bar table facing the window, while a seated individual adds life to the cozy, relaxed atmosphere. +sun_bplrcndpfabwipzq.jpg The coffee shop features a minimalist interior with light wood flooring, long tables, and a bright white canopy over tables filled with potted plants, seen from the perspective of sitting at a plant-filled workbench with a softly lit ambiance and modern decor elements. +sun_bogxejtgqnmfqdbe.jpg The coffee shop features a warm wood-toned floor and a menu board on the left wall, with a counter lined by patrons in colorful jackets and shelves of coffee syrups behind, set within a bright, softly lit environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/computer_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/computer_room_descriptions.txt new file mode 100644 index 0000000..1525935 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/computer_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_aldtzmqpnajawwgu.jpg The computer room features rows of white monitors with sleek designs on light wood desks, all aligned in an orderly fashion on a wooden floor, against a backdrop of large windows that provide ample natural light. +sun_ajjazonaloijvkxs.jpg The computer room features a series of vintage CRT monitors and beige computer towers arranged in rows on white desks, viewed from an angle that shows a line of black swivel chairs against a backdrop of yellow walls and large, sunlit windows. +sun_bldaqyrbgibllfay.jpg The computer room features a series of vintage CRT iMacs with colorful translucent backs, arranged in orderly rows on wooden desks, against a beige wall and ceiling backdrop with overhead fluorescent lighting and visible ceiling tiles. +sun_bhcrensuhfmwbois.jpg The computer room is seen through large glass windows with white frames, revealing several tables with black computers and red chairs on a shiny tiled floor, set against a backdrop of vertical blinds and framed pictures on a plain white wall. +sun_bvzbhnkzaolxfcnn.jpg The computer room has light wood tables arranged in rows with black desktops atop, set against white walls and a ceiling with recessed lighting, featuring green-gray carpeting and large windows on one side offering natural light. +sun_bjxmapmrrrdjdbvi.jpg The computer room features a row of older-model desktop computers with silver-gray monitors and keyboards on a long wooden desk, viewed from an angled perspective showing a lavender wall adorned with notices and a whiteboard, creating a classroom or office environment complemented by blue chairs. +sun_aygcrswxiafxgksc.jpg The computer room features a row of off-white computers and monitors arranged on long tables with green chairs, set in front of large windows and a wall lined with bookshelves filled with various books, all illuminated by fluorescent ceiling lights. +sun_aslmygwwvgibrwye.jpg The computer room displays a warm, brown color palette with rows of dark and uniformly textured monitors atop sleek, wooden tables, viewed from a slightly elevated perspective, and features a carpeted floor and a plain beige wall with minimal decorations in the background. +sun_aownicqepadtghtl.jpg A pair of white, vintage CRT iMac computers with grey screens are arranged side-by-side on a narrow wooden table against a plain beige wall, each with a white keyboard and a coil of grey cable, and there is a wooden bench in front of the table on a carpeted floor. +sun_akizbqewlfoxxkpi.jpg The computer room features a row of black desktop computers on wooden tables against a light-colored wall, with black monitors and peripherals neatly arranged, accompanied by wooden chairs, all viewed from an angled position showing multiple workstations. diff --git a/utils/area/descriptions/sun/generated_descriptions/conference_center_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/conference_center_descriptions.txt new file mode 100644 index 0000000..76c088c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/conference_center_descriptions.txt @@ -0,0 +1,10 @@ +sun_bvinzskexmdysrek.jpg The conference center features a warm color scheme with wooden paneling and beige tablecloths, viewed from the front with rows of blue and white chairs, complemented by lush green plants and a patterned carpet in a spacious room with a mirrored wall backdrop. +sun_bvuifdjojcxmhyrz.jpg I'm sorry, I can't provide a description based on the image. +sun_bojtuxdvecqncdbi.jpg The conference center features a uniform arrangement of light wooden chairs with metal frames, viewed from the back in a spacious room with large floor-to-ceiling windows on the right, providing natural light and a view of urban buildings. +sun_atyfuixfdhzqpngf.jpg The conference center features a vast, carpeted hall with rows of beige chairs and dark blue tables arranged in a grid-like pattern facing a stage adorned with a blue curtain and lit by ceiling fixtures, set against a backdrop of high walls with large windows. +sun_bmjcukofimbpssvz.jpg The conference center interior features rows of teal chairs on a blue carpeted floor, viewed at an angle from the side, with a white curtain on one side and a reflective ceiling above. +sun_btegrzjolhdzlzeu.jpg The conference center features a warm, illuminated interior with beige walls, elegant chandeliers, and neatly arranged rows of white-covered tables and chairs, set against a plush red-patterned carpet, viewed from an angle showcasing the spacious room and stage. +sun_bddsxnnygsvvhprp.jpg The conference center features an opulent interior with ornate chandeliers suspended from a highly decorated ceiling, elegant light-colored seating arranged in rows on a polished marble floor, and a backdrop of tall, arched windows allowing natural light to filter in. +sun_byefmfqaitopnidm.jpg The conference center features beige walls and a patterned carpet visible from a frontal viewpoint, with a ceiling adorned with numerous small lights and a U-shaped table arrangement complete with chairs and conference equipment. +sun_dwiadvxjbqqseaiu.jpg The conference center features rows of brown chairs facing a stage with a large projector screen, set against a backdrop of cream-colored walls, polished columns, and red carpeting, viewed from the rear of the room towards the elevated stage. +sun_bmedklypijvoavmn.jpg The conference center features rows of beige, rectangular tables and matching chairs, set in a long, narrow room with warm terracotta walls, distinguished by a large mirror at the far end, and a sunlit view of a pool and greenery through expansive windows on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions/conference_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/conference_room_descriptions.txt new file mode 100644 index 0000000..f3a6699 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/conference_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_afnfgimenxtseqkw.jpg The conference room features a long, narrow white table surrounded by blue chairs, set against a background with light brown walls, a wall-mounted television, a window with a scenic view, and a prominent wooden cabinet. +sun_ayqxmphfxjaqukhv.jpg A long, polished wooden conference table surrounded by black leather chairs is centrally positioned in a beige-carpeted room, with soft wall lighting and a coffee station visible in the background near a wooden door and a window allowing natural light. +sun_bdagnrpcrdaiqghf.jpg The conference room features a large wooden table surrounded by black leather chairs on a carpeted floor, viewed from the entrance with a windowed wall to the left displaying an urban landscape and an overhead projector screen on the right wall. +sun_awtzhouicgildphs.jpg The conference room features a U-shaped arrangement of light gray tables and matching cushioned chairs on beige carpet, viewed from an angle emphasizing the empty center space, with pale yellow walls adorned with a clock, whiteboard, and a projection screen. +sun_afdqstqubuehpxsn.jpg The conference room features a long, polished wooden table with a glossy finish, surrounded by a mix of leather and patterned fabric chairs, set within a warmly lit, wood-paneled environment with a decorative fireplace and ornate wall accents visible in the background. +sun_aqrnllhdmvxwisow.jpg The conference room features a U-shaped arrangement of light wood tables with black mesh chairs, set against a background of a light-colored wall displaying a projection, with visible overhead lighting and a glass doorway on the right side. +sun_bjtarzsygcsdcswt.jpg The low-resolution image shows a conference room with light blue walls and a series of connected wooden tables surrounded by maroon-cushioned chairs, with a blurred view of adjacent doors and a partitioned window with a kitchen area visible in the background. +sun_bhwbombzltiqiabe.jpg The conference room features a U-shaped arrangement of light wood tables surrounded by gray upholstered rolling chairs on a neutral carpet, viewed from a slightly elevated angle with large windows in the background allowing natural light to illuminate the space. +sun_bfgdrnfzalarvljz.jpg The conference room features a set of blue upholstered chairs around a central wooden table on a gray carpet, with a viewpoint highlighting a stack of chairs and a bulletin board against lavender walls illuminated by natural light through large windows. +sun_afcvddubposlbdyf.jpg A wooden conference table surrounded by blue cushioned swivel chairs is set within a room with light brown wooden panel walls, a framed artwork, and a soft carpeted floor, viewed from the front right angle. diff --git a/utils/area/descriptions/sun/generated_descriptions/construction_site_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/construction_site_descriptions.txt new file mode 100644 index 0000000..fb2ab90 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/construction_site_descriptions.txt @@ -0,0 +1,10 @@ +sun_atdunbqsovtwjiyq.jpg A large section of glass windows in a wooden frame is being lifted by crane straps, viewed from the front with workers guiding it, set against an industrial backdrop featuring construction equipment and a gray overcast sky. +sun_abzgcgqitqwmygbs.jpg The construction site features a gravel-filled foundation pit surrounded by wooden frames against a backdrop of sparse trees and orange safety netting, viewed from a slightly elevated angle with a few workers in hard hats visible on-site, while the foreground includes a trench and scattered construction materials. +sun_aicngycnphryylck.jpg The construction site features bamboo scaffolding with a light brown texture, positioned vertically on a modern gray building facade, with workers climbing on it, and retail signage in the background. +sun_agjwswmufycinkzl.jpg The construction site features rust-colored steel rebar columns protruding from a grid of wooden forms under a golden sunset, with a multi-story beige building in the background and partially visible palm fronds in the foreground. +sun_aecqabcpfxhpdvqu.jpg The construction site features towering yellow cranes against a clear blue sky, with a partially constructed building displaying a mix of white and beige facades, surrounded by scaffolding and materials, creating a busy industrial scene. +sun_aszztcpimvzyzrxr.jpg The construction site features a large wooden structure resembling a ship frame, viewed from an elevated angle, surrounded by a network of scaffolding with a translucent tent-like covering in the background, highlighting the intricate patterns of timber beams and planks. +sun_abwgpyoxstatumyk.jpg The construction site features a yellow tower crane towering above an unfinished multi-story building with a grid of windows and exposed concrete, set against a backdrop of overcast skies and surrounded by modern buildings, with tall green trees and a grassy foreground. +sun_aikqsqvvzmlsithy.jpg The aerial view of the construction site reveals a predominantly gray and beige color palette with concrete textures, featuring a crane, scaffolding, and framework against a background of suburban buildings and a partly cloudy sky. +sun_abfnuxlzourxhukb.jpg The construction site features large cylindrical concrete pipes with graffiti, positioned horizontally on a paved area surrounded by urban buildings and trees, viewed from a slightly elevated angle with shadows stretching across the ground. +sun_ahccsvchnzauincl.jpg The construction site features a skeletal framework of steel beams with patches of red brick visible on lower sections, viewed from a slightly elevated angle against a backdrop of tall, dense trees, with a crane and various construction materials scattered around the partially built structure. diff --git a/utils/area/descriptions/sun/generated_descriptions/control_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/control_room_descriptions.txt new file mode 100644 index 0000000..8a23f70 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/control_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_axvodvlpdnvudgzx.jpg The control room features a smooth black and white color scheme with multiple angled computer workstations, flat-panel displays, and a grid-like floor pattern observed from a side viewpoint. +sun_akoquprwecvpfxbg.jpg A dimly lit control room with rows of monitors displaying various video feeds is seen from behind two seated operators, one pointing, with dark-toned walls and equipment creating a cluttered, high-tech environment. +sun_akqzdjdpraqctllj.jpg The control room features a gray-walled interior with numerous monitors displaying blue-toned interface designs, viewed from a slightly elevated angle, and prominently displays a large mural of an astronaut and space equipment set against the backdrop of Earth, enhancing its space mission environment. +sun_axqhvgqslyijqsqz.jpg The control room features a beige console with an array of dials, switches, and illuminated buttons, complemented by a large map and panels on the wall, viewed from an elevated angle, with a person seated and engaged with documents, and additional personnel visible in the background. +sun_apnruevvgsputcqm.jpg The control room features a dimly lit, warm ambiance with a large mixing console centered on a patterned carpet floor, flanked by acoustic panels, racks of equipment, and a window revealing a brick wall in the background. +sun_adwhmmqfbrkptaef.jpg The control room features a dimly lit interior with multiple large monitors displaying complex data, textured gray surfaces and panels, viewed from a slightly elevated angle with personnel actively engaged at consoles, set against a modern office-like backdrop with overhead fluorescent lighting. +sun_aochgdkhigdebjgs.jpg The control room features a worn, industrial console with off-white, metal surfaces and multiple control panels populated with buttons and dials, flanked by CRT monitors on either side, set against a backdrop of an industrial workshop with visible pipes and beams. +sun_acihberaopfqmooq.jpg The control room features a large, gray control panel with numerous analog dials and buttons, accompanied by a computer screen displaying a landscape, viewed from a slight side angle, with overhead pipes and ventilation visible in the background. +sun_aazisfuxtxdpxchb.jpg A control room with an array of consoles and monitors featuring light gray, rectangular desks, green-cushioned swivel chairs, bulky equipment with multiple buttons and dials, and a backdrop of stacked screens displaying static or inactive feeds, viewed from a slightly oblique angle highlighting the equipment's alignment. +sun_aticduprnjzrthih.jpg The control room features a dimly lit environment with numerous blue-lit computer monitors arranged in rows displaying various data, and large screens on the dark walls displaying world maps and satellite images, viewed from an elevated, semi-overhead angle. diff --git a/utils/area/descriptions/sun/generated_descriptions/control_tower_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/control_tower_descriptions.txt new file mode 100644 index 0000000..2425c15 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/control_tower_descriptions.txt @@ -0,0 +1,10 @@ +sun_axqpwodbcsssuxgz.jpg A tall, cylindrical control tower with a smooth, white-textured shaft and a disk-shaped top, featuring a red-orange dome, is illuminated and viewed from a low angle against a dark night sky, surrounded by blurred light trails and shadowed trees. +sun_ahlezfbymsbkupnt.jpg The control tower is a tall, slender structure with a beige exterior and a slightly darker observation deck at the top, viewed from a ground-level angle against a background of overcast skies and airport terminal buildings with airplanes visible on the tarmac. +sun_axqciflyukpylvye.jpg The control tower is a tall, cylindrical structure with a spiral pattern of dark horizontal lines on a mostly white background, topped with a blue-tinted, glass-paneled observation deck, viewed from below against a clear blue sky with scattered clouds and a partially visible yellow directional sign in the foreground. +sun_afqnbzlpqtckafav.jpg The control tower is a tall, cylindrical structure with a smooth, gray concrete body and a dark, glossy top section, viewed from a low angle against a clear blue sky, surrounded by a flat landscape with a few buildings and parked cars at its base. +sun_abjdsazyxnxmyjcz.jpg The control tower features a gray metal structure with a slightly conical shape, topped by antennas, seen from a low-angle perspective against a cloudy sky backdrop, with distinct large tinted windows forming its upper section. +sun_aiexwfkvtslxucuq.jpg The control tower is predominantly gray with a sleek, modern texture, viewed from a low angle amidst a row of uniformly trimmed, conical green trees with a backdrop of a contemporary glass building and a clear sky. +sun_amtnmiigtgesytpr.jpg A white, angular control tower with a dark, capped top and multiple antennas is viewed from a slightly elevated angle, set against a partly cloudy sky with a palm tree and low buildings in the background. +sun_avyizqvgneggtaeq.jpg The control tower stands tall with a sleek gray façade, accented by a series of vertical blue lights down its shaft, seen from a frontal viewpoint; it features a distinctive ring of angular supports around its top section against a dark nighttime sky with an illuminated structure in the background. +sun_akfqfvuykvjwaqjk.jpg The control tower features a blue and gray color scheme with a glossy texture, viewed from a low angle against a clear sky; it sits near a warehouse-like structure and has a distinct multi-sided observation deck atop a cylindrical shaft with antennae on its roof. +sun_ajjzyglvfyavdtno.jpg The control tower features a modern design with a cream-colored base and a spiral stair-like structure wrapping around it, topped by a geometric glass-walled cabin with dark-tinted windows, set against a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/corn_field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/corn_field_descriptions.txt new file mode 100644 index 0000000..0c3a018 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/corn_field_descriptions.txt @@ -0,0 +1,10 @@ +sun_aacbgqunsjqeatcv.jpg The vast corn field features lush green plants with broad, shiny leaves illuminated by sunlight, viewed from a low angle that emphasizes rows stretching towards the horizon, contrasted by a solitary, large tree in the distant background under a bright sky. +sun_arpqmumrqxtcwbos.jpg The corn field features lush green stalks with hints of golden tassels, viewed from a ground-level perspective along a dirt path flanked by dense, dark green forest in the background under a bright, clear sky. +sun_apkgfwuvthmznqmz.jpg The cornfield is lush with vibrant green leaves, viewed from a low angle amidst densely packed, broad foliage, set against the blurred backdrop of trees and distant structures, with three figures partially visible among the rows. +sun_atbqwgnqfokavkla.jpg In the image, rows of vibrant green corn stalks stretch across a flat field under a clear blue sky, with a horizon line of distant trees forming a lush backdrop. +sun_askpvuntksfyssdr.jpg A vibrant green corn field with tall stalks lines a dirt pathway, viewed from a side angle, with a red SUV partially visible on the left against a clear blue sky and open field in the background. +sun_auwlvebhflvttjfc.jpg Bright green corn plants with elongated leaves grow in neat rows across a sunlit field, with visible soil between the rows and a grassy background extending to the horizon. +sun_amajywmqlhhrkysp.jpg The corn field displays a vibrant green color with a slightly textured appearance of tall stalks, viewed from a low angle with an expanse of uniform rows stretching toward the horizon under a clear blue sky. +sun_abzhrxuxlpeyikcn.jpg The low-resolution image shows a vast corn field with vibrant green stalks and leaves, observed from a ground-level viewpoint with tall electricity pylons scattered across the clear blue sky and sparse clouds in the background, creating a contrast between the natural and industrial elements. +sun_arjpkxvwlcdfmtop.jpg Amidst a flat expanse of light brown and dry-textured corn stalks under a soft blue sky with scattered clouds, a solitary large tree with dense, leaf-covered branches stands prominently at the center. +sun_auatihubxefhwkfo.jpg Tall, green corn stalks with broad leaves are densely packed under a clear blue sky with scattered clouds, rising from brown earth in a flat, rural field. diff --git a/utils/area/descriptions/sun/generated_descriptions/corral_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/corral_descriptions.txt new file mode 100644 index 0000000..1c27b2c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/corral_descriptions.txt @@ -0,0 +1,16 @@ +sun_agfxlxdaaxsypfks.jpg The corral features yellow metal fencing with horizontal slats, a large arched white canopy roof, and is set against an expansive, flat, rural landscape. +sun_bolzmhnczhuwypof.jpg The corral consists of a series of dark wooden horizontal slats arranged in a linear fashion, set against a grassy field with gently rolling hills and scattered trees in the background, with horses grazing both within and outside the enclosure. +sun_bljvqcnbiqbnator.jpg The corral appears as a rectangular enclosure made of wooden planks in natural and dark brown colors, set within a grassy area bordered by tall, dense trees, with a tree at its center and a barn-like structure on the right. +sun_bagoofrinszwbtdy.jpg The corral is a sandy brown open area, surrounded by a brown metal fence, with a few blue buckets and trees visible in the background, featuring a person on horseback walking across the sandy ground. +sun_bzsngkjxybrzibku.jpg The corral appears as a circular structure made from dark metal fencing, set in a barren, brown field with leafless trees in the background, viewed from an elevated angle showing distinct horizontal bars and containing a few people interacting with a horse. +sun_bbvpyigvhistixrr.jpg The corral is a light brown wooden enclosure with slatted fences, viewed from the front with a cluster of sheep inside, set against a background of sparse trees and dry grass. +sun_bmgcbhmfuffsgssh.jpg The corral is a rectangular, sandy-brown enclosure bordered by white and brown fencing, with a grassy and wooded backdrop, and contains colored jumping barriers with a person guiding a horse near the center. +sun_andbkdzixliunlbz.jpg The corral is constructed from metallic, silver-gray bars with evenly spaced vertical and horizontal slats, enclosing a muddy area with several cattle inside, set against a background of an overcast sky and a blue industrial vehicle. +sun_bjvuujsjyegusxpn.jpg The corral is made of wooden and metal fencing with alternating sections of reddish-brown and silver-gray, containing numerous black and white cows, and is set against a farmsteading environment with large metal-roofed barns and bare trees under a clear blue sky. +sun_amjvgcxgvoniggzi.jpg The corral is composed of light brown wooden fencing with a rustic texture, viewed from a slightly elevated angle, set against a backdrop of rolling hills with patches of green and red earth under a partly cloudy sky. +sun_bdpqzczcwwllxxcj.jpg The corral is a simple wooden fence with vertical slats, appearing in a rustic, natural brown tone with a weathered texture, positioned diagonally in the background, typified by a rural outdoor setting with people leading horses draped in blankets on a muddy, leaf-strewn path. +sun_bfyweodwfpyyvmaq.jpg The corral is made of weathered dark wood with vertical and horizontal planks, partially obscured by numerous light brown and dark red cattle, set against a green, leafy tree and a glimpse of a rural backdrop with a small barn-like structure and fence. +sun_bcszsrstzdftgsmw.jpg A dark-colored horse with a white saddle pad is being ridden by an individual in a green jacket and helmet, inside a sandy corral bordered by black wooden fences, with leafless trees in the background. +sun_agmfkjuwclxtdess.jpg The corral consists of dark metal rails forming an enclosure, viewed from a side angle with a partially cloudy sky and a farm building in the distance, and housing several black cattle standing on short green grass. +sun_bkfawtvjhtaaxqwh.jpg The corral features a white metal fence in a front-facing position with distinct white posts, set against a wooden stable backdrop partially enclosing a dark, shaded area, with a horse wearing a bright yellow number 4 saddle and blue bridle. +sun_bzkxdmnsaiqzfmri.jpg A white fence encloses a grassy field with a gently sloping landscape and a mix of brown and green hues, while horses graze inside, with a backdrop of distant trees under a clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/corridor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/corridor_descriptions.txt new file mode 100644 index 0000000..b75c1e6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/corridor_descriptions.txt @@ -0,0 +1,15 @@ +sun_aqnzwgysukxgptzn.jpg A narrow corridor with cream-colored walls and shiny beige tiled floors leads to a distant doorway, featuring evenly spaced wooden doors along the sides and overhead recessed lighting with a visible fire alarm box on the left. +sun_asaatgfmwjznlymd.jpg The corridor features wallpaper with a warm, yellowish hue and subtle vertical stripes, bordered by wooden trim, with a green-carpeted floor leading to a distant exit sign beneath a softly lit ceiling, while framed artwork is evenly spaced along the walls. +sun_asqdfadvteaijwmf.jpg A sunlit corridor with a glossy tiled floor and a wooden ceiling features large windows offering a view of lush greenery contrasted by an interior of exposed brick walls. +sun_akrdzuurrlitqjdv.jpg The corridor features a smooth beige texture with a patterned carpet floor, viewed from a slightly low angle, showcasing wavy ceiling accents and a series of windows to the left, creating a modern office-like environment. +sun_aeblmthajlatwwob.jpg The corridor is a narrow train passageway with a beige ceiling and walls, wood-textured doors on the left, large windows on the right, and extending into the distance with a pale floor, set against a bright countryside view outside. +sun_aoxyrxncxwbenqpr.jpg The corridor features glossy brown flooring with cream-colored walls and doors lining each side, viewed from a centered, straight perspective towards a red door at the end, under a softly illuminated ceiling. +sun_aswwxfxlteiuzimr.jpg The corridor features a series of maroon lockers on the left and a row of windows on the right, with reflective light gray flooring and a white ceiling, leading to a closed doorway at the far end, suggesting a school or institutional environment. +sun_ajagmqtlmcfwgetr.jpg The corridor features cream-colored walls with a tiled floor in yellow and red, adorned with children's artwork on either side, viewed from a standing position with a door slightly ajar at the end. +sun_amdsijhmjiunojms.jpg The corridor features a warm beige color with smooth walls and a polished marble floor, viewed from a central open perspective leading to an intersection, with uniform lighting from recessed ceiling lights and multiple doors lining the sides. +sun_awhtqyrlxgxtcjns.jpg The corridor features smooth, pale green walls with evenly spaced door handles, seen from a low angle showing a shiny, reflective floor extending towards the background, where fluorescent lighting accents the ceiling. +sun_aaydlzlmjpmywuak.jpg The corridor features a rich wooden framework with a textured teal carpet, viewed from a central linear perspective leading to an illuminated space, with light walls and ceiling punctuated by recessed lighting. +sun_ahgkupjzjecrfajj.jpg The corridor features a smooth, speckled beige floor leading into the distance, accented by red and blue trims with cream-colored walls, illuminated by overhead fluorescent lights, displaying an American flag on the left and lockers along the right, creating a clean and orderly school hallway appearance. +sun_azdddhslzzqcoojg.jpg The corridor, viewed from an angled perspective, features brown brick walls with a metallic door, a textured floor of light brown tiles, and a curved ceiling with strip lighting, extending into a vanishing point. +sun_axlzdcihxqncbwaa.jpg The corridor features cream-colored walls with subtle paneling and soft lighting from wall-mounted fixtures, leading to a distant door, and a patterned carpet in muted tones running down the center, with framed artworks sporadically mounted along the walls. +sun_amjufmbqxipsuzio.jpg A long, school corridor with muted green walls and floor, white ceiling tiles with lights, and decorated with colorful posters on the walls, viewed from one end toward the distant doorway where several people are visible. diff --git a/utils/area/descriptions/sun/generated_descriptions/cottage_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cottage_garden_descriptions.txt new file mode 100644 index 0000000..a13f636 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cottage_garden_descriptions.txt @@ -0,0 +1,10 @@ +sun_bjfncmdabsifrdxe.jpg A vibrant cottage garden is viewed from a slightly elevated angle, showcasing a diverse array of colorful flowers in shades of purple, pink, yellow, and white interwoven with lush green foliage, set against a backdrop of tall trees and a greenhouse structure, with the blurred skyline subtly visible in the distance. +sun_amuuybnpnmzbqrox.jpg Amidst a paved patio, lush green shrubs and vibrant pink tulips emerge from well-manicured garden beds, framed by a large stone planter with tall, spiky foliage against a background of warm-toned, wooden siding and assorted leafy plants. +sun_aqulrwaxtbfexukp.jpg In the foreground of the image, a colorful oval flower bed with vibrant yellow and red blossoms surrounded by a neatly trimmed green lawn is visible, set against a backdrop of a residential street and a notable brick tower under an overcast sky. +sun_bxvvhigwkchykfil.jpg The cottage garden features a vibrant mix of dense, textured greenery with pops of red and blue flowers, viewed from a slightly elevated angle, framed by a lush green lawn, and set against the backdrop of rustic wooden structures and a shaded area. +sun_bxhqkswdztfjlogx.jpg A lush, sprawling cottage garden with vibrant green foliage and dotted with red and pink flowers, features an arching trellis covered in vines and set against a backdrop of open grassy fields and distant trees. +sun_aqgrlxjqpobcqhuw.jpg A vibrant circular bed of mixed pink and white flowers, bordered by lush green foliage, is seen from above amidst a grassy lawn with a small pond and dense trees in the background. +sun_bpxvdauaxqftqlqj.jpg A lush cottage garden with a profusion of pink, white, and purple flowers against a backdrop of dense green foliage and the thatched roof of a cottage peeking through, viewed from a slightly low angle. +sun_anxjvrxcypsbjuce.jpg A lush, vibrant garden filled with multicolored flowers in shades of yellow, pink, and purple surrounded by dense green foliage, featuring a wooden bench in the background and crawling vines on a trellis, captured from a ground-level viewpoint with an emphasis on a foreground cluster of delicate, cream-colored flowers. +sun_aodzffhcvmggepah.jpg Lush green foliage and plant arrangements surround rustic garden ornaments, a bird feeder, and a wooden gazebo structure with a lattice design, set against a backdrop of dense, tall trees. +sun_afqjoiijrzjnzyyo.jpg A vibrant cottage garden displays a rich tapestry of colorful flowers like pinks, purples, and yellows nestled among textured rocks, with lush green foliage framing the scene and a green hose visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/courthouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/courthouse_descriptions.txt new file mode 100644 index 0000000..9e8c6ad --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/courthouse_descriptions.txt @@ -0,0 +1,14 @@ +sun_albqcxpejpebthyx.jpg The courthouse features a prominent red brick facade with white stone trim, seen from a slightly upward angle that highlights a clock tower; it is surrounded by lush green trees that frame its symmetrical design. +sun_adhidumqwnlzipih.jpg The courthouse has a grand, symmetric facade with a warm beige brick texture, a central tower featuring a clock and dome with gold accents, surrounded by a snow-dusted landscape, with barren trees framing the entrance and an American flag prominently waving in front. +sun_aspyoulyygwqorrb.jpg The courthouse features a modern exterior with dark reflective glass windows and concrete surfaces, viewed from a ground-level perspective leading to a rounded glass entryway, surrounded by sparse leafless trees and patio seating in a paved plaza against a clear blue sky. +sun_akyqppbbvoytrefh.jpg The courthouse features a vibrant red brick exterior with white accents on its windows and decorative trim, viewed from the front with a prominent central clock tower and surrounded by trees and grass in the background. +sun_auscqgxtiwfiscvx.jpg The courthouse features a light gray stone facade with a greenish roof, viewed from a slightly elevated front angle, complemented by tall columns and an American flag against a backdrop of a blue, cloudy sky and surrounded by a stone wall. +sun_absrgfpxnxqjeuti.jpg The courthouse exhibits a reddish-brown brick facade with tall, ornate white-trimmed windows, viewed from a slight angle, flanked by two tall clock towers under a clear blue sky, with surrounding manicured lawns and trees. +sun_ahsdfrsaknalfghr.jpg The courthouse features a light cream-colored facade with a textured surface, viewed from a street-level angle, showcasing its teal green gabled roofs and bell tower with louvered windows, set against a backdrop of urban buildings and blue sky. +sun_aajtctnjtunrypfk.jpg The courthouse is viewed from the front and slightly to the side, featuring a prominent, ornate red brick and stone exterior with a central clock tower and multiple conical roofs, set against a clear blue sky, surrounded by parked cars and sparse trees. +sun_agqjixwxmibnogdd.jpg The image depicts a large, white neoclassical courthouse with a prominent central dome, intricate architectural details, and surrounding staircases, situated on a bustling city street under a clear blue sky. +sun_abkgnnmyrruvuipy.jpg The courthouse, viewed from the front, is a light gray, rectangular structure with a textured facade featuring rows of large windows, topped by a dome with an American flag, set against a backdrop of tall, dark green pine trees and a partially snow-covered lawn with a stone retaining wall. +sun_aohqcwfsiktnhpgs.jpg The courthouse features a red brick facade with distinctive white-trimmed windows and a clock tower, viewed from a frontal angle against a clear blue sky and flanked by lush green grass and tall trees. +sun_awridgcmftfclmht.jpg The courthouse features a red brick exterior with a white cupola and trim, viewed from a front angle amidst a vibrant blue sky, flanked by autumnal orange foliage and a clear, open area in the foreground. +sun_ajmroadcaidvybue.jpg The courthouse features a light gray façade with large, prominent columns in the front, viewed from a direct central perspective, flanked by trees on either side and set against a clear sky, with a manicured lawn and a single pathway leading up to the entrance. +sun_ayhnekttwlwdzwuw.jpg The courthouse is an elegant neoclassical structure with a white facade and brick foundation, featuring a prominent pediment and tall columns, viewed from the front with leafless trees and a neatly trimmed lawn in the foreground, complemented by a vivid blue sky and scattered clouds. diff --git a/utils/area/descriptions/sun/generated_descriptions/courtroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/courtroom_descriptions.txt new file mode 100644 index 0000000..4a59fa2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/courtroom_descriptions.txt @@ -0,0 +1,14 @@ +sun_aglfbyaajnorlhon.jpg The courtroom features rich, red velvet curtains as a backdrop, a wooden podium and benches with a polished, dark finish, and a notable blue and gold emblem hanging to the side, viewed from the right corner with a focus on the empty seating area. +sun_ayfndfytafrkpeju.jpg The courtroom features dark wooden furnishings with a glossy finish, green carpet flooring, American and state flags, and arched handrails, viewed from an angle showcasing jury chairs and a podium in a traditional courtroom setting. +sun_aknorcjykpestsve.jpg The courtroom features rich, dark wood paneling and furniture with a polished finish, viewed from the perspective facing the judge's bench adorned with ornate light fixtures and flags, highlighted by its stately, classical architecture. +sun_ainouzrxmpuoxiqc.jpg The courtroom features a neutral gray color palette with wooden finishes, viewed from an elevated angle showing rows of dark, cushioned seating facing a modest, wood-paneled judge's bench, set against a clean, simple backdrop with soft overhead lighting. +sun_apkmfzjmsquidaif.jpg The courtroom features a light wood paneling and furniture with blue cushioned chairs, observed from a straight-on viewpoint, highlighting a prominent dark blue backdrop behind the judges' bench adorned with an emblem. +sun_ayxmymwcuoaqjpeo.jpg The courtroom features rich brown wooden furnishings and seating set against a cream-colored wall adorned with symbolic flags and a large, detailed mural of a mountain and valley landscape, viewed from the center aisle perspective with glowing wall sconces enhancing the formal atmosphere. +sun_apfradpaooukwzmj.jpg The courtroom features rich wooden tones with ornate carvings, viewed from a side angle showing pew-style seating, red carpeting, and a well-lit bench area framed by tall windows and detailed molding on the walls and ceiling. +sun_bkntcrrrnbkcbdca.jpg The courtroom features a warm-toned wood-paneled wall and desks, with a deep blue carpeted floor, viewed from the audience perspective toward a group of robed individuals seated at a long, curved bench beneath a series of signs against a softly lit, cream-colored backdrop. +sun_azbosnldlsocdkiw.jpg The courtroom appears with warm wood tones and a smooth texture, viewed from the back with a focus on rows of benches and a central judge's bench, featuring an array of overhead screens and recessed lighting in a formal and organized setting. +sun_axgndarxratdljhy.jpg The courtroom features dark wood paneling with a smooth texture, viewed from the front with three maroon leather chairs centered below an emblem on the wall, flanked by U.S. and state flags. +sun_alyjcryhxqpptcqd.jpg The image depicts a courtroom viewed from the back towards the judge's bench, featuring polished wooden pew-like seating with distinctive vertical slats, a large wooden podium centered against a backdrop of wooden paneling, an American flag, and a framed picture on the wall, all in a soft, warm brown tone. +sun_acvegteldbidcbkv.jpg The courtroom features light gray walls and a drop ceiling with fluorescent lighting, showcasing a vantage point from the back with light wooden benches, a central judge's desk, American flags, and maroon upholstered chairs against a neutral-toned setting. +sun_avsofcsncqhcibpo.jpg Dark wood paneling and blue carpet provide a formal setting in the courtroom with a frontal view of a central judges' bench, flanked by an American flag, distinctive emblem signage on the wall, and rows of blue leather chairs in the foreground. +sun_axxifgjjobryyssu.jpg The courtroom features rich wooden textures and warm brown hues, viewed from the audience's perspective, with ornate paneling behind the central judge's bench, a prominently placed national flag, wall-mounted lamps, and a clean, orderly appearance. diff --git a/utils/area/descriptions/sun/generated_descriptions/courtyard_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/courtyard_descriptions.txt new file mode 100644 index 0000000..09eab6b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/courtyard_descriptions.txt @@ -0,0 +1,16 @@ +sun_ddvlaoxcboepokqk.jpg The courtyard features a stone-textured fountain with rocky accents in the foreground, surrounded by lush greenery and outdoor dining furniture under an umbrella, all set against a multi-storied, beige building facade with balconies in the background. +sun_dcuaylevloikfako.jpg The courtyard features a gray, stone-textured surface surrounded by multi-story buildings with large windows, seen from an elevated viewpoint, with a gathered crowd visible in the central area and trees lining the perimeter. +sun_dcouscakgjehsarp.jpg The image depicts a high-angle view of a multi-story courtyard with pastel yellow walls, adorned with ornate white cornices, featuring black wrought-iron railings, potted plants lining the balconies, and a patterned tile floor, all under a partial shadow from the canopy above. +sun_dgybzhjzhbkixjnm.jpg The courtyard features a blend of cream and red-brown hues with textured stone walls and a notable green lion statue, surrounded by ivy-covered arches, and a clock tower set against a clear blue sky. +sun_dzwjcigizililrhn.jpg The courtyard features beige stone architecture with intricate carvings, white wrought iron furniture, and lush green plants, set against a bright sunny backdrop with distinctive archways and umbrellas providing shade. +sun_doaescsdukqvkfud.jpg From an elevated viewpoint, the courtyard features a green bushy area with white flowering plants, surrounded by two-story brick buildings with lattice balconies, and a partially visible swimming pool covered with a dark tarp at the far end. +sun_dqvvgniaeijnicpe.jpg The courtyard features cascading pools with smooth black edges and clear water, seen from an elevated angle amid modern white building facades with glass balconies and a patio area enclosed by transparent panels. +sun_dnwkjimrjiunrqzj.jpg The courtyard features a patterned, light gray cobblestone surface set between a brick pinkish building and a glass façade, with a sparse arrangement of small trees and a vehicle parked to the side, casting shadows in the bright sunlight filtering through. +sun_dddmvdtzcnwzklsj.jpg The courtyards shows a construction area with incomplete gray and white brick buildings surrounded by scattered wooden planks and metal debris, alongside a leaning ladder positioned on brown soil, with trees visible in the background. +sun_deqatlrhoshdtxel.jpg The courtyard is surrounded by beige and gray stone buildings with large arched windows, featuring a central open space with scattered trees and shrubs, all viewed from an elevated perspective under a clear sky, with a clock tower peeking above in the background. +sun_dwcjitbuzttzhfpg.jpg The courtyard features a rectangular green lawn bordered by manicured hedges, with a centered walkway leading to a brick building facade, displaying multiple windows and a central white door, surrounded by symmetrical, trimmed shrubbery and trees, under an overcast sky. +sun_dfqfngfkgwdmfeao.jpg The courtyard features neatly spaced potted shrubs with lush green foliage in round, terracotta-colored containers, set on a textured pebble pathway and surrounded by a backdrop of cream and peach-toned residential buildings with archways and small balconies. +sun_drpgftmwxbhnnkpm.jpg The courtyard, viewed from above, features a gray cobblestone floor with a central round planter, surrounded by pale, multi-tiered balconies adorned with decorative railing and sporadic greenery along the perimeter. +sun_djqtxjentimoaplx.jpg Viewed from eye level, the courtyard features a beige concrete building with angular windows surrounded by a green grass lawn, scattered trees with autumn foliage, a patio area with wooden benches, and a white umbrella adjacent to a lamp post under a clear blue sky. +sun_djrgeofefaybmrxa.jpg The courtyard features cream-colored, textured walls enclosing a rectangular space with a tiled stone floor, flanked by small potted plants and a spiral staircase in the foreground, partially obscuring large windows and a doorway in the background. +sun_dmafhjmxyhjsvitw.jpg The courtyard features a geometric pattern of small square stone tiles set in green grass, bordered by light gray stone buildings with tall, narrow windows, viewed from an elevated angle, showcasing a clear blue sky above. diff --git a/utils/area/descriptions/sun/generated_descriptions/covered_bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/covered_bridge_descriptions.txt new file mode 100644 index 0000000..fc8c7d5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/covered_bridge_descriptions.txt @@ -0,0 +1,10 @@ +sun_apxyrdyurhhaswrf.jpg A rustic, horizontally-oriented covered bridge with weathered, dark wooden planks and a green metal roof is set against a backdrop of autumnal trees and rolling hills, with visible railway tracks in the foreground. +sun_bpzdpdrizhywmqlo.jpg The covered bridge appears in a lateral viewpoint with weathered gray wooden siding, featuring multiple evenly spaced triangular supports beneath, set against a river and a partially cloudy sky. +sun_bcvsshfrztoxdgmk.jpg The covered bridge is painted in a deep red with a weathered wooden texture, viewed from the side with a stone foundation, set against a backdrop of leafless trees and a clear blue sky, spanning a shallow creek with a nearby stop sign. +sun_bbbxhqquwuchnjxi.jpg The covered bridge, viewed from the side, is painted light gray with a weathered texture and features small square openings, set against a verdant backdrop of leafy trees and a gently flowing stream bordered by lush grass and a stone abutment. +sun_aqqfrzsrnybsvduh.jpg The covered bridge is a rustic red with visible wooden texture, viewed from a slightly angled side perspective, nestled amidst a lush green forest with a clear blue sky, featuring a distinct pitched roof and a single small window. +sun_anxxelsejrhbhvud.jpg The covered bridge appears in a side view with weathered wooden panels showing a grayish hue, set over a stone pier above a shallow flowing stream, surrounded by leafless trees and an overcast sky, with a small rectangular opening visible on one side. +sun_bpgtoqwscqzccsvd.jpg The covered bridge appears in a side view with a muted, weathered gray exterior, spanning a wide, tranquil river, set against a backdrop of leafless trees and a muddy bank, marked by its elongated rectangular windows and simple gable roof. +sun_blbwhuvjazknduou.jpg The covered bridge is painted in a faded red color with white trim, and features a wooden, gabled roof, viewed from a frontal angle with an open road stretching through it, surrounded by lush green trees and a yellow road sign displaying weight limits on the right. +sun_apimtpnekylaphic.jpg A dark wooden covered bridge with a weathered, rustic texture spans a gently flowing river, viewed in profile against a backdrop of autumn trees and clear blue sky, featuring a light-colored roof and a stone foundation. +sun_bvhqxsplnopwmwia.jpg The covered bridge features a warm, weathered wooden exterior with a slightly arched roof, viewed from a perspective highlighting its diamond-shaped openings and set against a backdrop of autumnal trees and a white picket fence. diff --git a/utils/area/descriptions/sun/generated_descriptions/creek_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/creek_descriptions.txt new file mode 100644 index 0000000..f215e7e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/creek_descriptions.txt @@ -0,0 +1,15 @@ +sun_apxqydgqejfpaugc.jpg A small creek meanders through a forested area, with its clear water appearing light brown near large, uneven rocks and patches of green grass, all shadowed by dense, dark green foliage and a bare, leaning branch. +sun_aztkjekddvzagwol.jpg The creek features cascading water with a silky, white appearance over moss-covered rocks, set against a rugged background of varying shades of green and brown, with visible wet textures indicating movement and moisture. +sun_bgvzsposoadifjzc.jpg The creek appears as a muddy, light brown stream flowing gently over smooth rocks amidst vibrant green foliage, viewed from a low angle, with lush trees and a hint of a grassy area in the background. +sun_bczuzmfhtqngkqdj.jpg A narrow, winding creek flows through a lush forest setting, with its surface reflecting a mix of dark earthy tones and shimmering highlights, surrounded by dense green foliage and scattered rocks, while a tall tree trunk and shadow-dappled ground dominate the background. +sun_auldcjwiqhhhwcld.jpg The creek appears as a calm, reflective body of water flanked by numerous dark, weathered rocks, viewed from an elevated angle with a background of misty, autumnal trees in shades of orange and yellow, imparting a serene and natural atmosphere. +sun_bxbwslzwdsyvgean.jpg A small creek with clear water flows gently over dark, moss-covered rocks amidst a lush, green forest setting with dense vegetation and tree trunks partially framing the scene. +sun_bncvgxjfmtlvfwho.jpg The creek is a narrow, winding stream with frothy white water flowing over smooth rocks, set in a grassy area bordered by a wooden fence and distant trees, under a clear sky with mountainous terrain in the background. +sun_bjhskbeprwcrmebx.jpg A narrow, shallow creek with clear, slightly reflective water flows gently through a lush, green landscape, bordered by dense grassy banks and leafy vegetation, under a canopy of spring foliage. +sun_aojrufpjetrsdnor.jpg The creek appears as a fast-flowing stream of bluish-white water, with a smooth, silky texture over dark, rounded rocks, viewed from a low angle surrounded by shadowy, rugged terrain. +sun_bwvcxtndcznpifmf.jpg The creek appears shallow with clear water revealing smooth, multi-colored stones beneath, surrounded by lush green foliage and rocks along a gently sloping forested backdrop. +sun_bwhtnknxkhdqohxm.jpg The creek features turbulent, frothy white water cascading over dark, moss-covered rocks, surrounded by lush green forest foliage under a misty, overcast sky. +sun_bqpohddzyiozyqcj.jpg The creek in the image shows a clear, shallow flow with a greenish-brown hue over visible pebbles, flanked by lush greenery and trees, with a distinct smooth left bank and a rugged right bank dotted with a few rocks. +sun_bufcxxqnprpnaylv.jpg A shallow creek with clear, dark water flows through a rocky terrain surrounded by lush, green grass on rolling hills under a clear sky, with a large stone prominently placed in the foreground. +sun_bpbnjcctfkoayjxh.jpg The low-resolution image shows a winding creek with clear, blue-green water, surrounded by lush green trees and rocky banks, viewed from an elevated viewpoint with forested mountains in the background. +sun_acluswowtzoncihu.jpg The creek features dark, moss-covered stones with white, frothy water flowing rapidly over them, viewed at a mid-angle, set against a lush green and slightly blurred riverbank background with overhanging branches. diff --git a/utils/area/descriptions/sun/generated_descriptions/crevasse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/crevasse_descriptions.txt new file mode 100644 index 0000000..4a50012 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/crevasse_descriptions.txt @@ -0,0 +1,16 @@ +sun_apkmjikiwvkwslbe.jpg The crevasse shows smooth, undulating layers of icy white and light gray with subtle blue tones, viewed from a side angle, set against a backdrop of darker, snow-dusted rock formations. +sun_axwbwwnsmnxcazgg.jpg The crevasse, viewed from a downward angle, is enveloped in icy blue hues with a smooth, shadowy interior and hints of rough, white snow on the lower edges, set against a backdrop of snow-covered surfaces and climbers for scale. +sun_awxdpqkkxgmujueu.jpg The crevasse appears as a deep, jagged opening in the snowy landscape, exhibiting a layered texture with shades of blue and white, surrounded by undisturbed snow and towering mountains in the background, and viewed from a downward angle with its depth emphasized by the shadows cast within. +sun_algtrvrfayrehtya.jpg A narrow crevasse with smooth, light blue ice walls shows several people carefully navigating through it, set against a backdrop of rugged gray rock and patches of ice. +sun_afrftdmnxihgehlm.jpg The crevasse is characterized by pale blue ice with a smooth and jagged texture, viewed from above at an angle, with the background consisting of icy walls and edges, featuring distinct vertical icicles and shadowed depths. +sun_avequggwfcuwbtdq.jpg The crevasse exhibits a jagged, icy texture with a bluish-white color, viewed from an angled, overhead perspective, surrounded by rugged ice walls and a rocky background, with visible climbers adding a sense of scale and adventure. +sun_aolwifmzipuuodlo.jpg The crevasse appears as a narrow, dark fissure running through the rugged, rocky terrain, bordered by pale, icy surfaces speckled with grayish debris, set against a sloping background of weathered stones under a cloudy sky. +sun_ateiwmaqyzwgmrlq.jpg The crevasse appears as a long, narrow fissure with dark shadowing inside, set against a bright, smooth snow-covered landscape with a group of climbers in the foreground, highlighting its angular and rugged edges in contrast to the soft, rolling snow surface surrounding it. +sun_atjwbxfwkolphnne.jpg The crevasse appears blue and smooth-textured from a frontal viewpoint, flanked by sheer ice walls tapering upwards, set against a backdrop of rugged, green mountains. +sun_aphemihctavzclvk.jpg The crevasse shows a deep, jagged opening with icy, white walls, surrounded by a vast, snow-covered mountain landscape, while a climber in a yellow helmet bridges the gap, highlighting the crevasse's rugged texture and formidable depth. +sun_abekxrpakfsoxpbr.jpg The crevasse displays a jagged texture with smooth blue ice walls, viewed from a narrow perspective, framed by a contrasting overcast sky, and features a discernible rounded arch at its top. +sun_arcbytuehjzjvdmc.jpg A deep, narrow crevasse with smooth, white icy walls reflects sunlight, surrounded by climbers in bright protective gear against a clear blue sky. +sun_aamepsrqelgzeleo.jpg A narrow, deep blue crevasse cuts through the white, snow-covered surface, with smooth, layered icy walls that reflect light in the cold, glacier environment. +sun_akbzaorjubeafzju.jpg The crevasse, viewed from above, is a deep, narrow, icy chasm flanked by blue and white ridged walls, set against a backdrop of snow-covered mountainous terrain with a person standing nearby, highlighting its vertical depth and rugged texture. +sun_alfglsmhvwaztemo.jpg The crevasse appears as a jagged, deep fissure in the ice with a rough, grayish-white texture, viewed from an angled perspective, set in a snowy, expansive glacier landscape, with shadows accentuating its depth and leading into a narrow, dark interior. +sun_acpbhtuhtayjoqro.jpg The crevasse reveals a striking icy blue interior with rough, jagged edges, viewed from a low angle that captures a narrow ledge against a stark, snow-covered landscape with a cloudy, white sky overhead. diff --git a/utils/area/descriptions/sun/generated_descriptions/crosswalk_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/crosswalk_descriptions.txt new file mode 100644 index 0000000..b907e3a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/crosswalk_descriptions.txt @@ -0,0 +1,16 @@ +sun_alvmvdcblkcmlkjg.jpg The crosswalk consists of broad white stripes with a slightly worn texture, positioned obliquely across a multi-lane street in an urban setting, bordered by a stone monument and several passing vehicles, with surrounding buildings and street lamps visible in the evening backdrop. +sun_ajqsvdblkvtesumm.jpg The crosswalk features bold white diagonal lines on a dark asphalt background, viewed from a diagonal angle, set against an urban backdrop with buildings and a pedestrian crossing sign in front. +sun_alatjjuzqrbdfohd.jpg The crosswalk is marked by faded white painted lines on an urban street, with pedestrians crossing in various directions, set against a backdrop of shops, parked cars, and a leafy tree. +sun_byhninokvevsmxgv.jpg A densely crowded white-striped crosswalk stretches diagonally across a bustling urban setting illuminated by colorful city lights and towering advertisements. +sun_aqlvtzblzaywnnar.jpg The crosswalk features distinct white stripes on a coarse, dark asphalt surface, viewed from above with a prominent shadow silhouette cast across it, set against a background of intersecting lines. +sun_aveacipwysuhoqxj.jpg The crosswalk features wide, yellow, painted stripes set against a dark asphalt background, viewed from an elevated angle, with distinct pedestrian presence and surrounding street elements visible in dim lighting. +sun_axxqitcxppenpcjz.jpg The low-resolution image shows a crosswalk with faded white zebra stripes on a dark asphalt road, viewed from an angle, set against an urban residential background with brick buildings and dim evening lighting. +sun_awovhthzpzomokpv.jpg The cobblestone crosswalk features large, irregularly shaped stone slabs set apart, with an ancient road backdrop characterized by weathered stone ruins and a path worn by time, under an overcast sky. +sun_armehemshtwxcfcv.jpg The crosswalk features faded white, parallel stripes on a gray asphalt surface and is viewed from a straight-on angle, positioned in a bustling urban setting with a backdrop of shops and a moving scooter. +sun_afustxvkkqxnxvuq.jpg The crosswalk is patterned with a mix of faded white and green stripes, scattered with autumn leaves, viewed from an angle that reveals a nearby chain-link fence and a "Do Not Enter" sign in a suburban street setting. +sun_aehbhstxwhabfkqc.jpg The crosswalk consists of faded white parallel stripes on an asphalt road, viewed from above, with shadowed patches and a prominent stop sign and traffic light on the left. +sun_ahgfkjotkehoauan.jpg The crosswalk features broad, white, and evenly spaced stripes on a grey asphalt surface, viewed from a slightly elevated perspective, with a backdrop of lush green trees lining a busy urban street and various pedestrians including a person in a wheelchair crossing. +sun_afwovdqtzxiknmyu.jpg The crosswalk is painted in alternating white and gray stripes on a flat road surface, viewed from a slightly elevated angle with traffic lights overhead and trees lining the edge of the intersection in the background. +sun_acurvadcbaxinwhw.jpg The crosswalk features white painted parallel lines on asphalt, viewed at a slight angle from pedestrian level, with an urban background of buildings, cars, and a bus nearby. +sun_aovzhjjsnaermuds.jpg The crosswalk features wide, white diagonal stripes on a dark asphalt road, viewed from a low angle with a yellow road sign in the foreground, set against an urban street with cars and buildings lining the background. +sun_apousmwkaotartpw.jpg The low-resolution image shows a black-and-white striped crosswalk with a textured asphalt surface, viewed from an angled roadside perspective, set against a background of a brick building and autumn trees. diff --git a/utils/area/descriptions/sun/generated_descriptions/cubicle_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/cubicle_descriptions.txt new file mode 100644 index 0000000..5a389ba --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/cubicle_descriptions.txt @@ -0,0 +1,13 @@ +sun_aasjqgwcfrheyqmd.jpg The cubicle features yellow partition walls with a smooth texture, viewed from a front angle, surrounded by green potted plants with a soft, illuminated desk area containing a computer monitor, phone, and office chair against a warm, carpeted floor. +sun_abbusdkdkscltfqn.jpg The cubicle features pale, light-colored desks with an arrangement of binders and documents on top, and is separated by dark partition walls in an organized open-office setting visible from an overhead angle. +sun_aislvxhmcmfjzncu.jpg The cubicle features beige fabric panels with a smooth texture, viewed at an angle revealing two desks with computers and red cushioned chairs, enclosed within a neutral-toned office setting with books and office supplies in the background. +sun_aryvivyirbqbklgf.jpg The cubicle is cream-colored with a smooth texture, featuring a view from a slightly elevated angle showing a cushioned office chair, a desk with documents and electronics, and a large window that provides a glimpse of a building exterior. +sun_arbyyopvfqqgcqbx.jpg The cubicle features a beige desk surface with a combination of orange, green, and white partition panels, viewed from above with a black office chair positioned centrally, set against a tiled office floor with surrounding cubicles in similar designs. +sun_atoptdibzvdyuksh.jpg A cluttered office cubicle with a light gray desk surface, featuring a computer monitor displaying text, surrounded by stacks of books and papers, all set within a white-walled environment with shelves holding more books and a few scattered items, viewed from an eye-level perspective. +sun_aehzyppmcfhresge.jpg The cubicle features gray fabric-covered panels, a beige overhead storage compartment with a small sign, and a desk surface with a laptop, surrounded by a neutral office environment with fluorescent lighting. +sun_aynxducrcesasraq.jpg The cubicle features gray fabric-covered partitions and a wooden desk surface, displaying an assortment of personal items and pinned photographs under a dim, white office lighting, with a recognizable array of paper, a black coat hanging on the partition, and a patterned office chair pulled up to the desk. +sun_awloagtarufnlbcz.jpg The cubicle features a simple cream-colored desk with a white drawer unit underneath, surrounded by light gray fabric-covered partitions in a simplistic office setting with a concrete floor visible from an elevated angle. +sun_akxankgmsqizczdz.jpg The cubicle in the foreground features beige-colored partition panels with a smooth texture, viewed from a slightly elevated angle, surrounded by a library environment with a mural on the wall, computers on desks, and people working nearby. +sun_adrkcjhwyfqqlvgl.jpg The cubicle has a neutral gray color with smooth surfaces, seen from an oblique angle revealing L-shaped countertops and overhead storage, set against a muted industrial background with a concrete floor and a partially visible garage door. +sun_awtcabgzrutkvitn.jpg The cubicle features light gray, smooth panels with a wooden L-shaped desk, viewed from an elevated angle, set in an office environment with similar adjoining cubicles and a light gray carpeted floor. +sun_amxsronafujikspg.jpg The cubicle features blue fabric panels with a dark wood desk surface, viewed directly from the front; it houses a computer with a black monitor and keyboard, a silver tower, scattered papers, a telephone, and has a gray floor and off-white walls in the background adorned with a map and documents. diff --git a/utils/area/descriptions/sun/generated_descriptions/dam_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/dam_descriptions.txt new file mode 100644 index 0000000..d5aa03a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/dam_descriptions.txt @@ -0,0 +1,10 @@ +sun_dgqwlreozadmvwmc.jpg The dam is a large, gray concrete structure with a slightly curved facade, viewed from an elevated angle, surrounded by a lush green forest and adjacent to a body of water, featuring evenly spaced supporting arches and a distinctive rectangular control tower near its center. +sun_dggbmvbmjkoyvbqf.jpg The dam appears to have a dark concrete color with a smooth texture, viewed from a side angle showing its curved shape with sloping embankments, set against a background of sparse vegetation and industrial buildings under a clear sky. +sun_dvzpigmndrlmfjti.jpg The image shows a concrete dam with a light yellow control building and red-and-white towers on top, viewed from a side angle with water gushing out powerfully, set against a backdrop of green vegetation and distant forested hills. +sun_dwbdqpnqnzvmpgjf.jpg The dam features a dark, smooth concrete surface with numerous white cascades of water flowing down its length, viewed from a side angle with an adjacent red-brick building, amidst a background of clear blue sky and scattered greenery. +sun_drtdsvorlcumcral.jpg The dam is a curved, gray concrete structure with a textured surface, viewed at a diagonal from an elevated perspective with snow-dusted evergreen forested hills in the backdrop under a partially cloudy sky. +sun_dxfhjaozohcomcod.jpg The dam appears gray with a slightly weathered texture, viewed from a low angle between steep, rocky canyon walls, with sparse vegetation and a small waterway in the foreground. +sun_dhntdkoimhmptspp.jpg A large, curved concrete dam with a smooth texture, seen from an elevated angle, is situated between rugged, reddish-brown canyon walls, with a calm blue reservoir extending into the distance. +sun_dhfnunbnvbrkxphg.jpg The low-resolution image shows a mostly grey and white dam with cascading water over its stepped structure, viewed from a slightly elevated angle, set against a rocky cliff and cloudy sky background. +sun_dvxuxzytfdbjyzit.jpg The dam appears as a large, sloped concrete structure with a series of white lines running vertically, set against a lush green forested background, viewed from an elevated side angle, and accompanied by nearby power infrastructure. +sun_dtaefzwapdphnmzg.jpg The dam features a series of large, white structures with a smooth texture atop a concrete base, viewed from a side angle with rocky shores in the foreground and a body of water reflecting the warm, golden-hour light in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/delicatessen_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/delicatessen_descriptions.txt new file mode 100644 index 0000000..8e9eeb7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/delicatessen_descriptions.txt @@ -0,0 +1,10 @@ +sun_alazosijjquajezo.jpg The delicatessen display features an assortment of sliced meats with pink and beige hues neatly arranged on verdant garnishes, bordered by small green grapes, viewed from a slightly elevated angle behind clear glass, amidst labeled price tags and packaged cheeses in the background. +sun_ajyqblmdzrhbguyl.jpg A person in a floral shirt is standing in front of a refrigerated glass deli counter filled with various loaves of bread, surrounded by a warm-toned background with handwritten menu boards displaying meats, cold cuts, and cheeses. +sun_andlkcdnnccbtwfz.jpg A stack of transparent plastic containers filled with colorful granola-like mixtures sits on a mint-green countertop, surrounded by a lively shop environment with shelves stocked with packages and hanging paper lanterns in the background. +sun_aruqoordcgflqydm.jpg The image depicts a low-resolution delicatessen shelf filled with various colorful packaged goods, viewed from an angle showing multiple aisles in a brightly lit store with wood paneling, featuring cereal boxes and condiment bottles as distinguishing items. +sun_aoolscmlvmiejzrj.jpg A delicatessen featuring a glass display case filled with an assortment of breads and pastries with light brown and cream textures, alongside a white shelf on the left storing organized jars and bottles with dark-colored labels, all set against a background of neatly arranged products and tiled flooring under bright lighting. +sun_abxnywtvcrkuteck.jpg A delicatessen counter with a glass display features a variety of food items under warm lighting, surrounded by light wood cabinetry, multi-colored walls, and a customer engaged with the contents inside. +sun_ailhgpjyeadwyhrf.jpg The delicatessen features a curved glass display filled with assorted meats and cheeses, set against a warm yellow and brown checkered wall, with a basket of bread prominently placed on the counter, viewed from an angle showing both customers and the menu board. +sun_aiadnwveumloxddg.jpg The delicatessen features a warm-toned, wood-framed glass display filled with an assortment of baked goods, set beneath a retro-style, sputnik chandelier emitting a soft glow, in a spacious interior with a tiled ceiling and partially visible wall decor. +sun_aaraqzhbyaugbkvx.jpg The delicatessen features a dark wooden tabletop with a metallic condiment holder containing mustard, ketchup, and pepper, surrounded by glasses and menus, set in a warmly lit casual dining atmosphere with chairs and diners visible in the background. +sun_ancfxclnocynbyvy.jpg A refrigerated display case filled with wheels of cheese, showcasing a variety of colors from creamy whites to deep oranges and browns, with distinctive circular labels, surrounded by wrapped deli meats, all set against glass shelves and a wooden floor background. diff --git a/utils/area/descriptions/sun/generated_descriptions/dentists_office_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/dentists_office_descriptions.txt new file mode 100644 index 0000000..57663f2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/dentists_office_descriptions.txt @@ -0,0 +1,20 @@ +sun_auotfvyrdzhvozbe.jpg The image shows a vintage dentist's office with a dark brown dental chair and equipment featuring metal and ceramic components, set against walls adorned with framed photographs and certificates, illuminated by a multi-bulb ceiling lamp. +sun_abiujasbrkuiifau.jpg The dentist's office features a mint green dental chair with a smooth, shiny texture positioned under a ceiling light, set against a backdrop of large windows revealing trees outside, alongside wooden cabinetry enhancing the natural ambiance. +sun_agecezkjndimyzmw.jpg A dental operatory with a beige reclining chair occupies the center surrounded by medical professionals wearing blue and pink protective gowns and masks, under bright overhead lighting against a backdrop of white walls and office fixtures. +sun_aoxvtquzpskwymcz.jpg The dentist's office features a light beige color palette with smooth cabinetry, a dental chair covered with a clear protective sheet, and a mounted television screen displaying an image, all set against a clinical backdrop with various dental equipment and overhead lighting. +sun_abygikuiflbrtimf.jpg The dentist's office features bright green walls, natural wood cabinets, and ceiling-mounted TV screens, viewed from a side angle showing a patient in the chair with a dental professional in floral scrubs interacting with them, set against a window with blinds partially open. +sun_axpdtnfjfbcvncnd.jpg The dentist's office features a sleek, light gray chair with smooth, flexible arm attachments viewed from an angled side perspective, set against a minimalist white wall and tiled floor with a stool and essential equipment in the background. +sun_aasxxjhmtxvjwfzv.jpg A dentist's office where a dentist in a white coat and hair covering leans over a reclining child wrapped in a colorful pink fabric, set against a neutral-toned background with visible dental tools and equipment. +sun_awadljqpbvugyjez.jpg The dentists office features green padded chairs under bright overhead lights with a tiled floor, surrounded by white walls and cabinetry, a computer setup on one side, and large venetian-blinded windows in the background. +sun_ajxlkcvrclyurnoj.jpg The dentist's office features a bright orange dental chair with smooth leather texture, positioned slightly reclined in a small, tiled room with white walls, surrounded by a variety of metallic dental tools and equipment, including a prominent adjustable overhead lamp and a masked sink unit. +sun_avhbgktewdehwpuz.jpg The image shows a dental office with a team of professionals in blue scrubs and masks working closely on a patient, surrounded by dental equipment and a beige background with shelves and a computer. +sun_addqxtovfrafmdts.jpg The dentist's office features soft grey cabinetry and countertops, viewed from a ground-level angle, with dental chairs upholstered in pale blue, surrounded by dental equipment against a backdrop of a clean, white wall adorned with a nature-inspired artwork and a clock. +sun_adipwnldbckosgko.jpg The dentist's office features a vintage, green dental chair apparatus with a round, white basin in the foreground, positioned against an illuminated backdrop of vertical, pleated window curtains. +sun_aebcthiejeewmmyv.jpg The dentist's office features a beige dental chair with a smooth leather texture in the foreground, positioned near a compact workstation with cream-colored cabinetry and an open drawer, set against a backdrop of a dark speckled wall and curved glass block partition. +sun_aedtylfcqxemdmlz.jpg The dentist's office features a retro green dental chair with a textured finish, positioned upright in a tiled room, with a distinctive vintage dental machine including a spittoon beside it, set against a background of beige tiled walls and white curtains. +sun_axbwvixaglmstskk.jpg The dentist's office features a vintage dental chair with a black leather seat and backrest, contrasted by the cream-colored metal frame, positioned in front of a tall, narrow window with bars, surrounded by various dental equipment including a circular lamp overhead and a small workspace on the side. +sun_axrcxcvgwblmuudz.jpg The dentists office features light blue and black uniforms, a patient seated in a tan dental chair with overhead machinery, surrounded by a modern clinical environment with muted walls and large windows in the background. +sun_arrjawvjdtvkstqh.jpg A dental office viewed from the side features a light blue dental chair with white and metallic equipment, alongside a large plant against a white wall adorned with framed certificates, illuminated by soft, diffused light from a sheer curtained window. +sun_aesmjndpoqogyfap.jpg The dentists office features beige walls with maroon and white dental equipment, a window providing natural light, and a monitor displaying a screen, while various instruments and modern fixtures are organized neatly against white countertops. +sun_alpqhikhbmgnubem.jpg The dentist's office features light wood cabinetry with a smooth texture, a vantage point from the side revealing a cream-colored dental chair and metal dental equipment on a gray countertop, against a wall with under-cabinet lighting, sockets, and a small stainless steel sink. +sun_abgqtjetpzezynih.jpg The dentist's office features a maroon dental chair in a clinical white and beige room, with cabinetry and a counter holding dental equipment, while the beige-clad dentist and patient create a focal point in the mid-range view. diff --git a/utils/area/descriptions/sun/generated_descriptions/desert_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/desert_descriptions.txt new file mode 100644 index 0000000..ea270f3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/desert_descriptions.txt @@ -0,0 +1,10 @@ +sun_bfcznyjjveltrvmb.jpg The image depicts a vast, flat desert landscape with sparse greenish shrubs scattered across a sandy, beige terrain, framed by a low mountain range under a clear blue sky with wispy white clouds. +sun_bzpjfetivojhplyc.jpg The image displays undulating sand dunes in soft shades of golden brown with a smooth, rippled texture, viewed slightly from below against a clear blue sky, with sparse vegetation dotting the foreground. +sun_bnrpatoccuvbbkip.jpg A sandy, expansive desert backdrop with camels carrying people in patterned clothing and colorful headscarves, set against a pale blue sky. +sun_asbojivucftodjsj.jpg A coyote with a sandy-brown and gray fur coat stands in a barren, flat desert terrain with scattered small shrubs, under an overcast sky with distant hazy mountains. +sun_aplsdaaomiddmllj.jpg A vast expanse of light beige sand with subtle ripples stretches under a partly cloudy blue sky, featuring a solitary dark, twisted piece of driftwood casting a shadow in the foreground. +sun_aafqfjpechscyidz.jpg The image shows smooth, undulating sand dunes in a warm beige color, viewed from a slightly elevated angle, with a distant backdrop of hazy mountains and a clear blue sky, featuring scattered footprints on the foreground dunes. +sun_ajqkymqgzhkwrpte.jpg The low-resolution image shows an expansive desert with undulating sand dunes in light golden hues and intricate rippled textures, set against a clear blue sky with a thin line of distant ocean on the horizon, enhancing the landscape's serene and vast appearance. +sun_bmvwgdswpqxraind.jpg An orange ATV with black accents and big tires faces slightly to the right against a backdrop of smooth, rolling sand dunes under a clear blue sky, with a small red flag on a pole extending from the vehicle. +sun_afnezlyrmmdropae.jpg A flat expanse of pale tan sand with smooth, rippled textures stretches towards distant low mounds under an expansive, clear sky, with a solitary figure in red kneeling in the foreground. +sun_afpgphrzsbeqlsrv.jpg The image showcases a sandy beach with light tan sand characterized by rippled textures, viewed from a slightly elevated angle revealing scattered dark rocky patches and a misty background with distant green hills and mountains under a pale blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/diner_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/diner_descriptions.txt new file mode 100644 index 0000000..62233fa --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/diner_descriptions.txt @@ -0,0 +1,10 @@ +sun_anctqegqdkbocwod.jpg The diner features a cozy interior with checkered tablecloths in various colors, wooden chairs and blue cushioned stools, warmly lit by a yellow lamp and framed by red and white curtains against mirror-paneled walls. +sun_aafflfnpziozlvuf.jpg The diner features a classic retro design with a shiny metal countertop and red cushioned stools, seen from a side angle with a visible row of booths and vintage light fixtures, complemented by a menu board and a window view in the background. +sun_azbvlsoydmgcecwc.jpg The diner has a weathered, gray metal exterior with rust patches, viewed from a front-side angle, set against a backdrop of leafless trees and brick buildings, with distinctive large windows and a faded sign reading "MACK DINER." +sun_atjecfnksbyiqqxf.jpg A vintage silver and red diner with striped awnings and retro gas pumps is positioned amid a rustic outdoor setting, displaying signage for hamburgers and hot dogs, with large windows showcasing a glimpse of the interior. +sun_acmcbzzondnvepgv.jpg A classic American diner with teal and white checkered tiles, neon sign, and counter stools, viewed from the perspective of the counter, shows glass pastry displays and an assortment of coffee machines and condiments, surrounded by a cozy, retro interior with wood accents and wall decorations. +sun_adidqikdsduzwxcz.jpg The diner is styled as a nostalgic drive-in theater with vintage car booths in various colors, viewed from the rear, set against a dimly lit indoor background with a large movie screen displaying a black-and-white film, evoking a retro ambiance. +sun_ajexokknlxityjfd.jpg The diner features a long counter with a row of stools on a glossy, checkered floor viewed from a side angle, surrounded by a dimly lit interior with large windows and overhead lights. +sun_akuxkjputgtmhyrm.jpg The diner features vibrant red vinyl booths and chairs, a white table, and a retro interior with a neon sign, checkered tile flooring, and a visible stainless steel counter in a bustling, vintage-inspired setting. +sun_actojnduntfubowp.jpg The diner features a white facade with green trim and a prominent red sign, viewed from the front, surrounded by trees, with vehicles parked in front and a small chimney emitting steam. +sun_aqnrbtdfzybucpdi.jpg The diner features a blue exterior with yellow trim, resembling a vintage railcar, set in an indoor museum-like environment with a prominent neon sign displaying "Diner" on the upper right. diff --git a/utils/area/descriptions/sun/generated_descriptions/dinette_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/dinette_descriptions.txt new file mode 100644 index 0000000..58b8d7d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/dinette_descriptions.txt @@ -0,0 +1,10 @@ +sun_btjqhetsowsoayms.jpg The dinette features a U-shaped seating area with patterned cushions and a wooden table at the center, viewed from above, set in a small camper interior with large windows framed by maroon curtains, surrounded by a lush green forest outside. +sun_bdhejjniorttwsue.jpg The image shows a boat's dinette with a view from the side, featuring blue cushioned seating, a light-colored rectangular table with patterned placemats, and a wooden-paneled interior background. +sun_bjubvsuumlyqgxdf.jpg The dinette consists of a round, light wood table with a smooth finish, surrounded by swivel chairs upholstered in white fabric set against a kitchen background with wooden cabinetry and a teal countertop, all viewed from a slightly elevated angle. +sun_bojmasebanuzxeez.jpg The dinette features warm wooden textures with a smooth finish, blue cushioned seating in an L-shaped arrangement, and is situated in a cozy, well-lit cabin interior with built-in shelving and nautical décor. +sun_bfuwmavnefycpnys.jpg The dinette features a round wooden table with a smooth glass top, accompanied by four matching wooden chairs displaying a warm brown hue, viewed from an elevated angle in a sunlit corner nook with large windows and a lush green garden background. +sun_baizppifvcjbafpm.jpg The dinette features a round glass tabletop supported by wooden chairs with brown leather seats and backs, seen from a side angle against a pale yellow wall with framed artwork and floral window valance, accompanied by an elegant chandelier and a centerpiece of fruits. +sun_bbxkanhzjgbwyxqs.jpg The dinette consists of a wooden table surrounded by four dark brown chairs with crossed backrests, situated in a warmly lit dining area featuring light hardwood floors and a background of white French doors leading outside. +sun_anxhcdybbzfvmfiv.jpg A cozy, U-shaped dinette with dark blue upholstered benches and a polished wooden table is set against a warm-toned, wood-paneled cabin backdrop adorned with framed artwork, a small sailor figurine, and plaid curtains, viewed from a slightly elevated, frontal perspective. +sun_butsyosttwrmylwk.jpg The dinette features a light wood finish with maroon cushioned seating and a central table, positioned in a compact, enclosed setting with floral-patterned curtains against a backdrop of a modestly furnished RV interior. +sun_bfweujkdipmoxmdj.jpg The dinette features light gray upholstered seating with subtle button details, positioned in a boat interior with a warm wooden background, metal poles, and visible life safety equipment in a cozy marine setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/dining_car_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/dining_car_descriptions.txt new file mode 100644 index 0000000..0437ce3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/dining_car_descriptions.txt @@ -0,0 +1,20 @@ +sun_apgqgdgxlwnwftjj.jpg The dining car features blue upholstered curved booths with granite-textured tabletops, viewed from a mid-level angle, set against a bright interior illuminated by large windows showing an urban background. +sun_auvppgphuhcfpofb.jpg The dining car features a polished wood interior with warm lighting from small chandeliers, viewed from an aisle center perspective, highlighting the symmetrical arrangement of tables with white tablecloths within a classic railcar ambiance. +sun_auweveofsiumitsw.jpg The dining car features wooden interior paneling with reflective surfaces from large windows, visible tables set with white linens and small floral arrangements, and appears to be filled with patrons in a relaxed setting surrounded by verdant scenery partially visible through the windows. +sun_abpvegddnazyppue.jpg This dining car features a warm, wooden interior with intricate paneling and mirrored ceiling, viewed from the aisle looking towards the end of the car, adorned with fabric-covered chairs and elegantly set tables against a backdrop of dim lighting and framed decorative panels. +sun_aowiyunizehotuwc.jpg The dining car features patterned black and white upholstery with maroon-trimmed tables, viewed from a central aisle perspective under an arched glass ceiling, allowing scenic vistas on both sides. +sun_amjqxnqvhovkotym.jpg The dining car features a maroon and white color scheme with checkered tablecloths, viewed from a central aisle with symmetrical seating, reflective wall panels, and a visible service area at the far end. +sun_anbukhwtldrzhpxx.jpg The dining car features a warm, yellowish interior with ornate ironwork on the chair backs, seen from a centered perspective emphasizing the symmetrical arrangement of white-clothed tables along a carpeted aisle, surrounded by large windows that provide a glimpse of an exterior urban environment. +sun_anprfrpepcjpobti.jpg The low-resolution image shows a modern dining car interior viewed from the entrance, featuring sleek black seating along the left side with glossy black and metallic tables opposite small windows, set against a light gray wall and ceiling, and a frosted glass partition leading to a corridor in the background. +sun_arofccjpehwiuykj.jpg The dining car features rich, dark wooden textures with maroon upholstered seating, a pink tablecloth set with white dishware and folded napkins, viewed from an angle inside the train, accompanied by framed artwork and a window with greenery outside. +sun_aybizaruuudtewpa.jpg The dining car interior is richly adorned with intricate wooden carvings in warm brown tones, viewed from an aisle perspective, featuring ornate wall and ceiling designs, with decorative animal motifs and passengers seated at elegantly upholstered booths against a backdrop of large, bright windows. +sun_avowifsxynpgyblk.jpg The dining car interior features wood-paneled walls with engraved glass partitions, blue curtains, and patterned tablecloths, viewed from the aisle with seated passengers, creating a warm, communal atmosphere. +sun_agzokbuqjmromrrx.jpg The dining car features a warmly lit, elegantly furnished interior with light wooden textures and cream-colored seating, viewed from a front diagonal angle, showing multiple tables set with white tableware and a patterned tapestry adorning the rear wall, framed by large windows overlooking a darkened exterior. +sun_avrxjtmbslvttjgj.jpg The dining car features maroon curtains and patterned tablecloths viewed from an angle showing rows of seating, with natural light streaming through the windows and a carpeted floor, creating an intimate and classic train interior ambiance. +sun_athesavqnozijlho.jpg The dining car features maroon and beige upholstery with a patterned texture, viewed from an aisle-centered perspective, set against a bright interior with large windows alongside neatly arranged tables with white and maroon coverings in a sunlit train compartment. +sun_axailhakkwccvqen.jpg The interior of the dining car features a warm, wood-toned seating area with people seated along narrow booths, flanked by windows with beige curtains, and adorned with cluttered shelves and various items, all observed from a mid-level angle in a dimly lit environment. +sun_apvxqhtxiolqaicf.jpg The dining car has a warm, dimly lit interior with red cushioned seats, yellow tablecloths, visible overhead luggage racks, people engaged in conversation, and a curved ceiling with circular ventilation grills in the background. +sun_aizkqaqrknbuchpw.jpg The dining car interior features warm brown leather seating with a sleek, glossy texture, a view from the aisle showing rounded booths and metallic tables, set against a bright interior with large windows revealing a blurry exterior landscape. +sun_advqatjlikxocsbl.jpg The dining car features maroon-colored seating with a glossy finish, viewed from an interior perspective showing a window reflection, a set table with a white cloth, and a server in a black vest assisting a seated passenger. +sun_akqhwepbwsdjjmig.jpg The dining car features wooden benches with white tablecloths and vases of flowers, seen from an interior viewpoint, with large windows showing an orange train outside. +sun_aebeklpqlqkjbgzm.jpg The dining car interior features maroon upholstered booths with white tablecloths, viewed from a straight-on perspective, surrounded by large windows on both sides filtering natural light, and set against a backdrop of patterned carpet and overhead luggage racks. diff --git a/utils/area/descriptions/sun/generated_descriptions/dining_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/dining_room_descriptions.txt new file mode 100644 index 0000000..f99775f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/dining_room_descriptions.txt @@ -0,0 +1,20 @@ +sun_bxcvhbkdkwsidcvj.jpg The dining room features a minimalist design with a light beige textured wall, black dining chairs with a glass-top table, bar stools at a small countertop, and abstract artwork on the walls, viewed from an angled side perspective in a bright, modern setting. +sun_bclgjppgsijgonbh.jpg The dining room features a rustic wooden table with four matching chairs on a light wooden floor, framed by white walls and a painting centerpiece, creating a cozy and minimalist setting. +sun_axineantxgtrvdjw.jpg The dining room features a formal setting with a soft blue tablecloth adorned with elegant gold accents and floral arrangements, viewed from an angle that highlights the ornate chandelier and vintage-style chairs, set against a backdrop of a warmly lit room with floral wallpaper and large windows. +sun_bafkyzekyiexahmz.jpg The dining room features a warm, beige textured environment with an elegant chandelier above a wooden oval table surrounded by plush, light green chairs, and a view into a softly lit adjacent room through an arched opening. +sun_asrmxwycsnbsesiy.jpg The dining room features a modern and elegant setup with a glass-topped table surrounded by beige, cushioned chairs on a tiled floor, accented by a light purple wall, arched French doors revealing lush greenery, and a large ornate mirror enhancing the sophisticated ambiance. +sun_awgobopdnyinyxbh.jpg The dining room features a warm, beige wallpaper adorned with framed art, tables set with red and white tablecloths, surrounded by dark wooden chairs, and illuminated by wall sconces and a central chandelier, creating a classic, cozy atmosphere under a carpeted floor with a matching red hue. +sun_bxybkfgaxonmzaao.jpg The dining room features a set of wooden furniture with a reddish-brown hue, including a sleek rectangular table and matching chairs, viewed from the front in a warmly lit room with light green walls, a large window, and a cabinet displaying white china. +sun_bcspgadueddosbvm.jpg The dining room features light wood furniture with woven textures, viewed from a perspective facing the kitchen pass-through, with pastel floral arrangements and a partially visible white kitchen. +sun_anbplfaroheoakad.jpg The dining room features an elegant setup with ornate, upholstered chairs surrounding a glass-top table, positioned centrally under a decorative chandelier, all set against a warm, earth-toned background with large windows and a mural-accented wall. +sun_acxhgszwaplfrgvw.jpg The dining room features a large, polished wooden table set with fine china and ornate silverware under a central, elegant chandelier, surrounded by wooden chairs, dark wood-paneled doors, a mounted deer head on the wall, and a display cabinet against the backdrop of a rich, warmly lit interior with traditional decor elements. +sun_bhlglausydyftfky.jpg A wooden dining table with a long red runner centerpiece is surrounded by chairs in a room with white walls, large windows providing a view of a green field, and simple wall decorations. +sun_agudjuiskgsvxluc.jpg The dining room features a glass table set with cream-colored, cushioned chairs, a central floral arrangement, and a gold-toned chandelier, set in a cozy environment with wallpapered walls, white cabinets, and a large round mirror. +sun_agoghjhjrydzgzof.jpg The dining room features a beige color palette with a textured oval table and six matching upholstered chairs, viewed from a slightly elevated angle, set against a background with a large arched window, a glass cabinet on the right, and an ornate chandelier hanging over a floral centerpiece. +sun_bnmcqbxlbfahnjcm.jpg The dining room features an ornate dark wood table and chairs with intricate carvings, beige cushioned seats, and is set against a backdrop of a warm-toned room with large windows and a matching china cabinet displaying fine tableware. +sun_buxpmnqwrbgchrva.jpg The dining room features a polished wooden table set with crystal glassware and candles, surrounded by dark wooden chairs, against a backdrop of deep green walls adorned with paintings and patterned green curtains, all illuminated by soft lamp light. +sun_brczhbudzqgeiejb.jpg The dining room features light-colored wooden furniture, stone-textured walls, a slanted ceiling with exposed beams, and is set against a rustic background with a wooden door and a small shelving unit. +sun_aeqwrpfqrplswxok.jpg The dining room features a richly decorated setting with ornate orange and gold tapestry walls, a central table clad in a wavy pattern fabric and flanked by floral cushioned chairs, surrounded by lush greenery and elaborate decorative elements including a large floral arrangement and a birdcage. +sun_achnmsowspqybtmy.jpg A rustic dining room with a wooden table and chairs occupies the foreground, illuminated by a warm yellow hanging light, set against a backdrop of exposed wooden beams and an earthy-toned wall. +sun_arypsmgrfxuxnaxq.jpg The dining room features a polished wooden table with ornate high-backed chairs, set against a backdrop of soft beige walls and large windows framed by heavy drapes, with a clear view through to a cozy living area displaying dark furniture and decorative art. +sun_atnoztpnrvpbptzo.jpg The dining room features a vibrant array of multicolored chairs around a glass table, set against a backdrop of bold purple walls adorned with abstract artwork and tall blue vases with flowers, all under the presence of a distinctive palm-like plant. diff --git a/utils/area/descriptions/sun/generated_descriptions/discotheque_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/discotheque_descriptions.txt new file mode 100644 index 0000000..a39ce51 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/discotheque_descriptions.txt @@ -0,0 +1,10 @@ +sun_aaryuovshkhdaups.jpg A dimly lit discotheque is bathed in green and blue laser lights with a dense crowd of people dancing, hands raised, under a ceiling adorned with glowing neon fixtures and a backdrop hazed by fog effects. +sun_ajmcgqobduyfokyz.jpg The discotheque is bustling with people, under vibrant multicolored lights casting hues of blue, purple, and orange across the room, with a metallic ceiling, subdued wall lighting, and some patrons holding drinks, all contributing to a lively and energetic atmosphere. +sun_avfvfbpeijsisukz.jpg A lively discotheque with a bustling crowd on the dance floor, illuminated by colorful lights reflecting off large mirrored disco balls suspended from the ceiling, amidst a backdrop of geometric patterns and vibrant neon hues. +sun_awjvosnosibojtuk.jpg The discotheque features a vibrant display of purple, blue, and red lights reflecting off a glossy dance floor with floral patterns, viewed from an elevated angle and surrounded by mirrored walls with a central bar encased in colorful horizontal stripes, against a backdrop of geometric light fixtures and a suspended disco ball. +sun_aiqcamixjhwpprkw.jpg The discotheque features vibrant multicolored lighting patterns reflecting off a polished, glossy floor, with overhead spotlights and sound equipment suspended from the ceiling, surrounded by sleek bar counters and plush seating, creating an energetic atmosphere. +sun_anhgtqjnpwyeicxf.jpg The discotheque features a vibrant, hazy atmosphere with multicolored lights casting red and yellow hues over a crowded dance floor filled with people, set against a dimly lit background, with spotlights creating a dynamic, energetic environment. +sun_atmqmdbkxznuijrc.jpg The discotheque features a dimly lit interior with dark, sleek tabletops, beige chairs, and a distinctively patterned circular dance floor illuminated by overhead lights, set against a backdrop of white columns and modern architectural elements. +sun_akeuplsrxpinrcfv.jpg The image shows a dimly lit room with neutral-colored walls and ceiling, where a crowd of people dressed in formal or semi-formal attire are dancing closely together under soft ambient lighting, with a mirror reflecting the lively scene in the background. +sun_awfhhcxjvwarbcmo.jpg The discotheque features a dimly lit interior with vibrant spotlights illuminating a crowded dance floor, surrounded by industrial-style scaffolding and structures with beams and smoke creating a dynamic, energetic atmosphere. +sun_anxllkyfvblgkrrz.jpg The discotheque scene features a futuristic silver and metallic texture under ambient, colorful lighting with individuals descending a sleek staircase, surrounded by a misty, atmospheric background with glowing spherical elements. diff --git a/utils/area/descriptions/sun/generated_descriptions/dock_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/dock_descriptions.txt new file mode 100644 index 0000000..53b95fa --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/dock_descriptions.txt @@ -0,0 +1,10 @@ +sun_bhjyfwfohckcefyv.jpg A narrow, light gray dock with a smooth texture extends straight out over a still, misty water surface, with simple vertical rails and a lone bird perched near the end, surrounded by a serene, overcast sky with subtle reflections. +sun_alixxvnzlcwhdyzg.jpg A wooden dock with a light brown color and smooth texture extends over calm reflective water, surrounded by lush, green forested hills and topped with a white planter holding a small plant, viewed from a slightly elevated angle with partial foliage framing the right side. +sun_beehbulswilcurxg.jpg A narrow, rectangular dock with a light brown wooden surface and grey cylindrical pontoons on either side extends outward from a grassy shoreline into the greenish-hued water, surrounded by dense green foliage, viewed from a slightly elevated angle. +sun_bcqoqazwkgqdiuzh.jpg A sunlit wooden dock extends over calm water beneath a pale sky, supported by white pillars, with silhouettes of people and a distant structure in the background. +sun_bkdalopqauvnnaod.jpg The wooden dock extends into the glistening blue water with a slight diagonal perspective, featuring a weathered, light gray texture and metal railings on one side, while surrounded by a serene lake under a bright, clear sky. +sun_bzhepblbmabyihft.jpg A wooden dock with a natural brown hue and slightly weathered texture extends from the shore into a calm lake, surrounded by lush green forest, and features a Canadian flag on a pole beside moored small boats, viewed from an elevated angle. +sun_bgqtyzdihmaobaqt.jpg The dock is made of light gray, rectangular floating platforms, situated near rocky terrain, with a boat partially covered in a navy cover moored on it, and a misty mountainous landscape in the background under a hazy pinkish sun. +sun_ajawzbrlrwafowen.jpg The dock, viewed from a grassy shoreline, features a weathered brown wooden texture with two side benches and extends into a tranquil lake bordered by dense green forest under a cloudy sky. +sun_boxwcgefyasqqqgf.jpg The dock appears light gray and metallic with a smooth texture, viewed from an angled perspective extending into a calm, reflective lake surrounded by dense green tree line, and features cylindrical supports and a small red boat moored at the end. +sun_bbrtcbtjktdgcxxe.jpg The dock consists of weathered wooden planks with a reddish-brown hue and rough texture, seen from a diagonally oriented viewpoint, enclosed by rustic rope railings, and is situated adjacent to calm blue water with houses and palm trees in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/doorway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/doorway_descriptions.txt new file mode 100644 index 0000000..573b21e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/doorway_descriptions.txt @@ -0,0 +1,10 @@ +sun_avbryaqbzlmsbemq.jpg The doorway features rich, ornately carved wooden double doors with decorative panels, highlighted by intricate stonework framing and sculptural embellishments above, set within a beige classical façade, viewed from street level with flanking architectural details and a muted urban environment in the background. +sun_ayurevyjztvfibaf.jpg The doorway features two ornate wooden doors with a light brown and cream color scheme, highlighted by fan and geometric designs on the panels, set within an archway adorned with red and cream floral details, surrounded by leafy greenery and pink flowers. +sun_akvblypisbkqyhaw.jpg The doorway features a natural wood-colored door with intricate carved designs near the top and bottom, framed by light blue-gray siding and topped with a semi-circular window, viewed from the front alongside two decorative outdoor lights. +sun_abeviknhdkospiuz.jpg The doorway features a semi-circular arch with intricately carved stonework in varying shades of grey, viewed frontally against a backdrop of rugged stone walls, and is adorned with symmetrical columns and geometric patterns. +sun_ayfmpmzywhyvpyjv.jpg The doorway features a dark wooden door with a frosted glass panel adorned with a decorative wreath, centrally positioned at the top of a flight of stone steps flanked by black railings, leading to a brick and beige-paneled building with white columns. +sun_azajpqgzcvnushxs.jpg An ornate blue door with intricate lace-patterned glass panels is framed by a curving white and navy arch, set against a background of detailed brickwork and decorative floral designs above, viewed from a direct front-on angle. +sun_blnuylqjgbnswbcv.jpg A narrow, arched doorway with a grid-patterned glass door is bordered by weathered wooden shutters in a rustic brick wall, surrounded by creeping vines and flanked by colorful potted flowers. +sun_ahuvrwedszdopkcc.jpg The doorway is a weathered wooden door with ornate iron grillework, set in an aged wall with peeling paint, viewed from the front, flanked by a black door on one side and a window with a wooden shutter on the other. +sun_awkkhukgikrtnjrx.jpg The doorway features a white, panelled door with an arched top and divided glass panes, set within a red brick facade, viewed from the front, with a lamp and house number on a white siding wall to the left. +sun_bzudlcycazrwumad.jpg The doorway features a reddish-brown brick archway with two wooden doors, arched stained glass windows above, and is set against a weathered stone entrance in an urban environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/dorm_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/dorm_room_descriptions.txt new file mode 100644 index 0000000..dced68e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/dorm_room_descriptions.txt @@ -0,0 +1,20 @@ +sun_akulxspqsmyaxoqb.jpg A dorm room with pale yellow walls features a metal-framed bed with a floral and checkered pillow, a compact gray desk with organized books, a desk lamp, and a window with natural light illuminating a person in a dark outfit seated and reading. +sun_baeicxulgzghlmhd.jpg The dorm room features a narrow layout with two unmade mattresses with a plaid-textured pattern, facing each other against cream-colored walls, with a large window in the background allowing soft natural light, and a wooden floor partially visible between scattered luggage and personal items. +sun_bwgqghdmvnexxusx.jpg A dimly lit dorm room features a bed with yellow sheets and a pile of clothes beside a brown desk cluttered with papers and electronics, surrounded by blue-striped wallpaper and blinds with drawn curtains partially revealing a small room fan. +sun_bjreoilbyeqjzqko.jpg A small, sunlit dorm room with a wooden bed on the left covered in a red and pink blanket, a cluttered desk by the window overlooking lush greenery, a red suitcase beneath, and a stand-alone lamp that highlights the cozy yet untidy atmosphere. +sun_bzudartukulonpcw.jpg The dorm room features a central twin bed with zebra-patterned bedding and brown throws, surrounded by a warm-colored environment with matching wooden furniture, a drum, leafy plants, and a variety of decorative cushions, viewed from a slightly elevated, frontal angle in low light. +sun_bymmvcepgxfqvtcq.jpg A small dorm room features a red brick archway with built-in shelves, a purple armchair facing a large window obscured by blue curtains with a glimpse of greenery outside, and a compact bed with white bedding in the foreground. +sun_ardbxcoewmlhbiej.jpg The dorm room features a simple, white-walled space with a light wood bed and desk, positioned against a large window framed by light gray curtains, revealing a lush green outdoor view, and includes an air conditioning unit above the window. +sun_bmuvfydunudkjwgy.jpg The dorm room features a neat, minimalistic setup with a bed covered in pastel bedding on the left side, a work desk with a computer and chair positioned beneath a window that allows natural light, surrounded by plants and decor against a backdrop of beige walls with a calendar and map, all viewed from a slightly elevated angle. +sun_bgmwjwintxcgfrwv.jpg The dorm room features a cluttered and compact layout with beige brick walls, showcasing a small television on a wooden dresser surrounded by a mix of scattered clothes, a metal shelf with storage bins, a refrigerator, and a bed topped with a striped comforter next to a window covered by venetian blinds, all giving a messy and lived-in appearance. +sun_bgjccobvrzafhzce.jpg The dorm room features a patchwork quilt with pastel colors on a bed against a beige wall, a wooden desk and bookshelf holding various books and items, a window with pink curtains showing a nighttime cityscape outside, and a small black television atop a wooden dresser, all viewed from a mid-height frontal perspective. +sun_alkizfoxnkxyohjo.jpg In the brightly-lit dorm room, one can see white cinder block walls adorned with colorful wall art and a rainbow poster, a bed with a blue and yellow star-patterned comforter, and a white metal shelf holding towels and plush toys, while a desk fan and papers are scattered on the floor. +sun_bhpncxluebacqibo.jpg The dorm room features a cozy bunk setup with a black futon covered by a yellow crocheted blanket and a pillow with eye designs, positioned near a colorful poster and stop sign on the pale yellow walls and adjacent to simple wooden shelves, while sparse decorations and clothing add a lived-in feel. +sun_beiqydbduorogvgf.jpg The dorm room, seen from a wide-angle viewpoint, features a cluttered workspace with posters on the walls and a lofted bed overhead, showcasing a mix of warm wood textures and a vibrant, lived-in atmosphere accentuated by a bright blue shirt and scattered study materials on the dark carpeted floor. +sun_buyszkpvbtejpnvg.jpg A cluttered dorm room with clothes scattered on the light-colored carpet and bed, features wooden furniture including desk and wardrobe, vivid posters on white walls, and visible mismatched bedding beneath a wall map and a leaning lamp. +sun_ajuamprmtezmflcj.jpg From a viewpoint slightly above the floor, the image shows a dorm room with light wood furniture including a table and chairs set against a neutral wall, featuring minimalistic cabinetry, a simple electric stove, and a linoleum floor with speckled texture, all under bright, even lighting. +sun_bgtoxzuisdpfcvtr.jpg The dorm room features a cluttered bed with a vibrant striped orange and red duvet, surrounded by scattered clothing and featuring a wooden headboard and sheets with cartoon designs, amidst a backdrop of white walls, bookshelves, and a cluttered desk, suggesting a casual and disordered living space. +sun_bozrdgckqtvpofyg.jpg A student in a brown tank top and gray sweatpants is sitting sideways on a maroon chair, using an older computer monitor on a desk cluttered with a bowl and bag, with a bed covered in pink sheets and various posters adorning the beige walls in a compact dorm room. +sun_amfwdljjbcjufoyn.jpg The dorm room features a bed with a light blue patterned bedspread, a small wooden desk cluttered with papers and a lamp next to a green chair, and a bright, softly lit corner with large windows and a few plants, creating a cozy and personalized atmosphere. +sun_bshydswfndswqign.jpg The dorm room features earth-toned furniture and cluttered shelves against white walls adorned with various posters, viewed from a slightly elevated angle, highlighting a central bed with a person reading, surrounded by personal electronics and scattered clothes. +sun_asnpptolihdvezok.jpg The dorm room features minimalist white walls with a simple single bed covered in a white sheet, viewed from the side and slightly above, complemented by a small bedside lamp, a beige chair, and large windows with sheer curtains letting in soft natural light against a muted urban backdrop. diff --git a/utils/area/descriptions/sun/generated_descriptions/driveway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/driveway_descriptions.txt new file mode 100644 index 0000000..db5832e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/driveway_descriptions.txt @@ -0,0 +1,10 @@ +sun_aempdhktyiimhhry.jpg The driveway is a smooth, dark asphalt path bordered by light brick, curving gently towards a cream-colored house with a red tile roof, set amidst a lush green lawn and shaded by large trees under a blue sky. +sun_aodojhucaesevyyt.jpg The driveway is constructed of small, multi-colored brick pavers arranged in a circular pattern, viewed from an elevated angle with a brick house entrance and neatly trimmed grass bordering the sides. +sun_afjhxxurtkniewgf.jpg The driveway features a pattern of interlocking light gray pavers with a smooth texture, bordered by red brick edging and surrounded by a landscaped garden with greenery, captured from a slight angle in front of parked cars. +sun_akpzlacwbphfaijk.jpg The driveway features a pattern of interlocking grey and beige pavers with a smooth, even texture, observed from an angled viewpoint, bordered by grassy edges, set against a backdrop of shrubbery and a garage. +sun_alfnojlgybilvtrj.jpg The driveway appears as a flat, slightly cracked concrete surface with patches of white discoloration, viewed from a slightly elevated angle, surrounded by scattered dry leaves and bordered by a shadowed, leafy background. +sun_ajebiurepzdzjwvw.jpg The driveway is a smooth, light gray concrete surface, ascending gently amidst a backdrop of lush green grass and forested areas, with a house flanking the left side surrounded by well-manicured landscaping. +sun_asqqwdonzpzkdmuz.jpg The driveway features a pale, speckled brick texture with a curving alignment, flanked by grass and bordered by darker bricks, cast with tree shadows. +sun_aycojpeamopiccep.jpg A smooth, light gray, concrete driveway is seen from an angle, leading to the street with a few vehicles and houses in the background, bordered by patches of grass and bare soil on the side. +sun_awburtskvhafiwpa.jpg A light-gray gravel driveway curves gently towards a large house with multiple peaked roofs, set against a backdrop of dense, leafy green trees and bordered by sparse vegetation and patches of bare earth. +sun_awqutrxvixryrlwg.jpg The driveway is a long, reddish-brown brick path with a textured surface, viewed from a ground-level perspective, flanked by well-maintained green lawns and palm trees against a backdrop of a clear blue sky with sparse clouds. diff --git a/utils/area/descriptions/sun/generated_descriptions/driving_range_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/driving_range_descriptions.txt new file mode 100644 index 0000000..307e5a5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/driving_range_descriptions.txt @@ -0,0 +1,20 @@ +sun_accjpnbmxhyfptmc.jpg The driving range is depicted from a side angle at dusk, showing several golfers lined up on a grassy area under bright floodlights, with silhouettes of tall trees against the evening sky as a backdrop. +sun_bwxeoupzgqvnohln.jpg The driving range features a green expanse with neatly trimmed grass and several individual practice bays sheltered by an overhanging roof, viewed from an angle where tall evergreen trees line the distant background, while a weathered concrete pathway winds its way alongside the bays. +sun_dohmjwsgducedbwa.jpg The driving range features green artificial turf mats under a wooden canopy with a curved roof, viewed from an angle showing multiple golfers lined up, set against a backdrop of tall trees and a red brick building. +sun_dikkkgnzuwfzdslx.jpg A driving range with lush green grass and dark triangular dividers, two golfers swinging their clubs, characterized by sandy dunes and green shrubbery in the background under a cloudy sky. +sun_bqkmdvloyosaozms.jpg The driving range features a golfer in mid-swing, wearing a dark top and light pants with a light cap, standing on lush green grass marked by white lines, surrounded by metal dividers and a distant background of trees and a cloudy blue sky. +sun_arbqlbweebvfftru.jpg The image shows a lush green area with two prominent trees casting shadows, surrounded by grass, situated in front of a brick building with white window frames, seen from a ground-level perspective with a bright, sunny sky above. +sun_bjtyzgpamtkntiiz.jpg A bronze statue of a golfer stands on a stone pedestal in the foreground, overlooking a well-maintained, lush green driving range where people practice their swings, surrounded by a distant fence and building under a sky filled with fluffy clouds. +sun_bmqlrdvheldwobxs.jpg A golfer in a poised stance with a club faces a vast, verdant expanse dotted with scattered divots under a cloudy sky, while another person stands to the side near a golf bag, with a contrasting dark foreground against the bright, open background. +sun_badtobyuyitebdhe.jpg A golfer wearing orange pants and a white shirt is swinging on a green mat against a backdrop of a vast, flat, green driving range with a sandy perimeter, sparse trees, and distant power lines under a hazy sky. +sun_autoyfxzjbeuwpzf.jpg The driving range features a smooth, bright green synthetic turf with distance markers, set against a backdrop of tall netting and distant trees, viewed from a high angle, providing a clear view of the entire range and its enclosed structure. +sun_brvtcfggzrsifiwv.jpg A golfer in a red sweater swings a club on a vast, green driving range with scattered white golf balls on the grass, framed by a hazy sky, distant houses, and tall trees, with black tee markers in the foreground. +sun_atiytxlmyyuxbfbe.jpg A plaid fabric beach chair designed with an extended hood and wooden footrests sits on sandy terrain in the foreground, while a group of people gather on a bright green grassy area with trees and a clear blue sky in the background. +sun_blmwikaqqvidjqgf.jpg The image shows a driving range with golfers positioned at separate hitting stalls, featuring dark green mats and partitions, against a background of supportive metal structures and colorful park-like surroundings, with lush green grass in the foreground. +sun_bprfnxuxufljkblh.jpg The driving range features a series of green mats aligned in a row with netted dividers, set against a grassy field and leafless trees, viewed from an elevated angle alongside a paved walkway. +sun_bzycdwrokuvigvxr.jpg A person swings a golf club on a lush green driving range with scattered patches of dirt, surrounded by dense trees and a clear blue sky in the background. +sun_afnewjjlpbmcoqgk.jpg A verdant driving range with rolling green hills and white target mats is visible from a ground-level perspective, surrounded by a backdrop of netting and clear blue skies with scattered clouds. +sun_azslolibvwvwihjm.jpg The image shows a driving range with green mats and partitions, rough gravel underfoot, a clear view of the expansive green field bordered by lush trees, and utility lines overhead with golfers actively engaged in practice. +sun_blyxbkmegutnrhfk.jpg The driving range features a row of golfers practicing on lush green mats against a backdrop of expansive greenery bordered by trees, with a clear blue sky and distant buildings visible, all viewed from a slightly elevated perspective. +sun_blccefounyaktiqz.jpg This driving range features a row of wooden stalls with slatted textures under a curved metal roof, viewed from an angle highlighting the alternating angled supports, set against a backdrop of lush green grass and tall trees. +sun_bvqnmbveppkxuigw.jpg The driving range features a row of golfers standing on lush green grass with a textured mat underfoot, surrounded by a backdrop of dense, leafy trees under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/drugstore_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/drugstore_descriptions.txt new file mode 100644 index 0000000..b0f515e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/drugstore_descriptions.txt @@ -0,0 +1,10 @@ +sun_dkdxvhlrpepxiuxc.jpg The drugstore features brightly lit white shelving filled with a variety of colorful products, viewed from a wide angle that showcases an organized layout with ceiling panel lighting and large, visually appealing product posters as a background. +sun_defpjfeelulwhzxk.jpg The drugstore features dark wooden shelves filled with various colorful packages, viewed from a frontal angle, with abstract wall art and a tiled floor enhancing its distinctive and artistic interior ambiance. +sun_dyozuivlltmqucxv.jpg The drugstore displays shelves filled with colorful packages viewed from the front, featuring a well-lit interior with a glass counter in the foreground, and a mural above, with distinct signage labeling sections in a language similar to Dutch. +sun_dpmslcqaygweiyay.jpg The drugstore features a sleek interior with pastel mint green and metallic silver finishes, viewed from the entrance showing a glass-enclosed counter area with shelves of various products, under bright ceiling lighting, and a reflective floor adding a clean, modern aesthetic. +sun_dcgxpzyhjiscyiup.jpg The drugstore features a light gray interior with well-organized, densely packed shelves displaying various pharmacy items, observed from a frontal viewpoint, with shelves and displays showcasing red and pink gift baskets prominently contrasting against the neutral background and dimly lit ceiling. +sun_abanmhtpcjptodut.jpg The drugstore interior features light wood shelving filled with a variety of colorful boxes and bottles, seen from a frontal viewpoint, with a curved counter in the foreground and neatly organized products in a well-lit, spacious environment. +sun_ahfjjxhrgieolekd.jpg The drugstore features colorful, neatly arranged shelves of products including medicines and toiletries, with a tile floor and white walls; the perspective is from an elevated angle showing a cluttered counter in the foreground and large windows with grills, allowing natural light to brighten the interior. +sun_dyouofszehvkdyyl.jpg The drugstore interior is bright and orderly, with white shelves filled with a multitude of multicolored boxed and bottled products, viewed from the entrance facing a long aisle, surrounded by clean white walls and under ceiling spotlights that enhance visibility. +sun_anfplyloxlsomyad.jpg The drugstore interior features tall, off-white shelving units filled with categorized pharmaceuticals, viewed from a slightly left-angle perspective, with blue storage boxes visible on a wooden trolley against a backdrop of glossy dark brown flooring and white fluorescent ceiling lights. +sun_aehearjwngnartzz.jpg The drugstore shelf, captured from a low-eye-level angle, displays a range of colorful medicine boxes and bottles, predominantly red, blue, and white, stacked neatly in front of a beige background with clear signage indicating "PAIN RELIEF" and "ASPIRIN". diff --git a/utils/area/descriptions/sun/generated_descriptions/electrical_substation_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/electrical_substation_descriptions.txt new file mode 100644 index 0000000..192af6d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/electrical_substation_descriptions.txt @@ -0,0 +1,20 @@ +sun_dcesjxisfpxtores.jpg The low-resolution image depicts a gray, metallic electrical substation with a grid-like structure and numerous insulators, viewed from a frontal angle against a rocky, barren backdrop with sparse vegetation. +sun_diizmwgilnoxczrn.jpg The electrical substation is surrounded by a lush green environment featuring a rusty metal structure with interconnected wires and high-reaching poles, viewed from a low angle, alongside a faded beige building and enclosed by a mesh wire fence under a slightly overcast sky. +sun_dbshorvbqhbpnyqf.jpg The electrical substation features gray metal towers and equipment with cylindrical insulators and cables, viewed from the ground level against a clear blue sky and a sparse, flat background, with snow patches visible on the ground. +sun_dimimrfriisxbhui.jpg The electrical substation features silver-grey metal structures with a grid-like arrangement rising vertically, set against a barren, earthy brown landscape with parked white utility vehicles and a clear blue sky in the background. +sun_doskdqpgkshljyqd.jpg The electrical substation features dark green transformers with ribbed textures and red-topped insulators, viewed from a slightly elevated angle with lattice framework structures and a grassy foreground set against a blurred urban background. +sun_drubempuyhsqzugz.jpg The electrical substation features a grey, metallic framework with visible transformers and insulators, viewed from a side angle amidst a backdrop of bare trees and clear blue sky, with a gravel-covered ground and perimeter fence. +sun_dddnxqbirpwqeukx.jpg The image depicts an unfinished electrical substation structure with a skeletal metal frame of gray beams and red soil, set against a clear sky, with scattered construction materials and unfinished surfaces in the foreground. +sun_dmkdhypoioaaazsh.jpg The electrical substation features dark green metallic utility boxes aligned on gravel within a fenced area, with brown high-voltage lines overhead, set against a backdrop of rolling grassy hills and a clear blue sky. +sun_dnwohmerkokkiove.jpg The electrical substation features a series of gray metallic towers and interconnected wires against a backdrop of a clear blue sky with scattered clouds, with a low-angle viewpoint emphasizing the open and industrial structure surrounded by a grassy landscape. +sun_dmabbprphhimqdnu.jpg The electrical substation features a series of angled, cylindrical insulators in grey and red colors, with a metallic texture, positioned in the foreground against a backdrop of grey steel structures and overhead power lines, emphasizing the industrial setting. +sun_dcadkchoqnyetvlk.jpg The electrical substation, viewed from ground level, features a series of metallic, rust-free steel frames with cylindrical insulators, set against a backdrop of a large, plain concrete building and scattered gravel surface, with red warning tape and cloud-laden sky overhead. +sun_dodzqgqcpstguouy.jpg The electrical substation is composed of a network of grey metal frameworks and wires, viewed from a ground-level side angle, set against a snowy ground with scattered vegetation and a distant horizon featuring utility poles and a water tower. +sun_dafdrhhgajsutads.jpg The electrical substation features rust-colored metal structures and grey transformers, set from a ground-level perspective against a background of grassy hills and sparse trees, enclosed by a chain-link fence with warning signs. +sun_dghwsmtjpxklqcwk.jpg The electrical substation features metallic structures with a gray color and smooth texture, viewed from ground level, set against a clear blue sky and desert landscape, with distinctive insulators and overhead wires prominently visible. +sun_dbmkaxmgdodzukor.jpg An electrical substation with towering gray and white cylindrical insulators and a lattice of metal beams is seen from ground level, with a chain-link fence in the foreground and a clear blue sky in the background, accented by a few red and orange components. +sun_dmofjliunlufqvcp.jpg An electrical substation with gray, metallic structures and interconnecting transformers and cables, viewed from a ground perspective against a clear blue sky, with a fence and industrial buildings in the background. +sun_dxkmfvhkqawtfuos.jpg The electrical substation, set against a clear blue sky and open field, is dominated by a light gray, rectangular transformer with ribbed sides and protruding insulators, surrounded by a network of metal frames and wires. +sun_dqstmiruauufgavq.jpg The electrical substation features a gray metal framework with insulators and wiring, seen from a ground-level side angle against a backdrop of leafless trees and a clear sky, highlighting its industrial structure despite the low resolution. +sun_dvtcbhdtgvtjdico.jpg A small electrical substation with a gray metal enclosure sits within a chain-link fenced area, surrounded by gravel and situated against a background of stacked logs and distant mountains under a clear sky. +sun_dkagbwiyyfbkanmq.jpg The electrical substation, viewed from a frontal angle behind a chain-link fence, features metallic gray structures with intricately arranged high-voltage equipment above a grid of supporting pillars, set against a clear blue sky and distant mountainous terrain. diff --git a/utils/area/descriptions/sun/generated_descriptions/elevator_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/elevator_descriptions.txt new file mode 100644 index 0000000..5e79179 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/elevator_descriptions.txt @@ -0,0 +1,10 @@ +sun_auehafcdauglbmrn.jpg The elevator has a gray, industrial appearance with a textured metal interior, viewed from the front, featuring a wire-mesh gate and overhead fluorescent lighting, set within a weathered concrete surroundings. +sun_aflydvlcbuealumn.jpg The elevator appears to have a sleek, white interior with a metallic sheen, viewed from above with mirrored walls reflecting control panels, and is positioned against an indoor background with visible tiles. +sun_aebnzscpgoyfbpde.jpg The elevator has sleek metallic doors with a brushed texture, viewed directly from the front within a white, minimalistic hallway, accompanied by a dark floor tile and a distinct plaque mounted beside it. +sun_amnaszbnudrpzebc.jpg The elevator features smooth, dark wood-paneled walls with warm lighting from above, a stone tile floor, and metallic safety rails on three sides, viewed from a front-facing angle. +sun_ajsbqulfcxrtuofo.jpg The elevator features ornate Art Deco doors with a fan-like pattern composed of rich earthy tones, including deep reds and browns, framed in metallic outlines, set against a marble-clad environment. +sun_aeegintyrfnvorgs.jpg The elevator features a brushed metallic texture with a silvery sheen, viewed from the front where a person is pressing the button panel on the right side, against the backdrop of its closed doors and dark interior shadows. +sun_aodegrrfbbduakqn.jpg The elevator doors are cream-colored with intricate black vine and leaf artwork, set against a deep red wall, viewed from the front with a polished brown floor and metallic buttons on either side. +sun_aglxtfxcaotvscoh.jpg The elevator has a sleek, metallic interior with soft beige walls, viewed from the front as if standing at the entrance, surrounded by a beige wall exterior and a single round ceiling light above the opening. +sun_aeqphbgihntkpdld.jpg The image depicts a front-facing, metallic elevator door with a smooth, reflective surface framed by white and wood trim, set within an interior environment featuring a dimly lit, narrow hallway with sculptures nearby. +sun_azbuzftxkdpmdyzm.jpg The elevator features wood-patterned doors with a metallic chevron border design, viewed from the front, set against a similarly patterned wall and an ornate carpet with abstract shapes. diff --git a/utils/area/descriptions/sun/generated_descriptions/elevator_shaft_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/elevator_shaft_descriptions.txt new file mode 100644 index 0000000..ed4899b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/elevator_shaft_descriptions.txt @@ -0,0 +1,20 @@ +sun_arzgxrphmdibfvvn.jpg The elevator shaft appears dimly lit and mostly dark, with visible metal cables and tracks leading up toward a bright, grid-like opening at the top, contrasting against the shadowed, rough-textured walls. +sun_arxtjqriutqcoorj.jpg The elevator shaft is viewed from above, revealing a rusty metal framework and cables against a backdrop of worn, textured gray concrete walls with scattered debris, reflecting a rugged and industrial appearance. +sun_aripdbqeoszauhdj.jpg The elevator shaft, viewed from the bottom looking upward, features a metallic, rust-streaked texture with visible cables and rails, surrounded by a background of ornate architectural details including red-tiled rooftops and decorative stonework. +sun_acwykadkcgeddmxc.jpg Viewed from an angled downward perspective, the elevator shaft appears as a narrow, rust-colored structure with a series of dark, crisscrossing metal beams, enclosed by worn concrete walls with visible streaks and rough textures, set in a dimly lit environment. +sun_azlzkzhjfgyveovh.jpg The elevator shaft is viewed from above, revealing a downward perspective into a dark, narrow space with rusted metal beams and cables, surrounded by distressed, peeling concrete walls with scattered debris at the bottom. +sun_aikqrdbjlewabdni.jpg The image shows a dimly lit vertical rectangle with gray concrete walls featuring parallel lines along the side, a visible metal ladder structure on one wall, and an open gray elevator car partially illuminated against a dark, deep background. +sun_axvdfabagcfcrjdn.jpg The elevator shaft is a partially constructed site with exposed metal beams and concrete walls, viewed from an elevated angle, featuring a rusted ladder and scattered wires amidst a dirt and debris-laden environment. +sun_awafckiuiwdagofk.jpg The elevator shaft features a primarily metallic gray texture with notable accumulations of dust, viewed from above to reveal red structural beams, multiple suspension cables, and a yellow barrier in the background contrasting against concrete walls. +sun_agqptvebrkgytbfi.jpg The elevator shaft appears to have a metallic and reflective texture with a rusty brown and blue color scheme, viewed from an upward perspective, featuring metal cables and framework with a dim interior lighting that reveals a patterned floor grid and a complex network of structural elements. +sun_aekqnnackgxerrjn.jpg The elevator shaft is composed of steel framing with a gray and metallic texture, viewed from a low upward angle showing the narrowing perspective towards a bright opening, with unfinished walls and construction elements visible in the surrounding environment. +sun_azvfdbhuvxduxapc.jpg The elevator shaft features a dark metallic framework with a crisscross pattern, viewed from below, surrounded by a concrete interior with visible staircases and illuminated by overhead lights. +sun_awsmojrwqbdilqhg.jpg The elevator shaft appears in a muted gray tone with a rough, industrial texture, viewed from the bottom looking upward, showcasing a grid-like pattern on the sidewalls and ceiling, with distinct vertical beams and openings visible in a dim, unfinished building environment. +sun_apxuuyzeafxerpie.jpg The image showcases a dimly lit, vertical perspective of an elevator shaft with a grid-like texture of grey concrete walls, lined with metal beams and cables, creating an industrial atmosphere with a receding vanishing point into darkness. +sun_albvrbzxtbhlfooz.jpg The elevator shaft appears as a narrow vertical space with a dark, textured interior of grayish brick walls and steel cables, viewed from the top looking directly downward, with visible linear grooves and conduit pipes running along the walls. +sun_ajofgorwpatbxtej.jpg Viewed from below, the elevator shaft showcases a dark metallic spiral frame set against a concrete industrial interior, with warm-orange lights highlighting its intricate structure and casting shadows on the textured walls. +sun_akhwozmuqyvaayfl.jpg The image shows an elevator shaft with a predominantly gray, textured concrete interior, viewed from below with a person in blue attire climbing near the bottom, surrounded by metal beams and cables with a ceiling containing visible structural crossbars in the background. +sun_ayqetykpphjpuabg.jpg The image shows a vertically oriented, pale yellow and metallic textured elevator shaft with visible guide rails and cables, extending upwards from a ground-level perspective, featuring fluorescent lighting and a symmetrical, industrial interior against a neutral backdrop. +sun_abpfulsvesxynnwz.jpg The elevator shaft is a vertical glass structure with a teal metal frame, situated at street level beside a sidewalk, featuring a perforated metal wall inside and signage indicating "Euclid Av Station" with blue and white transit symbols. +sun_axvimbtxkhxzmdvs.jpg The image shows a vertically-oriented elevator shaft with a metallic grey texture, illuminated from above, bordered by rusty, latticed panels, and lined with symmetrical cables and tracks across its walls, viewed from the bottom looking up. +sun_avulsbgqrlagzdlp.jpg The elevator shaft is viewed from above, showcasing a concrete interior with a warm, orange glow, featuring vertical steel rails and cables, and lined with evenly spaced red structural supports amid a series of rectangular concrete walls receding into the distance. diff --git a/utils/area/descriptions/sun/generated_descriptions/engine_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/engine_room_descriptions.txt new file mode 100644 index 0000000..8f70354 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/engine_room_descriptions.txt @@ -0,0 +1,20 @@ +sun_bzkkfhyrmftgdpjb.jpg The image depicts an engine room with a warm, yellowish lighting, featuring large metallic machinery with a dull, smooth texture, viewed from an elevated angle revealing a cluttered layout with pipes and platforms against a backdrop of industrial fittings and walkways. +sun_bynznvdclrjaxpzk.jpg The engine room features teal-colored engines with metallic piping, viewed head-on in a confined space with silver storage tanks and blue hoses against a metallic, industrial gray background. +sun_bxquoddofshilqhe.jpg The engine room features light green machinery with prominent large pipes overhead, a complex array of valves and controls, and is viewed from a slightly elevated angle with a dimly lit, industrial surroundings. +sun_bfqidpbitnshreud.jpg The engine room features a complex array of machinery with light blue and green hues, visible from an elevated angle, surrounded by metallic railings and pipes, with a distinct arrangement of gauges and valves in the industrial setting. +sun_alyoludebqkycciq.jpg The engine room appears cluttered with dark, industrial-colored machinery with a slightly rusted texture, seen from a slightly elevated viewpoint, featuring a backdrop of various metal pipes and gauges, while several people, mostly men in casual attire with some wearing hats, stand clustered in the foreground beneath an overhead microphone-like object. +sun_bcflkdrcpjocmycl.jpg The engine room features predominantly white machinery with cylindrical components and dark circular elements, viewed from an angled perspective showcasing a dense arrangement of piping and equipment, with a cluttered industrial background. +sun_bnsaxfqkyyfqjvmb.jpg The engine room features two rows of large, cylindrical machines with yellow tops, gray metallic textures, and a central dark vertical pipe, seen from a frontal view in a dimly lit, industrial environment with visible piping above. +sun_aajwgngmmzptsilk.jpg This engine room features a metallic gray walkway flanked by dual rows of dark, shiny machinery with visible dials and pipes, under a soft overhead light with a backdrop featuring nautical flags and the text "The Highlander." +sun_baryraqlmnvlqsln.jpg The engine room features a series of large, green, metal machinery with cylindrical components, set against a backdrop of metallic and industrial structures, viewed from an elevated angle that highlights its linear arrangement and uniform lighting. +sun_bcywtbtnmjzsfosi.jpg The image displays an engine room with a predominantly metallic and industrial color scheme, featuring a tangle of pipes and machinery dominated by a large yellow engine, seen from a slightly elevated angle amidst a cluttered indoor environment with overhead fluorescent lighting and visible ladders and control panels. +sun_brpvfcxiusvkugox.jpg The engine room features a predominantly white and metallic color scheme, with visible machinery and pipes, viewed from a central aisle flanked by railings, against a backdrop of industrial equipment and control panels, illuminated by ceiling lights. +sun_ayboezqgoyvjtruz.jpg The engine room appears cramped with a cluttered array of gauges and machinery, featuring a mostly off-white and metallic color palette, accompanied by a person in blue lifting an overhead wheel or valve, all set against a backdrop of pipes and industrial equipment. +sun_amscklesjodlvokj.jpg The engine room, viewed from an overhead angle, features a colorful and cluttered arrangement with green and red metal components, surrounded by numerous pipes and wires, beneath white overhead beams in a confined space, with a mechanical clock and various gauges prominently displayed. +sun_bmorenugpzxqsayk.jpg The engine room, viewed frontally through open panels, exhibits a worn green and yellow exterior with weathered metal textures, revealing a complex array of machinery and pipes inside, set against a background of metal railings on a perforated platform. +sun_bkqjxwhnrutkpjxn.jpg The engine room features a prominent red engine with a grey cover, surrounded by various pipes and cables, against a backdrop of a perforated white wall with assorted control panels and storage containers, viewed from a slightly elevated angle. +sun_ahzgpwuntnntnznf.jpg The engine room features a cluttered assembly of pipes and gauges in muted cream and metallic hues, with two individuals adjusting controls in a cramped, industrial setting with scattered red and blue valves and a dingy, utilitarian atmosphere. +sun_aplxscjopsckfiru.jpg The engine room features large, cylindrical metallic components with a dark, smooth texture, viewed from an elevated angle, surrounded by a grid-like floor pattern and various large pipes with worn white and light brown surfaces in a cramped, industrial environment. +sun_aglgzwqjtyhocwia.jpg The engine room features a complex array of metallic machinery with a predominantly industrial gray and white palette, interspersed with yellow piping, viewed from ground level to highlight the textured metal grating floor and overhead pipes, set against a densely packed backdrop of gauges and control panels. +sun_bzbnwjstjatkcryk.jpg The engine room features a dominant light gray and metallic color palette with a slightly rusty texture, viewed from a side angle showing a narrow walkway alongside large industrial machinery with visible pipes and control panels against the backdrop of a dimly lit, enclosed space. +sun_bwftbmyhdtvwgeff.jpg The engine room appears cluttered with off-white, weathered machinery featuring metallic components and turquoise pipes, viewed from an elevated angle, surrounded by faintly lit instruments and wiring on the walls, accentuating a cramped and functional marine environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/escalator_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/escalator_descriptions.txt new file mode 100644 index 0000000..411ebb0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/escalator_descriptions.txt @@ -0,0 +1,10 @@ +sun_bhzkzftqrsmedplq.jpg A dimly lit escalator with shiny black steps is viewed from above in a modern indoor setting, flanked by transparent glass sides and surrounded by decorated walls, with blurred figures descending amidst ambient reflections. +sun_amrwileiufdtwqby.jpg The escalator has a metallic and dark tread texture, viewed from an elevated angle, surrounded by a modern indoor environment with sleek white and black rails, and features people ascending. +sun_bansqzlgnhefrncx.jpg The escalator appears in a sepia tone, with a glossy, reflective texture from an elevated angle, featuring mirrored panels reflecting its surroundings and faint text visible in the background, adding a modern and sleek aspect to its appearance. +sun_brxbdryfmgwwgrlb.jpg A sleek metallic escalator with textured aluminum steps and a black central divider is viewed from the bottom looking up, set against a smooth, curved metallic side railing within a softly lit indoor environment. +sun_baezebxvimhembqp.jpg The escalator, viewed from an upward angle, features silver metallic steps with visible grooves, bordered by smooth beige side panels displaying evenly spaced colorful advertisement posters, set in a brightly lit enclosed environment with a reflective ceiling. +sun_bpnwdcqdxermnjva.jpg A yellow escalator with textured steps, viewed from a diagonal upward angle, is inside a metallic tunnel-like environment adorned with illuminated panels on the walls. +sun_bsdnbffuqlkgjmmp.jpg This partially-obscured escalator has a metallic texture with black rubber steps, flanked by shiny silver handrails, and is framed by bright yellow construction barriers in an indoor tiled environment. +sun_bqrbmjjngvhwwgwk.jpg An upward-viewed escalator with sleek silver side railings and black steps, set against a tiled wall and brightly lit environment, has a noticeable group of people with skateboards, highlighting recreational activity in an urban space. +sun_aqmwwrzuquspehpd.jpg An indoor escalator with metallic sides and dark gray steps is seen from a front-facing angle, surrounded by a large, arched glass and steel structure, with people ascending under a high, vaulted ceiling and urban structures visible in the background. +sun_byebslcynujmefph.jpg An escalator with a sleek metallic silver finish and transparent glass sides is descending in a luxurious interior with ornate cream-colored walls and subtle lighting, crowded with people in formal attire, creating a sense of motion and elegance. diff --git a/utils/area/descriptions/sun/generated_descriptions/excavation_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/excavation_descriptions.txt new file mode 100644 index 0000000..e9b0cad --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/excavation_descriptions.txt @@ -0,0 +1,10 @@ +sun_bnhusgiudhwndacz.jpg A backhoe with a yellow arm and dark attachment is digging into rich, dark soil from a side angle in a grassy yard with palm trees and a wooden fence in the background. +sun_bohcwgksoulduzyy.jpg The image shows an orange excavator with a worn texture at an excavation site, set in a reddish-brown soil trench with a backdrop of scattered trees and green grass, under an overcast sky. +sun_bcdowvgzvvzapzzc.jpg A large yellow excavator with a long arm and bucket filled with brown soil is seen from a side angle, standing on a dirt ground with a sky and faint treeline in the background. +sun_anoyvyykrcsbjsdn.jpg The excavation site hosts a large, yellow and blue excavator with a rough metallic texture, positioned sideways with its arm extended toward a rocky, earthy wall, amidst a backdrop of uneven, dark soil and sparse greenery at the top edge. +sun_blbrsevcghyvuuyr.jpg The image displays a sloped excavation with a retaining wall of wire mesh cages filled with uniform reddish-brown stones, viewed from a side angle against a backdrop of soil and a construction area, while an orange excavator operates atop the elevated site. +sun_bwelhzuvjeejktpx.jpg The excavation site features a beige sandy mound in the center with large concrete slabs on the ground, flanked by heavy machinery such as excavators and dump trucks, set against a clear blue sky and sparse, distant tree line, indicating an open construction environment. +sun_bfriqrbhufhxvjwc.jpg The excavation features a yellow backhoe loader with a slightly rusted metal texture on the arm, positioned to the viewer's left as it digs into dark brown earth, surrounded by green trees and a palm tree in the background with a partially visible structure on the right side. +sun_barmypzyfrevgpex.jpg The excavation features a largely brown and muddy texture with stratified layers, viewed from a slightly elevated angle, set against an industrial backdrop of large cranes and machinery on a dry, barren landscape. +sun_bbuigwrwidepthxe.jpg The photo shows a large, shallow excavation with a dusty brown color and a smooth texture, viewed from an elevated angle, surrounded by barren hills and industrial remnants in the background, with scattered metal drums and machinery suggesting a past mining setting. +sun_bfurlqwjioetlniv.jpg A large yellow excavator with a long arm stands prominently in a vast coal mine, against a backdrop of dark layers of coal and dirt, with a rugged terrain of mounds and ridges leading to a light tan dirt pathway in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/factory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/factory_descriptions.txt new file mode 100644 index 0000000..2c6c805 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/factory_descriptions.txt @@ -0,0 +1,10 @@ +sun_akuertwecvmtmwcl.jpg The image shows the interior of a factory featuring industrial shelving in the background, yellow bins with parts on a table, and a mixture of metallic and mechanical components, while three individuals interact in the foreground amidst machinery. +sun_aswxzgdhenwplcuq.jpg The factory interior, viewed from an oblique angle, features white-painted walls and ceiling with numerous fluorescent lights, a checkered beige and brown floor, and several workers in casual clothing amidst fabric-covered long tables, creating an organized yet busy scene. +sun_bcdbtdnbocdqdhyc.jpg The factory interior is viewed from above, featuring a large, long industrial machine with a silver metallic body and yellow guardrails, set amidst a spacious, high-ceilinged warehouse environment with visible overhead walkways and machinery. +sun_bbzncpgadqrdxykc.jpg The factory interior is spacious and industrial with a concrete floor and yellow overhead crane, featuring machinery and blue safety features with scattered workers in blue uniforms, viewed from an elevated angle. +sun_duxabwwiqquxqrds.jpg The factory features a warm, yellow-lit environment with multiple workstations and machinery, viewed from an elevated angle showing a series of uniform, box-like structures and a prominent overhead crane, all surrounded by organized industrial components. +sun_bjpzarvmkiatgqge.jpg The industrial interior features a large assembly area with stacks of wooden pallets and materials, under an arched metal roof with visible beams, a vibrant American flag hanging prominently, and various machinery and conveyor systems in a spacious, well-lit environment. +sun_dwhqpoxbcgeuqsok.jpg The factory interior, viewed from an elevated angle, features green industrial machinery with yellow guardrails, against a backdrop of metal beams and overhead lighting, characterized by a complex array of wires and conveyor systems. +sun_axehcujkexpgjuds.jpg The factory has a predominantly steel-gray color with a sleek, metallic texture, viewed from an oblique angle, and stands out against an industrial interior setting, featuring a central structure with angular machinery and a glowing green display. +sun_bwrmjcdjgxbrmgaq.jpg The image depicts an indoor factory setting with bright yellow robotic arms arranged in rows, showcased from an elevated viewpoint, surrounded by metallic machinery and grey walls, illuminated by overhead lights. +sun_bivspexbeapovnrb.jpg The factory interior features a predominantly gray and metallic color palette with smooth textures, seen from an elevated viewpoint showing industrial machines, workstations, and scattered red barrels, while the background reveals high ceilings and horizontal girder beams. diff --git a/utils/area/descriptions/sun/generated_descriptions/fairway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/fairway_descriptions.txt new file mode 100644 index 0000000..3560d6b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/fairway_descriptions.txt @@ -0,0 +1,10 @@ +sun_bcgyywnybuveqsro.jpg The fairway appears as a vibrant green expanse with a smooth texture, viewed from a ground-level perspective, flanked by trees and a red-brick building in the background and featuring a slightly sunken sand bunker on the right side. +sun_bkslfmbzaluffqbm.jpg The fairway is a smooth expanse of vibrant green grass with subtle shading variations, viewed from a low angled perspective, surrounded by rugged hills and dense, scattered tree line in the background under a clear blue sky. +sun_bjjebhlxtvnhfwjt.jpg A lush green fairway with short, smooth grass winds through undulating sandy dunes under a partly cloudy sky. +sun_bkolplhycxpjebqa.jpg The fairway is a lush green with a smooth texture, viewed from a side angle in a natural open setting with trees and patches of rough grass in the background, and distinguishes itself with a slightly uneven terrain. +sun_bvwsjtmaxgvppiey.jpg The fairway appears as a smooth, well-maintained, vibrant green surface with subtle mowing patterns, set in a gently undulating landscape, accompanied by a light sand trap and surrounded by lush trees and a path with people in the background. +sun_bfuhvvjvbcgolysx.jpg The fairway is a vibrant green with a smoothly cut texture, seen from a ground-level perspective, bordered by multiple small to medium trees on either side, under a clear blue sky with faint lines of aircraft trails. +sun_bjwkyorcxzpbmglu.jpg The fairway appears as a lush, vibrant green expanse with a well-maintained, smooth texture, viewed from an elevated angle with a meandering path, bordered by trees and a tranquil body of water in the background. +sun_balpfldwebevhqxz.jpg The fairway appears lush and green with a smooth, rolling texture from a slightly elevated viewpoint, edged by dense trees under a cloudy sky with a sand trap visible in the distance. +sun_bamuzsrwpmctmkan.jpg The fairway appears in a bright green hue with smooth, parallel lines suggesting a well-maintained texture, viewed from ground level with a slightly elevated perspective, bordered by a clear sky and a backdrop of scattered trees and distant buildings, and occupied by golfers positioned near carts on the neatly trimmed grass. +sun_bkjlsoyvucbbutjo.jpg The image depicts a green fairway with a smooth texture, viewed from a low angle and stretching towards a coastal backdrop with rolling hills, under a partly cloudy sky brightened by sunlight. diff --git a/utils/area/descriptions/sun/generated_descriptions/fastfood_restaurant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/fastfood_restaurant_descriptions.txt new file mode 100644 index 0000000..a678606 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/fastfood_restaurant_descriptions.txt @@ -0,0 +1,20 @@ +sun_atoqthwlftkyixnz.jpg The fast-food restaurant features a brightly lit interior with a vibrant menu display board in the background, ornate metal railing in the foreground, and wooden bench seating, viewed from a seated perspective with a partially visible counter area. +sun_awsuvekksfplxpxr.jpg The fast-food restaurant features a warm color scheme with red and brown tones, metal-textured wall beneath a menu board with warm lighting, observed from a frontal viewpoint in a mall-like setting, with visible seating in the foreground and a drink station to the side. +sun_aptlqiehdxurfpto.jpg The fast food restaurant features a color scheme of green and yellow with red accents, displaying prominently branded signage above a metallic service counter, viewed from the front with workers in orange uniforms and a menu featuring sandwich imagery against a beige wall backdrop. +sun_bbwyxnsxguivtdhf.jpg The fast-food restaurant features a simple interior with white walls and a white tiled ceiling, a green textured counter, light beige floors with dark squared patterns, and colorful menu displays above the service area, all viewed from an angle showing both the seating area and counter. +sun_acttgtokdvgqsxzw.jpg The fast food restaurant features light wood paneling and orange circular designs on the walls, with a long counter lined with modern stools, viewed from a side angle, and a minimalistic, sleek interior with a bright, well-lit atmosphere. +sun_addgpuxrbameavbr.jpg From a slightly angled viewpoint, the fast food restaurant features a red and yellow color scheme with bold signage displaying "HAMBURGERS," set within a mall-like environment with bright overhead lighting and visible menu images showcasing large burgers. +sun_bwiuwtzdqbydpwnd.jpg The fast food restaurant features a red and yellow color scheme with a focus on a counter displaying food images above, where employees in yellow uniforms serve customers. +sun_blmyhsekclekidsg.jpg The fast-food restaurant features a vibrant red and orange interior with a prominent illuminated sign reading 'Popeyes Chicken & Biscuits' in white and red against a dark wooden panel, crowded with seated customers, and a digital menu in the background displaying various meal options. +sun_akwqonmlfzbfphgp.jpg The fast-food restaurant features a yellow-tiled counter with a self-service buffet of pizzas and breadsticks, viewed from a side angle with visible wooden chairs and wall decor in the background. +sun_ansxvxgyiwdxrbsh.jpg The fast-food restaurant interior is dimly lit, showcasing a wooden countertop with a brown textured surface, a set of menu boards displaying vibrant food images and text in blue and red, viewed from a behind-the-counter perspective with overhead "Pick Up Orders" signs and a partially visible yellow wall marked with a black "5" in the background. +sun_anifylkvpivwaina.jpg The fast-food restaurant features a wooden counter and colorful menu boards with vivid reds, yellows, and oranges, set within an indoor shopping mall environment with distinctive checkerboard tiles and overhead lighting fixtures. +sun_avqvpdrheslwlxmk.jpg The image shows a McDonald's counter with a prominent red and yellow color scheme, featuring a series of illuminated menu boards, a white counter with minimal decor, and a stainless steel kitchen backdrop, set in a bright interior mall environment. +sun_akocwzqzyfvracmn.jpg The fast-food restaurant interior features a warm color palette with beige walls and wood accents, a salad bar at the center, and a high ceiling with black beams, complemented by red cushioned booths and wooden chairs, seen from a wide-angle perspective with a mix of ambient and hanging lights illuminating the space. +sun_bidnbwwhzthunajp.jpg The fast-food restaurant displays a bright red facade with a white logo, prominently situated within a bustling indoor shopping mall corridor, surrounded by various stores and patrons, with numerous menu boards illuminated behind the counter. +sun_ayarveokhmwibtxl.jpg The fast food restaurant features warm, wood-toned furniture and flooring, with square tables and chairs evenly arranged, showcased from a central viewpoint in a cozy setting accented by decorative plants and colorful wall art. +sun_aqublovciuhqekbt.jpg The fast-food restaurant features vivid red tables with green stools, a yellow wall partition, and large glass windows that offer a view of a snowy, tree-lined street outside, with decorative hanging lights inside. +sun_atwwdstgknykdudb.jpg The fast food restaurant features a bright pink neon sign with the text "WOK & ROLL" above a tile counter with stainless steel pillars, located inside a large hall with signs displaying city names and distances, and showcasing illuminated menu boards above a visible food preparation area. +sun_aqnovaamlaktebvq.jpg A fast-food restaurant interior featuring a counter with a woman in uniform and a customer, characterized by warm lighting, colorful menu displays above, and visible desserts and a branded drink cup on the countertop in a bustling environment. +sun_afuzwfowcjsepcqq.jpg A fast-food restaurant interior with a red, white, and blue counter displaying snacks and drinks; patrons in casual attire stand in line beneath menu boards set against a backdrop of wooden paneling and beverage coolers. +sun_bgnretlqzgpeelby.jpg The fast-food restaurant features a warm and colorful digital menu display above a stainless-steel counter, with visible beverage dispensers and promotional posters, set in a busy indoor setting with visible staff and food preparation areas. diff --git a/utils/area/descriptions/sun/generated_descriptions/field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/field_descriptions.txt new file mode 100644 index 0000000..4fab729 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/field_descriptions.txt @@ -0,0 +1,10 @@ +sun_amzycvfigmisznhx.jpg A gently sloping field with alternating patches of muted green and brown grass, viewed from a slightly elevated angle, bordered by a distant line of trees and telephone poles against a hazy, overcast sky. +sun_aejcbphdgnoyacih.jpg The field exhibits a dry, sandy terrain scattered with small, round, greenish-gray shrubs, under a vast, partly cloudy sky with distant mountains on the horizon. +sun_brsgsjrcnzpjazkk.jpg A lush, green grassy field stretches across the foreground with scattered yellow wildflowers, viewed from a broad angle, and features a line of white yurts in the background under a mist-covered hillside. +sun_aegooqpfazcagbnr.jpg The field features a patchy spread of yellow wildflowers interspersed among green grasses, with a flat, open landscape and distant, barren hills under a slightly cloudy sky. +sun_biqxliegdlvddmmz.jpg A sunlit field of golden grasses stretches across the foreground, bordered by distant mountains under a moody sky, with a large tree framing the scene from the left. +sun_aogqynprwogazobf.jpg A vibrant green field stretches across the foreground with a lone, dark green tree centrally positioned against a backdrop of distant, cloudy mountains and a line of shadowy trees, creating a serene and natural landscape. +sun_abeekczvczotppul.jpg The field displays a blend of golden and light brown grasses with a coarse texture, viewed from a low angle, set against a background of dense tree line and a vivid blue sky with scattered white clouds. +sun_acklffcwmayvnfqm.jpg A vibrant field adorned with clusters of pink and yellow wildflowers stretches toward dark, rugged hills under a clear blue sky, with the textured greenery enhancing the scene's natural beauty. +sun_axyqfzjuwenrbcfx.jpg A sunlit field of drooping, yellow sunflowers with textured green leaves stretches across the foreground, viewed from a low angle, against a backdrop of distant lush green hills and a partly cloudy blue sky. +sun_ambpzndfirfggaop.jpg A lush, green field with evenly spaced rows and slight undulations stretches into the distance under a mostly clear sky, bordered by a line of bushes and trees in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/fire_escape_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/fire_escape_descriptions.txt new file mode 100644 index 0000000..0f72ca9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/fire_escape_descriptions.txt @@ -0,0 +1,20 @@ +sun_aggqeoarlosxsols.jpg The fire escape is a red rope ladder with white rungs hanging vertically against a brick wall, with an individual descending, set against an outdoor background with grass and a line of trees. +sun_azgxgnalskhrfthp.jpg The fire escape is made of metallic, silver-gray grating with a zigzag pattern, viewed in an angled side perspective against a backdrop of brick and concrete buildings, featuring multiple levels with straight railings and geometric shadows. +sun_ayiuvveesxfhqxeg.jpg The fire escape is a black metal spiral staircase with a grated texture, viewed from below and to the side, against a background of brick walls and nearby greenery. +sun_atswordjkcnfrpdq.jpg A dark metal fire escape with a crisscross pattern descends vertically along a brick building, viewed from a slightly elevated angle, with small figurine workers and windows providing a distinct urban backdrop. +sun_ahkhdhjqrzfkitct.jpg The fire escape is a metallic silver structure with a vertical ladder design, framed against a bright blue sky with wispy clouds and attached to a vibrant yellow building, featuring small bars and a partial safety cage on top. +sun_aqjontkywhwklwhb.jpg A spiral fire escape with light-colored railings and steps casts intricate shadows against a brick building at night, surrounded by lush, shadowed vegetation. +sun_apvxwddfgtsqexqg.jpg The fire escape is a dark metal structure with a ladder and platform extending from the side of a light beige stucco building, viewed from a low angle against a backdrop of overcast, orange-tinged sky and evergreen trees. +sun_avrdypwwuskviwbh.jpg The fire escape features a series of dark metal platforms and ladders with a slightly rusty texture, viewed from an angle against a weathered light-colored brick building facade, with each section zigzagging down beside evenly spaced windows. +sun_ayaitvfvpzbtembd.jpg The fire escape is a black, metal structure with a textured, lattice-like design, situated diagonally on a brick building, surrounded by green ivy and set against a backdrop of a clear blue sky. +sun_alsysbtnqnpqjsao.jpg The fire escape is a rust-red metal structure with visible weathering, situated against a stone building, partially obscured by lush green foliage and viewed from a front angle, displaying its multiple angled staircases and railings. +sun_acdthenaosuqcoqn.jpg The fire escape is a black metal structure with straight, angular lines, viewed from a ground-level perspective against a brick wall, and features a platform with two sets of stairs leading in opposite directions, amid a partially paved surface. +sun_ajhskbeprwcrmebx.jpg The fire escape features a black metal structure with a grid-like texture, viewed at an angle descending diagonally against a brick building background, where the intricate shadows and alternating staircases create a patterned contrast on the sunlit facade. +sun_adhowuhnschskehc.jpg A pale, weathered metal fire escape with vertical and diagonal support bars ascends the brick facade of a building, viewed from below against a backdrop of urban structures and a cloudy sky. +sun_aatystcemyrbqlrp.jpg The black fire escape features a series of zigzagging staircases with vertical railings against a textured, weathered brick wall, viewed from the side with a historic domed building in the background. +sun_aujpfviblmpateja.jpg The fire escape is a dark, metallic structure with a shadowed, weathered texture, viewed from an angle showing its zigzag pattern against a brick building, with distinct shadows cast on the wall. +sun_ayeumriopiwysxjb.jpg The fire escape is a black metal structure with a straight staircase leading to a small platform, viewed from the side, set against a brick building with visible utility boxes and flanked by a bicycle and a dumpster at the bottom. +sun_amhwyjmfdxoggdrq.jpg The fire escape features black metal stairs and railings with a grid-like texture, seen in a diagonal side view against a brick building facade, distinguished by its zigzag pattern and contrasting with large white-framed windows. +sun_apnsglsecvzyweqb.jpg The fire escape is a vibrant green spiral staircase attached to a red brick wall, visible from a straight-on angle, featuring narrow metal steps and matching vertical railings. +sun_ajmwxorldzsrsebb.jpg The black metal fire escape, with its zigzagging staircases and grated platforms, is viewed from a straight-on angle against a backdrop of brown brick featuring large framed windows, partially obscured by a leafy green tree in the foreground. +sun_aghkaixxgsrdbcoj.jpg The fire escape is a spiral staircase with light grey, smooth-textured metal steps and railings, viewed from a low angle against a clear blue sky, featuring an architectural canopy at the top. diff --git a/utils/area/descriptions/sun/generated_descriptions/fire_station_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/fire_station_descriptions.txt new file mode 100644 index 0000000..e311fee --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/fire_station_descriptions.txt @@ -0,0 +1,20 @@ +sun_bqommjhulcwmqxao.jpg A modern fire station with a striking red and white facade is viewed from the front at an angle, featuring a unique wavy roof design, three large garage doors, a grassy landscaping surrounding the entrance, and multiple flagpoles at the side. +sun_bnrvotowzqgqyalb.jpg The fire station features a row of red, vertically-sectioned doors with a cream-colored corrugated roof, viewed from the front across an expansive paved area, and distinguished by a tall, brick training tower on the right side. +sun_bnazamkodxjeehop.jpg The fire station features a cream-colored building with red trim, displaying a front-facing view of its open garage housing a vibrant red fire engine, with a flat concrete surface and additional buildings in the background under a clear blue sky. +sun_bjlrnnzttwhswcib.jpg The fire station features a vibrant red façade with multiple garage doors, set against a backdrop of trees and a car wash sign, housing a red fire truck with silver details and ladders visible on top. +sun_bqnswuooyaokftnw.jpg The fire station is viewed from the front and features red brick walls with three arched garage doors, above which is a white sign labeled "City of Winchester Fire Station," flanked by large windows with greenery visible on either side in the background. +sun_btufcaugmxlhkljj.jpg The fire station features a classic brick facade with a symmetrical layout, showcasing two large garage doors and fire trucks, set against a neutral pavement foreground with a group of firefighters posed prominently in front, all under a clear outdoor sky. +sun_bnghrrecimjjsiuh.jpg The fire station features a white and red color scheme with an open garage revealing multiple red fire trucks and equipment racks, viewed head-on with a clear sign above, situated in a bright, paved urban environment. +sun_bcibkqiysswuixjr.jpg The fire station features a cream facade with reddish-brown accents, a sloped maroon roof, and is viewed from the front with fire trucks visible in open garages, set against a backdrop of clear blue sky and lush green trees. +sun_blycmdtjihjukkdf.jpg The fire station features a brick exterior with two white garage doors, an American flag on a flagpole, and is set against a cloudy sky and surrounding suburban landscape with sparse trees and grass. +sun_bbjlulghyezkqbwm.jpg The fire station interior features an organized row of red equipment racks against a beige wall, with a large tire of a fire truck partially visible in the foreground, and a group of people observing the surroundings. +sun_buwtignxupwxhtzh.jpg The low-resolution image depicts a white fire station with a dark green roof, captured from a frontal viewpoint, featuring a prominent central entrance with two garage doors, positioned against a backdrop of leafless trees and flanked by a flagpole on the left. +sun_bsvufutbgtvaqhoj.jpg The fire station features red accents with a textured brick facade, viewed from the front at street level, set against a backdrop of urban buildings and a visible street intersection with pedestrians and traffic signs. +sun_bqdfyeyzbqnaskle.jpg The fire station is a two-story light brown building with a gabled roof, featuring three red-framed garage doors and dormer windows, set against a backdrop of autumn trees and a flagpole in the foreground. +sun_brvykosjclwumwbu.jpg The fire station is a low, rectangular brick structure with large garage doors, viewed from an angled perspective, set against a partly cloudy sky, with a prominent red fire truck parked outside and a red lamp post in the foreground. +sun_bgxuqrlafcnuxmhx.jpg The fire station features a brick facade with a mix of beige and dark red hues, viewed from a frontal angle, surrounded by adjacent buildings under a clear blue sky, and includes large garage doors with a red and white fire truck parked in front. +sun_atowhubizxgateti.jpg The fire station features a textured stone facade, viewed from the front with a red fire truck parked outside, marked with "1273," and a prominent ladder extending upwards against a bright sky. +sun_bcbfjkoziukwmdkd.jpg The fire station features a red and cream façade with a prominent garage door, seen from a straight-on viewpoint, set against a clear blue sky with adjacent brick and cream buildings and a flagpole visible. +sun_bbiozxzixboovunw.jpg The fire station features a beige brick facade with an American flag atop, visible from a frontal view, flanked by a tree on the left and other buildings in the background, showcasing two prominent red fire trucks parked on a concrete driveway. +sun_bjihosmgxuqcqule.jpg The fire station has a beige brick texture with two white garage doors, viewed from the front at ground level, surrounded by a gray paved area and a few parked vehicles, with an industrial building faintly visible in the background. +sun_bgrwhrudhqwmgymg.jpg The fire station features a modern gray facade with large glass doors and windows, flat roof architecture, and is seen from a frontal viewpoint, set against a cloudy sky and urban background. diff --git a/utils/area/descriptions/sun/generated_descriptions/firing_range_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/firing_range_descriptions.txt new file mode 100644 index 0000000..231c4ce --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/firing_range_descriptions.txt @@ -0,0 +1,20 @@ +sun_akjebqvsjmvtowfb.jpg The firing range features a row of blue-framed target partitions with a weathered texture, viewed from an angle under a metal-roofed shelter, surrounded by trees and natural foliage in the background. +sun_apsmecckxcpnhzov.jpg The firing range features a predominantly gray concrete interior with smooth textures, viewed from ground level towards target boards in the distance, and a grassy area is visible in the middle of an otherwise enclosed space with evenly spaced shooting lanes above. +sun_anpnifyymdvsqbpo.jpg The indoor firing range features a white-painted room with wooden frame partitions, where individuals wearing ear protection and holding firearms stand on a light concrete floor, with spent shell casings scattered in the foreground and grassy outdoor scenery visible through windows in the background. +sun_aahroogjsssdtbhi.jpg A dimly lit indoor firing range features a smooth gray floor with tracks on the ceiling guiding paper targets, viewed from the entrance with a large cream-colored partition at the back, illuminated by subdued overhead lighting. +sun_admbthvyhzitglft.jpg The firing range features a series of narrow, tall windows with a blue-green tint, set against a backdrop of light gray cinder block walls; the smooth, dark countertop with angled black supports extends parallel to the windows, while overhead fluorescent lights reflect on the beige pegboard ceiling beyond the glass. +sun_aonbxhrgdfixrjtn.jpg The firing range features a spacious, enclosed interior with a blue carpeted floor and light wooden beams on the ceiling, viewed from the rear toward target areas with distinct wall-mounted target holders against a plain white wall, under soft overhead lighting. +sun_axwhkllaunrmadfw.jpg The firing range features long, wooden-paneled walls with a smooth, brown texture, extending to a series of target backstops at the far end, viewed from a central perspective under a grid-like patterned ceiling in a subdued lighting environment. +sun_aazlmacanpoybjct.jpg A person in camouflage attire and ear protection is aiming a handgun inside a metallic-textured, enclosed indoor firing range with suspended human silhouette targets and overhead lighting creating a patterned tunnel effect in the background. +sun_aiafdiwkjuemdoko.jpg A low-resolution image shows two individuals lying prone on a firing range with a covered shooting stall, facing a distant target field amidst a mountainous backdrop, featuring muted earth tones and contrasting textures of solid concrete and soft fabric clothing. +sun_ajoayibysvfzzdar.jpg The indoor firing range features a concrete floor and wooden partitioning, with multiple shooting lanes in the background; in the foreground, a table covered with a checkered tablecloth displays various firearms, while two people stand near the firing line wearing protective ear gear. +sun_ansvoyezorytsmim.jpg The indoor firing range features muted beige-toned shooting stalls with a gridded ceiling, displaying red ear protection gear, paper bullseye targets on black tables, and a man with a handgun on the right, set against a distant view of dark shooting lanes with visible targets. +sun_adsqkgxeopwclrzr.jpg The firing range appears with dark carpeting and wood accents, featuring two shooting stations with a person prone on the left station aiming forward, while gray soundproofing panels line the ceiling, and rifles and electronic equipment are in the background near the window. +sun_avoemkbnahsvgfft.jpg The image depicts a brightly lit indoor firing range with a smooth, pale green floor and walls, where several people are lined up aiming pistols, with the distinct linear perspective leading to a vanishing point under a ceiling of evenly spaced lights. +sun_akfpqkzdsqavjvxt.jpg The firing range features a light-colored wooden floor and ceiling, a series of target booths in the distance, and a smooth, light-textured shooting line foreground; the background includes dark, sound-dampening walls with visible ridges, and the range is viewed from an elevated perspective. +sun_afgokeozmwrazwcv.jpg The firing range features a series of tan targets attached to a lightly textured wooden structure, viewed from a frontal angle with a gravel-covered ground and trees peeking above the structure in the background. +sun_ajncifuvragnaslg.jpg The firing range has gray flooring and light-colored walls with multiple individuals standing at lined shooting stations under open hatch-style windows, with a ribbed metal ceiling and minimal decor visible in the background. +sun_aqypggdrkdpeecwv.jpg The indoor firing range features a series of individual gray shooting stalls with visible shooters in varied stances, set against a backdrop of white ceiling panels and fluorescent lighting. +sun_aqvvchvlbveagmyx.jpg The firing range features a wooden and concrete setup with a person in tan protective gear aiming a black rifle on a rest from a side angle, against a backdrop of green grass and trees visible through open windows, with targets and shooting equipment on a coarse-textured brown surface. +sun_ajvfosnqkelfmhwy.jpg The firing range features a covered shooting area with individuals positioned at benches, a grassy field strewn with target stands in the background, and a predominantly green and earthy color palette, all under a clear blue sky. +sun_ankdatpxknlflqdl.jpg The firing range features a series of wooden tables and chairs aligned with green metal frames, positioned under a light wood-paneled ceiling, with a series of targets mounted on a white wall in the distance and an adjoining room visible through glass panels. diff --git a/utils/area/descriptions/sun/generated_descriptions/fishpond_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/fishpond_descriptions.txt new file mode 100644 index 0000000..6967463 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/fishpond_descriptions.txt @@ -0,0 +1,10 @@ +sun_bywkksrozogzytsv.jpg A tranquil fishpond with dark, reflective water bordered by a light, curved stone edge is surrounded by lush green foliage interspersed with vibrant pink flowers, seen from an angled viewpoint amidst a densely planted garden setting. +sun_bwqbzmkauftvbtvx.jpg A serene fishpond is shown from a slightly elevated viewpoint, bordered by moss-covered rocks and cascading water, surrounded by lush greenery and a variety of textured plants, creating a natural and tranquil garden setting. +sun_bvrfeaopeggjltxq.jpg The rectangular fishpond, viewed from above, features a greenish water surface surrounded by white stone tiles, with potted plants and a garden hose nearby and goldfish visible beneath the water. +sun_bqaefueqhkdbhdwj.jpg The fishpond is surrounded by a light stone brick wall, with a smooth, curved shape and clear water reflecting the sky, bordered by greenery, plants, and a small water feature, set against a garden with a gravel driveway and a house partially visible in the background. +sun_bnvtgvyvusqudgyc.jpg The fishpond, viewed from a slightly elevated angle, features a reflective water surface with lily pads and is surrounded by lush grass and wooden benches, all under a protective netting, set against a backdrop of tall trees and wooden fencing. +sun_bhrwalczozpxscse.jpg The fishpond is surrounded by vibrant greenery and colorful flowers with smooth stones lining the edge, water covered partially by green lily pads, and lush shrubs and a tree providing depth in the background, all captured from a slightly elevated angle. +sun_bekglifnwjeigwms.jpg The fishpond is surrounded by rough, brown stones and greenery, with a small cascading water feature on the left, set against a backdrop of a beige fence and tall plants, and the pond surface is dotted with green lily pads. +sun_bmznbkqvpdgkhkju.jpg The fishpond has a calm water surface reflecting a central vertical feature, surrounded by rustic, earthy-toned stones with a mixed texture, set in a landscaped garden with a stone patio pathway to the right. +sun_bqwwjpmohpiperxk.jpg The fishpond appears as a narrow, dark water feature surrounded by lush green foliage, with a textured stone border, viewed from an elevated angle; distinct features include a mix of small plants and a nearby wooden bench within a gravel area. +sun_bbsevjzddeawnmko.jpg A lush, natural fishpond is captured from a slightly elevated angle, showing its reflective green surface surrounded by a rustic ring of rocks, with tall grasses and dense greenery framing the tranquil setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/florist_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/florist_shop_descriptions.txt new file mode 100644 index 0000000..8642fa2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/florist_shop_descriptions.txt @@ -0,0 +1,20 @@ +sun_acwkallqszgnsigg.jpg A florist shop with wooden walls and a large assortment of vibrant flowers, including red, yellow, and green hues, displayed on tables, captured from an indoor perspective with two people interacting in the foreground. +sun_axwrongksynkysog.jpg A vibrant florist shop with a front-facing viewpoint displays an array of colorful flower bouquets including sunflowers, lilies, and roses, arranged in baskets and metal containers against a partially visible gray interior background. +sun_akyrhnzpczpmsvgo.jpg A vibrant florist shop is viewed from the front with an array of colorful flowers including red lilies, white daisies, and pink peonies displayed in vases against a dark backdrop, while a person in a striped shirt stands adjusting the display, next to an elegant mirror reflecting ambient light. +sun_avxgvjswtdukcpxb.jpg A vibrant florist shop is filled with red and pink flowers, with a smiling individual holding a cat in the foreground, surrounded by a lush arrangement of hanging and potted plants against a lattice and white wall backdrop. +sun_avxoflsrpbnbnxig.jpg A small florist shop interior is viewed front-on, displaying a textured arrangement of potted green plants on tiered white shelves, with vibrant wreaths in red, yellow, and white adorning the plain walls in the background, and a glass cabinet to the right. +sun_ajgbofhvkgjiqmxj.jpg A vibrant florist shop displays a variety of colorful flowers and bouquets with lush textures, prominently featuring balloons and floral arrangements against a gray and pink backdrop with a sign reading "STAR FLORIST." +sun_azojpsqhztdngvlc.jpg The florist shop features a vibrant central basket with red and white flowers accented by tall green foliage, set against a backdrop of wicker baskets wrapped in clear cellophane with red bows, while plush white teddy bears add a playful touch in the surrounding display. +sun_ayqsnqgbcysojezp.jpg The florist shop features a vibrant assortment of potted plants and floral arrangements with a mix of green, red, and yellow hues, set against a bright indoor environment with a stone pillar, creating a textured and colorful display despite the low resolution. +sun_axvatocmzrennmxe.jpg The florist shop features a central wooden counter with vibrant red flowers in the foreground, flanked by lush green foliage, while the background includes neatly arranged shelves with rows of colorful paint cans, all viewed from a slightly elevated side angle. +sun_ajbjlupiumlohedh.jpg A man stands amidst a vibrant, colorful arrangement of yellow gerberas, pink lilies, and various lush green leaves, positioned in an indoor setting with a plain white background, offering a close-up view accentuated by the soft texture of the petals and the glossy foliage. +sun_anniswzarhtxozwe.jpg The florist shop displays an array of colorful flowers with textures ranging from soft roses to spiky foliage, viewed from an angle that shows a bright flash reflecting off a yellow-painted wall, a white column-style counter, and a mix of decorative elements like potted plants and wall hangings in a cozy dim-lit setting. +sun_aekjlusccqqlaycp.jpg The florist shop features an array of vibrant, multicolored floral arrangements with textures ranging from smooth roses to spiky proteas, displayed in an organized grid of crates under bright lighting, with a background of leafy greenery and varied foliage creating a rich tapestry of botanical diversity. +sun_akdfqaepmzdvndus.jpg In this low-resolution image, a florist shop is depicted with abundant greenery and vibrant pink lilies and roses, featuring a smiling figure in a black apron in the foreground against a backdrop of lush floral arrangements. +sun_aylofqdcsqxdgyyc.jpg A vibrant assortment of flowers in varied colors like yellow, pink, white, and orange fills numerous buckets, labeled with price tags, amidst a lush, densely packed display under soft illumination, highlighting the natural textures of petals and greenery. +sun_axbbewfnbbjsjzor.jpg The florist shop interior features a small, warmly lit space with a tiled floor, dark green counters displaying various colorful flowers and plants like vibrant purples and reds, and a quaint "PHONE BOX" sign above a wreath, creating a cozy ambience with shelves holding glass vases against the pale green walls. +sun_atedcjfyzxonsttw.jpg A vibrant florist shop brimming with diverse flower arrangements in shades of pink, yellow, and white, features a cluttered display of textured wicker baskets and ornate vases, set against a warm, bustling indoor market ambiance. +sun_awinrvduphborrvm.jpg The florist shop is cluttered with a vibrant array of flowers in various colors and textures, such as reds, pinks, and greens, with a visible focus on a woman in a white shirt handling a bouquet, set against a background filled with hanging floral arrangements and garden tools, viewed from a slight left angle. +sun_awlckduvlxgahylu.jpg The florist shop is filled with vibrant bouquets of yellow, white, and orange flowers, set against a cluttered background of floral arrangements and decorations, viewed from a slightly low angle with the store counter and a person standing behind it. +sun_auqcpktmswouepqt.jpg The image shows a florist holding a vibrant bouquet with large yellow and red flowers, complemented by blue and purple accents, amidst a shop setting with visible floral displays in the background. +sun_asrxpwjxarfhsdlh.jpg The florist shop displays an array of vibrant blooms with prominent reds, pinks, and oranges, set under warm, glowing lights, surrounded by plastic-wrapped bouquets hanging above while two individuals in white garments tend to the flowers in a bustling market environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/food_court_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/food_court_descriptions.txt new file mode 100644 index 0000000..21f7106 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/food_court_descriptions.txt @@ -0,0 +1,20 @@ +sun_acaiywknaebvszkp.jpg The food court features a vibrant and colorful setting with prominently illuminated red and white signage reading "LOTERIA," bright overhead lights, people casually sitting and interacting at white tables with red seats, and various illuminated menu displays in the background. +sun_aavwoqzjenhdnxog.jpg A warm-lit food court features wood-textured flooring, with various colorful signs for different eateries in the background and a few people seated at light-colored tables, creating a lively yet cozy atmosphere. +sun_ahxhicvlgwxjbejo.jpg The dimly lit outdoor food court is bustling with people seated under soft, yellow lights and surrounded by palm trees, with the words "MING TIEN" prominently illuminated in the dark background. +sun_avnzmdpvemgnmivd.jpg The food court features a robot-themed kiosk with a soft white and orange color scheme, surrounded by teal seating under ceiling-hung string lights, while banners advertise "natural flavors" and "Hokkaido milk" against a backdrop of warm-toned walls and decorative arches. +sun_ahgxlgrrgsmkjktl.jpg The food court features red and blue chairs around light-colored tables, with people dining, large circular ceiling lights illuminating the area, and modern industrial decor visible from a slightly elevated viewpoint. +sun_aykpwhzzlqmefivz.jpg The food court features a polished, reflective beige tile floor, with a view toward neon-lit signs above simple concrete and metal picnic-style tables, set against a backdrop of a bright red and green Vietnamese restaurant sign and glass storefronts with some patrons casually seated. +sun_amwgnigswitprxae.jpg The food court features a vibrant ceiling with rows of round lights, a glossy floor with a checkered pattern, various colorful signs, and a bustling atmosphere with people moving around and food displays in the background. +sun_awgipxpblijvuesb.jpg The food court features vibrant orange chairs and tables with a glossy, speckled surface, viewed from eye level, surrounded by bright advertisements and reflective surfaces, with a bustling crowd and various food stalls in the colorful background. +sun_axcatlubnlpygirb.jpg The food court features a nighttime setting with fluorescent lighting illuminating gray plastic chairs and tables scattered across a concrete floor, surrounded by open vendor stalls in the background with various signage, creating a bustling yet casual atmosphere. +sun_aewgwsmvsgzleqhw.jpg The food court features a central view of a well-lit indoor space with a grid-patterned ceiling, colorful neon signs from various restaurants, checkered wall tiles, numerous tables and chairs in the foreground, and large potted plants providing greenery amidst the bustling dining area. +sun_apunphspmgcrdszf.jpg The food court, seen from an angled upward perspective, features warm beige tile flooring and a striped ceiling, with a variety of colorful neon signs and posters against glass-paneled storefronts, set amidst a backdrop of exterior greenery visible through the windows. +sun_ajfiqfujlhteuqkj.jpg The food court features a spacious layout with red and beige tables, white pillars, neon-lit signage in the background, tiles in a checkered pattern, and a line of chairs surrounding tables, creating a lively and bustling atmosphere. +sun_avbhedetzjjwaeju.jpg The food court features a colorful, casual interior with men in bright Hawaiian shirts standing around wooden tables and modern white chairs, a dessert counter with a menu board, and a green and cream color scheme visible under diffused lighting. +sun_avgjzpvnvokwcweb.jpg The food court displays warm wooden tables and benches with a mix of light and dark brown tones, set against a pink wall above two eateries with colorful signs; it's bustling with people sitting and standing, surrounded by a polished tiled floor and a distinctive star-shaped emblem above one of the food stalls. +sun_awziocoapeqidiwm.jpg The food court features vibrant red and white signage with textured panels, viewed from a hallway presenting a bustling environment with groups of people standing in line or seated at modern white tables, set against a dimly lit ceiling with prominent overhead lighting. +sun_aqbkhpdjuzfhabfz.jpg The food court features light wooden tables and chairs on a tiled floor, with hanging plants and illuminated fast-food signs in the background, viewed from a central, slightly elevated perspective under a soft ceiling light. +sun_aqkfkkcfinevbsyx.jpg The food court features a warm color palette with a blend of yellows and browns, a row of open food counters along the right, a textured ceiling with hanging lights, and people casually mingling, all framed from a side angle that highlights its bustling atmosphere. +sun_ajgiqurhqznkohjn.jpg The food court features brightly colored signage in red and green against an orange backdrop with festive orange balloons, displaying a bustling environment with seated patrons and standing vendors, viewed from the side with visible menu boards above the counters. +sun_aehrscybyjgrugzs.jpg The food court features a bustling interior with light-colored wooden chairs and tables, surrounded by walls adorned with vibrant neon signs and a translucent, arched ceiling, creating a lively atmosphere with a mix of warm and cool tones. +sun_astqixcyfwqllgqg.jpg The food court features a busy and industrial interior with overhead steel beams, bright yellow signage adorned with red text, and various stalls displaying colorful food items and supplies amid scattered seating covered with light-colored tables and plastic stools. diff --git a/utils/area/descriptions/sun/generated_descriptions/forest_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/forest_descriptions.txt new file mode 100644 index 0000000..7780549 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/forest_descriptions.txt @@ -0,0 +1,10 @@ +sun_bwqpknltkvcnziei.jpg The forest features tall, slender trees with a dense canopy filtering sunlight, casting a dappled green light on the vibrant moss-covered forest floor, viewed from beneath the tree line with branches and foliage creating intricate patterns against the light. +sun_amvokemrztbrgqth.jpg The misty forest features tall, leafless trees with dark and textured bark, rising from a ground carpeted in reddish-brown fallen leaves, while the soft gray fog creates an ethereal background atmosphere. +sun_btuibprrdcrjqxvw.jpg A low-resolution image depicts a serene forest with tall, slender trees casting dappled light on the reddish-brown forest floor, with a soft, misty atmosphere and dense foliage creating a lush, enclosing canopy. +sun_abvrazjxgpqhvszy.jpg A vibrant autumn forest with trees displaying a mix of golden yellow and light green leaves, viewed from a ground-level perspective, stands against a backdrop of blue sky and distant mountains, with fallen leaves scattered across the grassy foreground. +sun_anxstjgnumjexvyv.jpg Sunlight filters through the dense, vibrant green foliage of a large tree with a rough-textured trunk, set against a clear blue sky and scattered clouds, highlighting the forest's energetic and lively aspect. +sun_byrfqptijnoupdea.jpg A densely wooded forest depicted from a slightly elevated viewpoint shows a vibrant, sloped carpet of lush green undergrowth contrasting starkly against the darker, towering tree trunks and canopies that form a shadowy, enclosed backdrop. +sun_afbmmsisxsuvzoqc.jpg Coniferous trees covered in glistening snow stand densely against a clear blue sky, with shadows forming intricate patterns on the bright, snowy ground. +sun_axhmqffemaohcdle.jpg The forest appears vibrant with dappled sunlight filtering through lush green foliage, featuring a mix of dense undergrowth and tall trees, viewed from ground level, with a grassy clearing in the foreground and a backdrop of intertwined branches. +sun_atlcsbvdebfyrnrl.jpg The image depicts a leafless winter forest with tall, thin, dark brown trees casting long shadows on the bright white snow-covered ground, viewed from within the forest with a clear blue sky in the background. +sun_alvtgvepnlzhngjv.jpg The image showcases a sun-dappled forest with warm golden leaves filtering soft sunlight through dense foliage, centered around a prominent dark tree trunk, with an ethereal glow in the background suggesting an early morning or late afternoon setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/forest_path_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/forest_path_descriptions.txt new file mode 100644 index 0000000..c5bcdc1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/forest_path_descriptions.txt @@ -0,0 +1,20 @@ +sun_asgomthzhszqqxeb.jpg The forest path is a narrow, winding earthy trail with a light beige to sandy texture, visible from an eye-level viewpoint, bordered by dense green foliage and occasional tall trees, with a small river or stream running alongside on the right. +sun_abizrmxfaewqsukw.jpg A snow-covered forest path stretches into the distance, flanked by tall, stark trees with a dense overhead canopy, interrupted by overhead power lines, creating a serene winter scene with tire tracks marking the narrow, winding trail. +sun_andgcilxgosjqrxy.jpg A narrow, winding path covered in a layer of fallen leaves, surrounded by tall, slender trees with varying shades of green and brown bark, is seen through a slightly elevated viewpoint with a dense, shadowy forest backdrop. +sun_aqzmukeiyumkdfdm.jpg A lush, narrow forest path with a rocky, uneven texture winds uphill through dense greenery, featuring a fallen tree bridge and framed by tall, shadowy evergreen trees in the background. +sun_adkvekgtxwydbklw.jpg The forest path is a narrow, wooden walkway surrounded by lush autumn foliage in green and gold, with a backdrop of dense trees and a hint of water visible in the distance. +sun_aqcnbdmnumzvarpd.jpg A narrow, sunlit forest path with dappled light filtering through a lush, green canopy of arched trees and a slightly winding dirt trail flanked by dense, leafy underbrush. +sun_atobieowqtfxwldy.jpg The forest path is a narrow, winding stone trail flanked by lush green ferns and towering trees with textured bark, viewed from a slightly elevated perspective, with dense foliage in the background adding depth to the scene. +sun_akeolbqdxpapiqig.jpg A narrow, dirt path covered with a carpet of fallen brown leaves winds through dense, green leafy vegetation, framed by tall bushes and trees creating a natural tunnel effect with dappled sunlight filtering through the canopy. +sun_abkhxgnturbmacax.jpg The forest path is a narrow, gravel-covered trail lined with tufts of grass, winding through an open area with leafless, branchy trees, set against a clear blue sky. +sun_afbnrhlckndpkcdb.jpg A lush, vibrant green path bordered by colorful, dense tropical foliage and tall, slender palm trees, with a slightly upward perspective showcasing a clear blue sky and distant hillside. +sun_abwdsfuvrmebvzio.jpg A light brown, gently curving path meanders through a dense forest of dark green, towering trees and sparse underbrush, viewed from ground level. +sun_auflnwzjcngpoevo.jpg A narrow, earthy-brown forest path is enveloped by dense greenery and ferns, flanked by moss-covered, arching trees on the left, leading into a shadowy, deep forest background. +sun_angtkfhzsqqvzuuq.jpg The forest path is covered with a light layer of fallen yellow leaves, winding through a corridor of tall, slender trees with mottled gray and brown bark, surrounded by lush green undergrowth, viewed from a ground-level perspective. +sun_apselqlxjuolxwjb.jpg The forest path, viewed at eye level, winds gently through a dense thicket of tall, slender trees with a mix of green and yellow foliage, bordered by rust-colored ferns and scattered fallen branches, creating a textured and serene natural corridor. +sun_araqghiobhqnkhmi.jpg The forest path is a sun-dappled, uneven dirt trail with sparse foliage and stones, winding through lush green trees and vegetation with a canopy that creates a lightly shaded area. +sun_aofiiqhhzusswlwz.jpg A coarse, gravel-covered forest path curves gently through a lightly wooded area, bordered by vibrant green and autumn-hued trees under a bright, open sky, with a distant solitary figure walking along it. +sun_bsneivannumlsycg.jpg The forest path is a narrow, earthy trail with a light brown, slightly rough texture, leading into a dense thicket of mostly leafy green trees, flanked by sparse underbrush, and set against a backdrop of tall, slender trunks visible under dappled sunlight. +sun_asmdxqdvxwaktmcl.jpg A narrow, winding forest path cuts through a verdant, densely vegetated terrain where dappled sunlight filters through a high canopy of lush green leaves, creating a serene and slightly shadowed woodland atmosphere. +sun_afxnbbpeooqfqyea.jpg A narrow, winding dirt path of a light brown hue cuts through a dense forest with tall, slender trees and a lush green undergrowth, bathed in dappled sunlight filtering through a partial canopy, lending the scene a serene and secluded ambiance. +sun_azwhehaajdynxlyp.jpg The forest path is a narrow, dirt trail with a slightly damp texture, surrounded by dense greenery and tall, moss-covered trees, leading the eye deeper into the lush, verdant forest environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/forest_road_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/forest_road_descriptions.txt new file mode 100644 index 0000000..a9180e0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/forest_road_descriptions.txt @@ -0,0 +1,20 @@ +sun_atjhiebtkdczawbw.jpg A straight, narrow asphalt road with faint yellow lines cuts through a dense array of leafless trees arching overhead against a clear blue sky, bordered by sparse underbrush and patches of sunlight filtering through the branches. +sun_asoslkyvaokenrgf.jpg An asphalt road with bright yellow center lines is bordered by dense, green-leaved trees, viewed from a low, central perspective, creating a tunnel-like effect with contrasting shadows and sunlight patches on the surface. +sun_ajlwhnrifiyfsqut.jpg A winding road with a smooth, dark grey surface marked by solid yellow lines curves gently through a vibrant forest showcasing a tapestry of red, green, and yellow foliage, under a clear, light blue sky. +sun_afqguhaicrghwgdh.jpg The forest road features a smooth, gray surface with a double yellow line running through the center, curving gently to create a soft S-shape, set against a vibrant background of dense trees displaying a mix of green, yellow, and orange foliage. +sun_atsohgzastfmpkru.jpg A straight, gray asphalt road with yellow lines stretches into the distance flanked by vibrant golden-yellow foliage, under a clear blue sky with scattered clouds and distant snow-capped mountains. +sun_bonicrtorseimzvs.jpg The forest road appears as a smooth, light gray asphalt path curving gently to the right, bordered by lush green grass and dense trees on both sides under a clear blue sky with a few white clouds. +sun_bhwxjvyvzxpifqzz.jpg A winding forest road with a cracked gray asphalt surface and double yellow lines is flanked by vibrant fall foliage in hues of green, yellow, and orange under a clear blue sky. +sun_bcfxerynbhnvtpab.jpg A narrow, wet, and slightly winding road with a dark, reflective surface leads through a dense forest of towering evergreen trees enveloped in mist, framed by lush greenery and ferns along its edges. +sun_bghmnwbenhmpdsqh.jpg A reddish-brown dirt road stretches straight into the distance under a canopy of tall, evenly spaced trees, with sunlight creating dappled shadows on the surface and dense greenery on either side. +sun_byfdqsedrorkauix.jpg The forest road appears as a narrow, dark gray path winding through an archway of densely packed, twisting trees with rough, textured bark, surrounded by a diverse undergrowth of verdant foliage and scattered dry grasses, under a partially visible blue sky. +sun_bmulvhgmroeidprz.jpg A narrow, winding gravel road surrounded by vibrant autumn foliage in shades of red, orange, and yellow, with a canopy of trees providing dappled sunlight and shadows, set against a clear blue sky. +sun_arzkapjxirhdbkjn.jpg The forest road is a paved, gray surface with yellow dividing lines, viewed from a low angle, bordered by a mix of vibrant yellow and deep green trees under a clear blue sky. +sun_avampozbqtdjxwxu.jpg A narrow forest road lined with towering, dense trees under a misty, muted green canopy, with a smooth, dark gray surface and a white car adding scale and contrast in the middle distance. +sun_abzlggdwlkntphyu.jpg A gently curving, sun-dappled road is surrounded by a dense mix of vibrant green and golden yellow foliage, with shadows from overhanging branches creating intricate patterns on the asphalt, viewed from a perspective that highlights the road's smooth, winding nature amidst the forest. +sun_bspnnyfvhbgtfyjd.jpg The forest road stretches straight into the distance with a smooth, dark asphalt surface, flanked by cleared edges and sparse, sunlit green trees on both sides, under a bright blue sky. +sun_acgekqoihvjdgkty.jpg A sun-dappled forest road curves gently through lush, verdant trees with textured foliage, diffusing sunlight into soft beams that contrast with the shadowed undergrowth. +sun_bjdjvrmntljwntav.jpg A narrow, light gray asphalt road smoothly extends into the distance, flanked by lush, vibrant green foliage and palm trees, creating a serene canopy with a slightly elevated viewpoint showcasing the undulating landscape of dense, verdant forest. +sun_aosblbayphxfhosm.jpg The forest road curves gently as it winds through a vibrant landscape of dense trees in autumn hues, with motorcyclists riding along the sunlit, smooth gray asphalt bordered by a rustic wooden guardrail. +sun_amqunsiajzgveevy.jpg A narrow, unpaved forest road stretches forward from a slightly elevated viewpoint, flanked by dense trees adorned with vibrant autumn foliage in hues of orange, yellow, and red, with a soft carpet of fallen leaves scattered along its edges. +sun_bobahfpuaziicdbu.jpg The forest road is characterized by a wide, flat expanse of gray gravel, bordered by sparse green vegetation and tall, slender trees under a partly cloudy blue sky, captured from a low, straight-on viewpoint accentuating its linear perspective. diff --git a/utils/area/descriptions/sun/generated_descriptions/formal_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/formal_garden_descriptions.txt new file mode 100644 index 0000000..4e9d583 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/formal_garden_descriptions.txt @@ -0,0 +1,20 @@ +sun_bgstcoefrnirxnbg.jpg The formal garden is viewed through an ornate wrought-iron gate, featuring a symmetrical layout with vibrant flower beds in red, purple, and yellow hues encircling a central water fountain, set against a backdrop of manicured hedges and a traditional brick manor. +sun_bzpumfucozurlgtw.jpg The image shows a vibrant green, neatly manicured lawn bordered by meticulously trimmed shrubs and topiary, set against a backdrop of dense, diverse trees under a partly cloudy sky. +sun_blpprsjwulpatqil.jpg The formal garden features a vibrant array of densely packed flower beds in varied colors with neatly trimmed greenery and conical shrubs, viewed from an elevated angle offering a panoramic sweep with lush trees and a walkway winding through the landscape, set against a backdrop of tall evergreens and a soft, misty sky. +sun_agrkvysjmchsoquy.jpg The image shows a formal garden with manicured green hedges in geometric patterns, a white marble statue on a pedestal in the foreground, and a central fountain surrounded by lush greenery and a body of water in the distant background, viewed from an elevated angle. +sun_bhjexyeaiuyawxeb.jpg The formal garden features neatly trimmed greenery and colorful blooms within symmetrical stone-bordered pathways, viewed from a slightly elevated angle, with a white peaked tent and lush trees forming the scenic background. +sun_ajcwvgoakovroyma.jpg Neatly trimmed, vivid green hedges form a winding geometric pattern among tall, vibrant purple and blue flowers, set against a backdrop of lush greenery. +sun_bivaylkdgtnwfrtr.jpg Characterized by lush greenery and vibrant floral displays, the formal garden features richly textured foliage in varied shades of green with pops of white, deep red, and pink, alongside a reflective pond and a backdrop of weeping willow branches creating a serene, enclosed environment. +sun_bxrgbgmwwmejukki.jpg The formal garden features neatly trimmed, lush green hedges in geometric patterns, interspersed with flowering plants, viewed from a slightly elevated perspective against a picturesque backdrop of rolling vineyards and a rustic stone building. +sun_avxtttcwtcgvfzse.jpg The formal garden features vividly green rectangular and cross-shaped plant beds framed by neat wooden borders, with a white picket fence and an ornate stone urn centerpiece on a gravel path, set against a lush green backdrop. +sun_bcjpssemeyhmebmn.jpg From an elevated viewpoint, the vibrant formal garden showcases symmetrically arranged beds filled with brightly colored flowers, including red, yellow, and pink, interspersed with meticulously trimmed green hedges, set against a backdrop of lush trees and misty hills, with curved pathways and a few visitors carrying umbrellas. +sun_afreammwlpmmhjme.jpg The formal garden features geometric hedges and pathways with vibrant green lawns, meticulously trimmed pyramidal shrubs, rows of colorful flowers including purple, red, and yellow hues, set against a backdrop of brick walls and a historic brick building, captured from a ground-level viewpoint showcasing its symmetrical layout. +sun_akrwqbrbzktedeeb.jpg A meticulously designed formal garden viewed from an elevated perspective features vibrant beds of orange, pink, and white flowers set within neatly trimmed hedges, with a central statue and a backdrop of geometric hedgerows and trellis work. +sun_bdiyujhlbripxmpe.jpg The formal garden features vibrant pink and red flowers in the foreground, a reflective pond centered amidst lush green foliage, and distinct soft pink blossoming trees with a backdrop of tall evergreens under a clear sky. +sun_aanfdszdggeqrclh.jpg An aerial view captures the symmetrical, geometric design of the formal garden, featuring brown and green manicured hedges that form octagonal patterns centered around a circular stone structure, set against a backdrop of a rustic stone wall and open fields. +sun_bgehpuigoqzwjnuw.jpg The formal garden features a meticulously manicured, vibrant green lawn at its center, surrounded by symmetrical, curving flowerbeds with bursts of purple, yellow, and red flowers, set against a lush backdrop of varied, dense greenery and a slightly elevated viewpoint offering an expansive view of the scene. +sun_bdcfingxwkzaozgs.jpg The formal garden features vibrant green manicured hedges and symmetrical geometric patterns, illuminated by soft sunlight with neatly clipped topiaries and meandering paths, set against a backdrop of dense trees and classical statues and fountains, viewed from an elevated angle. +sun_bkajdrhtlhzsgqjs.jpg A lush, multicolored garden with neatly arranged flower beds features vibrant blooms of yellow, pink, and white, surrounded by manicured shrubs and trees, all set against a backdrop of dense, verdant greenery, viewed from a slightly elevated perspective. +sun_bnrcokvqnlrtakqv.jpg From an elevated viewpoint, the formal garden features intricately patterned, vivid green hedges with a smooth texture, contrasted by purple flower-filled sections, set against a backdrop of charming buildings with red-tiled roofs. +sun_bksyabeehlnphsmo.jpg A narrow stone path bordered by vibrant yellow and red flowers leads through meticulously trimmed greenery towards a shaded pavilion framed by lush trees, creating a symmetrical and colorful formal garden scene. +sun_biucgkuylirkuffu.jpg A low-resolution image shows a formal garden featuring lush green grass in the foreground, a curved stone pathway running to the right, vibrant bands of yellow and orange flowers lining the border, and a backdrop dominated by tall, dense palm trees under a cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/fountain_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/fountain_descriptions.txt new file mode 100644 index 0000000..a6f398c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/fountain_descriptions.txt @@ -0,0 +1,10 @@ +sun_aansgyeyvchinvwt.jpg The fountain is a light beige, multi-tiered stone structure with ornate, carved lion figures, set against a bright, outdoor setting featuring distant mountains and a pool with clear blue water. +sun_asixhfuwkzyxcmzo.jpg The fountain features tall, curved stone structures with a textured surface resembling a sundial, set against a collegiate backdrop with brick buildings and a clock tower, surrounded by manicured green lawns and paved walkways. +sun_axatsgluqxycvzeh.jpg The fountain, seen from a frontal angle, features golden fish sculptures spouting water arcs amid a misty environment, set against a backdrop of manicured hedges and a crowd of onlookers. +sun_akbshnygycozvpox.jpg A vividly illuminated fountain with flowing water arches, featuring sculpted red figures at its center, positioned in front of a multi-story building with lit windows, surrounded by greenery and spotlights creating dramatic reflections. +sun_andjfhljhpzueffu.jpg The fountain features numerous tall, thin streams of water set against a cityscape of high-rise buildings, with leafless trees in the background and a reflective, wet surface surrounding the base. +sun_axgmpbdyvqhtkhee.jpg The fountain features multiple streams of clear, white water shooting upwards into the air from a circular basin surrounded by low, gray stone walls, with colorful flower beds in the foreground and trees against a blue sky in the distant background. +sun_abpvorsmjeokollx.jpg The fountain displays illuminated water jets in varying heights and forms against a backdrop of a city skyline with brightly lit skyscrapers under a dark night sky. +sun_ackscbubuyphqjlz.jpg The fountain features a bronze-like textured surface with intricately carved figures at its center, viewed from a low angle against a backdrop of modern skyscrapers, highlighted by multiple streams of water arching gracefully from the top. +sun_ajcrlaxwkbmptszk.jpg The fountain features a central plume of clear water surrounded by dark, rugged stones with a textured surface, viewed from ground level in a park setting, framed by sprawling trees and a street in the background. +sun_altiplaurjsjadzw.jpg A mid-range viewpoint captures a geometric, dark metallic fountain juxtaposed against a textured concrete building, with water cascading in a symmetrical, arching spray above a blue basin, framed by soft-focus green foliage in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/galley_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/galley_descriptions.txt new file mode 100644 index 0000000..1de84ba --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/galley_descriptions.txt @@ -0,0 +1,10 @@ +sun_brzciojqvcppungm.jpg The galley features a sleek, white countertop contrasted with rich brown wood cabinetry, viewed from a side angle with visible portholes and a metal faucet, set against a background of smooth, glossy surfaces. +sun_bolnsfhtxunujgzv.jpg The galley features a cream-colored countertop with a smooth texture, set at an angle with an embedded small round sink, and a black-faced mini-fridge below; it is positioned against a patterned fabric wall depicting aquatic imagery and surrounded by RV or camper-style upholstery in a compact, enclosed space. +sun_biprhxsuqxhzrnpd.jpg The galley features a white and silver sink with a small stove set into a wooden countertop, complemented by plaid-patterned cushions on an adjacent bench, with a window and compact storage unit visible in the background. +sun_bbtuxeubbkbftxad.jpg The galley features a primarily white and beige color scheme with a glossy texture, viewed from an upward angle in a compact kitchen area with sunlight filtering through slanted windows, showcasing a stainless steel stove, white cabinets, and assorted kitchenware on the counters. +sun_btvrtshhjcstjoeo.jpg The galley features light wood cabinetry with a shiny, speckled countertop and a built-in metal stovetop and oven, visible from a side angle against a bright interior with a striped curtain above a large black glass panel. +sun_bjjwolsglcuaxfjg.jpg The galley features white cabinetry and appliances contrasted by natural wood countertops and ceiling, with colorful yellow and blue dishes displayed on open shelving, all situated in a compact, well-lit space with windows providing outside views. +sun_birjsbqihtgisakb.jpg The interior of the galley is mostly composed of warm-toned wooden cabinetry and panels contrasting with white countertops and cushioned seating, viewed from an angle that captures a compact, homey space adorned with floral patterned cushions, a small table with a blue and white cloth, and bright natural light streaming through partially curtained windows. +sun_bcyygmrybreiwrsa.jpg A warmly lit, wood-paneled galley features a beige countertop with an integrated silver sink and kettle, set against a cozy background with potted plants and neatly organized shelves stocked with spices and cups. +sun_bnffmggvawzltrnc.jpg The galley features warm, polished wooden cabinetry with a pair of rattan-fronted doors, visible from a slight side angle, set against a sleek white countertop with a stainless steel sink and surrounding it, there's a metallic blue window providing a nautical backdrop. +sun_brebjpxmikquheds.jpg The galley features a sleek dark blue countertop with light wood cabinetry, a shiny stainless steel sink, and embedded appliances, viewed from a slightly elevated angle with a sunlit dining area and a fire extinguisher visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/game_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/game_room_descriptions.txt new file mode 100644 index 0000000..a46722f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/game_room_descriptions.txt @@ -0,0 +1,20 @@ +sun_bqirjxxfcjspiyqm.jpg The game room features warm-toned wooden furniture with a long, light-colored shuffleboard table on the left, set against a narrow, elongated space with an orange floor, cream walls, and ceiling fans, while the right side is lined with kitchen-like cabinets, a small television, and exercise equipment. +sun_aozmtgklpzfmzwzy.jpg The game room features two pinball machines side by side with vibrant, colorful graphics; one with a racing car theme titled "The Getaway" and the other "No Fear" with a flame motif, both exhibiting shiny playfields and numerous detailed elements viewed from a front-right angle against a sparse room background. +sun_bflvidiotutsibfj.jpg The game room features a dark table with a smooth surface and visible white lines, seen from an angled viewpoint with a red paddle and balls atop, surrounded by muted beige walls, a window with curtains, and electronic equipment in the background. +sun_bhlpvefawtmfapjq.jpg The game room features a turquoise ping pong table with a white net, surrounded by wooden shelving filled with various sports memorabilia, and is characterized by vibrant green paneling, red plaid curtains, and a chalkboard displaying scores. +sun_avpixqetpxoxdcvh.jpg The game room features a pool table with a vivid blue cloth surface and assorted balls, set against a backdrop of vertical metallic corrugated walls and framed pictures, viewed from a side angle emphasizing the sturdy leg design and pristine condition of the table. +sun_bnhdaynywbadtujf.jpg The game room features a blue-felt-covered billiard table with a geometric patterned carpet beneath, positioned centrally under a high, angled ceiling with white rafters, flanked by ceiling fans and adjacent to a row of cushioned chairs against the wall. +sun_byanrdnbrxmjfwsc.jpg The game room features a dark wood poker table with a green felt top, surrounded by wooden chairs, set against a rustic wood-paneled room with large windows, small shelves, indoor plants, and an array of framed wall art, all viewed from a slightly elevated angle. +sun_bfmgtettnguiqmbu.jpg The game room features a spacious layout with a navy blue and beige color scheme, highlighted by a ping pong table with a green surface and red paddle in the foreground, pool tables in the background, ceiling fan fixtures, and a simple decor featuring minimal wall art and small windows allowing natural light. +sun_bpzxhubqpvmnjzkb.jpg The game room features a wood-paneled interior with soft, neutral flooring, containing a prominently central green felt pool table, a classic pinball machine against the back wall, a nearby dartboard, and a television set on a stand, all illuminated by overhead fluorescent lighting. +sun_bcovslsiemerqxnn.jpg The game room features a blue felt pool table with wooden legs positioned alongside a black air hockey table, set against a backdrop of white and purple striped walls on a polished purple floor, with a suspended flat-screen TV and framed picture on the nearby wall. +sun_aqidnkyznzdvdcbl.jpg The game room features a beige sofa and a wicker coffee table on a wooden floor, with a foosball table in the foreground, against a backdrop of checkered curtains and large glass doors that reveal a green outdoor scenery. +sun_bdnmhokhjklejvjx.jpg The game room features a central green felt pool table with a wooden frame in the foreground, positioned in front of multiple arcade machines that display colorful lights and graphics under a dimly lit ceiling, creating a lively and vibrant atmosphere. +sun_bhlbkfleofyjlayd.jpg The game room features a green-topped billiard table with a light wood frame, positioned centrally on a concrete floor, with a thatched ceiling overhead, white walls with a window on the left, and casual seating including a beige sofa and black chairs in the background. +sun_agqldjbhbumjwwpu.jpg The game room features a warm terracotta tile floor and white walls, with large windows framed by blue curtains, housing plaid upholstered chairs, a wooden foosball table, and a pool table, seen from a slightly elevated angle. +sun_bftaifkixyinxttl.jpg The game room features a green and brown palette with a textured ceiling, viewed from the doorway, showcasing a pool table with racked balls, a foosball table in the foreground, a picture-adorned wall, and a soft brown couch under soft overhead lighting, all set against a muted green and beige carpeted background. +sun_aqmwubpbaqwnjwny.jpg The game room features a dimly-lit collection of vintage pinball machines with vibrant, illuminated backglass art and an adjacent foosball table, all set against a plain white wall decorated with posters, viewed from a slightly elevated angle. +sun_bcmehpxddkgimsrm.jpg The game room features bright lime green racing arcade machines with car-shaped seats, a vertical claw machine in purple, and a vintage-style black gaming cabinet, all set against a plain beige wall with a tiled floor and green carpet. +sun_bdvztvnuaqdxlwby.jpg The game room features a central green-felt pool table with visible colorful billiard balls beneath, surrounded by a series of retro arcade machines against a white wall adorned with a fishing-themed mural, with a cozy dimly-lit atmosphere enhanced by wooden chairs and a ceiling light fixture. +sun_atbgszjqqrxrkmeu.jpg The game room features wood-paneled walls with mounted fish and an array of games including foosball and a pool table, under warm, yellowish lighting and ceiling fans, with people engaging in activities amid a cozy setting with brown flooring and a couch along the back wall. +sun_bpkkxkqxlfjhekpg.jpg A brightly lit game room features a variety of colorful arcade machines with cartoon-themed graphics against vibrant yellow walls, showcasing a carpeted floor and a cozy, cluttered atmosphere. diff --git a/utils/area/descriptions/sun/generated_descriptions/garage_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/garage_descriptions.txt new file mode 100644 index 0000000..e5fb93f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/garage_descriptions.txt @@ -0,0 +1,10 @@ +sun_bywmvepardtarnaa.jpg The garage is an indoor space with cream-colored walls displaying automotive posters, containing a white vintage car with a boxy silhouette and black trim, surrounded by wooden shelves and automotive gear, observed from a side angle. +sun_arslaipkwkmlqflu.jpg The garage features a brown wooden door with a diagonal pattern, viewed from an interior angle, surrounded by a clutter of tools and storage boxes against a backdrop of pegboards and bright overhead lights illuminating the space. +sun_aofgemwctureqpui.jpg The image shows a spacious metal garage with a red and white framework, an interior viewpoint from the entrance, housing a farm tractor with an orange front loader and various covered vehicles, while the corrugated metal roof and walls create a utilitarian texture amidst a lightly cluttered environment. +sun_bwcxyhoantnnijya.jpg The garage interior is viewed from a corner angle, with a concrete floor and beige walls, featuring a hanging black punching bag and bicycles, ski equipment mounted on the wall, a red tool chest on the right beside shelves filled with gray and blue storage bins, and illuminated by ceiling-mounted fluorescent lights. +sun_bincjnbzqqbasakl.jpg The garage interior features a cluttered space with a concrete floor, visible shelving and storage on the back wall, assorted household items including a washing machine and a person sweeping near a covered object on the right. +sun_alnimcytvvxwwkdd.jpg The garage interior features an off-white color with cluttered items such as bicycles, cardboard boxes, and plastic bins, viewed from a central angle, under fluorescent lighting with small windows on the garage door revealing a grassy exterior. +sun_biggvbnooegfqskd.jpg The garage features a white, textured double-door with metal hinges, viewed from a head-on angle inside a cluttered space filled with assorted boxes, tools, and shelves, and is illuminated by fluorescent ceiling lights. +sun_afjjltqgslajterq.jpg The garage features a cluttered workbench with various tools and items hanging on a textured wooden wall, and a dark brown door on the right, all viewed from an interior angle with concrete flooring and muted lighting. +sun_aztwrqpcnzuvqwyy.jpg The garage is cluttered with various cardboard boxes and items piled on shelves and the floor, displaying a beige wall and gray concrete floor, with a partially open door leading to another room and a slightly messy and dimly lit environment. +sun_awkghrgofkcqohux.jpg The garage interior, viewed at an angle, features white brick walls with wooden shelves stocked with various containers, a wooden workbench with multiple drawers, gray floor showing scattered debris, and an overhead storage area with a partially visible ladder and plumbing elements. diff --git a/utils/area/descriptions/sun/generated_descriptions/garbage_dump_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/garbage_dump_descriptions.txt new file mode 100644 index 0000000..30bfcb4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/garbage_dump_descriptions.txt @@ -0,0 +1,20 @@ +sun_alxlcmhfztjxnfjt.jpg A weathered stone monument with scattered multicolored debris at its base is set against a barren, rocky landscape with a clear blue sky overhead. +sun_bitffzlihkhxbprd.jpg A vast expanse of mixed brown, gray, and multicolored waste materials including cardboard and plastics stretch across the foreground, with a child in the center bending over amidst the debris, while in the hazy background, a bulldozer is barely visible against a blurred, misty sky. +sun_bctfmaotlntwijrm.jpg A sprawling expanse of mixed waste, predominantly with hues of brown, grey, and scattered colors, covers the ground, surrounded by a backdrop of low-rise residential buildings and sparse vegetation under a hazy sky, with noticeable large bags and a bicycle at the forefront. +sun_acliarrzkajryjex.jpg A low-resolution view shows a predominantly brown and black garbage pile with oily textures, featuring an open can with dark liquid against a backdrop of scattered green grass and rusted metal pipes, with a discarded tire nearby. +sun_ahpsjilpsodbudur.jpg A chaotic garbage dump composed of various brown and gray debris, viewed from eye level, is flanked by dilapidated buildings in a dusty, urban setting, with piles spilling onto a rough, dirt path and animals roaming nearby. +sun_aalsjthjwezwzsfk.jpg Stacks of tightly packed bales of cardboard and plastic waste exhibit a mix of brown, white, and green hues with a rough, layered texture, set against a clear blue sky and situated on a dusty ground. +sun_bwluqxzpwimwapyu.jpg The garbage dump is a mix of gray and brown tones with a chaotic texture of scattered debris, seen from an eye-level viewpoint, surrounded by a barren, dusty landscape, with distinct elements like tires and a jerry can amid the clutter. +sun_aiqivvudcrvqfaen.jpg The image shows a pile of multicolored trash with dominant textures of plastic and paper, amidst which a brown cow stands in profile eating, while a person sifts through the waste under a clear blue sky in an urban setting with brick structures in the background. +sun_bhzxlipbqoqjtxtn.jpg The image depicts a narrow, dry creek bed containing scattered smooth stones and sparse vegetation, bordered by a wooden fence in the foreground and lined with young trees on each side against a backdrop of clear blue sky and distant mountains. +sun_bmltgebjganoiiih.jpg A sprawling landscape of mixed-colored trash with predominant hues of brown, black, and weathered gray fabrics and plastics appears haphazardly strewn across an expansive area, viewed from a slightly elevated angle with an urban skyline shrouded in a hazy mist forming the distant background. +sun_azxkbhbflphuzpfk.jpg The image depicts a vast expanse of a gray and brown garbage dump with a coarse, layered texture, viewed from an elevated angle, featuring excavators and small figures atop the waste mound under a cloudy sky, situated adjacent to a green, treed landscape. +sun_biuklhfigolxbqot.jpg A sprawling garbage dump seen from a low angle is dominated by heaps of mixed waste, with dull earthy tones and scattered green bags, against a background of a hazy sky, with two individuals in worn attire engaged amidst the refuse. +sun_bcfmsrjxgvntwjaq.jpg The garbage dump is depicted from a mid-level viewpoint under a cloudy sky, with a chaotic mix of mostly gray and brown hues interspersed with occasional bright colors from plastics, while numerous birds fly overhead, contributing to a dynamic yet cluttered scene. +sun_axjtuyfdxdhgfkcj.jpg A sprawling pile of metallic debris features various shades of rust and silver with jagged textures, set against a clear blue sky, highlighting a chaotic assortment of twisted wires, broken panels, and crushed containers in this cluttered industrial wasteland. +sun_bynpfuohziznagbg.jpg A low-resolution image of a garbage dump features large piles of assorted waste dominated by muted tones of brown, green, and gray against the dimly lit interior of a metallic industrial warehouse, with distinct mounds of compacted materials interspersed with cardboard boxes and plastic bags under a high, ribbed ceiling. +sun_bgfyuciwgmtgovat.jpg A bustling scene shows a white garbage truck tilted with its bed raised, surrounded by piles of multicolored waste, primarily faded and brownish, with numerous people in bright yellow garments scavenging amidst the debris on a dirt-covered landscape. +sun_bkxyefgqwensrpkk.jpg The garbage dump features a chaotic sprawl of mixed waste materials with predominant dull grays, browns, and sporadic patches of brighter colors, situated in front of a large, dusty cliff face, with numerous people and a few yellow and green trucks scattered throughout the scene. +sun_bvbxkxrilaufaahm.jpg Amidst a smoky, barren landscape with scattered waste and grayish ash, a person is carrying large, dull-colored bags over their shoulders, standing against a backdrop of indistinct concrete structures and hazy sky. +sun_bglavvkqykdfokbi.jpg The image depicts an indoor industrial setting with workers in safety gear surrounded by piles of indistinct, blurry materials, featuring muted greys and browns, with bright overhead lights casting reflections on the floor and beams, suggesting a spacious, dimly-lit environment. +sun_arwtivpqbrlkwavz.jpg A bright yellow excavator with a boxy design is seen from the rear angle, surrounded by mounds of dark soil and scattered debris against a clear blue sky, with a long pipe and a person visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/gas_station_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/gas_station_descriptions.txt new file mode 100644 index 0000000..89509be --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/gas_station_descriptions.txt @@ -0,0 +1,20 @@ +sun_abepmxcpitdejuqu.jpg The gas station features a blue and yellow color scheme with a flat-roofed canopy and bold signage, situated on a slight incline next to a brick building, with visible pumps displaying price signs and a clear road in the foreground. +sun_apvuoljpjbcwvjqh.jpg The gas station displays red, yellow, and white colors with a clean, rectangular structure featuring multiple fuel hoses in the foreground, viewed from a slight angle under overcast lighting with parked cars and a Shell sign visible in the background. +sun_ameqcjgxqpbxlnxn.jpg The gas station is viewed from the front-left corner, featuring a prominent red and white canopy supported by red columns, with a partially shadowed pavement, and is set against a background of a brick building and trees under a clear sky. +sun_apkyooifdlsdnlpb.jpg The gas station features a prominent blue and white canopy with "MURPHY USA" branding, tall fuel pumps beneath, a small white building to the side, and a verdant tree line in the background. +sun_adpiwbgrtdagouja.jpg This small, makeshift gas station features a green and red hand-drawn sign with the word "Xăng" next to two visible fuel dispensers, set against an urban street backdrop with a blue and white storefront and surrounding greenery. +sun_bcjzdyuirfppdwpy.jpg The gas station features a distinct green, diamond-patterned canopy with an angular design, viewed from a slightly elevated angle, with a beige structure below and a white pickup truck parked in front, set against a backdrop of a brick building and partially cloudy sky. +sun_axvjwvmhxsdfeils.jpg This gas station features a predominantly white canopy with black branding, situated on a corner lot with multiple workers and vehicles visible, backed by a cloudy sky and utility poles. +sun_afmlfqmwtsxqnoxm.jpg The gas station features a blue and white color scheme with a flat-roofed canopy displaying "CO-OP," surrounded by a busy urban setting with several parked vehicles and a tall, thin building in the distant background. +sun_blwmhstggymdrsih.jpg The gas station in the image features a prominent red and white color scheme with rectangular geometric structures, surrounded by a car-lined parking lot and a backdrop of dense evergreen trees, seen from an angled frontal viewpoint. +sun_adooduqvlxnnqtpe.jpg The gas station has a blue and yellow canopy with red accents, viewed from an angled position with a background of trees and commercial buildings, while a large paved forecourt is visible in the foreground. +sun_apshycxovhlzvlah.jpg The gas station has a wide white canopy with green trim, viewed from an angled perspective with a clear sky, featuring multiple fuel pumps, cars, and a background including a McDonald's and suburban buildings. +sun_aovtssaxtxkdacyv.jpg The gas station features a futuristic metallic geometric canopy with a silver color and angular texture, viewed from a low angle, situated in an urban environment with visible trees and a large billboard in the background. +sun_auqfxpvsgfagjdpi.jpg The gas station features a white canopy with red stripe accents, viewed from the front corner, with a green landscape and trees in the background, and includes visible logo signage and blue trash bins near the pumps. +sun_ajuvydvqytbakfhn.jpg A vintage-style gas station features red and blue pumps with an overhanging roof adorned with retro signage, set against a backdrop of a gravel parking area and surrounded by greenery, as a man in a blue uniform and cap stands casually beside a green signpost. +sun_balrchsmzxevjlrb.jpg The gas station features a bright blue canopy with a white underside and Chevron branding, viewed from an oblique angle, surrounded by a clear sky and tree-lined background, along with multiple pumps clustered beneath the canopy and a wide concrete forecourt. +sun_apiykrscsmdcmtjl.jpg A vintage gas station with a white exterior and red accents, featuring a prominent red Pegasus logo on top, viewed from an angled front perspective, set against a backdrop of clear blue sky and greenery. +sun_ayumexhpeftgwbjw.jpg A small, rustic gas station with a weathered white exterior and an empty signage frame sits in a dusty open area, flanked by two parked cars and backed by a large corrugated metal structure and utility poles under a clear sky. +sun_ayxqlmzkilmgdrxl.jpg The gas station features a prominent red and white canopy with a flat roof above the pumps, viewed from a slight angle, with a parked black pickup truck in front and a clear blue sky in the background, surrounded by a simple paved area. +sun_bgoyqgqkejebgctu.jpg The gas station features a bright yellow and red canopy with a Shell logo, set against a textured rocky hillside, and is viewed from the front-left with a clear blue sky above. +sun_angfljgldupitgpg.jpg A small, rural gas station with a white and blue canopy featuring train graphics, viewed from the roadside against a backdrop of tall pine trees and a clear sky, includes a modest convenience store and multiple vehicles parked around. diff --git a/utils/area/descriptions/sun/generated_descriptions/gazebo_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/gazebo_descriptions.txt new file mode 100644 index 0000000..f773be2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/gazebo_descriptions.txt @@ -0,0 +1,10 @@ +sun_aqcjzsiwzpjsplrp.jpg The white, octagonal gazebo features a shingled, hipped roof and screened windows, viewed from a slightly elevated front angle against a lush backdrop of green trees and bushes. +sun_axxijjjoasdqqjpj.jpg The gazebo is white with intricate lattice detailing, topped with a dark shingled roof, viewed from the side against a wooden fence and a suburban backdrop. +sun_anblqzolfwmkuiyw.jpg The gazebo appears to have a white wooden structure with a two-tiered shingled roof in a reddish-brown shade, viewed from an oblique angle, set in a grassy field with tall trees visible in the background, featuring decorative lattice panels and an inviting open entrance. +sun_aqofnvsexvfmsyqx.jpg A white, wooden gazebo with a lattice design is viewed from a frontal angle, set against a backdrop of mountains and greenery with a small plant and concrete steps leading up. +sun_bjtktgnpismmtdvn.jpg The gazebo has a dark, metallic color with a smooth texture, seen from a frontal viewpoint, featuring a domed roof with an ornate finial, set against a backdrop of a grassy area by the seaside, with tiered steps leading up to it. +sun_akhdrcpytejclhwc.jpg The gazebo features a dark grey, slightly weathered, shingled roof, elegantly topped with a simple cupola, viewed from a side angle amidst a lush green lawn bordered by autumn trees, with sleek white columns supporting the roof structure. +sun_ahbiowwnialefwig.jpg The gazebo is a natural wood color with a latticed roof and open sides, viewed from a slightly elevated angle, surrounded by a vibrant garden of colorful flowers and trees, with a suburban neighborhood in the background. +sun_aeaqhftkdivufniq.jpg A white, octagonal gazebo with intricate scrollwork sits elevated on a platform surrounded by lush greenery, visible from a slight upward angle, with a dark shingled roof and lattice skirting, and trees and grass in the background. +sun_acdufifeiskcurcp.jpg A wooden hexagonal gazebo with a dark brown roof and lattice details at the base, viewed from a slight angle, is set in a vibrant garden with colorful flowers and adjacent suburban houses in the background. +sun_baomytxkprzdefxu.jpg The gazebo is silhouetted against a sunset, featuring a dark, ornate metal frame with a hexagonal roof, surrounded by a snowy landscape and scattered buildings in the distance. diff --git a/utils/area/descriptions/sun/generated_descriptions/general_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/general_store_descriptions.txt new file mode 100644 index 0000000..a8785b7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/general_store_descriptions.txt @@ -0,0 +1,20 @@ +sun_bbfnjprkpezhhwqd.jpg The general store is warmly lit with wooden floors and walls, featuring a cluttered yet charming assortment of antique baskets, assorted jars and goods, and vintage displays set against a backdrop of shelves filled with products, creating a cozy, rustic ambiance. +sun_bllsbsdtitfhkslc.jpg A white wooden building with green-trimmed windows and doors, featuring a gabled roof and a sign reading "Motor Co. Store," is situated in a rural setting with mountains in the background, accompanied by an old Esso sign and a small parking area with visible parked vehicles and pedestrians. +sun_boulukmjdlkogdqh.jpg The general store features tall wooden shelves filled with a diverse array of brightly colored jars and bottles, viewed from a side angle, set against a minimalistic indoor background with a poster on the left wall. +sun_bvzhbjjcgmahbaoc.jpg The general store features a rustic, weathered wooden facade with a faded sign above the entrance, and it is set against a backdrop of greenery under a clear blue sky, with two support posts and a barrel visible on its front porch. +sun_btpxrvpihwkowgnl.jpg The general store features a bright red brick façade with large, bold lettering for "GENERAL STORE" and "SODA FOUNTAIN" above the entrance, visible from a frontal street view, and is flanked by a parked orange motorcycle and a white vehicle on a dusty ground with American flags accenting the storefront. +sun_byycnyoxpmpwmcpx.jpg The image depicts a cozy, narrow general store with rows of densely packed wooden shelves filled with colorful packaged goods, illuminated by fluorescent lights and adorned with hanging decorations, viewed from an eye-level perspective, with a beige-toned ceiling and walls lined with additional products in the background. +sun_bbntpnjgdlefaube.jpg The general store, viewed from the front left, features weathered white wood siding with peeling paint, a sign reading "GENERAL STORE" in faded red letters, a slanted wooden canopy, and is set against a backdrop of a clear blue sky and leafless, barren trees. +sun_buoceiimmujktmom.jpg The general store features a warm, wood-paneled interior with shelves lined with various vintage items, a prominent old-fashioned black stove in the foreground, and a cluttered assortment of tools and artifacts against a rustic wooden backdrop, viewed from a slightly elevated angle. +sun_bkmxrgnoxhznisgt.jpg The general store features a light blue wooden exterior with a dark shingled roof, viewed from an angled front perspective, surrounded by potted plants and garden decorations on a paved area, with a distinct orange sign and an American flag adding character to its quaint, suburban setting. +sun_byukyxqgfqjassga.jpg The general store has a brick façade with a white wooden overhang featuring bold red and black signage, flanked by windows with dark trim, all situated in a historic, small-town street scene with parked cars and flag decorations. +sun_bsaettavpdtgjonx.jpg The general store appears cluttered and colorful with a variety of items including hanging garments, stacked stationery, and vibrant packaging, set against a backdrop of densely packed shelves with a seated person visible from a frontal viewpoint. +sun_bubxvxsbzngngkzp.jpg The general store has a rustic gray wooden facade with bold black signage over large front windows, a vintage bicycle wheel mounted above the entrance, and is flanked by vibrant red planters against a backdrop of greenery and blue sky. +sun_aikfaaywmweijnuc.jpg The general store features a weathered, gray wooden exterior with a rustic texture, seen from a frontal angle on a sunny day, surrounded by trees and parked vehicles, with a prominent Pepsi sign and a classic old-country store banner. +sun_befxalppxzsdirhd.jpg The general store displays an array of brightly packaged snacks and goods on black metal shelves, with a dense bundle of light brown twigs in the foreground, set against a background of glass windows reflecting the bustling outdoor environment. +sun_bflygysdtircclqc.jpg The general store features a cream-colored façade with a wood-textured, gabled roof viewed from the front, prominently displaying a red door with neon signs and decorative potted flowers along the window ledges, situated in a quaint, small-town setting. +sun_azezkxsobxtsljnh.jpg This white wooden general store features a front-facing view with a central double-door entrance flanked by large display windows, a balcony above, and a distinct brown sign in the middle, set against a gray, overcast sky with adjacent power lines. +sun_bnzsltscazyqwmfu.jpg The general store has a white wooden exterior with a covered front porch featuring rustic wooden railings, a prominent red sign above the entrance, an American flag, and surrounding lush greenery against a backdrop of blue sky and trees. +sun_bnxovyhlntxaefqu.jpg The general store features a weathered wooden facade with rustic texture set in a frontal viewpoint, surrounded by greenery and colonial-style flags, with a distinctive small-town road and historic atmosphere. +sun_braajtuuefvvkbbu.jpg A rustic general store with a brown wooden texture and shingled roof is seen from an angled view, featuring large white lettering, a sign for "ICE & FILM," a brick facade, and two people sitting on benches in a sunlit environment with trees in the background. +sun_bgabzeqxphsefpxu.jpg A cozy, cluttered general store with a white wooden ceiling is filled with colorful packaged goods hanging on the walls, jars on shelves, and a variety of items on the counter, viewed from the front with a family standing warmly in the middle. diff --git a/utils/area/descriptions/sun/generated_descriptions/gift_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/gift_shop_descriptions.txt new file mode 100644 index 0000000..0f93302 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/gift_shop_descriptions.txt @@ -0,0 +1,20 @@ +sun_bgqhginrjtyvvwrc.jpg The gift shop features a display of colorful, intricately detailed figurines and sculptures on sleek, silver shelving against a deep red wall, highlighted by a vibrant, patterned wall hanging, with an assortment of similar cultural artifacts arranged across a beige countertop. +sun_abzuaffjubfmsgsj.jpg The gift shop features an abundance of festive decorations with bright red, green, and white colors, including poinsettias and Christmas trees, set against a cozy interior filled with twinkling fairy lights and a variety of items arranged on tables and shelves. +sun_bhhqivyvihqvoslb.jpg The gift shop features an eclectic mix of colorful shirts hanging neatly on a rack with a backdrop of rustic wooden shelves and pegboard displaying various small items, fishing nets, and hats, all under a wooden ceiling with natural light filtering through side windows. +sun_bhohtshvpgppnogb.jpg The gift shop features an eclectic display with colorful t-shirts hanging on racks to the left, a central aisle lined with taxidermy deer heads mounted against a wooden beam under a corrugated metal ceiling, and vibrant plants and decorations providing a lively contrast in the warm-toned interior. +sun_bnpehjetqngremfz.jpg The gift shop is densely packed with intricately patterned and textured pottery and metalware in earthy and metallic tones displayed on wooden shelves lining the walls, with a tiled floor and a high ceiling adorned by circular woven decorations, creating a rich and inviting craft-focused environment. +sun_brsvnvjrlguadlbh.jpg A three-tiered display in the gift shop showcases various holiday-themed miniatures and plush toys, with a rustic wooden interior and bright natural light pouring in from windows, framed by a log-cabin ceiling. +sun_bdgdarydkxcobswa.jpg The gift shop features large, colorful letters spelling "GIFTS" hanging from the ceiling, with a cow-patterned counter at the front, surrounded by a busy crowd, set against a vibrant, cartoon-themed mural background. +sun_bojfleohpkdlygzi.jpg The gift shop features a warm and eclectic interior with wooden shelves full of assorted items, a brick archway, and a mix of colorful trinkets and souvenirs, viewed from an angle that captures the narrow aisle and various shelving units lining the walls. +sun_bdtewnjfturaolxu.jpg The gift shop exhibits a rustic interior with wood-paneled walls adorned with framed artwork, shelves displaying souvenirs and colorful trinkets, and a glass display case underneath, all captured from a side angle showing a spacious aisle leading to an area with stacked merchandise. +sun_bqxcrdurqgnjontw.jpg The gift shop features a warmly lit wooden interior with a person in a red top examining a black T-shirt on a hanger, surrounded by racks filled with plush animal toys against a background of shelves and mounted decorations. +sun_bgjqgwpsbclcnhct.jpg The gift shop features a variety of colorful and textured ceramic and glass items displayed on wooden shelves, viewed from the front in a well-lit environment with bright, white walls adorned with floral and botanical prints. +sun_bpscreiddultlpdo.jpg The gift shop features a warm wood-paneled interior with shelves displaying eclectic items including books, framed artwork, and vinyl records, accompanied by a cluttered desk space, while the floor is scattered with old suitcases, all seen from an eye-level perspective. +sun_btwzsgqxxopfazbx.jpg The gift shop presents a cozy, eclectic ambiance with a mix of soft beige and brown tones, displaying neatly arranged plush toys and souvenirs on wooden shelves against an angled wall, with a large window allowing natural light to filter in, highlighting the homey, cluttered setting. +sun_bmzjpjyxvafqqhto.jpg The gift shop features rustic wooden walls adorned with various colorful items such as a stained glass window depicting a yellow flower, a black jacket hanging on display, cans and jars neatly arranged on shelves and a small ladder, and decorative signs all set in a cozy, cabin-like environment. +sun_bbscjxjphsftuevl.jpg The gift shop is a bustling and eclectic space filled with colorful apparel on hangers, American flags prominently on display, and assorted trinkets and souvenirs on cluttered shelves, set within a warm-toned, cozy interior with wood accents and minimal natural light. +sun_bzhdhnowkcytsweg.jpg The gift shop features a cluttered interior with multicolored, textured walls filled with framed pictures, hanging decorations, and various knick-knacks, viewed from an angle showing a narrow counter and a background adorned with eclectic items under soft overhead lighting. +sun_adyyjxskaxwqfpjv.jpg The gift shop features a glass display case at the center, showcasing assorted colorful items, amidst rows of plush toys, greeting cards, and books on white slatwall shelves, under bright spotlights and a low ceiling. +sun_bdzqtoorgthjonwj.jpg The gift shop features tables covered with vibrant red cloths displaying an array of holiday-themed decorations, including wreaths, festive stockings, and colored ribbons, all visible from an elevated viewpoint with white walls and twinkling lights adorning the ceiling. +sun_aknqcxnfwemzudcu.jpg The gift shop features life-sized characters with bright colors and cartoonish textures wearing brown jackets and yellow scarves, positioned on artificial grass in a warmly lit wooden interior with aviation-themed decor in the background. +sun_aweouwdltqpegskk.jpg The gift shop features a central glass display case filled with various white and beige ceramic items, set against a backdrop of a brown, triangular-panelled wall adorned with assorted decorative plates, wooden carvings, and framed pictures, with the viewpoint showing a well-lit carpeted floor and an inviting, organized layout. diff --git a/utils/area/descriptions/sun/generated_descriptions/golf_course_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/golf_course_descriptions.txt new file mode 100644 index 0000000..7a9945d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/golf_course_descriptions.txt @@ -0,0 +1,20 @@ +sun_asweiajpyijqlrki.jpg A golfer in mid-swing on a lush green fairway with vibrant blue skies and a serene ocean backdrop, contrasting against the distant rolling hills and scattered clouds. +sun_asgpyqlcvpfraota.jpg The vibrant green grassy expanse of the golf course is dotted with groups of people, bordered by dense foliage and tall trees against a clear blue sky, while maintaining a gently rolling terrain. +sun_ayogtqquwotmhfzt.jpg A lush, green golf course featuring a smooth, circular putting green is viewed from an elevated position with scattered trees and rolling hills in the background, and a couple of golf carts parked nearby, emphasizing the course's natural terrain and serene setting. +sun_bblmhhwgomincsmt.jpg A wide, lush green fairway with striped mowing patterns extends across gently rolling hills under a clear blue sky, bordered by sandy bunkers, with a calm body of water and distant tree-lined shoreline completing the serene backdrop. +sun_aehirptreveqvbgb.jpg A lush, vibrant green golf course stretches across rolling hills with distinct, manicured fairways, a flag visible near the foreground, as people are scattered in the background against a clear blue sky and a row of tall trees. +sun_axvuogfsxbngkkrt.jpg The image depicts a sunny golf course with lush green fairways and a golden sand bunker in the foreground, set against a backdrop of verdant trees and a serene pond reflecting the clear blue sky. +sun_axsiifdaygervyzm.jpg A verdant golf course with lush green fairways and scattered sand bunkers is seen from an elevated viewpoint, surrounded by a backdrop of autumnal trees and a water feature with fountains under a partly cloudy sky. +sun_bciatqwsrjvnudsp.jpg From an elevated viewpoint, the golf course displays rich green, smoothly contoured fairways against a backdrop of a sandy coastline and distant hills under a clear blue sky. +sun_ahphmnxxnwuclnfb.jpg A vibrant green golf course stretches across the landscape, featuring a manicured putting green adjacent to a clear pond bordered by a rocky edge, with distant rolling fairways and scattered trees under a broad, cloudless blue sky. +sun_asrmdkvzrcrhnymi.jpg The golf course features lush green fairways contrasted with sandy beige bunkers, viewed from a low angle overlooking native desert vegetation, with a backdrop of distant mountains under an overcast sky. +sun_aatqimmmocgqhzje.jpg The image depicts a golf course with a lush green fairway surrounded by dense, dark green trees, viewed from an elevated angle overlooking a serene pond in the foreground, casting reflections and adding contrast. +sun_aytjjfjxosybixjz.jpg The image depicts a golf course featuring a smooth, lush green putting surface bordered by a sandy bunker with tall palm trees in the background and an expansive, serene ocean view under a bright blue sky with scattered clouds. +sun_agyxzigdrogkojwm.jpg The golf course features lush, green fairways with visible sand bunkers beside a reflective water hazard, surrounded by dense trees and distant mountainous terrain under a clear blue sky. +sun_bjynybgeleomgamy.jpg The golf course features vibrant green fairways with well-maintained textures, viewed from a low angle with rolling hills and sparse vegetation in the background under a clear sky. +sun_ashtisuzjlikuvhe.jpg A lush, green golf course is viewed from a low angle showing the smooth, manicured texture of the putting green with a red flagstick in the foreground, silhouetted by tall pine trees and a clubhouse in the background under a clear sky. +sun_bcmfldxqlylnrksu.jpg The low-resolution image depicts a lush green golf course with a smooth, manicured texture, viewed from a slightly elevated angle, surrounded by dense trees in the background and embellished with a colorful flower bed and rocks in the foreground, all under a clear blue sky with some clouds. +sun_afwmvpnunomwmvik.jpg The golf course features lush green fairways bordered by rocky, sandy terrain with blue ocean waves gently approaching the shore, set against a backdrop of rugged hills and colorful buildings on a clear day. +sun_anbnxzmccfzzvhvs.jpg The golf course features lush, green fairways with gentle rolling slopes, viewed from behind a foreground tree with a twisting trunk, set against a background of scattered trees and distant buildings under a clear sky. +sun_adkxnxsyzgrwijak.jpg A vibrant green golf course with smooth, manicured grass is viewed from a high angle, bordered by a blend of tall, leafy trees and a clear blue sky, featuring a distinct golf cart and a golfer mid-swing in the foreground. +sun_aeoykvrdpwmvsojf.jpg The image shows a lush, green golf course with a couple of sand bunkers, viewed from an elevated angle, surrounded by dense forest and greenery stretching into the distance under a clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/greenhouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/greenhouse_descriptions.txt new file mode 100644 index 0000000..a133101 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/greenhouse_descriptions.txt @@ -0,0 +1,10 @@ +sun_bnbrpakdrgpbdaxz.jpg The greenhouse appears transparent with a silvery metal frame and a slightly reflective texture, viewed from a front angle with a sloping roof, surrounded by a grassy area and set against a backdrop of rolling hills and distant houses. +sun_bcutazezazxbfpwl.jpg The greenhouse interior features a lush display of vibrant green and colorful flowering plants in white and black pots on wooden tables, with a grid of hanging planters suspended from a clear, slanted glass and wood roof that allows light to flood in, set against a background of additional rows of plants and a dirt floor pathway. +sun_akxyhbzflvfvpzzu.jpg The greenhouse is a bright, glass-paneled structure with visible metal framework, filled with green plants and vibrant pink flowers, with long green hoses hanging from the ceiling and sunlight filtering through. +sun_baneznbqykkisgtf.jpg The greenhouse features a curved, translucent ceiling draped over rows of lush green plants and colorful hanging baskets, set against a wooden-framed wall at the back, with sunlight softly diffusing through the structure illuminating the concrete floor. +sun_batjthcretajzvao.jpg A small, clear-paneled greenhouse with a sloped roof is situated against a brick wall, surrounded by potted plants and gravel, with a backdrop of climbing ivy. +sun_ajmgnzrllihtxtrk.jpg The greenhouse interior features a lush display of vibrant hanging flowers in shades of purple and pink beneath a translucent, arching ceiling, with rows of potted plants on either side marked by small white signs, set against a backdrop of structural metal beams and sunlight filtering through glass panels. +sun_bvwjbihpgfmlwubh.jpg The greenhouse interior showcases a lush, colorful array of pink, white, and purple flowering plants under a transparent, slightly arched roof with visible supporting beams, surrounded by tropical greenery and structured stone pathways creating a vibrant and immersive botanical environment. +sun_bnqirdyzmtikpyqb.jpg A wooden-frame greenhouse with lattice walls is covered in lush green vines and yellow flowers, featuring a central wooden bench, viewed from the front surrounded by dense greenery. +sun_aqkjiolbtywtaxak.jpg The greenhouse appears translucent with a whitish plastic covering, featuring a peaked roof and twin chimney pipes, situated at an angle revealing its front door, surrounded by a gravel path and lush greenery including tall coniferous trees. +sun_bcijddubzoegattk.jpg The greenhouse has a curved, semi-transparent plastic covering with a metal framework, housing numerous potted plants organized on tables, with a warm, earth-toned palette and a person interacting with the plants from a side view, set against a backdrop of organized horticultural materials. diff --git a/utils/area/descriptions/sun/generated_descriptions/gymnasium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/gymnasium_descriptions.txt new file mode 100644 index 0000000..ab8b469 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/gymnasium_descriptions.txt @@ -0,0 +1,6 @@ +sun_azjszdcknfutyvot.jpg The gymnasium features a treadmill and exercise bike in a beige-carpeted corner room with several tall windows adorned with horizontal blinds, offering a bright and airy atmosphere, with a ceiling fan visible overhead and a motivational towel draped over the treadmill. +sun_apptsigrfxazdgpv.jpg The gymnasium features a light brown wooden floor with blue gym mats in the center, surrounded by white walls and climbing bars along the right, viewed from an elevated angle that showcases the open space and small groups of people engaging in activities. +sun_bkchnlvakzzpbkmf.jpg The gymnasium features a set of black exercise machines, including treadmills and stair climbers, positioned on a tiled floor, with mirrored walls reflecting the equipment and a partition decorated with green floral patterns in the brightly lit background. +sun_axyphvevccbpqspd.jpg The image depicts a dimly lit gymnasium with dark blue and beige flooring, housing a black exercise machine with metallic accents centrally placed, flanked by two blue exercise bikes on the right, with pale blue walls and large windows letting in diffused light. +sun_boqtodssygfwrshf.jpg The gymnasium features red cushioned benches and white metal equipment on a red-carpeted floor, viewed from an elevated angle with mirrored walls reflecting additional exercise machines and ambient fluorescent lighting. +sun_afqlxfmsavhjuplt.jpg The gymnasium features a bright green wall with various white and red exercise machines on a light wooden floor, viewed from a side angle, surrounded by framed pictures and a metal water cooler in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/hangar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hangar_descriptions.txt new file mode 100644 index 0000000..3cdedbd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hangar_descriptions.txt @@ -0,0 +1,20 @@ +sun_bouxedhpjynomypg.jpg The hangar is a large, arched structure with a white fabric cover and visible ribbing, housing a sleek, gray aircraft under bright interior lights, set against a dark night sky and displaying a prominent American flag hanging inside. +sun_bqvkaffklluemfne.jpg The hangar is a vast arched structure with a textured, lattice-like framework, seen from an interior viewpoint, housing a large white airship in the foreground, surrounded by stacks of equipment and boxes against a dimly lit backdrop. +sun_bhsppbcdsefvobog.jpg The hangar features a metallic and wooden structure with an open front, viewed from a ground-level perspective, housing two small aircraft against a backdrop of a concrete floor and a ceiling lined with exposed wooden beams and lighting. +sun_bvzcyolntugyyghc.jpg The hangar's interior features a large, open structure with metallic framework and ribbed walls, visible from inside looking out, housing small aircraft including a white plane with distinctive striping, set against a concrete floor and dim industrial lighting. +sun_brbvfhhvorshdlgt.jpg The image depicts multiple large, white, inflated structures resembling hangars with smooth, glossy surfaces viewed from an elevated angle inside a spacious industrial facility, featuring exposed metal beams and a concrete floor, with people walking around providing scale. +sun_biibhjwndplidnpz.jpg The hangar appears gray with a weathered texture, viewed from a slightly angled front perspective, set against a flat snow-covered field with silo structures visible in the background. +sun_bjcualvhnykgsjyi.jpg The hangar is viewed from the front with an open sliding door revealing a spacious interior, featuring light gray corrugated metal walls and a smooth concrete floor, surrounded by an expansive outdoor area with a concrete and gravel foreground, under a clear sky. +sun_bwpylsokwgjvwlji.jpg The hangar is predominantly silver with a corrugated metal texture viewed from the front right angle, set against a cloudy sky with a grassy foreground and surrounded by a perimeter fence and road. +sun_bmvmmtgigzqqduqi.jpg The hangar is a large arched structure with a light beige color and a ribbed texture, viewed from an elevated angle showing an interior filled with various aircraft, including a prominent white supersonic jet. +sun_bzsgpqcmccxghzmd.jpg The hangar exhibits a beige and gray interior with a large brick wall in the background, featuring a partially dismantled white airplane with blue stripes and exposed machinery in the foreground, viewed from a side angle amid scattered maintenance equipment. +sun_abvrdmjbnzoaqrmp.jpg The hangar features a vast, gray concrete floor with a grid of yellow lines, surrounded by high arched walls made of metal beams and panels, with scattered orange traffic cones and tables visible, viewed from an elevated angle. +sun_bmcelfeolurhcraf.jpg The interior of the hangar features a white and gray color scheme with a smooth, metallic texture on the roof and walls, viewed from inside at an eye-level perspective, with a ceiling fitted with stage lights and no visible aircraft but set up for an event with round tables covered in gray tablecloths and white chairs against a backdrop of a black curtain. +sun_bsubrlbimytwhvha.jpg The hangar interior is spacious and industrial with a glossy, white floor reflecting overhead lights, gray corrugated metal walls, and visible small aircraft and maintenance equipment at the far end, creating a sense of organized functionality within a well-lit and expansive environment. +sun_bgeacqsulcjqfsxc.jpg The hangar is constructed from light wooden panels with a distinct green roof, seen in a frontal viewpoint against a clear blue sky, with small buildings and a partially visible airplane nearby adding to the open field setting. +sun_buosczwlvrufbfdx.jpg The hangar is a utilitarian structure with a metallic gray texture, viewed from the front with an ultralight aircraft featuring a purple wing housed inside, set against a sparse grass foreground under an open sky. +sun_byhiwakpoofkslvz.jpg A green-roofed open-air hangar with wooden beams is situated on grassy ground, surrounded by dense trees in the background, with machinery visible inside. +sun_booumgexgnpjmwds.jpg A large aircraft hangar, viewed from an elevated angle, features a muted industrial color palette with grey and metallic textures, housing a military aircraft with visible "U.S. AIR FORCE" markings and surrounded by various equipment and machinery against a backdrop of overhead lighting and structural beams. +sun_bfqziyjtvxolrgib.jpg The hangar is a large, pale olive-green corrugated metal structure with an open front, viewed from the ground level among a crowd of people, set against a cloudy sky with visible stage lighting inside. +sun_bkxrockygevhjfpq.jpg The hangar appears as a large, curved structure with a white top and a grid-patterned facade, viewed from a side angle at night, surrounded by trees and illuminated by greenish lights with a visible "Lewis Research Center" sign. +sun_bsxelivrdctnbsuv.jpg The hangar interior features a sleek, metallic silver jet with green insignia, parked on a polished grey floor, viewed from the side against a backdrop of high windows and an industrial truss ceiling, with red velvet ropes indicating restricted access. diff --git a/utils/area/descriptions/sun/generated_descriptions/harbor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/harbor_descriptions.txt new file mode 100644 index 0000000..41a34e7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/harbor_descriptions.txt @@ -0,0 +1,20 @@ +sun_bexpdjxjudwkdnfr.jpg The harbor displays a serene twilight scene with boats moored in calm water reflecting a vibrant purple and pink sky, contrasted by the silhouette of distant city buildings and subtle lighting along the shoreline. +sun_ahwmdsmcpomvprxp.jpg The harbor features rows of white boats with green buoys floating on calm blue waters, viewed from an elevated angle with a prominent white and green lighthouse on a rocky pier, under a partly cloudy sky. +sun_avhqnfifkezslmvl.jpg The harbor features two boats near a concrete dock with a backdrop of a multi-story beige building, where the foreground water is a deep blue-green, and the boats appear white with contrasting darker canopies and railings. +sun_aldpzsluhleirpgr.jpg The harbor is bustling with a variety of white and blue boats moored closely together, with a prominent white multi-deck vessel in the center, set against a backdrop of earthy-toned buildings and a clock tower under a clear blue sky. +sun_awlkxbvweexyybyc.jpg The harbor features colorful buildings in red and pink hues with green shutters, a pebble shoreline, and numerous boats along the waterfront, viewed from an elevated angle with a calm water backdrop. +sun_bfrkyoqknwvaccty.jpg The harbor features a foreground with a cluster of resting sea lions on a concrete dock, surrounded by blue water, while white sailboats with slim masts sit in the background against a clear blue sky, with a distinctive yellow-and-red water tower rising to the left. +sun_balihkyohvcqiypm.jpg The harbor features calm, reflective waters with scattered sailboats, predominantly white with sleek, smooth surfaces, viewed from a frontal angle against a clear, pale blue sky and a distant horizon. +sun_blbdbkvirrjjzknf.jpg The harbor features wooden sailboats with brown masts and white hulls moored on calm, reflective water, surrounded by a backdrop of green hills and scattered, colorful buildings under a cloudy sky. +sun_anyypxgrrofoofmp.jpg The harbor features a collection of sailboats and yachts with white and gray hulls and towering masts, viewed from a slightly elevated angle against a hazy blue sky and indistinct cityscape in the background. +sun_bktzzukymtuuakid.jpg The harbor features a collection of large, elegant sailing ships with tall masts and white rigging, contrasting against the calm turquoise water, framed by a lush green hillside and a cloudy sky backdrop. +sun_atrlvbvbsuqvdgua.jpg Silhouetted sailboats gently float on the serene, reflective water of the harbor at sunset, framed by dark, leafy branches overhead and surrounded by a distant, shadowy tree line. +sun_bxapjxymccujedbl.jpg An overcast sky looms over a bustling harbor where a vivid, orange and black sailboat with prominent branding glides across the water, surrounded by a multitude of smaller boats, in front of a distant cityscape backdrop and an observing crowd on the dock. +sun_acgnubzaaespvfle.jpg A brightly colored passenger boat with red and white stripes and blue accents is docked near a concrete pier and lighthouse structure, surrounded by calm waters and a hazy, pastel-toned horizon. +sun_bugiouqbyrrwqqfj.jpg The harbor features silhouetted sailboats in calm, reflective water with a warm, golden sunset on the horizon, highlighting the distant low-lying hills and an expansive, clear sky. +sun_biosuaxkyaxuamaz.jpg A beige and white motorboat with a canvas cover is moored on calm water beside additional boats, near a bridge and surrounded by green foliage under a clear blue sky. +sun_aazytsvxsjidkupr.jpg The harbor, viewed from an elevated angle, features rows of white and blue boats with tall masts, set against a backdrop of distant green vegetation and a clear sky, with a textured mix of dock walkways and scattered vehicles. +sun_bmgsqrufpalazwal.jpg In the low-resolution image, the harbor features an array of sailboats with tall masts reflecting in the calm water, bordered by a background of trees and buildings bathed in warm, golden light, creating a serene and picturesque setting. +sun_ajwxaepsjkdeymav.jpg A harbor scene shows a side view of several moored fishing boats with bright blue, white, and red hulls, nestled closely together against a wooden pier with a black metal lamppost, set against a calm, slightly hazy seascape under a gray sky. +sun_aytbgzejnpdpbwgo.jpg An aerial view displays a bustling harbor with numerous white boats docked closely together in a serpentine waterway, surrounded by a mix of industrial buildings and residential houses, characterized by a mix of green foliage and concrete pathways. +sun_accuxmobxeywtmqx.jpg The harbor features tall, majestic sailing ships with white sails and intricate rigging, seen from a dockside perspective against a soft gray sky with calm water reflecting the ships and a verdant, tree-covered shore in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/hayfield_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hayfield_descriptions.txt new file mode 100644 index 0000000..579e5e8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hayfield_descriptions.txt @@ -0,0 +1,20 @@ +sun_atvuzjajhjxkwrxh.jpg The hayfield features large, round hay bales scattered across a sunlit, dry, yellowish-brown field with a backdrop of greenery and trees under a clear sky. +sun_bvostcxxrlbpquip.jpg The hayfield features an expansive view of golden-brown, textured grass with scattered rounded hay bales, set against a hazy backdrop of distant trees and a white farmhouse, all partially obscured by a simple wooden fence in the foreground. +sun_ahzqpgzsuzihssra.jpg A sunlit hayfield stretches under a clear blue sky, dotted with scattered cloud formations, featuring neatly arranged green grass interrupted by evenly spaced, rectangular hay bales, with a line of dark trees bordering the horizon. +sun_bpwlayldzwvlpvgm.jpg A vibrant green hayfield stretches horizontally under a pale sky, with neatly arranged rectangular bales scattered across the middle ground, backed by a distant line of dark tree silhouettes. +sun_bnlzfdydpikkvobh.jpg The hayfield features three large, cylindrical hay bales with a rough, straw-like texture and golden-brown color, set against a lush green grass field and a distant backdrop of leafless trees and a hazy, rolling hill under a clear sky. +sun_abjedcbmdfyudtzj.jpg The hayfield, viewed from slightly above, displays a rich golden-brown texture with numerous large, round hay bales scattered across the undulating terrain, set against a backdrop of dense, lush green trees and a cloudy sky. +sun_axlethbmlwouoctw.jpg The hayfield is a sprawling vista of light green grass dotted with cylindrical hay bales, set beneath a partly cloudy sky and framed by distant rolling mountains. +sun_afgyyjqrotuxyaxm.jpg Golden hay bales are scattered across a vast, flat field of stubbly straw under a clear blue sky, with a distant tree line marking the horizon. +sun_aqipzdvzujqspizw.jpg Golden-brown cylindrical hay bales are scattered across a sunlit field with a flat perspective, flanked by distant green tree lines under a partly cloudy sky. +sun_apydnrhksonwsfyo.jpg The hayfield features a golden-yellow expanse with a textured, neatly mowed surface dotted with evenly spaced, cylindrical hay bales, set against a backdrop of rolling green hills and sparse trees under a clear blue sky. +sun_awurtztnvpttzars.jpg The hayfield features a golden yellow hue with a coarse texture, displaying numerous cylindrical hay bales scattered across the rolling landscape beneath a cloudy sky, with a patchwork of distant fields creating a layered background effect. +sun_avhnjcuvznrknloa.jpg The hayfield consists of golden-brown round hay bales scattered across a flat, expansive landscape under a bright blue sky dotted with fluffy clouds, revealing a vast, open, and serene agricultural setting. +sun_akfrrcdwsdqfpphn.jpg The hayfield appears in a golden-brown hue with a textured surface of evenly spaced, cylindrical hay bales, set against a distant background of scattered trees and small houses under a partly cloudy sky. +sun_aukvejrnjzibwonp.jpg Golden-brown cylindrical hay bales are scattered across a sunlit field, viewed from a ground-level perspective with a backdrop of distant trees and a clear blue sky. +sun_agwjmsswodzxvwax.jpg The hayfield features a pale golden color with a textured, striped pattern due to mown rows, viewed from an elevated angle with large round bales scattered across the landscape, surrounded by verdant trees and distant hills under a cloudy sky. +sun_aitcbsdmctwkfacp.jpg The hayfield displays a golden-brown color with closely packed cylindrical hay bales scattered across a slightly sloped terrain, viewed from a low angle; the sky is clear with some clouds, adding depth to the expansive rural landscape. +sun_audkzxdeuemhjbpe.jpg Golden hay bales dot a sunlit, textured field, viewed from a slight elevation with a distant treeline and a tractor set against rolling hills in the far background. +sun_bumtffrvlpoioaxg.jpg The image depicts a lush green hayfield dotted with scattered cylindrical hay bales, set against a backdrop of dense, partially barren forested hills under an overcast sky, with dried branches visible in the foreground. +sun_bnhzaziwnmimjvxd.jpg The hayfield features scattered round hay bales with a light brown, coarse texture against a muted green grass backdrop, observed from a slightly elevated viewpoint, under an overcast sky with a distant tree line framing the scene. +sun_bnpdnhywqbopimvv.jpg The hayfield features golden-brown bales scattered across a sunlit, textured field with a slight downhill slope, set against a backdrop of a distant tree line and rolling hills under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/heliport_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/heliport_descriptions.txt new file mode 100644 index 0000000..c9aa17c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/heliport_descriptions.txt @@ -0,0 +1,20 @@ +sun_acbflbtwhuioysjn.jpg The heliport is a flat, expansive, gray concrete surface with faded markings and is surrounded by urban buildings and trees, prominently featuring a small dark blue and white helicopter in the center. +sun_agkrxasvdezwalhk.jpg The heliport area features a concrete surface with a smooth texture visible beneath a blue helicopter with black rotor blades, viewed from a side angle, on a sunny day with a grassy field and hills in the background. +sun_abikmbieuyfjhaqn.jpg A dimly-lit indoor heliport features a large, open industrial space with a black helicopter in the foreground, accentuated by a stark red overhead light, surrounded by several yellow utility vehicles against a backdrop of structural beams and metallic surfaces. +sun_azimktkzxuncsrqi.jpg The light blue helicopter with a sleek, aerodynamic design is captured in a side-front view, parked on a grassy field with bare trees and a blurred cityscape in the background, featuring distinctive glass windows and rotor blades. +sun_arqtryvnrzxmyiym.jpg Aerial view of multiple heliports marked with circular yellow lines on a large gray tarmac, dotted with various helicopters, surrounded by industrial buildings against a hazy urban skyline. +sun_azjljcrmqlmawtbm.jpg The heliport surface appears as a smooth, dark tarmac surrounded by a grassy area, situated in front of large industrial hangars marked by light blue corrugated textures, with the helicopter's polished blue exterior featuring red and white markings, visible from a side angle. +sun_ayrysrglugbcgjbh.jpg The heliport consists of a grassy field with a light-colored helicopter featuring blue stripes resting on it, surrounded by an open area with a large cylindrical structure and blue sky in the background. +sun_admtghujsemkqsfo.jpg The heliport is not directly visible, but in the foreground, there is a small blue helicopter with skids, parked on an asphalt surface with open plains and distant mountains under a clear blue sky in the background. +sun_aiezcuylgnnrseoz.jpg The heliport features a wet, reflective surface with a yellow-bordered circle on an overcast day, where a blue and white helicopter is parked prominently in the foreground, accompanied by another helicopter in the background, a red windsock, and a distant grey shoreline visible. +sun_agrjebdfoyttpnap.jpg A small gray helicopter is parked on a yellow platform in an open-air heliport with a clear blue sky, surrounded by a sparse, distant tree line and a yellow towing vehicle at the head. +sun_ajueckkjftyqavao.jpg A dark blue and white helicopter with a red stripe is landed on a grassy field under a cloudy sky with personnel attending to it nearby. +sun_akiignxexkthgout.jpg A red helicopter with a metallic texture is viewed from a slightly elevated side angle inside a hangar, with a distant blue helicopter visible outside and a person standing near the helicopter's skids. +sun_agqdfqyfxmmktsxg.jpg The blue and white helicopter with red accents sits on a circular heliport marked by yellow lines, surrounded by a flat, gray concrete surface, with a cloudy sky and airport in the background. +sun_ahwjnogtyeizhast.jpg A white helicopter with red accents and a blue nose is parked on a concrete helipad marked with a yellow circle, set against a backdrop of white and gray industrial buildings and sparse trees visible in a partially cloudy sky. +sun_awentnobehmvaxkp.jpg The heliport is a light gray circular pad with a yellow "H" at its center, set on a flat concrete surface surrounded by a grassy area with fencing visible in the distance, while a helicopter with a red, white, and blue color scheme is positioned prominently in the scene. +sun_afxbznrgvjjrrvos.jpg The heliport features a spacious interior with a glossy concrete floor, housing two helicopters—one yellow with lettering and the other dark blue marked "POLICE"—under a high industrial ceiling with overhead lighting, creating a warm, illuminated atmosphere. +sun_aeawvdeavvbuypmm.jpg The heliport features a gray landing pad with a marked circle, situated on a rooftop with a backdrop of industrial buildings and distant snow-capped mountains, highlighted by two red and white helicopters with medical insignia, viewed from a ground-level perspective. +sun_acjardnwvgzooggg.jpg An olive-green military helicopter with red cross markings is parked on a simple square concrete heliport, framed by a yellow marking, set against the backdrop of a beige hospital building under a clear blue sky. +sun_afnphgfkqcdpjesy.jpg The heliport features a maroon helicopter with visible white text on its side, parked on a gray concrete surface, accompanied by distant industrial structures under an overcast sky. +sun_absofqsdekgkznlo.jpg The heliport features a blue helicopter with red and white accents hovering above a grassy field in front of a white building with large windows, set against a backdrop of rolling hills under a partly cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/herb_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/herb_garden_descriptions.txt new file mode 100644 index 0000000..b38579f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/herb_garden_descriptions.txt @@ -0,0 +1,20 @@ +sun_bwyivvbyecyrnvyu.jpg The herb garden features a mix of vibrant green and purple foliage with clusters of yellow flowers, arranged around a central bird bath, surrounded by mulched earth contrasting with the lush green grass in the background. +sun_bsjfefkpdkkrzbmx.jpg The herb garden consists of a dense cluster of light to dark green leaves with a slightly ruffled texture, seen from a low angle against a background of soil and sparse brown foliage, showcasing distinctive, serrated leaf edges. +sun_blfaqttqdjauvucl.jpg In the image, a vibrant green herb garden with distinct varying leaf textures appears from an overhead angle, bordered by concrete slabs and accompanied by a red clay pot on the right amidst a patchwork of earthy soil and grass. +sun_begaxytvbrlknjux.jpg A rectangular terracotta planter filled with dark soil contains four small, green, leafy herb clusters, viewed from above on a brick ledge, with a grassy yard and evergreen shrub in the background. +sun_bvrabtferpebbxaz.jpg A sparse patch of soil with visible small green herbs and scattered stones is surrounded by lush grass and tall leafy plants at the boundary, viewed from above. +sun_bjcfczqkmlcuwggh.jpg The herb garden features vibrant green foliage with varied leaf textures, viewed from a ground-level perspective along a curving dirt path, surrounded by lush greenery and trees, with signage marking different herb sections. +sun_bvztmelvkabcfrda.jpg The herb garden features a diverse array of green foliage with varying textures, including bushy rosemary and delicate basil, set against a rustic wooden fence and a vibrant background of red flowers in a distant field. +sun_bgzwzhdhtxdbnpdl.jpg The raised herb garden features fresh green leaves with a wooden frame on stilts, viewed from a side angle amidst a grassy backyard and several people standing nearby, with leafy trees visible in the background. +sun_bmbkzguvlvfkbwlh.jpg The low-resolution image shows two terracotta pots filled with various herbs such as parsley, chives, and oregano, featuring lush green leaves with a slightly textured and bushy appearance, viewed from above on a wooden deck with a blurry background of vertical wooden railing slats. +sun_bluuotjyntxdvfxp.jpg The herb garden features lush green foliage with varied textures, a white birdbath centrally placed, and contrasting purple flowers, set against a grassy background with distinct bordering stones. +sun_bobwvogdzmcrkdlo.jpg The herb garden in the image appears lush and vibrant with varying shades of green foliage and soft textures, viewed from a slightly elevated angle, surrounded by dense trees and featuring distinguishable elements such as a garden statue, birdhouse, and watering can. +sun_biiyttgbsgphougg.jpg The herb garden features a row of young, light green plants with slender stems supported by sticks, planted in dark brown soil along a brick wall, surrounded by lush green grass and garden tools on a slightly overcast day. +sun_bcqwyfnbyjflbigy.jpg The herb garden appears as a series of small, circular plots with lush green foliage, surrounded by a darker, damp soil; viewed from eye-level with a distant, overcast and wide open agricultural background, and each plot is marked with small white signs, adding a structured and organized appearance. +sun_boanfldvnpwctsjp.jpg The herb garden features a variety of lush green plants with distinct leaf shapes and shades, set against a backdrop of a metal wire fence and grassy yard, with a mulched soil bed that provides a contrasting brown texture beneath the collection of herbs. +sun_bjbptcqnsvafsrsl.jpg A small herb garden with green, bushy plants is surrounded by a light gray wooden fence with graffiti, featuring sparse dry branches, a yellow flowering plant, a crutch leaning diagonally, and an orange saucer on dark brown soil, viewed from a slightly elevated angle. +sun_bmuxzdjvjhhjkaqv.jpg The herb garden features vibrant green and purple-leaved plants with varied textures, viewed from a low angle alongside a stone path with a light-colored stone structure, set against a backdrop of beige brick walls and wooden trellises. +sun_bmjgjobwkhlhigzx.jpg The herb garden, viewed from above, displays rows of verdant green plants interspaced with light brown, straw-covered paths, set against a lush grass backdrop with a bright blue bucket containing green leaves in the foreground. +sun_bfjfuddzfboarscv.jpg A lush herb garden with vibrant green foliage and dense planting is seen from a side view, enclosed in raised wooden beds with vertical wooden supports and trellises, set against a backdrop of a wooden pergola and a forested area, with wood chip pathways enhancing the natural texture. +sun_beumszouksnprjbc.jpg The herb garden appears lush and vibrant with varying shades of green, featuring distinct rectangular raised beds filled with densely packed herbs, set against a wooden fence background, with patches of grass and a few taller plants interspersed throughout. +sun_bbixvvfntsvjtihw.jpg A wooden raised garden bed with a grid structure contains dark soil with small plant markers, set against a lush green lawn with a chain-link fence and vibrant garden plants in the background, viewed from a slightly elevated side angle, with a dog walking in the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions/highway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/highway_descriptions.txt new file mode 100644 index 0000000..ecd25f4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/highway_descriptions.txt @@ -0,0 +1,20 @@ +sun_auxwmvmzeacezuxp.jpg The image features a wide multi-lane highway with a smooth gray asphalt surface, viewed from a slightly elevated perspective, flanked by a concrete overpass and traffic signage, set against a backdrop of sparse, distant trees and a bright blue sky. +sun_arhnjensisuajaog.jpg The highway appears gray and snow-dusted with a slightly elevated rear viewpoint, showing dense traffic of vehicles including colorful tail lights on the left and a snow-covered, empty lane on the right, against a backdrop of overcast sky and snow-blanketed trees. +sun_bqynxpovjqjgagth.jpg The highway appears as a smooth, black asphalt road with white lane markings, viewed from a central, low-angle perspective, surrounded by sparse vegetation and distant buildings under a clear blue sky. +sun_bhdhkaesioauyvpi.jpg The highway is a wide, smooth gray pavement viewed from a driver's perspective with white lane markings, overhead green and yellow directional signs, and bordered by concrete barriers and utility poles under an overcast sky. +sun_aprmmsxgyvugvdyk.jpg The highway features a gray and slightly textured asphalt surface with a yellow lane marker, viewed from a driver's perspective, flanked by a grassy median and bordered by a line of green trees under a blue sky with scattered clouds. +sun_atqqvwtvgtkafvjc.jpg The highway is a broad, multi-lane road with a smooth, gray asphalt surface and faint white lane markings, viewed from a straight-on perspective, surrounded by greenery and sparse trees on the sides under a clear blue sky, with vehicles of various colors spread across the lanes. +sun_ahzbishmbqbogwvn.jpg The highway is a broad, smooth asphalt road with well-marked lanes and a central divider, viewed from an elevated angle, flanked by urban buildings and greenery on one side and a vibrant roundabout with manicured plants and a distinctive sculpture on the other. +sun_aaklbtersirgieki.jpg The highway appears gray with a smooth texture, viewed from a low angle, surrounded by tall city skyscrapers in the background, and features multiple lanes with visible traffic and roadside barriers. +sun_amqbqldgrwnwuunc.jpg A straight highway stretches into the distance with a dark gray textured surface, viewed from a ground-level perspective, surrounded by a suburban environment with scattered buildings and streetlights, under a partly cloudy blue sky. +sun_aehptyqwdgmjyaqf.jpg The highway appears to have a smooth, dark gray surface with white lane markings, viewed from a driver's perspective, surrounded by trees with autumn foliage under a clear blue sky. +sun_ajcdjtgkqzuynhmw.jpg The highway, viewed from a direct head-on perspective, features a smooth, dark asphalt surface with distinct white dashed lane markings, flanked by grassy embankments with sparse shrubs; a clear blue sky forms the backdrop above scattered road signs. +sun_amomlevnxthooucp.jpg The highway appears in a straight, receding perspective with a light brown, slightly textured surface, bordered by a metal guardrail on the right, a road sign indicating "I-70 ENDS AT I-695" beside lush green foliage, and vehicles in the background driving under a partly cloudy blue sky. +sun_akfhcpovtfupdayq.jpg The highway appears as a smooth, light gray surface with subtle dark markings, viewed from a straight-ahead perspective with distant green hills and a slightly hazy blue sky forming the background, featuring a visible blue road sign and scattered vehicles in the distance. +sun_aiwkvghjxwfkiwuy.jpg A straight highway stretches into the distance with a dark gray asphalt surface contrasting against the vivid red earth on both sides, bordered by sparse green vegetation under a vast blue sky dotted with fluffy white clouds, captured from a centered, eye-level viewpoint. +sun_bsixzkfeuvglcwqt.jpg The highway appears grey with a smooth asphalt texture, viewed from a driver’s perspective with visible road markings, flanked by orange construction cones and signs, set against a backdrop of green fields and a cloudy sky. +sun_bpdgzhvhggwffozg.jpg The low-resolution image shows a straight, dark asphalt highway with white lane markings, captured from a driver's viewpoint, under a clear blue sky with a beige concrete overpass and a green road sign, surrounded by dry, sparse vegetation. +sun_axufrfswrbvhejmi.jpg The highway in the image appears in a warm gray shade with a textured surface, viewed from an elevated angle showing multiple lanes filled with various vehicles, bordered by a grassy landscape and signage indicating exits, under clear daylight conditions. +sun_bqmzochgeuteqbhb.jpg The highway appears as a smooth gray surface with white lane markings, viewed from a straight, low-angle perspective, flanked by rolling hills and autumnal foliage, under a partly cloudy sky with distant mountainous terrain visible in the background. +sun_adwjtmkipixhmlxq.jpg The highway is a pale, grayish-brown with a smooth texture, viewed from a slight elevation with an overpass ahead and sparse greenery on the sides, featuring light traffic and overcast skies in the background. +sun_ahtofdcxqibektxf.jpg The highway is a light gray, textured surface with a central lane marking viewed from a frontal perspective, flanked by metal guardrails and bordered by leafless trees against a backdrop of hazy mountains under a clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/hill_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hill_descriptions.txt new file mode 100644 index 0000000..542bd14 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hill_descriptions.txt @@ -0,0 +1,20 @@ +sun_agevvxyaoknnwbyn.jpg The image depicts a distant, dark green hill with a smooth texture, viewed from a low angle, under a sky populated with fluffy, white clouds against a background of dry, golden-brown terrain. +sun_aupznmbnizndowqt.jpg A gently sloping path with patches of sunlight creates a mosaic of greens and browns, flanked by dense clusters of trees, merges seamlessly into a distant view of a sprawling landscape under a clear, blue sky, framed by leafy branches above. +sun_busdzssttikrlksn.jpg The hill appears densely covered with a mix of vibrant, pastel-colored houses under a bright blue sky, topped with a notable white cylindrical tower surrounded by sparse greenery, against a backdrop of a waving American flag. +sun_apnjilhakjfttgdc.jpg The hill is lush and green with dense vegetation, viewed from a low angle showing a gentle slope leading towards higher elevations, surrounded by vibrant wildflowers and under a partly cloudy sky. +sun_aozofuvlfchjcnoj.jpg The hill is covered in patches of green and brown with rugged textures, seen from an elevated, distant viewpoint amidst rolling landscape with scattered trees and fields in a mountainous backdrop. +sun_aedjfgkztzksgrih.jpg The image displays a gently sloping hill covered in vibrant yellow flowers with a solitary lush green tree at the crest, set against a clear blue sky with sparse white clouds. +sun_artfrfdsrpiiyrqs.jpg The gentle, green hill with a smooth, uniform texture is viewed from a frontal angle, set against a cloudy blue sky with a strip of brown grass at the base. +sun_acdcdyslshmuqkkc.jpg The hill is covered with lush green grass and scattered coniferous trees, gently sloping under a clear blue sky with distant rugged mountain peaks in the background and a few cattle grazing in the foreground near a wooden fence. +sun_atuhrcjawijfzvye.jpg The hill features a lush green texture with varying shades of foliage, viewed from a low angle amidst a mosaic of farmland patches and dotted trees, with a distant horizon of densely forested slopes under a clear blue sky. +sun_atdwwnypzsjvylfh.jpg The hill appears as a smooth, lush green mound with a slightly rounded top, set against a backdrop of a cloudy sky, surrounded by distant trees that form a dark green border at the base, contrasting with the brighter greens of an open field in the foreground. +sun_bveviqphrvmhusav.jpg The hill features a blend of earthy brown tones and rough textures, viewed from a low angle with sparse vegetation and clear rocks in the foreground, set against a backdrop of misty greenery and scattered trees. +sun_aibbtuglzvqmkpdj.jpg The hill appears covered in lush green vegetation with patches of bare earth, viewed from a gentle slope, surrounded by dense coniferous trees and under a cloudy sky. +sun_bultepjjcxccsdpi.jpg The hill appears as a prominent, rounded mound with a smooth, earthy texture in a muted brown color, set against an overcast sky, with sparse vegetation at its base and flat grassy terrain in the foreground. +sun_adoksflhblzxebsy.jpg The hill is covered in dense, dark green coniferous trees with areas of exposed brownish earth, nestled among a backdrop of wider forested slopes under a clear blue sky. +sun_aeynxwuzfvvlkiie.jpg The hill is a mix of earthy brown and green with a rugged, uneven texture, viewed from a low-oblique angle against a clear blue sky, featuring scattered patches of vegetation and an expansive flat terrain in the foreground. +sun_bhnoejufdhniqltx.jpg The hill is covered with patchy green grass and areas of exposed brown soil, seen from a slight upward angle with a clear sky background, and features terraced land and weathered erosion patterns on its surface. +sun_acaujgrxpdwijcpf.jpg The hill in the image appears lush and green with dense tree coverage, seen from a side angle, transitioning into darker treetops and a cloudy sky in the background, featuring a distinct flat section at the top near the left side. +sun_aeqradarsjammmwv.jpg The hill appears dusty brown with scattered patches of green vegetation, viewed from a slightly elevated perspective against a backdrop of blue sky with fluffy white clouds, and it distinctly rises from a flat, open grassland. +sun_aexworlhpltmimnr.jpg The hill features undulating rows of green and golden vegetation, suggesting vineyard cultivation, viewed from a gentle rise with a small cluster of tall, dark trees silhouetted against a softly clouded sky in the distance. +sun_akzchsvqggnkssrf.jpg The hill in the foreground appears light brown and sandy with sparse green pine trees, viewed from a slight elevation against a backdrop of a serene blue lake and a forested, darker hill under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/home_office_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/home_office_descriptions.txt new file mode 100644 index 0000000..562f4d2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/home_office_descriptions.txt @@ -0,0 +1,20 @@ +sun_bwrnbzuttwpwlllo.jpg The home office features a cluttered wooden L-shaped desk seen from a diagonal angle, with a black computer monitor, grey office chair, stacks of papers, boxes, a printer, and a few books in front of a plain off-white wall. +sun_bjiquksjqtfiekli.jpg The home office features rich brown wooden furniture with a smooth, polished texture viewed from the doorway, highlighted by a backdrop of olive green walls and built-in shelves adorned with books and decor, with a distinctive large rug covering the wooden floor. +sun_bbstobpxarvakeev.jpg The home office features light wooden flooring, a central black desk with a computer and chair, situated by a window that casts natural light across the space, with bookshelves, artwork, and storage boxes lining the white walls of the room. +sun_beqfbpngrikhaeks.jpg A home office corner features two large flat-screen monitors, predominantly displaying digital content against a white and wood-textured desk, with various office supplies, a keyboard, and a mouse scattered amid multiple electronic components against a plain white wall backdrop. +sun_butidsxedlgzmlro.jpg The home office features a compact, off-white desk cluttered with colorful notes and a corkboard, positioned under a softly glowing lamp with closed blinds filtering daylight through a window, surrounded by wooden flooring and bookshelves filled with books and files, creating a cozy, personalized workspace. +sun_bfmlgjowqvpmgesw.jpg The home office features a wooden desk with a small, black monitor and framed photographs, surrounded by shelves filled with books and neatly stacked papers, while the striped chair contrasts the tidy arrangement in the room. +sun_bdspfkkbmlqyzdkk.jpg A home office with beige carpet features a cluttered wooden desk topped with papers, a curved desk lamp, and a computer, surrounded by a dark cushioned office chair, a fax machine, and a full wall-to-ceiling wooden bookshelf packed with books, adjacent to a brown sofa. +sun_bvfbawyvodmhesdv.jpg The home office features a wooden desk with three computer monitors displaying similar screensavers, set against a warm-toned wall with framed certificates, a tall silver and black computer tower on a shelf, and a printer positioned to the side. +sun_bzdmcumgpzknppfk.jpg The home office features three CRT monitors on a long wooden desk with a white surface, surrounded by scattered papers and electronic devices, all placed against a white wall adorned with two shelves holding books, small speakers, and decorative items, including framed photos and green accents, with visible wooden flooring. +sun_bfmibkwyopsuuiiz.jpg The home office features a circular dark wood table flanked by black leather chairs on a grey carpet, surrounded by bookshelves filled with colorful books against a beige and white wall, with a standing lamp and a stack of black filing cabinets in the corner. +sun_brrvwvpxpuzhzmsr.jpg The home office features a dark wooden L-shaped desk positioned against a light beige corner, with a flat screen monitor, keyboard, and small framed photographs, and is complemented by a sleek silver framed wall clock above and wooden flooring below. +sun_blewglskvuuflyvy.jpg A home office with a dark wooden desk is shown, featuring a keyboard and mouse, a black mug, and a newspaper in front of a large window with wooden frames overlooking a lush green garden; a potted plant and a lamp add decorative elements on the desk while a monitor is mounted on an adjustable arm. +sun_biqtmpypgwgktgab.jpg The home office features a wooden chair with a dark cushion, placed by a sleek black and silver computer desk that supports a monitor and accessories, set against a neutral wall adorned with three minimalist silver clocks, alongside a printer on a compact wooden cabinet with perforated metal drawers on the right, all placed on a polished hardwood floor. +sun_betcevmgaxtlhrqk.jpg The home office features a vintage CRT monitor displaying a nature scene, placed on a dark wooden desk surrounded by scattered office supplies, a printer, and a wooden chair with a blue cushion, all set against a curtained window backdrop. +sun_bhzeowvclcswdwxd.jpg The home office features a wooden desk with a vintage CRT monitor, surrounded by cluttered DVDs and stuffed animals, positioned in a small room with plain white walls, a closed window with blinds, a brown carpet, and an additional television on the floor, viewed from a doorway. +sun_bofuvpdnxtbfmrvp.jpg A home office with a wooden desk featuring a few stationery items in the foreground, a black office chair, a dark blue wall with a whiteboard and calendar, a small wooden filing cabinet with red decorations, and a metal shelving unit containing books and a paper shredder in the background, is lit from a nearby window with white curtains. +sun_avsyiyicfckevvhe.jpg The home office features a rich, dark wooden desk set with paneled detailing positioned centrally on a tiled floor, surrounded by bookshelves filled with books and decorative items, with a small side cabinet in the background under warm, ambient lighting, complemented by neutral-colored walls and a framed artwork. +sun_bopxababztsymrvc.jpg The home office features warm wooden tones with two desks and rolling chairs facing each other, illuminated by soft lighting against a rich red accent wall, and surrounded by extensive bookshelves filled with books along one side of the room. +sun_bjgzilubboicyvcn.jpg The home office features a mid-2000s setup with a wooden corner desk holding an old CRT monitor, a keyboard, and multiple stationery items, surrounded by beige walls adorned with framed artwork and a gray carpet providing a neutral backdrop. +sun_boheixumleqvxmjm.jpg The home office features a warm wooden desk and matching built-in shelving units with glass-paneled cabinets, containing assorted books and decorative items, flanked by dual computer setups, set against smooth hardwood flooring and a softly lit ambient background. diff --git a/utils/area/descriptions/sun/generated_descriptions/hospital_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hospital_descriptions.txt new file mode 100644 index 0000000..bc857af --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hospital_descriptions.txt @@ -0,0 +1,20 @@ +sun_blupcjukytxjobca.jpg The hospital, viewed from the front-left angle, features a multi-story, brown and tan facade with rectangular windows and metal frames, set against a cloudy sky with surrounding greenery. +sun_blfnersifcmzaxqr.jpg The hospital features a pale stone facade with arched windows and twin clock towers, viewed from the ground level with a manicured green lawn and blue directional signs in the foreground against a partly cloudy sky. +sun_bbrczdgobygaswyk.jpg A modern urban hospital with a sleek glass facade and curved windows, viewed from a street-level corner angle, features distinctive translucent blue hues, and is surrounded by city traffic and signage. +sun_biblybvfltwauvna.jpg The hospital is a multi-story building with a white facade featuring linear rows of windows and ventilation panels, viewed from a low angle that highlights several American flags lining the front driveway against a backdrop of lush greenery and a partly cloudy sky. +sun_atnjofsxkwchcazf.jpg The hospital features a classic brick facade with light stone accents and rectangular windows, seen from a street-level angle with neatly trimmed grass and road in the foreground, against a clear blue sky backdrop. +sun_bwlprccmyplpuomd.jpg The hospital features a combination of beige and brown rectangular blocks with vertical lines, seen from a ground-level side angle against a clear blue sky, with an "EMERGENCY" sign above the entrance and a large, structured main building towering in the background. +sun_bgkhpllpuesuyblu.jpg The hospital features a modern architectural design with beige brick walls and glass facades, viewed from an oblique angle, with a backdrop of clear blue skies and surrounding greenery. +sun_bmmeogaavzptqwag.jpg A modern hospital building features a prominent facade with large glass windows framed by beige brick and white concrete, viewed from the ground level with a lush garden foreground and a clear sky backdrop. +sun_buzqxenoifadoovq.jpg The hospital is a low-rise, red brick building with rectangular windows, viewed from a frontal angle, surrounded by an overgrown grassy area, with a partially visible blue sky above. +sun_aqhaomhwbrujfvoq.jpg The hospital features a combination of red brick and white paneling, viewed from the front at street level, with prominent dark horizontal window strips, surrounded by a well-kept lawn and a line of trees in the background. +sun_bgcggqpdvyzmsopb.jpg The hospital features a beige and brown multi-story building with linear architectural patterns, seen from a frontal viewpoint, with distinct red signage on top, a central pathway leading to the entrance, and surrounded by leafy trees and people in the foreground. +sun_bvrnonnuuijrhvhl.jpg The hospital is a large, beige, rectangular building with vertically aligned windows and balconies, viewed from the side amidst a partly cloudy sky and surrounded by a concrete wall and urban road. +sun_aaueqhsqpjpjuhfz.jpg The hospital appears as a large, multi-story white building with a sleek texture, viewed from the front with a clear blue sky and fluffy white clouds in the background, surrounded by a landscaped area with trees and a circular driveway including parked cars. +sun_atagmtoojkghfpnw.jpg The image shows a modern hospital complex characterized by rectangular, grey and white multi-story buildings with large windows, surrounded by well-maintained green lawns and a circular water fountain at the forefront, viewed from an elevated angle with additional buildings and trees in the background. +sun_bnumzmhtdihqvpkb.jpg The hospital building is a multi-story, rectangular structure made of red brick with narrow vertical windows, viewed from a ground-level angle surrounded by a parking lot with several cars and a well-maintained green landscape under a clear blue sky. +sun_bouhociehylyloqv.jpg The hospital features a light pink and beige facade with a multi-story structure, large glass windows reflecting the clear sky, and a landscaped garden with the name "SAUMYA" visible in the green lawn in the foreground. +sun_bnlussxlxrntwsqh.jpg The hospital features a mix of glass and brick materials with a modern design, viewed from an angled frontal perspective with a prominent glass walkway, surrounded by a well-maintained garden and a clear blue sky in the background. +sun_bucuqibiwiiblyia.jpg The hospital features a beige facade with large blue-tinted windows, viewed from the front with a clear sky and sparse trees in the background, and the word "EMERGENCY" prominently displayed in red lettering above the entrance. +sun_ajqyjnibilpdvsbx.jpg The hospital features a mid-century modern design with a combination of red brick and a white facade, seen from an oblique front angle, surrounded by neatly trimmed hedges and trees, with a tiered fountain prominently in the foreground and multiple flags flying, set against a clear blue sky. +sun_bedfklevdrplkedo.jpg The hospital is a modern structure with a facade of light beige and dark blue panels, set amidst an urban environment with surrounding trees and adjacent tall buildings, viewed from a street-level angle. diff --git a/utils/area/descriptions/sun/generated_descriptions/hospital_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hospital_room_descriptions.txt new file mode 100644 index 0000000..a0da4cd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hospital_room_descriptions.txt @@ -0,0 +1,20 @@ +sun_agzrsnecqsiqahht.jpg The hospital room has a modern and clean appearance with cream-colored walls and ceiling tiles, equipped with a neatly made bed in green, surrounded by beige cabinetry and medical equipment, viewed at an angle showing organized shelves and a large anatomical poster on the wall. +sun_agitjjtogdteybqa.jpg The low-resolution image depicts a hospital room with textured grayish-blue tiled walls, a slightly wrinkled beige bed with a chrome and light wood headboard, surrounded by a cluttered environment including a red cabinet, a small table with medical and personal items, and a blue curtain partially visible in the foreground. +sun_bythyzlbhsbgkdwn.jpg A person lies on a white, textured hospital bed with light green bedding and control buttons visible on the side, situated in a clinical environment featuring medical equipment on countertops in the background. +sun_bgzydtljrepggnoz.jpg The hospital room contains an examination table with orange cushioning and blue protective covers, surrounded by beige walls and wooden cabinetry, with visible medical supplies on the counter and a paper-covered wall poster. +sun_axocfzeejunacpdd.jpg The hospital room features a white, slightly rumpled bed under a bright fluorescent light, with a small wooden bedside table and medical outlets on a plain gray wall. +sun_bqvroiqvxudmlcpy.jpg The hospital room, viewed at an angle beside the bed, features a pastel-colored environment with medical equipment displaying bright digital screens, a white hospital bed with a child lying down covered with a pink blanket, and a blue cushioned chair adjacent to a light-green wall with a small shelf. +sun_aicytvfakcnazcpv.jpg The hospital room features a person in a light blue medical gown, holding a newborn wrapped in a patterned blanket, against a backdrop of a blue curtain with a swirling design, suggesting a maternity ward environment. +sun_apfxciafkxrdakxb.jpg The hospital room features a white bed with rumpled sheets, a wooden accent wall with a floral painting, an IV stand beside the bed, and a colorfully-dressed child sitting on the bed, within a warm-toned, softly-lit environment. +sun_airggyscpiedbnbj.jpg A person with light hair lies in a hospital bed with a white pillow and a blue plaid blanket, viewed from the side, in a room with beige curtains and muted medical equipment in the background. +sun_afnemksvmxglzyww.jpg The hospital room features beige walls and a white ceiling with fluorescent lighting, visible from a corner perspective showing medical equipment such as a monitor, a wall-mounted phone, a hand sanitizer dispenser, a sink, and a partially open wooden door within a sterile, organized setting with a bed in the foreground. +sun_arxhnwywnhfsutpm.jpg The hospital room features a mint green and beige floral patterned wallpaper, a centered hospital bed with white sheets positioned towards a sunlit window with vertical blinds and floral curtains, and a warm wooden floor reflecting soft natural light, surrounded by medical equipment and personal items on nearby tables and chairs. +sun_airoatxevdzndhjj.jpg A hospital room features a single beige bed with wooden accents, covered in a white sheet, seen from a side angle against a pale gray wall, accompanied by a framed painting and medical equipment in the background. +sun_aasracuwuovndlhn.jpg The image depicts a hospital room with a predominantly beige and white color scheme featuring a neatly made bed with white linens and wood panel accents, a light source above casting a soft glow, partially drawn multicolored plaid curtains, and white tile ceiling panels, set against a background with wall-mounted medical equipment and cabinets. +sun_bnupnucszsjewvhw.jpg Two healthcare professionals attend to a patient in a hospital bed, surrounded by neutral-colored walls, with the focus on their white uniforms and the patient's patterned gown. +sun_aiuoybkhchztkeve.jpg The hospital room is busy with a group of medical staff in navy scrubs gathered around a patient on a bed under large metallic surgical lights, with shelves of medical supplies and equipment visible in the background. +sun_amgviokarbswhslo.jpg The hospital room features white walls and bedding with a minimalist design, two dark blue reclining chairs aligned beside a bed near a window, and medical equipment subtly integrated into the room, creating a clean and uncluttered environment. +sun_bufylxefaqfueuvl.jpg The hospital room features a light beige curtain with a subtle swirling pattern, a wooden cabinet above a tidy sink with a stack of standard blue hospital gowns in the foreground, and a person in casual attire seated in a wheelchair with extended legs, amidst a clinical setting with medical supplies and an unadorned countertop in the background. +sun_azspyqqmrixcejap.jpg A hospital room with a pastel purple color scheme features a single adjustable bed in disarray, surrounded by medical equipment and personal items on a blue tiled floor, with a woman seated on a cushioned chair, all viewed from a slightly elevated angle. +sun_afijerqxyzzncubt.jpg A nurse in a white uniform tends to a patient in a simple and sparsely furnished hospital room with plain, unadorned gray walls and a small barred window, partially covered by a patterned curtain, with the focal point being a bed covered in white sheets. +sun_arlhtqeknxtzcate.jpg The hospital room features a textured white bed with crumpled sheets, viewed from above, set in a space with a neutral gray wall, a bedside table with a white lamp and phone, and medical equipment including monitors and IV drips affixed to the wall and bedside, creating a clinical environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/hot_spring_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hot_spring_descriptions.txt new file mode 100644 index 0000000..05d0fab --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hot_spring_descriptions.txt @@ -0,0 +1,20 @@ +sun_btcckawippnamzgp.jpg The hot spring features cloudy turquoise water with a rough stone perimeter, where people are seated in relaxed poses, encompassed by natural greenery and shaded areas. +sun_bidrcosfwixqapxb.jpg The hot spring features clear, still water reflecting a misty environment, surrounded by smooth, light-colored stones with lush greenery overhead, viewed from a low angle that places focus on the calm water and natural setting. +sun_bphtinllftzevfpn.jpg The hot spring features deep blue, slightly rippling water with three people partially submerged, bordered by a rocky edge, set against a backdrop of flat, rust-colored terrain under a clear blue sky, with distant mountains and sparse tufts of yellow grass. +sun_bxnhrgjqjqemdrij.jpg The hot spring appears with a serene blue hue and smooth texture, viewed from an elevated angle, nestled in a barren, rocky landscape with steam rising prominently against a backdrop of sparse vegetation and earthy tones. +sun_akvjcglwnudrwtrm.jpg The hot spring appears as a steaming, shallow pool with a rocky texture and light gray coloration, situated amidst lush green grass in the foreground, surrounded by a serene forested landscape and a calm lake in the background. +sun_achdtyhyetjeugrx.jpg The hot spring features a vibrant burst of white and light blue steam and water erupting against a cloudy sky, with a rough, light-colored rocky surface surrounding the base, framed by distant dark hills in the background. +sun_bangxwznfqpugceb.jpg The hot spring is a steamy, shallow, shimmering pool with azure and turquoise hues, surrounded by rugged, sandy terrain and sparse vegetation, set against a vast, flat landscape under a clear blue sky. +sun_bosiagfhrdhnayvm.jpg The hot spring features a pale turquoise hue with a smooth, steamy surface surrounded by a rugged, rocky perimeter, set against a barren, earthy background with subtle traces of orange mineral deposits. +sun_bmtpwnujormnbwbc.jpg A warmly-lit hot spring features bubbling, clear water surrounded by a rocky edge, with an overhead view of a wooden structure and adjacent buildings, illuminated by multicolored lights and a metallic water spout extending into the pool. +sun_btqfwjbhoozewfgq.jpg The hot spring features cascading white water flowing over dark rocks, surrounded by lush green tropical foliage with occasional red flowers, viewed from a slightly elevated angle amidst misty steam. +sun_bmggaalxpfcdhtwb.jpg A misty, blue-tinted hot spring with multiple weathered rocks is set against a natural hillside backdrop, with plants scattered on the stones and gentle, steamy water cascading down. +sun_beepugixfpzpylrv.jpg The hot spring features cascading terraces of mineral deposits in white and rust colors, with billowing steam rising into the overcast sky, surrounded by rocky terrain and sparse vegetation, viewed from a slightly raised wooden platform. +sun_bomucvhaclqgskmi.jpg A pale, steaming pool nestled in a rocky terrain, surrounded by sparse greenery and a backdrop of distant trees against a clear sky, with billowing steam obscuring parts of the rugged environment. +sun_bwmutccuioflhfti.jpg The hot spring features milky turquoise water with steam rising amidst a wooden boardwalk and railing, surrounded by dense green foliage, where several people are partially immersed, enjoying a relaxing view from the water level perspective. +sun_bcilupxslewqgtyw.jpg The hot spring features a series of circular, gently rippling pools with a smooth, light gray surface, surrounded by large, weathered rocks under a misty, steamy atmosphere, creating a tranquil and natural setting. +sun_blxwnlbavscdajlu.jpg A dynamic jet of steaming water erupts forcefully from the ground, surrounded by luminous, golden-hued rocks that reflect the low-angled sunlight, set against a backdrop of a vast, open landscape under a bright blue sky. +sun_bjniqqmevovpigjc.jpg The hot spring features a clear blue water pool with a smooth, light brown, rocky border, viewed from an aerial perspective, surrounded by a sparse grassy and rocky terrain, highlighting its irregular shape and serene appearance. +sun_bzqqcdprlmrwqcts.jpg The hot spring features a milky, yellowish pool with an orange ring, emitting dense white steam under a cloudy sky, surrounded by sparse bushes and a distant treeline. +sun_bcydgnacyufurirh.jpg A bluish circular hot spring with a misty steam cloud rising from its surface is surrounded by a pale, uneven rocky landscape, with a distant tree line and blue sky in the background. +sun_blcjyozpqdyuwjkh.jpg The hot spring displays a milky turquoise hue with a smooth, steamy surface, surrounded by a contrasting white mineral deposit edge, set against a snowy forested landscape in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/hot_tub_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hot_tub_descriptions.txt new file mode 100644 index 0000000..ec3e897 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hot_tub_descriptions.txt @@ -0,0 +1,20 @@ +sun_bbikyhlyrkwmkdyf.jpg The hot tub features a square shape with a textured gray rim and smooth wooden panel sides, viewed from a slightly elevated angle in an outdoor tropical setting with lush plants and a tiled patio, complemented by a bottle of wine, glasses, and a towel on nearby wooden steps. +sun_baxwcbsqqikolkpe.jpg A blue-tinted hot tub with a textured surface is situated on a red wooden deck, surrounded by pale wooden chairs, against the backdrop of a white picket fence with green landscapes beyond. +sun_bkoqarkgeobrmcmi.jpg The hot tub has a tan, ribbed exterior with a dark gray cover partially opened, positioned on a concrete patio beside a grassy area with a white lattice fence in the background and visible plumbing exposed at the front. +sun_bigaunuuscbfizcb.jpg The hot tub is a light gray, square model with a smooth surface, situated on a wooden deck overlooking a vast ocean view, with green railings and a person sitting inside while a blue towel is draped over the edge. +sun_brxyujmrpcrshcti.jpg The hot tub has a light wooden exterior with a smooth, rectangular form, a white rim, gentle ripples on the water surface, and is positioned on an outdoor wooden deck under a covered area surrounded by a chain-link fence with a backdrop of tall, leafy trees. +sun_bbpuuedhhfhsapui.jpg The hot tub is beige with a smooth, squared-off design, viewed from a slightly elevated angle, surrounded by a screened enclosure, and features bubbling water with visible jets. +sun_bjpyplbvatretocj.jpg The hot tub has a closed, dark blue cover with a textured wood panel siding, viewed from a side angle with wooden steps leading up, set against a lattice panel background and situated next to a small structure holding plants. +sun_bsjtcqgxewtzzzbl.jpg The hot tub is square with a white interior and a wooden rim, viewed from an elevated angle on a wooden deck surrounded by a white fence and partially shaded by a large umbrella, set against a backdrop of green foliage. +sun_belzbijfhcggioli.jpg The hot tub, viewed from a front angle, features a polished wooden exterior with a contrasting dark blue interior and is set in a cozy room with wood-paneled walls and large windows overlooking a forested background, accented by yellow rubber ducks and a nearby plant. +sun_bwuhjzozbceilsbe.jpg The hot tub appears round with a smooth, muted teal exterior and a matching cover, set on a concrete platform amidst a landscaped garden with green shrubs and a wooden fence in the background. +sun_bxufnprdsgrpxyvn.jpg The hot tub has a glossy, tiled dark teal and black interior, is viewed at an angle, and is set against a wooden-slatted fence with lush green plants adding contrast to its surroundings. +sun_bakvrrxzhuyoayhy.jpg The hot tub is round with a textured grey exterior and bubbling water, viewed from an elevated angle, set in an outdoor patio area surrounded by potted plants and stone tiles, with yellow flowers in matching textured planters beside rounded grey steps leading into the tub. +sun_bfnrkdhqqhicosvd.jpg The hot tub is blue with a smooth, textured surface, viewed from a slightly elevated angle, and is surrounded by a picket fence with a backdrop of a house and lush greenery. +sun_bqiemjtalygmwtca.jpg The hot tub is square-shaped with a reddish-brown exterior and a white interior, situated on a wooden deck overlooking a beach with a wooden pergola and white lounge chairs nearby, accompanied by a dark blue umbrella. +sun_bzbllddvfiwufkan.jpg The hot tub, viewed from an elevated angle, is encased in rich brown wood with a natural grain, surrounded by lush green foliage accented with colorful flowers, all set on a wooden deck with steps in a garden environment. +sun_bfandvquxevgitdx.jpg The hot tub is an octagonal shape with a light blue and white tile border, situated on a light concrete surface, featuring slightly frothy water and a central stainless steel handrail with a gray brick wall in the background. +sun_bffstvodbsnxmisq.jpg A red hot tub with a smooth, flat surface is situated on a wooden deck next to a log cabin, surrounded by snow-covered trees and illuminated by a warm, outdoor lantern. +sun_bbzaucwhoilmhbhz.jpg The hexagonal hot tub is a light blue and beige with a smooth tile texture, viewed from above, set on a beige concrete patio adjacent to a rectangular pool, surrounded by a multi-story tan building with large windows. +sun_bixdtcisjilpdlnl.jpg The hot tub has a dark wood exterior and a blue interior with bubbling water, viewed from above at a slight angle, surrounded by a wooden deck in a forested environment. +sun_byudnmhiigmhntdu.jpg The image depicts a round, wooden hot tub with a natural, light brown texture, located on an elevated outdoor terrace next to a metal railing, offering a cityscape view under a partly cloudy sky, with metallic stairs leading up to the tub. diff --git a/utils/area/descriptions/sun/generated_descriptions/hotel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hotel_descriptions.txt new file mode 100644 index 0000000..b8e3d5c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hotel_descriptions.txt @@ -0,0 +1,20 @@ +sun_bqamagnhvnzvhasi.jpg The hotel features a distinctive red-brown stone façade with arched windows and ornate detailing, seen from a side angle with city environment elements such as taxis and adjacent modern buildings in the background. +sun_bcverqwzcvoivexe.jpg The hotel features a classic white facade with symmetrical rows of windows, blue awnings at street level, and is captured from a street-level perspective with trees and a statue in the foreground. +sun_bjsijhmgvweykjon.jpg A pink multi-story hotel with white decorative moldings is viewed from a street corner, featuring balconies on each level and surrounded by trees under a clear blue sky. +sun_bwgiqmsowqjaftpn.jpg The hotel features a grandiose facade with warmly lit arched windows and columns, viewed from the front with illuminated water fountains in the foreground set against a dark night sky. +sun_bdkhxdnnnbnotmpx.jpg The hotel features a grand stone archway flanked by warmly lit beige walls, viewed from the front at dusk, with elegant wrought iron gates and a cobblestone pathway leading up to the entrance under a rich blue twilight sky. +sun_aaxlornfqaorlumf.jpg The hotel features a beige stucco facade with contrasting red clay tile roof and stone accents, viewed from an oblique angle with a parked car by the stone fence and a clear sky in the background. +sun_bcztaqjdfvoceqbo.jpg The hotel features beige facades with green-trimmed balconies, viewed from the front, set against a clear sky, with multiple large rectangular windows and a prominent branded sign. +sun_bymotueaupgezlxg.jpg The hotel features a classic architectural style with a light gray facade, white decorative trim, and a distinct rounded corner with columns, viewed from a street-level perspective with a cobblestone road and adjacent historical buildings in the background. +sun_bffbkfrfceqrmhgt.jpg The hotel is a tall, grey high-rise building with a grid of uniformly spaced windows, captured from a low angle showing the main entrance labeled with its name, surrounded by greenery and set against a clear blue sky. +sun_bvliolhywpaqucvi.jpg The hotel is a multi-story red-brick building with white framed windows and a prominent rooftop sign, viewed from a street-level angle against a clear blue sky, featuring a rounded corner entrance and minimal stone detailing. +sun_bkbqwdqlezhxycww.jpg The hotel is a beige brick building with multiple rows of small windows, viewed from a slightly angled perspective showing a prominent fire escape on the side, set against a cloudy sky and surrounded by a sparse urban environment with power lines and a gated entrance. +sun_bigbkvvxdqsgjxgz.jpg The hotel features a tall, rectangular white facade with evenly spaced horizontal and vertical windows, viewed from a slight angle to show two sides, set against a partly cloudy sky with green trees at the base. +sun_axqssckirddeyswc.jpg The hotel features a modern, angular design with a facade of reflective glass panels and a distinctive slanted rooftop, against the backdrop of a clear blue sky, with an adjacent concrete structure partially visible. +sun_bjpwwbvipjdvjdai.jpg The hotel is a tall, multi-story building with a glowing facade and numerous evenly spaced lights along the balconies, set against a dusky blue sky with foliage partially obscuring the lower structure. +sun_buaeruyhlorqjreu.jpg The hotel appears as a light gray, smooth-textured, multi-story building with a rounded corner and uniformly arranged rectangular white-framed windows, set against an urban street backdrop with a few parked cars and overcast skies. +sun_btgarlwiahaqzqew.jpg The hotel features a grand white colonial-style façade with arched windows and ornamental details, viewed directly from the front, set against a background of lush greenery and a circular driveway. +sun_bxisoiuudypjkclq.jpg The hotel features a light beige exterior with green roofs, prominently displaying balconies from a front-facing viewpoint, surrounded by palm trees under a clear blue sky. +sun_aniqdprdgptnmhos.jpg The hotel appears as a tall, rectangular beige building with evenly spaced windows, viewed from a front-center angle, surrounded by lush green trees and a pathway leading to the entrance in a park-like setting. +sun_bfxhewmiygfcsyio.jpg The hotel features a warm beige exterior with vertical rectangular windows, viewed from a street-level corner angle in an urban environment, with a distinctive curved architectural element on the top corner and illuminated signs at the base against a twilight sky. +sun_bjvbvgkfxvfhtpxd.jpg The hotel features a grand neoclassical architecture with a white facade, intricate detailing, and a green patinated copper roof, viewed from a low angle against a backdrop of modern skyscrapers and fluttering national flags in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/hotel_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hotel_room_descriptions.txt new file mode 100644 index 0000000..47ca69b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hotel_room_descriptions.txt @@ -0,0 +1,20 @@ +sun_axidnbycrnuaisox.jpg The hotel room is dimly lit, featuring a bed with a multicolored, patterned comforter and two pillows, a wooden headboard in a neutral-toned setting, with a round wooden table holding a laptop and a blue travel mug in the corner. +sun_bobgxbagrgkzduhy.jpg The hotel room features a multi-colored quilted bedspread with floral patterns, positioned centrally with a view facing a window framed by dark curtains, and includes a small wooden table with a chair, a striped couch on the right, and neutral-toned walls adorned with minimal artwork, all illuminated by warm overhead and lamp lighting, against a textured carpet floor. +sun_bxturactzlvzjgyg.jpg A neatly made hotel bed with white pillows and a textured beige comforter is framed by a light-colored wooden headboard and nightstand, against a warm cream wall adorned with a geometric blue artwork, viewed straight-on. +sun_alincmwgaiedkzws.jpg The hotel room features a bed with a geometric-patterned bedspread in dark shades of blue and red, a wooden divider partially hides a seating area with two dark chairs and a matching table, illuminated by a floor lamp near the curtained window in an otherwise dimly lit, neutral-toned interior. +sun_ammscpcvgaigtmxf.jpg The image shows a hotel room with a traditional layout featuring two dark wooden beds with white linens and navy blue accents, a blue textured accent wall, a nightstand with lamps, and framed artwork on a beige wall. +sun_aifkmcccexdmfmmi.jpg The hotel room features a green accent wall adorned with a floral painting, a gray couch with red pillows, light wood cabinetry, and beige tiled flooring, all viewed from an angle that highlights a basket-like decorative table and partial kitchenette with a ceiling fan overhead. +sun_axxzoqazppfkaqdr.jpg The hotel room features two beds with floral-patterned bedding in muted tones, a wooden nightstand with a lamp between them, all against a beige textured wallpaper with a framed artwork above, viewed from a slightly elevated angle revealing the beds and surrounding decor. +sun_aenyanwjhrycarxf.jpg The hotel room features a beige and brown checkered bedspread with a matching curtain around a sunlit window, complemented by a light wood wardrobe, a simple wooden table with a beige chair, and a contrasting maroon armchair on a blue carpet. +sun_bmlqucsvkgtlwvdn.jpg The hotel room features floral-patterned bedspreads in dark tones, set against a neutral beige wall with framed art, illuminated by a bedside lamp on a small table, with dark carpet and a partially open view into the bathroom area. +sun_aonqjdeafcavlvjx.jpg The hotel room features two neatly made single beds with white sheets and pillows on light brown wooden frames, against a backdrop of a white wall and a large open doorway leading to a bright balcony overlooking a sunlit building, with light-colored tiled flooring and a minimalistic design. +sun_afxacxlkczlheggu.jpg The hotel room features a warm, orange-toned color scheme with two patterned beds, a soft glowing lamp between them, ornate ceiling details, and heavily draped windows, viewed from an angle that highlights the vintage-style furnishings and artwork. +sun_aoglcvrcwfojlnfm.jpg The hotel room features two twin beds with multicolored patterned quilts, set against a light-colored wall with a large window covered partially by colorful floral curtains, and includes a chair and an old-style television on a wooden desk, creating a cozy, dated ambiance. +sun_bkhhavkzsescoddx.jpg Two beds covered in bright, multicolored abstract-patterned bedspreads are positioned against a plain beige wall with a wall-mounted light fixture above, and a small wooden nightstand with a telephone between them, all atop a dark blue carpet. +sun_bdivujeykyewcome.jpg The hotel room features two beds with floral-patterned green bedspreads, a person lying on the right bed, a dark blue curtain, and a wooden headboard, with maroon carpeting and a white wall creating a simple and cozy environment. +sun_atsxryflwlreysrl.jpg The hotel room features a warm yellow and beige color palette with soft textures, offering a view of a neatly arranged bed with a patterned comforter, a cozy seating area with an armchair and sofa, classic wooden furniture, and soft ambient lighting from table lamps, set against a backdrop of lightly colored curtains and framed wall art. +sun_bousaimvjuvifkqz.jpg The hotel room features two beds with colorful striped bedding against pastel pink walls, a white ceiling fan above, and a simple tiled floor, with a window covered by vertical blinds providing soft, diffused light. +sun_bqodatvhtumnuenf.jpg The hotel room features a rustic wooden and wrought iron bed with a wagon wheel headboard, set against a stone wall, characterized by a red and white patchwork quilt and matching pillows, complemented by red lampshades on wooden side tables. +sun_bszvdxfuhivhzcqp.jpg The image shows a hotel room with a patchwork quilt-covered bed, featuring a headboard against a beige wall, accompanied by a small bedside table with a lamp and phone, a wooden dresser with an old-style TV, and a wall-mounted mirror reflecting part of the room. +sun_bkfkjcpbhabtywls.jpg The hotel room features a floral-patterned bedspread in muted colors atop a wooden headboard, a pair of matching lamps with beige shades on wooden nightstands, and a background with white paneled walls accented by a small hanging plant and a compact corner with a coffee maker and mini-fridge. +sun_aoxjzduszoqfzqmo.jpg The hotel room features a single wooden bed with a brown blanket bearing text, situated against a white textured wall with an arched alcove, accompanied by a small nightstand and metal sconce lamp, with luggage on the floor. diff --git a/utils/area/descriptions/sun/generated_descriptions/house_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/house_descriptions.txt new file mode 100644 index 0000000..5d20fdf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/house_descriptions.txt @@ -0,0 +1,20 @@ +sun_aqgdoxymfuejsnfh.jpg The house has a dark green exterior with a reddish-brown gabled roof, viewed from the front-right angle, with large windows and a door, surrounded by lush greenery and bushes against a backdrop of trees under a partly cloudy sky. +sun_bdsilsmlvkflxzxm.jpg This house has a beige wooden exterior with blue trim, seen from the front angle surrounded by lush green trees and a concrete driveway, featuring a small attached porch and a detached blue garage with dual doors. +sun_akyuehyynfuutglc.jpg The image depicts a stone building with dark gray shingles, featuring a symmetrical front view, adorned with multiple windows and flower baskets, situated against a clear blue sky. +sun_bhdpkqbbytjreexm.jpg The house is a light gray cottage with a prominent red door and brick chimney, viewed from the front with a landscaped garden featuring bushes, flowers, and a stone walkway in the foreground. +sun_bvlujnceudsqyglp.jpg The house is a single-story structure with a light gray, vertically paneled exterior and a dark roof, viewed from the front surrounded by tall trees and a paved walkway leading to the entrance. +sun_adcizewwgmoulcik.jpg A small, pale blue, vertical clapboard house with red-trimmed windows and a central entrance is viewed from the front, flanked by green trees and a parked blue car on an overcast street. +sun_bngdiodjfrpablvp.jpg A two-story house with orange brick walls and a dark slate roof, featuring a green front door and white-framed windows, viewed from the front with a surrounding garden and a wooden fence in a suburban setting. +sun_brauitecrqpaewip.jpg The house is a small, white, single-story structure with horizontal siding, a black roof, white awnings over the windows, and a lawn with shrubs, viewed from an angle showing the driveway and side path, accompanied by a tree and lush greenery in the background. +sun_bjrwusslropexehx.jpg The house is a modern two-story structure with a white, smooth facade and brown-tinted windows, viewed from the front-left angle, featuring a flat-roofed carport on one side and a surrounding fence, set against a suburban background with neighboring houses visible. +sun_bjsyuwtjejjcmkvt.jpg The house is a single-story structure with white walls and a dark, pitched roof, viewed from the front, with a neatly trimmed hedge, a green lawn, and a tree-lined environment, and features a black garage door and a large picture window. +sun_bhawfngukizslzsd.jpg A low-resolution image shows a small, green, textured house with a gable roof and front porch, partially obscured by trees with Spanish moss, and a black mailbox with a skull and crossbones design in the foreground. +sun_bdjofnflnlvogafd.jpg The house is a two-story, sky-blue structure with visible peeling paint, square windows, and a small annex, situated on a slightly overgrown plot of land with sparse trees and a fence, viewed from a street perspective. +sun_afejjgypgnszvwza.jpg The house features a gray facade with white trim and a prominent bay window, a gable roof with contrasting brown shingles, viewed from the front with a tree and parked vehicle nearby, set against a lush, wooded backdrop. +sun_bnggspfuhlpbaigf.jpg A small, white, clapboard house with a gable roof features a front staircase leading to a slightly elevated entrance and a garage below, flanked by a barren paved driveway and a sparse garden with pink flowers in an urban neighborhood setting. +sun_bowggmjawovjjpgf.jpg The house has a rustic, natural wood shingle exterior and a curved roof, viewed from the front in a wooded area, with twin arched garage doors and surrounded by trees. +sun_buylswgvglxfrhxh.jpg The image shows a beige, single-story house with a brown roof, viewed from the front, featuring a two-car garage, two skylights, a covered porch with white railings, a bay window, and a grassy yard bordered by a wooden fence, set against a backdrop of trees. +sun_bpdguouiaabywjme.jpg The image depicts a small, rustic brick house with a red metal roof, viewed from the front and slightly to the side, surrounded by lush green trees and a grassy yard, featuring two dark wooden doors, weathered window frames, and a red tractor to the left. +sun_bdqokdsbdqidllun.jpg The image depicts a row of townhouses with a pale grey central unit featuring a peaked roof and multiple front-facing gables, white pillars, and a white picket fence, set against a backdrop of lush green landscaping and a blue sky with scattered clouds. +sun_bgkgzqqcvdhrvkie.jpg The house, viewed from an oblique angle, is constructed of rough-hewn stone with a steep slate roof, surrounded by lush green grass and towering pine trees, with a small porch and chimney adding to its rustic charm. +sun_aknrkjmgylfgdepp.jpg The house features a beige stucco facade with dark wood garage doors, viewed from a street angle amidst a landscaped setting of neatly trimmed hedges and small trees, under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/hunting_lodge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/hunting_lodge_descriptions.txt new file mode 100644 index 0000000..782ed0b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/hunting_lodge_descriptions.txt @@ -0,0 +1,20 @@ +sun_bqniytxolyydrkrl.jpg The hunting lodge features a two-story structure with a muted green roof and matching trim, seen in a frontal view against a backdrop of autumnal foliage, showcasing expansive glass windows framed by wood paneling and flanked by symmetrical balconies. +sun_bqbfscphxhstfkpw.jpg The hunting lodge is a wooden structure with a light brown color and a gabled roof, seen from a frontal viewpoint, featuring a porch with railings and windows, surrounded by sparse trees and set against a mountainous background. +sun_bazdxwiesjsfkduw.jpg The hunting lodge features a log cabin style with a warm, natural wood texture and a green metal roof, viewed from a three-quarters angle, nestled within a dense forest backdrop, with a small balcony and rustic wooden porch distinctively visible. +sun_btnewweowbkpwldb.jpg The hunting lodge is a two-story structure with a brown wooden exterior and a pointed roof, viewed from a frontal angle amidst dense green foliage and tall trees, with a visible upper deck and railings. +sun_btyysbrbpeadxysz.jpg The hunting lodge features a rustic stone and wood exterior with large arched windows, set amidst a forested background with tall pine trees, captured from a slightly elevated angle that highlights its blend with natural surroundings. +sun_blklclqktqhavafv.jpg The hunting lodge is a rustic, brown wooden structure with a gray metal roof, visible from a slightly elevated vantage point, and features a prominent stone chimney and wooden railings, set against a backdrop of lush green trees and clear sky. +sun_bvkwmazcqwqiozbd.jpg The hunting lodge is a single-story structure with a metallic roof and wooden walls, set in a lush green forested backdrop, featuring wide openings on the front, a gravel pathway leading to it, and surrounded by scattered outdoor furniture and a stone fire pit. +sun_bkdeshnqeekulgmf.jpg The hunting lodge features a warm, brown wooden exterior with visible wood grain texture, a triangular roof, and a stone chimney, viewed from a slightly angled perspective with lush trees in the background and a well-maintained grassy area in the foreground. +sun_bqzxerqxkjjxdhak.jpg A rustic wooden hunting lodge, with a green metal roof and large triangular windows, is viewed from the front, situated against a backdrop of bare trees in a snowy landscape, and features a neatly stacked woodpile and benches in the foreground. +sun_bptmutigqmdmshgh.jpg The hunting lodge features a beige exterior with stone accents, a green gabled roof, and is positioned on a grassy field with a wooden carport and truck visible on the left, under a clear blue sky. +sun_bkbffczhbivzdefr.jpg The hunting lodge, viewed from the front at a slightly elevated angle, features a rustic log cabin design with rich brown timber walls, a wrap-around balcony, and a sloped metal roof, set against a backdrop of dense green foliage on a gravel driveway approach. +sun_bttlatqjgkjheijp.jpg A rustic hunting lodge with a wooden facade and a stone foundation, viewed from the front, features a steep triangular roof and large windows set amidst a forested background. +sun_bkkwxxiehaqmwfnd.jpg The hunting lodge features a rustic, log cabin design with brown wooden textures, viewed from the front, nestled in a dense, green forest with a misty background, and showcases a prominent front porch with a dark shingled roof. +sun_brpwjqzoqngvuaal.jpg A rustic wooden hunting lodge with a weathered, brown log exterior and a shingled roof, viewed from the front right angle, is surrounded by sparse trees and greenery on a sloped landscape. +sun_bgkjtyesdzejqcfi.jpg The hunting lodge features a warm, brown wooden exterior with a two-story structure, seen from a slightly elevated side angle, surrounded by tall trees with green foliage, and has a prominent balcony and sloping roof. +sun_bdjqsaaoxvxvgmnf.jpg A rustic wooden hunting lodge with a sloped roof and Canadian flags is nestled amidst dense green forest, viewed from across a rocky riverbank, with a blue and white helicopter nearby enhancing the remote, natural setting. +sun_bybmoadfgtqbvtmf.jpg The hunting lodge is a wood-textured structure with a natural brown color, featuring a prominent, steep gable roof and multiple large windows, viewed from a slightly lower angle amidst a forested, hillside environment with budding greenery and tall trees framing the scene. +sun_auwepcjjjpifubhr.jpg The hunting lodge, visible amidst snow-covered ground and surrounded by tall pine trees, features a rustic wooden structure with a large welcoming sign and a distinct sloping roof, complemented by the dense forest background and scattered logs enhancing its secluded woodland appearance. +sun_btnfukcihjutwbhn.jpg A rustic, weathered wooden structure showcases an extensive display of mounted deer antlers and taxidermy, viewed from a frontal perspective and set against a backdrop of verdant grass. +sun_bawyjptyeqhydskd.jpg The wooden hunting lodge, viewed from the front-left, features rich brown paneling with a stone chimney, large triangular windows, and a green metal roof, set against a sparse landscape with snow-covered ground and pine trees. diff --git a/utils/area/descriptions/sun/generated_descriptions/ice_cream_parlor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ice_cream_parlor_descriptions.txt new file mode 100644 index 0000000..68a7740 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ice_cream_parlor_descriptions.txt @@ -0,0 +1,20 @@ +sun_dvgsdimwpmcgbscv.jpg The ice cream parlor features a warm, inviting interior with a blend of creamy beige and rich burgundy tones, showcasing a glass display counter filled with desserts, a menu board overhead in the background with chalk-style writing, and ceiling lights softly illuminating a modern, cozy setting. +sun_djdqagvgmhlktnyj.jpg The ice cream parlor features a neutral-toned interior with a rustic stone wall backdrop, a front glass counter displaying a variety of ice cream flavors, and staff in white uniforms assisting customers. +sun_devdqflnqwwvodpf.jpg The ice cream parlor features a warm, yellowish interior with a sleek glass display case in the foreground, complemented by round light fixtures hanging above and rows of colorful syrup bottles visible in the background, while a server extends a cone to a customer with an outstretched arm. +sun_dxgtapyhmbidhdeh.jpg The ice cream parlor features a retro theme with red and chrome furniture on a black-and-white checkered floor, a shiny metallic counter at the back with a menu and neon signs, reflecting a nostalgic 1950s diner atmosphere. +sun_digteehylraltfoj.jpg The ice cream parlor features a rustic stone wall backdrop with hanging chalkboard menus, creamy neutral ice cream colors displayed in a glass counter, and staff in white uniforms seen from an oblique angle, contributing to a cozy, artisanal atmosphere. +sun_dzpwxlgjpnapcxoo.jpg The ice cream parlor features a clean, vintage interior with red and white checkered flooring, wooden chairs, and glass display freezers adorned with "Blue Bunny" logos, set against a backdrop of posters, a Coca-Cola machine, and a cozy, diner-like atmosphere. +sun_dnhgrbsvgdlhjohg.jpg The ice cream parlor features vintage-style chrome bar stools, a black and white checkered floor, wooden paneling with a mirror behind the counter, and bright overhead spherical lights, creating a nostalgic atmosphere with patrons sitting and conversing in both booth and counter settings. +sun_dmyvgmaxqbxyaxxs.jpg The ice cream parlor features a sleek display case filled with a variety of colorful ice creams in neat rows, set against a modern interior with a glossy black counter, detailed menu boards, and a warm, inviting atmosphere enhanced by bright overhead lights. +sun_dybikgccnbzjudnf.jpg The ice cream parlor features a vintage interior with a wooden counter, metal stools, floral wallpaper, mirrors, and retro lighting fixtures, viewed from a front angle showing a menu board and cooling equipment on the left. +sun_ddfqfxjbsgnefxnp.jpg This image shows a brightly lit ice cream parlor from the perspective of a glass display freezer filled with various ice cream flavors, each marked by colorful scoops, against a backdrop of stacked waffle cones and a menu board, reflecting a lively and inviting ambiance. +sun_duosewsovgnvfxju.jpg The ice cream parlor features a centrally positioned, wooden, hexagonal counter with decorative plates and an oversized ice cream cone model, surrounded by stools on a polished wooden floor with patterned walls and a high, sloped ceiling, contributing to its vintage ambiance. +sun_djdeitrckcbvpdam.jpg The ice cream parlor features a curved glass display case showcasing a colorful array of textured gelato, with warm ambient lighting and decorative elements like plants and wall ornamentation, and a single child in view adding a lively element to the warmly-toned interior. +sun_dcnvxfmjraaunrjr.jpg A modern ice cream parlor with a clean, white interior, featuring a glass display counter showing colorful ice cream selections, illuminated by warm, recessed ceiling lights and a minimalistic menu above. +sun_duwwnxfgynnbrklk.jpg This ice cream parlor, viewed from the entrance, features curved glass display cases filled with colorful tubs of ice cream, a central counter with a wooden base displaying desserts, and a cozy interior with menu boards, pendant lights, and a warm, inviting color palette highlighted by cream and brown tones. +sun_dihbrrlgqmkesgto.jpg The ice cream parlor features a modern interior with a sleek, cream and dark granite counter parallel to the viewer, overhead yellow lights affixed to metallic beams, a visible menu on the left, and a distinctive wall mural of planets resembling scoops of ice cream in a space-themed background. +sun_dctogqwbvisiyeaj.jpg The ice cream parlor features a vintage, classic interior with red and white striped walls, colorful ice cream posters, a metallic, rounded serving counter with various syrup dispensers, and bright overhead lighting complementing the visible menu boards in a cozy, inviting environment. +sun_drsztryylvjtaltp.jpg The ice cream parlor features a bright, red and white color palette with a glossy texture, a straight-on view of a long counter lined with dessert displays, a prominent neon ice cream sign, and a series of menu boards and hanging lights in the background, creating a vibrant and classic retro atmosphere. +sun_dqqymfcanvppohts.jpg The ice cream parlor features a modern, minimalistic design with a beige and stainless steel color palette, showcasing a glass counter displaying various toppings and flavors, a ceiling with large light panels, and a backdrop of wooden menu boards, all viewed from a front-facing angle with a clean, organized interior. +sun_dfajgjiqiifncwyp.jpg The ice cream parlor features light-colored walls with decorative patterns, a long counter with a glass display, red chairs with matching tables neatly aligned, and the interior is well-lit with fluorescent lighting, with signage visible on the wall behind the counter. +sun_dwhbhqaibbmjydzp.jpg The ice cream parlor features a long, glass-covered counter displaying a variety of colorful ice cream tubs with creamy textures, set against a backdrop of beige walls adorned with large, decorative menu boards and bright signage, viewed from an angled perspective. diff --git a/utils/area/descriptions/sun/generated_descriptions/ice_floe_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ice_floe_descriptions.txt new file mode 100644 index 0000000..7ea66e3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ice_floe_descriptions.txt @@ -0,0 +1,20 @@ +sun_bmsjjeflooecqdtq.jpg The image shows flat, smooth, grayish-white ice floes with irregular edges floating on dark, reflective water, viewed from a slightly elevated angle with a horizon of distant, snow-covered land and a cloudy sky in the background. +sun_asxrxsnaqpfvjkwb.jpg The ice floe is an uneven, textured surface of white and pale blue, viewed from a low angle, scattered across a cold seascape under an overcast sky with a group of people and a boat navigating through. +sun_bbbeszkkkccpekhu.jpg The ice floe appears white with a slightly rough texture, viewed from a distance, surrounded by dark ocean waters under a cloudy sky, with a larger mass slightly elevated at its center. +sun_bqjuovyovmqpjdxv.jpg The ice floe appears white with a smooth yet uneven texture, viewed from an elevated angle that captures a vast expanse of fragmented ice against a backdrop of distant snow-capped mountains under a partly cloudy sky. +sun_acdjfmivpcyvpjdz.jpg From a slightly elevated viewpoint, the pale blue-white ice floes appear as scattered, irregularly shaped patches on the leaden sea, with a ship's bow and bundled-up onlookers in the foreground, set against a backdrop of an expansive, cloudy horizon. +sun_bbpnxmhafoexuvcm.jpg The ice floe appears white with a rough, uneven texture, viewed from a low angle near the shore, against a background of expansive, fragmented ice extending into the horizon under a clear sky. +sun_afbzusdtdjidpcud.jpg The ice floe appears predominantly white with jagged edges and rough textures, viewed from an elevated angle, surrounded by a vast expanse of dark water and additional fragmented ice pieces scattered across the icy landscape. +sun_awhvzvyjjwrezlsn.jpg The ice floe appears predominantly white with a rough, uneven texture, viewed from an overhead angle against a backdrop of dark water, featuring irregularly shaped edges and varying thickness across its surface. +sun_bzayvogardiuufor.jpg Amidst a serene, clear blue expanse of water reflecting the azure sky, the ice floe displays a predominantly white coloration with hints of blue, featuring a rough, uneven texture, surrounded by scattered ice fragments under a backdrop of distant, snow-capped mountain ranges. +sun_bzwjvzodwkljtmkc.jpg A fragmented ice floe with a pale blue and white hue, displaying a rough, crystalline texture, is floating on a calm, reflective body of water with a distant rocky shoreline under a clear sky, surrounded by scattered smaller ice pieces. +sun_aggwrfvtzrykydrp.jpg The ice floes appear white and scattered, with smooth, irregular shapes floating on a grayish-blue ocean background, viewed from a high angle near the side of a ship with red lifeboats in the foreground. +sun_anermqodfamvctxr.jpg A large, flat, snow-covered ice floe with a bright white, rough texture is viewed from the side against a backdrop of dark water, reflecting a deep aqua blue underneath. +sun_bcqzbvyiksbidwlp.jpg The ice floe is a pale blue and white with rough, uneven texture, viewed from above amid scattered similar floes on a dark, cold water surface, with jagged edges and ridges highlighted by the subdued lighting. +sun_acgfoqnolmhonvdm.jpg The ice floe appears as a series of irregular white and pale blue mounds with a rough, textured surface surrounded by shimmering, dark green water, viewed from a slightly elevated angle against a backdrop of additional ice formations and clear sky. +sun_behaxfxeyckiwdhc.jpg The ice floe appears bright white with a smooth, slightly irregular surface, partially submerged in vibrant turquoise water, and populated by numerous penguins, set against a blurred, grayish seascape. +sun_bhveazfmzdizpzvc.jpg The ice floe, viewed from above, is predominantly white with mottled gray-blue patches, featuring a rough, cracked texture with a scattered arrangement of irregular, flat-topped pieces against a backdrop of a vast, open water expanse under a clear blue sky. +sun_bitjircrfkcolorm.jpg The ice floe appears as a large, irregularly shaped white block with a slightly bluish tint and rough texture, set against a backdrop of vast, flat snow-covered ice and distant mountains under a clear sky, with noticeable cracks and dark water channels surrounding it. +sun_bcbknsaedctckzgs.jpg A vast ice floe with a smooth white and blue surface, seen from a slightly elevated angle, is set against a clear sky with a distant snow-covered mountain and scattered people in red jackets. +sun_amnjdtkawzvxhxmu.jpg The ice floe appears as scattered, bright white patches on a dark, reflective blue surface, viewed from an aerial perspective amidst a dramatic, cloudy sky and rugged mountains forming a narrow fjord. +sun_aecwfbhcjvdbiwvp.jpg The ice floe appears as a large, mostly white sheet with rough, uneven edges, lying flat on a calm, greyish blue sea under a clear, light blue sky, surrounded by snow-covered mountains in the background, with smaller chunks of ice scattered nearby. diff --git a/utils/area/descriptions/sun/generated_descriptions/ice_shelf_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ice_shelf_descriptions.txt new file mode 100644 index 0000000..0cd9814 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ice_shelf_descriptions.txt @@ -0,0 +1,20 @@ +sun_beixobjxoeecwdsv.jpg The image shows a towering, jagged ice shelf colored in shades of blue and white, with a textured, rugged surface, viewed from the side against a backdrop of a clear sky, partially shrouded by mist and scattered ice floes in the water below. +sun_aylngkdgecxprkus.jpg The ice shelf appears as a flat, triangular white mass with visible cracks on the surface, viewed from above against a dark ocean backdrop, with a distinct layered structure along the edges. +sun_byecjnymontmwqce.jpg The ice shelf appears bluish-white with a jagged, cracked texture, viewed from a low angle against a mountainous backdrop, with dark rocky sections and subtle reflections on the water surface beneath. +sun_bdljaexxtiaphbmp.jpg The image showcases a jagged, white ice shelf with rough and sharply defined peaks and crevices, viewed from a low-angle perspective against a clear blue sky, highlighting the stark contrast between the bright ice formations and the smooth sky above. +sun_bqovgtdgsgdulxab.jpg The ice shelf is light blue with a jagged, rough texture, viewed from a frontal angle, set against rugged gray mountains and calm, icy waters. +sun_aadbmpmxxatythtm.jpg The ice shelf appears as a massive, vertical white and blue textured formation with rugged, uneven surfaces, viewed from the side against an ocean backdrop with a ship nearby for scale. +sun_bsnrbvziylwznfhw.jpg The ice shelf appears as a massive, stark white cliff with a jagged texture along its edge, viewed from the side against a backdrop of a deep blue ocean extending to a distant horizon under a partly cloudy sky. +sun_bitodgqflfykstrr.jpg The ice shelf showcases a vast, rugged surface of pale blue and white hues with vertical striations, viewed from a low angle across a dark ocean, against a backdrop of overcast sky and dotted with floating ice chunks. +sun_bssiqcjaiiyqmpqg.jpg The ice shelf appears with a bluish-white hue showcasing a rugged, jagged texture, viewed from the front with prominent striations and dark crevices, set against a barren, rocky backdrop with a smooth foreground. +sun_bqtcyewednaaywqs.jpg The ice shelf displays a pale blue and white mottled texture with vertical striations, viewed head-on against a stark, cloudy sky, showcasing jagged, rugged formations with subtle horizontal layering. +sun_aizilbibzgrzbzvi.jpg The ice shelf appears bright white with a rough, jagged texture, viewed from a low angle against a deep blue ocean with a snowy, mountainous backdrop under a pale sky. +sun_anibgfuciqzwhbzs.jpg The ice shelf appears in shades of stark white and pale blue, with a smooth texture under overcast skies, and presents a flat, broad structure with slightly uneven surfaces, contrasting sharply against the dark ocean and gray cloud-filled background. +sun_brpwztmgmcdwbczi.jpg The ice shelf appears as a towering, jagged, and expansive wall of light blue and white ice with a rough and textured surface, captured from a side angle against a backdrop of overcast sky and flat, snow-covered terrain. +sun_bxmllrhuenzpksqq.jpg The ice shelf appears predominantly white with streaks of light blue, featuring a jagged and textured surface viewed from the side, set against a backdrop of snow-capped mountains under a clear blue sky, with a calm, icy body of water in the foreground. +sun_bbyvauvuyzxvkwkm.jpg The ice shelf appears light blue with a slightly rough texture, viewed from the side against a backdrop of calm, misty grey water and distant treetops with reddish-brown foliage. +sun_baopdxjexneuqfvs.jpg The ice shelf appears bright white with hints of pale blue, featuring a jagged texture under a clear blue sky, set against a sharp mountainous backdrop with a vibrant red boat in the foreground. +sun_bhvpbhuefakiaiao.jpg The ice shelf appears as a vast expanse of pale blue and white with a rugged, fractured surface, viewed from a slightly elevated angle with surrounding mountains and forest in the background, and broken ice floating in the adjacent water. +sun_bdipubswapszydgc.jpg An expansive white ice shelf with a rough and jagged texture is seen from a frontal viewpoint, partially submerged in dark water with smaller ice formations nearby, set against a backdrop of distant snow-covered cliffs. +sun_btupyfvdcmfcbomm.jpg The ice shelf appears as a towering, jagged white mass with hints of blue, reflecting in the calm, icy water below under a clear sky with a rocky, cloud-draped mountain backdrop. +sun_bozfhabbirwrbcev.jpg The ice shelf appears as a vast, light blue and white expanse with a rugged, jagged texture stretching towards the misty horizon, set against dark snow-capped mountains and a cloudy sky, framed by a rocky and vegetative foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/ice_skating_rink_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ice_skating_rink_descriptions.txt new file mode 100644 index 0000000..5b11442 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ice_skating_rink_descriptions.txt @@ -0,0 +1,20 @@ +sun_bjvaqlqqrurgcjue.jpg The ice skating rink is smooth and brightly lit, with a pale blue-gray surface reflecting the overhead lights, viewed from an elevated indoor perspective with a partially visible Zamboni in the center and surrounded by mall storefronts and railings. +sun_bqwoagvkvawcjlrt.jpg The ice skating rink features a smooth, white surface surrounded by clear plexiglass boards, seen from an angled, elevated perspective, with hockey players and an American and Canadian flag visible in the background, enhancing the indoor sports arena atmosphere. +sun_bovbbuiyeaeectlq.jpg The ice skating rink, viewed from above, has a smooth white texture and is surrounded by a stone balustrade, with a prominent golden statue centerpiece and a backdrop of tall, modern buildings adorned with numerous colorful international flags. +sun_bvlzzgbvkvwkyayq.jpg The ice skating rink features a smooth, reflective white surface with prominent painted lines, surrounded by clear boards and safety glass, and is observed from an eye-level vantage point with multiple hockey players in motion and a goal in the foreground. +sun_bjabtsahgvosyqjn.jpg The ice skating rink, viewed from a low-angle perspective, features a glossy, reflective ice surface bordered by snow, surrounded by a background of overcast skies and buildings, with a figure in an orange top gliding towards a vanishing point. +sun_bzlaqbcdntsgwswa.jpg The image depicts a dimly lit, rectangular ice skating rink surrounded by low walls and decorative string lights, with a bustling crowd of skaters in various dark-colored winter attire, set against a backdrop of warmly illuminated buildings and trees. +sun_bddszvgperrmfwxz.jpg The indoor ice skating rink has a smooth, pale surface surrounded by white walls and an overhead grid of bright lights, with artificial trees lining the perimeter and skaters wearing casual winter clothing scattered across the scene. +sun_blugpeifvqkxospv.jpg The ice skating rink has a glossy, pale white surface with faint red lines, seen from an interior perspective, surrounded by banners on the walls and ceiling, with soft fluorescent lighting and a pair of skaters in the mid-distance. +sun_btapjwakrvzbhfcu.jpg The ice skating rink features a smooth white surface surrounded by a barrier, set against a backdrop of leafless trees and distant skyscrapers, with numerous people in colorful winter clothing skating across the frozen expanse. +sun_bdyfbrhpistjnkwr.jpg The ice skating rink appears smooth and pale grey with painted blue and red boundary lines, surrounded by a high-ceiling industrial interior featuring steel beams, overhead fluorescent lights, and a back wall decorated with colorful sports-themed posters above glass panels. +sun_azlqqfqmnapvqoze.jpg The ice skating rink features a modern, boxy building with a cream and blue facade, flat roof, and a prominent staircase leading to the entrance, set against a clear blue sky and grassy landscape. +sun_bxxmdoprjqnyrmpw.jpg The ice skating rink features a smooth, light-colored surface illuminated by overhead lights, viewed from a mid-range angle capturing players in motion, surrounded by wooden panels and large windows that create a warm, enclosed indoor atmosphere. +sun_buqxyqokuctxomkt.jpg The ice skating rink appears as a smooth, pale white surface with visible skate marks, viewed from a slightly elevated angle, surrounded by snow-covered trees and mountains under a cloudy sky, featuring three people in winter attire playing hockey. +sun_bueacjiqikfxujls.jpg The ice skating rink is a long, sunlit canal skating path with a smooth, white surface, lined by snow-covered banks, and surrounded by historical buildings and leafless trees under a clear blue sky. +sun_bvwwuqtkqftfnvau.jpg The ice skating rink is characterized by a smooth white surface with red markings, viewed from a slightly elevated angle, surrounded by transparent boards and featuring an American flag and scoreboard in the background. +sun_bcywrsqkjcxhexft.jpg The image depicts a smooth white ice rink with visible hockey game action, flanked by wooden buildings, an ice sculpture behind a line of flags, and children wearing colorful jerseys and helmets. +sun_bhcjyzkqcgjekzfd.jpg The ice skating rink appears smooth and white, viewed from a raised angle with a large arena surrounding it featuring high, dark seating areas and bright, illuminated advertisements and screens overhead, while players in dark and light uniforms skate scattered across the surface. +sun_bwwtynwcjeoaqjsj.jpg From a slightly elevated viewpoint, the ice skating rink appears smooth and white under the diffuse daylight, surrounded by spectators and overlooked by a prominent golden statue with cascading water, and colorful flags accent the upper level. +sun_bdomfndhzlfgqlvx.jpg The ice skating rink has a smooth, light blue surface with red lines, viewed from the corner with a brick wall and clear barriers in the background, showing a skater in dark gear gliding mid-action. +sun_bujeconagemzfdeq.jpg The ice skating rink features a glossy white surface with skaters captured in mid-motion, surrounded by a barrier with advertisements and spectators in the background, under an array of ceiling lights in an indoor setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/iceberg_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/iceberg_descriptions.txt new file mode 100644 index 0000000..a194911 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/iceberg_descriptions.txt @@ -0,0 +1,20 @@ +sun_aqyzrejerejokief.jpg A distant, jagged iceberg appears bright white and icy blue with a rough texture, set against a backdrop of steep, rocky mountains and a partially overcast sky, situated within a calm, grey-green body of water. +sun_aeuhagmltggqbbif.jpg The iceberg appears predominantly bright white and deep blue with a smooth, gleaming surface, viewed from the side showing both its submerged and exposed portions, set against a clear sky and water background that emphasizes its massive, jagged shape. +sun_ajqqcxskwcdkyhrm.jpg The iceberg appears pale blue and predominantly smooth with a few jagged edges, viewed from a frontal perspective against a backdrop of snow-capped mountains and a clear blue sky, reflecting slightly in the calm water. +sun_aransifilqtfwpdj.jpg The iceberg appears bluish-white with a rugged, serrated texture, viewed from the side with an exposed flat base over a dark ocean and a minimal horizon in the background. +sun_asjlovpxjarqgwoq.jpg The iceberg exhibits a pale blue and white color with a smooth texture, viewed from a side angle against a backdrop of a deep blue sky and distant snow-covered mountains, featuring slightly jagged and sloped edges. +sun_asbnusaihryxopbn.jpg The iceberg appears light blue and white with a jagged, uneven texture, positioned at water level with a mountainous, partially snow-covered backdrop under a cloudy sky. +sun_abfbwwwkvsobvbru.jpg The iceberg appears as a large, jagged white mass with subtle blue undertones, viewed from a slightly elevated angle against a gray seascape and sky, with small buildings and rocky terrain in the foreground. +sun_asvfeluyxolutwmm.jpg The iceberg appears predominantly white with subtle blue undertones, featuring a smooth yet slightly rugged texture, viewed from an aerial perspective against a vast dark ocean backdrop, with one side showing a gentle slope into the water. +sun_arhsdffgfobtmwin.jpg The iceberg, viewed from the side, exhibits a bluish-white texture with smooth curves and a few dark streaks, set against a misty ocean background under a pale sky. +sun_akruzbkawohrabqj.jpg The iceberg appears white with a smooth, undulating texture, viewed from the side with a backdrop of blue ocean and distant rocky islands, and is covered in numerous small birds. +sun_ajoaxqrbxbhkfhyr.jpg The iceberg is a smooth, white structure with subtle blue undertones, displaying gentle curves and peaks; it is foregrounded against a reflective, still water surface and a rocky, earthy shoreline. +sun_axcfskyckscdtjqc.jpg A massive, white iceberg with smooth and jagged surfaces is partially submerged in a dark water body under a dawn or dusk sky with pink and purple hues, flanked by smaller ice formations and distant dark landforms. +sun_aryysosahbqjlhyp.jpg The iceberg displays a striking light blue and white coloration with a rugged, striated texture, viewed from a side angle against a deep blue sky and sea, characterized by impressive arches and jagged edges that contrast with the smooth ocean surface. +sun_atvdyagpbomhibrn.jpg A pale blue iceberg with a textured and jagged surface rises prominently against a cloudy sky, surrounded by calm, reflective waters that highlight its irregular shape. +sun_axxsyhixqshwffsl.jpg This iceberg appears predominantly white with smooth, subtly undulating surfaces, viewed from a lateral angle in a calm, expansive body of water, with a steep, snowy coastline and a distant sailing ship in the background. +sun_azuydmbrdhnfgknc.jpg The iceberg is stark white with smooth, undulating surfaces and slight textural ridges, viewed from a frontal angle against a backdrop of clear blue sky and deep blue ocean water. +sun_aeialzylyficklkc.jpg A large iceberg with a light blue hue and smooth, slightly undulating surface is floating on a dark, choppy sea under an overcast sky, with smaller ice formations visible in the background. +sun_aqwubjnrwozilzek.jpg The iceberg appears as a jagged and towering formation with a light blue hue and smooth texture, viewed from the side against a backdrop of calm dark blue sea and a clear sky, with notable sharp peaks and subtle ridges creating a dynamic silhouette. +sun_awjfngapsxfbtfmv.jpg The iceberg is predominantly white with a light blue tint and a rugged, jagged texture, featuring a large natural arch and set against a dark ocean with smaller icebergs scattered on the surface. +sun_apppiycsdldvrrtz.jpg The iceberg appears pale blue with a slightly rough texture, viewed at an angle above water level with calm, reflective water in the background, and it features a flat, elongated shape with birds perched on top. diff --git a/utils/area/descriptions/sun/generated_descriptions/igloo_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/igloo_descriptions.txt new file mode 100644 index 0000000..041a994 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/igloo_descriptions.txt @@ -0,0 +1,20 @@ +sun_awcjosrlrxyoapcd.jpg The igloo appears as a low, rounded structure made of compact, white snow with a small entrance tunnel on the left and is set against a dark, night-time background with subtle shadows enhancing its contours. +sun_awbabjeoybzxkiyj.jpg The igloo appears as a small, slightly irregular mound of compacted white snow with visible block patterns, positioned on a flat icy landscape with a clear, pale blue sky, surrounded by colorful tents and figures dressed in yellow jackets in the background. +sun_aygnjloswbrthwzw.jpg The igloo is white with a rough, uneven texture, viewed from the front with residential houses and patches of melting snow in the background, and features a dome shape with visible lumpiness. +sun_ajnpdkwqwijycidf.jpg The igloo is composed of white, blocky snow bricks with a slight rough texture, viewed from the front and topped with an American flag, set in a snowy field with a fence and a small toy vehicle nearby. +sun_aqxhpxvrmbtdopcq.jpg The igloo appears smooth and translucent white with segmented, block-like textures, viewed frontally with two people crouching inside the dome-shaped entrance, set against a dark indoor environment with a sign above marked "IGLU." +sun_aaxfzwvhpwofkrtp.jpg The igloo, seen from the front, displays a smooth, glowing blue-white texture against a snowy backdrop, with a prominent dark entrance offering a stark contrast. +sun_aosqpztbpdpiawee.jpg The image shows a white, mound-like snow structure resembling a partially constructed igloo, positioned on a snowy field with scattered camping gear around it, against a backdrop of forested hills under a dim, overcast sky. +sun_agqdwlirnbltoaty.jpg The igloo, composed of irregular white snow blocks with a slightly rough texture, is viewed from the front with an arched entrance, contrasting against a snowy ground and sparse vegetation, while a hand extends from the dark interior. +sun_aeilzkonhzckvpgj.jpg The igloo is white with a blocky texture, viewed from the front in a nighttime setting, featuring a partially open entrance and surrounded by snow with two people standing nearby. +sun_arukyumfqvtyqezn.jpg The igloo appears smooth and white with a dome-shaped structure, viewed from the front against a vast snowy landscape with clear blue skies, featuring transparent ice sculptures nearby as a distinctive element. +sun_aiitlcgcousgfpzd.jpg A white, snow-textured structure resembling an igloo with a smooth dome and several carved openings is positioned in a snowy landscape surrounded by trees and people, indicating a playful or recreational environment. +sun_ajzzhwukjdfdhsaz.jpg The igloo is white with a lumpy snow texture, viewed from the front with a person kneeling inside, surrounded by a snowy field with some grassy patches and distant bare trees in the background. +sun_akaulbwcbadztatu.jpg The igloo is stark white with a smooth, rounded dome shape, viewed from a slightly elevated angle, standing amidst a snowy landscape with sparse trees and distant buildings, featuring a small entrance at the front. +sun_abgdqxqmnvkjszca.jpg The igloo is white with a smooth and rounded texture, viewed from the front showcasing its entrance, set against a snowy landscape with trees in the background and people standing nearby. +sun_ainqaloqahbxzcat.jpg The igloo is constructed from loosely packed snow, appearing uneven in texture with an open front revealing three people inside, set against a snowy park background with trees and scattered pedestrians. +sun_agavxwvifpufjiqa.jpg The igloo is a dome constructed from large, rough-cut snow blocks, appearing off-white with a yellow tint, situated in a snow-covered landscape under a clear blue sky with scattered snow blocks in the foreground and a small, dark rectangular entrance. +sun_aldghbwpjigidnmu.jpg The igloo is white with a rough snow texture, viewed from the side against a flat snowy landscape with a yellow tent and a flag in the background. +sun_ahirsxetbaykvcrb.jpg The igloo is white with a blocky, compact texture, viewed from the front with a person peeking from its low entrance, set in a snowy landscape with several tents and people in the background. +sun_ajlsdonhfjmmnoxd.jpg The igloo is a rounded, white snow structure with a slightly uneven surface, viewed from the side against a forest backdrop with a flag on top, surrounded by smooth, untouched snow. +sun_agmthcuyfpfkujju.jpg An igloo constructed from compacted snow blocks appears predominantly white with a slightly uneven, textured surface, viewed from a front left angle showing the entrance clearly, set against a vast, flat snowy landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions/industrial_area_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/industrial_area_descriptions.txt new file mode 100644 index 0000000..28f16f2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/industrial_area_descriptions.txt @@ -0,0 +1,20 @@ +sun_abkyqgehsvsanbxz.jpg The image shows a cluster of beige cooling towers emitting dense white steam, viewed from a distance with a green field in the foreground and a hazy sky in the background. +sun_aznzspxqejoornbs.jpg The industrial area, viewed from an elevated angle, features large grey and brown structures with flat, expansive roofs, interspersed with multiple smokestacks against a hazy urban backdrop of cranes and distant buildings, creating a gritty, utilitarian texture amidst diffuse smoke suggesting active industrial processes. +sun_abplfmnuvhocnmyt.jpg The image depicts an industrial area with a prominent beige cooling tower emitting white steam, surrounded by rectangular white and gray structures, viewed from a ground perspective against a backdrop of a blue sky with scattered clouds and grassy foreground. +sun_auythuvykzgprlyr.jpg Three large, white cylindrical silos with grey support structures stand against a partly cloudy blue sky, viewed from the front at ground level, with a paved surface and industrial fencing in the foreground. +sun_aampbyuzlgrcrygt.jpg The industrial area features a series of large, gray, metal structures with exposed piping and red-striped chimneys, viewed from a ground-level perspective against a pale sky, with a dense line of green trees in the foreground. +sun_btvhvmzjzdtyjlmj.jpg The industrial area features a series of tall, grey smokestacks and intricate pipework against a clear blue sky, viewed from a low angle with a foreground of railway tracks and a small, white building on the left, contrasting with the complex metallic structures in the background. +sun_bttunurkvvvrpksl.jpg The industrial area features large metallic structures in silver and gray hues, with scaffolding surrounding a cylindrical tank under construction, set against a clear blue sky and distant piping systems, while blue tarps and construction materials are scattered in the foreground. +sun_atpgnlmkhofnmgji.jpg The industrial area consists of tan and smoky cooling towers set against a blue sky, surrounded by green vegetation and various buildings, with a prominent yellow crane in the foreground. +sun_ahsknmkvyzjvzpic.jpg A cluster of gray, cylindrical cooling towers with a smooth texture emits thick, dark smoke under a cloudy sky, set against a backdrop of lush green foliage and distant industrial structures. +sun_atzucdackzirzgjy.jpg The industrial area features a series of large, cylindrical cooling towers with a concrete texture emitting white smoke, viewed from a distance against a backdrop of a hazy blue sky and low-lying factory buildings and cranes, all surrounded by sprawling suburban rooftops. +sun_apqhfeofwkpdwtri.jpg The aerial view of the industrial area showcases a complex with large cylindrical white tanks, intricate black piping systems, a pastel green-roofed building, and paved areas, set against a backdrop of open, earthy fields. +sun_acdlxtsyaebwzwpl.jpg Two spherical storage tanks, one pale blue and one light yellow, with connecting pipelines and a staircase are prominently positioned on a gravel surface under a cloudy sky, framed by industrial piping and structures in the background. +sun_amammomgmbhxzgeq.jpg The image shows an industrial building with three tall smokestacks illuminated in a warm yellow light reflecting on a body of water, set against a deep purple twilight sky with surrounding silhouettes of other industrial structures. +sun_anmuzjnrqzcoblei.jpg The industrial area features tall, slender chimneys and complex metal structures silhouetted against a twilight sky, with a smooth water body reflecting the structures and surrounding boats in the foreground. +sun_aiiqnsbyrmegxgri.jpg A wide aerial view shows a sprawling industrial complex with long, gray and brown buildings, two prominent chimneys with red and white stripes, surrounded by dark piles of coal and situated near a vast body of water under a partly cloudy sky. +sun_aowkbkdsahrhejrj.jpg The industrial area features large, metallic, cylindrical and rectangular structures with a smooth, shiny texture, viewed from ground level amidst a clear blue sky, with rail tracks and graffiti-covered walls in the foreground providing urban context. +sun_ashcorznxkkqvoou.jpg The industrial area features silhouetted cooling towers and smokestacks against a vivid orange sunset sky, with smoke billowing upward and a reflective water surface in the foreground. +sun_aarsswzfmgkaepbv.jpg The image shows a low-resolution industrial area with green, boxy structures emitting white smoke from tall, slender chimneys against a clear blue sky, with additional cylindrical tanks and a minimalistic skyline in the background. +sun_aamypliqkzaljukx.jpg In the low-resolution image, the industrial area is dominated by tall, metallic towers in silver and rust colors with cylindrical shapes and intricate pipe detailing, set against a clear blue sky and a distant horizon. +sun_acpacdcnitcscxhy.jpg Two tall, cylindrical chimneys emit dark smoke above a landscape of reddish-brown brick structures, surrounded by green patches and bordered by a calm body of water under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/inn_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/inn_descriptions.txt new file mode 100644 index 0000000..7612cc8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/inn_descriptions.txt @@ -0,0 +1,20 @@ +sun_bqrqxpbkmhhpnjoc.jpg The inn has a rustic appearance with a combination of light beige plaster and distinctive stone walls, featuring multiple gabled dormer windows on its sloped roof, brown wooden shutters on the windows, a staircase leading up to a balcony, all set in a grassy rural environment with trees in the background. +sun_byptktzjaccafyfm.jpg The inn is a two-story white clapboard building with a green roof and trim, viewed from a slight angle with a water tower and scattered trees in the background, featuring a small porch with columns and steps leading to a lawn dotted with fallen leaves. +sun_ayupqtkxelvzancp.jpg The inn features a rustic stone facade with visible weathered texture, is seen from an upward angle against a partly cloudy sky, with climbing greenery adding natural accents to the structure. +sun_acpdtcpeweostsqp.jpg The image shows a quaint, two-story inn with weathered light gray walls and a distinctively sloped brown shingled roof, featuring multiple small dormer windows with red awnings, situated on a cobblestone street and surrounded by decorative flower pots, with a large maroon awning extending over a charming sidewalk café area. +sun_byxvxowfukqzdjan.jpg The inn features a rustic stone facade with rectangular windows adorned by flower boxes, a dark gabled roof, and is surrounded by a well-kept lawn with shrubs and a large tree in a semi-rural setting. +sun_bgptnbgipciqegwj.jpg The inn is a red brick building viewed from the side, featuring white window frames and a prominent white entrance with a tree-lined road and low stone wall in the background. +sun_aswghdnabkqlogkr.jpg The inn features a rustic stone façade with earthy tones and wood window shutters, viewed from a street-side perspective, surrounded by ivy-covered walls and a row of arched windows beneath a pitched roof. +sun_bigeqfjsopjcyvxi.jpg A charming two-story inn with light yellow siding and white trim is viewed from the front-left corner, set against a backdrop of trees and a modern building, featuring a wraparound porch and a gabled roof adorned with a brick chimney. +sun_arrxypodptogfqkw.jpg The inn features earthy beige and brick tones with a rustic texture, viewed from a street-level angle showcasing outdoor seating with green chairs and vibrant red umbrellas, surrounded by abundant colorful flowers in a sunlit setting. +sun_accwqxdpehojertm.jpg The inn features a rustic appearance with pinkish, weathered stucco walls and red-tiled roofs, framed by thick chimneys, viewed from a frontal angle with lush green trees and hills in the background, and accented by wooden shutters and signage. +sun_apyfgdawtolariza.jpg The inn, viewed from the front on a sunny day, features warm brick walls and a dark shingled roof, nestled among leafy trees casting dappled shadows on the grassy lawn. +sun_agaajtxpvtrnhwlz.jpg The inn features a peach-colored facade with dark brown roofing, viewed from a slightly angled front perspective, nestled against a lush green forest backdrop, adorned with red window shutters and vibrant flowers. +sun_ajxfyvfeuymxrdiy.jpg The inn appears as a two-story building with white siding and a dark roof, featuring a front view with a prominent enclosed porch and blue accents on the window shutters and steps, set against a backdrop of tall trees. +sun_ahqrxievfeusiqlt.jpg The inn features a stone exterior with prominent red awnings above green-trimmed windows, situated on a street with similar traditional architecture and complemented by hanging baskets of flowers. +sun_alxmsktssxzzzhxf.jpg The inn features a light stone facade with red awnings and flower boxes, viewed from a frontal angle, set against an outdoor seating area with red-trimmed tables and chairs, creating a welcoming atmosphere despite the image's low resolution. +sun_brzlieshlkxjexan.jpg The inn features a Victorian-style brick facade with pointed gables and large sash windows, viewed from an angled street perspective, set against an urban backdrop with green commercial waste bins and iron railings. +sun_apqksvksobaqxxkf.jpg The image depicts an inn dining area with white tablecloths and woven chairs, illuminated by warm indoor lighting, featuring decorative plants and assorted yellow floral arrangements, and set within an arched, softly lit interior with a wooden ceiling structure. +sun_bpswmwrdyaeqfrou.jpg The inn, viewed from the front-left corner, features a white exterior with bold red accents on window awnings and the roof, a front porch with stairs leading up, and is surrounded by a well-maintained garden area bordered by bright red flowers, set against a rural background with trees and open fields. +sun_bihstcuhnhdqmnlv.jpg The inn features a distinctively textured red-brick facade with large windows set into the structure, topped by a steep, dark slate roof with a decorative finial, surrounded by sparse trees and green bushes in a park-like setting. +sun_bocmjstjzffujemm.jpg The inn is a multi-story building with a beige facade featuring vertical rows of large white-framed windows, a black sloped roof with dormer windows, and has a backdrop of an urban street with parked cars. diff --git a/utils/area/descriptions/sun/generated_descriptions/islet_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/islet_descriptions.txt new file mode 100644 index 0000000..6815407 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/islet_descriptions.txt @@ -0,0 +1,20 @@ +sun_apzrrrfzzkgitlrr.jpg A small islet with a lush green covering dominates the center view, surrounded by deep blue water, and features a rustic building with a terracotta roof, set against a backdrop of distant rolling hills under a clear sky. +sun_afezricptqyijjur.jpg A small, dome-shaped islet with a grassy surface and sporadic rocks emerges from the tranquil blue lake, surrounded by distant rugged mountain peaks under a partly cloudy sky. +sun_ahakqalyvizhmgpd.jpg The islet, viewed from a sea-level perspective, features a vibrant combination of lush green vegetation and rocky boulders set against a clear blue sky and surrounded by turquoise waters, with a few palm trees adding to its distinctive tropical appearance. +sun_auiymybkpaixepwr.jpg The islet appears as a small, greenish-brown landmass with a slightly domed shape, set against a calm, blue seascape stretching into a hazy sky, with sparse vegetation and rocky outcrops along the shoreline. +sun_ahrfvrixpbuuwicj.jpg A small islet covered by sparse vegetation and a tall, bare tree stands amongst icy waters, enveloped in fog that obscures the distant background with a muted grey palette. +sun_aatmcixgrmtkorwy.jpg The small, densely forested islet is lush green with a mottled texture, viewed from a slightly elevated angle amidst a calm blue sea and a sandy beach with scattered palm trees under a partly cloudy sky. +sun_byopnshzhrvkuiuk.jpg A low-resolution view of an islet shows a thin strip of sandy beach topped with densely packed, dark green palm trees set against a backdrop of a bright blue sky with scattered clouds, framed by the dark, rippling waters of a vast ocean in the foreground. +sun_aokadleuqhaadlxk.jpg The islet appears dark green and rocky, framed by silhouettes of pine trees, against a backdrop of blue ocean and sky, with a few small trees and sailboats enhancing the scene. +sun_aiwobpmoyicmdujt.jpg The islet features a lush green, tree-covered landscape surrounding a light-colored stone building complex, viewed from an elevated angle with a deep blue sea enveloping it, contrasting the vibrant greenery against the vast, calm marine backdrop. +sun_afiqewzjnikytevw.jpg The islet is a rugged, multi-textured formation with a mix of earthy brown, green, and white tones, viewed from the sea against a clear blue sky backdrop, featuring a prominent rocky arch near the waterline. +sun_arkpwbbekqkucvfr.jpg A dark, rocky islet with a green and reddish-brown grassy top emerges from the ocean, surrounded by crashing white waves and viewed from a grassy foreground, set against a backdrop of a vast, cloudy sky. +sun_ayonjasuytvoofki.jpg The islet appears as a small, dark green landmass with sparse tree coverage and a rocky base, surrounded by vibrant turquoise waters under an overcast sky. +sun_azcswpylugtwvbyw.jpg A small, sandy islet with a single tall palm tree is set against a backdrop of turquoise waters and distant overwater bungalows under a cloudy sky. +sun_anabrqkpkwccmkyq.jpg The islet appears dark and rocky against the blue ocean, silhouetted by a sky filled with dramatic clouds, viewed from a low angle with silhouetted vegetation in the foreground. +sun_bvbmocnkdnxbfgcb.jpg The islet appears as a dome-shaped landmass with a rich green hue, set against a cloudy gray sky and calm blue-gray sea, with a sandy foreground enhancing its isolated presence. +sun_ajgmjmwvvokfdugr.jpg The islet appears with a rugged, light-brown surface, contrasted by patches of green vegetation, seen from a distance across choppy gray-blue waters with an overcast sky and distant land in the background. +sun_afnmfbppdjaptjiv.jpg The islet appears as a lush, green, and rocky formation with vegetation crowning its top, set against a calm sea and horizon with a partly cloudy sky, viewed from a slightly elevated angle. +sun_aztpxijrgyxvgxff.jpg The islet appears as a dark green, lush mound contrasting with the surrounding bright blue water, viewed from a distance under a clear sky with mountain silhouettes in the background. +sun_aukazpjtihptzwld.jpg The islet appears as a rugged, brownish mound with steep inclines and some greenery at its base, viewed from an elevated angle against a backdrop of deep blue sea and a clear sky. +sun_aychgdhfvuwyadea.jpg A small, lush islet covered in dense green foliage and palm trees sits against a white sandy shore, surrounded by calm, bright turquoise waters under a partly cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/jacuzzi_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/jacuzzi_descriptions.txt new file mode 100644 index 0000000..62008ef --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/jacuzzi_descriptions.txt @@ -0,0 +1,20 @@ +sun_dhvjhzchfieolkil.jpg The jacuzzi is an oval, tiled tub with a light green hue and bubbly water, viewed from a side angle, set against a cream-tiled wall adorned with a classical landscape mural and surrounded by scattered red rose petals on a stone ledge. +sun_bifqfoeahfzgafvi.jpg The jacuzzi is circular with green water, surrounded by a brick-lined edge and set against muted green walls with large rectangular windows offering views of suburban houses and trees, with a metal handrail on one side. +sun_byjggjnmojofusqb.jpg The indoor jacuzzi is an octagonal shape with light blue water, surrounded by a grey tiled edge and equipped with metal handrails on one side, with several lounge chairs lined against a white wall in the background. +sun_dqhcdvyafyqcfmtr.jpg The jacuzzi is octagonal with a light blue interior and a white edge, situated in a tiled room with metal handrails, flanked by two green-striped lounge chairs and a potted plant against the beige walls. +sun_bwbidupctafsbllt.jpg The jacuzzi features a vibrant blue interior with wavy, marbled textures, viewed from above at an angle, surrounded by a wooden deck with sunlight casting geometric shadows across the scene. +sun_afkmyrcmtmhjsetu.jpg The jacuzzi has a creamy white and light blue water surface with bubbling foam, viewed from a slightly elevated angle, set within a tiled indoor room with a potted plant and beige wall background. +sun_alqfqjpsqbraodvq.jpg The jacuzzi is an oval-shaped, in-ground structure with a light blue water interior producing white foam, surrounded by a beige stone-like border, partially indoors with wood-paneled walls and metal handrails. +sun_didfvkvckuetehba.jpg The jacuzzi features a smooth, white circular edge against a neutral-toned indoor setting with warm lighting, positioned beside a larger turquoise pool, surrounded by lounge chairs, potted plants, and soft ambient candles. +sun_acelisqitdiibpcb.jpg The jacuzzi is an hourglass-shaped pool with light blue water and a bubbled surface, surrounded by a dark blue tiled edge, situated on a stone-tiled patio next to a white stucco wall with accent plants and a decorative wood panel nearby. +sun_bafwytwvttjdtppo.jpg The jacuzzi is circular with a white and blue tile edge, filled with foamy water, viewed from an overhead angle in an indoor setting with beige tiled flooring and a minimalistic, light-filled environment featuring additional pools in the background. +sun_dwmwkyrbwjlvkizy.jpg The jacuzzi, viewed from a slightly elevated angle, features a rectangular shape with bubbling water, surrounded by a gray, matte-textured deck, within an indoor space with pale yellow walls and large windows revealing leafy plants and an outdoor scene. +sun_botpqtdfygxfzukw.jpg A round jacuzzi with a mosaic tile pattern of various shades of blue is viewed from a slightly elevated angle, surrounded by an indoor setting with modern, minimalist decor, including glass block walls and stainless steel handrails. +sun_awfprbdlasnhpojy.jpg The jacuzzi appears to be a circular tub with a blue water surface and a red brick-like rim, surrounded by a patio area with white lounge chairs and a plant in the background against a beige wall. +sun_drneiovodveehbkt.jpg The jacuzzi is a small, square-shaped pool with a clear, reflective surface, surrounded by beige tiles, positioned indoors against a windowed wall with frosted glass and accompanied by potted greenery and a black side table. +sun_dgwaknnhblpsqngy.jpg The jacuzzi is octagonal with white tiling, captured from an elevated angle in an indoor tiled room with a greenish wall, featuring a metallic handrail and partially filled with bubbling water holding several people. +sun_adpqircexrzlmtan.jpg The jacuzzi is filled with bubbling, frothy water and a light blue hue, viewed from a low angle, surrounded by mosaic-tiled walls in shades of beige and brown, providing a spa-like environment. +sun_dmncmwzlepxvmqrs.jpg An indoor oval jacuzzi with a teal water surface, surrounded by light tan tiles and decorative blue patterned walls, with distinct columns and a low-lit ambiance featuring two people in the water. +sun_dnnhphvdgkgxtzgg.jpg The jacuzzi is a hexagonal, light beige tub with a smooth texture viewed from a slightly elevated angle, featuring bubbling water inside, surrounded by a pebble border and nestled in a sunlit enclosure with a clear view of a sparkling blue pool outside. +sun_byfrcaoczfyxjvmq.jpg The jacuzzi is light blue with a tile texture, viewed from a front angle, situated in a tiled indoor setting with a safety railing and decorative plants on the white walls featuring a blue patterned border. +sun_dsrwzxpjubokusbg.jpg The jacuzzi features a cream-colored edge with a smooth texture, dark blue tiles creating a distinct pattern in the water, and is viewed from an elevated angle with a background of tiled flooring, chairs, and a glass window. diff --git a/utils/area/descriptions/sun/generated_descriptions/jail_cell_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/jail_cell_descriptions.txt new file mode 100644 index 0000000..a973af4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/jail_cell_descriptions.txt @@ -0,0 +1,20 @@ +sun_aklckjtodmplhycx.jpg The jail cell features pale beige brick walls and a tan floor, viewed from a corner perspective, with a metal toilet and sink unit on the left, a narrow bed with a thin mattress, blanket, and sandals on the right, under a small window. +sun_agxojbgcntbcroxr.jpg The photo shows a small, plain, beige-colored jail cell with cinder block walls, featuring a simple bench in the center, a metal toilet shared on the right, and a large number "1" marked on the back wall, viewed from a slightly elevated angle. +sun_awicbftcpduldlcg.jpg The jail cell features a dull brown and off-white color scheme with a rough, concrete texture, viewed from an angle showing a metal-barred door and sparse interior furnishings, set against a backdrop of grimy walls and barred windows. +sun_ahzwpurqchzmitdc.jpg A person is standing in front of a steel-barred jail cell with a light blueish-gray hue, featuring a grid-like metal texture, partially obscuring a dark metal object hanging from the bars, set against a gray wall backdrop. +sun_ajqnqtovqswdaltz.jpg The jail cell has metal bars and a partially open barred door, with the walls painted two-tone in green and beige; the perspective looks outward towards a corridor with a radiator and window in the background, casting light across the glossy floor. +sun_bgeiuvusvryrtiql.jpg The jail cell features a stark beige color and smooth texture, viewed from an angle revealing the open entrance, with a simple green sleeping mat on the floor, a barred window above, and a tray slot on the adjacent wall, set against a plain institutional hallway. +sun_admpiemgviehwzok.jpg The image shows a sparse, white, flat-textured jail cell with a built-in shelf on the left and a cylindrical hole in the back wall, viewed from the inside without visible bars or windows. +sun_agwskswbxtlpiwlf.jpg The low-resolution image shows a small, sparsely furnished room with plain white walls and a glossy brown floor, containing a single bed with a teal blanket, a metal chair and desk facing a barred window, and a simple white sink in the foreground, suggesting a minimalistic and institutional environment. +sun_ankfdhfwfokyghxy.jpg The jail cell has a plain off-white interior with minimalistic texture, viewed from the doorway showing a narrow bed with folded blanket on a small metal bedframe, a plain white chair, and a small shelf with personal items, contrasting against a simple cell-like background typical of institutional settings, all under soft artificial lighting. +sun_aidbchrguyfcirou.jpg A low-resolution jail cell image shows a corner view featuring a simple bunk bed with green mattresses on brown metal frames, set against a white tiled wall with a stainless steel toilet-sink unit in the corner, on light brown flooring. +sun_aeopzspfgspnkzyk.jpg The jail cell features four wall-mounted, dark gray metal bunk beds with minimal bedding, set against light-colored, smooth walls and a plain floor, with a single cup resting on a small shelf, viewed straight on from the floor level. +sun_akjhmszgsrddvajh.jpg The image shows a sparsely furnished space with a metal-framed bunk bed featuring blue mattresses and white bedding, placed against a plain white wall with a small window, emphasizing an orderly, institutional environment. +sun_aervhmopzeqsjtjb.jpg The low-resolution image presents a view through metal bars into a dimly lit cell with peeling yellow paint, a basic toilet and sink, and an unkempt bed with a thin mattress and crumpled white sheet, set against a starkly utilitarian and worn environment. +sun_aaywiwkglkuupiyf.jpg The image shows a small, dimly lit jail cell with green walls, a metal grid door and floor, a white toilet against the back wall, and a sink on the left side, viewed from outside through the bars. +sun_buzfhwnptqneswjb.jpg The jail cell features beige brick walls with a noticeable rough texture, a simple narrow metal-framed bed with a thin green mattress, and a sparse interior including a wall-mounted metal shelf with hooks, viewed from an open doorway with a gray textured floor. +sun_aaqmodvvfghkbnwc.jpg The image depicts a small jail cell with light blue walls and bars, featuring a simple metal bunk bed with thin mattresses, a wall-mounted shelf, a small window with bars for natural light, and a white metal sink at the corner. +sun_agnssjqzcjfstwam.jpg The jail cell features a clean, minimalist design with white walls and floors, a narrow bed with a dark blanket on the left side, a small desk area with shelves on the right, and a large window with bars allowing natural light and a view of a scenic landscape. +sun_aluroenevjksaaej.jpg The jail cell features a monochrome, grayscale tone with a stark, cold metal texture, viewed from a side angle revealing barred doors, a bed with minimal bedding, a small sink, and the interior accented by bright overhead light filtering through small windows. +sun_ahhhilcrwujdtzfj.jpg The jail cell features light-colored brick walls with a smooth texture, viewed from a slightly elevated angle showing an enclosed room with glass partitions, a door, and simple wooden benches, within a sterile-looking environment. +sun_apendidkmbdtfood.jpg A small, sparsely furnished jail cell with white textured brick walls, a narrow window with vertical bars casting light into the room, and a simple bed with a blanket against the left wall. diff --git a/utils/area/descriptions/sun/generated_descriptions/jail_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/jail_descriptions.txt new file mode 100644 index 0000000..87b5b82 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/jail_descriptions.txt @@ -0,0 +1,20 @@ +sun_abutrnszdickxmaw.jpg A modern, clean jail interior with light gray metal railings and benches, featuring a central staircase and surrounding barred cell doors, all set against a neutral-toned floor and illuminated by overhead lighting. +sun_aowqyqxqshgfahho.jpg The image shows a row of narrow, concrete and brick stalls with metal bars, viewed from an angle, featuring a checkered tile floor and perforated window openings against a beige plaster wall backdrop. +sun_axgpxhqqqgchafzi.jpg The jail features beige, textured walls and railings with red piping, viewed from a corridor perspective with visible overhead lighting, flanked by multiple levels and bustling with visitors in casual attire. +sun_apubflxbvziuiyuw.jpg The jail features multiple rows of light pink barred cells arranged along a corridor with a concrete floor, observed from a slightly tilted upward perspective against a beige ceiling, with a partially visible person in the foreground creating a sense of scale. +sun_afgcltisjwxwzber.jpg The image shows a multi-tiered, industrial jail interior with pale beige walls, rusty metal railings, and narrow stairways; sunlight streams in through tall, barred windows on the left, illuminating a high-ceilinged corridor with a group of people walking below. +sun_azkmirdztabhkoyg.jpg A dimly lit hallway with a row of rusty metal cell doors on the left, glossy stone floor, and high narrow windows on the right casting light across a predominantly concrete interior. +sun_bujcloqwemjjgkrj.jpg The image shows a row of beige metal-barred jail cells with red accents and a sign on the upper level, viewed from below, set against a backdrop of weathered concrete walls. +sun_atwppaevacaihhgb.jpg The image shows a narrow corridor of a multi-tiered, orange-tinted jail with iron bars and metal railings on either side, viewed from a fisheye perspective, with bright artificial lights overhead and a single person walking away in the dimly lit passage. +sun_atcyedqpusjdhwfo.jpg The jail features white brick walls with narrow vertical barred windows and black metal doors, viewed from a hallway perspective with a polished gray floor and an overhead structure of beams and railings. +sun_anfzafzchgsppuyx.jpg The image depicts a large, mint-green, textured metal gate with a diagonal pattern at the center, framed by red-brown brick walls, situated on a slightly worn concrete pavement under a clear sky. +sun_axnqghsyxyecqjek.jpg A low-resolution image of a jail shows a row of white, numbered, metal-barred cell doors within a gray walled interior with overhead walkways and sunlight casting grid-like shadows on the concrete floor. +sun_agfykapzxzmaxsxg.jpg The image depicts a dimly-lit hallway in a jail with beige cell doors and metal bars on either side, a group of people walking through the center, an arched ceiling above with lights, and a linear perspective that draws the eye to the end of the corridor. +sun_alodmhshuzdmzpxp.jpg The image depicts a dimly lit corridor of a jail viewed from a central perspective, featuring beige doors on either side with visible locks and a textured, glossy, tiled wall in a glossy white color, under a curved, yellow ceiling with a distinct barred window at the corridor's end, illuminating the space. +sun_bkpriekfclyhtobt.jpg The image shows a dimly-lit, long, arched hallway with peeling pale walls, old metal light fixtures overhead, secured doors with rusted bars lining the sides, and a worn concrete floor, creating a dilapidated and historical ambiance. +sun_avynalaoygpkbech.jpg The jail features long, beige corridors with red railings viewed from a ground-level perspective, surrounded by faintly visible rows of barred cells, while the ceiling is lined with bright, rectangular lights and the foreground is crowded with people. +sun_aepoubsjpcqxmbwz.jpg A group of people is gathered in a long, narrow hall with pale walls and a blue stair railing, where musicians perform, offering a lively atmosphere amid the institutional setting with visible barred windows and overhead lighting. +sun_azeyvtlmhqbdsjop.jpg The image shows a corridor view of a jail featuring long rows of aged, vertical bar cells with a worn, light brown concrete floor, overhead piping on a white ceiling, and large barred windows along the left wall, allowing dim natural light to illuminate the passageway. +sun_amxujpbfibcxenvl.jpg The image shows a narrow, dimly lit corridor with white metal bars lining both sides, leading to cells with hard, concrete floors, and a far background of a simple white sink. +sun_aphioefkpzcmbwpg.jpg The image depicts a series of metal-barred jail cells in faded shades of blue and gray, viewed from a diagonal angle, with a concrete floor and an overhead walkway in an institutional setting. +sun_anrzezlatqdxufih.jpg The image shows a low-resolution view of a dimly lit jail corridor with black metal bars on the right, light-colored textured flooring, a distant doorway framed by similar black bars in the background, and a notable spotlight creating a slight reflection on the shiny surface of the bars. diff --git a/utils/area/descriptions/sun/generated_descriptions/jewelry_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/jewelry_shop_descriptions.txt new file mode 100644 index 0000000..b682d4b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/jewelry_shop_descriptions.txt @@ -0,0 +1,20 @@ +sun_ameulnsiqzzacyjv.jpg The low-resolution photo depicts a jewelry shop with a soft pinkish-purple interior, showcasing glass display cases filled with various jewelry items, neatly arranged against a wooden shelving background, surrounded by white walls and a patterned reddish-brown floor. +sun_aeeezqcnpkggvnnu.jpg The jewelry shop features a glass display case showcasing a variety of small, colorful jewelry pieces, set against a background of bamboo-style partitioning and earthy-toned decor, with the viewpoint capturing a cozy, intimate interior space. +sun_avbwarqlytzflavs.jpg The low-resolution jewelry shop features a glass display case with a wooden base showcasing various ornaments, surrounded by reflective glass shelves with additional jewelry pieces, set against a warm-toned wooden cabinet backdrop with delicate decorative items and a subtle plant accent on the counter. +sun_aeyakhyndrzvvmif.jpg The jewelry shop features a sleek display of minimalist glass shelves within tall, narrow glass cases set against an elegant gray marble wall, with subtle backlighting highlighting the small assortments of jewelry, reflecting a modern and luxurious ambiance. +sun_avaqvxtmtcxnfgcw.jpg The jewelry shop features warmly lit, polished wooden display cabinets filled with silver and gold decorative items, set against a mirrored backdrop reflecting additional ornate pieces in a vintage, cozy atmosphere. +sun_acjdbyjhamboolnm.jpg The jewelry shop features a bright lime green wall with embedded transparent display boxes showcasing various pieces, set against a wooden accent at the top, all illuminated by small spotlights, creating a modern and vibrant ambiance. +sun_aduwvzadxeuvehlf.jpg The jewelry shop showcases a rich array of gold and rose-toned necklaces, bracelets, and earrings displayed on vertical cream-colored stands, with a glossy, reflective surface enhancing the ornate designs and a warm-lit interior accentuating intricate details against a backdrop of luxurious wooden textures. +sun_aevksyvkvjrtbkta.jpg The jewelry shop interior features a warm-toned wood-framed display case with reflective glass surfaces showcasing an array of silver and crystal items, positioned under a central chandelier, amidst a softly lit environment with arch-shaped shelves set against deep red backgrounds. +sun_afsejvgsysuujmpz.jpg The jewelry shop display features a warm-toned arrangement with shiny, gold-colored watches and bracelets set against a soft, glowing light, accented by a decorative flower arrangement in the background and a dark-textured stand that showcases the items distinctly. +sun_acxheyprtwfgstbd.jpg The jewelry shop features sleek black display counters with reflective glass surfaces showcasing neatly arranged jewelry, viewed from a slightly elevated angle, set against a neutral-toned interior with some decorative elements, creating an elegant and organized atmosphere. +sun_amnhmyoycmnydjtm.jpg The jewelry shop is viewed from the front, showcasing a densely packed display of various gold and silver necklaces, bracelets, and rings that shimmer under warm yellow lighting, with a reflection of the store's interior visible through the glass background. +sun_apqlupnyvvvjmpyb.jpg The jewelry shop is viewed from the interior with an assortment of intricate, gold-colored necklaces, bracelets, and rings displayed against a warm, wood-textured background with a glass cabinet enclosure, creating a glowing, opulent ambiance. +sun_awtczlbjghbrjcfm.jpg The jewelry shop displays a series of glass-topped beige display cases with various jewelry pieces on red and white cushions, situated in a warmly lit environment with framed artwork on light-colored walls. +sun_acgljrczrsextirz.jpg A jewelry shop displays a glass cabinet filled with various white necklaces and stands, against a wooden backdrop, with a prominent blue vase and decorative silver elements including reindeer figures on a reflective surface in the foreground. +sun_aulqtyolzgeanfec.jpg The jewelry shop exhibits warm golden lighting highlighting intricate displays of necklaces, rings, and earrings within a polished, dark wooden showcase, set against a cozy, traditional interior backdrop. +sun_axkwsyienwmybkcw.jpg A jewelry shop interior with a sleek black display counter showcasing assorted jewelry under glass, surrounded by glass-front cabinets with silver accents, positioned against a contrasting light wall, and featuring subtle reflections and shadows from ample lighting. +sun_atitqddexozrfuan.jpg The jewelry shop features a sleek, modern design with white illuminated display cases and a minimalist layout, viewed from an angle showcasing a central column with a black "4°C" sign, set against a neutral background with reflective glass surfaces and subdued lighting. +sun_agizqhzqjewceuhe.jpg The jewelry shop features warm, wood-toned display counters with glass tops, under diffused ceiling lights, while a curved arrangement highlights assorted jewelry, and a cluster of gold balloons adds a celebratory touch against a carpeted floor with mirrored background displays. +sun_apelaoqrwigeoddn.jpg The jewelry shop features a warm, well-lit interior with overhead pendant lights, a wooden display case filled with neatly arranged jewelry against a backdrop of pale blue walls adorned with mounted white necklace busts and display trays, viewed from a frontal perspective showing a salesman engaging with a customer. +sun_artdhywkwyihdoie.jpg The jewelry shop, viewed from a frontal angle, features rich wooden cabinetry with intricate details and mirrors that reflect the opulent interior, including gilded pendulum clocks and plush rose displays, amidst a warm, softly-lit environment indicative of elegance and luxury. diff --git a/utils/area/descriptions/sun/generated_descriptions/kasbah_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/kasbah_descriptions.txt new file mode 100644 index 0000000..0af79f8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/kasbah_descriptions.txt @@ -0,0 +1,20 @@ +sun_aubvgotliivekhxl.jpg The kasbah, viewed from the front with several tower-like structures, displays a warm, earthy adobe color with intricate geometric patterns, set against a backdrop of a partly cloudy sky and lush greenery peeking on the left. +sun_amkzxturfsbittlr.jpg The kasbah displays a warm, earthy beige color with a rough textured surface, viewed from a frontal angle showcasing its imposing entrance and crenelated walls, set against a vivid blue sky and surrounded by lush greenery and palm trees. +sun_azweuwedxxihhqfs.jpg The kasbah is a sandy ochre color with a textured, adobe-like surface, viewed from a slightly elevated angle showcasing its square towers and crenellated battlements, set against a backdrop of arid hills and sparse greenery. +sun_akvluygrsdduvgwl.jpg The kasbah is a sandy brown structure with a clay texture, featuring square towers and small windows, viewed from the front with a clear blue sky and sparse trees in the background, surrounded by dry, rocky terrain with a few cars and people nearby. +sun_arvgmtseftdykgwz.jpg The kasbah appears in a sandy brown color with a rugged, textured surface, viewed from a low angle emphasizing its imposing towers against a partly cloudy sky, featuring intricate window patterns and set against a barren, earthy landscape. +sun_alzlqkofepbcmllz.jpg The kasbah appears in light beige tones with a rough, sandy texture, viewed from an elevated angle, with a flat rooftop edged by ornate crenellations, surrounded by a sprawling urban landscape and set against a clear, pale sky. +sun_aenhoalkaguzxlvp.jpg The kasbah is a sandy, earthen-toned structure with a rugged, textured facade, viewed from a slightly elevated angle, surrounded by sparse vegetation and a rocky hillside, with distinct rectangular windows and a stone pathway leading into the entrance. +sun_aosgiemdvfbwwnbm.jpg The kasbah is constructed from sandy beige stone with a rough, aged texture, viewed from a slightly low angle highlighting its rounded tower and crenellated walls, with sparse palm trees in the grassy foreground and a bright blue sky with scattered clouds in the background. +sun_asrirzcvqjkerzxa.jpg The kasbah is a clay-brown structure with a rugged, textured surface, viewed from a frontal angle against a backdrop of majestic mountains and clear blue sky, surrounded by verdant fields and scattered palm trees. +sun_aityruoopuxnycbs.jpg The kasbah is an earthy beige color with a textured stone surface, viewed from a slightly upward angle showing prominent square towers, set against a clear blue sky and a foreground of palm trees and shrubs. +sun_almjqdmjwxvnapak.jpg The kasbah is made of earthy brown adobe with intricate geometric patterns etched into its façade, viewed at an angle showcasing a prominent arched window, set against a distant, hazy landscape with palm trees and another similar structure visible in the background. +sun_aejqbnynlfzwgaxo.jpg The kasbah has a tapered, mud-brick structure in light beige with a darker brown upper section featuring crenellations, viewed from below at an angle; set against a clear blue sky with scattered clouds in a dry, barren landscape. +sun_acuzellthhbiidxf.jpg The kasbah features warm, sandy brown walls with crenellated towers, viewed from a side angle along a tree-lined street, with palm trees framing the right edge and a mix of people and cyclists in the foreground. +sun_adxkxbvspykgrqea.jpg The kasbah is a sunlit, earthen structure with a warm, sandy hue and rough texture, viewed from a steep upward angle, featuring deteriorated walls and an adjacent stone staircase, set against a clear sky with a colorful patterned rug draped over the side. +sun_awumnsyhrhbefmru.jpg The kasbah, set against a rugged mountainous backdrop, features a warm, earthy reddish-brown color with a textured surface, tower-like structures, and is surrounded by sparse greenery and a clear blue sky. +sun_apiwqepebcumpras.jpg The kasbah is a warm sandy beige structure with a texture of smooth adobe walls and distinctive crenellated parapets, viewed from a side angle against a pale blue sky and partially surrounded by palm trees and colorful woven rugs hanging on adjacent walls. +sun_akestvqlsoyqqrjq.jpg The kasbah appears in a sandy, earthen hue with a textured, adobe-like surface, viewed from a slight elevation against a backdrop of lush green palms and distant, shadowed mountains, featuring a prominent arched entrance and tiered tower structures. +sun_agxohbpgwrmohevr.jpg The kasbah is made of earthy, reddish-brown adobe bricks, featuring a central tower with intricate geometric patterns, viewed from the ground level amidst a sparse, sandy courtyard and under a sky filled with scattered clouds. +sun_azywbbiyctajnxnz.jpg The kasbah appears in a warm, sandy brown color with a rough, earthen texture, viewed from an elevated angle that reveals its sprawling, flat-roofed structures in a tightly packed formation, set against a hazy desert and mountainous backdrop that underscores its traditional and ancient architectural elements. +sun_adzqfqhgfmeuvagq.jpg The kasbah is a sandy brown, mud-brick structure with tall, battlemented towers, situated amidst sparse greenery in a dry, rocky landscape with a riverbed in the background, viewed from an elevated position showcasing its intricate layout and courtyards. diff --git a/utils/area/descriptions/sun/generated_descriptions/kennel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/kennel_descriptions.txt new file mode 100644 index 0000000..8177daf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/kennel_descriptions.txt @@ -0,0 +1,20 @@ +sun_ajxbpuezllqdsneu.jpg The kennel is a metal-wire enclosure with a circular shape, set on a concrete floor; in the background, there is patchy grass and some worn, sunlit structures, highlighting a brown brindle dog standing inside. +sun_aqrwjxzcolykoknd.jpg A wooden kennel with a warm brown hue and a sleek, rectangular structure with wire mesh panels is visible from a low angle against a backdrop of lush green trees and a sloping grassy area. +sun_ahhyzvkajnaunyuc.jpg The kennel features a row of wire mesh enclosures with brick and white walls, viewed from a low-centered perspective down a tiled floor corridor, with a distinct red water bowl visible to the right. +sun_afyevwjfbkrugfbm.jpg The kennel is a tan-colored structure with horizontal paneling, featuring a central white door with a small awning, flanked by two windows with dark shutters, set against a background of trees, with chain-link fencing extending from both sides and a pair of plastic chairs in front. +sun_aonvhiyotpuchiyx.jpg The kennel features a silver chain-link fence with metal framing, positioned adjacent to a brown wooden building, surrounded by leaf-strewn grass and bare deciduous trees in the background. +sun_akfyfchoqlphhvco.jpg The kennel consists of chain-link fencing enclosing individual concrete partitions with a gray block wall backdrop, situated in an outdoor environment with visible foliage above the roofline. +sun_abtqplstxxjhlzqk.jpg The kennel is a blue-gray gabled structure with a chain-link fence enclosure, viewed from an angled side perspective, set on a vibrant green grass background, with signs and a small dog in the pen visible despite the low resolution. +sun_akejvvxjqaixkigh.jpg The kennel consists of a series of metallic chain-link enclosures in a snow-dusted outdoor area, viewed from the side, with sparse grass and leafless trees in the background. +sun_asvklogioaifychy.jpg The kennel features a dark, red plastic base with a light beige, fluffy cushion inside, positioned on a tiled floor with concrete walls and a wired gate in the background, beyond which a dog can be seen standing on grass beside a red ball. +sun_annabrdomcmhordv.jpg The kennel consists of a series of black metal mesh enclosures aligned against a white corrugated wall, with an adjacent area containing colorful playground equipment, all within a spacious indoor setting lit by natural light from high windows. +sun_aqeazubgchnzwrvt.jpg The kennel features a simple metal frame with chain link fencing and a blue tarp roof, viewed from a slight angle showing its open entrance, set in a grassy area with trees and a road in the background. +sun_adbdlpuffbztlwfa.jpg The kennel is composed of a series of large metal wire mesh enclosures with a silver-gray color, viewed from the front at ground level, surrounded by a concrete pathway and pebbled area, with trees and a clear blue sky in the background. +sun_aefrstsoabbjlfke.jpg The kennel is visible in the background with a chain-link design, a metallic texture, and gray color, positioned linearly along a concrete path, surrounded by a dry grass area, and supported by beige walls. +sun_aqtndwhaagervtuf.jpg The kennel features a series of beige and black framed stalls arranged in a symmetrical row on either side of a green-floored, metallic-ceiling corridor, illuminated by overhead fluorescent lights, with a distant view of a closed door at the end. +sun_aovyulupfwiygtbq.jpg The kennel is a large, rectangular chain-link structure with a metallic silver color and grid texture, viewed from an angled perspective, situated on an outdoor concrete surface, and backed by a brick building with an open sky visible above. +sun_afsrbsoilnaqflbh.jpg The kennel is a metal-framed, square cage with a pitched green tarp roof, situated on grass with a small dog standing inside near a tan doghouse, against a backdrop of a white siding building with dark shutters. +sun_apgiiltjemqjruhz.jpg The kennel appears as a silver chain-link structure with a rectangular shape, shown from a slightly elevated angle in a grassy outdoor setting with a couple of trees partially framing the image. +sun_afflczdigostehaj.jpg The image shows a row of outdoor chain-link dog kennels lined up on a gravel surface, with multiple dogs visible inside under a tree-dotted, shadowed background, and features metal posts and wire mesh fences reflecting sunlight. +sun_afdgjqmckwlbgafe.jpg The kennel features a yellow frame with a wire mesh door, housing a small fluffy white and tan dog on a wooden floor, alongside a blue dish and a plaid fabric-covered object, set against a partially visible yellow background with overhead storage marked by a green number "22". +sun_athxfumtfuhnlrxa.jpg A chain-link kennel with a blue tarp roof is viewed from an angled perspective, sitting on concrete with open fields and a distant horizon as the background, housing a dog and featuring a small, gray doghouse inside. diff --git a/utils/area/descriptions/sun/generated_descriptions/kindergarden_classroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/kindergarden_classroom_descriptions.txt new file mode 100644 index 0000000..2b91585 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/kindergarden_classroom_descriptions.txt @@ -0,0 +1,20 @@ +sun_akeuxkayqbzugctx.jpg A vibrant classroom with colorful posters on the walls and organized shelves, shows young children seated at light wooden tables with a teacher holding a child in the midground, all surrounded by educational materials and bright, welcoming décor. +sun_asshqkjjfqmyrwez.jpg The kindergarten classroom features vibrant blue and red tables with scattered art materials, a light-colored sand table filled with colorful toys, and educational displays on the walls, set within a bright, spacious environment with a visible playhouse in the background. +sun_avhlonjeblvmlpxr.jpg The kindergarten classroom features a colorful, circular alphabet rug with children sitting around a teacher reading a book, surrounded by bright wall decor including a large paper palm tree, educational charts, and playful, organized storage bins. +sun_awwawccotcjhztrt.jpg The kindergarten classroom features a wooden-floored room viewed from a slightly elevated angle, with children sitting on a blue mat playing with colorful, smooth-textured building blocks, and large windows in the background displaying an outdoor playground and green grass. +sun_aujwgyldikdvfvpp.jpg The kindergarten classroom is brightly colored with pastel blue and pink walls, featuring a diverse arrangement of toys, books, and mini furniture, and characterized by an organized yet lively atmosphere with educational posters and storage units in the background. +sun_auqrpvwleqfpxhmq.jpg The kindergarden classroom features colorful plastic chairs in yellow, red, and blue around white rectangular tables with art supplies, set against a white wall adorned with vibrant educational posters and playful decorations, situated on a speckled dark carpet with a wooden corner piece in the foreground. +sun_ajvrjzqgkdczyenn.jpg A kindergarten classroom with a mix of blue, yellow, and white tones features small children seated at a low rectangular table, surrounded by colorful artwork and educational materials on the walls, while bright blue plastic chairs and art supplies create a lively and creative learning environment. +sun_akjoyiaviagwrjaa.jpg The kindergarten classroom features a colorful and organized environment with a blue carpeted play area, red storage cubbies, a small wooden table set in the foreground, and bright artwork displayed against white walls, viewed from an angle that showcases both the seating area and storage along the walls. +sun_aookcvxldfjkcwhp.jpg A bright and inviting kindergarten classroom features colorful educational posters and illustrations on white brick walls, with organized shelves of toys and supplies around a central, child-sized brown table, and large windows letting in ample natural light. +sun_abolbvukvhubhpjk.jpg The kindergarten classroom features a colorful carpet with educational illustrations, wooden storage units filled with various toys and supplies, and walls decorated with student artwork and educational posters, set against a backdrop of cheerful paper snowflakes on windows. +sun_ajkflikerjnbngof.jpg The kindergarten classroom features wooden walls and a vaulted ceiling with a warm brown hue, natural light coming from small windows, colorful tables and chairs arranged neatly, and educational posters adorning the walls, all viewed from a slightly elevated angle. +sun_afxqvpodzdyhrdty.jpg The kindergarten classroom features a vibrant blue oval carpet with colorful alphabet letters around its edge, surrounded by organized toys and learning materials against the walls, accented by a rocking chair and decorated bulletin boards, all bathed in natural light from large windows. +sun_ajujafldbrxjmwpe.jpg A colorful kindergarten classroom features a central circle of children sitting attentively on a blue carpet, with walls adorned with vibrant educational posters and crafts against a backdrop of bright orange and blue, complemented by a window providing natural light. +sun_aocfnccpwbpkdfci.jpg The kindergarten classroom has a colorful and engaging appearance with vibrant wall art, a variety of educational posters, small tables with vivid red and cream-colored tablecloths, and blocks scattered on surfaces, while being viewed from a slightly elevated angle that showcases a cozy, learning-focused environment. +sun_amycqpexxhxuujhp.jpg A vibrant classroom with aqua green walls features children in blue uniforms sitting around brown wooden tables covered with art supplies and pink baskets, under the natural light from paned windows, with educational posters and a chalkboard lining the walls. +sun_awyomhmakhqjgrek.jpg The kindergarten classroom features a brown bulletin board with colorful alphabet cards, a textured blue-gray tabletop with a single chair in the foreground, and a carpeted floor beneath a low ceiling, with an array of vibrant children’s artwork displayed on the far wall. +sun_afmyzinsyyriyqub.jpg The kindergarten classroom features an arrangement of red chairs around a wooden table with scattered drawings, a small play kitchen set against cream-colored walls displaying children's artwork, and a cozy play area with a storage bin on gray carpeting. +sun_awsvcqqguqyblfoc.jpg The kindergarten classroom features pastel yellow walls adorned with colorful educational posters and organizers, a side view with sunlight coming through a window with patterned curtains, and an array of brightly colored storage bins and small furniture pieces no taller than a child, against a backdrop of soft blue bulletin boards. +sun_aoaqhjbsmvefyiby.jpg The kindergarten classroom, viewed from the front corner, features brightly colored walls with educational posters and a vivid red word wall, shelves full of books and supplies, a circular rug with colorful seating spots, and a cozy reading area, illuminated under soft fluorescent lighting. +sun_arwqohoihvpgkpzy.jpg The kindergarden classroom features brightly colored playmats on tables, vibrant wall murals of a sky with hot air balloons and a plane, wooden shelves filled with organized educational materials, and small blue chairs, all under a ceiling with linear fluorescent lights. diff --git a/utils/area/descriptions/sun/generated_descriptions/kitchen_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/kitchen_descriptions.txt new file mode 100644 index 0000000..ac06566 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/kitchen_descriptions.txt @@ -0,0 +1,20 @@ +sun_atxwizwtdimdgfgo.jpg The kitchen features warm wooden cabinetry and flooring, seen from an angled viewpoint, with stainless steel appliances, a central island with high-backed chairs, and windows adorned with floral curtains, all set within a cozy, plant-accented environment. +sun_auzwhookgjmsmnrs.jpg The kitchen features warm wooden cabinetry with a white countertop, viewed from a slightly elevated angle with hardwood flooring, prominently situated in a cozy open-plan setting adjacent to a carpeted living area, accented by a white stove and a sunny window. +sun_ajpanclprxjlugfr.jpg The kitchen features a wooden island with a textured black countertop in a spacious, well-lit room, showcasing large windows and white tile flooring, with a warm, inviting color palette and neatly arranged cabinetry. +sun_ajuqshhjcubjzedh.jpg The kitchen features sleek dark brown cabinetry with smooth surfaces, seen from a corner angle showcasing a central island with mirrored decorative spheres, contrasting bright white flooring, and pendant lighting against a backdrop of modern appliances and large windows with wooden blinds. +sun_apumvnycvwtrdlmc.jpg The kitchen features warm wooden cabinetry and a black countertop island with wooden stools, set against a backdrop of large windows and a distinctive black and white checkered floor, seen from a wide-angle viewpoint. +sun_acmstexzoiusuvqj.jpg The kitchen features cream-colored cabinetry with ornate detailing, a textured granite island countertop, stainless steel appliances, and a light beige wall background. +sun_atkrisvsrzpbgyxu.jpg A sunlit kitchen featuring white cabinets with a smooth texture, a visible countertop with two wooden chairs facing the center, and a tiled backsplash, set against a hallway and wall-mounted map in the background. +sun_aktrxiknvknrufem.jpg The kitchen features sleek, dark cabinetry contrasted by a polished, white marble island with a waterfall edge, modern stainless-steel appliances, and a wooden floor, viewed from an angle that reveals an adjacent hallway and an art piece by the wall. +sun_aockjpmzumaanrmg.jpg The kitchen features gleaming white cabinetry with a polished granite countertop and an ornate chandelier hanging above a central island, surrounded by stainless steel appliances and a warm, yellow-painted backdrop. +sun_aiejtncpokfiiyez.jpg The kitchen features white cabinets with glass-paneled doors and a dark speckled countertop, viewed from an angle showing three black stools at a small peninsula against a light beige wall, with a glimpse of a brighter adjoining room through an open doorway. +sun_acgilwmyulcwzknd.jpg The kitchen features light wooden cabinets and a gray tiled countertop with a view from the dining area, accented by stainless steel appliances, pendant lighting, and a background of a red wall and white window trim. +sun_axyungxcivupuloh.jpg The kitchen features a light beige color scheme with smooth surfaces, viewed from a side angle showing a white refrigerator, a wall-mounted phone, cream cabinets with dark handles, a microwave, and red-accented canisters against a plain beige wall backdrop. +sun_aduyhjidfuvieylx.jpg The kitchen has warm wooden cabinetry and a central island with a dark stone countertop, viewed from a slightly elevated angle, with stainless steel appliances and large rectangular windows providing natural light against a backdrop of pale walls. +sun_aaytdlcupysxijma.jpg The kitchen features cream-colored cabinets with glass-paneled overhead doors, set against a warm wooden floor, showcasing stainless steel appliances and a sleek countertop in a well-lit corner space with a window dressed in wooden blinds. +sun_atufuwyfiauhtztc.jpg The kitchen features white cabinetry with louvered doors and brass handles, a compact angled workspace arrangement, wooden floorboards, beige tiled backsplash, and a white fridge, viewed from the entryway with a cleaning bucket set to the side. +sun_abzvbtecrppovubu.jpg The kitchen features cream-colored cabinets and appliances including a small fridge and microwave, viewed from a straight-on angle against a backdrop of soft yellow walls and under-cabinet lighting, with visible tiles and a countertop adorned with a cutting board and utensil holder. +sun_azasqdtcqckquplg.jpg The kitchen features wooden cabinetry with a warm brown tone, a stainless steel double-door refrigerator spanning the center background, granite countertops with a natural speckled pattern, and a distinctively modern faucet in the foreground pouring water into a black sink. +sun_amwcwxkjnixepkqv.jpg The kitchen features cream-colored cabinetry with a marble countertop island in a dark stone texture, seen from a frontal angle with a windowed backsplash that reveals a leafy outdoor view, and is accentuated by stainless steel appliances and recessed lighting. +sun_afphfxkabyerpwkz.jpg The kitchen features warm wood cabinetry and a large island with a dark countertop, under a slanted ceiling with recessed lighting, flanked by large windows and patio doors that illuminate the space with natural light, set against a backdrop of a neutral-toned wall and dining area with a round table and chairs. +sun_ahxnjeaijhcbfwyn.jpg The kitchen features white cabinetry and appliances with a smooth, matte texture under flat lighting, viewed from a slightly elevated angle that reveals a wrap-around counter, electric stove, and white microwave set against a bare, beige wall. diff --git a/utils/area/descriptions/sun/generated_descriptions/kitchenette_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/kitchenette_descriptions.txt new file mode 100644 index 0000000..62419c8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/kitchenette_descriptions.txt @@ -0,0 +1,20 @@ +sun_aviqjefzpjazvhqv.jpg The kitchenette, viewed from the entrance of a narrow corridor, features a brown marble countertop with a white coffee maker and blue water dispenser, a white sink against a cream wall, and a distant view of a white refrigerator framed by muted lighting. +sun_aghlxmiovdjcrzvj.jpg The kitchenette features light turquoise walls and a beige tiled floor, with a small wooden cabinet and shelves displaying dishes, set against a window with lace curtains and bordered by a white refrigerator on the left and a trash bin on the right. +sun_agiotbdrgbsgqmxn.jpg The kitchenette, viewed frontally, features white cabinets with a glossy finish, a stainless steel sink beside a microwave and toaster atop the counter, complemented by a light-colored tile floor and positioned next to a wooden door with decorative glass. +sun_afhtbjykmjfkgthz.jpg The kitchenette features wooden cabinets and a small white fridge beneath a black microwave, with a white tiled backsplash, a glossy countertop reflecting light, and a small window overlooking a hallway, complemented by the presence of a green and white checkered dish towel. +sun_ahomllqwnvyzubey.jpg The kitchenette features wood-textured cabinets and a black microwave positioned above a silver sink, with a light-colored countertop holding a kettle and water bottles, set against a neutral, light-colored wall with a paper towel holder. +sun_aotgytadonadnzuo.jpg A compact kitchenette with light beige cabinets and a countertop houses a microwave and toaster while adjacent to a small fridge, set against a pale pink wall with a partially visible black leather couch in the foreground. +sun_amwzviotqfacmekh.jpg The kitchenette features wood-paneled walls and ceiling with a white stove and sink, viewed from a front angle, set against the backdrop of a cozy environment with curtained windows and basic appliances like a refrigerator and microwave. +sun_ahpdqtlluhvutcec.jpg The kitchenette features a compact wooden cabinet with an open cupboard revealing a microwave, kitchen essentials, and a wine rack, set against a pale wall with a small sink and countertop housing a coffee maker, in a well-lit setting with a white fridge at the side. +sun_anbrobpwhibcpkms.jpg The kitchenette features warm, brown wooden cabinets and countertops, set against textured wooden walls with plants and decorations above, viewed from a slightly elevated angle in a cozy, rustic environment. +sun_accilwvadsvecujd.jpg The kitchenette features beige and white tones with a textured countertop and tiled floor, viewed from an elevated angle, set against a distinctive backdrop of patterned wall tiles and compact appliances, including a white mini-fridge and toaster oven. +sun_airgwaqswlkiqcya.jpg The kitchenette is viewed from the entrance, featuring off-white cabinets with a slightly glossy texture, a wooden shelving unit holding small appliances on the left, a window with brown blinds at the far end, and a dark tiled floor, all set within a narrow, lightly painted room. +sun_agxvueocsrdcpmkm.jpg A compact kitchenette features light beige cabinetry with a smooth texture, viewed from a side angle against a brick wall, accented by exposed dark wooden ceiling beams and a white tile backsplash, with a washing machine and colorful dish towels adding distinctive details. +sun_aijiztfbuhvpysbd.jpg The kitchenette is viewed from a side angle, featuring white cabinets with minimal detailing set against a wood-paneled wall with a distinct vertical texture, adjacent to a small dining area with a red drop-leaf table and spindle-back chairs, all amidst a muted, sparsely decorated room. +sun_armqxxhdieyxrack.jpg The kitchenette, viewed from the front, features white cabinetry with a stainless steel countertop housing a sink and two electric burners, against a backdrop of beige tiled walls, with an open cabinet holding dishes and pots above. +sun_ambbwwafhjhxvdwm.jpg The kitchenette, viewed from a side angle against a marbled pink wall, features light beige cabinets, a white microwave and stove, a small countertop with a stainless steel sink, and miscellaneous items such as a coffee maker and packaged goods, creating a compact and functional space. +sun_aggoxcvtjlqrairh.jpg The kitchenette features white and pastel square tiles with a small open window framed by dark wood, displaying a scenic landscape in the background, while the white countertop is cluttered with jars and the stove is visible in the foreground. +sun_adddyapkqhihsppm.jpg The kitchenette is viewed from the front and features light-colored cabinets with ornate panel designs, a high-mounted white cabinet with a clear glass section revealing a cup, all set against a tiled backsplash and accompanied by a white countertop housing a single faucet and electric kettle, with a sheer curtain-covered window nearby filtering soft light into the space. +sun_ajyozijgpmjrsmlh.jpg The kitchenette features blue cabinetry with wooden trim, a cream-colored mini fridge, and a beige tiled backsplash, viewed from the front with natural light coming from a window partially covered by beige curtains on the left. +sun_aslbacmozyltajwv.jpg The kitchenette features a compact wood and white color palette with a polished metal sink, viewed straight on against a backdrop of beige walls, a wall-mounted TV, visible shelving with tableware, and a floral-patterned storage unit, highlighting its rustic charm. +sun_aojxyjjkxmgxsarl.jpg The kitchenette features light wood cabinetry with a smooth texture and lattice wine rack, viewed head-on against a neutral wall, showcasing a compact white fridge and microwave, with tiled flooring below. diff --git a/utils/area/descriptions/sun/generated_descriptions/labyrinth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/labyrinth_descriptions.txt new file mode 100644 index 0000000..cd1055c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/labyrinth_descriptions.txt @@ -0,0 +1,20 @@ +sun_btmanjuusujdthwm.jpg The labyrinth features red brick pathways contrasting with light tan gravel, viewed from an elevated angle with lush green trees in the background and three people standing at its center, providing scale and interaction. +sun_bqgobxcqxkxeepij.jpg A circular garden labyrinth composed of white pebble pathways and bordered by low, green vegetation surrounds a central feature, possibly a small fountain or sculpture, with a backdrop of dense, lush green trees under natural daylight. +sun_bbyiifaqolbnljyh.jpg The labyrinth has a pale, sandy texture with irregular winding paths, viewed from an elevated angle amidst a backdrop of dense, green shrubbery and sparse dry bushes. +sun_bcgmbujhmpfkfqrr.jpg A circular stone labyrinth composed of rough, multicolored rocks is laid out on a flat ground amidst a wooded area, with tall, slender trees surrounding the open, earthy clearing. +sun_bynjhyzzyqtvsmai.jpg The labyrinth appears as an expansive circular brick pattern viewed from a slightly elevated angle, featuring alternating reddish-brown and gray bricks with a rough texture, set against a background of a low stone wall, parked cars, and distant buildings. +sun_bihwlfmttcnqehuq.jpg The labyrinth is a circular path with a rich green texture seen from a bird's-eye view, surrounded by grass, featuring a distinct pattern of concentric paths lined with lighter stones and a white central marker. +sun_bpbzvzqdpxcelehs.jpg This labyrinth features a circular pattern composed of a pathway lined with irregularly shaped stones on reddish-brown gravel, set in an outdoor grassy area with a faint view of fencing and structures in the background. +sun_bbasykvtutnbqdsp.jpg The labyrinth is composed of concentric circles made of uneven stone slabs with a mix of beige, gray, and brown hues, viewed from above at an angle in a grassy park environment with scattered trees, and features people walking along the paths. +sun_bzzdvtfliuoyqlqv.jpg The labyrinth features a circular pattern of light-colored stone paths winding through reddish-brown mulch, viewed from an elevated angle in a fenced grassy yard with trees, marked by a central wooden cross and a small stone bench. +sun_bpgjskwmpkarqxzb.jpg A circular green grass labyrinth with a symmetrical, spiraling path is viewed from an elevated angle, set against a verdant rural landscape under a clear sky. +sun_bzasczojshsnebna.jpg A circular stone labyrinth with a light gray color is embedded in green grass, viewed from a slightly elevated angle, with pathways defined by narrow grass strips and surrounded by a park-like environment with distant trees and people. +sun_bteqhtlyhtiotwxu.jpg The labyrinth features a circular design with a reddish-brown color and dark contrasting lines, viewed from above on a grassy background, with a distinctive central rosette pattern and a zigzag border. +sun_buybwuusqsjigglb.jpg The labyrinth is comprised of white stones forming a circular path on brown earth, surrounded by lush green grass and trees, with several people walking through it, giving an overhead view of a natural and serene setting. +sun_bvxtdmojtqfddvrj.jpg The labyrinth is composed of irregularly shaped, small brown stones arranged in a circular pattern with a central spiral, set on a sandy ground amidst a natural outdoor environment with rocks and sparse vegetation. +sun_biwcwomnlcgmilvy.jpg The labyrinth is a circular, stone pathway marked with beige, weathered stone and sparse grass between lanes, viewed from a low angle with forested hills and a bright blue sky in the background. +sun_brukqtlfkihinrgf.jpg A circular stone labyrinth with light gray rocks forming curving pathways on a brown, gravelly surface, surrounded by lush green foliage, is viewed from a slightly elevated angle, with a small statue on a bench at its center. +sun_bdisysjjfwkwrzgh.jpg The labyrinth is created from a series of light-colored, subtle paths etched into a green, grassy field, with people navigating its circular routes and a background featuring a chain-link fence, parked cars, and distant autumn-colored trees. +sun_bjfsjzjelfxtyzbl.jpg A circular stone labyrinth composed of alternating gray and tan bricks is set in a grassy field, with a winding path leading towards the center, surrounded by bare trees and an overcast sky in the background. +sun_bapdgkziwtoqkggj.jpg A green grass labyrinth viewed from an elevated angle features winding circular paths, with a soft, mottled texture and text overlay, surrounded by a blurred, indistinct natural landscape. +sun_bqrtujiujxuvfhtd.jpg The labyrinth appears as a circular pattern of light brown, earthen pathways with a sandy texture, viewed from an elevated angle, set against a backdrop of sparse vegetation and a few trees under a clear blue sky, with several people walking through it, highlighting its distinct spiral formation. diff --git a/utils/area/descriptions/sun/generated_descriptions/lake_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/lake_descriptions.txt new file mode 100644 index 0000000..9290d30 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/lake_descriptions.txt @@ -0,0 +1,20 @@ +sun_bqxpaserueekkioj.jpg The lake appears deep blue with a slightly rippled texture, viewed from a wide, eye-level perspective, surrounded by dense green trees and a small concrete structure near the shoreline in the background. +sun_bubczknuxswlarsp.jpg The lake has a calm, mirror-like surface reflecting overcast skies, bordered by gently rolling hills and scattered patches of vegetation, with a group of geese visible in the foreground on a snowy, grassy shoreline. +sun_bnrwcoftgizmknfr.jpg The lake, viewed from a foreground of lush green vegetation and small shrubs partially submerged in water, reflects a deep blue hue bordered by rugged, snow-capped mountains and dense coniferous forest under a clear sky. +sun_azqthtbatlkavgcu.jpg The lake is a deep blue, reflecting the sky with a slightly rippled texture, viewed from a low angle with a backdrop of dense, autumn-colored trees and a small, red-roofed cabin nestled among them. +sun_btmpbcqcmuifuzaw.jpg The lake features clear, reflective water with a greenish hue, surrounded by lush greenery and framed by rugged, towering rock formations and distant pine trees under a clear blue sky. +sun_bttouhqebwibakjr.jpg The lake features a calm, reflective surface with deep blue hues, framed by dense, dark green forest and jagged mountains in the background, under a bright sky scattered with fluffy white clouds. +sun_bimoeziaopjydcma.jpg The lake is a serene, mirror-like body of water reflecting snow-capped mountains and lush, dense forests under a cloudless, bright blue sky, creating a symmetrical and tranquil landscape. +sun_bnhmupioivfsjszz.jpg The lake appears bluish-gray with a smooth texture, viewed from an elevated perspective with surrounding dry, rugged hills and sparse green patches, and a dense cluster of green trees in the foreground. +sun_aoikosjowjxkztio.jpg A deep blue lake with a smooth texture is viewed from an elevated angle, surrounded by lush green fields and hills, with distant mountains and a bright sky dotted with white clouds in the background. +sun_baqjezuqsveatsri.jpg A tranquil lake seen from between pine trees exhibits a reflective, dark teal surface, bordered by a snow-covered rocky shoreline, with distant snow-capped mountains under an overcast sky. +sun_bhrvstddotlbjlbg.jpg The lake reflects the clear blue sky and surrounding evergreen trees nestled beneath a series of rocky mountains, with a foreground composed of scattered boulders partially submerged in the calm water. +sun_bihpdfituarmevbb.jpg The lake appears as a serene, deep blue-green expanse reflecting the vibrant autumn foliage and is bordered by a sandy shore with a quaint wooden building nestled among mixed forest against a clear blue sky. +sun_bhfmnjgjxiulyvde.jpg A tranquil lake with deep blue waters is framed by thin, leafless tree branches in the foreground, bordered by dense dark green coniferous forests on the horizon under a clear, pale sky. +sun_adzovlqpmagacmva.jpg A serene lake with dark, reflective waters is nestled among dense, verdant coniferous forests, with a rugged, tree-lined mountain and a clear sky in the background, viewed from a slightly elevated perspective. +sun_bybzhyfhuwxwedvv.jpg The lake appears to be a tranquil body of water with a bluish-green hue, seen from a low, slightly elevated angle, surrounded by lush, dense greenery, with birds perched on logs floating on its surface, adding to the serene natural setting. +sun_agqkmpgtfsykydsz.jpg The image shows a deep blue lake surrounded by snow-capped mountains, viewed from an elevated angle with evergreen trees in the foreground, and features a distinct island in the middle. +sun_bglhheoqmwhwfuzc.jpg The lake features rippling dark blue waters reflecting a forest-lined shoreline with tall evergreens under a bright sky, set against a background of lush rolling hills and a rocky, sunlit mountain. +sun_avbdzkswapneahnf.jpg The lake appears as a serene expanse of dark blue water framed by rolling hills of golden-brown hues and lush greenery, set under a partly cloudy sky that creates a picturesque contrast. +sun_asvqshfqcbfycqly.jpg The lake appears a serene blue-gray with a smooth texture, viewed from an elevated angle surrounded by snow-dusted mountains, with scattered greenery and a few rustic structures in the lush valley foreground. +sun_agqnaqaigkgpfvia.jpg A deep blue lake with a smooth surface is captured from an elevated viewpoint, surrounded by snowy mountains and evergreen trees under a vivid purple sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/landfill_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/landfill_descriptions.txt new file mode 100644 index 0000000..bec7059 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/landfill_descriptions.txt @@ -0,0 +1,20 @@ +sun_afdfmwcksfpubeng.jpg The landfill appears as a sprawling expanse of mixed, unevenly piled waste in predominantly muted earth tones, with patches of white and gray amidst dark brown ground, viewed from a low vantage point, accented by heavy machinery in the distance against a cloudy sky, and a "Trucks This Way" sign in the foreground. +sun_amisnusxbmuzsssq.jpg A sprawling pile of mixed waste in varied hues of brown, white, and gray is being dumped by a large yellow truck, set against a partly cloudy sky with another yellow dumpster and a person on the periphery. +sun_amlchdstzxnoukss.jpg A sprawling accumulation of mixed-colored waste with textures ranging from smooth plastics to rough paper, viewed from the ground level amid a clear blue sky and dry earth, features a large yellow bulldozer in the foreground and a seagull flying overhead. +sun_agqbgzknzzqyabjd.jpg A mound of predominantly metallic waste with a coarse, shiny texture is piled high behind a building, with scattered debris and a bicycle in front, set against a backdrop of industrial structures under a clear sky. +sun_apdevdnyvhgqjjea.jpg A large heap of mixed waste predominantly light-colored is scattered across the foreground with varied textures, including plastic and metal debris, while a bulldozer on the top left disrupts the otherwise level horizon against a clear, pale sky. +sun_absoxzwctrlnjgvz.jpg The landfill appears as a large, uneven mound of mixed waste in various shades of white, brown, and yellow, contrasted against a backdrop of overcast skies and verdant trees, with a distinct earth-mover vehicle positioned prominently among the debris. +sun_asyzwfvcbyplqvly.jpg A large, rugged yellow vehicle is perched beside a pile of mixed-colored waste against a backdrop of trees under a clear blue sky, with various plastics and debris creating a bumpy texture. +sun_aiujazjeykjpbnon.jpg A large bulldozer with a rusty yellow hue and rugged texture is situated in a landfill overflowing with multicolored bags and debris, under a partly cloudy blue sky with a green hill in the background. +sun_agcncuqyaejmzzse.jpg A densely packed mound of multicolored debris, predominantly white, black, and brown, is observed in a chaotic heap, with scattered plastic bags, metal scraps, and a notable blue chair among the clutter, set against an indistinct, pale background. +sun_anfpbucsldafklke.jpg A large pile of mixed waste with varied colors and textures is seen in front of a yellow bulldozer, set against a backdrop of earthy mounds and a grey, industrial structure. +sun_agomkiefacergwqs.jpg A cylindrical concrete structure with protruding metal rods and a central pipe rises from a mixed-texture, earth-toned pile of debris and waste materials, surrounded by a barren landscape under a pale sky. +sun_agvrlizsptcmvnfn.jpg A mound of mixed-color waste materials, including plastics and paper, is scattered across the foreground, with nearby plumes of smoke rising amidst a backdrop of lush green vegetation; several individuals appear to engage with the debris in various casual poses. +sun_akqilnjmtfkztydl.jpg The low-resolution image depicts a landfill with a chaotic mix of muted earth tones and scattered colorful debris, as a lone bulldozer appears silhouetted against a bright sky filled with numerous birds, all set against a distant horizon. +sun_ayzmllfqwibbvunk.jpg The landfill displays a chaotic mixture of trash with predominantly brown and grey tones, featuring scattered debris and smoke rising from small fires under a bright sky, with metal barrels in the foreground and a grassy hillside in the background. +sun_asvmjvpndrioruup.jpg A large, yellow bulldozer sits amidst a sprawling, uneven heap of multicolored garbage with predominantly brown and white tones, overlooked by a stack of wooden crates on the left, while a distant view of a town with red-roofed houses and green trees provides a contrasting background. +sun_annqxfjhqhxndvdm.jpg A sprawling heap of mixed garbage in various colors, primarily white and multicolored, with a coarse texture, seen from an elevated angle against a backdrop of greenery, featuring indistinct heaps of waste material and occasional blue and orange items. +sun_amoaxmmkvhkzhoyj.jpg A sprawling pile of waste in various colors and textures dominates the foreground, with earth-moving machinery against a clear blue sky and scattered birds flying above the scene. +sun_avwiunzavdpelopz.jpg The landfill appears as a chaotic heap of predominantly gray and multicolored debris with a rough, uneven texture, viewed from a slightly elevated angle, surrounded by an open, bright environment with scattered waste and faint structures in the distance, highlighted by the presence of people and a child, which provides a sense of scale and human interaction. +sun_aoaveazphgynqqmy.jpg The landfill is a sprawling mass of predominantly white, brown, and black debris with coarse textures, viewed from an elevated angle against a barren landscape under a cloudy sky, with scattered seagulls and a garbage truck partially visible in the background. +sun_aeynbgmozooyfrpf.jpg Amidst an overgrown, earthy backdrop of grasses and shrubs, the landfill features a chaotic heap of black and gray plastic containers, scattered white debris, and wooden planks interspersed with hints of rust and dirt, presenting a cluttered and textured view from a slight angle. diff --git a/utils/area/descriptions/sun/generated_descriptions/landing_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/landing_deck_descriptions.txt new file mode 100644 index 0000000..8ffdae5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/landing_deck_descriptions.txt @@ -0,0 +1,20 @@ +sun_bqsqgonunzujipwv.jpg The landing deck, viewed from an elevated angle, features a light grey color with a smooth texture, surrounded by a misty ocean backdrop with a visible nearby helicopter, and distinguished by the prominent yellow "RAPPAHANNOCK" label on a rail. +sun_akqpapkaruexihsy.jpg The landing deck features a gray, metallic texture with visible runway lines, viewed from an elevated angle with an aircraft carrier dockside to the left and a helicopter flying over a cloudy sea in the background. +sun_aqeihowlpdprvqfx.jpg The landing deck is gray and expansive with a flat, sprawling surface, viewed from the front, and set against a vast ocean backdrop, with multiple aircraft visibly parked and a towering superstructure rising prominently at the center. +sun_aueihcyflbrclvcu.jpg The landing deck appears dark gray with a textured surface, viewed from a low angle, set against a misty horizon, featuring a military transport plane in mid-landing with its propellers spinning and a small vehicle to the right. +sun_btrpsakutynifgbr.jpg A dimly lit aircraft carrier landing deck appears from a low perspective, with a dark navy-blue surface marked by linear grooves and patches, bordered by a black night sky and illuminated by the blurred red-orange trails of an aircraft taking off, while several figures in military attire stand around a stationary jet, highlighting the stark contrasts in light and shadow. +sun_bydzzrftbbzfsmgc.jpg The landing deck appears as a flat, gray surface with a subtle textured pattern typical of aircraft carriers, viewed from an angled side perspective, surrounded by a backdrop of calm blue ocean and clear skies, with a group of military personnel and a helicopter as distinguishing features. +sun_ajkpfexjbfnkxgga.jpg A grey, metallic landing deck with subtle water reflections is viewed from an angled perspective, featuring crew members and aircraft on board amidst an expansive ocean and clear blue sky. +sun_ayllbnjjauzjlwcy.jpg The landing deck is a vast, flat, dark gray surface with a slightly textured appearance, viewed from a low-angle perspective that highlights a launching aircraft carrier environment, featuring bold white runway markings and set against a clear blue sky with an aircraft and personnel in safety gear prominently visible. +sun_acggcmmnybcunkdr.jpg A gray aircraft carrier landing deck with a faded grid pattern and various painted lines is viewed from a slightly raised angle, surrounded by ocean, and features crew members in colorful uniforms amid steam or exhaust near a jet preparing for takeoff. +sun_akmjooerqvguisxs.jpg The landing deck is a dark gray, textured surface marked with white and yellow lines, positioned at a low angle leading to an open ocean backdrop, with a fighter jet taking off and two personnel visible at the edge. +sun_abwcvspngsowdwzj.jpg A grey, flat landing deck with visible yellow lines and parked military jets is surrounded by naval personnel forming a line along the edge, against a hazy waterfront backdrop. +sun_bdwztkogbatnycbv.jpg The landing deck is a vast, gray, textured surface viewed from an elevated angle, populated with numerous aircraft and personnel in a naval setting with a clear oceanic horizon in the bright background. +sun_bcsltrqbbfzsumzm.jpg The landing deck is a flat, gray surface with a worn texture, seen from a frontal perspective, with helicopters positioned in a line against a backdrop of the ocean and distant land. +sun_aqriexdzfxrfdsco.jpg The landing deck is a dark gray surface with a rugged texture, viewed from an elevated angle beside a navy helicopter, surrounded by a bright blue ocean with churning waves in the background. +sun_bnhqmudtiyfqyrqo.jpg The landing deck is a dark, muted gray with a smooth texture, seen from an elevated side angle, positioned near calm blue waters with green hills in the background, and features distinct yellow and white line markings alongside personnel guiding helicopters. +sun_baldshqqmhpwjsbz.jpg The landing deck is predominantly gray with a yellow centerline, featuring textured painted markings, viewed from an aerial angle with an aircraft descending against a backdrop of open ocean. +sun_avdypgsnqqsbukex.jpg The landing deck features a reflective, wet, dark gray surface surrounded by a cityscape backdrop and a distinctive, parked Royal Navy aircraft, primarily gray with roundel markings and visible near an industrial-looking structure. +sun_bpxsarqoxvpadpcd.jpg The landing deck appears as a smooth, dark gray surface with visible painted markings, slightly glossy from the light, viewed from a low angle with the sea and sky forming a cloudy, overcast backdrop, and is characterized by the presence of aircraft and personnel indicative of an active aircraft carrier environment. +sun_aaddnyjyhfcpopua.jpg The landing deck appears gray and textured with markings visible in a low-angle perspective, set against a clear blue sky and ocean backdrop, featuring a jet and personnel in distinctively colored gear. +sun_btebelzkcornlstk.jpg The landing deck features a gray, textured surface with visible patches of rust and markings, viewed from an elevated angle that reveals several military aircraft lined up against a backdrop of water and a distant coastline. diff --git a/utils/area/descriptions/sun/generated_descriptions/laundromat_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/laundromat_descriptions.txt new file mode 100644 index 0000000..31ebb1a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/laundromat_descriptions.txt @@ -0,0 +1,20 @@ +sun_afcrlioyduvyuqov.jpg The laundromat features white washing machines with black circular doors lined up against the wall, a tan tiled floor, overhead fluorescent lighting, and a person in a dark jacket facing away beside a metal laundry cart. +sun_addjsxnyjothzmik.jpg The laundromat features a series of front-loading stainless steel washing machines on the left with digital displays and black handles, set against a light blue wall with overhead fluorescent lighting and a row of white top-loading machines extending into the background. +sun_aifyvnoilbmcahci.jpg A dimly lit laundromat with a retro beige and black color scheme features a row of large, front-loading dryers and washing machines against the wall, with a solitary figure standing at the machines, tiled flooring, and a small table with circular stools in the foreground. +sun_avtjxktbdqzfiddj.jpg The image shows a dimly-lit laundromat with off-white tiled floors, a row of front-loading washing machines on the left, a table with seating in the center, and stacked dryers on the right, featuring a worn and slightly sepia-toned appearance with two people standing conversing. +sun_akgssnbxysnviuon.jpg The laundromat features a series of orange washing machines with chrome-rimmed doors and visible clothing inside, viewed from a slightly angled side perspective, set against a tiled floor background. +sun_azivpegdnbadvnnh.jpg A small interior laundromat with three metallic washing machines, a glossy black floor, visible modern pipes along the white walls, and metal tables and chairs arranged in the foreground with a single windowed door in the back. +sun_agibmhynwveuoqpw.jpg A row of white, front-loading dryers with circular glass doors and numbered panels is set against a pale yellow wall in a laundromat, with metal laundry carts and a blue folding table in the foreground. +sun_aaxufyiupegixznm.jpg The image shows three front-loading, white industrial washing machines with black circular doors and red "Tulmac" logos, positioned side-by-side, against a beige wall with digital displays, and a person wearing a beige hat and camo jacket seated in front of them, smiling. +sun_anikjvdrxrywuyvr.jpg The laundromat features a vibrant pink counter running parallel to a row of front-loading washers with a light blue wall background, complemented by decorative plants, colorful seating, and a checkered floor, viewed from an elevated angle. +sun_aquvskizdeovxify.jpg The image shows a laundromat with a row of blue industrial dryers with circular black windows against a plain white wall, and white washing machines with angular tops positioned in the foreground. +sun_allnpurctyxsucxh.jpg A low-resolution image of a laundromat interior shows a pastel blue wall with wooden paneling, a yellow perforated laundry basket on a white countertop with scattered clothes, a vintage coin-operated machine, and various signs in a cluttered but organized space. +sun_awigfehbvyxhksxu.jpg The laundromat features blue and gray washing machines lined up against the right wall, with large windows in the background providing a view of trees and parked cars, while the floor tiles reflect subtle natural light. +sun_ahmgkuhrcsxibjkt.jpg Rows of shiny stainless steel washing machines with numeric labels line a large space, with a tiled floor and several informational signs hanging from the ceiling, all under bright fluorescent lighting. +sun_ansnqbzjjdmptkfk.jpg A woman in a striped outfit leans over an open washing machine in a laundromat with industrial-looking machines in silver and teal hues, set in a cluttered background of utility pipes and boxes. +sun_acvnqkkkteczvphc.jpg The laundromat features a pale beige interior with a row of stacked white machines on the right, viewed from a low-angle corner perspective, accompanied by a red countertop and a plant, set against a bright windowed backdrop. +sun_aqlmlmhcymibkswi.jpg The laundromat features red front-loading washing machines with silver doors, arranged in a row on a tiled floor, with a woman crouching in front of one machine in a brightly lit room displaying instructional posters on the walls. +sun_aydyejyvrayvqwqe.jpg The laundromat features a row of vintage-looking white and beige washing machines with circular doors and black accents, viewed from a corner perspective with a tiled floor and green plastic baskets stacked in the background. +sun_atfkmfimogsmmeuu.jpg The laundromat features large stainless steel dryers, a tile floor, and a wall adorned with instructional signage, with a woman posing near the machines, all under fluorescent lighting. +sun_aszosxvzkwjmxxhb.jpg The laundromat features a long row of stacked cream-colored dryers with visible control panels, a bright blue folding table lined with white laundry baskets, and a checkered blue and white floor, seen from a slightly elevated, straight-on angle, within a simple white-walled interior. +sun_afuigikuautmocyp.jpg The laundromat features a row of stainless steel washing machines with front-loading doors, placed diagonally along a beige wall adorned with colorful city-themed signs, murals, and fluorescent lighting, while bright signage contrasts with pastel flooring and abstract wall art. diff --git a/utils/area/descriptions/sun/generated_descriptions/lecture_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/lecture_room_descriptions.txt new file mode 100644 index 0000000..71db79a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/lecture_room_descriptions.txt @@ -0,0 +1,20 @@ +sun_bsioyghsxklgwovr.jpg The lecture room features rows of attendees sitting in blue seats facing a beige-walled stage, where a speaker in a gray suit stands at a podium with a floral-patterned fabric, adjacent to a projection screen displaying a partially visible title against a backdrop of a tall, textured curtain. +sun_bfqrwudukxndulkl.jpg The lecture room, viewed from the back, features brown folding chairs arranged in rows on a polished tiled floor, with warm, dim lighting casting shadows on the white walls and a ceiling grid pattern accentuated by evenly spaced recessed lights. +sun_bryorwavmxdkirkj.jpg The lecture room has a curved arrangement of wooden tables paired with black chairs, set on a brown carpet, featuring two large projection screens at the front against a cream-colored wall with ceiling-mounted projectors above. +sun_bsfbcivfsajfdjmu.jpg The image shows a lecture room with rows of light gray, plastic chairs and rectangular tables arranged in a grid pattern on a dark, carpeted floor, featuring a wooden podium at the front against a backdrop of pale, beige walls with wood panel accents, viewed from an elevated angle. +sun_afpeytvjxqccsnwz.jpg The lecture room features light green walls with a large, dark green chalkboard at the front, arranged in a grid formation with wooden desks and green chairs, while a row of windows on the left wall allows natural light to illuminate the space. +sun_bqdcoihzuedpvsuq.jpg The image depicts a brightly lit lecture room with rows of seated individuals, featuring a mix of colorful clothing, a muted carpet, and a large, diffuse window light in the background. +sun_bgduyjxoaesmsrdd.jpg A lecture room filled with attentive students features light wood desks with black edges arranged in tiered rows, a lecturer in a dark suit standing at the front near a white wall and large windows with dark curtains, and a glossy brown floor reflecting the overhead lights. +sun_ahhtrmwvoadbfucw.jpg The lecture room has beige walls and ceiling, with rows of black chairs and light wooden desks, a large black chalkboard on the front wall, and a projector hanging from the ceiling accompanied by a pull-down screen, while large windows with vertical blinds allow natural light to filter in on the right side. +sun_bcjwxsjwsvkfskep.jpg The lecture room features light wood flooring and matching chairs with a clear, structured layout, viewed from a frontal angle with white walls and a ceiling dotted with round lights and a projector, creating a clean and modern appearance. +sun_bvbkdbofywzoqidj.jpg The lecture room features rows of blue chairs and gray tables, with a group of people engaged in board games under large windows that provide a view of a red-brick building and greenery, all bathed in soft daylight filtered through half-open blinds. +sun_bisjjmduzocgpqms.jpg The lecture room features rows of wood-grain desks paired with black, perforated-back chairs, positioned diagonally toward the front, within a well-lit space with large windows and a plain, light-colored wall backdrop. +sun_ajeuwgbnuvfeqcjk.jpg The lecture room features a series of beige desks and chairs placed in rows facing green chalkboards on a yellow-painted wall, with a polished floor reflecting the light and a whiteboard adjacent to a blue-fabric bulletin board on the right. +sun_abgprjcremjxcjah.jpg The lecture room features light brown walls and a wooden-textured floor, with red-seated chairs paired with beige desks arranged in rows, viewed from a corner with beige curtains partially covering tall windows. +sun_aovvekkwplwhjrhx.jpg The lecture room features a series of gray computer desks arranged in rows, each topped with monitors displaying blue screens, while the view reveals a carpeted floor, white walls, and fluorescent lighting from a high ceiling, with two instructors standing at the front near a projection screen. +sun_acmjoyjdyftfmmga.jpg The lecture room features rows of beige and black seats arranged in an amphitheater style, with a central podium and projector under muted lighting, set against a backdrop of wooden paneling and white display screens. +sun_borebnjfslpabwdy.jpg The lecture room is warmly lit with wooden chairs, features cream walls adorned with framed portraits, and a projection screen at the front displaying a presentation, as seen from a rear viewpoint with several attendees seated and facing forward. +sun_aarftvcncdeepedy.jpg The lecture room has white walls and ceiling with fluorescent lighting, blue carpet flooring, and large windows covered by blinds on the left side, featuring rows of white desks and gray chairs populated by students, some with notebooks and personal items on the tabletops. +sun_axsmliufvokvueul.jpg The lecture room features a curved arrangement of wooden tiered seating with a light wooden floor, viewed from an elevated angle, against a backdrop of white walls and a ceiling with sleek, modern lighting strips. +sun_anmbrujyjvxqkdtt.jpg The lecture room features a series of blue plastic chairs with attached light wood desks, arranged in rows on a gray carpet, facing a large green chalkboard that spans the width of the room, with bookshelves filled with red books and a projector in the background near windows providing natural light from the right. +sun_befmklkjwmrlvjpr.jpg The lecture room, viewed from the back, features rows of light wood tables with black chairs on a grey carpet, while large windows on the right with a view of tree branches outdoors brighten the beige walls and ceiling with recessed lighting. diff --git a/utils/area/descriptions/sun/generated_descriptions/library_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/library_descriptions.txt new file mode 100644 index 0000000..734886b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/library_descriptions.txt @@ -0,0 +1,20 @@ +sun_bqbgcqdxwndclqel.jpg The library circulation desk features a wooden counter with a computer, overhead pendant lights, reserved shelves lined with books, and a sign hanging above, set against a backdrop of white walls and indoor plants. +sun_biqzgeqlvvbnqahe.jpg The image shows a busy library interior with white walls and columns, filled with natural light, displaying orderly rows of wooden desks and white plastic chairs, where people are seated reading or studying, and bookshelves line the background. +sun_azfzjeapfkebgdco.jpg The library features warm wooden shelves filled with books, set against a backdrop of a grand stained glass window, viewed from a symmetrical central aisle perspective with cozy seating in the right foreground. +sun_bduakihfdilizisr.jpg The library image depicts a room with dark, textured shelves filled with numerous CDs, seen from a side viewpoint, with audio equipment and a smooth, light-colored wall in the background. +sun_bvvmhallnvsopxsb.jpg The library features a warm-toned, wooden card catalog cabinet beside a neatly arranged desk cluttered with books and potted plants, surrounded by numerous densely packed bookshelves in a well-lit room with a neutral carpeted floor. +sun_bccjfelykmkuewiu.jpg The library features soft beige and cream colors with a textured carpet floor, showcasing a spacious interior adorned with large columns from a ground-level front view, surrounded by bookshelves and computers, along with green potted plants accentuating the classic architectural ambiance. +sun_bohzkwamgaqtjwfw.jpg The library features rows of bookshelves filled with vertically stacked books of various colors, centered around a passageway with a Romanesque archway, flanked by ornate Corinthian columns under warm ambient lighting. +sun_bbmqgzhepynfxmip.jpg The library features warm wooden tones and a textured interior with multiple round tables and students seated and focused on reading, set against tall, filled bookshelves and a high ceiling adorned with bright pendant lights. +sun_bbfykphopiepjizf.jpg A wooden table with matching chairs is centered in the image, surrounded by tall bookshelves filled with various colored books and a computer setup visible on the left, all set against wooden panel walls. +sun_bgiucsbjswhjbhtk.jpg This library interior features earthy brown shelves filled with colorful books, overhead painted murals of western landscapes and animals, a circular table with matching chairs at the center, and a simple, smooth beige floor and ceiling with round light fixtures, viewed from a corner angle. +sun_bforrnptasikypcb.jpg The library features a dimly lit room with a warm, wooden table and mismatched wooden chairs set against packed bookshelves with a cream-colored backdrop, where a central window flanked by shutters adds a touch of symmetry. +sun_atkvxwmfvnndjgkr.jpg The library features wooden shelves densely packed with predominantly dark-colored books, many with gold or ornate detailing, viewed straight on with a background of neatly arranged, multicolored spines and some shelving signage. +sun_bihhspatfwqflbqa.jpg This low-resolution image shows a library with rows of colorful books on dark shelves against a backdrop of white walls and ceiling with hanging lights, seen from an aisle perspective with wooden tables and chairs arranged in the foreground. +sun_akphnxzwmsgdgkig.jpg The library features warm wooden shelves filled with books, scattered with colorful banner decorations hanging from the ceiling, visible from a high-angle viewpoint that captures a spacious and well-lit interior with several reading desks and modern computer stations around. +sun_dmhvkxmcnagmtmpx.jpg The library is a classic brick building with a prominent arched entrance featuring white columns, framed by delicate white blossoms from an adjacent tree, with pavement and a streetlamp enhancing its quaint urban setting. +sun_bcmrfursonoewhax.jpg The library features warm wooden shelves and light-colored walls adorned with a mural, seen from a corner angle with large windows letting in natural light, and is distinguished by stylish hanging chandeliers. +sun_dvmbwaursnzdstql.jpg The library has a neoclassical architectural style with light brown brick and stone detailing, featuring large columns and intricate stone carvings; it is viewed from a low angle with a clear blue sky in the background, emphasizing its symmetrical façade and historic design elements. +sun_bkxzsmmjfhzbjgvo.jpg The low-resolution image shows a library with a row of books on shelves in the foreground, a centerpiece of red and white flowers in a black container placed on top, and a framed notice to the right, with large circular ceiling lights and sunlit windows in the background. +sun_aglfbuoqsxeijdoh.jpg A colorful library section with red shelving units fully stocked with various brightly colored books is viewed from the front, accompanied by two mobile white book display units filled with children's books, set against a neutral wall showcasing art pieces. +sun_bavljnjvwieiepak.jpg The library features light-colored wooden shelves filled with books, a central book cart with a variety of items, and a warmly lit interior with a beige and white color scheme, surrounded by a tidy, organized environment, including a seated person at a computer and a central desk with staff. diff --git a/utils/area/descriptions/sun/generated_descriptions/lido_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/lido_deck_descriptions.txt new file mode 100644 index 0000000..71f66e2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/lido_deck_descriptions.txt @@ -0,0 +1,20 @@ +sun_bskcdijhdeysvulk.jpg The lido deck features a light beige wooden texture with rows of blue and white striped lounge chairs, partially occupied by sunbathers, set against a backdrop of a bright green waterslide and white radar domes under a clear blue sky. +sun_aqnhvnbujncyvlvy.jpg The lido deck features a central blue swimming pool surrounded by a warm wooden deck with stainless steel handrails, accompanied by two small octagonal hot tubs, numerous blue reclining chairs, and a distinctive curved water feature set against an open sky. +sun_bwuxgcioxojsqhrn.jpg The lido deck features a vibrant blue pool surrounded by crowds of people on beige sun loungers, with a distinctive circular, white, glass-walled structure in the background under a partly cloudy sky. +sun_bpoqllikynanvewl.jpg The lido deck features a vibrant blue pool surrounded by mosaic-patterned red and purple tiles, viewed from a shaded area with blue pillars, set against a backdrop of lounge chairs and a modern ship structure with a sculpture, all under a clear sky. +sun_bpmhvwjpoidrgomc.jpg The lido deck features a bright blue pool surrounded by wooden-textured decking and yellow umbrellas, viewed from an elevated angle with a backdrop of cruise ship structures and crowds lounging under a clear sky. +sun_bswhyklbabjfjelz.jpg The lido deck features a circular wooden pool surrounded by tiered seating with white tiled backs, set under a semi-open canopy with curved metal supports, against a backdrop of a poolside bar attended by people and nautical decor. +sun_bfdttzmzucrhegzu.jpg The lido deck features a brown wooden texture with lounge chairs and an empty blue-tiled pool, viewed from an elevated angle, with a distinctive yellow funnel and colorful flags against a cloudy sky in the background. +sun_bayxalnbprpgffdk.jpg An elevated view of a cruise ship's lido deck shows a bright blue water slide leading into a small pool surrounded by sunbathers on blue lounge chairs, with orange lifeboats lining the deck and a distinctive red funnel rising into a clear blue sky above the ocean horizon. +sun_aqlzvqgfpsoyhncy.jpg The lido deck features a bright blue, serpentine water slide set in a bustling, elevated viewpoint with people relaxing on deck chairs, surrounded by a backdrop of the open sea and characterized by red and white accents on the ship's structure. +sun_bmilvywmxxdfpkwu.jpg The lido deck features a vibrant mix of blue and white tones with pools and loungers, curved railings, and a dramatic backdrop of misty mountainous terrain, viewed from an elevated angle emphasizing its open-air leisure design. +sun_bifklbtjelvgwbam.jpg The lido deck features a wooden-textured floor surrounding two blue-tiled swimming pools with red borders, seen from an elevated vantage point, set against a backdrop of a large white cruise ship structure with multiple decks, lounge chairs, and people enjoying leisure time under a partly cloudy sky. +sun_bywcummnydyjpvff.jpg The lido deck, viewed from an elevated angle, features two bright blue curving waterslides adjoining a rectangular pool surrounded by orange-tiled borders and crowded with sunbathers on blue and white striped loungers, with the background showcasing a cruise ship's railings and a lifeboat against a clear blue sea and sky. +sun_bqcjoxmccgwihjuc.jpg The lido deck features a rectangular swimming pool with light blue water and a tiled pattern, surrounded by a rough-textured wooden deck, with white lounge chairs and a ship's structure in the background under a partly cloudy sky. +sun_arspdprcolobjwrr.jpg The lido deck features a vivid blue pool surrounded by sleek white railings and chairs, observed from a slightly elevated viewpoint, with large white spherical structures and colorful flags decorating the ship's upper deck against a clear sky. +sun_aexmbmznlkltsmmu.jpg The lido deck features a vibrant blue spiral waterslide with a smooth texture, viewed from an elevated angle, set against a backdrop of white railings and red accents, with a prominent red smokestack in the distance and scattered lounge chairs surrounding a multi-level pool area. +sun_bwapxxneauuzqrtd.jpg The lido deck features a light blue pool bordered by textured tile with a dolphin mural, surrounded by wooden deck chairs with blue cushions, and enclosed by white railings under a clouded sky. +sun_bzleeoayogumzhyj.jpg A low-resolution image depicts a lido deck featuring a blue-tiled pool with green stripes, surrounded by white guardrails and a central sculpture of two bears on a rocky platform, set against a background with warm-toned, illuminated architecture and minimal human presence. +sun_bfbdsmrsscopeeqo.jpg The lido deck features a turquoise water slide spiraling above sun-filled, busy lounging areas with blue and white striped chairs, set against the backdrop of white ship structures and antennas under a clear blue sky. +sun_biyuihemgrmawema.jpg The lido deck features a wooden-textured surface with a bright, multicolored waterslide leading into a turquoise pool, overlooked by a towering red funnel against a clear blue sky, surrounded by sun loungers and a bustling deck filled with people and maritime activity. +sun_atkflghwmvynnjuc.jpg A lido deck is visible under a clear sky, featuring a beige-paved floor, a central dolphin statue near lounging chairs, and a mountainous landscape in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/lift_bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/lift_bridge_descriptions.txt new file mode 100644 index 0000000..8cee43e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/lift_bridge_descriptions.txt @@ -0,0 +1,20 @@ +sun_blblulildyncrsov.jpg The lift bridge is characterized by its rust-brown metallic structure with distinctive cross-bracing, viewed from a side angle against a clear blue sky, with a river and lush tree-lined banks serving as the scenic backdrop. +sun_bxjarldflptzeaht.jpg The lift bridge appears dark metal with a truss structure, viewed from a side angle across a river, featuring prominent towers with pulley systems against a background of distant hills and a partly cloudy sky. +sun_asbweabzpslcqacw.jpg The lift bridge is a small, gray metallic structure spanning a narrow canal, viewed from a distance with a red brick industrial building in the background and lush greenery along the water's edge in an overcast setting. +sun_bpfcwkuqikflrvlp.jpg The lift bridge is a large, metallic structure with a lattice design, its rusty hue reflecting the warm glow of the setting sun, viewed from a side angle with a calm water surface below and a lighthouse in the background against a clear sky. +sun_bfsncbtvdbhyarox.jpg The lift bridge is a metallic gray structure with a textured, industrial finish, viewed from the side against a background of old brick buildings and a calm reflective water surface, featuring prominent rectangular support beams and lattice rail details. +sun_bvhyciwhwphjbpjz.jpg The silvery-gray lift bridge stands prominently in an elevated position, stretching across a deep blue river, surrounded by lush green forests and rocky embankments, with a boat passing underneath creating a trail in the water. +sun_bqrhvorcgtmdfnlu.jpg The white lift bridge with a simple, clean texture is seen from a side angle, spanning over a calm canal in a quaint town setting featuring a row of traditional gabled buildings, with the bridge's supporting beams and prominent red traffic lights standing out against the surrounding architecture. +sun_beuiqdveoycrtnhf.jpg The lift bridge appears in a dark steel gray color with a lattice truss structure, viewed end-on at water level, set against a cloudy sky, spanning a wide waterway with a large boat passing underneath and people standing on a snowy sidewalk. +sun_bumlyshkologqjgc.jpg The lift bridge, viewed from a slightly elevated angle, features a dark, metallic structure with visible trusses and two prominent towers at each end, set against a river with a tree-lined shore and a clear sky backdrop. +sun_bipybjqcqzupbbfb.jpg The lift bridge appears silver and metallic with a lattice structure, viewed from a side angle, set against an overcast sky with water and sparse urban surroundings visible in the background. +sun_bylzknmbiopycyev.jpg The lift bridge, viewed from a riverside angle, features a rusty brown metallic structure with truss patterns, two white-topped towers, and is set against a backdrop of lush greenery and calm river reflections. +sun_atssabatdgvmwcwz.jpg The lift bridge is industrial grey with a metallic texture, seen from the side in a partially raised position, standing over a canal with a narrowboat underneath, set against a background of cooling towers, greenery, and a cloudy sky. +sun_bwuxlwswgcauwbao.jpg The lift bridge is a metallic gray structure with a lattice framework, seen from a side angle with a large blue sky and wispy clouds above, adjacent to a brick building by the water, with the bridge's elevated middle section creating a tall rectangular gap. +sun_bzyojklpykxmrthe.jpg The lift bridge, viewed from across a calm body of water at twilight, features a bluish-grey metallic structure with illuminated towers reflecting off the water, set against a background of distant city lights and a cloudy sky. +sun_brumyolnofphhetk.jpg A gray metallic lift bridge with a lattice structure stretches horizontally, silhouetted against a pale dusk sky; it stands above a waterway with a ship passing underneath, flanked by a crowd of onlookers and street lamps on a nearby walkway. +sun_akhpvwxqaaqnjbmm.jpg The lift bridge is a pale beige structure with a lattice framework, viewed directly from the approach road in a vertical pose, situated against a backdrop of a clear blue sky and tree-covered hills, with overhead cables and cross-bracing prominently visible. +sun_btmidgbuoiaqbzkt.jpg The lift bridge is depicted from a frontal viewpoint, appearing as a solid gray structure with a textured concrete finish, spanning a calm waterway flanked by grassy banks, with a serene backdrop of trees and a cluster of colorful buildings. +sun_bgrngltrzaeyxdbn.jpg The lift bridge appears black with a metallic texture, viewed from the side with its tall towers and cables prominently visible, set against a cloudy sky with cityscape elements in the background. +sun_apjgbufdnsbgwjtn.jpg The lift bridge features a mostly white and slightly weathered texture, viewed from a frontal angle with its twin towers rising vertically, set against a backdrop of urban buildings, a clear blue sky, and a calm river with reflected light patterns. +sun_bcfaaimgvlveuiww.jpg The lift bridge, viewed from a low angle over water, is a light grey with a crisscrossing metal framework, featuring two tall tower structures at either end set against a clear blue sky with an industrial landscape in the distance. diff --git a/utils/area/descriptions/sun/generated_descriptions/lighthouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/lighthouse_descriptions.txt new file mode 100644 index 0000000..d2e7238 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/lighthouse_descriptions.txt @@ -0,0 +1,20 @@ +sun_amxglvnhakyowril.jpg Viewed from a distance, the tall white lighthouse with a cylindrical shape stands prominently against a backdrop of mountains and cloudy skies, featuring a distinct balcony near its top. +sun_abhrobwbhftsbyvv.jpg The lighthouse, white with a red railing near the top, stands tall against a deep blue sky, positioned at the edge of a stone pier next to a calm body of water, with green hills and a small house visible in the background. +sun_aummxlwvglqfhmjb.jpg The lighthouse, viewed from a distance, stands tall with white walls and a red roof atop a lush green cliff, surrounded by dramatic rocky edges and overlooking a vast expanse of ocean under a partially cloudy sky. +sun_aosciphwtqvkengz.jpg The lighthouse is a tall, cylindrical structure with alternating red and white bands, set on a rocky outcrop surrounded by calm water, with a clear blue sky and distant mountains in the background. +sun_aklifcxlcfxbqqob.jpg The lighthouse features a cylindrical black tower with a textured surface and a glass-enclosed lantern room at the top, viewed from a low angle against a clear blue sky, with metal railings encircling both the top and base of the lantern room. +sun_ajqwqlnxenxudqzy.jpg The lighthouse is a tall, cylindrical structure with a textured gray stone surface, topped by a bright red lantern room, set against a dramatic seascape where waves crash turbulently around its base, under a clear blue sky. +sun_abuqtobfsyfdzpkd.jpg The lighthouse is small, white with a black top, perched atop a grassy, rocky hill, surrounded by a wooden fence and positioned against a clear blue sky and ocean background. +sun_aszintkodrhlzezr.jpg The lighthouse is painted white with black trim, set against a deep blue sky with wispy clouds, featuring a wide base with steps leading up and a cylindrical tower topped with a lantern room, surrounded by concrete walls. +sun_arlikgkzcfsfgohp.jpg This white lighthouse features a cylindrical shape with a black lantern room adorned by diamond-patterned glass, viewed from below against a clear blue sky, with a distinctive red-tiled roof in the foreground. +sun_aflgmdgsubwmxjui.jpg The lighthouse is white with a slightly weathered, paneled texture, viewed from a low angle, surrounded by bare trees and a metal railing in the foreground, giving it an imposing, solitary appearance. +sun_actedozmevnccgmz.jpg The white lighthouse, viewed from the ground with its vertical tower extending upwards into a cloudy sky, features a red top and a distinct rectangular base surrounded by lush green trees and adjacent buildings, set in an urban park environment with visible parking area and pathways. +sun_afehrwirkvuusydj.jpg The lighthouse stands tall and slender, painted in a solid white with a smooth texture, viewed from a ground-level perspective against a backdrop of rocky shores and dense green shrubbery, and is accompanied by a small white building nearby. +sun_acgevxosjhmhlqfb.jpg The lighthouse is white with a red roof, featuring vertically ridged panels, viewed from the ground upward against a backdrop of lush green trees and a clear blue sky, and distinguished by a small observation deck encircling the top. +sun_artxdkaevdzpoxmw.jpg The lighthouse features a bold black and white spiral pattern with a red top, viewed from a ground-level perspective amidst lush green trees and open grassy land, providing a striking visual contrast against the muted cloudy sky. +sun_akfkxtvkbifgkbzo.jpg The lighthouse is a white, two-story structure with a red roof and black lantern room, viewed at an angle that highlights its symmetrical windows and adjacent brick building, set against a clear blue sky with leafy trees in the background. +sun_awucehqlblcsrwho.jpg A white, square lighthouse with a red and white domed lantern sits prominently on a sunlit grassy cliff, framed by a white picket fence extending from the foreground, with a scenic backdrop of coastal cliffs and clear sky. +sun_apurmfmmwmgwfeoh.jpg A stone-textured lighthouse with a cylindrical tower and a white lantern room stands prominently on a rocky hill, surrounded by green vegetation and under a clear blue sky. +sun_ajbhvbhornmtfrhd.jpg The lighthouse features a cylindrical, white tower atop a broad, octagonal base with red roofs, surrounded by a rocky shoreline and situated against a cloudy sky backdrop. +sun_aoedikymqnrlkwym.jpg The lighthouse is cylindrical with a white, weathered texture, topped with a small black lantern room, seen from a side angle next to a body of water during sunset, surrounded by rocks and distant buildings. +sun_awcztmzsxuadvttl.jpg The lighthouse features a classic white structure with a red-topped lantern, viewed from a side angle against a backdrop of lush greenery and situated near a rocky shoreline. diff --git a/utils/area/descriptions/sun/generated_descriptions/limousine_interior_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/limousine_interior_descriptions.txt new file mode 100644 index 0000000..a12c645 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/limousine_interior_descriptions.txt @@ -0,0 +1,13 @@ +sun_ahdmewhnxbnxhoqg.jpg The limousine interior features a futuristic design with white and brown leather seating, illuminated accents, wave patterns, and mirrors on the ceiling, with built-in screens and a decorative lighted central aisle creating an opulent and high-tech ambiance. +sun_amqwgzudlcplgnoh.jpg The limousine interior features sleek, light grey leather seating with a soft texture, curved elegantly toward the back wall, accompanied by a mirrored minibar with crystal glassware on the right, against a cityscape visible through the windows, under a ceiling adorned with subtle, twinkling lights. +sun_anotpkwjsvlqcoxx.jpg The limousine interior features sleek black leather wave-patterned seating along the walls, with a high-tech ceiling adorned with illuminated colorful lights, mirrored surfaces reflecting glassware, and a large screen at the back, creating a luxurious and futuristic atmosphere. +sun_aujafrueicuyhvvl.jpg The limousine interior features light grey leather seating with a smooth texture, a front-facing viewpoint highlighting a mirrored ceiling with embedded lighting, a bar area with glasses, and reflective accents against a dark wood panel background. +sun_afntfpiihkuompyt.jpg The limousine interior features two-tone tan and dark leather seats with a glossy, spacious layout, showcasing a well-lit mini bar with glasses and a sleek, reflective ceiling, from a rear-to-front viewpoint. +sun_abetoxoxoozvhhlk.jpg The limousine interior features beige leather seating with tufted texture along the side, highlighted by its elongated layout stretching towards a mirrored and light-studded ceiling, while the right-side bar area showcases neatly arranged glasses and decorative elements against a dark carpeted floor. +sun_axekmczfnyafbqjj.jpg The limousine interior features black leather seating with a glossy countertop adorned with neatly arranged red napkins and crystal glassware, complemented by ambient lighting and reflective surfaces along the ceiling and walls. +sun_ahjgktbkqigcyels.jpg The limousine interior features sleek black leather seating with a curved design, a starry light ceiling, illuminated bar with crystal glassware and colorful decor, and a backdrop of a cityscape visible through tinted windows. +sun_aqncrwnxhozstltg.jpg The limousine interior features light gray leather seating with a quilted texture viewed from the rear, accented by a mirrored ceiling creating reflective surfaces, alongside a small television embedded into the side wall and the word "Cloud" in a stylized font on a panel in the background. +sun_aqdtnovzffrewzax.jpg The limousine interior features sleek black leather seating with a subtle sheen, viewed from the rear towards the driver’s area, surrounded by a contrasting gray ceiling with wooden paneling embodying an array of controls, complemented by a mounted television screen on the right and a row of windows lining the sides offering a glimpse of the passing outdoor environment. +sun_awslvkpjahtcnqzb.jpg The limousine interior shows plush, light gray leather seating arranged in a continuous, curved configuration with a reflective ceiling, dark carpeted flooring, and mounted screens integrated into the glossy sides, all viewed from the rear towards the front against a soft, purple-lit backdrop. +sun_aktefnquyylvnbxa.jpg The low-resolution image of the limousine interior shows a spacious, luxurious space with black quilted leather seating and wood flooring, featuring a reflective ceiling with ambient multicolored lights and a central pole running lengthwise, viewed from a frontal perspective facing toward the rear. +sun_ajgmxbrxdpmsaext.jpg The limousine interior features light gray leather seating with padded stitching, a ceiling adorned with small embedded lights, a curved bar with glass holders, a small television console, and large windows displaying a suburban setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/living_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/living_room_descriptions.txt new file mode 100644 index 0000000..018c7b3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/living_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_bxyrxomrvjgwtiie.jpg The living room features neutral-toned walls with a mixing of minimalist furnishings, including a brown leather sofa set positioned around a central fireplace, alongside a wooden entertainment center with a TV, creating a balanced and inviting space. +sun_awnoerrrseehnxzb.jpg A cozy living room with light gray sofas and warm orange cushions, set against a textured wooden wall, features a glass coffee table and illuminated by soft natural light from a window. +sun_akwozwwdigikepbw.jpg The living room features a mix of beige and patterned textiles on furniture, with a brown couch and decorative ottoman, framed by large windows with paisley curtains allowing natural light from the spacious, greenery-exposed background. +sun_arxkjqtglnyocaab.jpg The living room features floral-patterned sofas with red accent cushions, positioned around a beige coffee table on a dark green rug with elegant designs, against a backdrop of white walls accented with wood, adorned with vibrant paintings. +sun_alggjrqiteptffri.jpg The living room features a low-resolution but vibrant orange textured sectional couch at the center, contrasted against soft pink walls adorned with abstract framed artwork and a wooden cabinet with framed photos, under a classic chandelier and adjacent to a tall green plant. +sun_azjfkywtiydplbfn.jpg A bright and airy living room features a white, cushioned sofa with several matching pillows, viewed closely from a side angle, set against a plain white wall and accompanied by rustic, round, metallic tables with a decorative stone element. +sun_aeqzyntdoamygydl.jpg The living room features earthy brown and cream tones with a textured stone wall on the left, wooden bookshelves filled with books in the background, and two brown cushioned wooden armchairs positioned centrally on a beige carpet. +sun_awnlxvjsrwjgfzwb.jpg The living room features elegant cream-colored tufted sofas and a matching armchair, centered around a glass-topped coffee table adorned with yellow flowers, set against a backdrop of floor-length, light beige curtains and illuminated by an ornate chandelier from a frontal viewpoint. +sun_bqecsmgrpsbjnmct.jpg A patterned, floral beige sectional sofa with a single white cushion is at the forefront, positioned around a round wooden table with a red candle, set against a backdrop of large windows and a dining area with wooden chairs, accented by a red wall and hanging light fixture. +sun_adzxxmzgotjzemcr.jpg The image shows a living room with a glossy, deep red wooden table and ornate mirror frame, set against a teal wall, featuring a black lamp with a beige shade on the left and a vibrant flower arrangement on the right, with a hallway and decorative artwork visible in the reflection. diff --git a/utils/area/descriptions/sun/generated_descriptions/lobby_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/lobby_descriptions.txt new file mode 100644 index 0000000..6652ca2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/lobby_descriptions.txt @@ -0,0 +1,10 @@ +sun_avujwswrljwfoowv.jpg The image shows a lobby with industrial architecture featuring exposed concrete walls and a steel framework, vibrant red and orange fabric panels creating geometric patterns under a high, curved ceiling, and a concrete, glossy-floored space with visible numbered signs and a set of black metal staircases leading upwards. +sun_bldwpdlywsihqofh.jpg The lobby features a warmly lit, elegant space with a polished, reflective marbled floor, a magnificent central chandelier, tall columns, decorative paintings on either side, and potted plants, viewed from a central perspective leading to a large arched doorway. +sun_bjhtahfmsxlxmzpv.jpg The lobby features a spacious, high-ceilinged room with smooth, white archways, a glossy tiled floor adorned with a circular mosaic pattern, and an open view revealing green plants outside through large openings. +sun_bkivzjvjizhyytfl.jpg The lobby features warm wood tones with high wooden beams and a chandelier, soft ambient lighting casting on a plush green area rug, and a side view of elegant furniture against a wall with decorative paneling and large windows showcasing a scenic outdoor view. +sun_btbpelwxttzjmdnn.jpg The modern lobby features sleek black and white furniture with glossy surfaces, a high ceiling with vertical paneled walls, a dark contrasting wall with a mounted TV, ambient lighting, and a reception area in the background with a wood-textured desk. +sun_bryhefepbtrebqpi.jpg The lobby features a polished beige tile floor, maroon upholstered sofa, ornate floral-patterned armchairs, and mirrored walls, set against a backdrop of large windows with a leafy outside view, creating a sophisticated and inviting atmosphere. +sun_boliknvrqplbtkmz.jpg The lobby features warm earthy tones with a beige and maroon color scheme, a central glass table holding a decorative plant, tiling with geometric patterns, and a background showing seating arrangements and large windows framed by thick curtains. +sun_bsahkjakaaptfyzv.jpg The lobby features earthy tones with wicker armchairs and cream cushions, seen from an overhead angle, set against a wooden paneled backdrop with potted plants and a reception counter. +sun_ahwqaliwwaglswur.jpg The lobby features a warm checkered floor leading to a grand wooden staircase with ornate railing, framed by archways, red drapes, and large arched windows letting in natural light, complemented by portraits and delicate plants. +sun_bmdtyeiqvhimeers.jpg The lobby features a spacious, well-lit interior with blue and white striped upholstered sofas arranged neatly on a glossy tile floor, complemented by large potted plants and a backdrop of glass walls and light beige columns. diff --git a/utils/area/descriptions/sun/generated_descriptions/lock_chamber_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/lock_chamber_descriptions.txt new file mode 100644 index 0000000..c7826ca --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/lock_chamber_descriptions.txt @@ -0,0 +1,10 @@ +sun_byifyqblzeylqblv.jpg The lock chamber is characterized by its narrow, rectangular shape with textured stone walls and a murky dark water surface, bordered by grassy embankments and trees, with a path and wooden fencing visible in the background. +sun_bhyyvdbunjhnlwon.jpg The lock chamber appears dimly lit with a brown, murky water surface reflecting light, viewed from an angled vantage point, surrounded by concrete walls and metal structures, set against a dark night sky with illuminated pathways and scattered construction equipment. +sun_blkcgkarbqkvmxox.jpg The lock chamber appears to be a large, industrial structure with dark, weathered metal gates and concrete walls, viewed from the deck of a boat in the foreground with a person handling ropes, set against a hazy sky and a distant, misty landscape. +sun_bzqhpcsgzswozfhs.jpg The lock chamber appears in a top-down view dominated by shades of gray and concrete textures with a partially submerged, water-filled area below a metallic platform, surrounded by industrial scaffolding and distant construction equipment in a sunlit setting. +sun_brpecqchqsynhjbo.jpg The lock chamber features concrete walls with a weathered texture, viewed from an elevated angle, surrounded by greenery and buildings in the background, with water in the chamber and a mechanized towing locomotive on tracks nearby. +sun_bemjuwgxmiyllqkw.jpg The lock chamber features a bright yellow and burgundy narrowboat, positioned horizontally in front of a white building with a red roof, surrounded by greenery and a calm canal. +sun_bsbepnhfkllnfawy.jpg The lock chamber is seen from an elevated perspective, showing concrete structures with weathered and slightly uneven surfaces, flanked by lush green vegetation and distant infrastructure, while a canal filled with turquoise water aligns centrally, bordered by mechanical equipment and light poles. +sun_bvnsfgsfxsgavekd.jpg The lock chamber appears in a muted gray with a smooth metallic texture, viewed directly from a low angle across a boat's bow, surrounded by green vegetation and trees, with water leading up to the closed metal gates and a red-roofed house in the distant background. +sun_bortbbvkhbvmnccs.jpg A gray concrete lock chamber with tall vertical walls is viewed from an angled roadside perspective, surrounded by a serene body of water and flanked by a wooded hill under a pale blue sky. +sun_btqbtiwsqqgirsmk.jpg The lock chamber features dark, textured stone walls and a view from inside the chamber where the water level is low, flanked by green metal gates with a tree-lined background and a partially visible boat with a person standing near the edge. diff --git a/utils/area/descriptions/sun/generated_descriptions/locker_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/locker_room_descriptions.txt new file mode 100644 index 0000000..8677a24 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/locker_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_bxlyyuodmgmvcukt.jpg The locker room features a row of wooden lockers with metal mesh panels, viewed from an angle that shows a long corridor, a carpeted floor, industrial-style ceiling with exposed beams, and blue lights overhead. +sun_buizyyacovjtrzht.jpg The locker room features a row of small, gray metallic lockers on the left with visible padlocks, viewed from a corner angle, and a carpeted floor with a clothing rack on the right holding a few hangers and a colorful garment, set against a plain beige wall. +sun_agnnhimazoqazzxz.jpg The locker room features bright red, open cubbies with hanging jerseys and sports gear, distinct black chairs, and a slightly worn carpeted floor, viewed from a frontal angle against a white-peeling wall background. +sun_anntqxogukysnimn.jpg The locker room features bright yellow partitions with black framing, and a central gray carpeted bench, viewed from an eye-level perspective with a ceiling lined by fluorescent lights, creating a symmetrical and organized environment. +sun_arxpkzfzjukczvjw.jpg The locker room features a view of gray metal lockers with a matte finish, framed by a red-painted trim, against a contrasting white and brown wooden wall background, with the floor and bench matching the lockers' gray color under ceiling lights. +sun_akasrvuypyysmlho.jpg The locker room features a modern design with beige, wood-textured walls and lockers, a row of large mirrors above white sinks with clean lines, soft overhead lighting, and recessed ceiling lights create a sleek and sophisticated environment. +sun_aguruztkjppiavqf.jpg A dark gray, open metal locker with visible hinges and a shelf occupies the central view, surrounded by similar lockers with a light-colored chair partially visible at the bottom, set against a stark and industrial-looking background. +sun_avsiojqtyxmlfqwc.jpg The locker room features beige lockers aligned along the right, a tiled brown floor, a long blue bench where a person in gray athletic attire is tying shoelaces, and a mirrored back wall that reflects abstract blue patterns and yellow accents. +sun_aoghxpvywookhdzf.jpg The locker room features white walls and a sloped ceiling with wooden benches lining both sides, red flooring, and a centrally positioned dark notice board against a backdrop of exposed pipes and a small window that provides diffused natural light. +sun_bftwioyjnzeokzur.jpg The locker room features a set of yellow metal lockers with diamond-shaped ventilation holes and silver nameplates and handles, viewed from a frontal angle, with fluorescent ceiling lights illuminating the space. diff --git a/utils/area/descriptions/sun/generated_descriptions/mansion_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/mansion_descriptions.txt new file mode 100644 index 0000000..ff62d9d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/mansion_descriptions.txt @@ -0,0 +1,10 @@ +sun_brtnedihtngaqxjr.jpg The mansion features a dark stone facade with intricate arches, viewed from an angled street perspective, surrounded by mature trees and a lush garden, highlighting its Gothic-inspired architectural details amidst an autumnal suburban setting. +sun_bthlkwtgevyuqive.jpg The mansion is characterized by its dark brick facade and intricate white trim, with a front-facing view at dusk that highlights its symmetrical three-story structure, accentuated by rounded bay windows and elaborate detailing against a backdrop of silhouetted trees and a clear evening sky. +sun_byqzthxsypxekbtt.jpg The mansion appears in a frontal view with a brown, ornate stone texture, featuring a steep, red-tiled roof with decorative gables, intricate carvings, and stone balustrades, set against a clear blue sky, alongside modern buildings. +sun_blehfrjewipgybiw.jpg The mansion features a pale, off-white facade with intricate, symmetrical window arrangements and a slightly curved gabled roof, viewed from a frontal angle against a backdrop of snow-covered grounds and misty, mountainous terrain. +sun_besmqpqwsvuumtvc.jpg The mansion is a light gray and white, two-story structure with a symmetrical façade featuring multiple tall windows and white columns supporting a porch, set amidst a grassy lawn with stone borders and surrounded by tall trees and flower beds, viewed from a slightly angled front perspective. +sun_arsayfohjzohivap.jpg The mansion, viewed from a frontal angle, features a weathered gray stone texture, arched openings, and a rustic tile roof, set against a backdrop of tall trees, with visible sunlight casting shadows on its facade. +sun_buykogdajnwrghbq.jpg A brown stone mansion with a prominent round turret, seen from the front with lush greenery and a wrought iron fence in the foreground, set against a backdrop of trees. +sun_bqypqoeaesquplni.jpg The mansion is a large, beige stone structure with a prominent cylindrical tower on the front right, viewed from the lawn in front with a backdrop of clear blue sky and surrounding greenery, featuring multiple symmetrical windows and an outdoor staircase leading to an entrance with a small porch. +sun_bmszgwatufursguh.jpg The mansion is a low, elongated white building with dark roof accents, set against a lush green lawn and framed by tall trees and a clear blue sky, viewed from an angled perspective highlighting its large windows and multiple chimneys. +sun_bnxbvvzviduazziq.jpg A large, stone-clad mansion with a textured, uneven facade and numerous white-framed windows is viewed from the front corner against a twilight sky, surrounded by leafy trees and a low stone fence with an outdoor signpost visible in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/manufactured_home_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/manufactured_home_descriptions.txt new file mode 100644 index 0000000..0bb4f45 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/manufactured_home_descriptions.txt @@ -0,0 +1,10 @@ +sun_bcjmfcnfhucopelo.jpg The manufactured home is light mint green with visible vertical panel texture, seen from a side angle amidst a grassy lawn, and has a tarpaulin partially covering one side, with trees in the background. +sun_bpjbstwobovjlvuw.jpg The manufactured home is a cream-colored structure with a smooth texture viewed from the side against a lush green lawn and tree-lined background, featuring small steps leading to dark-framed doors and windows. +sun_bsfqboeirfcvzpet.jpg The manufactured home is light blue with horizontal siding and a metal gabled roof, seen from a frontal angle with a grassy foreground and surrounded by greenery and tall trees. +sun_bbajoedbmkvpadoj.jpg The manufactured home, viewed from an angled perspective in a sunny suburban setting, features beige horizontal siding with a red accent around the entrance and roofline, set against a background of lush green trees and a clear blue sky. +sun_btbberkfqhhpeits.jpg A gray manufactured home with a gabled roof is viewed from the front at an angle, featuring white trim and shutters, surrounded by a gravel yard with a small rock in the foreground and another similar structure in the distance under a partly cloudy sky. +sun_bndvgakpsnliugac.jpg A beige manufactured home with horizontal siding is shown from a side angle, featuring green shutters and a small oval window, set against a grassy background with a tree and neighboring units visible. +sun_bucmdjfiwkckoblr.jpg The manufactured home, viewed from the front-right angle, features a smooth light gray exterior with white trim and dark shutters, set against a backdrop of leafless trees under a partly cloudy sky, and is distinguished by a neatly-kept concrete path leading to a small porch and a white garage door. +sun_bfhbowetyyixbvfx.jpg The manufactured home is beige with a smooth, horizontal panel texture, seen from a front-side angle, featuring large rectangular windows framed by white trim, set on raised supports with green exterior utility boxes and a white porch railing visible against a grassy landscape. +sun_baonvetlhqlxfaue.jpg The manufactured home is a cream-colored structure with horizontal paneling, viewed from an angled front perspective, elevated on metal supports, featuring large front windows, set in a grassy area with a clear blue sky and an antenna on the roof. +sun_bfowpzlfuophqfvl.jpg The manufactured home is painted light gray with turquoise trim, viewed from a front angle surrounded by lush green trees, and features potted plants and a small porch area. diff --git a/utils/area/descriptions/sun/generated_descriptions/market_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/market_descriptions.txt new file mode 100644 index 0000000..800427c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/market_descriptions.txt @@ -0,0 +1,10 @@ +sun_aorpveevxephycks.jpg The market features a blend of bright colors with a prominent pink railing and large red lettering, bustling with people under a partly cloudy sky, and surrounded by tents, plants, and merchandise, creating a vibrant and lively atmosphere. +sun_bfcfyxejfwhbcegg.jpg A bustling market scene is depicted with vibrant red tomatoes at the forefront, contrasting against the blurred background of fresh green and white produce under a wooden pavilion, viewed from a perspective that highlights the produce layout and market interaction. +sun_bsehgxuhfkemxvqp.jpg A market stall with a white tent canopy displays various potted plants and herbs with lush green foliage, and it is surrounded by signs and a pavement setting with a few people browsing nearby. +sun_adkpgiplachgsyem.jpg The market features a vintage appearance with a blue and white storefront below a red Coca-Cola sign, surrounded by brick buildings and a variety of greenery, viewed from the street corner. +sun_bsyucicsfhstiyfw.jpg The market features a sunlight-drenched scene with multiple white canopies, assorted colorful fruits and vegetables laid out on a table, and a small crowd of people casually exploring the offerings amidst a backdrop of parked cars and trees. +sun_brgczalmijsomyfq.jpg The market scene displays a bustling outdoor setting with vendors selling a variety of colorful clothing items hanging from stalls, while a crowd of people walks along a narrow pathway flanked by blue tarps under bright, diffused daylight. +sun_bpzqgteufsqhnjpf.jpg The market scene is vibrant with colorful hanging textiles and bags, viewed from a ground-level perspective amid wooden stalls, with a dirt path and bits of sky visible, suggesting an outdoor setting bustling with people. +sun_bvjphalfnrdjqhcv.jpg The market scene features vibrant stalls with white canopies, a colorful assortment of merchandise prominently displayed, a bustling crowd dressed in various casual outfits, and a lush green tree backdrop under a slightly overcast sky. +sun_butgtmhlwbatvlvn.jpg A bustling outdoor market features a vendor stall with fresh green vegetables displayed on a red tablecloth, situated in a leafy park setting with people casually browsing under a clear, sunlit sky. +sun_bxkeanmkoicujqdm.jpg The market features colorful produce and flowers on a table under a blue canopy, with people casually browsing amidst a backdrop of tents and vehicles in an open outdoor setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/marsh_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/marsh_descriptions.txt new file mode 100644 index 0000000..b24cebf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/marsh_descriptions.txt @@ -0,0 +1,10 @@ +sun_azgvpajjejjctudh.jpg The marsh features a reflective, dark blue waterway lined with vibrant green grasses and dense reeds under a soft, cloudy sky with a distant tree line in the background, providing a serene landscape despite the image's low resolution. +sun_avcjjbgjeebuvpqd.jpg Lush green vegetation blankets the marsh, reflecting slightly in the still waters under an overcast sky, with a distant tree-lined horizon and soft, muted hills in the background. +sun_aeckubnerywpegtq.jpg Tall, beige reeds with a slight rugged texture rise prominently from the foreground beside a calm, reflective body of water under a clear blue sky, while the distant background reveals a flat expanse of green marshland. +sun_awnzynnpdoeayrac.jpg A light brown cow, being led by a man, leaps energetically through a shallow, muddy waterway surrounded by verdant grassy patches, under a cloudy sky with a distant green landscape. +sun_aeaajzhcnggfrgza.jpg The image shows a sprawling marsh with golden-brown reeds and grasses, intersected by a narrow, elevated wooden walkway, bordered by a serpentine dark waterway partially dotted with lily pads, set against a wide horizon under a cloudy sky. +sun_abwmrcejictqjzmq.jpg The low-resolution image depicts a marsh with textured patches of green and brown vegetation, featuring a winding water channel in the foreground, set against a backdrop of distant mountains and a cloudy sky. +sun_awpqacbohgzzjtfo.jpg The low-resolution image depicts a marsh with muddy brown water reflecting the overcast sky, surrounded by tall, green reeds and grasses, with a dense line of dark green trees forming the distant background. +sun_azpibmpklkrxsvhi.jpg From an elevated viewpoint, the marsh displays winding water channels bordered by dense, brown, and somewhat flattened grasses, under an expansive overcast sky, distinct for its muted earthy tones and meandering shapes. +sun_apqqzqcwujcjqnhf.jpg A person stands on a vibrant green grassy bank, fishing with trees and a reflecting water body under a lightly clouded blue sky in the background. +sun_azugisvxrykznjhf.jpg In the marsh image, clusters of short green and brown reeds protrude from shallow, reflective water amidst patches of snow under a clear blue sky dotted with white clouds, with distant hills visible on the horizon. diff --git a/utils/area/descriptions/sun/generated_descriptions/martial_arts_gym_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/martial_arts_gym_descriptions.txt new file mode 100644 index 0000000..3e2f34c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/martial_arts_gym_descriptions.txt @@ -0,0 +1,10 @@ +sun_bprontbkrpecgqvp.jpg The martial arts gym features a blue mat floor with white walls adorned with various martial arts symbols and flags, showing two practitioners in white uniforms demonstrating a kick technique. +sun_bgmjfayxubjhsnjg.jpg In the martial arts gym, practitioners in dark uniforms with white belts train on a vibrant red and blue mat, surrounded by a spacious interior with white walls and a mezzanine level. +sun_avvqbvfbrgajrbga.jpg The martial arts gym features a light beige and white color scheme with smooth flooring, seen from an elevated angle showing students kneeling and a teacher in a white uniform demonstrating a move against a backdrop of yellow walls and metallic air ducts. +sun_bghyyknrtwtomycc.jpg A martial artist wearing a white gi and black pants, holding nunchaku, stands in a ready stance on a carpeted floor, surrounded by martial arts posters and a display of tall trophies set against a white wall with a Taekwondo banner above. +sun_biewjnedgqdvbfit.jpg In the image, the martial arts gym features a blue padded floor with individuals wearing boxing gloves and casual athletic attire, standing under fluorescent ceiling lights against a plain gray-white wall, with a punching bag visible in the background. +sun_bsttzktchwplheka.jpg The martial arts gym features a group of individuals in white and blue uniforms practicing movements on a light green mat, with visible wall decorations and flags in the background. +sun_bfbhycalkwwktuiq.jpg A martial arts gym with a wooden floor features a practitioner in black and red attire striking a pose on a green mat, surrounded by others and gym equipment, against a backdrop of posters and a blue-gray wall. +sun_bupqpjiybztplmql.jpg The martial arts gym features a vibrant arrangement of red and blue interlocking foam mats with children dressed in black and white uniforms practicing seated in rows, set against a neutral tan wall with mirrors and punching bags visible in the background. +sun_bhyglglhhuxzzpnm.jpg A bright martial arts gym with a green carpet, large windows allowing natural light, walls adorned with martial art posters, where individuals practice stick drills in pairs, surrounded by wooden training weapons and equipment. +sun_bqaoltlhxwcnjtrl.jpg The martial arts gym has a spacious, cream-tiled floor with a white and industrial interior featuring a metal roller door, decorated with colorful murals on the wall, while individuals in casual clothing practice in a seated horse stance position. diff --git a/utils/area/descriptions/sun/generated_descriptions/mausoleum_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/mausoleum_descriptions.txt new file mode 100644 index 0000000..6127563 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/mausoleum_descriptions.txt @@ -0,0 +1,10 @@ +sun_bbnkqgljgbesgqqm.jpg The mausoleum is white with a smooth texture, featuring classical columns and an arched entrance, viewed from the front, situated in a garden setting with trees in the background, and displays a statue within its portico. +sun_bcpfghgpceqjfqxk.jpg The mausoleum features a hexagonal structure with a light stone facade and a distinctive turquoise domed roof, viewed from an angle showcasing a cobblestone path in the foreground and a partially visible colonnade on the right, set against a partly cloudy sky. +sun_btrqlraquceyylsk.jpg The mausoleum, situated in a rocky desert environment, features a domed white structure with smooth textures and decorative latticework, contrasted against a rugged mountain backdrop with scattered white gravestones in the foreground. +sun_bmssqaxrfmufhwxv.jpg The mausoleum is pyramid-shaped, constructed with weathered gray stone blocks, featuring prominent columns framing the entrance, and situated in a snowy, tree-lined environment with shadows cast across its surface. +sun_bfrzufvjwmatnsdk.jpg The mausoleum features weathered, light beige stone columns with a rough texture, framed by a cracked stone wall, seen from a frontal viewpoint, set against a dry, sparse grassy environment with small bushes at the base. +sun_aroeqppyzdptjnkj.jpg The mausoleum features a sandy beige color with a smooth stone texture, viewed from the front with statues adorning the roof and columns flanking the central entrance, set against a bright blue sky with an adjacent dome visible in the background. +sun_bhaweieutflnnywh.jpg A weathered, rectangular stone mausoleum with a grey, sloped roof and white inscriptions stands on a grassy lawn, surrounded by a tree-lined stone wall. +sun_bsmxjjycwpzfcpgv.jpg The mausoleum is a gray, stone structure with a classical triangular pediment and fluted columns, viewed from the front against a backdrop of dense trees, with two sculpted figures flanking the entrance and a single tall palm tree nearby. +sun_bsaauppemdggsdbi.jpg The mausoleum features a light gray stone facade with a pointed, gothic-style roof adorned with a cross, intricate stained glass panels with geometric patterns on the front, surrounded by barren trees and scattered gravestones in a cemetery setting, seen from a slightly angled frontal viewpoint. +sun_brhuetrtmefrrmym.jpg The mausoleum is a tall, cylindrical structure with an ornate, light blue roof, featuring a textured, sandy-brown facade adorned with intricate engravings, set against a vast open landscape of sparse greenery and distant hills under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/medina_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/medina_descriptions.txt new file mode 100644 index 0000000..2916f19 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/medina_descriptions.txt @@ -0,0 +1,10 @@ +sun_cyysrlyalohhrztr.jpg A narrow, winding cobblestone alley with whitewashed walls and blue accents is adorned with arching metal trellises supporting lush, flowering vines, while patches of sunlight illuminate the textured surfaces. +sun_dkuyzkwvrcyrbjog.jpg The medina features white walls with vibrant blue accents at the lower section, viewed from an alleyway perspective with a clear blue sky above, characterized by its narrow pathway and arched, blue doors. +sun_drfqimgpngvtgvqx.jpg The medina features whitewashed walls with a soft, slightly textured surface, viewed from a narrow alleyway perspective with light gray stone paving, accented by blue-painted doors and windows, and a few visible signs of wiring overhead, against a bright sky. +sun_dfrqwvuzcujhezrl.jpg The medina features narrow alleyways with aged yellow and beige walls, adorned with arched doorways and colored window frames, highlighted by a textured cobblestone pathway leading into a shaded, atmospheric corridor. +sun_cgkdxdqrptqvterl.jpg The medina features warm, earthy-toned walls with intricate archways and decorative patterns, viewed from a street-level perspective, with a lantern and people in traditional attire adding cultural context to the scene. +sun_chkbpmzrscqntenu.jpg The medina is characterized by narrow, winding alleys with dusty terracotta-colored walls, a bustling street view of pedestrians and small market stalls, and a sunlit, atmospheric background typical of historic Middle Eastern architecture. +sun_djlrikdgcapgonfs.jpg The medina features whitewashed buildings with blue accents, viewed from a narrow, cobblestone walkway leading to an arched entrance surrounded by palm trees and small market stalls. +sun_djruzpkzmpcjaubd.jpg A narrow alleyway with textured stone flooring is flanked by white, aged walls adorned with blue ironwork, leading to a vivid blue arched door surrounded by a colorful frame of red, black, and white, under a partly cloudy sky with a scooter parked to the side and pots adding greenery. +sun_djoclmmewcuzhzrw.jpg The image depicts a medina with weathered, light beige and yellow walls along a narrow, cobblestone street seen through an archway, with exposed wires and a person walking away from the viewer, creating a sense of depth and age amidst the soft sunlight filtering into the alley. +sun_cpdeppvtwnsdshxl.jpg The image depicts a narrow, weathered alleyway in a medina with reddish and grayish textured walls, viewed from ground level, featuring scattered debris and muted colors under an overcast sky, with figures in the background adding a sense of depth. diff --git a/utils/area/descriptions/sun/generated_descriptions/moat_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/moat_descriptions.txt new file mode 100644 index 0000000..cb07af9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/moat_descriptions.txt @@ -0,0 +1,10 @@ +sun_bxarcshsnqsefemx.jpg The moat appears as a wide, tranquil expanse of greenish water reflecting the overcast sky, bordered by a traditional stone bridge, with lush trees and a historic castle structure in the background enhancing the scene's classic architectural charm. +sun_aaacnzebidlpyvlg.jpg The image shows a narrow, grass-bordered body of water with a dark, reflective surface running alongside a rugged stone castle wall, set against a flat, expansive landscape under a pale sky. +sun_ataigpewxbftqhfz.jpg The moat appears with calm, reflective water bordered by a textured stone wall, in front of a traditional Japanese building, surrounded by lush greenery under a partly cloudy sky. +sun_bmqtfsnvzjtdpvvm.jpg The moat surrounding the dark, multi-tiered traditional Japanese castle is a calm, reflective body of water with a murky greenish tint, bordered by a robust stone wall, and features two white swans gracefully gliding on its surface, set against a clear blue sky and distant greenery. +sun_bzerjtavkfifvsje.jpg The image shows a moat with calm, dark green water reflecting an adjacent stone embankment that supports a traditional multi-tiered wooden structure under a cloudy sky, with overhanging leafy trees providing a natural border. +sun_bojxgjbehcrlwacm.jpg The moat, set against a rugged stone castle wall, features shallow, dark water flowing around smooth, moss-covered rocks, with a mountainous backdrop and sparse vegetation. +sun_bazckhzcmrbtgwdw.jpg The moat features clear aquamarine water bordered by weathered brick walls of a fort, set against a vivid blue sky and horizon, with the remaining fort structure exhibiting coarse red-brown textures and arched windows. +sun_amwiwqmnrnstygsz.jpg The moat features dark, murky water with subtle reflections, bordered by weathered, reddish-brown brick walls, accompanied by an arched building structure with a medieval architectural style, set against a partial view of a stone courtyard and urban backdrop. +sun_bgdxqgtghtuipcph.jpg The moat, appearing a murky greenish-brown and surrounding a stone castle with round towers, is viewed from a low angle beside a dense area of trees and under a clear blue sky. +sun_bhnwxltrbqdwibjh.jpg The moat appears as a narrow stretch of calm water reflecting the blue sky, bordered by stone walls on the left and trees on the right, with a traditional building visible in the background and colorful bollards lining the gravel path in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/monastery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/monastery_descriptions.txt new file mode 100644 index 0000000..98f5f87 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/monastery_descriptions.txt @@ -0,0 +1,10 @@ +sun_boynbivkgvdzulee.jpg The monastery features white walls with golden domes, seen from a front-side angle, surrounded by trees and a clear sky, with arched windows and a simple entryway distinct in the rustic and natural setting. +sun_bsfpmuukmocwisil.jpg The monastery features sandy-colored stone walls with a rough, textured surface, viewed from an angle that shows a prominent bell tower capped with a cross, set against a mostly clear sky, while a few trees provide contrasting greenery in the surrounding courtyard. +sun_btloapxxkfzpfdos.jpg The monastery, visible from a slightly lower angle amid bare, leafless trees, features a white facade and a prominent green dome roof, set against a clear blue sky background with sparse vegetation framing the scene. +sun_azpikmozuibxvfpi.jpg The monastery features white stone walls with intricate carvings, capped by golden domes that reflect sunlight, set against a clear blue sky with sparse clouds, and has a staggered, multi-tiered facade with arched windows and a broad stairway leading to the entrance. +sun_bcxeanajkrgiansf.jpg The monastery features a central gray stone structure with a large rounded dome topped with a cross, framed by pointed evergreen trees, and set against a clear blue sky. +sun_bejnoaimvruegrph.jpg The monastery displays an aged stone texture with warm earthy tones under an overcast sky, showcasing its ornate domes and arches from a slightly elevated viewpoint, set against a backdrop of lush green hills. +sun_bjqxwugepjltfqyx.jpg The monastery features brown stone walls and a sloping roof visible from a ground-level view, flanked by a neatly manicured garden with vibrant flowers and a large tree, with tall, narrow arched windows enhancing its historical character. +sun_bcwrhkvyapfiafdx.jpg The monastery features a medieval architectural style with intricate stone textures and a light brown color palette, viewed from a frontal angle showing multiple arched doorways, a prominent tower with a clock, and a clear blue sky as the background. +sun_byviosfnsigdymqj.jpg The monastery features intricate, colorful frescoes on its exterior walls, a dark wooden roof with a pointed spire, set against a backdrop of lush green trees and a clear blue sky. +sun_bfsfzkjvfrepympd.jpg A sandstone-colored monastery with a prominent central staircase, featuring a bell tower and arched doorway, set against a clear blue sky and flanked by greenery. diff --git a/utils/area/descriptions/sun/generated_descriptions/mosque_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/mosque_descriptions.txt new file mode 100644 index 0000000..aaabe8c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/mosque_descriptions.txt @@ -0,0 +1,10 @@ +sun_abzpzwslaoksdatz.jpg The mosque features a white geometrical facade with pointed arches, four slender minarets at each corner, and a crescent-topped arch, set against a clear blue sky and green hills in the background. +sun_awxufwhoybbtojja.jpg The mosque features an ancient, reddish-brown brick facade with arched windows, seen from a frontal viewpoint, surrounded by iron fencing and sparse trees against a clear sky. +sun_bahziffgwzbbbymz.jpg The mosque features tall white minarets with geometric patterns and brown conical tops, a large central green dome with gold accents, viewed from a low angle against a backdrop of blue sky and scattered clouds, surrounded by a brown and cream building facade and palm trees. +sun_akhvgqrdtrsbglfi.jpg The mosque features a light beige stone facade with intricate carvings, as viewed from the front at ground level, showcasing large arched windows, a courtyard with a central fountain, a distinctive row of domes along the rooftop, and a notable gathering of people in traditional attire against a backdrop of greenery and architectural detail. +sun_bqrvqgqnrpxoyczu.jpg The low-resolution image shows a large, reddish-brown stone mosque with multiple domes and a tall, slender minaret, viewed from the front against a clear sky, surrounded by a bustling crowd and signboards, emphasizing its symmetrical arched entrance and distinct Mughal architectural style. +sun_alyixgyynidescqv.jpg The mosque is shown from a side angle featuring an off-white, textured facade with intricate minaret designs and domed structures, set against a partially cloudy blue sky with a grassy foreground. +sun_avvefwtsvtqhjfdx.jpg The image shows a spacious, ornate interior with cream and gray striped arches, large white pillars with gold embellishments, and a grand, illuminated circular chandelier set against a backdrop of intricately patterned ceilings and soft lighting. +sun_azxsvfhgzlntdekm.jpg The image shows a turquoise and green mosque with a distinct frontal view featuring twin minaret-like structures, small domes on top, an arched entrance with intricate low-resolution patterns, stone steps leading up, and birds appearing in a clear blue sky backdrop. +sun_aclewphkmddfsekf.jpg A white mosque with three domes and a tall minaret adorned with intricate carvings is viewed from a low angle against a clear blue sky, surrounded by sparse greenery. +sun_amqjwzdbqypcklub.jpg The mosque is a grand, symmetrical structure with a prominent central dome surrounded by smaller domes, flanked by tall, slender minarets, all in a light beige color, framed by a manicured garden with greenery, viewed from the front. diff --git a/utils/area/descriptions/sun/generated_descriptions/motel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/motel_descriptions.txt new file mode 100644 index 0000000..aad2669 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/motel_descriptions.txt @@ -0,0 +1,10 @@ +sun_bsjqsjetevxdsujs.jpg The motel features a pastel peach exterior with a light turquoise strip across the roof, viewed from the front on a sunny day, with tall palm trees and a mix of parked cars visible in the foreground and a clear sky as the backdrop. +sun_bwcosskbmyvvnetn.jpg A two-story motel with beige stucco walls and a brown roof is seen from a slight angle with a small entrance canopy, visible outdoor chairs, and planters near the parking area. +sun_axnupoyokcebapzo.jpg Nestled among lush greenery, the small white motel features light blue trimming, visible from a slightly elevated angle, with a sloped grassy lawn leading up to its quaint, cabin-like structures under the dappled shade of tall trees. +sun_ajwhufaoaytiursl.jpg The low-resolution image shows a vintage-style motel with a large blue and white sign reading "Motel" and "Stagecoach 66," a single-story building with a blue roof and white walls, positioned in an open, desolate environment under a cloudy sky, featuring retro signage and sparse desert vegetation. +sun_bdwwqnlaredaumrk.jpg The motel features a single-story, L-shaped structure with a pale yellow and beige facade, viewed from an angled perspective with a partially filled parking lot, vending machines, and surrounded by lush green trees under a clear blue sky. +sun_amrxoitjtjvxnalr.jpg The motel features a white facade with a contrasting dark brown roof, characterized by arched dormer windows, and is situated in a lush green environment with several directional signs in the foreground. +sun_bxryuzruaxjrpctn.jpg The motel has a beige exterior with a brown roof and purple triangular accents, viewed from an angled front-left perspective, set against a clear sky with minimal landscaping and a parking area in front. +sun_bheqsctduqdilivs.jpg The image shows a two-story motel with a beige brick exterior and red doors, viewed from an angled perspective, featuring an overhanging roof and small arched porch areas in front of each room, situated in a parking lot with several parked cars and surrounded by grass and trees against a blue sky. +sun_bsajtspsrqkidaoa.jpg The motel is a long, single-story building with light-colored walls and a dark roof, viewed from a slightly elevated angle with a backdrop of lush green hills, and features a grassy foreground with scattered lounge chairs near a fenced pool area. +sun_adgwxoncsihiaqqu.jpg The motel has a beige brick exterior with a sign reading "In Town Motor Inn," a dark tiled roof, and is surrounded by tropical palm trees, viewed from a street-level angle. diff --git a/utils/area/descriptions/sun/generated_descriptions/mountain_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/mountain_descriptions.txt new file mode 100644 index 0000000..a5a7a5a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/mountain_descriptions.txt @@ -0,0 +1,10 @@ +sun_boorltwilsytcppq.jpg The mountain in the image is covered with lush green forest, viewed from an elevated position with a tranquil lake and gentle, rolling hills in the backdrop, under a partly cloudy sky. +sun_bvypvmhmqinhgnli.jpg The mountain displays a rugged, snowy peak with sharp ridges, viewed from a low vantage point with dense green forests and a flowing river in the foreground against a clear blue sky. +sun_bbkikcedkjpoelwe.jpg The mountain appears dark green with a dense covering of trees, viewed from the base at street level with a clear blue sky in the background, and features a softer, rolling peak silhouette. +sun_avacbpfllqazowew.jpg The image depicts a dark, rugged mountain with a mix of green and shadowy textures, viewed from a lower perspective with a few scattered clouds in a bright blue sky, flanked by a quaint village with trees and a road in the foreground. +sun_bonuhbnylxnbdkoc.jpg The mountain in the foreground is characterized by a reddish-brown rocky texture interspersed with sparse patches of snow, viewed from an elevated vantage point, with a backdrop of distant dark forested mountains and a partly cloudy sky. +sun_btmyppbzqytwizln.jpg The image showcases a rugged mountain with gray rocky textures and patches of lush green vegetation, viewed from a distance with a curving road in the foreground and majestic peaks shrouded in clouds in the background. +sun_bwidvgzwofvfteaj.jpg The mountain features a series of rolling, brownish-green peaks under cloudy skies, viewed from a slightly elevated perspective amidst lush vegetation, with distinct layers of dark, forested terrain in the foreground. +sun_auzhtcmcnmmpkgfw.jpg The mountain displays a rugged and rocky texture with a combination of gray and green hues, viewed from a lateral side perspective, surrounded by a lush expanse of greenery and alpine terrain under a clear blue sky, with distant snow-capped peaks visible in the background. +sun_bzpvgeoziqjjrviy.jpg The mountain exhibits a rugged, gray-textured surface with a steep and jagged silhouette, bordered by patches of green vegetation and surrounded by a mixed forest of evergreen and deciduous trees, all under a bright blue sky with scattered clouds. +sun_atstyfmkwqfajsrk.jpg The image shows a jagged, steeply-angled rocky peak with a grayish texture and patches of snow, set against a backdrop of distant mountains and a clear blue sky, highlighting two climbers atop in colorful gear. diff --git a/utils/area/descriptions/sun/generated_descriptions/mountain_snowy_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/mountain_snowy_descriptions.txt new file mode 100644 index 0000000..63db5fa --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/mountain_snowy_descriptions.txt @@ -0,0 +1,10 @@ +sun_btijypgrzcjqmvbf.jpg The snow-covered mountain appears predominantly white with patches of dark evergreen trees scattered across the slopes, viewed from a moderate distance with ski lifts and small structures visible at the base, under a cloudy gray sky. +sun_aqxgqoqaoumncshp.jpg The image shows a rocky, barren slope with earthy tones and rough textures, viewed from a slanted angle, set against a mountainous backdrop with distant peaks under a partly cloudy sky, accentuated by a lack of significant vegetation. +sun_achdlccmpurhjktr.jpg The mountain snowy displays a rugged reddish-brown and grey rocky texture intertwined with patches of bright white snow, viewed from a low angle across a serene reflective lake with a backdrop of a clear, vibrant blue sky and scattered evergreen trees at the base. +sun_admnlreokyotyhqe.jpg The mountain snowy is primarily white with jagged, snow-covered peaks, set against a clear blue sky with patches of rugged, brown terrain visible beneath the snow. +sun_bspluyoenxcyxqif.jpg The image depicts a smooth, snow-covered mountain slope with a bluish-white hue under a partly cloudy sky, featuring ski lifts ascending the gradient and surrounded by sparse dark shrubs, hinting at a ski resort setting. +sun_bkmrwpvvswnxtbwz.jpg The mountain displays a rugged, snow-capped texture with steep, rocky slopes under a clear blue sky, accompanied by a foreground of vibrant wildflowers on a verdant grassy patch, offering a striking contrast against the earthy tones and white peaks. +sun_anigabujfplzicao.jpg The low-resolution image shows a snow-capped mountain with white, textured peaks under a clear blue sky, viewed from a side angle with a foreground of dark green forests sloping downwards. +sun_bulnvxeawjlisvns.jpg In this image, a snow-covered mountain range with rugged textures and bluish-white hues is seen from a slightly elevated viewpoint, surrounded by a backdrop of clear skies and low-lying clouds clinging to the peaks, with the foreground displaying icy formations casting distinct shadows. +sun_ajtohqgllxssqnja.jpg A low-resolution image depicts a snow-covered mountain bathed in warm golden sunlight, viewed from a side angle with a deep blue sky and scattered dark rocks in the foreground for contrast. +sun_arlcvofcnjqafiag.jpg The mountain snowy features a rugged and jagged profile predominantly covered in white snow with patches of dark rock, set against a backdrop of soft, overcast clouds above a reflective body of water. diff --git a/utils/area/descriptions/sun/generated_descriptions/movie_theater_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/movie_theater_descriptions.txt new file mode 100644 index 0000000..7c8d3ae --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/movie_theater_descriptions.txt @@ -0,0 +1,10 @@ +sun_bzygzxssqmlpwhln.jpg The movie theater features rows of blue leather seats facing a large screen on a striped beige wall, with a low ceiling and a figure statue to the right for decoration, set in an intimate, carpeted viewing room. +sun_avrjhpbbpcytkeoc.jpg The movie theater features deep red velvet chairs arranged in rows leading to a stage with red curtains, surrounded by cream-colored walls adorned with red accents and framed artwork, viewed from a central, frontal perspective within a cozy, warmly-lit environment. +sun_aljuleaenpqrjjyb.jpg The movie theater features plush red seating and a wide, curved screen set against a sleek black interior, with soft ambient lighting and a star-like ceiling pattern adding to the atmosphere. +sun_akaoaontkydsnsgk.jpg The movie theater is viewed from the back, showcasing rows of black and blue seats curving towards a large white screen, with brick walls and a ceiling dotted with recessed lighting and ventilation fixtures. +sun_aheprbymgbgsueph.jpg The image depicts a movie theater viewed from the back, featuring vibrant, multicolored seats arranged in rows, dark walls with subtle lighting, and a large screen at the front with a bright, blank projection, all enclosed in a dimly lit, rectangular space. +sun_aynqahqcbvtdythw.jpg The image shows a room with wooden pews and blue fabric seating, a wooden paneled wall with a large American flag and a white screen at the front, suggesting a religious or community gathering space rather than a traditional movie theater. +sun_aejbiludzvbvmtiu.jpg The movie theater features sleek, light-colored seating under a vibrant blue-lit ceiling, with a modern, angular balcony structure and minimalistic walls creating a futuristic ambiance. +sun_aiebzyyqmnhffezt.jpg The image shows an ornate theater interior with plush red seating arranged in a semi-circle, a prominent stage with a red curtain partially drawn back exposing backstage equipment, and intricate golden architectural details on the walls viewed from an elevated angle. +sun_apemrlpkkejklzda.jpg The low-resolution image shows a cozy, dimly lit movie theater with rows of tan-colored seats facing a small screen displaying a scene under soft, ambient lighting, and the walls are painted in dark blue tones with minimal decoration. +sun_abxvzwavjyadwspp.jpg The movie theater features rows of uniformly lined dark green seats with wooden armrests, viewed from the center aisle, surrounded by wooden accents on the walls, and a high ceiling with bright lighting, emphasizing the stage area at the front. diff --git a/utils/area/descriptions/sun/generated_descriptions/museum_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/museum_descriptions.txt new file mode 100644 index 0000000..e6f2f2f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/museum_descriptions.txt @@ -0,0 +1,10 @@ +sun_atvhlvhmqcasttku.jpg The museum interior features a display case with a wooden frame showcasing an array of metallic and historical objects against a white wall, with warm lighting accentuating the reddish-brown tiled flooring and the sparsely decorated area. +sun_alzvkxlaeqbqrsnc.jpg The museum interior features a hallway with a glossy blue floor and white walls, lined with glass display cases showcasing various objects on each side, under a ceiling with white panels and visible lighting, while glass doors provide a clear view into a corridor with additional exhibits and overhead lights. +sun_aeddjjieljyphywg.jpg The museum display features a wooden ship model encased in glass, surrounded by illuminated shelves showcasing various small artifacts and pottery against a backdrop of cream-colored walls and a carpeted floor. +sun_akmyoxzfgadebzkn.jpg The museum interior features warm, red-orange walls with wooden display panels filled with historical photos and text, a chevron-patterned wooden floor, and a central dark wooden pedestal displaying an object, all framed within an inviting, open-concept space. +sun_blsfqhingqowddxx.jpg The museum interior features a large, textured globe centerpiece with a central escalator viewed from the front, surrounded by green-lit displays and white statues against a dark, vaulted background with cosmic decorations. +sun_bmqzhdiftjepumtl.jpg The museum features wooden display cases with a rich brown color, set against a light blue wall adorned with framed historical photographs and documents, while a central stand of framed images provides a focal point in the modest size room. +sun_akqvlwljdqfbghcw.jpg The image shows a museum installation featuring a central structure with abstract geometric designs in blue and white, surrounded by reflective panels with a dark, wooden, rustic interior background. +sun_atuzczewcgcsvyoe.jpg The museum interior features dark wooden accents and walls adorned with framed portraits, a central multi-colored stained glass window, and a blue ceiling highlighted by linear track lighting, all viewed from a vantage point near a wooden stair railing. +sun_aspdlwrxxnednirp.jpg The image shows an airplane hangar museum with a dark, bomber-style aircraft in the foreground, viewed head-on, under a large, ribbed metallic roof with exposed beams, surrounded by various other aircraft in a spacious, industrial environment. +sun_ayyfiyvccrumoeev.jpg The museum interior is warmly lit with wooden walls and floors, featuring hanging nautical artifacts like nets and baskets, and exhibits displaying maritime elements on both ground and elevated platforms, set against a backdrop of informational panels on the walls. diff --git a/utils/area/descriptions/sun/generated_descriptions/music_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/music_store_descriptions.txt new file mode 100644 index 0000000..5f7d486 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/music_store_descriptions.txt @@ -0,0 +1,10 @@ +sun_dlvwxrkkzbcoxyji.jpg The music store features a warm, woody interior with an array of string instruments, including violins, cellos, and a large double bass, displayed in a glass cabinet and hung on the wall, complemented by framed art, a friendly staff member at the center, and soft carpet flooring underfoot. +sun_dgavxowprqmnpbtq.jpg The music store features a vibrant display with colorful guitars hanging on a white pegboard wall, a central glass case filled with various music accessories, and a backdrop adorned with neatly organized merchandise and vivid signages under bright fluorescent lighting. +sun_dnivcoyxdjmpwpft.jpg A music store with a red drum set prominently displayed at the front, set against a black and white striped wall lined with various electric guitars in yellow, orange, and purple hues, with an organized layout and visible brand signage reading "PHONIC" in the background. +sun_drcicdlkoeutltwh.jpg The music store features a variety of guitars in different shapes and colors hanging on white pegboard walls, surrounded by keyboards, brass instruments displayed on light blue shelves, sheet music on the wall, and wooden musical instruments laid flat, in a compact room with a blue carpet floor. +sun_dsvwpkmyttqgauxd.jpg The music store features a display of colorful electric guitars in red, black, and natural wood on wall-mounted racks in a narrow aisle with beige carpet, complemented by a stand of hanging guitar straps to the left. +sun_dvwhogjgjodujqga.jpg The image cannot be seen, but if there was a music store, it would likely feature various musical instruments, vibrant signage, and possibly a street or shopping district background, emphasizing the commercial setting. +sun_doyffalaqcbvjmzn.jpg The music store features a vibrant and cluttered interior with rows of hanging guitars showcasing various shades of wood and metallic finishes, set against white brick walls, with colorful kits and accessories displayed in the background, bright overhead lighting, and numerous neon-colored sale signs. +sun_dhgkvwtvjrrztnja.jpg A cozy music room with light green walls is filled with rows of wooden string instruments, primarily violins displayed on wall-mounted racks, accompanied by a few chairs, a chandelier, and a music stand holding open sheet music. +sun_dmgwlvewospjbakm.jpg The music store interior features a vibrant display of drum sets predominantly red, silver, and black in color, with a glossy texture, neatly arranged on shelves against a dark wall with a person standing nearby, adjusting or inspecting the drums, and the store is illuminated by ambient lighting from a window in the background. +sun_dbbvcqinqcyrzodb.jpg The music store features a warm, inviting interior with beige walls and a polished checkerboard floor, showcasing a row of violins hanging on a wooden rack above a well-organized workshop area with desks, lamps, and tools, visible from a corner angle that highlights the cozy, instrument-focused environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/music_studio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/music_studio_descriptions.txt new file mode 100644 index 0000000..2d70ba1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/music_studio_descriptions.txt @@ -0,0 +1,10 @@ +sun_apyevnhvyvbfbktx.jpg The music studio features a textured blue wall backdrop with a low-resolution but discernible mixing console and screens on a desk, flanked by racks of sound equipment and an off-white reel-to-reel tape recorder, all viewed from a slightly elevated angle with a cluttered but organized arrangement. +sun_alzhxvuwphsuzogp.jpg The music studio features a neutral color palette with gray acoustic panels and a contrasting carpeted floor, viewed from an angle that shows a central desk with a digital audio workstation, studio monitors, and a microphone setup, surrounded by various musical equipment like drums and keyboards, under a ceiling with black soundproofing panels. +sun_ankemgpfkwjbetmu.jpg A music studio with a blue and beige acoustic panel background, showcasing two individuals: one playing a guitar with a sunburst finish and the other operating a mixing console surrounded by various speakers, viewed from an angle that highlights the studio's compact, cozy layout. +sun_bfwcvghuoknbgoak.jpg The music studio features a warm, beige color scheme with a textured wooden floor and an upright piano on the right, surrounded by guitar cases, a cello, and shelves against a vibrant red-walled background. +sun_arcrlhbmzkxmndev.jpg The music studio features a large mixing console with numerous knobs and buttons, set in a cluttered environment filled with cables and electronic equipment, viewed from an angle showing a person seated wearing a dark sweater and cap, with background elements such as a speaker, amplifier, and scattered papers contributing to the busy and immersive atmosphere. +sun_byaitvfvpzbtembd.jpg The music studio features a beige and light gray color scheme with a smooth texture, viewed from an angle showcasing several microphones and computer monitors on a cluttered desk, surrounded by soundproof walls and glass windows revealing additional equipment and a clock, with distinguishing broadcasting logos and control panels visible. +sun_awxcyzogzgadrbvq.jpg The music studio features a large mixing console with numerous knobs and buttons in the foreground, set against a backdrop of light-colored walls and wooden floors, with rack-mounted equipment and speakers visible, providing a modern and professional ambiance. +sun_ahilrufljztnphfw.jpg The music studio features a dark-themed console with multiple knobs and sliders, viewed from an angle showcasing a desk chair, large black studio monitors, and a grand piano visible through a glass partition against a wooden floor and a perforated acoustic ceiling. +sun_axzvpmbxmltqtagl.jpg The music studio features a sleek, modern design with light beige countertops and dark chairs, highlighted by black audio equipment and dual monitors on the central console, surrounded by soundproof gray walls with large windows revealing an adjacent room. +sun_bneojisyfuhmmeju.jpg The music studio features a drum kit with a prominent black finish and metallic cymbals, occupying the center with musicians seated around playing guitars, set against a background of beige soundproofing panels covering the walls, with visible wires scattered on the light-colored floor. diff --git a/utils/area/descriptions/sun/generated_descriptions/nuclear_power_plant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/nuclear_power_plant_descriptions.txt new file mode 100644 index 0000000..fa68c4c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/nuclear_power_plant_descriptions.txt @@ -0,0 +1,10 @@ +sun_azrqrkefohvmttty.jpg The nuclear power plant features a large, round, beige concrete dome contrasted against a mix of rectangular, gray structures, viewed from a ground-level perspective with a surrounding industrial landscape and water in the foreground, enveloped by a mesh fence and sparse vegetation. +sun_atmfhzphtvarauwq.jpg The low-resolution image shows four large cylindrical cooling towers of a nuclear power plant with a mottled grey color and a slightly rough texture, viewed from ground level with a snowy foreground and a cloudy sky background, distinguished by their hyperboloid shape and visible vapor rising above. +sun_ackokaekpkiybclt.jpg The industrial structure features a series of large, cylindrical towers with a metallic texture and a mix of gray and beige colors, set against a cloudy sky, with numerous pipes and framework visible amid a backdrop of sparse greenery and a distant power line. +sun_aqucuzemgqvsfgzi.jpg The nuclear power plant, viewed from a ground-level angle, features a prominent damaged gray metallic structure with a distinct red-and-white striped smokestack, surrounded by yellow scaffolding and set against an overcast sky with a barbed wire fence in the foreground. +sun_azgsgidaxztuqkny.jpg Two light gray cooling towers with a smooth texture emit white steam, viewed from a slightly elevated angle against a backdrop of rolling hills and sparse trees. +sun_aanrgekvnmoddpta.jpg The image shows a large, white-domed structure with a smooth texture, viewed from the side at ground level, against a backdrop of beige industrial buildings, a slender red and white chimney, and a few individuals in the foreground wearing white helmets. +sun_almeohhkbhjhcqgz.jpg The image shows a large, silver, dome-shaped structure with a ribbed texture, positioned on a grassy hill with a lone tree nearby, and set against a clear blue sky. +sun_aedldmijlemthifm.jpg The nuclear power plant features a large, light gray cooling tower with a slightly textured surface contrasting against a cloudy sky, accompanied by a shorter, cylindrical structure with red and white banding, set in a grassy field with a backdrop of distant hills. +sun_aertwfkhhgathupc.jpg Against a clear blue sky, the nuclear power plant features a prominent gray cooling tower with visible steam, accompanied by a blue-striped chimney, framed by industrial structures and green lawn in the foreground. +sun_aruenahbrnnjsgns.jpg The nuclear power plant features a tall, rust-colored chimney with scaffolding, set against a background of scattered clouds, surrounded by industrial structures with a weathered gray texture and visible metal reinforcements. diff --git a/utils/area/descriptions/sun/generated_descriptions/nursery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/nursery_descriptions.txt new file mode 100644 index 0000000..6045e20 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/nursery_descriptions.txt @@ -0,0 +1,10 @@ +sun_ahhdpeqoenrpeahb.jpg A white crib with a yellow blanket draped over it is situated against a wall with playful animal and butterfly decals, accompanied by striped wallpaper and a small blue seat nearby, all viewed from a slightly elevated angle. +sun_apgsktywmnchoesr.jpg The nursery features a white crib with yellow bedding set against a black accent wall, complemented by a striped yellow and white ceiling, a sleek black dresser, a modern mobile, and a bright red chair, situated in a room with a large window providing natural light and a soft rug covering the floor. +sun_aqbkdhsqwlbyjfuo.jpg The nursery features a light wood crib with slatted sides, positioned on a gray carpet, and is surrounded by matching wooden furniture, including a dresser and wardrobe set against a neutral wall with a large window draped with green curtains, allowing natural light to illuminate the colorful bedding. +sun_abjazkmuyuzjdcoe.jpg The nursery features a light wood crib and dresser set against a wallpaper with small floral patterns, accompanied by soft fabrics in neutral tones and a plush toy arranged around a smiling baby. +sun_ajguhwqkzkaakgfo.jpg A dark wooden crib with ornate curved ends is adorned with a pink quilt and white-patterned bedding, facing right in a sunlight-filled room with pink and white decor, including a window and personalized wall letters. +sun_aywxvwunsvoruhbq.jpg The nursery features a pastel-themed room with light yellow walls and curtains, centered on a white crib with a colorful mural of a tree and rainbow on the wall, surrounded by wooden flooring and white furniture, including a rocking chair and changing table. +sun_aboomsqrentffkpb.jpg The nursery features a warm, neutral color palette with a wooden crib and furniture, plush armchair and ottoman with patterned upholstery, set on a light-toned carpet and a colorful children's rug, all framed by vertical blinds on the windows in the background. +sun_amtzheqdzpprxdxc.jpg The nursery features soft yellow and purple striped walls above a smooth wooden crib and dresser, captured from an angled viewpoint with a simple carpeted floor background. +sun_alfwpdwodtlxepgy.jpg The nursery features pastel-colored walls with a whimsical, cartoon-themed mural depicting characters and balloons, a wooden crib with a patchwork quilt prominently showing similar figures, and is softly lit from a window on the left side of the room. +sun_akfreaeilyyswwlc.jpg The nursery features bright green walls with bold vertical brown stripes and polka dots, seen from a doorway viewpoint, with a modern crib, rocking chair, and decorated window blinds, all set against a soft carpeted floor. diff --git a/utils/area/descriptions/sun/generated_descriptions/oast_house_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/oast_house_descriptions.txt new file mode 100644 index 0000000..bc0f295 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/oast_house_descriptions.txt @@ -0,0 +1,10 @@ +sun_bvqtxlytwsoyiyrg.jpg The oast house features a reddish-brown brick structure with a conical roof, viewed from a front angle amidst a lush garden with trimmed bushes and trees, set against a partly cloudy sky. +sun_bqsblemefrjetxku.jpg The oast house features traditional conical roofs with white cowls against a backdrop of cloudy sky, viewed from a distance across a green lawn, and is surrounded by additional brick and white-painted buildings. +sun_bhajivrufgaupech.jpg The oast house has a white and black timber-framed exterior with a red-tiled roof, viewed from an elevated angle against a cloudy sky, bordered by neatly hedged gardens and flanked by complementary outbuildings. +sun_bsrkcyynvpgccrxf.jpg The oast house in the image features red brick walls with a slightly rough texture, topped by two conical roofs with weathered white cowls, set within a lush green rural environment with tall trees and a wooden fence in the background, viewed from a slight side angle. +sun_bwrmkcqjvksjyjuk.jpg The oast house features a red-brick roundel with a white cowled roof, viewed from the front at a slight angle, set against a background of clear blue sky and lush green grass, with a traditional half-timbered structure and wooden fencing completing the rural scene. +sun_agdzdicsqaarfpjf.jpg A traditional oast house with a conical roof capped by white cowls stands in a lush green landscape, featuring a blend of dark wood paneling and red brick walls with a pitched roof, surrounded by dense trees under a clear sky. +sun_bcfxouwyduazdrjw.jpg The oast house features weathered reddish-brown brick walls and two conical roofs with white caps, viewed from a slightly elevated angle, set against a lush green backdrop of leafy trees and a clear sky. +sun_bpvbotlnguqabqee.jpg The oast house features two traditional conical roofs with white cowls, set atop a long, red-brick structure with a pitched roof, surrounded by a lush grassy area with wildflowers and some trees in the background, presented from a slightly angled frontal viewpoint. +sun_blwjoiulzxpworgo.jpg The oast house features a series of reddish-brown conical roofs with white cowl tops set against a stone facade, viewed from a slightly elevated angle amidst a lush green landscape under a clear blue sky. +sun_bouwdmohcoopcgpy.jpg The oast house features a white weatherboarded exterior with multiple dark conical roofs, seen from a slightly elevated frontal angle, set against a backdrop of lush greenery and clear blue sky, with a neatly mowed grassy foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/observatory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/observatory_descriptions.txt new file mode 100644 index 0000000..db2ed29 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/observatory_descriptions.txt @@ -0,0 +1,10 @@ +sun_asxhmsoprsrkdzjf.jpg The image shows a dome-shaped white observatory with a smooth texture, viewed from the front and slightly to the side, set against a background of lush green trees under a clear blue sky, with the entrance and the word "OBSERVATORY" visible above the doors. +sun_adknknjwhwaoqhdx.jpg The observatory features a white, cylindrical structure with multiple black ventilation slits, rounded domes, and a clear view from an elevated position against a gradient sunset sky, emphasizing its utilitarian yet futuristic design. +sun_armecmmzrayyiqay.jpg The observatory features a large, illuminated dome with a smooth, light green texture on the rooftop of a classical stone building, set against a vivid purple twilight sky. +sun_andypevabzjssxxl.jpg The image depicts a low-resolution view of a distinctive pair of dome-shaped observatories with smooth red surfaces and dark circular windows, set against a cloudy sky, partially obstructed by tree branches, with metal antenna structures nearby. +sun_blyavozlvjyedkan.jpg The observatory features a reflective, silver dome with a smooth texture, capturing a vivid sky and surrounding buildings, set against a backdrop of greenery and a structured, glass architecture to one side. +sun_aeoypakpgtfprtdd.jpg The observatory features a geodesic dome and cylindrical base in olive green with vertical panel texture, viewed from the front amidst a suburban setting with nearby trees and a partially visible paved path. +sun_awdxivhctykftbuk.jpg The observatory is a white, dome-shaped structure with a smooth texture, viewed from a slightly upward angle, with clear lettering visible on the exterior, and surrounded by a sparse landscape under a clear sky. +sun_afxmilzjrkqnskmk.jpg The observatory features a metallic dome gleaming in the golden sunlight, set atop a square, beige-colored building, surrounded by a spacious rooftop with satellite dishes and distant mountains under a partly cloudy sky. +sun_avlfbwebuoggjupf.jpg The observatory features a tall, cylindrical structure with a ribbed, beige exterior and a white domed roof, viewed from a low angle against a clear blue sky with silhouetted trees. +sun_avxjybfqndighvwo.jpg The observatory features two white domes with a smooth texture set atop a tree-covered hillside, viewed from a low angle with a clear blue sky backdrop and a large tree partially framing the left side. diff --git a/utils/area/descriptions/sun/generated_descriptions/ocean_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ocean_descriptions.txt new file mode 100644 index 0000000..460d3f1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ocean_descriptions.txt @@ -0,0 +1,10 @@ +sun_afllxcwihpqkexrf.jpg The ocean appears dark and rippled with a silver sunlight reflection along its surface, viewed at a low angle with a hazy horizon and distant landmass in the background. +sun_amkjxevkfproahqi.jpg The ocean in the image appears deep blue with frothy white waves crashing in the foreground, viewed from a slightly elevated perspective against a backdrop of a cloud-dotted sky, creating a dynamic and textured seascape. +sun_acexnnaqwvwovewa.jpg The ocean appears deep blue with shimmering highlights from the sunlight, viewed from an elevated angle, with a curved sandy shore creating a striking contrast against the water and a backdrop of a bright sky dotted with scattered clouds. +sun_asrknmilwsicoydx.jpg The ocean appears silvery-gray with a shimmering texture under diffused sunlight, observed from a low viewpoint, with a dramatic sky of thick clouds casting faint beams of light onto the water's surface. +sun_avqevlwhpbxnxtkx.jpg The ocean appears calm and expansive with a smooth texture under a purple-hued sky at sunset, framed by silhouetted palm trees in the foreground. +sun_aqhbuvsuzjaoqrea.jpg The image displays a dark blue-green ocean with frothy white wave caps, captured from a low viewpoint, emphasizing the churning, turbulent texture and the overcast sky in the background. +sun_alwxdxldnifsfrwd.jpg The low-resolution image depicts a vast ocean with a soft gradient of dusky blue merging into a warm sunset sky, characterized by gentle waves rolling towards the shore under a cloud-dappled horizon. +sun_aeklnuruadlzojhv.jpg The ocean is depicted with a vibrant gradient of turquoise and deep blue hues, showcasing a dynamic texture of frothy white waves crashing and curling amidst the expansive sea with a distant horizon under a clear sky. +sun_bxbttwhmwtgwoaqr.jpg The ocean appears as a calm, grayish-blue expanse reflecting the soft orange and pink hues of a sunset sky, with silhouettes of ships in the distance and a faint shoreline visible against the horizon. +sun_atfafyyniwyaldar.jpg The ocean appears silvery with a shimmering texture under an overcast sky, reflecting light intensely while subtle waves create dark, rippling patterns on the surface. diff --git a/utils/area/descriptions/sun/generated_descriptions/office_building_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/office_building_descriptions.txt new file mode 100644 index 0000000..dc78d6d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/office_building_descriptions.txt @@ -0,0 +1,10 @@ +sun_bjqvdxhuvtodwawb.jpg The office building is a red brick facade with rows of arched windows, viewed from the street level, flanked by older, ornate architecture, with modern street elements like cars and lampposts in the foreground. +sun_blmabbqxnsxoiuho.jpg The office building is a tall, multi-story structure with alternating gray and white vertical panels, visible air conditioning units, and signage scattered across its facade, seen from a slightly angled street level perspective against a clear blue sky background. +sun_byujwooiryahuvks.jpg The building is a light-colored, rectangular office structure viewed from a slightly elevated angle, featuring rows of square windows and an overhanging roof design set against a background of an urban environment with green landscaping and vehicles. +sun_bgvfzayfaykbattn.jpg The office building, viewed from a low angle, features a sleek, modern facade of glass and light gray panels with a prominent vertical glass atrium, set against a partly cloudy sky and surrounded by urban signage, including a traffic light and directional sign. +sun_bxkeaqrjqpetaizw.jpg The office building is a modern, blue-tinted glass structure with a reflective surface, viewed from a low angle against a city skyline of various high-rise buildings under a cloudy sky. +sun_bxnjqkkoetwvzyjj.jpg The office building is a modern four-story structure featuring a white facade with large horizontal bands of tinted glass windows, positioned at an angled street corner, surrounded by a muted urban environment with adjacent buildings, and has minimal detailing aside from two small balconies and diamond-shaped window accents. +sun_babqsgzhxrrtsmwd.jpg A modern office building with a sleek glass facade reflecting blue tones, seen from a corner angle, is complemented by a clear sky and surrounded by palm trees and light traffic with subtle reflections enhancing its glossy texture. +sun_bueuyscnuvlyvtku.jpg The office building features a modern facade with a combination of white paneled walls and a prominent glass curtain wall on the corner, showcasing a reflective surface with views of diagonal metal beams, set against a clear blue sky and accompanied by geometric windows and concealed vents. +sun_bthyrwocdyalfuvj.jpg The office building features a tan and cream facade with smooth textures, viewed from a corner angle that highlights its multi-story structure with prominent corner towers, set against a backdrop of scattered clouds and surrounding pavement. +sun_bwwyhrzeogenyhiw.jpg The office building is viewed from a low angle and features a grid of reflective blue-tinted glass windows set against a contrasting white facade, surrounded by lush greenery and under a partly cloudy blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/office_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/office_descriptions.txt new file mode 100644 index 0000000..31b9ff2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/office_descriptions.txt @@ -0,0 +1,10 @@ +sun_btidmgyshpibnxyy.jpg The office features a warm-toned wooden desk and cabinets against a backdrop of urban high-rise buildings visible through large windows, with scattered papers and books, a computer monitor, and an organized yet cluttered layout under soft fluorescent lighting from above. +sun_aqannizrmkicpuuv.jpg The office is well-lit with natural light streaming through venetian blinds, featuring blue desks and chairs, checkered floor tiles, beige filing cabinets, and various office supplies scattered across the surfaces, with a cluttered yet organized appearance. +sun_asnqkkyhilqkxiqm.jpg The image shows an office with a checkered floor pattern of black and white tiles, featuring multiple blue-paneled desks and chairs, scattered paperwork, and shelves filled with binders, all illuminated by overhead fluorescent lighting casting shadows onto the tiled flooring and walls adorned with framed pictures. +sun_afnctbzycblkvsmt.jpg A side view of an office features a person in a white shirt sitting on a black leather chair at a desk cluttered with papers and electronics, set against a light-colored wall and window with beige curtains, with a small cat on the floor. +sun_bicaqnicjwprwdyq.jpg The office features a medium wooden desk with a dark surface, complemented by a black cushioned office chair, two wooden chairs with patterned upholstery, and a backdrop of cream walls adorned with framed certificates and a bookshelf with assorted book spines, all illuminated by natural light from a window. +sun_bajlayyngiopgdzi.jpg The office features a cluttered wooden desk with stacks of papers and folders, a dark brown leather chair, a computer monitor, and a light beige wall adorned with framed certificates, suggesting a professional environment with a moderately busy appearance. +sun_aqtqbutzkcbcphlk.jpg The office features a corner desk setup with light wood surfaces and silver legs, complemented by a blue chair; a flat computer monitor and organizer boxes are placed on the desk, and a cabinet with contrasting blue and black doors is visible in a bright, softly lit room with modern pendant lights and frosted windows. +sun_avgkvtklaviqlpub.jpg The office features a reception desk with a wooden and white design, a person seated in a pink vest, a computer screen beneath a window on the left, cabinets with potted plants and a clock on the wall, all set against a plain white and brown color scheme, with neatly arranged paperwork and decor. +sun_apqymiegdkooxyql.jpg The office features smooth, light wood furniture with a glossy blue cabinet door, a curved desk setup with an ergonomic red and black chair, positioned in a corner with large grid-patterned windows allowing ample light, set against a minimalist white wall background. +sun_akpmnledfyjbjmoc.jpg The office features beige walls and a carpeted floor, with two desks arranged in an L-shape equipped with computer monitors and black office chairs, adorned with neatly organized books and files on white shelves against the backdrop of a bright window. diff --git a/utils/area/descriptions/sun/generated_descriptions/oil_refinery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/oil_refinery_descriptions.txt new file mode 100644 index 0000000..eb8d900 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/oil_refinery_descriptions.txt @@ -0,0 +1,10 @@ +sun_abckgnjffdzfrtco.jpg The oil refinery, viewed from a slightly elevated angle, showcases a complex network of metallic towers and pipes with a predominantly silver and gray color, accented by red structures at the top, set against a clear blue sky and distant mountains. +sun_aetinprwwrdynizf.jpg The oil refinery appears from a ground-level viewpoint, showcasing large silver cylindrical structures with a metallic texture, vertical pipes, and complex scaffolding, set against a bright sky with a few individuals in the foreground. +sun_apvaxmwltkrzlnih.jpg The oil refinery is seen from a distant, elevated viewpoint, with rust-colored structures and dark smokestacks emitting white smoke, set against a clear blue sky and positioned near a body of water with industrial buildings in the foreground. +sun_bicgidaxuohsewfu.jpg The oil refinery, viewed from ground level, is silhouetted against a deep blue twilight sky, with tall, illuminated structures and intricate pipework casting a glowing, industrial landscape, surrounded by a flat, dark terrain. +sun_ajwezeikzlfwbhtl.jpg A silver cylindrical tank with visible piping and a blue logo stands in a desert landscape, surrounded by industrial structures under a clear sky. +sun_addrfvojiiugxpft.jpg The oil refinery features a complex network of red and metallic piping and vertical towers, viewed from an elevated angle with a distant industrial landscape and partly cloudy sky in the background. +sun_bpxqlmzjgatxhied.jpg The low-resolution image depicts an oil refinery from an elevated viewpoint, showcasing cylindrical storage tanks and numerous vertical pipes and towers in metallic shades with a backdrop of rolling hills and a clear sky. +sun_aiycjenvksdzsedn.jpg A complex network of metallic silver and rust-colored pipes and towers dominates the industrial scene from a ground-level view, set against a cloudy gray sky, with large cylindrical tanks and scaffolding structures visible among the intricate infrastructure. +sun_ahgqtfjtjcplmsiq.jpg Against a warm orange sunset, the low-resolution image shows an oil refinery composed of several industrial towers and cylindrical storage tanks with a silhouetted and slightly hazy appearance, surrounded by flat terrain and thin tree lines. +sun_awskjllnoffwoklv.jpg The oil refinery features towering metallic structures with a weathered silver and gray texture, viewed from ground level with a crane in the foreground, set against a cloudy sky backdrop with surrounding industrial equipment and a sparse grassy area. diff --git a/utils/area/descriptions/sun/generated_descriptions/oilrig_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/oilrig_descriptions.txt new file mode 100644 index 0000000..f7936e9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/oilrig_descriptions.txt @@ -0,0 +1,10 @@ +sun_aktldngyrrftcwgu.jpg The oilrig is tilted at an angle over calm blue water, featuring a weathered, metallic structure with visible pipework, a helipad, and various equipment scattered along its surface. +sun_ahmttrtwpobirnuv.jpg The offshore oil rig features a metallic structure with predominantly yellow and red hues, rugged textures, and a central tower, viewed from an elevated angle surrounded by a vast expanse of deep blue ocean with visible flames at the top of an elongated arm. +sun_achchmmopbpnpeou.jpg The oilrig is a large, red and gray structure with smooth metallic textures, prominently featuring a central tower and cranes, viewed from a slight angle against a blue ocean backdrop and a sunset-lit sky. +sun_atpcfykolkneuteo.jpg The oil rig is a predominantly white and red structure with a central tower, viewed from an elevated angle, floating in a vast expanse of deep blue ocean, and it's characterized by its helicopter landing pad and multiple supporting legs extending into the water. +sun_aodjjtflxdwwhrci.jpg The oilrig is characterized by a tall, black cylindrical structure with attached cables and machinery, viewed from a low angle under a clear blue sky, against a backdrop of a rocky shoreline and trees, with visible workers and an orange life ring adding scale and context. +sun_akwkyawvrfresefz.jpg A distant view of an orange oil rig with angular structures and a tower-like framework, set against a backdrop of hazy mountains and a calm sea. +sun_auxxzjpvhbhiswhp.jpg A silhouetted offshore oilrig with cranes, a central flare emitting light from the top, stands against a cloudy twilight sky and calm sea, with a distant ship nearby. +sun_aykefnhciwsffcrj.jpg The image displays a large offshore oil rig featuring a vibrant red and blue hull with a tall, intricate lattice tower, situated at a slight angle against a harbor background, accompanied by cranes and industrial structures. +sun_azebxxqlckfbdqji.jpg The oilrig features a towering metallic structure with a lattice framework and a central cylindrical column, viewed against a bright blue sky with several adjacent industrial buildings and a small white boat in the forefront, moored beside wooden piers in a reflective water body. +sun_aqaewvbhhynrfzan.jpg The oil rig is a large, multi-level structure with yellow cylindrical support columns and a complex arrangement of machinery and cranes on top, set against an ocean backdrop and under a partly cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/operating_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/operating_room_descriptions.txt new file mode 100644 index 0000000..7fa9799 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/operating_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_bixaprqaoxxxioow.jpg The image depicts a sparsely furnished operating room with a teal, cross-patterned draped table centrally positioned, a small, crowded workbench with medical supplies to its left, and a minimalistic white-walled space surrounding it, illuminated by fluorescent lighting. +sun_bhyaceomxjjdabih.jpg The operating room features a beige floor with a speckled texture, viewed from a slightly elevated angle, showcasing a metal equipment stand draped with a pink cloth, surrounded by various medical apparatus including a tall grey machine and oxygen tanks against a backdrop of a white-tiled wall and counter cluttered with medical supplies. +sun_atvtojzshearbqvq.jpg The operating room, viewed from an elevated angle, features a light interior with nurses in white uniforms surrounding a patient on a central operating table, flanked by medical equipment on metal stands with a visible large window casting natural light across the vintage-style setting. +sun_argjrwammdcpuggm.jpg The operating room features stainless steel tables covered with teal-green drapes, viewed from a side angle, with a wall-mounted cabinet, medical equipment, and a lamp in the neutral-toned background. +sun_bxrimvlqzpqmspxr.jpg The operating room is predominantly filled with advanced medical equipment, featuring a large, light gray C-arm machine with curved beige components at the center, surrounded by metallic and blue monitor displays, a preparation table covered with sky-blue sterile wraps, and a polished, reflective light gray floor, all viewed from a frontal angle within a modern hospital setting. +sun_axdonpcdrccaofvc.jpg The operating room features a group of individuals in blue scrubs and hair coverings standing beside medical equipment and an operating table with green and white linens, set against a backdrop of clinical white walls and overhead surgical lights. +sun_bisxzlfyfajsztdm.jpg The operating room features a minimalist design with white tiled flooring and walls, lit by natural light from large window panels; in the center, a dark-colored operating table is surrounded by medical equipment and an adjustable lamp, with organized instruments on stainless steel surfaces along the sides. +sun_axrjbmepcvdfcrbj.jpg The operating room features a silver metallic operating table, a woman in a white lab coat standing centrally, pale blue cabinets with cluttered surfaces against the beige walls, and a window with venetian blinds, creating a sterile yet slightly cluttered environment. +sun_aiaegfvplcmsxazs.jpg The operating room is viewed from the side, showcasing beige tiled walls, metallic examination tables, and various medical equipment with a prominent ceiling-mounted surgical light. +sun_bceyngaoishvhxsp.jpg The operating room features a sterile, clinical environment with a predominantly blue and white color scheme, visible hospital bed with wheels, overhead surgical lights, medical equipment affixed to the walls, and a blue privacy curtain, all observed from a slightly low and angled viewpoint. diff --git a/utils/area/descriptions/sun/generated_descriptions/orchard_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/orchard_descriptions.txt new file mode 100644 index 0000000..0f5ef7d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/orchard_descriptions.txt @@ -0,0 +1,10 @@ +sun_akadjltzgtyjrhug.jpg Rows of apple trees laden with red and yellow apples stand in neat alignment on a white tarp-covered ground under a partly cloudy sky. +sun_aefhlnsscvzwgofi.jpg A dense arrangement of gnarled trees with white blossoms, viewed at an angle from ground level against a bright green grass foreground and slightly blurred row of trunks in the background. +sun_awnqukywtkleuxie.jpg The image shows an orchard with light green and white flowering trees aligned in rows, viewed from a ground-level perspective with a dirt path in the foreground, surrounded by a lush green landscape and under a clear blue sky. +sun_aoodwdbjtoqmvkqy.jpg The low-resolution image depicts an orchard with vibrant green, densely-leaved trees evenly spaced across a flat grassy field, viewed from ground level with a backdrop of taller trees against a clear blue sky. +sun_anndvjkghlrihzwm.jpg The image shows an orchard with uniformly spaced trees bearing white blossoms under a partially cloudy sky, with a lush green foreground and hilly background creating a serene and organized landscape. +sun_aylksskpitmxoexe.jpg The orchard is filled with rows of small, bushy trees with green and yellow leaves visible against a clear blue sky, set alongside a grassy dirt path where two people are walking, suggesting an autumn or early spring setting. +sun_ahjqkxuuhcamfwbj.jpg The orchard displays sparse trees with thin branches and budding pale green leaves against a backdrop of a gentle grassy slope, under a clear sky, with a visible patch of fallen leaves on the ground. +sun_afvzrpscrrlabozq.jpg The orchard features rows of vibrant green-leafed trees with slightly rough bark, viewed from a ground-level angle along a gravel path bordered by grass, set against a clear blue sky. +sun_aasnyevjyhwkkarx.jpg In the image, the orchard displays a lush, green landscape with blooming trees laden with delicate white flowers, viewed from a low angle against a backdrop of sunlit grass and partially wooded areas, accentuated by the gentle dappling of light through the canopy. +sun_arkrgghftndftekd.jpg The orchard features rows of verdant green trees with sparse foliage, viewed from a low-angle perspective along a dirt path, set against a clear sky with scattered leaves on the ground. diff --git a/utils/area/descriptions/sun/generated_descriptions/outhouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/outhouse_descriptions.txt new file mode 100644 index 0000000..8013ffd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/outhouse_descriptions.txt @@ -0,0 +1,10 @@ +sun_ahwdsaqwxcqbphci.jpg A rustic, weathered wooden outhouse, seen from a slightly tilted front angle, stands in a snowy woodland setting with tall, bare trees in the background, featuring a slanted roof and a front door with a faded appearance. +sun_agaghrowuadckvrq.jpg The outhouse is a small, rustic structure with weathered, grayish-brown wooden planks and a slanted roof, set in a grassy, sloped clearing with scattered trees and a few fallen branches in the background. +sun_ambxkjsopysrbwdq.jpg The outhouse features weathered gray wooden planks with a rusty-brown roof, viewed frontally amidst a backdrop of dense trees and scattered leaves on the ground. +sun_axlomipvldxohlxk.jpg The outhouse is weathered with peeling gray-brown wood, viewed from the front under a rustic, slatted roof, set in an open grassy field with sparse trees under a clear sky. +sun_azlsominozfsarah.jpg The outhouse is made of weathered, grayish-brown wooden logs with a slightly open vertical-plank door, viewed from the front with a forested backdrop and children in the foreground. +sun_awkzzudlhzofhrxo.jpg A small, red wooden outhouse with a slanted roof is seen from the front, slightly tilted amidst a backdrop of tall, bare trees in a forested area, with sparse vegetation and fallen leaves on the ground. +sun_akrhiduiorwnxdlk.jpg The outhouse is a weathered, light brown wooden structure with a heart-shaped cutout on the door, viewed from the front amidst a lush green environment with tall plants and shadows casting across the scene. +sun_abepzvharzdivkaq.jpg The outhouse is built from unfinished, light-colored plywood displaying a rough, natural texture and stands front-facing in a wooded area with surrounding trunks and sparse green underbrush, featuring an open doorway and raised on concrete blocks against a backdrop of trees. +sun_aqfeylcnoudenrgh.jpg The outhouse is a small, red structure with a weathered appearance, elevated on a stone foundation, situated in a snowy, glacial landscape with penguins scattered around in the foreground. +sun_asvzkstmwbolucer.jpg A weathered, light brown wooden outhouse with a simple, rectangular structure and an open doorway is set against a background of dense green foliage and grassy ground, featuring a small red light fixture above the entry. diff --git a/utils/area/descriptions/sun/generated_descriptions/pagoda_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/pagoda_descriptions.txt new file mode 100644 index 0000000..6ecf986 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/pagoda_descriptions.txt @@ -0,0 +1,10 @@ +sun_awhdpalqmyvaxnyt.jpg The pagoda is an octagonal structure with a tiered, upward-curving roof featuring ornate tiles, predominantly in black, red, and gold, set amidst a lush backdrop of trees, with intricate woodwork and small golden inscriptions accentuating its surface. +sun_bjfivcmyugugzojp.jpg Two tall, intricately tiered pagodas with red and white roofs stand against a hazy sky, surrounded by a park-like setting with trees and people, while a colorful dragon sculpture snakes around the base. +sun_bdsueslplqfnwvqd.jpg The pagoda is a multi-tiered, wooden structure with dark brown roofs and a central spire, viewed from a frontal angle amidst a lush green backdrop of trees against a clear blue sky. +sun_bucwcvzpkcdiqpwp.jpg The pagoda is multi-tiered with a reddish-brown and white stone exterior, viewed from the front against a clear blue sky, with distinct golden finials atop each tier and surrounded by leafless trees and figures in traditional attire. +sun_bmsxrikcuhcctcic.jpg The pagoda exhibits a tiered structure with predominantly red hues and distinct dark roofing, viewed from a frontal perspective against a cloudy sky and surrounded by a traditional temple setting with paved paths and scattered pigeons. +sun_aoowymvsutvxgcmz.jpg The pagoda features a golden and white color scheme with intricate detailing, viewed from a frontal angle against a cloudy sky, surrounded by greenery and featuring multiple tiered arches and spires. +sun_bjepkazylenwnfvt.jpg The pagoda appears as a multi-tiered, reddish-brown structure with white accents on each level suggesting snow, viewed from a low angle amidst snow-covered trees and traditional architecture in a cloudy environment. +sun_brossutoxmwtewlf.jpg The pagoda has a weathered, earthy brown and green texture with a tiered, cylindrical shape viewed from the front, set against a lush greenery background and stone steps leading up to its entrance, with trees partially obscuring its base. +sun_bknbqkyjmltzjpuf.jpg The pagoda features multiple tiered roofs with dark, silhouetted outlines against a gradient blue sky, situated amidst lush green foliage and distant mountains, highlighted by its vertical central spire and illuminated windows from nearby low structures. +sun_bvbbielluqhzlmup.jpg The image depicts a towering, multi-tiered pagoda with dark, weathered wood and curved eaves, viewed from a low angle amidst bustling streets lined with traditional wooden and modern concrete structures, under a partly cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/palace_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/palace_descriptions.txt new file mode 100644 index 0000000..a5dc8bd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/palace_descriptions.txt @@ -0,0 +1,10 @@ +sun_abwpccyolzdmqvhp.jpg A grand palace with a cream and pink sandstone texture is viewed from the front at a slight angle, displaying a massive dome, numerous columns, and a wide courtyard with red carpeting, set against a clear blue sky. +sun_awbahokijptequdk.jpg The palace, viewed from the front, features light brown stonework with minimal ornamentation and several round towers, set against a backdrop of clear blue sky and surrounded by a manicured lawn with scattered daffodils and a few trees. +sun_bbbsnapnrnfolvyd.jpg This palace features a beige stone exterior with ornate detailing, viewed from the front at a low angle, set against a clear sky with a tall flag and a bustling square dotted with people and vehicles. +sun_bzvexbwutubtxjoh.jpg A monumental, beige-colored palace with a textured facade and multiple spires is centrally positioned against a cloudy sky, flanked by symmetrical staircases and lush, tiered gardens in the foreground. +sun_anzshbggtkghellq.jpg The palace is illuminated at night with a combination of warm gold and cool teal lights accentuating its classic architecture, featuring a tall central tower and rows of columns, set against a lavish backdrop of fountains with glowing water jets. +sun_aztsuxuvtuoapmii.jpg The palace is a light gray, three-story structure with a smooth texture, featuring a central tower topped with a flag, large arched windows, and is set against a backdrop of tall palm trees and city buildings under a partly cloudy blue sky. +sun_bucbjwwnrxmwcldc.jpg The palace is an ornately designed structure with warm beige sandstone walls and decorative arches, featuring a central tower under a dusk sky, surrounded by a symmetrical courtyard with a turquoise pool and lush greenery, all softly illuminated against a clear evening backdrop. +sun_buspgtubqiaxfwod.jpg The image shows a grand palace with a gray stone facade featuring classical columns and symmetrical windows, viewed from the front with an iron fence and large crowd in the foreground under a partially cloudy blue sky. +sun_bngodbpuqqinwgov.jpg The palace, viewed head-on, is a large, symmetrical structure with a beige facade and a brown roof, set against a clear blue sky and surrounded by meticulously arranged formal gardens with colorful flowerbeds and gravel pathways, flanked by lush greenery. +sun_beynyixuroyuumjc.jpg The image shows a grand, ornate palace with a symmetrical facade made of light gray stone, featuring large black and gold gates adorned with intricate designs and set against a cloudy sky with numerous visitors in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/pantry_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/pantry_descriptions.txt new file mode 100644 index 0000000..839c30f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/pantry_descriptions.txt @@ -0,0 +1,10 @@ +sun_ajkflfgnxqglyjvu.jpg The pantry, viewed from the front, features green-lined wooden shelves stocked with an array of colorful ceramic and glassware, framed by a rustic wooden doorway with decorative ceramic tiles adorning the upper interior wall. +sun_ahsxrtflqwvobpem.jpg The pantry features a well-organized array of colorful boxed and canned goods on white wire shelves, with wicker baskets and clear plastic bins from a straight-on viewpoint, set against a minimalist white wall background, highlighted by the contrast of dark wine bottles and the uniform texture of the packaging. +sun_adfuytcrhxvbytdu.jpg The pantry is a miniature, white-framed shelving unit adorned with blue floral wallpaper, containing neatly arranged miniature items like cakes, a basket of oranges, and packaged goods, with texture variations from smooth plastic to a woven basket, viewed from the front with a red gas cylinder marking a distinct feature. +sun_aqmkcqvbadhhmfys.jpg In a corner setting with light-colored walls and wooden flooring, this L-shaped white pantry features neatly arranged vibrant cans, woven baskets, bottles, and ceramic dishes on its shelves, with a wire rack holding pans and utensils on the adjacent wall. +sun_avquxtcappjkurse.jpg The pantry features wooden shelves filled with glass jars containing pickled and preserved foods displayed from a side viewpoint, surrounded by a rustic basement environment with cardboard boxes and various storage items visible. +sun_aixksglehexczylt.jpg The pantry is a dimly lit space with white shelves filled with an assortment of colorful canned and boxed goods, displaying a neat, organized arrangement against a smooth, white wall backdrop. +sun_bkrjfovupmughuiw.jpg The pantry is a neatly organized, L-shaped space with white shelves holding a variety of colorful packaged goods, cans, and kitchen items, set against a light green wall in a sunlit room with a hardwood floor and a small storage cart with a wooden top nearby. +sun_anwqovbnnepsibyu.jpg A wooden double-door pantry with a variety of colorful canned and packaged goods, captured in frontal view, featuring recognizable brand labels and a neatly arranged layout against a light interior. +sun_aougazdcuqbiisjw.jpg The pantry is a wooden cabinet with a light brown exterior and white interior shelves, viewed straight on, and contains various items such as canned goods, bottles, and plastic packaging, all set against a kitchen environment with cleaning products partially visible on the left. +sun_anpkgpafctyzohnd.jpg The pantry, viewed from a side angle with white metal shelves, features rows of canned goods predominantly in blue and silver labels, against a background of stacked cardboard boxes and wire baskets, with distinct vibrant red and blue clothing accents worn by individuals organizing items. diff --git a/utils/area/descriptions/sun/generated_descriptions/park_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/park_descriptions.txt new file mode 100644 index 0000000..e91e80e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/park_descriptions.txt @@ -0,0 +1,10 @@ +sun_ahnbzptlporaypcd.jpg A person stands in a lush green park with neatly trimmed grass under a clear blue sky, framed by palm leaves and a beige metal fence, overlooking a city skyline featuring diverse modern high-rises. +sun_bagsjbpbotjgrgxk.jpg The park features a vibrant green grassy expanse with tall, leafy trees providing partial shade along the red brick pathway, with scattered groups of people relaxing under a blue sky amidst a backdrop of urban structures. +sun_bacaempvwbckqgqk.jpg A serene park scene is depicted with lush green grass and trees surrounding a calm, reflective pond under a partly cloudy blue sky, with a winding path to the right and distant figures adding a sense of peaceful activity. +sun_amfmwiypayezypth.jpg A narrow, paved path bordered by cobblestones winds through a lush, green park with densely leafed trees and vibrant shrubbery, under a canopy of light filtering through leaves, suggesting a secluded, peaceful woodland setting. +sun_aerlsgdmowltbanb.jpg The park features leafless trees casting shadows on partially snow-dusted grass, with a winding pathway alongside a calm pond and distant urban structures under a clear blue sky. +sun_ahfojolouxvnjezn.jpg A park with a paved walkway is bordered by black iron fencing, surrounded by tall, leafless trees with budding green leaves, and features a background of white tents suggesting an event or gathering amidst the verdant grassy area. +sun_axunjczjteevfnxb.jpg A serene park scene with vibrant green hedges lining the reflective surface of a narrow water canal that curves towards a distant point, bordered by lush trees under a soft, overcast sky. +sun_agrmyoovzukhxmlo.jpg Two wooden benches with metal frames are positioned on a gray stone-tiled path in front of a large, leafy tree, surrounded by lush green bushes and a building in the background. +sun_bwbpjttdwvnqrlxp.jpg A misty, serene lakeside park with lush green grass in the foreground, a wooden bench near the water's edge, flanked by tall leafy trees, and a distant view of a calm, reflective lake under a muted, overcast sky. +sun_ajozqjfbfretxedr.jpg A lush park landscape with vibrant green grass and a variety of plants featuring textured foliage in shades of green and silver, set against a distant urban skyline partly obscured by trees, with a clear blue sky overhead. diff --git a/utils/area/descriptions/sun/generated_descriptions/parking_garage_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/parking_garage_descriptions.txt new file mode 100644 index 0000000..35b54a3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/parking_garage_descriptions.txt @@ -0,0 +1,10 @@ +sun_dwamoisjiluilfuu.jpg The parking garage appears to be a multi-level structure with beige and brown striped textured walls, viewed from an angular perspective against a partly cloudy sky and adjacent greenery, featuring open-sided floors with repetitive horizontal lines. +sun_dhildmntuoxkhocv.jpg The parking garage has a concrete texture with gray flooring, viewed from a stationary angle showing painted parking spaces, bordered by beige and orange columns, with a ceiling featuring exposed pipes in red and black, and a background of elevator doors on a tan wall. +sun_duczdiehhutrkucq.jpg A multi-level, gray concrete parking garage with horizontal slats is viewed from a side angle, surrounded by palm trees and set against a clear blue sky. +sun_dcznbbnmopexxkxa.jpg The parking garage is a multi-level structure with a concrete texture featuring horizontal lines, viewed from a slightly angled position showing its facade and side, set against a backdrop of trees and a clear sky, with the street and neighboring buildings in the foreground. +sun_drfdoppvtnycshxs.jpg The parking garage is a multi-story rectangular structure with a beige facade and horizontal linear texture, viewed from an angled position showing both front and side walls, with a clear sky and street environment featuring parked cars and a fenced parking payment booth in the foreground. +sun_drxmjgaqjbbmmsgi.jpg The parking garage features a dull, gray concrete ceiling and floor with a slightly curved perspective view showing multiple bright yellow and blue support columns, alongside parked vehicles, against a background of dimly lit, open exterior spaces visible through large wall gaps. +sun_dmxqxrtueifkiuxm.jpg The parking garage features a light gray, concrete texture with horizontal bands, viewed at an angle showing multiple levels, against a backdrop of modern glass buildings and a clear sky, with a traffic light visible in the foreground. +sun_dbeebqwqmoiibnpp.jpg The parking garage features a dimly lit interior with gray concrete floors and ceilings, viewed from an oblique angle showcasing multiple parked dark-colored cars on the left and illuminated by fluorescent lights with a glimpse of the outside ambient light filtering through side windows. +sun_dshqbmkpgjlsryfb.jpg The image shows an underground parking garage with concrete walls and ceilings featuring prominent yellow pillars and exposed piping, viewed from the entrance with a slightly dim environment, where a few parked vehicles are discernible in the background. +sun_dtkpmofybuzgkcmx.jpg The parking garage has an industrial appearance with grey concrete walls and ceilings, illuminated by fluorescent lights, visible from a central perspective that highlights rows of parked cars separated by square concrete pillars and red-painted utility pipes running along the ceiling. diff --git a/utils/area/descriptions/sun/generated_descriptions/parking_lot_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/parking_lot_descriptions.txt new file mode 100644 index 0000000..0af67a8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/parking_lot_descriptions.txt @@ -0,0 +1,10 @@ +sun_atuibfzjlcpcgovm.jpg The parking lot features an array of multicolored cars aligned diagonally on an asphalt surface with a visible tree-lined background and illuminated by tall light poles amidst a hilly terrain. +sun_bktlxgavskikukhp.jpg The parking lot features a row of assorted-colored vehicles parked in front of a green and white double-decker train, with a partially cloudy sky and urban structures faintly visible in the background. +sun_aigjeazvugdyeekn.jpg The parking lot is densely filled with rows of vehicles in various colors, viewed from an elevated angle showing adjacent modern retail buildings with a mix of beige, red, and glass facades against a clear sky, and surrounded by urban infrastructure including highway overpasses. +sun_aeyvfpjpaxovyzlt.jpg A cobblestone parking lot with several cars in various muted colors is framed by historic brick buildings and arched windows, with ivy partially covering one wall in a sunlit courtyard setting. +sun_bzlauqdcodbgwoqh.jpg A densely filled parking lot with rows of predominantly silver and white cars viewed from a slightly elevated position, featuring a flat asphalt surface with white painted lines and distant tree-lined horizon under a bright, partly cloudy sky. +sun_brlnaqenzcviyzva.jpg The parking lot features a smooth, grey concrete surface with cars parked at either end, bordered by a low white concrete wall against a backdrop of lush green trees under a partly cloudy sky. +sun_bbafpemgnyanelwa.jpg The low-resolution image shows a parking lot with a smooth, gray asphalt texture, viewed from a slight elevated angle, surrounded by buildings painted in a bright yellow with red roofs, and featuring several parked cars with a tropical greenery backdrop. +sun_aotayndemtmwtblv.jpg In the low-resolution image, the parking lot appears filled with a variety of cars lined up closely together, with the asphalt ground showing a muted gray color, a few tall structures or poles in the background against a partly cloudy sky, and greenery in the distant background. +sun_agyocbadszoymovr.jpg The parking lot is lined with faded parking lines on a dark asphalt surface, viewed from an angled roadside perspective, with a row of multi-story tan and white buildings featuring A-frame roofs and large windows in the background, while several colored vehicles, including prominent bright blue and red ones, are parked neatly diagonally. +sun_adljvfexptplpmdp.jpg The image shows the rear view of a silver car with a boxy shape and distinct vertical tail lights, flanked by two black cars, parked on a flat, sunlit surface with a blue sky and clouds in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/parlor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/parlor_descriptions.txt new file mode 100644 index 0000000..2ce7fc7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/parlor_descriptions.txt @@ -0,0 +1,10 @@ +sun_bxdgwbykhhzjsbzl.jpg The parlor features golden textured walls adorned with large portrait paintings, elegant chandeliers hanging from a high ceiling, and a richly patterned carpet, viewed from a slightly elevated angle with ornate fireplaces along the walls and a reflective large mirror enhancing the sophisticated ambiance. +sun_apdmsanhpotsatwi.jpg The parlor features a vintage brown velvet couch with embroidered patterns, a richly textured red wallpaper backdrop adorned with classic portraits and a floral lamp, and includes a dark wooden organ on the left, creating an elegant, antique atmosphere. +sun_bbvblllotrzajned.jpg The parlor features an elegant Victorian-style decor with muted green and beige tones, plush wooden chairs with ornate upholstery, a vintage fireplace adorned with twinkling string lights, and a richly patterned red carpet, viewed from a cozy corner with a window framed by delicate sheer curtains allowing soft light to filter in, creating a warm and inviting ambiance. +sun_bvwjaqaykhjtsimq.jpg The parlor features a warmly-lit, traditionally-furnished room with white walls and curtains, a polished wooden piano against the back wall, an elegant table set with white and floral arrangements, and a richly cushioned sofa with vibrant red and gold pillows on a light-colored carpeted floor. +sun_bbrhklzxqnxketlp.jpg The parlor features ornate, gold-accented furniture with marble tabletops, surrounded by pastel green walls adorned with framed portraits and large windows, creating an elegant and classical atmosphere. +sun_bbfnuxlzourxhukb.jpg The parlor features an array of intricately carved wooden chairs with deep red patterned upholstery, set against a backdrop of large floral drapes in a warmly lit room with tiled floors and eclectic decorations. +sun_bmrpqjwpjdigvuvr.jpg The parlor features pastel-colored sofas with light floral patterns, complemented by pink lamps and chairs, viewed from a centered angle with a soft green carpet and pale green walls, accentuated by large windows and wood-trimmed doorways. +sun_bxxoqwidrtscskig.jpg The parlor features a classic setup with a dark wood fireplace against a white wall, flanked by decorative vases and a vintage painting, accompanied by a richly patterned red and green carpet, wooden chairs, a tufted leather chair, and a book-filled wooden cabinet, viewed from an angled perspective highlighting the cozy and traditional ambiance. +sun_bumhktprhzkqkbfz.jpg A lavish parlor with deep red walls adorned with large, ornate gold-framed paintings and wall sconces, featuring an intricate-patterned carpet and an opulent mirror reflecting a chandelier, viewed from a slightly oblique angle. +sun_bpeseslaneedpdvy.jpg The parlor features a classic and elegant design with cream walls, dark blue drapery, an ornate central vase-like fixture, and a richly textured purple carpet, viewed from a slightly elevated angle with vintage furniture and framed photos adding to its traditional ambiance. diff --git a/utils/area/descriptions/sun/generated_descriptions/pasture_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/pasture_descriptions.txt new file mode 100644 index 0000000..01d0b60 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/pasture_descriptions.txt @@ -0,0 +1,10 @@ +sun_avwitihfjvffuwfj.jpg The pasture features a lush green texture, viewed from a slightly elevated vantage point with trees dotting the landscape and a distant, low-lying mountain range under a clear, lightly clouded blue sky. +sun_advmjgsfdftdushs.jpg The image shows a lush green pasture with two small horses grazing, surrounded by dense foliage and trees, with a backdrop of distant blue water and sky, giving a sense of elevated perspective. +sun_alevcjscxpwuxxwo.jpg The image shows a pasture with lush, green grass covering the foreground, bordered by dense forest with a mix of tall and short trees, and a distant view of rolling hills and a cloudy sky, creating a serene and expansive landscape. +sun_aoiqhdnwtuzzuijz.jpg A green pasture filled with evenly spread, grazing cows in various colors, with a slightly elevated viewpoint showing a distant tree-lined hill under a cloudy sky. +sun_aoaznvkgswajaeyh.jpg A lush green pasture stretches across the foreground with a meandering stream, where black and brown cattle graze peacefully, set against a backdrop of dense, multihued autumnal trees on gently rolling hills under a clear blue sky. +sun_bfyteqrabvricavk.jpg The pasture appears as a vibrant green expanse with patches of different textures, viewed from a ground-level perspective, featuring grazing animals and dotted with fence posts, set against a backdrop of lush trees and a bright blue sky with fluffy white clouds. +sun_bhxzoowvbbveslfi.jpg The pasture appears vibrant green with a smooth texture, seen from a slightly elevated viewpoint, featuring gently rolling hills and scattered trees in the background, with a small tree and a cylindrical metal structure prominently in the mid-ground. +sun_bvgqhpzuyaaqryej.jpg Two brown cows stand on a lush green pasture with a wire fence, while a small patch of trees lines the background beneath a clear blue sky. +sun_beavazjdqtkbcbae.jpg The image shows a lush, vibrant green pasture with a soft, uneven texture, viewed from an elevated angle, populated by several black and white cows grazing, surrounded by patchwork fields and distant hills under a clear sky. +sun_aqtyqlfzopdgzqrf.jpg The pasture is a vivid green with a smooth, grassy texture, observed from a low-angle viewpoint showcasing a backdrop of white houses and towering mountains under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/patio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/patio_descriptions.txt new file mode 100644 index 0000000..867c1d3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/patio_descriptions.txt @@ -0,0 +1,9 @@ +sun_bwclurkweotbffez.jpg The patio features light-colored, irregular stone tiles with grass growing between them, a central dark fountain, white plastic chairs, and a wooden fence backdrop surrounded by lush greenery. +sun_bguvlhyeyafxvvbw.jpg The patio features wooden furniture with a natural grain finish, viewed at a slight angle, set against a background of open doors leading inside and smooth stone walls, distinguished by a table set with white dishes and a bowl of fruit. +sun_azmydxspymsuvzth.jpg The patio features a terracotta tile flooring with a grid-like texture, seen from an elevated angle, surrounded by white railings and decorated with floral-patterned cushioned chairs around a circular glass table, set against a clear outdoor backdrop with scattered plants. +sun_bjpcnwppdraupkpb.jpg The image showcases a stone patio with a light gray and slightly textured surface, viewed from a slight above-ground angle, featuring a set of metal chairs and an umbrella in a circular arrangement, surrounded by green grass and bordered by flower pots adding vibrant colors. +sun_bxnxatnyhnxingwq.jpg The patio features a textured stone wall backdrop and a tiled floor in a pink and cream checkerboard pattern, with white plastic chairs surrounding a rectangular table shaded by a blue and white striped umbrella, viewed straight on. +sun_bgmgoahuegszicuf.jpg A patio with a thatched, straw-colored umbrella casts a soft shade over a stone bar with ornate, wrought iron bar stools, set against a backdrop of lush greenery and a brick wall. +sun_bmejccbsrtehdnke.jpg A wooden patio with a red-brown table and chairs is shaded by a large green umbrella, surrounded by bamboo fencing, with a lush green garden and white-panelled house visible in the background. +sun_bhxzayvxgvuavhbk.jpg A patio featuring a circular glass-top table with dark brown wicker chairs set on grey stone tiles, surrounded by stone walls and lush greenery in the background. +sun_bybkeikqwvzhyhjv.jpg The patio features a light gray, stone-tiled surface with a smooth texture, viewed from an angle showcasing a set of beige chairs and a matching table, with a lush green backdrop of trees and bushes encircling a round blue pool. diff --git a/utils/area/descriptions/sun/generated_descriptions/pavilion_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/pavilion_descriptions.txt new file mode 100644 index 0000000..8c1e1e2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/pavilion_descriptions.txt @@ -0,0 +1,10 @@ +sun_crobmbyiqzauoclt.jpg The pavilion features a brown wooden structure with an open-sided, triangular roof, seen from a slight side angle, set in a grassy environment with surrounding trees and a clear paved path. +sun_bihazktmosljgzvh.jpg A low-resolution pavilion with a white roof and open sides is set amidst a lush, green landscape with trees in the background and is viewed from a slight upward angle with partial tree shadows on the grass. +sun_bkpcxbtqthcagbcg.jpg The pavilion has a red, ribbed metal roof supported by dark columns, viewed at an angle from the side in a grassy field with leafless trees visible in the background. +sun_batmvkznuuvmbdzp.jpg The pavilion is constructed with wood and features a gray pitched metal roof, surrounded by leafless trees and spring-blooming trees within a clear, grassy park with scattered picnic tables and a playground in the background. +sun_cmkicsewpqeaovbs.jpg The pavilion is a dark wooden structure with a gabled roof, viewed from a slight angle amidst a lush grassy park setting with surrounding trees and picnic tables. +sun_ajhfnbbkbjppmkim.jpg The pavilion is a light brown structure with a wooden texture and a gently arched roof, viewed from a frontal angle, surrounded by lush greenery and bright yellow flowers, set against a partially cloudy blue sky. +sun_crucbwaqxagvflzh.jpg The pavilion has a green gabled roof and wooden supports, with a front-facing view showing multiple picnic tables underneath, set against a background of leafless trees and a brick building. +sun_aszgbolatnxpqghq.jpg The pavilion features a metal roof with a peaked design, supported by brown steel posts, and is located in a wooded park setting with a group of people seated at picnic tables underneath. +sun_boqdewrauegewohm.jpg A wooden pavilion with a brown shingled roof is situated on a grassy field, surrounded by picnic tables, with its open structure supported by numerous posts and a backdrop of soccer fields and trees. +sun_aatczyehoveeebrr.jpg The pavilion features a rustic wooden structure with a gabled roof, open on all sides, and situated in a park-like setting with small coniferous trees, showcasing an industrial log-cutting machine as the focal point beneath it. diff --git a/utils/area/descriptions/sun/generated_descriptions/pharmacy_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/pharmacy_descriptions.txt new file mode 100644 index 0000000..1397b28 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/pharmacy_descriptions.txt @@ -0,0 +1,10 @@ +sun_aafgxvmhgzsckzze.jpg The pharmacy features a bright, well-lit interior with white shelves stocked with various colorful boxes and bottles, viewed from behind a gray countertop, with a visible doorway and signage in the background. +sun_boernhzzgmvjjugq.jpg The pharmacy features a warm, wooden interior with glass cabinets displaying decorative jars and bottles, viewed from the front in a cozy, vintage setting with a person attending behind the counter. +sun_brryfcbnrnofmwic.jpg The pharmacy features cream-colored shelving filled with various products, set against a warm-toned interior with a prominent red sign overhead displaying the name and surrounded by a tidy, organized environment. +sun_alglydciodueepcr.jpg The image shows a vintage-style pharmacy with dark wooden cabinets filled with rows of glass bottles and jars, illuminated by round hanging lights, set against a backdrop of old-fashioned framed prints on the wall. +sun_aszmaynukpnycwbz.jpg The pharmacy features light wood shelving with colorful product labels, viewed straight-on with spotlights above and a small plant on the left, against a backdrop of neatly arranged health products and promotional posters. +sun_alrdqmzhqczdwhlx.jpg The pharmacy features a collection of amber and clear glass bottles with labels, neatly arranged on white wall-mounted shelves within a bright, white-walled room filled with natural light and minimalistic decorations. +sun_axwvhjwlkpodwmcl.jpg The pharmacy features a glass counter with visible packages and bottles, white shelving filled with colorful boxes and bottles against a black "PRESCRIPTIONS & ADVICE" sign, a woman standing behind the counter, and a ceiling with fluorescent lights. +sun_aotobsvdrlhkhkjt.jpg The pharmacy features white shelves filled with numerous pill bottles, viewed from the front with two people in white coats standing among the shelves, and distinct wood-paneled and white walls in the background. +sun_ambdmwvghgphxnpi.jpg The pharmacy interior features a clean, white space with two people interacting at a counter, surrounded by neatly arranged shelves of colorful medicine boxes and products, with a sign reading "LÉKÁRNA" visible above the shelving. +sun_bpywsprkebsavuah.jpg The pharmacy features a glass-fronted display with wooden shelves containing various colorful boxed products, viewed from the side at a low angle, with a person in a white lab coat standing nearby and a sunlit entrance visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/phone_booth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/phone_booth_descriptions.txt new file mode 100644 index 0000000..3660d6e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/phone_booth_descriptions.txt @@ -0,0 +1,10 @@ +sun_bmexesvujekimmng.jpg The phone booth is a transparent glass structure with black metal framing featuring a BT logo, located on a sidewalk next to green shrubbery and stone walls, seen from a slight side angle showing a person inside using the phone. +sun_bralvyqvmkfuekhv.jpg A classic red phone booth with clear glass panes stands on a city sidewalk against a large stone building, viewed from a slight angle, with the word "TELEPHONE" visible at the top and passerby in the background. +sun_bqorxcjoycnwxwik.jpg A green, glossy phone booth is viewed from the front, featuring a metallic payphone inside and set against a beige wall with a sign reading "TELEPHONE" above the entrance. +sun_avxeksxeqqymbslt.jpg The phone booth features a metallic silver frame with a distinctive curved red roof, viewed from the front with a grassy foreground and a modern building with reflective glass panels in the background, displaying clear cylindrical sides and vertical metal poles. +sun_bvovkdqscbdqkcmy.jpg A classic red phone booth with a glossy finish and the word "TELEPHONE" above its door is seen from the front, situated on a paved area with modern buildings and a few people in the background. +sun_bvmsftzgtjfzubzi.jpg The phone booth is a bright green, metallic structure with transparent glass doors, viewed from the front and slightly to the side, situated in a grassy area with trees and parked cars in the background, featuring distinct white text on the glass panels. +sun_baitnbkioshtuwcb.jpg A vibrant red, rectangular phone booth with a glass-paneled door is seen from the front, set against an outdoor environment with trees and a sidewalk visible in the background, containing several people inside. +sun_bwgspzbggmszebeu.jpg The phone booth is a vibrant blue with a glossy texture, partially obscured by lush green foliage and red flowers, and is viewed from the front, nestled amidst garden-like greenery. +sun_axgjhrzzjsdajlzp.jpg A classic red phone booth with glass paneled sides is positioned on a grassy area next to a road, flanked by two individuals, one in red and the other in white, with a brick building evident in the background. +sun_bqoevulmtcwcdtxd.jpg A brightly colored red phone booth with a glossy texture is prominently displayed from a front-side viewpoint, located on a cobblestone street adjacent to a historic stone building with an archway and sign. diff --git a/utils/area/descriptions/sun/generated_descriptions/physics_laboratory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/physics_laboratory_descriptions.txt new file mode 100644 index 0000000..da6039a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/physics_laboratory_descriptions.txt @@ -0,0 +1,10 @@ +sun_bgygqorswweqvycl.jpg The physics laboratory features a well-lit space with overhead rectangular fluorescent lights, rows of wooden workbenches holding various electronic equipment and instruments in beige hues, and a background of large windows partially covered by cream-colored curtains, contributing to an organized and functional atmosphere. +sun_akqsdxddvmslsxnx.jpg The physics laboratory features beige walls and light flooring with a central cluster of dark computer desks and chairs, including a prominent white coat rack in the foreground, set against a backdrop of wooden cabinets, electronic equipment, and scientific apparatus. +sun_aaemcilacgfgoyvg.jpg The physics laboratory features a linear arrangement of equipment with metallic and blue structures, housing square detectors displayed at a slight diagonal; the environment is industrial with visible cables and a tunnel-like background, accentuated by the bright lights on the ceiling. +sun_ajuelbzdsjojoowm.jpg The physics laboratory features a high table with a perforated metallic surface, populated by stainless steel vacuum chambers with round glass windows, surrounded by numerous wires and pipes against a background of cream-colored walls and various apparatus, including a large labeled gas cylinder, all brightly illuminated from overhead. +sun_blujdfjcafexvjfg.jpg The physics laboratory features a cluttered arrangement of equipment with a brown machine on the left marked by a "Caution" sign, connected with multiple cables and control panels, and an adjacent blue cabinet on the right filled with screens and dials, set against a background of bulletin boards in a well-lit room with a visible concrete floor. +sun_blcwlnkfamnflene.jpg A low-resolution image shows a cluttered physics laboratory featuring a dark, rectangular electronic apparatus with protruding copper components and multiple wires, placed on a wooden desk amidst a background of beige walls and various lab equipment, with a seated individual in the foreground. +sun_bficdcvdrtikdyfa.jpg The physics laboratory features a black optical table with a grid pattern surface supporting various scientific instruments and cables, viewed from above and enclosed in a reflective glass-walled environment, with a person in a white lab coat standing nearby. +sun_bzeecrububkabvvt.jpg A group of individuals gathered around a metal table working on electronic equipment, with a white oscilloscope featuring a blue screen, a jumble of multicolored wires, and a large cylindrical device, all set against a light-colored wall. +sun_ajgrsirswlordatc.jpg A group of students in uniform gather around a table with scientific apparatus, including a gray, boxy device, amidst a beige classroom with a wall-mounted chalkboard and wooden chairs visible in the background. +sun_aglkjuvypoecwdpb.jpg The physics laboratory appears in a well-lit space featuring a beige and white color scheme with a cluttered arrangement of scientific equipment, including bulky white machines and metallic lab lamps on black countertops, surrounded by wooden cabinetry and a fume hood. diff --git a/utils/area/descriptions/sun/generated_descriptions/picnic_area_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/picnic_area_descriptions.txt new file mode 100644 index 0000000..3e8dd49 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/picnic_area_descriptions.txt @@ -0,0 +1,10 @@ +sun_bxydcehekhmpvpmh.jpg A sunlit picnic area featuring weathered wooden tables with a grayish tone, set on bright green grass with a backdrop of a serene waterfront and silhouetted city skyline, framed by a tall palm tree and other foliage. +sun_bjmwuchjwayiffrs.jpg The picnic area features a shaded gazebo with a wooden roof and red-brown pillars, surrounded by light gray concrete picnic tables and benches, set amidst a backdrop of green grass and palm trees, with a stone pavement underfoot and a stone fence in the distance. +sun_bbmbwwayihjktmqb.jpg A dark wooden picnic table with a rough texture sits on a narrow wooden dock extending over a calm body of water, surrounded by lush greenery with overhanging tree branches, emphasizing a tranquil natural setting. +sun_agvyovertocefrux.jpg A light wooden picnic table with benches sits on a gravel area surrounded by dense green foliage and palm trees, with a building partially visible in the background. +sun_bkvkpmntwfiiitxh.jpg Two wooden picnic tables with attached benches, painted in weathered green, are positioned on a paved surface amidst dense, sunlit greenery and tall leafy trees, casting distinct dappled shadows on the ground. +sun_alidcydxoobgfygx.jpg The picnic area features a sunlit green grass field partially shaded by tall trees, with scattered wooden tables and benches visible in the dappled sunlight beneath a dense canopy, set against a backdrop of a residential neighborhood and more trees in the distance. +sun_axdsvgxtrphhtskm.jpg The picnic area features a scatter of wooden picnic tables on lush green grass under a canopy of tall trees, with dappled sunlight creating a patchwork of light and shadow, and dense woods providing a serene, natural backdrop. +sun_acbqcqjkfepellpk.jpg The picnic area features rustic wooden tables with a reddish-brown hue nestled on a patch of lush green grass, framed by tall evergreen trees, offering a shaded, serene environment against a backdrop of distant foliage and blue sky glimpses. +sun_bjmkszcqxmgdmzig.jpg The picnic area features wooden picnic tables with a natural brown texture, set along a paved path in a lakeside setting, surrounded by tall pine trees with green foliage, against a backdrop of distant mountains and a blue sky. +sun_bnjaaycuxkobrjni.jpg The picnic area features three silver metal picnic tables with a smooth finish, arranged in a circular paved section surrounded by lush green grass and bordered by tall, leafy trees. diff --git a/utils/area/descriptions/sun/generated_descriptions/pilothouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/pilothouse_descriptions.txt new file mode 100644 index 0000000..29187ed --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/pilothouse_descriptions.txt @@ -0,0 +1,10 @@ +sun_auqnfgirmgmfofwb.jpg The pilothouse features a warm wooden interior with a large forward-facing window, blue cushioned seating with a patterned throw pillow, a central steering wheel, and an array of navigational instruments, all set against a marina background visible through the surrounding windows. +sun_adfnyzwylpnvdwne.jpg The pilothouse features a predominantly metallic console with gold and silver tones, central to a well-lit area, surrounded by circular windows that offer a view of a calm sea, with brass instruments and a large wooden steering wheel as notable highlights despite the low resolution. +sun_anbvnxhrumgdehgo.jpg The pilothouse features a rich, wooden interior with a glossy finish, showcasing a large wooden steering wheel at the center, surrounded by a variety of gauges and controls, with a view of the night-lit exterior through the angled windows, and partially visible reflective surfaces. +sun_awryllfxnmkfcuug.jpg The pilothouse features a clean, beige interior with a series of control panels and screens lined along a wide console, all facing large rectangular windows that admit ample natural light from the surrounding bright exterior. +sun_bybhiuurwiuovhvn.jpg The pilothouse features a warm wood-paneled interior with a glossy finish, viewed from an angle that captures the extensive array of navigational equipment and large windows offering an expansive view of the bright, open sea. +sun_aumkrzighjakkyxy.jpg The pilothouse features a sleek array of dark consoles and screens with a central steering wheel, viewed from the side, set against a backdrop of large windows filtering bright natural light. +sun_bknftpctbdcpkvli.jpg The pilothouse features a wooden steering wheel and control panel set against blue and white panels, viewed from an angle showing the seating and navigational instruments, with window views of a snowy, overcast landscape outside. +sun_binjrrkfkagscgwt.jpg The pilothouse interior, viewed from a central standpoint, features pastel green walls, wooden accents, and metal control equipment with a nautical theme, surrounded by windows that reveal a slightly blurry, bright exterior environment. +sun_alhspwsfmrshpfwe.jpg The pilothouse features a warm wood interior with a glossy finish, a forward-facing view highlighting the helm's shiny metal wheel and multiple electronic displays, flanked by wide windows with wooden blinds, all set against the backdrop of a dimly lit and cozy environment. +sun_aedshpleaghpowzy.jpg The pilothouse features a modern control area with a gray and black console adorned with various instruments and screens, located centrally amidst large windows offering a scenic view of a port with visible ships and industrial buildings in the distance, all set against an overcast sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/planetarium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/planetarium_descriptions.txt new file mode 100644 index 0000000..f133126 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/planetarium_descriptions.txt @@ -0,0 +1,10 @@ +sun_bnkianrrmbdvvhst.jpg The planetarium features a dome with a textured, stone-like facade, viewed from the front at a slight angle with a prominent sign showcasing an astronaut on a space-themed poster, surrounded by a grassy area and people walking in the foreground. +sun_bcaweltqepfrkfqc.jpg The planetarium features a prominent white geodesic dome, contrasting with a blue, modern, rectangular entrance at an elevated angle, surrounded by greenery in the foreground and set against a smooth, gradient purple sky in the background, with illuminated signage adding a vibrant touch. +sun_autjxweuhegjbgma.jpg The planetarium features a dome with a textured, metallic sheen, seen from a frontal viewpoint with a modern sculpture in the foreground, set against a backdrop of clear sky and minimalistic landscaping. +sun_bwsxlbimsumqnoea.jpg The planetarium features a series of cylindrical structures with a light gray, curved, and ribbed texture, viewed from a slight frontal angle in a grassy park setting with bare trees in the background, and distinctive conical and dome-shaped roofs. +sun_bgsemqbmvqfzdxzv.jpg The planetarium features a central gray-toned, dome-shaped structure with a textured surface, viewed from a frontal perspective, flanked by two triangular glass sections, set against a cloudy sky with a few cars and planters in the foreground. +sun_bjzpvauwxqvhurkp.jpg A large glass cube structure at night, with a prominent spherical dome inside illuminated in blue, surrounded by a dimly lit urban environment with reflective wet pavement in front. +sun_bbjocztbhscfavgg.jpg A large, domed planetarium with a light gray color and smooth texture is seen from a front view, set against a hazy sky with a stone statue and vibrant garden in the foreground, surrounded by trees and featuring a distant church with twin spires in the background. +sun_bbgpemagkkdlucpo.jpg The planetarium features a prominent translucent geodesic dome with a light blue hue, set against a steel-gray sky, surrounded by modern angular white and glass structures, and a foreground of lush green grass and manicured bushes. +sun_bifitorrghuypnbo.jpg The planetarium features a large, smooth, dark gray dome with segmented patterns, viewed from the front against a clear blue sky, flanked by palm trees and surrounded by a plaza with gray stone tiles. +sun_bgosudmyldzkcmfv.jpg The planetarium features a striking metallic dome with a grid of glass panels, viewed from a side angle against a backdrop of cloudy skies, surrounded by a smooth, turquoise water basin adding a futuristic ambiance. diff --git a/utils/area/descriptions/sun/generated_descriptions/playground_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/playground_descriptions.txt new file mode 100644 index 0000000..b66b776 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/playground_descriptions.txt @@ -0,0 +1,10 @@ +sun_bpnlryokajmraozb.jpg The playground features a wooden structure with a deep blue tent-like canopy, a bright yellow slide descending from the left side, triangular climbing handles and a rock wall on the right, all set on a neatly trimmed lawn with a hedge border and suburban houses in the background. +sun_bwaefckywxfgfnhk.jpg The playground features a vibrant combination of yellow and blue equipment with smooth, tubular slides alongside a textured gray climbing wall, seen from a slightly elevated angle against the backdrop of a simple industrial building with sparse trees and a clear sky. +sun_buaammzqkuldistg.jpg The playground features a yellow slide and wooden structures with swings, situated on a gravel surface, surrounded by lush greenery and a building, viewed from a slightly elevated angle. +sun_boccvntxzfzzwnrk.jpg The wooden playground structure features a green slide and two elevated playhouses with a canopy roof, viewed from the side against a backdrop of lush greenery and trees, with brown mulch covering the ground. +sun_bilxfwkrgvqdxozc.jpg The playground features a wooden structure with a light brown finish, including a slide and several climbing bars, viewed from a side angle with a metal fence and greenery in the background, and a distinctive orange and blue element at the center. +sun_blztvgbizuxwhfwq.jpg The playground resembles a ship with blue and yellow components, featuring slide and climbing structures, viewed from the front against a backdrop of leafless trees and surrounded by picnic benches on a grassy area. +sun_bbqsiwmdnlpcvbld.jpg The playground features a prominent yellow spiral slide and climbing wall, set in a wood-chip covered area with children actively playing, surrounded by green trees under an overcast sky. +sun_bqkjpjaevcmuuqgq.jpg The playground features a brightly colored structure with a prominent blue spiral slide, surrounded by a gravel ground, with numerous children lined up along the edge and trees in the background. +sun_bsknaexscdzqutpm.jpg The playground features beige and green equipment with smooth plastic slides, a central climbing structure viewed from a frontal angle, surrounded by a woodchip ground covering and set against a backdrop of grassy fields and trees. +sun_bodexeftecxgrprx.jpg A cream and red playground structure with dual curved slides stands on a green rubber mat, surrounded by multi-story beige buildings covered with windows and a landscaped area featuring bushes and colorful benches. diff --git a/utils/area/descriptions/sun/generated_descriptions/playroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/playroom_descriptions.txt new file mode 100644 index 0000000..33a66eb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/playroom_descriptions.txt @@ -0,0 +1,10 @@ +sun_bnxjfmkwryhfihjj.jpg The playroom features a neutral carpeted floor with colorful interlocking foam mats, scattered toys, a small table with chairs in primary colors, and a cozy window seat adorned with striped pillows, all set against pale green walls with white trim and abundant natural light from shuttered windows. +sun_arqyypyafjoktecf.jpg The playroom features a warm, pink and beige color palette with soft textures, viewed from a corner angle showcasing shelves filled with plush toys and books against a neutral wall adorned with a framed picture, while center stage is occupied by a pink table hosting wooden toys on a brownish-red floor. +sun_aqstljobacsrffsg.jpg The playroom, viewed from a slightly elevated angle, features a purple wall and carpet cluttered with colorful, scattered toys and blocks, a wooden chair and table, a red cushioned chair, baskets, and a radiator along the wall. +sun_awtemzrbxjoeyabd.jpg The playroom features a brightly lit white shelving unit with colorful books and toys, a black chalkboard in the center, a padded bench seat below, a vibrant red and white checkered rug on the floor, and a blue toy car to the left, all set against a soft cream-colored wall. +sun_bsuobourejlhuool.jpg The playroom features colorful interlocking foam floor tiles with embossed, large alphabet and number designs, including cubes with similar patterns, set on a light carpeted floor and partially surrounded by white walls and dark shelving. +sun_bmdlpmdmqrnhgnfa.jpg The playroom features a sunlit beige carpet with a light wooden table set, a white bookshelf containing children's books, and a colorful alphabet block storage unit, set against a bright window overlooking a brick wall and greenery. +sun_alzvjpwpnknvahes.jpg The playroom features a bright, colorful display with a variety of textured toys neatly arranged on shelves, including a yellow and red activity table in the foreground, a plush blue and orange doll to the left, and stacked games against a backdrop of white walls and patterned rugs. +sun_bqvpjvcahkqrmfoo.jpg The playroom is brightly colored with a variety of toys including a multicolored toy train and a yellow loader, a carpeted floor, and windows revealing greenery outside, with books and games neatly stored on shelves and light streaming from the left. +sun_bixtpavtxsmvhzhn.jpg The playroom features blue walls with a playful whale-themed border, a light tan carpet, and organized shelves with brightly colored toys and books, viewed from an elevated corner perspective, with a window on one side and a variety of educational decorations on the walls. +sun_buljokxxtttysndy.jpg The playroom features a brightly lit corner with a colorful red easel on the right beside a shelf filled with vibrant toys, set against a warm wood-paneled wall and decorated with children's artwork. diff --git a/utils/area/descriptions/sun/generated_descriptions/plaza_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/plaza_descriptions.txt new file mode 100644 index 0000000..1dbd10b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/plaza_descriptions.txt @@ -0,0 +1,10 @@ +sun_bfpkinmqjrylquqe.jpg The plaza features a wide, grey cobblestone surface leading to a row of historic buildings with a mix of warm red and beige facades, seen from a ground-level perspective, with bicycles and pedestrians moving across the open space, under a clear blue sky. +sun_aymxfltdjzuidecw.jpg The plaza features a modern, symmetrical design with a central red abstract sculpture, surrounded by a gray tiled circular pattern, viewed from above with a backdrop of a geometric white building with black windows. +sun_broioqnetomarxod.jpg The plaza features a pastel-colored, arcaded façade and a distinct medieval architectural texture under sunny blue skies, with silhouetted figures adding scale in the open space below, alongside a visible portion of building adorned with a flag and intricate stonework. +sun_bvfdqbhwidomwxbl.jpg The plaza features a statue surrounded by a gathering of people on cobblestone ground, flanked by a backdrop of ornate, pastel-colored historical buildings with varying rooflines and architectural details. +sun_bydgadadqcaukrbl.jpg The plaza features a snow-covered ground framed by bare trees, with a red brick building in the background under a clear blue sky, and figures walking or playing, creating a lively winter scene. +sun_bpqmbkdeometexfk.jpg The plaza features a broad, open square with a reddish-brown cobblestone surface surrounded by tall, irregularly shaped brick buildings, viewed from an elevated angle, with a distant backdrop of a historic dome and tower against a pale, slightly overcast sky. +sun_axzbipqtoaelmkmg.jpg The plaza features a vibrant, busy scene with a tall, red brick bell tower prominently rising against a bright blue sky, surrounded by ornate, light stone buildings with columns and arches, while the foreground is filled with tourists and colorful market stalls. +sun_akhiuuqybcbkgysz.jpg The plaza features a central stone structure with a weathered beige texture and baroque architectural details, viewed from a frontal angle with steps leading up, flanked by trees and surrounded by colorful, historic buildings in the background. +sun_becebtxqtijlfkxk.jpg The plaza features a striking white-marble building with a central dome and ornate facade, surrounded by arched colonnades and a tall bell tower under a cloudless blue sky, with scattered visitors highlighting its grandeur. +sun_awvimrcdgjelytdr.jpg The plaza is filled with numerous people facing away from the camera, bowing in prayer, wearing a variety of light-colored garments against a backdrop of historic buildings and ornate fences, under a pale, early-evening sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/podium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/podium_descriptions.txt new file mode 100644 index 0000000..4130a95 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/podium_descriptions.txt @@ -0,0 +1,10 @@ +sun_buzmdqvkcnncarvt.jpg The podium is a simple gray cement platform with a smooth surface, viewed from a front angle, set against a checkered black and green backdrop featuring various racing logos and sponsors. +sun_ahvnhlkznmtxwkvu.jpg The podium is wooden and dark brown, positioned at a slight angle facing right, set against a backdrop of red drapery and floral arrangements, flanked by seated individuals in academic regalia. +sun_bujguwxwrwmuikka.jpg The podium is a light wood or beige color, appearing smooth, and is positioned in front of a backdrop resembling stone or concrete walls, with microphones and papers placed on top and colorful floral arrangements at either side. +sun_bayzsjxcmhtcqnmj.jpg The podium is positioned centrally on a stage with a black and white checkered backdrop featuring logos, and it has a gray top with a simple, unadorned appearance. +sun_bryiohjxelycznvx.jpg The podium is a medium brown wood with a polished texture, viewed from the front-left angle against a backdrop of patterned curtains and a softly lit wall, featuring a microphone centered on top and a brass plaque on the front. +sun_bzaahmpbdmbcomve.jpg The podium is a dark red structure with three ascending steps numbered "1," "2," and "3" in white, set against the backdrop of a sports venue with visible seating and a large signage indicating "Wedau-Stadion," surrounded by greenery and a promotional banner. +sun_bjnxnuqmmehgpyvb.jpg The podium features three levels with a central gold section flanked by gray and bronze segments, displaying Olympic rings and located on a sports field with a stadium backdrop. +sun_bzwkcepuagjvdjcq.jpg The podium consists of cylindrical metal stands with a shiny, reflective surface, viewed from the front, set against a bright yellow backdrop featuring text and logos, with each stand topped by small white boxes and athletes wearing medals. +sun_bnxxelsejrhbhvud.jpg The podium is a simple white structure with a flat surface and three distinct levels, positioned outdoors against a backdrop of a large, white vehicle with blue accents, and is being used by three cyclists in racing attire with medals. +sun_bdmlcxtwhryyrddx.jpg A light brown wooden podium with a paper poster is positioned outdoors on a paved surface, with a partial view of a white fence and a parked bus in the background, surrounded by greenery. diff --git a/utils/area/descriptions/sun/generated_descriptions/pond_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/pond_descriptions.txt new file mode 100644 index 0000000..0c73ae3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/pond_descriptions.txt @@ -0,0 +1,10 @@ +sun_bhqhjsogneubqcea.jpg The pond appears as a murky green body of water viewed slightly from above, bordered by dense shrubs in the foreground and a line of tall, dark green pine trees in the background, creating a natural, secluded environment. +sun_bkkcgqkztnbnlfhq.jpg A small, murky pond reflecting the light is surrounded by lush green grass and overhanging trees with a dirt path running along the edge, partially covered by foliage. +sun_beemyeznuptwvija.jpg Calm blue-green water reflects bare winter trees along the shoreline of a wide, tranquil pond, encircled by open fields under a sky streaked with soft clouds, creating a serene and expansive landscape. +sun_batcqfhnspbbhvkx.jpg The pond, viewed from a slightly elevated perspective, exhibits a mix of rusty orange and brown hues with a reflective surface, surrounded by dense greenery and tree branches, with a small wooden structure and a muted forest background. +sun_bopejhekzgtxxmws.jpg A serene pond reflecting the dark green trees and surrounded by sparse brown reeds hosts a cluster of black and white ducks near a small white structure floating on the water's surface. +sun_bhxmtrxxgpcbeeta.jpg The small pond reflects a deep green hue with a smooth, glassy texture, viewed from a low, centered angle, surrounded by lush trees and bushes under a cloudy sky, with reeds and grassy banks framing the water's edge. +sun_boumcxqghppwjchf.jpg A small, reflective pond lies centrally amidst brown, dry earth and vibrant green grass, bordered by distant trees and set against a backdrop of hazy, rolling hills under a clear blue sky. +sun_basaqpsgrixxkxwb.jpg The pond appears calm with a reflective surface under a bright sky, featuring a dark, murky blue color, bordered by lush greenery and reeds, with two ducks swimming near a small wooden structure near the right side, highlighting a serene natural setting. +sun_blfglsmhvwaztemo.jpg The pond reflects a clear blue sky and is surrounded by dense, lush greenery with varied textures, viewed from a low vantage point, with tall grasses and bushes creating a natural, tranquil setting. +sun_bzhbwzdfaomzhzxa.jpg The pond appears as a smooth, reflective surface with a subtle greenish tint, framed by dense, lush green trees on one side, mirrored perfectly in the calm water under an overcast sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/poolroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/poolroom_descriptions.txt new file mode 100644 index 0000000..49a0ccc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/poolroom_descriptions.txt @@ -0,0 +1,10 @@ +sun_bnfvuqdidftpcvkr.jpg The poolroom features a teal-colored pool table set against a backdrop of polished wooden floors, a stone fireplace, and a decorated Christmas tree, with the viewpoint capturing the room from an angle where large windows with blinds allow natural light to highlight the cozy, furnished environment. +sun_alxnnjhpkdunikue.jpg The poolroom features a green felt pool table centrally positioned on a teal carpet, with wooden stools and a simple wooden side table against cream-colored walls under a window displaying a verdant outdoor scene, illuminated by green-shaded pendant lights above. +sun_arxbebtlxhbwmhxx.jpg The poolroom features a dark green pool table with wooden edges viewed from an angle that includes a white-walled background with nautical decor, a small kitchenette with light wood cabinets, and a tiled floor, all under a modern hanging light fixture. +sun_aplqufqmjymgncqh.jpg The poolroom features warm earth-toned walls and ceilings with recessed lighting, a textured brick accent wall, framed black and white photos, and two wooden pool tables illuminated by triangular overhead lamps, all viewed from a slightly elevated angle, showcasing a cozy seating area in the background. +sun_azqxxyfqoqohqluo.jpg The poolroom features a vibrant red felt pool table with visible texture in a warmly lit room, viewed from a slightly elevated angle, surrounded by wood-paneled walls adorned with framed pictures and a ceiling fan hanging above, with cues and a set of balls neatly arranged on the table. +sun_bgixetllrwxjrpdv.jpg The poolroom features two pool tables with green felt and dark wooden sides, positioned under a ceiling with exposed beams and a neon sign, set against a wallpapered background with framed decor and bright windows illuminating wooden seats. +sun_aawgvmrubdiirgik.jpg The poolroom features a warm, yellowish glow with a prominent checkered black and white floor, a richly colored wooden pool table in the foreground occupied by two players, and a distinctive urban skyline mural on the dark wall in the background, all under the ambient lighting of blue-shaded lamps. +sun_bzuoveahsdraoeeq.jpg The poolroom features a central, green-felted pool table with wooden legs, surrounded by dark wooden cabinetry and shelves under warm lighting, with a sofa and a large window in the background. +sun_aaoxedqywfjujwrt.jpg The poolroom features a teal felt-covered pool table with a wooden frame, seen from a side angle, surrounded by a wood-paneled wall and linoleum flooring, with a cue stick and balls resting atop. +sun_apmrnyqullyfqbhr.jpg The poolroom features two light-brown wood-framed pool tables with bright green felt, viewed from a corner angle under hanging green lamplights, set against a warmly lit interior with geometric wall patterns and rattan furniture. diff --git a/utils/area/descriptions/sun/generated_descriptions/power_plant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/power_plant_descriptions.txt new file mode 100644 index 0000000..7e5e66d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/power_plant_descriptions.txt @@ -0,0 +1,10 @@ +sun_bxqawincorpnoibe.jpg The power plant features bright orange, boxy structures surrounded by a network of metallic, gray pipes, viewed from a ground-level angle, set against a cloudy sky and industrial backdrop, with distinct railing and platform elements. +sun_boqpkchbwooaydhr.jpg The image depicts large cylindrical cooling towers with a grayish hue and smooth texture contrasted against a verdant landscape, with cranes and smaller domed structures in the background, all under a clear blue sky. +sun_bohnyvbarckkgvmr.jpg A series of gray cooling towers with subtle vertical lines and a red-and-white striped chimney in the distance are situated amidst a green, slightly overgrown foreground, under a clear sky with a distant crane visible. +sun_bkcykqpnteqissou.jpg The power plant features a network of metallic silver and white piping arranged in a complex grid configuration, viewed from an elevated angle with a beige building backdrop and set against a landscape of green fields under a clear blue sky. +sun_bhtdakltgzcwspib.jpg A series of large, gray cooling towers with visible steam rising are set against a clear blue sky, surrounded by a complex network of industrial structures, including a long conveyor system with yellow railings, all situated in a rugged, muddy environment. +sun_abtzbdcoykoqzupl.jpg The power plant has a brick facade with four tall white smokestacks, viewed from a distance across a body of water, with a clear blue sky providing a distinct contrast and reflection. +sun_bqwnxvhkmakzomvw.jpg The power plant features a compact, boxy structure primarily in light gray, with visible pipes and vents on the rooftop, surrounded by a clear blue sky and situated on a gravel-covered yard with yellow and black-striped bollards in the foreground. +sun_bmcepvhzujsjjeln.jpg The power plant features a tall, cylindrical red-brown smokestack contrasted with the adjacent gray industrial structures, with multiple visible pipes and vents against a clear blue sky, surrounded by grassy terrain and scattered buildings. +sun_aslyckudqfalbnjd.jpg The image shows a distant power plant with a tall, thin dark-colored smokestack, set against a cloudy sky and surrounded by a fenced area and sparse utility poles, with a flat, barren foreground and low buildings nearby. +sun_brgznhfgoszqylww.jpg The power plant features gray concrete structures with silver metal railings and piping, viewed from an elevated angle, situated in a rural landscape with grassy fields and an industrial bridge in the background, distinguished by its grid-like rooftop pattern and white equipment boxes. diff --git a/utils/area/descriptions/sun/generated_descriptions/promenade_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/promenade_deck_descriptions.txt new file mode 100644 index 0000000..89e1f11 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/promenade_deck_descriptions.txt @@ -0,0 +1,10 @@ +sun_bqttmupemvchmqzv.jpg The promenade deck features a light-colored wooden texture under a partially shaded canopy, with lounge chairs and passengers relaxing, framed by glass railings that reveal an expansive ocean view in the background. +sun_arkdanzwalbuvvtu.jpg The promenade deck features a vibrant, multicolored wall mural with geometric and playful artistic elements, seen from a side angle with a smooth blue floor contrasting sharply against the backdrop of nautical machinery and round windows, under an overhanging white structure. +sun_bqlscavjzenaxhvu.jpg The promenade deck features a series of wooden reclining chairs with dark cushions, positioned along a railing that overlooks a broad waterway with a partly shaded canopy above, and nearby buildings are visible in the distant, hazy background. +sun_albsahfenmabrivt.jpg The promenade deck features a light blue ceiling with white beams, white lounge chairs aligned on a wooden plank floor, and large windows overlooking the sea, while people casually occupy the area, including a sign marked with a number 5 in the upper background. +sun_bghdvrgedtiufzkt.jpg The promenade deck features a colorful mural with whimsical patterns and figures, bathed in golden sunlight from a low angle, with the blue ocean and white waves visible to the left and overhead structures casting patterned shadows on the textured surface. +sun_btyrbzfzfgkyzjuw.jpg The promenade deck features wooden flooring with a light brown color and slightly textured surface, seen from a straight-on angle with white ship structures and lifeboats overhead, wooden lockers nearby, and a rail on the side with ocean visible in the background. +sun_bvhmgtqzibaqkzaf.jpg The promenade deck features a light gray wooden floor with parallel lines, aligned rows of wooden lounge chairs, and a white ceiling and walls, offering an open vista of the sea through rectangular windows along its length. +sun_anzvysdnqjupohkq.jpg The promenade deck features a long stretch of dark wooden planks with a smooth texture, viewable from a slightly elevated angle showing white structural elements, railings, and stairs, partially enclosed by the ship's white superstructure, against the backdrop of an overcast sky. +sun_buvyumbqtytkppyx.jpg The promenade deck features a textured tan surface with wicker chairs and metal-framed tables casting shadows from the low-angle sun, set against a backdrop of a white railing and colorful wall art, with the blue ocean in the distance. +sun_apwfxagqswdyzplb.jpg This narrow promenade deck features light brown hardwood flooring with a smooth texture, enclosed by white paneled walls and ceiling, and is illuminated by portside circular windows that offer a blurred view of the sea and distant harbor, while recessed ceiling lights add a modern touch. diff --git a/utils/area/descriptions/sun/generated_descriptions/pub_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/pub_descriptions.txt new file mode 100644 index 0000000..893cac4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/pub_descriptions.txt @@ -0,0 +1,10 @@ +sun_bizijngqsyrexwji.jpg This pub features a warm, dimly lit interior with rustic wooden beams and exposed brick walls, seen from an angle showing a vibrant crowd at wooden tables in an intimate, cozy atmosphere. +sun_aqfuhfuwcuimvpvv.jpg The low-resolution image depicts a dimly lit pub interior with dark wooden walls densely adorned with various framed black-and-white photographs and a red lifebuoy, creating a vintage ambiance. +sun_bkgqivvsyekfnglb.jpg The pub features a warm wood-accented interior with a long wooden bar counter, barstools, and shelves stocked with various bottles; illuminated by soft, globe-shaped lamps and set against a background of chalkboard menus and a large window letting in natural light. +sun_biwkkhjhsxndyiby.jpg The pub features a cozy bar area with hanging glassware and a dark wooden counter, seen from a frontal viewpoint, with red carpeted flooring and warm, ambient lighting illuminating the cream and maroon walls, complemented by people standing behind and in front of the bar. +sun_bxvueibfpeucthfv.jpg The image shows a relaxed pub atmosphere with a low-resolution view of a group of people sitting around red, glossy tables, accompanied by clear and frothy drink glasses, set against a backdrop featuring branded beer signs and glass shelves under a dimly lit setting. +sun_bljjxnamgtxncfxf.jpg The pub features warm, earth-toned walls with wooden paneling, red patterned curtains, and decorative framed art, viewed from a cozy interior seating area surrounded by people, with a focus on the wooden table and ambient lighting fixtures. +sun_bgnntypzrbdbjgyp.jpg The pub interior features a wooden bar with metallic taps, a light tan countertop, a casually dressed group standing and socializing, and a decoratively paneled wall with glass partitions, all creating a warm, rustic, and inviting atmosphere. +sun_abycvkikbeoztpph.jpg The image depicts a pub interior with warm-toned, brick-textured walls adorned with mural-like paintings, a long wooden bar counter illuminated by industrial-style pendant lights, and a ceiling featuring a grid design amidst a bustling crowd seated and standing under dim lights, with bottles displayed along the backlit shelves. +sun_bsafjzfdvymksdtm.jpg The pub has warm, inviting dark wooden furnishings, partially visible walls with framed decorations, and patrons sitting at tables with various types of beer and condiments in view, creating a cozy and sociable atmosphere. +sun_aqivsinsmfgmgmwa.jpg The pub interior features a warm and cozy atmosphere with dark wooden furniture, a rich red and brown color palette, a pressed tin ceiling, decorative wall lamps, and a well-stocked bar visible in the background, complemented by various patrons seated at tables engaged in conversation. diff --git a/utils/area/descriptions/sun/generated_descriptions/pulpit_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/pulpit_descriptions.txt new file mode 100644 index 0000000..2f10c13 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/pulpit_descriptions.txt @@ -0,0 +1,10 @@ +sun_brfsaiqnpjoxsvnp.jpg The pulpit is a lavish, gold-colored sculpture with intricate carvings and figures, viewed from a slightly angled side perspective, set against an ornate interior with large arches and paintings. +sun_btplrwapjzoeovlq.jpg The pulpit is an intricately carved light wood structure with white panels adorned with gold decorative accents, featuring a teal base and canopy, positioned on an angled staircase against a pale blue church wall with wooden pews and large archways in the background. +sun_bazmeilxxoueyfhx.jpg The pulpit, viewed from the front, is ornately crafted with a gold and beige color palette, featuring intricate carvings and sculptures, set against a grandiose architectural background of tall marble columns and arches. +sun_asvjjqnmpojdpjdb.jpg The pulpit is an ornate wooden structure with a reddish-brown, marbled pattern, viewed from a slight upward angle and surrounded by a decorative floral arrangement, set against a softly lit church interior with beige walls. +sun_biururajbarkspfo.jpg The pulpit is a dark, richly carved wood with statuesque figures, viewed from the side, set against a light stone interior with decorative columns and a golden canopy above. +sun_amiqgmcstnsmyjlr.jpg The pulpit is a rich, dark wooden structure with detailed carvings and a green embroidered cloth draped over the front, positioned in a church environment with stained glass windows in the background. +sun_bmqglqvmftjebbpx.jpg The pulpit is an intricate stone structure with a primarily light cream color and detailed carvings of figures and ornate patterns, viewed from an angled perspective with a high-vaulted cathedral interior and rows of wooden chairs in the background. +sun_bvxiilktvshgfvfb.jpg The pulpit features a bulbous, ornate design with a glossy golden-brown hue and intricate carvings, viewed from a slightly elevated angle amidst a grandiose baroque church interior adorned with soft lighting, arched windows, and elaborate moldings. +sun_bchkzkfvsizoafhw.jpg The pulpit, viewed at a slight angle, is richly carved from dark wood with intricate patterns and features a red fabric draped over the top, adorned with a gold cross, set against a stone interior backdrop. +sun_bwdktfacgihrnvex.jpg The pulpit is elaborately carved with intricate stone reliefs depicting numerous figures and supported by marble columns in diverse earthy tones, including a foreground statue of a lion, set within a dimly lit interior featuring arched architectural elements. diff --git a/utils/area/descriptions/sun/generated_descriptions/putting_green_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/putting_green_descriptions.txt new file mode 100644 index 0000000..1e94f25 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/putting_green_descriptions.txt @@ -0,0 +1,10 @@ +sun_avrnfzraukixhdzn.jpg The putting green is a lush, even shade of green with a smooth, flat texture, viewed from a slightly elevated angle with surrounding trees and a distant mountain range in the background, featuring small flags indicating holes amidst the open expanse. +sun_bisstrmpmfeutcph.jpg The putting green appears smooth and uniformly light green, viewed from a slightly elevated angle, with a subtle curvature, surrounded by a forested backdrop of mixed autumnal trees and a single flagstick positioned centrally. +sun_avnsvqymbuanenve.jpg The putting green has a smooth, well-manicured surface with a rich green color, viewed from a low-angle perspective surrounded by a border of tall trees with a mix of vibrant green and budding purple foliage, under a partly cloudy sky. +sun_bxrkdloyrhucbwqh.jpg A bright green putting green with a smooth texture is shown from a ground-level perspective, surrounded by a rocky cliff face in the background, with sunlight casting minimal shadows. +sun_ayybugdnblbtovfu.jpg The putting green appears as a small, smooth, and bright green area bordered by a fence, surrounded by lush grass and a few trees, with a view of houses and hills in the background. +sun_bqhgafjjuzuqovmg.jpg The putting green appears smooth and vibrant green with a short, even texture, viewed from a low angle with golf balls scattered around, set against a backdrop of a large building under a cloudy sky, and featuring a distinct flagstick in the foreground. +sun_boepzgbapsyghqyt.jpg A lush, vibrant green putting surface with a smooth and velvety texture is viewed from an elevated angle, surrounded by manicured grass mounds and flanked by dense, dark greenery in the background, with a golfer poised to putt near the center. +sun_bphmpyfremeeacsj.jpg The putting green appears lush and vibrant with a smooth, well-manicured texture, situated in an expansive view surrounded by tall coniferous trees and a clear blue sky, characterized by the flagstick positioned centrally on the gently contoured surface. +sun_ajyltmaemcnsedcv.jpg The putting green, seen from a slightly elevated angle, features a vibrant green surface with a smooth texture, surrounded by a border of white rocks and landscaping, set in a landscaped backyard environment with houses and trees in the background. +sun_bdqzmtoeopygzlwy.jpg The putting green has a vibrant green synthetic grass texture, viewed from an overhead angle with numbers on flags marking locations, bordered by brown stone bricks and patches of small rocks. diff --git a/utils/area/descriptions/sun/generated_descriptions/racecourse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/racecourse_descriptions.txt new file mode 100644 index 0000000..0094001 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/racecourse_descriptions.txt @@ -0,0 +1,10 @@ +sun_aqpqysefhqnocahi.jpg The image shows a racecourse with a line of vintage cars, including a bright green car with a prominent number "53" in the foreground, under a checkered archway, set against a backdrop of bare trees and numerous blue and white checkered flags flanking the black tarmac. +sun_avrvahibbxelybyp.jpg The racecourse features lush green turf with multiple horses in mid-gallop under jockeys in colorful attire, set against a distant backdrop of rolling hills and a clear sky, with a distinct white rail marking the track boundary. +sun_asxdudjxwwczazyt.jpg The racecourse in the image features a lush green grass surface bordered by a white railing, viewed from a low angle with a crowded spectator stand in the background, under a cloudy sky. +sun_azflvhrhdewhfvjv.jpg The racecourse features a large angled grandstand with green and white seating under a dark roof, bordered by a grassy area, with a clear sky and sparse buildings in the distant background. +sun_acgagjbeugewdwjq.jpg A jockey in blue and pink attire rides a dark brown horse with a distinctive blue head covering, cantering on a lush green grass track bordered by red flowers and a decorative sign in the background. +sun_aferhnrjtjbvkivp.jpg The racecourse is a vibrant scene with jockeys in colorful attire—mainly reds, yellows, and greens—racing horses over grassy jumps, set against a backdrop of blurred buildings and trees under a clear sky. +sun_adnopyrhxlowggfd.jpg The racecourse features a vibrant green turf with a smooth, well-manicured texture, viewed from an elevated angle showing a densely packed crowd along the stands and a backdrop of clear blue sky with scattered clouds. +sun_angyuzvmbociucvc.jpg The image shows two chestnut horses with jockeys in colorful uniforms clearing a fence from a low-angle perspective against a vivid blue sky, with trees and a blurred crowd in the distant background. +sun_ajoysvfuxklyxuas.jpg The racecourse features a lush green grass track with a horse in mid-gallop, seen from a side view, against a backdrop of white tents adorned with yellow and red flags, indicating a lively event with spectators. +sun_awshoxtheszdnvli.jpg The racecourse features a dark, sandy texture illuminated under artificial lights, with jockeys and horses in motion forefront, wearing brightly colored silks against a blurred, shadowy backdrop. diff --git a/utils/area/descriptions/sun/generated_descriptions/raceway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/raceway_descriptions.txt new file mode 100644 index 0000000..d392a36 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/raceway_descriptions.txt @@ -0,0 +1,10 @@ +sun_aylvjxzdlimzzskz.jpg A low-resolution photo showing a yellow and red sports car in the foreground with blurred motion, racing on a tarmac track, surrounded by dense spectator stands under a clear sky. +sun_arredmjblfhivclx.jpg The raceway features a smooth, brown dirt track viewed from a slightly elevated angle, surrounded by white walls adorned with colorful advertisements, set against a backdrop of buildings, palm trees, and blue sky with scattered clouds. +sun_afftwvcjskbnufar.jpg A blue and yellow single-seater race car is captured from a side viewpoint on a broad asphalt track, set against a rural backdrop with scattered trees, grass, and a transmission tower. +sun_afphcvfaprasikrl.jpg A blue car with yellow rims drifts sideways, emitting tire smoke on a race track surrounded by grass and a forested background under an overcast sky. +sun_azfmetgdewhebzhj.jpg The raceway features a gray asphalt track with white and red barriers, viewed from a spectator stand, surrounded by green grass and a clear blue sky, with race cars visibly blurred in motion. +sun_ayzbkxxhicthwaib.jpg The raceway features a straight stretch of asphalt with yellow dividing lines, surrounded by a row of white and colorful branded pit buildings on the right and grassy areas on the left, under a partly cloudy sky. +sun_azprdckxbzaqesch.jpg The raceway features a smoothly curved track with a grassy terrain and a packed starting lineup of brightly colored stock cars, viewed from a slightly elevated and distanced angle, surrounded by dry hills and a sparse crowd along the barriers. +sun_adthqvdlaodhssyk.jpg A white race car with red accents and the number "81" prominently displayed on the side is captured from a side view, driving on a cracked gray asphalt track, with a background featuring a grassy infield and a grandstand adorned with red, white, and blue seats under a clear sky. +sun_aeebfgaoywjijtzk.jpg A white race car with blue and orange accents is captured in a slightly leftward drift on a wide, paved raceway featuring red and white curbs, surrounded by flat, barren asphalt and minimal boundary markers, emphasizing a sense of high-speed motion. +sun_awmdepulwkmdcflj.jpg A dark blue race car with white decals and the number "2" is captured in a side view on a paved track, set against a green tree-lined background with a chain-link fence, featuring multiple vibrant sponsor logos despite the image's low resolution. diff --git a/utils/area/descriptions/sun/generated_descriptions/raft_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/raft_descriptions.txt new file mode 100644 index 0000000..8d3f9f1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/raft_descriptions.txt @@ -0,0 +1,10 @@ +sun_adwgxleebjrkjtap.jpg The raft is predominantly white with a smooth texture, viewed from a slightly elevated angle showing multiple people paddling on a turbulent river with rocks surrounding them, and it features green paddles and visible safety gear on the occupants. +sun_ahwxidmucmsvthhf.jpg A blue inflatable raft with red life-jacketed occupants is positioned in turbulent, muddy rapids, with rocky riverbanks in the background. +sun_aetbeigqmrqosawj.jpg The raft is a makeshift structure featuring blue barrels and wooden planks, set against a lake surrounded by lush greenery, with people in helmets and life jackets paddling from a side view. +sun_agsaiusoiniahwbu.jpg The raft is primarily blue with yellow oars and is laden with gear, including a visible pair of antlers, against a backdrop of a calm lake and an autumnal landscape with a prominent mountain and vibrant foliage. +sun_ailadtgdtcalctlb.jpg The raft, appearing to be constructed of large, floating logs or plastic barrels, is partially submerged in calm water, with several people wearing colorful life vests and jackets in various shades of red, blue, and green, seated on top, while the background shows a reflective body of water indicating a lake or river setting. +sun_alxckpdbvqlpouqx.jpg A blue inflatable raft with multiple people wearing life vests, holding red paddles, is seen floating on a shallow river with green foliage in the background, viewed from a slightly elevated angle. +sun_agmofdxrikegedez.jpg The raft is a round, beige inflatable floating in an indoor swimming pool, with several people wearing orange life vests seated inside it, and the background features poolside chairs and a covered area. +sun_azmeiplfyjpkxewm.jpg A dark green inflatable raft with black accents and several people in yellow helmets, viewed in a dynamic pose surging through white water rapids surrounded by rocks and foliage. +sun_ablpbheuclqcyvlu.jpg A blue inflatable raft with white stripes and a visible brand logo near the front, occupied by several people wearing life vests and hats, is floating on rippling water with a lush, tree-lined riverbank in the background. +sun_aivlmefabyphxmpr.jpg The raft is blue and inflatable with a smooth texture, seen from a front oblique angle, navigating through white water rapids surrounded by a lush, green forest, and filled with several people wearing yellow life vests and holding paddles. diff --git a/utils/area/descriptions/sun/generated_descriptions/railroad_track_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/railroad_track_descriptions.txt new file mode 100644 index 0000000..4b635c2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/railroad_track_descriptions.txt @@ -0,0 +1,10 @@ +sun_aemyttpksgfqbzts.jpg The railroad track, viewed from the side, consists of dark brown wooden ties set against grey gravel ballast, bordered by grassy terrain with a background of tall, thin pine trees. +sun_ayrpidqwwatbifte.jpg The railroad track, viewed from ground level and curving left, features weathered brown wooden ties and rusted rails amidst a sparse industrial landscape with stacks of wooden planks, numbered signs, and distant cranes under a clear blue sky. +sun_admjgpxwmsxbdogn.jpg The railroad track is rust-colored with a rough, gravel-laden surface viewed from a low angle, leading toward an industrial background with a train car and a small building, and is lined with distinctively spaced wooden ties. +sun_agqeebuauxqoqpfm.jpg A rustic, straight railroad track with rusty brown rails and worn wooden ties stretches into the distance, bordered by overgrown green foliage and dry grasses on either side, beneath a cloudy sky. +sun_akrfugqtjtorkvmi.jpg The railroad track is partially visible and curves through a lush, green landscape, with a reflective train in blue and yellow colors traveling alongside a grassy area under overcast skies. +sun_aauhozyxzeeqstxi.jpg The railroad track appears rusty brown with gravel alongside, captured from an eye-level perspective with a vanishing point in the distance, flanked by bare trees and open fields under a clear blue sky. +sun_auuxvzrnwrndhwup.jpg The railroad track is rusty brown with a flame running along it, seen from a slightly elevated angle, surrounded by workers in orange vests and flanked by industrial buildings and cargo trains in a muted gray environment. +sun_acclauvzicwqivsk.jpg The railroad track is composed of silver-gray metal rails with aged wooden sleepers, viewed from an angled perspective extending into the distance, surrounded by gravel and flanked by grass with a suburban background of trees and houses. +sun_apmkpobmqictoupx.jpg The railroad track is composed of parallel dark metal rails with a pebbled gray gravel bed, viewed from a slightly elevated angle with a red train approaching, framed by urban infrastructure and distant hills in the background. +sun_anxkgqvmxtcnttmz.jpg The railroad track, viewed from an elevated perspective, features parallel dark rusty rails with wooden ties, curving gently around a bend amidst a verdant, wooded landscape and rocky embankment. diff --git a/utils/area/descriptions/sun/generated_descriptions/rainforest_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/rainforest_descriptions.txt new file mode 100644 index 0000000..f90bdc0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/rainforest_descriptions.txt @@ -0,0 +1,10 @@ +sun_apkxpgrtfhgktkpg.jpg Lush green foliage with broad, fan-shaped leaves is densely packed in layers, framed by slender tree trunks, indicating a verdant and humid rainforest environment. +sun_aejiyfcgnspyjiei.jpg A lush, verdant garden with diverse plant textures, featuring a stone pathway and dappled sunlight filtering through dense foliage and palm fronds, surrounded by various potted plants and a background of rich greenery. +sun_asjvysmekmotzxsp.jpg The low-resolution image depicts a dense rainforest with vibrant green foliage, displaying a mix of tall trees and undergrowth; the texture of the scene is lush and moss-covered, with sunlight filtering through the canopy, creating a dappled light effect throughout the forest. +sun_agxkvfvemlxlkkwv.jpg The rainforest scene shows lush, deep green foliage and moss-covered branches stretching diagonally across the frame, with densely packed trees in the misty background, creating a textured, vibrant, and verdant environment. +sun_adyzsfzvelqgcmto.jpg A dense, vibrant green rainforest with lush, textured foliage surrounds a narrow, leaf-covered path, viewed from a ground-level perspective, featuring a hiker walking away, wearing light clothing, and a backpack. +sun_axwqpwlcuosfdnob.jpg From a ground-level viewpoint, the image showcases a dense, vibrant green rainforest with an enormous, textured tree trunk covered in tangled vines, surrounded by lush foliage and towering trees stretching upward. +sun_avmblseqiorvtlbw.jpg The low-resolution image reveals a massive tree with buttress roots spreading across the forest floor, surrounded by lush green foliage under diffused light, in a dense rainforest with a textured, towering trunk. +sun_aywwhzjlvasqzgjv.jpg The image depicts a dense, lush rainforest with rich green foliage on either side and a narrow, earthy-brown river flowing through the center, while large fallen tree branches create a natural bridge across the water under a partially cloudy sky. +sun_dbgpiqcsymofcama.jpg The image depicts a vibrant green rainforest with dense foliage and a mist-laden atmosphere, viewed from an elevated perspective showcasing a winding river cutting through the lush terrain, flanked by steep, tree-covered hills under a cloudy sky. +sun_athqtjnpclsmcyws.jpg The image shows a sunlit pathway winding through lush, vibrant green foliage with tall trees casting intricate shadows, surrounded by dense plant life creating a textured canopy and a dappled-light effect on the ground. diff --git a/utils/area/descriptions/sun/generated_descriptions/reception_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/reception_descriptions.txt new file mode 100644 index 0000000..96c78d0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/reception_descriptions.txt @@ -0,0 +1,10 @@ +sun_ahqwdpwuicyiehkb.jpg A warmly lit reception area with a dark wooden desk, accentuated by colorful framed artworks on a beige wall, a potted plant hanging by the window, and a ceiling fan above. +sun_ayinszfylekzwpis.jpg The reception features a wooden desk with a front lattice design, viewed head-on, situated in a warmly lit room with parquet flooring, decorated with wall hangings and side tables displaying various items, contributing to an inviting, homey atmosphere. +sun_ajpwfgnwcwudtfgk.jpg The reception desk features a curved, light wood design with horizontal grooves, viewed from the front on a blue carpet, against a backdrop of a white brick wall with a circular window and office decor visible through the window. +sun_agtqjtpdytmtwvds.jpg The reception area features a wooden reception desk with a seated person working on a computer, set against a backdrop of light-colored walls and a shelf filled with colorful folders, illuminated by ceiling lights. +sun_aqounbqgvjyjzmwc.jpg The reception area features warm wooden paneling with a stone wall section in the background, illuminated by hanging white pendant lights, and the desk has a dark front contrasted by a lighter stone countertop. +sun_atpvruanyicrloyd.jpg The reception area features a polished wood counter with golden accents, viewed from the front, against a background of shelves and a potted plant with large leaves in the foreground. +sun_aivnbbmlwxeogszw.jpg A reception area featuring a light wooden desk with a small computer and potted plant, set against a vibrant blue wall adorned with a colorful abstract painting, surrounded by a plush blue carpet and illuminated by large windows with black blinds on the right side. +sun_arqrumarqpbkxzhz.jpg A warmly lit reception area features a curved, wooden desk with a smooth texture viewed from the front, accompanied by yellow walls, recessed lighting, a leafy potted plant, and a cozy seating area with a brown and yellow patterned sofa set. +sun_auhaafxxdpjjmdgp.jpg The reception has a sleek modern design featuring a blue and beige color scheme with a glossy texture, viewed from a front angle with a desk adorned with potted plants and a computer, surrounded by an office environment with additional plants and filing cabinets in the background. +sun_arpdsknzicjgdqli.jpg The reception area, viewed from an angle showcasing both a marble-topped front desk with wood paneling and elegant chandeliers with blue accents, features polished stone flooring, soft warm lighting, and ornate glass doors leading to a cozy seating area with dark upholstered furniture against pastel-colored walls. diff --git a/utils/area/descriptions/sun/generated_descriptions/recreation_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/recreation_room_descriptions.txt new file mode 100644 index 0000000..d07c386 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/recreation_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_auordgjifvykxkwl.jpg The recreation room features a wooden pool table with a vibrant red felt, viewed from an angle showing its side and top, set against a background of warm-toned wooden cabinetry and a kitchen area, illuminated by ambient lighting and decorated with small plants and ornaments. +sun_aqtbaxfibymamjuw.jpg The recreation room, viewed from a corner angle, features a cozy, dimly lit space with brown couches and a green table tennis setup against wood-paneled walls, accompanied by a series of arcade games near the back wall under the soft glow of ceiling lights. +sun_awhppcmxhglrvpzw.jpg The recreation room features beige walls and a grey carpet, with two wooden pool tables covered in green felt dominating the foreground, while an arrangement of brown sofas and a TV cabinet are visible against a sage accent wall in the background, viewed from a diagonal perspective. +sun_atisfqgfslixnywu.jpg The recreation room features a billiard table with a dark red surface and wooden edges, set under a slanted pink ceiling with a central ceiling fan and surrounded by large, lattice-pane windows overlooking leafy greenery, with a wooden high chair and shelving adding to the cozy ambiance. +sun_amzckpctbaxukwnr.jpg The recreation room features a green ping pong table with wooden edges in the foreground, a cozy seating area with dark leather and fabric chairs under a softly lit, mottled ceiling, and large windows revealing a suburban street scene partially obscured by vertical blinds, while a chandelier with a white shade hangs prominently above. +sun_auyiqpbyncgamzcg.jpg The recreation room features a centrally positioned pool table with a green felt surface, wooden frame, and billiard balls in scattered formation, surrounded by a sparsely decorated background with exercise equipment against plain walls under soft overhead lighting. +sun_adyhfhlstatpyczn.jpg The room features a central view of a green felt pool table with wooden legs, surrounded by white brick walls adorned with posters, a black bench press in one corner, and shelves filled with miscellaneous items, all set on a light beige carpet. +sun_avntebojkjtpgbyh.jpg The recreation room features a pool table with a teal felt top in the foreground, surrounded by a semi-circle of brown leather chairs, set against large windows revealing a marina with numerous boats and a calm waterfront under a clear blue sky. +sun_apjvymiqrrdoumux.jpg The recreation room features a grouping of four light-gray cushioned wooden sofas arranged symmetrically around a light wooden coffee table, with a potted plant on one side and a framed painting and window on beige walls in the background. +sun_avskzbxcslxcnxde.jpg The recreation room features a spacious layout with a red-textured pool table as the focal point, viewed from an angle that highlights the brown wood-paneled walls and striped couches, against a background of exposed brick, multiple windows, and ceiling lights providing soft ambient illumination. diff --git a/utils/area/descriptions/sun/generated_descriptions/residential_neighborhood_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/residential_neighborhood_descriptions.txt new file mode 100644 index 0000000..24fd906 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/residential_neighborhood_descriptions.txt @@ -0,0 +1,10 @@ +sun_dghbvzysbgtijxlh.jpg The image shows a quaint residential neighborhood with uniformly gray stone houses, pitched slate roofs, and a cobblestone road curving gently, framed by overcast skies and sparsely placed bare trees, reflecting an architectural style reminiscent of historic European settings. +sun_drkemtmbgfzeyihh.jpg A tree-lined street with a variety of greenery, featuring a light gray road extending into the background, flanked by houses with visible driveways and green garbage bins, with a clear blue truck parked on one side. +sun_ddcbwubhrvdypanm.jpg The residential neighborhood features light-colored single-story houses with brick or stucco textures, visible from a street-level viewpoint including a tree-lined road, a sidewalk, and a "Desert Isle Dr" street sign, while vehicles line the curb under a cloudy sky. +sun_dgofxzzhnkigxytv.jpg The image depicts a residential neighborhood with a brown horse pulling a cart along a tree-lined street, with single-story homes featuring red-tiled roofs and a mix of warm-toned brick and stucco façades in the background. +sun_dbdfjtodbvrgtiin.jpg The image depicts a residential neighborhood with single-story houses in muted red and white tones, featuring dark, sloped roofs, seen from a road-level viewpoint bordered by neatly trimmed green lawns and multiple parked cars against a cloudy sky. +sun_dxrgbekvczdokgwu.jpg The residential neighborhood features a tree-lined street with a mountainous backdrop, under a clear blue sky, and consists of houses with driveways and parked cars, visible power lines, and scattered greenery, creating a suburban and serene atmosphere. +sun_bfcdealwqqmroskb.jpg The image depicts a sloping residential neighborhood with predominantly white and red wood-clad houses, manicured hedges lining the street, light gray pavement, and a small red car parked on the right, against a backdrop of overcast sky and lush greenery. +sun_ddtuouqwukxkklpi.jpg A tree-lined street with overhanging lush green foliage provides a shaded canopy, while parked cars in various colors line the edges, and the cracked, sun-dappled asphalt stretches towards distant residential buildings. +sun_dynpjrjvkbhihtmu.jpg The residential neighborhood features houses with varied textures and muted colors like gray, white, and light blue, seen from street level with a large tree and power lines in the background, along with a distinct brick chimney on one house enhancing the quaint suburban setting. +sun_drxcxeucqwatvlnq.jpg The residential neighborhood features a straight paved road with white dashed lines, bordered by a concrete wall with a potted plant and greenery on the left, under a clear blue sky with utility poles lining the street, creating a symmetrical and open environment. diff --git a/utils/area/descriptions/sun/generated_descriptions/restaurant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/restaurant_descriptions.txt new file mode 100644 index 0000000..5e5522c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/restaurant_descriptions.txt @@ -0,0 +1,10 @@ +sun_adqnnolchorrizro.jpg The restaurant features a warm color palette with wooden accents and round, ambient ceiling lights, viewed from an elevated angle showing well-arranged tables with white tablecloths, surrounded by large windows and indoor plants, creating a cozy and inviting atmosphere. +sun_aopfakremteccarx.jpg The restaurant features brightly colored seating styled as bathroom fixtures, with patrons sitting on toilet seats at tables made from sinks, surrounded by a lively atmosphere with warm yellow lighting and vibrant blue and white accents. +sun_axvculixhcntxheg.jpg The restaurant features a chic outdoor setting with white umbrellas and black chairs on a grassy surface, illuminated by warm lights, providing an elegant ambiance against a backdrop of tall, urban buildings. +sun_arviyviccgwxtwyz.jpg The low-resolution image depicts a warmly lit restaurant with red upholstered chairs and white tablecloths, set against a backdrop of intricate wall decor, including a large ornate mirror and floral arrangements, all seen from an oblique angle that highlights a rich wooden floor. +sun_aaorrlthbdvakstw.jpg The restaurant features vibrant red, blue, and beige velvet chairs, arranged neatly around tables with white table settings, set within a softly lit room adorned with dark patterned wallpaper and large windows revealing a glimpse of trees outside. +sun_alzncwwjcmmernop.jpg The restaurant features warm wooden flooring, elegantly arranged black and white patterned chairs, dim ambient lighting from above, a gracefully curved ceiling fan, and a background adorned with neatly framed art and lush greenery, creating an inviting and sophisticated atmosphere. +sun_afefkxscdspuddob.jpg The restaurant features a modern interior with dark teal chairs and tables, sleek black upholstery along the wall, and a distinctive illuminated sign against a muted green wall with industrial ceiling details and art pieces. +sun_adwivujiaheoqkvl.jpg The restaurant features pink tablecloths on round tables surrounded by dark upholstered chairs, with a large oval mirror on the beige wall reflecting the ceiling lights and greenery, creating an inviting and warm atmosphere. +sun_aqolpdyuvilfzbmh.jpg The restaurant features richly colored table settings with white tablecloths under warm, ambient lighting, surrounded by dark wooden beams and neutral walls, with windows allowing natural light to enhance the elegant seating arrangement. +sun_auyeegkylzygmswt.jpg The restaurant features elegant burgundy and black color tones with a polished wooden floor, offering a side perspective of neatly set tables adorned with blue glasses against a backdrop of tall windows with urban views and rich drapery. diff --git a/utils/area/descriptions/sun/generated_descriptions/restaurant_kitchen_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/restaurant_kitchen_descriptions.txt new file mode 100644 index 0000000..8e39d14 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/restaurant_kitchen_descriptions.txt @@ -0,0 +1,10 @@ +sun_aqeuearzxazyqlwi.jpg The image shows a large metallic, industrial kitchen appliance with a stainless steel texture, featuring two open compartments, including a large rectangular chamber and a dual-hinged section, set against an outdoor urban backdrop with a clear view of a building and sky. +sun_arimdogvajapqeav.jpg The image shows a stainless steel restaurant kitchen sink area with an overhead sprayer, positioned against a white-tiled wall, featuring metal shelving with cookware on the left, a tiled red floor, and a menu or safety sheet partially visible on the wall. +sun_amdzvyepkpyeajxr.jpg The image depicts a bustling restaurant kitchen with a warm, yellowish hue and texture from the overhead lighting, viewed from an angle showing a chef in a gray shirt slicing fish on a counter while cured meats hang prominently overhead, surrounded by shiny cookware and a busy, cluttered backdrop. +sun_aainymcaqysqtfjp.jpg The restaurant kitchen features a mix of stainless steel and wooden surfaces with a prominent shelving system filled with neatly arranged spices and supplies, captured from a corner angle showing overhead industrial lights, a visible tiled floor, and an assortment of blue plastic bins indicating a well-organized and compact workspace. +sun_awxkiftswqbgcmoq.jpg The restaurant kitchen features sleek stainless steel appliances with a glossy finish, viewed from a front angle showcasing a double-door refrigerator and two stoves, set against a blue textured wall with a shelf holding utensils and cutting boards, creating a clean and organized appearance. +sun_acmxgdstnbbsrvdw.jpg The restaurant kitchen features stainless steel countertops with a central gas stove, set against terracotta floor tiles, and visible in the background are dining tables under industrial-style lighting, with a large exhaust hood overhead and a mounted television on the left. +sun_apglnhrjshpzrbky.jpg A dimly lit restaurant kitchen with warm, yellow lighting features a rustic brick and wood background, displaying shelves of stacked firewood and bottles; the scene includes a chef in an apron working at a cluttered wooden counter with a bread loaf and olive oil, while a man in a cap converses nearby. +sun_ataiadmttidfjbxb.jpg Amidst a compact, stainless steel background, the chef stands at a countertop with scattered eggs and tomatoes, rolling fresh pasta through a shiny metal pasta machine, showcasing a warm, ambient light and a cluttered yet organized atmosphere. +sun_aqpnumdyggzzbcnz.jpg The restaurant kitchen features stainless steel appliances and a cream-colored countertop under a metal lid, with a tiled brown floor and a charred grill surface in the foreground, viewed from a side angle. +sun_alfrydhojaqpqdnr.jpg A busy restaurant kitchen with a predominantly stainless steel environment, lit warmly from overhead, featuring chefs in white uniforms and tall hats actively cooking over a row of gas stoves, with flames visible from a pan in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions/restaurant_patio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/restaurant_patio_descriptions.txt new file mode 100644 index 0000000..794a024 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/restaurant_patio_descriptions.txt @@ -0,0 +1,10 @@ +sun_amprssflodyewkaw.jpg The restaurant patio appears bustling with wooden chairs and tables draped in navy and white tablecloths under a cream and blue awning, set against a stone wall background with potted flowers adding a vibrant burst of color to the scene. +sun_aswtasbcsdaqkhmw.jpg The restaurant patio features vibrant yellow tablecloths set against dark chairs under a series of stone archways, with a courtyard view revealing shaded tables and part of a sunlit garden or pool area. +sun_aknoutpkzsrenmhz.jpg The restaurant patio features white tablecloth-covered round tables with red cushioned chairs, surrounded by abundant green plants and orange floral curtains, under a bright, sunlit setting with large windows overlooking a garden. +sun_acgzefbnunlvayqb.jpg The restaurant patio features a warm terracotta tiled floor with circular black tables and chairs, positioned under large cream umbrellas, surrounded by lush greenery and arched structures in the background, suggesting a Mediterranean ambiance. +sun_arkkpmrtgvvppqdy.jpg The restaurant patio features an array of white and green plastic chairs arranged on a beige tiled floor, with a lively open-air atmosphere under nighttime lighting, and a small stage with red curtains serves as a focal point in the background. +sun_aoenjkedodbwtbxw.jpg The restaurant patio features large white umbrellas casting shade over circular tables with white tablecloths, viewed from a low angle with a warm sunset over water in the background, creating a serene and inviting atmosphere. +sun_algcrvrlxhdvdjkr.jpg The restaurant patio features beige umbrellas and white tables and chairs on a green artificial turf, viewed from a slightly elevated angle with a dual-level setup and a tower-like structure in the background. +sun_agistgbplsuokiki.jpg The restaurant patio features blue-tiled flooring and white arched walls, with a viewpoint overlooking palm trees and a distant sea, complemented by wicker chairs, round tables, and decorative urns, set under a pastel evening sky. +sun_agcpklrvtffnafjw.jpg The restaurant patio features a colorful array of tables with patterned yellow tablecloths and green plastic chairs under red and white umbrellas, set against a bustling street scene with trees and a historical building in the background. +sun_abifwnjjdyfwzwui.jpg The restaurant patio features beige umbrellas and modern white chairs with bright green cushions, arranged around wooden tables, set against a backdrop of lush greenery and urban buildings. diff --git a/utils/area/descriptions/sun/generated_descriptions/rice_paddy_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/rice_paddy_descriptions.txt new file mode 100644 index 0000000..d69d3fe --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/rice_paddy_descriptions.txt @@ -0,0 +1,10 @@ +sun_adfaplehteysqgun.jpg Rows of brownish-green rice plants protrude from the water in a partially harvested paddies, with a distant background of a lush green forest and low mountains visible under a partly cloudy sky. +sun_ajntmarjvbrnandk.jpg The rice paddy features vibrant green seedlings arranged in neat, parallel rows, emerging from shallow, mirror-like water, with an elevated viewpoint highlighting the terraces and subtle undulations in the landscape. +sun_amqelxjfavwfiyky.jpg Neatly planted rows of vibrant green rice stalks rise from the reflective waterlogged earth, viewed from a slightly elevated angle, contrasting with the muddy golden-brown watery background. +sun_axnabvngijrpesjv.jpg The rice paddies appear golden-yellow with a lush, grassy texture, viewed from a slightly elevated angle showing workers in shallow water with wooden boats, set against a flat horizon with sparse vegetation. +sun_aytwvmudymezxxks.jpg A lush, vibrant green rice paddy stretches into the distance with a person scattering seeds from a basket in the foreground, set against a hazy backdrop of evenly spaced trees and a pale sky. +sun_alavihpydyqrshxl.jpg The rice paddy exhibits a golden-brown, stubbled texture with closely cropped stalks under the warm light of either sunrise or sunset, casting a distorted shadow across a flat field backed by a line of dark trees and a clear sky. +sun_avzlykcntawqobuj.jpg The rice paddy features lush green seedlings in neat rows emerging from waterlogged fields with a slight reflective surface, extending into the distance with a subtle gradient of blue and green hues, set against a flat, expansive horizon. +sun_awaoownsnxiumkyz.jpg The rice paddy displays lush green and brown hues with a distinct checkered pattern formed by water-filled divisions, seen from an elevated perspective, surrounded by distant trees and a hazy horizon. +sun_avokinkqypqifwug.jpg Golden sunlight illuminates the lush green rice paddies with their rhythmic, terraced patterns reflecting in water, seen from a slightly elevated angle against a backdrop of distant hills and trees under a soft, warm sky. +sun_augkkbcvucxvlxtp.jpg The image shows a lush green rice paddy field viewed from a low angle, bordered by scattered banana trees and dense forest under a clear blue sky, with noticeable contrast between the vibrant green of the rice and the darker foliage. diff --git a/utils/area/descriptions/sun/generated_descriptions/riding_arena_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/riding_arena_descriptions.txt new file mode 100644 index 0000000..6762161 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/riding_arena_descriptions.txt @@ -0,0 +1,10 @@ +sun_bzaavvxzkvbsemzl.jpg The riding arena is an enclosed structure with a white, translucent arched roof supported by a metal framework, featuring a brown gravel ground surface, viewed from an angle that shows a few riders on horseback and people standing along the wooden perimeter fence with part of the indoor space extending into an open area in the back. +sun_bnonyhljsiamrhat.jpg The riding arena features a broad, gray, sandy-textured riding surface viewed from the entrance, framed by paneled walls with large windows that allow natural light and reveal an open, structured wooden truss ceiling. +sun_benhqgbquzodzvzw.jpg The interior of the riding arena features a sandy brown textured floor, viewed from an oblique angle, with wooden-panel walls and a grid of windows allowing soft light to illuminate the space alongside a visible white door. +sun_bbygikuiflbrtimf.jpg The riding arena features a large indoor space with a textured grayish-brown sandy surface, illuminated by skylights and surrounded by a wooden barrier with a backdrop of leafy greenery visible through openings between the wall panels. +sun_bhwlyhjlodalhgox.jpg The indoor riding arena features a large, open space with a green, textured floor and a series of white and orange jumping obstacles, enclosed by a high, steel-framed ceiling with suspended lights, and surrounded by wooden-paneled walls with multiple windows allowing ambient light. +sun_bozwihgakbxbjxvv.jpg The indoor riding arena features a beige sandy floor with visible circular riding tracks, wooden walls and a series of rectangular windows lighting the side, all viewed from a low angle showing a wide perspective of the space. +sun_byzxcoyypvyugssc.jpg The riding arena features a dusty brown textured floor viewed from a slightly elevated angle, enclosed by white-paneled walls with green lower sections, and illuminated by evenly spaced overhead lights, creating a dimly lit indoor environment. +sun_byanzdtxtwvdtmvy.jpg The riding arena is indoor with a partially shaded interior, featuring distinct red and white striped jump poles on a dirt floor, illuminated by overhead fluorescent lights, and surrounded by corrugated metal walls under a low-pitched roof, with visible wooden barriers and a distant view of trees through open sides. +sun_buotjecsnkqcjofz.jpg The riding arena features a wide expanse of evenly raked brown sand with visible ridges, under a white corrugated iron roof, illuminated by rows of large lights, with white walls and wooden barriers, offering a spacious indoor setting. +sun_bnyndjoizqxndutj.jpg The riding arena features a spacious interior with a light brown sandy floor, covered by a large metal roof supported by burgundy beams, set in a rural environment with greenery visible outside the open long side. diff --git a/utils/area/descriptions/sun/generated_descriptions/river_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/river_descriptions.txt new file mode 100644 index 0000000..5428fa9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/river_descriptions.txt @@ -0,0 +1,10 @@ +sun_agdnxdegjdlncwff.jpg The river flows gently through a dense forest with vibrant autumn foliage, featuring a smooth, brownish surface reflecting the light, surrounded by a mix of dark green conifers and bright yellow deciduous trees, viewed from a slightly elevated vantage point. +sun_ajnwquklxhjymhnh.jpg The river appears as a smooth, bluish surface flowing horizontally across the foreground, bordered by gravel banks, with a backdrop of lush green trees and towering mountains capped with snow and clouds in the distance. +sun_axszkietfkdtscgo.jpg The river appears as a smooth, reflective surface of deep blue-gray waters flowing gently, bordered by lush green grass and dense trees under a clear blue sky, with thick foliage casting shadows from the right bank. +sun_ajeltcmtdmxdnsvn.jpg The river appears as a calm, reflective water body with a greenish-brown hue, flanked by dense, bushy vegetation and trees, viewed from a slightly elevated angle with a hilly terrain under a bright blue sky with scattered clouds in the background. +sun_amdmimjcwgnwxcyw.jpg The river appears as a clear, reflective waterway with a smooth surface, set in a serene landscape with sparse vegetation on its banks, twisting gently through a backdrop of lush greenery and distant trees, under a bright, cloudless blue sky. +sun_ajvldbpilvwnvkei.jpg The river, viewed from an elevated angle, appears dark blue and smooth, flanked by lush green grasses and weeping willows, with a small punt carrying people adding a leisurely contrast against the vivid autumnal backdrop. +sun_avhjajgakctzamtv.jpg The river appears dark green with a smooth texture, winding through a lush landscape of dense, tall trees and scattered bushes, viewed from a slightly elevated position with rolling hills in the distant background. +sun_aditmzlhyzvghrmk.jpg The river appears with a muted blue-grey surface that is slightly reflective, bordered by a small rocky waterfall in the center that cascades into it, surrounded by lush green trees and dense vegetation under a clear sky. +sun_avssrubuopdbsxzp.jpg The river reflects the sky and surrounding greenery with a glossy, mirror-like appearance, framed by lush reeds and trees in the foreground, and tranquil, rolling hills under a cloudy sky in the background. +sun_axoixjmmtgixruik.jpg The river appears to be a calm, reflective body of light greenish-blue water flanked by golden-brown reeds on the near side with sparse, leafless trees and distant greenery under a clear blue sky in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/rock_arch_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/rock_arch_descriptions.txt new file mode 100644 index 0000000..7b102d7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/rock_arch_descriptions.txt @@ -0,0 +1,10 @@ +sun_bqawcygeqmbgyiyn.jpg The rock arch appears in a warm, reddish-orange hue with smooth, weathered texture, viewed from a slight angle, set against a backdrop of vast, rugged terrain and a partly cloudy sky, with its iconic freestanding structure distinct amidst the sweeping desert landscape. +sun_bsdvbjrbvtwqiyzx.jpg The rock arch displays a reddish-brown hue with rugged, weathered texture, viewed from a frontal angle against a clear blue sky; its distinctive feature includes a prominent middle opening flanked by sloping rock walls, with sparse vegetation and scattered boulders at the base. +sun_bhrmnsqcaphhmzis.jpg The rock arch appears reddish-brown with a rugged, weathered texture, viewed in side profile against a clear blue sky, surrounded by sparse desert vegetation and a prominent twisted tree in the foreground. +sun_bnipsfgcxspspynj.jpg The rock arch is a reddish-orange hue with a rugged, stratified texture, positioned diagonally with surrounding stratified cliffs and sparse vegetation in an arid, canyon-like environment. +sun_bzvpwvdimryrttus.jpg A naturally formed, reddish-brown rock arch rises dramatically against a vivid blue sky, viewed from the side with distinct, smooth weathered surfaces and surrounded by rugged, desert landscape featuring scattered vegetation and layered rock formations in the background. +sun_byxydflxaefepfcy.jpg The rock arch, captured from a frontal low-angle viewpoint, showcases a warm reddish-brown hue with smooth, layered textures, set against a background of distant snow-capped mountains and a clear blue sky. +sun_bycsfdyqiurvjyer.jpg The rock arch appears reddish-brown with a smooth, weathered texture, viewed from a side angle against a distant plateau under a partially cloudy sky, showcasing a graceful curve with a broader base tapering towards the top. +sun_bcmlctjxdcxijrxi.jpg The rock arch is a tan-beige color with a rugged texture, viewed from a frontal perspective surrounded by a blue ocean and clear sky, with jagged peaks and sharp edges that are distinct against the water. +sun_acvtqugjwsnoxpro.jpg The rock arch is a smooth, reddish-brown formation with a rounded top and flaring bases, positioned against a clear blue sky and distant, rugged mountains in the background. +sun_bviclkqwkaiulovk.jpg The rock arch is a massive, reddish-brown structure with a weathered, rugged texture, viewed from the side with a clear blue sky above, surrounded by sparse greenery and sandy ground, showing a distinct wide arch formed between two large rock formations. diff --git a/utils/area/descriptions/sun/generated_descriptions/rope_bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/rope_bridge_descriptions.txt new file mode 100644 index 0000000..edcd2ed --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/rope_bridge_descriptions.txt @@ -0,0 +1,10 @@ +sun_bkafjptekbtpzuwr.jpg The rope bridge features a dark wooden plank walkway with metal mesh railings on the sides, set against a dense forest backdrop of tall, green trees, and is photographed from a perspective that captures its slight arc and the people walking across it. +sun_auhxehjscsaiqzvm.jpg A narrow rope bridge with wooden planks spans across a light blue body of water, with netted rope railings visible, and a person in a red and dark jacket crossing it against a backdrop of calm waters and a slightly blurred green landmass. +sun_ampgosduzjkjgirt.jpg A narrow rope bridge with a weathered wooden walkway and metallic railings spans across a rocky area, surrounded by dense greenery and large boulders, viewed from one end. +sun_djdmcrtptfihewuc.jpg A narrow rope bridge with wooden planks and blue rope railings stretches from the foreground into the lush, green forest, leading directly into a rustic, wood-paneled treehouse situated amidst towering trees. +sun_azgxntjcdvjvqlxj.jpg A weathered rope bridge with a wooden walkway and netted sides stretches over a rocky chasm, viewed from a pedestrian's perspective, against a backdrop of moss-covered cliffs and overcast sky. +sun_alfhnzufhcnnrqts.jpg The rope bridge appears beige and brown with visible worn textures, viewed from an elevated angle emphasizing its narrow and shaky wooden planks, surrounded by lush, densely packed green foliage creating a natural forest setting. +sun_aexrpuoezeifftcm.jpg The rope bridge features light-colored ropes with a rugged texture and wooden planks, viewed from a perspective showing its length spanning rocky cliffs with grassy patches and a distant overcast sky. +sun_aokxfabvdrnvbchv.jpg The rope bridge, viewed from an elevated side angle, features beige woven ropes and wooden planks, set against a rocky coastline with patches of green moss and dark, jagged rocks leading to the sea. +sun_avymcwzegqbskuto.jpg The rope bridge is tan and woven with a knotted texture, viewed from the side as it connects to a wooden platform surrounded by tall trees in a forest setting, with two people in helmets preparing for crossing. +sun_acsmqcveguvzjjms.jpg The rope bridge features narrow wooden planks with visible grain texture, bounded by dark, thin railings, set amidst a lush, vibrant canopy of green and yellow leaves in a forested environment, with a slight downward view capturing the near end disappearing into the foliage. diff --git a/utils/area/descriptions/sun/generated_descriptions/ruin_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ruin_descriptions.txt new file mode 100644 index 0000000..fb7ce04 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ruin_descriptions.txt @@ -0,0 +1,10 @@ +sun_ankvnuapephpybnj.jpg The ruins display a semi-circular stone amphitheater with weathered, light beige stones, set within a lush, green hillside backdrop, featuring distinct tiered seating and scattered tourists providing scale and context. +sun_anvgrrhrqfantvyt.jpg The ruin consists of light gray stone walls featuring uneven, rough textures, viewed from a slightly elevated angle amidst a backdrop of palm trees and distant mountains. +sun_andkmcdxhtquqbns.jpg Standing tall under a swirling blue sky with wispy clouds, the weathered stone pillars of the ruin display a light gray hue and rough texture, surrounded by patches of green grass and rocky paths in an open, ancient setting. +sun_anrzzxgszlyhrtzt.jpg Two tall, ancient columns with a weathered, light stone texture stand against a backdrop of a cityscape and dynamic clouds, surrounded by scattered ruins and stone blocks in a sandy, arid environment. +sun_aamlokpikhxywiym.jpg The ruin features a circular stone amphitheater with weathered gray seating, viewed from an elevated angle, surrounded by lush greenery and tall rock formations in the background. +sun_aviafvvriarhqqyy.jpg A rugged, sandy-colored rock face features multiple carved square and circular cavities, viewed frontally, with sparse vegetation and sunlight casting shadows across its textured surface. +sun_atucpevelxrjdfcg.jpg The ruin features weathered, beige stone walls with a rough, rugged texture, viewed from an upward angle highlighting its jagged, partially collapsed structure against a backdrop of clear blue sky and patches of green grass. +sun_ambmvkjdmsidyyny.jpg The ruin features weathered gray stone walls with a rugged texture, a towering and partially collapsed structure viewed from a front angle, set against a bright blue sky with sparse clouds and surrounded by lush green grass. +sun_blvwpybffxcnjfbd.jpg The ruin has a sandy beige color with a terraced structure featuring multiple colonnades, viewed from the front against a rocky desert backdrop that matches the building's hue. +sun_aawxxmvwevdbjgys.jpg The ruin appears as a partially collapsed stone structure with gray and beige tones, featuring irregularly shaped blocks and arched openings, viewed from an angled perspective on a grassy hillside with a backdrop of scattered trees and a blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/runway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/runway_descriptions.txt new file mode 100644 index 0000000..fca8e0b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/runway_descriptions.txt @@ -0,0 +1,10 @@ +sun_bcxgfxgqtcrhrjqc.jpg A large commercial airplane with light gray and white coloring and a distinctive tail design is poised on a dark runway with visible grass on either side, set against a cloudy sky and an industrial background. +sun_bxhfmqbmnwsidaaa.jpg The runway appears gray and smooth, viewed at an angle from ground level, with patches of green grass surrounding it and buildings visible in the background under a cloudy sky. +sun_aubezbjzqkllgazi.jpg The aircraft on the runway is a gray, twin-engine plane with a distinctive, rugged appearance, metallic texture visible under clear skies, and a solitary control tower set against mountainous terrain. +sun_auuugcrnbmccheyv.jpg A gray, asphalt runway surrounded by green grass features two black helicopters positioned side by side with a bright blue sky and scattered clouds above, while individuals in tan uniforms walk nearby, providing a dynamic and open-air setting. +sun_bzdrvmfocqfyvguo.jpg The runway, surrounded by open grassy areas, appears gray and smooth, marked by clear parallel lines, viewed from a low angle with an airplane prominently in the middle ground. +sun_bichqsxdfhyjzxyh.jpg A gray, smooth, paved runway with a parked white propeller airplane to the side, featuring a distant, misty treeline against a cloudy sky. +sun_bzmrixjtdcdyusgh.jpg The runway is a smooth, gray surface with distinct white and yellow markings, viewed from a side angle with green grass on the edges and an airplane in motion against a skyline with scattered buildings and trees in the background. +sun_birvjjkruobbrzse.jpg A snow-dusted runway stretches across the foreground, contrasting with the stark white plane and its vibrant blue and yellow logo, set against a clear, low-angle sunlit sky. +sun_abifwwwgjnomvfda.jpg The runway is light gray with visible tire marks, viewed from above with distant misty mountains in the background and several aircraft and airport infrastructure nearby. +sun_anuptyrtgcussfxm.jpg A wet, icy tarmac stretches under a cloudy sky, with patches of snow lining its surface, viewed from a ground-level perspective against a backdrop of distant buildings and flat terrain. diff --git a/utils/area/descriptions/sun/generated_descriptions/sandbar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/sandbar_descriptions.txt new file mode 100644 index 0000000..76b891d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/sandbar_descriptions.txt @@ -0,0 +1,10 @@ +sun_ctcuhzkgnmctnsws.jpg The sandbar is a smooth stretch of pale beige sand bordered by scattered dark rocks, extending towards a distant, tree-covered island against a backdrop of clear blue sky and ocean with fluffy clouds. +sun_corsmmifcmlaggnc.jpg The sandbar appears as a light beige stretch with a smooth, flat texture, extending from a low-angle perspective into a backdrop of blue sky with scattered clouds and distant vegetation along the shoreline. +sun_cauroixybslvshpu.jpg A wide and flat sandy expanse covered partially with irregular patches of white snow stretches into the distance, framed by forested banks on the left and a serene blue river on the right, with hills visible in the far background under a clear blue sky. +sun_ajscetskiwaukgin.jpg A light beige sandbar with a smooth texture protrudes into a curved, muddy river set against a backdrop of stratified reddish-brown rock cliffs under a clear blue sky. +sun_cdpltsukydathmdx.jpg The sandbar is a narrow, elongated strip displaying a rusty brown hue with speckled patches of white, likely from gathered birds, viewed from an elevated, slightly oblique angle against a backdrop of calm blue water and leafless trees along the shoreline. +sun_csbqrzluzeryfwgo.jpg A pale grayish sandbar stretches out against a misty ocean backdrop, populated by numerous birds standing along the damp, smooth texture with a solitary figure in a yellow coat creating a contrast in the overcast scene. +sun_cywmxjiricbiqhsc.jpg A narrow sandbar stretches across the vibrant blue ocean with a soft, light sandy texture and sparse vegetation under a bright sky, surrounded by deep azure waters and a few distant sailboats visible on the horizon. +sun_brdqbmqilnrrcnqf.jpg A long, narrow sandbar stretches into misty waters, with a muted tan hue and smooth texture, viewed from an elevated angle with lush green vegetation in the foreground and a distant, fog-shrouded coastline. +sun_cempkkcgsxkwlmxi.jpg The sandbar, appearing as a smooth, pale beige strip, stretches across shallow, clear turquoise water with a vivid blue sky and distant clouds on the horizon. +sun_bqhkvbsnzopzmanm.jpg The sandbar is a light beige with a smooth, slightly rippled texture, viewed from a side angle, flanked by clear blue water on the left and dense green vegetation on the right, with a backdrop of a lush, tree-covered hill. diff --git a/utils/area/descriptions/sun/generated_descriptions/sandbox_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/sandbox_descriptions.txt new file mode 100644 index 0000000..c651183 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/sandbox_descriptions.txt @@ -0,0 +1,10 @@ +sun_boyjicibkgjfdauc.jpg The sandbox is a green turtle-shaped structure with notable round eyes, containing light-colored sand and various small, colorful plastic toys, situated on a patchy grass surface, viewed from a slightly elevated angle in a dimly lit outdoor setting. +sun_bkcevnpyqoexguzy.jpg The sandbox is rectangular, white in color, filled with light brown sand, and is situated outdoors with a grassy background; it contains colorful plastic toys and is positioned on a wooden platform adjacent to a structure with gray shingles. +sun_bwwapdjhadtdspiw.jpg The sandbox is a light brown, textured plastic turtle-shaped enclosure with a raised lid in the background, situated on a wooden deck surrounded by tall green plants, containing white sand, a child in a green shirt, red and orange sand toys, and a green plate. +sun_bjkwwckowsldzmln.jpg The sandbox is a squared wooden frame filled with pale tan sand, surrounded by grass with two children seated inside, one holding a blue bucket. +sun_banrabtcfprvzeos.jpg A red, crab-shaped sandbox with prominent eyes on the front rests on grassy terrain, containing pale sand and toys, with a wooden fence in the background and a red lid positioned nearby. +sun_bjsqdvkfffyublpo.jpg The sandbox is filled with fine, light-colored sand and scattered with various colorful plastic toy trucks and shovels, surrounded by white curved walls and columns, suggesting it is part of an outdoor play area. +sun_anjbxcgxozfqucly.jpg The sandbox is rectangular with wooden edges, situated on a ground of wood chips, and is filled with light-colored sand surrounded by children playing with yellow and red toys, against a backdrop of a fenced grassy area and assorted playground equipment. +sun_byyfljspwcaywojd.jpg The sandbox is square with a blue border, situated in a sandy area, and is surrounded by trees and children playing. +sun_baorcscqoxpfevwp.jpg The sandbox is rectangular with a wooden border and light sand inside, surrounded by children playing with various colorful sand toys, and is set against a grassy background under dappled sunlight. +sun_bctojnduntfubowp.jpg The sandbox is covered with a green tarp partially pulled back to reveal a sandy texture beneath a wooden shelter with a corrugated roof, surrounded by a vibrant wall painting of beach toys, with a fence and scattered leaves in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions/sauna_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/sauna_descriptions.txt new file mode 100644 index 0000000..3a497a0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/sauna_descriptions.txt @@ -0,0 +1,10 @@ +sun_amymrponrrksafak.jpg The sauna features a warm wooden interior with light-colored planks forming the walls and bench seating, centered around a cylindrical metal stove topped with stones, while the narrow shot focuses on the symmetrical arrangement of benches and the central heating element, with a slanted wooden ceiling that complements the enclosed space. +sun_buvppgphuhcfpofb.jpg The sauna has a light wood textured interior with horizontal paneling, viewed from the front and center showing L-shaped bench seating, with a bright central floor panel and a tiled wall background featuring a square block pattern. +sun_btobctirvjjhhwjn.jpg The sauna has warm, reddish-brown wooden panels with a smooth texture, arranged in a horizontal pattern, viewed from an interior corner with bench seating on two levels, and the background features a well-lit ceiling and wooden walls. +sun_bmqwzdpdmtdtyzma.jpg The sauna is made of light-colored wooden panels with a smooth texture, viewed from an angle showing two wooden slat benches and a heater encased in a wooden guard, set within a tiled floor, softly lit by a wall lamp. +sun_bphwjfhtrzpjxclv.jpg The sauna interior features warm, natural wood paneling with a smooth, horizontal texture, viewed from a slightly angled front perspective, showing a wooden bucket and ladle on a slatted bench, and a simple wall light fixture above. +sun_akgctclsovthiced.jpg The sauna features light brown wooden paneling with a smooth texture, viewed from an angle that shows benches on the left and a wooden heater guard on the right, with a warm glowing light fixture high on the wall enhancing the cozy atmosphere. +sun_bgpemibjooxvrktk.jpg The sauna has warm, golden-brown wooden planks with a smooth texture covering the walls, ceiling, and benches, viewed from an interior angle with a small light illuminating the room, a wooden bucket on the bench, and a heater with stones on the left. +sun_aipyohrqlwngaqif.jpg The sauna features light wooden panels with a smooth texture, viewed from a corner angle showcasing tiered bench seating, with a heater in the corner and a small, softly lit ceiling light highlighting its warm, cozy interior. +sun_bodpgvwuwumiydnl.jpg The image depicts a warm-toned, wooden sauna interior with horizontal paneling, a wooden bench to the right, a pail of water resting on the bench, and a large window at the far end offering a partial view of the outside environment. +sun_brcveekollwhbxxg.jpg The sauna interior features smooth, light brown wooden panels and benches viewed from an angle emphasizing a corner setup, with a classic wooden bucket on the floor and a small heater with stones in the foreground against the wood-paneled background. diff --git a/utils/area/descriptions/sun/generated_descriptions/schoolhouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/schoolhouse_descriptions.txt new file mode 100644 index 0000000..e39d1ed --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/schoolhouse_descriptions.txt @@ -0,0 +1,10 @@ +sun_bcgfkbqejwkhfous.jpg The schoolhouse is a small, white clapboard building with a steep, dark gray gabled roof seen from an angled front view, featuring symmetric double-hung windows and surrounded by autumn foliage and trees, with a stone wall partially visible in the background. +sun_bfeydbarhwtizbvq.jpg The schoolhouse is gray with a prominent red door and roof trim, viewed from the front with a chain-link fence enclosing the grassy yard and a flagpole beside it, set against a backdrop of trees under a cloudy sky. +sun_bqvgxkqeuimfkjnl.jpg The schoolhouse is a small, red brick building with a gray shingled roof, featuring white-framed windows and a central white door, set in a lush, green, grassy environment with tall trees in the background and two red sheds nearby. +sun_bqigdnxkyoshanor.jpg The schoolhouse is a white stucco building with a textured surface, viewed from the front with a clear blue sky background, featuring a bell tower, red roof tiles, black window grills, decorative lamps, and surrounded by vibrant pink flowers. +sun_bxailhakkwccvqen.jpg The schoolhouse is a small, white, wooden building with a green, gabled roof, captured from a slight side angle, surrounded by a flat, dry grassy area with sparse trees in the distance, featuring a modest entrance porch and a nostalgic playground item nearby. +sun_bhybgjrlurzpyjlt.jpg The schoolhouse is a brick structure with a pitched roof, viewed from the front side at an angle, featuring tall, white-framed windows and a small bell tower, set against a backdrop of sparse trees on a grassy lawn. +sun_bbndkzfapuzvddwu.jpg The schoolhouse is a red brick building with a sloped dark roof, viewed from a front-left angle, featuring a white belltower, arched windows, a central circular window above the door, and surrounded by grass and trees. +sun_bmysnswnokcdhqlp.jpg The small, single-story schoolhouse features a light, weathered wooden exterior with a distinct steeple and gabled roof, a reddish-brown arid landscape in the background, and wooden steps leading to a porch with a desert environment surrounding it. +sun_blpnflehapvwpgtx.jpg The schoolhouse is a small brick building with a red-brown hue, featuring classic white trim around the windows and doors, a central bell tower on the roof, and is situated against a snowy landscape with bare trees and a rustic wooden fence in the foreground. +sun_bgvoqdnxjqtyjhph.jpg The schoolhouse is a two-story structure made of light-colored stone with a steep, gray-tiled roof, viewed from the front surrounded by lush greenery and ornamental hedges, featuring symmetrical windows and a prominent central doorway. diff --git a/utils/area/descriptions/sun/generated_descriptions/sea_cliff_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/sea_cliff_descriptions.txt new file mode 100644 index 0000000..1b06f4c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/sea_cliff_descriptions.txt @@ -0,0 +1,10 @@ +sun_bazncixpbkwghmjg.jpg The sea cliff presents a rugged and weathered texture with a mix of beige and gray tones, viewed from a low angle that emphasizes its towering height against a cloudy sky and distant rock formations, with distinct crevices and outcroppings accentuating its irregular surface. +sun_bflgfyywvxbpeyxl.jpg The sea cliff is light gray to cream in color with textured, eroded layers, viewed from a side angle with a forested top edge set against a clear blue sky and a foreground of calm blue water. +sun_buvnalsffqkramht.jpg The sea cliff features a rugged, green-topped and rocky face with striations, extending vertically against a deep blue ocean backdrop under a clear sky, with several people standing on the edge and small rock formations visible in the water below. +sun_ayuwhioekqmaukhc.jpg The sea cliff features rugged, multicolored rock faces with variegated browns and greys interspersed with patches of green vegetation, viewed from a high angle showing the sharp contours of the cliff descending into the deep blue ocean, against a clear blue sky in the background. +sun_bboysfsdbidrhxky.jpg The sea cliff is composed of layered, stratified rock with hues of tan and beige, featuring weathered vertical lines and patches of greenery at the top, set against an open sea under a clear sky. +sun_arpsxqkduedrrzyi.jpg The sea cliff displays a rugged texture with stratified layers of brown and beige rock, viewed from an oblique angle against the backdrop of a turbulent ocean and overcast sky, with a dense covering of greenery atop the cliff. +sun_aisnhewpokbdwibu.jpg The sea cliff features a striking combination of white and earthy tones with jagged edges, viewed from an angled perspective, set against a warm sunset sky and calm waters, with sparse vegetation atop and a narrow beach strip below. +sun_bvjgecyzlletvasn.jpg The sea cliff appears rugged and steep with a mix of gray and yellowish hues, dotted with patches of greenery, contrasting against a clear blue sky and shadowed river below, lined with dense trees. +sun_bwsekdxpbaaxjluc.jpg The sea cliff features a stark, rugged gray texture with angular rock formations, viewed from an elevated angle, against a backdrop of turbulent turquoise waves and distant, soft blue-gray mountains under a partly cloudy sky. +sun_agsjvggtdttncoas.jpg The sea cliff features horizontal stratifications in dark gray and brown hues with a rugged texture, jutting out prominently over the expansive blue sea below, and topped with sparse green vegetation against a cloudy sky backdrop. diff --git a/utils/area/descriptions/sun/generated_descriptions/server_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/server_room_descriptions.txt new file mode 100644 index 0000000..ca03642 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/server_room_descriptions.txt @@ -0,0 +1,10 @@ +sun_bjfxbhxqydlgwugz.jpg The server room features rows of tall, black server racks with visible cabling, viewed from a low center aisle perspective, set against a bright environment with light-colored ceiling panels and floor tiles. +sun_bigirrpgtfxenmrc.jpg The server room image shows a front-facing view of gray and beige computer towers with perforated metal textures, surrounded by shelving and various electronic devices, including several stacked black units and a visible keyboard on top. +sun_bxtejoepemyvxwyq.jpg A dimly lit server room with a gray-white color scheme features racks of computer equipment along the walls, a central workstation with a chair, and a plain white ceiling, with cables and monitors visible amid a cluttered yet organized setup. +sun_ajlmpnmxjzfgwpze.jpg The server room features multiple black racks filled with hardware and network cables, a centrally placed outdated beige CRT monitor and keyboard on a shelf, and a mix of tangled yellow and green cables contrasting with the surrounding equipment, viewed from a straight-on perspective in a typical enclosed office setting. +sun_bprsmfcctibgegos.jpg The server room features rows of sleek black and white server racks with visible cable management on the sides, viewed from an angled perspective showing a spacious, clean environment with white tiled flooring and bright overhead lighting. +sun_bblzaipkuhageqoz.jpg The server room features a predominantly black and metallic color scheme with vertical racks on the left, viewed from a side angle, and has a wooden-textured wall in the background with two people interacting with equipment in a constructed enclosure. +sun_belrkoderhvqggxt.jpg The server room features rows of white server racks with a glossy finish, aligned along both sides of the narrow tiled walkway, under a grid of ceiling lights and a light green wall background with visible office furniture such as a rolling chair. +sun_bzhwvgrzvttqoexa.jpg The server room features a futuristic design with predominantly orange and black panels adorned with abstract patterns, viewed from a side angle showing two individuals interacting with the wall, while the background includes a distinctive, tunnel-like structure with a glowing orange sphere. +sun_bnmyctfzbjzbtuxa.jpg The server room features a row of gray server racks with a mesh-like texture, viewed through a glass wall, displaying exposed blue and orange cables on the left, with a white tile floor and ceiling lights illuminating the space. +sun_bqrvbkglxxqhoxob.jpg A large room with rows of white computer towers and CRT monitors, viewed from an elevated diagonal angle, features a gray carpeted floor, fluorescent overhead lights, and a green curtained and white-boarded wall as its backdrop. diff --git a/utils/area/descriptions/sun/generated_descriptions/shed_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/shed_descriptions.txt new file mode 100644 index 0000000..c0bc387 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/shed_descriptions.txt @@ -0,0 +1,10 @@ +sun_bpnmhqnlcraaskna.jpg The shed is a beige, vertically paneled structure with a contrasting tan trim around its window and door, viewed from the front-right side, with a wooden ramp leading up to a door featuring a rustic X pattern, surrounded by a forested background with visible trees. +sun_bcnfmojxghqfnuuo.jpg The small wooden shed has a dark brown, weathered texture, viewed from a front angle with a boarded-up window, situated amidst an open grassy area with sparse trees and clear skies in the background. +sun_bsrmxwycsnbsesiy.jpg The shed is viewed from the front, featuring light beige horizontal siding with white trim, situated on a grassy lawn with a stone wall and dense, leafy foliage in the background. +sun_ahhylaqpbmskbwhx.jpg The shed is beige with a horizontal paneled texture, viewed from an angle that shows its open doorway revealing a cluttered interior, set on a gravel surface with scattered foliage in the background and a yellow wheelbarrow nearby. +sun_bsrgmlftxxogflfm.jpg The shed is seen from a diagonal front view, with a muted gray color and smooth texture, set against a concrete-brick building in an industrial environment, featuring a distinct white door with a black handle centered on the front. +sun_binhcjkypdwzhjff.jpg The shed features a muted blue exterior with white trim and a white door, embellished with black hinges, a small window with black shutters and a flower box, and is set against a forested background with greenery and flowers bordering the base. +sun_bubnulmijumpekod.jpg The shed is metallic green with vertical paneling, viewed from the front displaying an open doorway revealing various tools inside, set against a backdrop of lush green grass and dense hedges. +sun_bpiykzgllqghryxu.jpg The shed features light brown vertical wooden panels with a textured, shingled roof in dark brown viewed from an angle, situated on a lush green lawn beside a house with horizontal siding, set against a backdrop of dense, leafy trees. +sun_bjtnlavhnmemhbhs.jpg The shed has light wooden shingle siding with dark green double doors, viewed from an angled front-left perspective, set in a lightly wooded area with a gravel path. +sun_biqzgxphqrsranga.jpg The shed is viewed from the front side with a light beige exterior featuring green trim, a partially open front with a small veranda, positioned on a grassy area surrounded by wooden fences and trees, and topped with a tarpaulin-covered roof. diff --git a/utils/area/descriptions/sun/generated_descriptions/shoe_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/shoe_shop_descriptions.txt new file mode 100644 index 0000000..63f4ade --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/shoe_shop_descriptions.txt @@ -0,0 +1,10 @@ +sun_bvmdcvymajobiley.jpg A man in a striped shirt examines a gray shoe with red accents near a curved display of various rugged outdoor shoes against a backdrop featuring an adventure scene with a hiker. +sun_bzzobyjvkwvdipwt.jpg The shoe shop displays a wooden interior with soft spotlights illuminating various leather shoes in shades of red and black on wooden shelves, centered around a large poster featuring a lifestyle advertisement. +sun_azxtbbpsqriogamy.jpg The shoe shop features a well-lit display of black and brown leather shoes arranged on white shelves with a group of people interacting in the foreground, and cardboard boxes stacked underneath the bottom shelf. +sun_apwpyymzgfhiryqy.jpg The shoe shop features a warm, elegant interior with burgundy and brown tones, illuminated by a chandelier, displaying a variety of shoes and boots on transparent glass shelves against a light-colored wall. +sun_bmjfnmvundxtaewq.jpg The shoe shop features polished brown and black leather shoes neatly displayed on wooden shelves against a reddish brick wall, with folded clothing stacked in between, viewed from an angled perspective highlighting both shoes and apparel. +sun_apwuarbomufragel.jpg The shoe shop features a well-lit interior with mirrored ceilings and wooden flooring, showcasing rows of colorful shoes on angled wire racks along the walls, while stacks of shoe boxes line the aisles. +sun_agcgkhyinnrxtscu.jpg The shoe shop features white, backlit shelves displaying various leather shoes in dark tones of black and brown, arranged neatly against a light-colored wall in a clean, minimalist environment. +sun_atgqschakoselcmm.jpg The shoe shop showcases a stylish, predominantly white high-top sneaker adorned with colorful patches displayed at eye level against a bright, contemporary interior filled with uniform shelves lined with various footwear, complemented by a glossy floor and muted background activity. +sun_avnbhhtgxqwoxlwv.jpg The shoe shop features an array of primarily red, brown, and black boots displayed on a white platform at eye level against a neutral-toned backdrop with framed artworks, while the shop's bright lighting highlights the distinct arrangement of footwear and a customer's relaxed standing pose. +sun_bcdfdjpbdurrrytg.jpg The shoe shop is characterized by its warm, cluttered interior with wooden shelves filled with various shoe boxes, and customers are seen trying on shoes, all set against a cozy, carpeted background with muted lighting. diff --git a/utils/area/descriptions/sun/generated_descriptions/shopfront_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/shopfront_descriptions.txt new file mode 100644 index 0000000..657db0e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/shopfront_descriptions.txt @@ -0,0 +1,10 @@ +sun_buckxznkmybsnssa.jpg The shopfront features a light blue exterior with a dark brown awning displaying "Allium," two symmetrical planters with greenery, and a glass door flanked by large windows set against a white facade with a contrasting cream door adjacent on a cobblestone street. +sun_bspgmetsesvxoyeg.jpg The shopfront resembles a whimsical gingerbread house with a yellow base covered in colorful gumdrop patterns and icicle-like white frosting, featuring candy cane columns framing the door and distinct red wreaths over the windows, with a festive wintery interior visible through the doorway. +sun_bwztqqxqkzbknglq.jpg The shopfront displays a warm, golden glow from interior lighting illuminating decorative statues and vibrant red walls, viewed from the street with visible reflection on the large glass windows and a quaint outdoor seating area with small, round tables and chairs. +sun_ajixohzbtihcjqwe.jpg The shopfront features a green exterior with ornate detailing, including gold lettering, and displays a variety of potted plants arranged neatly on the pavement, with a large glass window showing floral arrangements and white text detailing services, situated beside a classic-style door. +sun_agwknlfakbmkemls.jpg The shopfront has a white framed display window showcasing colorful ceramic plates and decorative items with a floral arrangement, set against a backdrop of an urban street visible through the glass, with reflections of surrounding trees and buildings. +sun_bxxkutpefearrcsr.jpg The shopfront features bright red signage with white text and graphics, set against a brick building on a street corner, with large windows displaying various items inside, and a pedestrian path in the urban background. +sun_aslikgdkitfyvjpz.jpg The shopfront features a red awning with white text above a glass door framed in dark wood, set against a muted pink facade, with interior lights creating warm reflections on visible salon products and a neighboring sign indicating a bar. +sun_agxnjxycwqjyeeyv.jpg The shopfront displays a bold, blue-and-white color scheme with an arched sign reading "Salut Les 60", featuring large glass windows showcasing interior décor and a prominent graphic of a stylized, minimalist human figure against a backdrop of closely-paved sidewalks and adjacent urban buildings. +sun_bwoyuwcualutixvv.jpg The shopfront features a lavender-colored facade with a large glass display showcasing an eclectic interior of decor items, a dark green tiled base, and a sign displaying the name "Esho Funi" in stylish lettering above the entrance. +sun_buzfyshjgkscxbsk.jpg The shopfront features a classic dark green façade with gold lettering, adorned by ornate iron balconies above and colorful bags displayed in the large, inviting windows within a historic European street setting. diff --git a/utils/area/descriptions/sun/generated_descriptions/shopping_mall_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/shopping_mall_descriptions.txt new file mode 100644 index 0000000..d81c428 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/shopping_mall_descriptions.txt @@ -0,0 +1,10 @@ +sun_bajwdhephrkiusah.jpg The shopping mall features a vibrant central area dominated by a large, metallic palm tree structure with golden hues, surrounded by colorful retail stalls and bustling with blurred figures, all set under a high, industrial-style ceiling with visible steel frames. +sun_akcwhonnrtwmnjev.jpg The shopping mall features a bright interior with a curved glass ceiling, white columns, and two levels with a central atrium, complemented by a mix of storefronts and a scattered presence of shoppers. +sun_avwzjsijaxnwuzjx.jpg The shopping mall features multiple levels with a warm orange and cream color scheme, intersected by crisscrossing escalators and walkways, surrounded by glass railings, and includes indoor plants and seating areas on a tiled floor seen from an elevated viewpoint. +sun_bmucwxwpwmgygzll.jpg The shopping mall features a warm, amber-toned interior with multiple levels visible from a ground-level viewpoint, adorned with vertical decorative light installations and reflective marble floors, amidst a backdrop of illuminated store signs and ambient ceiling lighting. +sun_ajnficvzxtazwtgb.jpg The shopping mall interior features a tall, decorated Christmas tree under a large, curved glass ceiling allowing in natural light, with multiple levels of shops visible along the sides and bustling crowds in the foreground. +sun_avicxzccipgymejx.jpg The shopping mall interior features a sleek, curving design with cream walls and a glass storefront, polished stone flooring, and a spacious open layout, highlighting bright lighting and various retail displays within a modern environment. +sun_aunmvwygpwconzag.jpg The shopping mall features a multi-level design with warm wooden accents, a central circular fountain adorned with red flowers, and is viewed from an elevated perspective, with storefronts lining the gleaming tiled floors and glass railings offering clear vistas of the bustling interior. +sun_atwiabworifehlrw.jpg The shopping mall features a bright, expansive interior with a glass ceiling letting in ample natural light, white structural columns and beams creating a clean aesthetic, and bustling crowds adding to a lively atmosphere, viewed from a slightly upward and diagonal perspective. +sun_bezhlznjpqxescyq.jpg The shopping mall has a multi-level, modern design with green railings and escalators, featuring a colorful array of store displays and large promotional banners, all viewed from an upper-floor railing offering a clear view down the central atrium bustling with shoppers. +sun_afwutcuacsctapqh.jpg The shopping mall, viewed from an elevated angle, displays vibrant red and orange hues with bustling vendor stalls on each level, surrounded by tall pillars and a mix of bright lighting and scattered signage in a multi-tiered layout. diff --git a/utils/area/descriptions/sun/generated_descriptions/shower_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/shower_descriptions.txt new file mode 100644 index 0000000..32be486 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/shower_descriptions.txt @@ -0,0 +1,10 @@ +sun_bzkpgcxblstryzgs.jpg The shower features a silver metal frame with clear glass, viewed from a slightly angled frontal perspective within a light-colored tiled bathroom, complemented by a sleek chrome showerhead positioned above subtle decorative square accents in the tiling. +sun_bbiimobkkqjuccks.jpg The shower features a transparent glass enclosure with silver metallic framing seen from a slightly elevated angle in a beige-toned bathroom, with a wall-mounted adjustable showerhead, corner shelf, and soap shelf visible inside. +sun_bfrirzqsllgrzhhn.jpg The image shows a sleek, metallic twin-shower system with curved heads, set against a backdrop of mosaic-textured tiles in cool tones, with water dramatically cascading downwards, illuminated by ambient light through horizontal blinds. +sun_aopyrioirmplcrjx.jpg The shower features frosted glass panels with metal framing, viewed from a corner angle in a tiled bathroom with light-colored walls and a sink visible nearby. +sun_bdstzvzpydgefcac.jpg The shower features a clear glass door with a gold frame, revealing beige tile walls arranged in a diamond pattern, and is surrounded by a white and tan bathroom space with visible toiletries on corner shelves. +sun_brllmrjljhvexskj.jpg The shower features light gray tiles with a subtle textured pattern and colorful square accents, viewed from the entrance with a built-in corner seat, surrounded by a similarly tiled bathroom wall and floor. +sun_bdpwalonybkgpcfu.jpg The shower features beige and red tiles with a diagonal pattern, viewed at an angle focusing on the corner, with metallic fixtures and a wooden ceiling accent above. +sun_bjjlwtkqvomxysqc.jpg The shower features a chrome-finished fixture with a curved pipe against white tiled walls, positioned in a corner with a partial view of an adjacent bathtub and dark blue floor tiles, accented by a decorative band on the upper portion of the wall tiles. +sun_brcgueutglquazlp.jpg The shower features a light beige tile backdrop with a metallic, wall-mounted adjustable showerhead and a frameless glass enclosure viewed from a standing perspective, set against a bright, naturally lit environment. +sun_blphwhxrqhisafua.jpg The shower features a silver shower head at the top mounted on a light green tiled wall, with a three-tiered hanging white plastic organizer containing various toiletries, set against a background of uniformly colored square tiles. diff --git a/utils/area/descriptions/sun/generated_descriptions/skatepark_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/skatepark_descriptions.txt new file mode 100644 index 0000000..a0cb1c5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/skatepark_descriptions.txt @@ -0,0 +1,10 @@ +sun_dpfnrvdzqhhdleqj.jpg The skatepark features smooth, pale gray concrete with flowing curves and bowls, viewed from an elevated angle, surrounded by a backdrop of trees, parking lot, and a clear blue sky, with a skater visible navigating the terrain. +sun_dlxtajdwvldwqzjd.jpg The skatepark has dark grey ramps with a smooth texture, positioned in an outdoor open space with a group of people, a cloudy sky, and industrial buildings in the background, showcasing flat and curved surfaces. +sun_dcsdxcgfavdacofw.jpg The skatepark features smooth, light gray concrete surfaces with deep, curving bowls and ramps, viewed under clear blue skies with palm trees and an industrial landscape in the background, defined by shadows and elevated platforms. +sun_dpmnxhdsauoemflf.jpg The skatepark features beige and brown ramps with a smooth texture, viewed from an elevated angle, surrounded by a fenced area and a small building with a green roof in a sunny outdoor setting. +sun_dlzfwhceveeezdxn.jpg The skatepark features smooth, light gray concrete ramps with angular rails and scattered construction materials, set against a backdrop of lush green trees and clear blue sky, emphasizing its in-progress state. +sun_daxzvvifvehtbksy.jpg The skatepark features smooth gray concrete surfaces with simple geometric ramps and rails, surrounded by a background of trees and industrial buildings seen from a low-angle viewpoint, highlighting a distinct half-pipe and various inclined platforms. +sun_defjamkqhhoashgs.jpg The skatepark, seen from a street-level viewpoint, features concrete bowls with a smooth, grey texture surrounded by a chain-link fence, set against a backdrop of dense green trees under a cloudy sky. +sun_driewdiqwldvwgnq.jpg The skatepark features a smooth, concrete surface with a gray tone and curved bowls, viewed from a low angle with fall foliage and an industrial background visible. +sun_dtugetpzpvekkrqj.jpg A sunlit concrete skatepark with smooth, grey surfaces features an angular rail for tricks, with several people in the background and distant tents under a clear blue sky. +sun_dmotwpcmloykdflo.jpg The skatepark features smooth, gray concrete ramps with vibrant, colorful graffiti, viewed from a ground-level perspective against a background of leafless trees and distant buildings. diff --git a/utils/area/descriptions/sun/generated_descriptions/ski_lodge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ski_lodge_descriptions.txt new file mode 100644 index 0000000..da2e5d4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ski_lodge_descriptions.txt @@ -0,0 +1,10 @@ +sun_bnydyehhrwdlmjlc.jpg The ski lodge features rustic red wooden shingles with prominent white snow-covered gabled roofs, viewed from the front, surrounded by mounded snow and set against a softly hued evening sky. +sun_buqkolfpcmanymza.jpg The ski lodge features a central green, triangular roof with stone-clad side pillars, set against a backdrop of snow-covered trees and a mountain, highlighting the wintry environment. +sun_bijfdjqibfcocurb.jpg The ski lodge features a warm, yellow glow from illuminated windows set against a rustic, wooden structure with stone accents, surrounded by snow and tall evergreen trees under a twilight sky. +sun_bwrukzobehsqcrhb.jpg The ski lodge features a warm wood color and texture, viewed from the front with a prominent clock centered on the facade, surrounded by snowy terrain and towering pine trees in the background. +sun_bqmmfqzvypcqdbgz.jpg The ski lodge appears to be a dark wooden structure with a steeply pitched roof blanketed in heavy snow, nestled amidst a dense forest of snow-covered evergreen trees, viewed from a frontal angle with snow-laden branches framing the scene. +sun_bdtnvugnfebluiuv.jpg The ski lodge features a beige and brown exterior with vertical siding and wooden balconies, viewed from ground level with tall pine trees dusted in snow in the foreground, and a snowy landscape in the background. +sun_alvbcflrxrkdlgqy.jpg The ski lodge is a quaint two-story structure with a blend of light blue siding on the upper portion and rustic, weathered wooden planks on the lower section, situated amidst a snowy landscape with an adjacent path leading to the entrance and a few skis leaning against the exterior. +sun_bndqbqrtdqwdwkll.jpg The ski lodge features a dark wooden exterior with a snow-covered gabled roof, viewed from a low angle showing multiple small windows, set against a snowy hillside backdrop under a cloudy sky. +sun_bmhtkjenixffodtc.jpg The ski lodge appears to be a white, multi-story building with large windows, illuminated warmly against a snowy, forested backdrop during twilight, characterized by its distinct angular roof and modern architectural style. +sun_bmmnxgrofdwtuyjr.jpg The ski lodge features a rustic brown wooden texture with a gabled roof and intricate lattice balcony, viewed at an angle nestled among snow-laden evergreens under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions/ski_resort_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ski_resort_descriptions.txt new file mode 100644 index 0000000..395b1f0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ski_resort_descriptions.txt @@ -0,0 +1,10 @@ +sun_btmhzkmvsxbdafio.jpg The ski resort features a snow-covered mountain terrain with rugged peaks under a clear blue sky, displaying a lodge with a wooden facade and a crowd of skiers and snowboarders visible in the foreground on a gently sloping hill. +sun_bbzsgmywqddmryfo.jpg The ski resort features a broad expanse of white snow contrasting with dotted clusters of dark green pine trees, viewed from a slope with a foreground of skiers and ski lift structures, set against a backdrop of gently sloping mountains under a clear blue sky. +sun_amgwbhvgtkcmiytk.jpg The ski resort is nestled on a snowy mountain landscape, featuring predominantly brown and red buildings with a scattered layout, surrounded by snow-laden trees and distant peaks under a clear, blue sky. +sun_bbjkiexvfvqvgzfb.jpg A snowy landscape with a rustic lodge featuring dark wooden beams and stone texture sits at the base, surrounded by undulating white slopes dotted with sparse trees and crisscrossed by ski lifts against a backdrop of a rugged mountain peak. +sun_brmtzkbnqcdgunpa.jpg The ski resort features snow-covered slopes and wooden buildings with sloped roofs, surrounded by leafless trees and prominent rugged mountains under a clear blue sky, while colorful skis are clustered upright near the rental area. +sun_avirvpmhulpiruis.jpg A snow-covered ski resort with a distinct A-frame lodge featuring large windows and a stone chimney is set against a backdrop of white, mountainous terrain dotted with ski lifts, seen from an elevated vantage point. +sun_bagxohxuixeymdho.jpg The ski resort features brown wooden buildings with green roofs amidst a snowy landscape, seen from an elevated angle, with scattered people and ski poles visible against a backdrop of snow-covered hills and a partly cloudy sky. +sun_ajjdljbwtfcpdijl.jpg The ski resort features a snow-covered landscape with dense, snowy evergreen trees, a rustic triangular-roofed lodge, a clear blue sky, and several skiers and a chairlift in motion. +sun_awvizsvapzxxahcc.jpg The ski resort is captured from an elevated viewpoint with a textured, snow-covered ground, featuring a rustic wooden lodge in the center surrounded by vibrant skiers, against a backdrop of sunlit, distant mountain peaks and clear blue skies. +sun_byaprbpdsnqwqjmw.jpg A low-resolution image shows a sunlit ski resort with distinct tan, angular buildings on the left, surrounded by snowy slopes and sparse skiers, against a backdrop of expansive, rolling brown hills and a clear blue sky dotted with fluffy clouds. diff --git a/utils/area/descriptions/sun/generated_descriptions/ski_slope_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions/ski_slope_descriptions.txt new file mode 100644 index 0000000..30139dd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions/ski_slope_descriptions.txt @@ -0,0 +1,10 @@ +sun_bloeuhmrjdayhgjz.jpg A snow-covered ski slope stretches into the distance under a clear blue sky, surrounded by coniferous trees and towering, rugged mountains in the background. +sun_akhaawgalrbwzfxr.jpg The ski slope is covered in a smooth, white snow texture, viewed from the base looking upward, surrounded by illuminated lights against a backdrop of dark mountains under a twilight sky. +sun_byjcflgvngvaekql.jpg The ski slope is a pristine white, gently descending under the bright blue sky, with distant chairlifts and rugged, snow-capped mountains creating a dramatic backdrop. +sun_bruvrjuhzzfajbib.jpg A snowboarder glides down a snowy, slightly curved slope with a mix of smooth and rough textures, surrounded by leafless trees under a clear sky with sunlight filtering through the branches, casting long shadows across the ground. +sun_bltqapasaysaihlm.jpg A skier descends a sunlit, powdery white slope with a shadowed area on the left, bordered by dense, dark, snow-dusted coniferous trees under a bright blue sky. +sun_btbohcsspoagqolu.jpg The ski slope is covered in smooth, compacted white snow bordered by leafless gray trees, with a downhill perspective leading to a distant view of snow-capped hills under a clear blue sky. +sun_byexidcvpkzwbkyb.jpg A snow-covered path surrounded by leafless trees under a clear blue sky, with one skier in a dark outfit pulling a sled along the track created by other skiers, set against a backdrop of distant hills. +sun_bzzhbadxbtrmgszi.jpg A snow-covered ski slope with visible ski tracks runs between dense, dark green coniferous trees under a clear blue sky, framed by a ski lift on the left and a solitary skier in the foreground. +sun_bynxhsahukcqcsob.jpg The ski slope appears as a bright, snow-covered path bordered by snow-laden trees under a clear blue sky, with sunlight casting highlights and shadows, and a mountain peak rising in the background. +sun_btebrtrymeikdcji.jpg The ski slope is covered with a smooth layer of pristine white snow leading towards snow-laden evergreen trees and a rocky outcrop, viewed from a low angle, while clear blue skies create a crisp backdrop. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/abbey_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/abbey_descriptions.txt new file mode 100644 index 0000000..00b467a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/abbey_descriptions.txt @@ -0,0 +1,6 @@ +sun_adriivoqvpifqgze.jpg The image depicts a large, twin-towered abbey with a teal hue, featuring intricate Gothic architectural details, including pointed arches and tracery, viewed from a frontal angle with a darkened foreground partially obscuring the base and a column structure to the left. +sun_azxqcnmbkuudkugp.jpg The abbey appears in a cool blue tint with coarse stone texture, viewed from a low angle revealing intricate arched doorways with pillars, set against a dark sky with a spherical light in the background. +sun_artequklmfvncjvd.jpg The visually augmented abbey appears in a landscape orientation with a greenish, mossy texture covering its weathered stone structure, viewed from an angle highlighting its series of large arches and partial occlusions provided by the adjacent grassy lawn. +sun_aiclrokyjyalssnp.jpg The image shows an abbey with a horizontal view, where the altered reddish-brown brick structure features symmetrical, arched colonnades leading to a pointed central archway, and the environment reveals hints of greenery beyond the open arch, despite the darkened texture and shadowy hues. +sun_afuaceyoawymlqfs.jpg The abbey appears in a low-lit, sepia-toned atmosphere with a focus on tall, vertical, Gothic-style columns and spires viewed from a slightly low and angular perspective, while the foreground structure casts subtle shadows on the partially visible stone façade, enhancing the elongated form against a dim sky. +sun_airyypykbhawlcdg.jpg The image shows a low-resolution, upward-angled view of a stone abbey ruin, augmented to have a purple-tinted sky and illuminated warm, textured stone walls with one large archway and several rounded pillars, casting distinct shadows. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/airplane_cabin_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/airplane_cabin_descriptions.txt new file mode 100644 index 0000000..3e7eb3c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/airplane_cabin_descriptions.txt @@ -0,0 +1,3 @@ +sun_btgtzwcjjrpujfcu.jpg The augmented airplane cabin features a pale greenish tint with lightly speckled seats, viewed from the rear towards the front with overhead bins and red accents visible, occupants partially occluded by seating. +sun_bsokbuiptcdomxut.jpg The altered image depicts an airplane cabin from a rear-left side viewpoint with dark blue-gray seats, overhead storage bins with a cream hue, and bright ambient lighting, featuring a partially visible person near the exit doors at the far end, adding depth to the scene. +sun_axxqkypwexedhjce.jpg The airplane cabin appears in a warm hue with an overhead view showing a light-colored fold-out table set with dishes and a keyboard, surrounded by beige upholstery and integrated dark screen panels. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/airport_terminal_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/airport_terminal_descriptions.txt new file mode 100644 index 0000000..61d1699 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/airport_terminal_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahwcxdrfinabwbpi.jpg The airport terminal features a warm orange-brown tone with a curved ceiling lined with rows of recessed lights, viewed from the floor level perspective with a bustling crowd partially occluded by pillars and glass-paneled barriers amidst shiny tiled flooring reflecting the ambient lighting. +sun_anmwwydafqtilqqp.jpg A low-angle view of an airport terminal features a tunnel with a glossy floor and a curved ceiling bathed in vibrant pink and purple hues, with silhouetted figures walking along the brightly lit walkway towards the distant end. +sun_abozsykcfwpbtpkw.jpg The airport terminal appears with a bright, augmented pinkish hue dominating the walls and signage, seen from a frontal perspective along a wide, tiled corridor with overhead lighting, where vibrant signs and seating areas line the path, creating a lively and bustling atmosphere. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/alley_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/alley_descriptions.txt new file mode 100644 index 0000000..f95f2a6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/alley_descriptions.txt @@ -0,0 +1,5 @@ +sun_abwoewruulbqboes.jpg A narrow alley appears in washed-out, sepia tones due to color augmentation, with high walls lined with rough, aged texture on either side, partially obstructed by poles and stacks of bricks, leading to a distant, blurred horizon under a pale sky, with a motorcycle parked mid-path. +sun_apfqfbrxzryormej.jpg The alley appears in a muted, overcast color palette with rough cobblestone texture underfoot, flanked by tall, weathered buildings with visible cracks and peeling paint, leading the eye towards a distant cluster of cars under a canopy of leafy branches, creating a sense of enclosure and depth. +sun_agyeeljqboaflujf.jpg The alley appears in muted sepia tones with a narrow, cobblestone path bordered by rough, textured stone walls, showing a slight upward slope, with patches of greenery visible in crevices along the sides, and occasional doorways and windows partially obscured by shadow. +sun_addontedcyafqkyh.jpg The alley appears in high contrast with sun-bleached stone walls and shadowed archways creating sharp textures, viewed from a low angle along a narrow cobblestone path, with lush green plants clinging to the sides and an overhanging structure partially occluding the sky above. +sun_aaljqlfhwfnxwyek.jpg The alley appears in muted pink hues with narrow, winding pathways flanked by pastel-toned buildings, featuring rustic balconies and shuttered windows, as the perspective captures the street descending into the distance with partial occlusion from overhead cables. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/amphitheater_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/amphitheater_descriptions.txt new file mode 100644 index 0000000..a754297 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/amphitheater_descriptions.txt @@ -0,0 +1,6 @@ +sun_cldcawtbfwhqycxv.jpg The image displays a dimly-lit amphitheater with reddish-brown seating tiers curving along a large rocky slope on the right, surrounded by mist-covered greenery and rolling hills in the background. +sun_cweqlhjmsggymttc.jpg The amphitheater appears in altered hues of teal and brown with a symmetrical, panoramic view capturing its tiered seating and open arena, featuring multiple archways and small, teal-colored seating rows lining the lower tiers, under a partially cloudy sky. +sun_cpxqegbxabauxyea.jpg The amphitheater appears with a dark, muted color tone featuring a reddish-brown upper brick structure, an expansive, slightly curving, terraced seating area with grayish tones, viewed from a frontal angle with sunlight casting shadows across the lower foreground and a few sparse patches of green grass amidst the stonework. +sun_alyydilsbbceucjh.jpg The amphitheater features curved, concrete seating with contrasting green and purple hues under a large ceiling, partially shaded by a green awning, with scattered people adding scale amid adjacent greenery. +sun_cbzvwxgqukbiuuku.jpg The amphitheater appears in a warm-toned, altered hue with a rough stone texture, viewed from a slightly elevated angle showing tiered seating leading up to a lone, rectangular tower-like structure on the horizon, amidst scattered green vegetation and stone debris. +sun_acfpnhnvjrtjzpaz.jpg The amphitheater appears in muted purples and grays with its curved, tiered stone seating facing a distant hilly landscape and calm water under an overcast sky, partially obscured by greenery on the bottom left corner. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/amusement_arcade_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/amusement_arcade_descriptions.txt new file mode 100644 index 0000000..42f5561 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/amusement_arcade_descriptions.txt @@ -0,0 +1,3 @@ +sun_ayuqszlixyopwxcs.jpg The amusement arcade features retro-style game machines with vibrant, augmented colors in a neon-infused, low-resolution setting, viewed from a diagonal angle, with a patterned carpet and digital displays, partially obscured by arcade booths and railing. +sun_anhyqlkmhbhmbmrk.jpg The image depicts a row of pink and purple slot machines with vibrant neon lighting, viewed from a side angle, surrounded by colorful signage and partially obscured by patrons and matching chairs. +sun_aazpwcmchbahisry.jpg The amusement arcade features a series of retro-styled arcade game machines with bright augmented colors, notably a prominent yellow cabinet on the left and a red-lit environment, viewed from a high diagonal angle with several players partially occluded by the machines. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/amusement_park_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/amusement_park_descriptions.txt new file mode 100644 index 0000000..676cbd7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/amusement_park_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahsxnblqksptbmuk.jpg The image shows a Ferris wheel with a dominant green tint viewed from a low angle, revealing its intricate metal spokes, with the sky as a soft purple backdrop, partially obscured by its towering structure. +sun_auhgahkwvzxjuxhu.jpg The amusement park Ferris wheel appears in a vertical orientation with a purple sky and blue metal framework, featuring yellow passenger cabins and a grassy foreground with white fencing partially occluded by people. +sun_bqzftxmevmdwqcxa.jpg The image shows a vibrantly color-shifted amusement park scene from a low angle, with a deep blue sky enhancing the whimsical architecture in warm orange and blue tones, crowded by visitors wearing casual attire, and features a distinctive cartoonish facade in the background partially obscured by trees. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/anechoic_chamber_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/anechoic_chamber_descriptions.txt new file mode 100644 index 0000000..e93982d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/anechoic_chamber_descriptions.txt @@ -0,0 +1,3 @@ +sun_aeonwxdwtfaytxan.jpg The anechoic chamber appears in a blue-toned color with a textured surface of uniformly arranged foam pyramids, viewed from an angled perspective showing walls and ceiling, with a central vertical structure and some occlusion at the lower edge by a lighter-colored element. +sun_ajrxjyzmnsrpkjsk.jpg The image shows an anechoic chamber with warm, reddish-brown textured foam wedges covering the walls and ceiling, viewed from a front angle with a central panel or barrier partially occluding the back wall, illuminated by softly diffused lighting. +sun_arrxguwlvfvarvsk.jpg The anechoic chamber appears predominantly blue with a textured surface of pointed foam wedges, featuring a curved metal structure in the foreground and a dense pattern of pyramidal shapes along the walls and ceiling. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/apartment_building_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/apartment_building_descriptions.txt new file mode 100644 index 0000000..1dbfb8c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/apartment_building_descriptions.txt @@ -0,0 +1,3 @@ +sun_amqjuxrpttuwkkwb.jpg A low-resolution image shows a white apartment building with orange-red shutters, a red-tiled roof, and a noticeable tree partially obscuring the front, viewed from a diagonal angle with power lines cutting across a clear blue sky. +sun_aeoyakneeyqdqmug.jpg The apartment building is viewed at an angle from the left side, featuring a warm beige facade with wavy white balconies, set against a clear blue sky, with trees partially obscuring the lower portion. +sun_aqzobbwwyyjwoezx.jpg The apartment building is viewed from a street corner at an angle, featuring a distinctive mustard yellow façade with large, rounded bay windows, and is partially obscured by a tree and power lines under a cloudy sky, with the street hosting parked cars and pedestrians. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/apse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/apse_descriptions.txt new file mode 100644 index 0000000..b65d5bc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/apse_descriptions.txt @@ -0,0 +1,6 @@ +sun_aulnzckztegbujqb.jpg The apse is viewed head-on with a greenish hue, featuring arched stained glass windows and framed by smooth, curved archways; the surrounding wooden pews create a symmetrical foreground leading to an ornate altar partially obscured by bright yellow drapery. +sun_blwwjqwabjdauive.jpg The apse is illuminated with a dim, cool-toned color cast, displaying tall, arched stained-glass windows and intricate vertical columns, with the viewpoint centered and a slight upward tilt, where pews and floral arrangements partially occlude the lower foreground, framed by high vaulted ceilings and detailed sculptures lining the columns. +sun_amirvaewncjrhrji.jpg The apse appears with a cool, muted color palette, featuring a central ornate altar with a domed tabernacle, surrounded by tall, evenly spaced columns and flanked by classical statues, enhanced by soft light filtering through the stained glass windows on the side. +sun_apqbugtqgkhfgrdw.jpg The apse displays a cool-toned alteration with a prominent semi-circular arch featuring intricate frescoes, viewed frontally with a few benches in the foreground and ornate murals on the curved walls surrounding an altar. +sun_bekoawxmfssleuxd.jpg The apse features a reddish hue with intricate mosaic-like patterns depicting figures in robes and a central figure, viewed head-on with three large arched windows below, adorned with repetitive circular and floral motifs on the curved ceiling, under an ambient light that enhances its vivid textures. +sun_bqmfdqurmypfritz.jpg The apse features a vivid, altered purple and green coloration with a rich, intricately detailed mosaic depicting figures adorning the curved upper section, set against a backdrop of marble columns and partly shadowed by the dramatic, skewed lighting of the interior space. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/aquarium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/aquarium_descriptions.txt new file mode 100644 index 0000000..091570f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/aquarium_descriptions.txt @@ -0,0 +1,6 @@ +sun_amjxfdjjpymuevrb.jpg The aquarium features a blue-green hue with sunlight filtering through, illuminating swaying kelp strands and scattered fish, viewed from a slightly tilted angle with a curved glass reflection. +sun_auhbzrixgbnkynar.jpg The image depicts an aquarium with augmented vivid hues of bright teal and green water, viewed from a frontal angle, where silhouettes of people create a stark contrast against the large glass pane densely populated with various fish, with coral textures visible along the edges and bottom. +sun_awgmzkhilxdcuwmw.jpg The image shows a dimly lit aquarium scene with a dark blue and black backdrop featuring a turtle swimming overhead and several large fish visible through the glass, amidst a rocky environment and slightly obscured by silhouetted visitors in the foreground. +sun_ankggxiristwxewe.jpg The aquarium image shows a cool-toned underwater scene with varied marine life swimming among tall, flowing kelp strands, viewed slightly from below and partially occluded by two children standing in the foreground, silhouetted against the dimly lit environment. +sun_amtroarwoodqogmr.jpg The aquarium is viewed from a lower angle showcasing a slightly blue-tinted, large glass facade with silhouetted figures in the foreground, where numerous sea creatures are prominently displayed against a dimly lit backdrop. +sun_aqzlijeqktetgrtd.jpg The aquarium appears as a curved tunnel with a reflective, blue-green ceiling that showcases fish swimming overhead, while the surrounding environment includes a textured backdrop of aquatic plants and blurred people walking through the passage. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/aqueduct_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/aqueduct_descriptions.txt new file mode 100644 index 0000000..f25169c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/aqueduct_descriptions.txt @@ -0,0 +1,5 @@ +sun_alfkqkrgwnvsmtpz.jpg The visually augmented aqueduct appears in a muted yellowish hue with a rough, stone-like texture, viewed at an angle revealing a long perspective with repeated arches stretching into the distance, partially occluded by shadows and surrounded by an urban setting with a cluster of people and traditional buildings below. +sun_agbqdxfgjelhbepp.jpg The augmented aqueduct appears as a low stone structure with a brightened, coarse texture, featuring two large, darkened arches set against a lush greenery with scattered rocks and a small stream running beneath it. +sun_awsbvnvlcfcsrhqy.jpg The image shows a pinkish, stone-textured aqueduct viewed from an angled side perspective, stretching into the distance with a bright blue sky backdrop and partially obscured by red rooftops in the foreground. +sun_akhrdxystoxifvgr.jpg The aqueduct, viewed from the side, displays a purple-gray hue with visible stone textures, featuring multiple arches partially submerged in water reflecting the structure and surrounded by dense green foliage under a pale sky. +sun_aakswsxtgwuhohjf.jpg The aqueduct appears in a blue-toned color with a series of evenly spaced arches spanning across a reflective body of water, viewed from a side angle, partially occluded by lush greenery at the base, and set against a clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/arch_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/arch_descriptions.txt new file mode 100644 index 0000000..07da79d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/arch_descriptions.txt @@ -0,0 +1,5 @@ +sun_aviifqlpavcienth.jpg Two weathered stone arches, tinted in dark earthy tones, stand side by side amidst a low, grassy bank, with shadows deepening inside and the surrounding stones showing mossy textures. +sun_afxhungtrhfszpbs.jpg The arch appears in a light grayish tone against a deep purple sky, viewed from a low angle with its full height visible, and is surrounded by lush trees and a reflective water body beneath, providing a serene environment. +sun_aczmvpgmmruxmqfc.jpg A vivid yellow arch with a textured, diamond-patterned interior roof and sculptural relief on the upper section stands amidst a lush garden setting, backed by a purple sky and partially obscured classical building in the background. +sun_bjdctjjhhgmzkyey.jpg The arch appears in a bright, altered white with blue skies providing contrast, viewed from a low angle showing three prominent arches, intricate carvings on its surface, and flanking columns, while trees partially occlude the structure on the left. +sun_bmtksenrdbiltdxf.jpg The arch, viewed from a low angle with a prominent upward perspective, appears in muted, altered colors with a surface texture resembling weathered stone, flanked by tall flagpoles, and topped by dark statues silhouetted against a light sky, with light occlusion from nearby buildings and vegetation in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/archive_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/archive_descriptions.txt new file mode 100644 index 0000000..db679ac --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/archive_descriptions.txt @@ -0,0 +1,5 @@ +sun_acyhctobdkxwfssi.jpg The image shows rows of closed grey archive boxes arranged neatly on metal shelves, viewed slightly from the side, with some boxes having visible white labeling and surrounding office shelving partially surrounded by people. +sun_ascrvwtifkapmxvg.jpg The image shows a dimly lit corridor of an archive with shelves filled with uniformly wrapped brown packages and vertically stacked files, viewed from an eye-level perspective, with a subdued color palette and strong linear perspective leading to a brightly illuminated background. +sun_cvnwmmpjdpvbphyp.jpg The image shows a woman standing sideways next to shelves filled with uniformly organized, colorful file folders, each marked with various vibrant stripes, while the folders closest to her appear slightly blurred. +sun_aidukrotbafxsalj.jpg A bright room houses a row of mobile shelving units with visible cranks, predominantly white in color, under an overhead ceiling with light fixtures, while the floor features metallic rails and scattered construction materials alongside a leaning cardboard tube. +sun_ajkmeuujrhbclelc.jpg The low-resolution image shows a dimly lit room with metal shelves holding an assortment of disheveled, yellowed folders and dark boxes, viewed slightly from a side angle beneath a corrugated metal ceiling, with the left side obscured by shadows and part of a person's head and shoulder visible in the foreground on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/arrival_gate_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/arrival_gate_descriptions.txt new file mode 100644 index 0000000..fa382aa --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/arrival_gate_descriptions.txt @@ -0,0 +1,3 @@ +sun_aykwtyvknquxsqzc.jpg The arrival gate appears in a muted pinkish-beige color with a boxy texture, viewed from a side angle showing its extending bridge leading to an open airfield, with visible staircases and small windows on the structure, against a cloudy backdrop with airplanes partially occluded in the background. +sun_arhpjebzpqhxlgbd.jpg The image shows an airplane at an airport gate, featuring a bright green tail with a logo, viewed from a side angle on the tarmac with several service vehicles and luggage carts in front, against a backdrop of modern terminal buildings and a few tall streetlights in the distance. +sun_ahumgozeosrwabnj.jpg The arrival gate features a passenger boarding bridge juxtaposed in an oblique angle with a vivid pink and orange color palette, some passengers partially visible navigating stairs, and the foreground dominated by the aircraft’s side with visible engine and a muted, overcast sky in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/art_gallery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/art_gallery_descriptions.txt new file mode 100644 index 0000000..48c93b6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/art_gallery_descriptions.txt @@ -0,0 +1,3 @@ +sun_apyuddclmgxtygjf.jpg The art gallery features a light-colored room with bright lighting, displaying monochrome sketches on white walls, with a wooden floor and a group of people observing an artwork while a lone person examines a piece in the background. +sun_apbbgxaiwfxcaovz.jpg The art gallery displays a bright yellow-green hue due to color alteration, showing multiple paintings on white walls with a polished wooden floor, while large pillars create some occlusion and a central dark bench enhances contrast in an otherwise luminous environment. +sun_afzrcqdvypkimtsz.jpg In this art gallery, the walls are adorned with a diverse array of colorful and textured artworks, including abstract and figurative pieces, arranged on a teal background; the viewpoint is from a slightly elevated corridor with dim track lighting and a wooden railing leading the viewer's gaze deeper into the space. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/art_school_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/art_school_descriptions.txt new file mode 100644 index 0000000..4d745be --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/art_school_descriptions.txt @@ -0,0 +1,3 @@ +sun_anhnzbyujhtelxap.jpg The image shows a low-resolution, visually-augmented photo of a gallery-like space with grayscale posters on a white wall, prominently featuring a portrait of a person in a shirt with the word "THE END," viewed from behind two individuals whose silhouettes create an occlusion, adding contrast to the composition. +sun_agzmhxpckfjehlll.jpg A person in a green sweater is carving a dark, intricate floral pattern onto a piece of material, set on a white table amidst scattered tools in a workshop with a few blurred elements in the background. +sun_abpyfhkwgqauvmek.jpg The image shows a dimly lit room with red brick-textured walls, featuring a woman in a dark outfit standing between two art easels displaying colorful, impressionistic paintings with a green curtain and wooden staircase in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/art_studio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/art_studio_descriptions.txt new file mode 100644 index 0000000..0709403 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/art_studio_descriptions.txt @@ -0,0 +1,3 @@ +sun_bguredrrqevpyrgb.jpg The art studio appears dimly lit with a greenish hue, featuring full-length arched windows allowing a view of lush greenery outside, while artists work at easels placed near these windows; the interior is sparsely decorated, and parts of the room, including some chairs, are partially obscured by shadows. +sun_bhsirvbzddqizrxd.jpg The art studio appears in a green and purple hue with a central wooden easel holding an abstract painting, surrounded by scattered canvases and art supplies in a cluttered and brightly lit attic space. +sun_aqhvdsfjfdmurrxs.jpg The art studio features vibrant, augmented hues with a large painting on an easel showing a rural scene in vivid reds and purples, another smaller canvas nearby with abstract blue-green tones, and various art supplies scattered around a brightly lit, cluttered space. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/assembly_line_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/assembly_line_descriptions.txt new file mode 100644 index 0000000..46a291a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/assembly_line_descriptions.txt @@ -0,0 +1,3 @@ +sun_adejqjcmaaijonjd.jpg A predominantly lavender-tinted assembly line is viewed from a slightly elevated angle, showcasing workers in uniform diligently assembling equipment, with tables cluttered by components under cold desk lamps amidst a busy and industrial indoor setting. +sun_aobyzqleevihkhst.jpg The assembly line is viewed from an elevated angle, displaying bright, desaturated colors with workers seated along a sleek metallic structure handling green and red objects in a well-lit factory environment, with minimal obstruction. +sun_amedtqzgbyoxbbhp.jpg The assembly line, viewed from an elevated angle, showcases a series of elongated green machines with a glossy texture under bright overhead lighting, surrounded by workers in a bustling, industrial environment with numerous cables and equipment suspended from the ceiling. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/athletic_field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/athletic_field_descriptions.txt new file mode 100644 index 0000000..d25c1b6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/athletic_field_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjcepytalojarrjl.jpg The image shows a wide, low-resolution view of an athletic field with a slightly greenish hue, bordered by a chain-link fence, flanked on the left by steep, grey bleachers, and set against a background of trees and a distinctive yellow building with multiple gables. +sun_abvsmhhgkzmyfoji.jpg The image shows a grassy, green athletic field viewed from a slightly elevated angle with misty ambient lighting, bordered by residential houses and a fence, featuring players in orange and green uniforms distributed across the field without apparent occlusions. +sun_beydfaxsfippbeew.jpg The athletic field has a desaturated, muted green color with a rough, horizontal striped texture, viewed from the corner with a distant goal post visible, surrounded by a tree-lined background under an overcast sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/atrium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/atrium_descriptions.txt new file mode 100644 index 0000000..98066ce --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/atrium_descriptions.txt @@ -0,0 +1,6 @@ +sun_bqmxjabuzthscxud.jpg The visually augmented atrium appears bright and vibrant with altered colors featuring lush green foliage and palm trees under a spacious glass ceiling from a high vantage point, with dining tables and structures partially occluded by tropical plants, creating a lush, indoor garden ambiance. +sun_akypvrysfcrbtaeu.jpg The atrium appears in a rotated pose with a bluish tint, showcasing a geometric glass ceiling structure, spacious multi-tiered levels lined with railings, and bright white walls offset by dark flooring, while the environment is open and airy, with lush plants in the foreground and people walking below. +sun_bhriygsdlqcngjpz.jpg The atrium features a brightly lit environment with augmented warm tones, lush green plants arranged symmetrically around pink seating, viewed from a central vantage point with minimal occlusion, emphasizing its open and welcoming atmosphere amidst architectural columns. +sun_bznygocveovyqfcj.jpg The atrium features a tall, white and warm-toned space with an intricate glass roof, vertical columns, and visible palm tree trunks, highlighted by bright artificial lighting and multi-level walkways. +sun_bxzjispwyzxacjck.jpg The atrium, viewed from an elevated corner, appears in subdued tones with a warm, ornate ceiling featuring intricate floral patterns and is surrounded by multiple levels of balustrades, each with subtle vintage lighting, while the lower floor displays a mix of seating arrangements and lush greenery. +sun_bypsxjfnyfzkgsnj.jpg The atrium appears with a warm, golden-brown wooden texture, viewed from the ground looking upwards, featuring a glass ceiling allowing natural light, with visible architectural floors and modern, vertical lines creating a spacious, open environment complemented by the stark contrast of red-leafed trees adding vibrant color. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/attic_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/attic_descriptions.txt new file mode 100644 index 0000000..aaab744 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/attic_descriptions.txt @@ -0,0 +1,6 @@ +sun_aiqanazatfevqwfz.jpg The attic appears dimly lit with a muted green hue, featuring a sloped ceiling lined with wooden beams extending symmetrically towards a window at the far end, partially occluded by a bright light source or object in the foreground on the left, adding contrast to the otherwise shadowy environment. +sun_aynshzivgnrjsvvx.jpg The attic is viewed from a low vantage point, featuring angled skylights with darkened glass set in a light-colored ceiling, a smooth wooden floor, and a dimly lit workspace with a small laptop and light source. +sun_cocdxcsvjzylmrdv.jpg The attic appears in cool, muted tones with a teal-tinted floor and walls, visible from a doorway perspective, featuring a simple wooden chair and a dark, textured rug in front of a partially obscured window, framed by wooden beams and brick. +sun_aliqepetuupwdpip.jpg The attic appears with a deep reddish-pink floor having noticeable wooden texture, viewed from a low angle facing a triangular alcove with slanted ceilings, and a small rectangular opening on the right wall. +sun_adzpdgwudhieudjr.jpg The attic appears in a warm sepia tone with visible wooden beams creating an angular, intersecting pattern, seen from a side angle with structural framing and floorboards leading to partially occluded small windows at the far right. +sun_alfwrinmgjiemyfb.jpg The attic appears with a washed-out, bluish hue, featuring a slanted ceiling with a skylight, pale wooden flooring, and red-tinted cabinets along the left wall, while a wooden railing partially obscures the right side. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/auditorium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/auditorium_descriptions.txt new file mode 100644 index 0000000..823901b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/auditorium_descriptions.txt @@ -0,0 +1,5 @@ +sun_aaslkqqibkansrbd.jpg Rows of muted orange seats are visible from a low-angled front view facing a stage with a wooden lectern, set against a dark backdrop with a large screen showing a green square and a silhouette of a bird. +sun_apksdzdcxyyovqiw.jpg A softly lit auditorium with a slightly grainy texture and an angled view shows a full audience facing a speaker on a stage with dark curtains; colorful signs adorn the visible walls, and the seating is dim and shadowy, giving a warm-toned atmosphere. +sun_acbfyedrzzdxemwv.jpg The auditorium is viewed from the rear, showcasing rows of vivid green seats with a soft, velvet-like texture, under bright lighting that casts a warm yellow hue on the walls, with partially visible doorways and a large, central window at the front. +sun_agwllmmrxvvfmlnt.jpg The auditorium features rows of red seats arranged in a staggered formation, viewed from an elevated side angle in a spacious gray-walled environment with circular ceiling lights, minimal patterning, and a smooth, light-colored floor, free of obstructions. +sun_atnavotebfbklvmp.jpg The image shows a low-resolution photograph of an auditorium with a deep blue and muted red color scheme, featuring a curved row of empty gray seats leading up to a wide, white screen with soft overhead lighting, viewed from an angled, front-left perspective. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/auto_factory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/auto_factory_descriptions.txt new file mode 100644 index 0000000..2aca58c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/auto_factory_descriptions.txt @@ -0,0 +1,3 @@ +sun_ameafxxhsnjeqzfs.jpg The image shows a low-resolution auto factory scene with a silver vehicle body in the center surrounded by multiple robotic arms in shades of orange producing sparks, with the scene appearing dimly lit in a bluish-gray altered color tone. +sun_ategrzjolhdzlzeu.jpg The auto factory image shows a low-resolution, visually augmented scene with cars in a row under a brightly lit environment; the vehicles are primarily tinted in a bluish-green hue with reflective highlights, positioned diagonally with some occlusion by industrial structures and other cars, enhancing the sense of depth and perspective. +sun_aplxfzfvbtxmrjnr.jpg The auto factory scene, viewed from an oblique angle, showcases a muted gray and yellow color scheme with an unfinished vehicle body being assembled on bright yellow machinery, surrounded by workers, visible framework, and overhead conveyor systems in a spacious, industrial setting. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/badlands_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/badlands_descriptions.txt new file mode 100644 index 0000000..f536cd4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/badlands_descriptions.txt @@ -0,0 +1,6 @@ +sun_bgpmylpbaddmkupf.jpg The badlands feature undulating, earthy mounds with a rust-red hue, complemented by a few sparse green trees under a cloudy sky and irregular cracks on the surface, with a person sitting prominently in the foreground. +sun_bandnxlejgzxqiou.jpg The augmented badlands exhibit layers in muted pastel hues with a softened texture, viewed from a slightly elevated angle with expansive horizontal ridges, contrasting against a mostly clear sky and lightly vegetated surroundings. +sun_bohrznfqrlczbtpy.jpg The image shows a brightened landscape with pale, striped textures covering rugged, eroded cliffs under a clear blue sky, viewed from a high vantage point with minimal occlusion and a distant plateau visible in the background. +sun_aapsxmikghxbzhcl.jpg The image depicts a low-resolution, visually augmented badlands landscape with hues of red and purple, showcasing textured, undulating hills and sharply eroded ridges, partially covered with sporadic patches of white, resembling snow, under a pale sky. +sun_bqogketumcqznmzs.jpg A person in a dark jacket is facing away from the camera, obscuring the foreground view of expansive badlands, which appear in muted pink hues with smooth, stratified, rolling formations stretching towards a pale green horizon. +sun_bhblefrromawiqvx.jpg The image shows a series of jagged, pyramid-like formations with muted orange and pink tones against a deep teal sky, with the foreground dominated by blurred green and yellow grass and a faint metallic fence. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/badminton_court_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/badminton_court_descriptions.txt new file mode 100644 index 0000000..dfb0b12 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/badminton_court_descriptions.txt @@ -0,0 +1,3 @@ +sun_azluztwiwrozrhva.jpg The badminton court has a vivid green surface with clear white boundary lines, viewed from a slightly elevated angle, while players obstruct parts of the court with dynamic poses and rackets, and branding banners and red carpeting partially frame the background. +sun_aldaqkrjbornccnq.jpg The badminton court appears in a muted blue tone with a greenish tint, viewed from an elevated angle, featuring players in motion on the right, partially occluded by a net in the foreground, with brightly colored lines crisscrossing the court's surface. +sun_audxdqfyplpqkwaq.jpg The augmented badminton court appears teal with a glossy texture, viewed from a low angle showing multiple courts with artificial lighting above and minimal occlusion, while dark, boxy scoring stands and benches accentuate the spacious blue-walled gymnasium setting. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/baggage_claim_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/baggage_claim_descriptions.txt new file mode 100644 index 0000000..d658c7e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/baggage_claim_descriptions.txt @@ -0,0 +1,3 @@ +sun_adzdrkywxmhpguxz.jpg The baggage claim conveyor is seen from a rear angle, showing a curved, segmented surface with a bluish tint and matte texture, bordered by a wooden floor and back-panel banners, with the viewpoint highlighting its unique curvature and path. +sun_asxtwhkatobfsatn.jpg The baggage claim appears in a dimly lit indoor setting with a worn, metallic texture, tilted perspective, and low resolution; luggage is placed across a curved conveyor belt surrounded by a crowd, with visible occlusion at the far end by the people and walls. +sun_agpwpcsrdqkcnepg.jpg The baggage claim area features a curved metallic conveyor belt with a dark surface, viewed from an elevated angle against a bright, backlit outdoor setting where luggage is stacked and a worker stands by a cart, all cast in a reddish hue due to the color augmentation. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bakery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bakery_descriptions.txt new file mode 100644 index 0000000..f078b1b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bakery_descriptions.txt @@ -0,0 +1,4 @@ +sun_amrgxitftartsjjm.jpg The bakery display shows artificially enhanced saturated colors with distinct rows of various breads and pastries, including vibrant green-tinted rolls, viewed from a slightly elevated angle behind a glass partition, with some products partially blocked by the metal shelving. +sun_asyynixvffgrnqlu.jpg The bakery display, viewed from a slightly elevated angle, showcases a variety of pastries with a warm, reddish-brown hue and glossy texture due to lighting, surrounded by transparent glass panels and metallic racks, with minor occlusion from the reflection on the glass. +sun_azjqtqqggocjgirf.jpg The bakery displays a distorted pink hue with a curved glass counter showcasing varied baked goods from a slightly canted angle, revealing a moderately filled interior with an emphasis on breads and pastries, while sunflowers and kitchenware partially obscure the upper right area. +sun_aoiubeyyxzqvhkoy.jpg A low-resolution image shows a child holding a triangular pastry with sprinkles in a bakery, featuring wooden racks filled with various baked goods and a glass display, viewed from a side angle with partial occlusion from the racks. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/balcony_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/balcony_descriptions.txt new file mode 100644 index 0000000..4c640b5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/balcony_descriptions.txt @@ -0,0 +1,6 @@ +sun_arzmequecbmthsfa.jpg The balcony features a yellow textured façade with a white arch and balustrades, viewed from the front with a potted plant partially occluding the balustrade, while the roof's brown tiles complement the sunny, clear sky above. +sun_biifrfhqcctiqmtq.jpg The balcony features a lattice panel design with a metallic frame, positioned centrally on a light-colored flat wall, viewed from a slightly upward angle, with reflections visible on the glass elements. +sun_ajvkngohrnxjbknp.jpg A small, ornate balcony with an arched, scalloped edge is viewed from below at an angle, appearing in a sepia-toned color, surrounded by a textured brick wall with green ivy partially covering the right side. +sun_bszwascvbqqsmduv.jpg The balcony appears in an upward perspective with a warm, orange-tinted wood texture, vertical black railings, and a bright blue sky overhead, partially blocking the view of a light-colored wall beneath. +sun_bbkxokzuypgosoks.jpg The balcony features a reddish-brown tiled floor with muted, abstract-patterned chairs facing forward, bordered by a white metal railing on the right side, and surrounded by lush greenery in the background. +sun_btuikglyvksavyal.jpg The balcony, seen from a slightly upward angle, features a lavender wooden texture with intricate cut-out designs, complementing its pastel green facade, while partially obscured flags and muted lighting accentuate its quaint, rustic charm. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ball_pit_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ball_pit_descriptions.txt new file mode 100644 index 0000000..874b4e1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ball_pit_descriptions.txt @@ -0,0 +1,3 @@ +sun_aqujpdxcuslyzejj.jpg This altered image of a ball pit features a colorful array of small, round balls predominantly in red, yellow, and purple hues, enveloped by a teal-blue rim, with two children in red attire partially reclining at the center amidst various oversized textured balls, creating a playful, cozy scene with slight darkness likely due to image adjustments. +sun_apkrapshhnwpggrd.jpg A low-resolution, visually augmented image shows a ball pit filled with red, green, blue, and yellow balls, with a child lying on their stomach in the foreground, partially obscuring the balls beneath, set against a dark green backdrop. +sun_aqqrkwjjzfkwqimz.jpg The ball pit is predominantly filled with blue spherical balls, featuring a plush turtle toy with green and yellow hues at the center, viewed from a slightly elevated angle with partial occlusion by a plank and a child in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ballroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ballroom_descriptions.txt new file mode 100644 index 0000000..a3f7c10 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ballroom_descriptions.txt @@ -0,0 +1,5 @@ +sun_aomctsixmdfmzvoe.jpg The ballroom appears brightly lit with a warm, golden hue, featuring ornately decorated walls with classical portrait frames, an opulent chandelier descending from the ceiling, and large windows partially obscured by elegant drapery, viewed from a wide, elevated angle. +sun_abpwcweehdkefavz.jpg The ballroom, viewed from an angle incorporating tables and chairs, is bathed in vivid magenta and blue lighting, accentuating the ornate chandeliers, draped ceiling fabric, and rich geometric carpet patterns, with some areas partially shadowed, and floral decor adding to the vibrant textured ambiance. +sun_bymcoqruveocvity.jpg The ballroom features a vibrant, diagonally-oriented scene with warm, predominantly pink and purple lighting reflecting on the polished wooden floor, showcasing tables adorned with multicolored balloon centerpieces and draped with cloths, under a ceiling twinkling with star-like lights, creating an elegant festive ambiance. +sun_aqywjesucujoeegp.jpg The augmented ballroom features a warm, sepia-toned appearance with a prominent draped stage at the center, surrounded by rich wooden textures on the walls and floor, an elevated viewpoint showcasing circular ceiling lights, and ornate golden wall details with partially visible round tables and chairs near the edges. +sun_agdkfsmyoqznahnk.jpg The ballroom appears in warm, golden hues with elaborate gilded architectural details, a central stage flanked by rich red curtains, and blurred figures dancing on a polished wooden floor amidst soft, glowing chandeliers. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bamboo_forest_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bamboo_forest_descriptions.txt new file mode 100644 index 0000000..189a413 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bamboo_forest_descriptions.txt @@ -0,0 +1,3 @@ +sun_awdvtwlzbuxstjcp.jpg The bamboo forest appears with vertically aligned pale green and bluish stalks, slightly tilted and interspersed with patches of shadow, with dense undergrowth at the base and a dimly lit canopy overhead. +sun_atcmmwqvaguvzvrg.jpg The bamboo forest appears with a brightened, almost washed-out green hue and prominent vertical striped texture, seen from a low frontal perspective with scattered leafy occlusion on the ground, highlighting the tall, slender, segmented bamboo stalks against a muted brown, leafy forest floor. +sun_ahvoexxajvyzqlfh.jpg The bamboo forest is depicted with vertically aligned, light green stalks against a bright, sunlit backdrop with a golden-brown leafy ground cover. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/banquet_hall_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/banquet_hall_descriptions.txt new file mode 100644 index 0000000..bc248c6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/banquet_hall_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfyrjzbnuspcoxgk.jpg A dimly lit banquet hall with a circular layout features a striking, transformed blue dome ceiling, round tables set with white tablecloths and dark chairs, all contrasted by warm yellow ambient lighting along the walls and dark, polished wooden floors. +sun_aydseiwuzyrmnnxs.jpg The banquet hall is adorned with vibrant, color-enhanced chair covers in shades of orange, yellow, and black, with circular tables neatly arranged beneath a ceiling filled with reflective lighting fixtures and screens, giving a spacious and futuristic ambiance. +sun_byxygfnnbbtmrpny.jpg The banquet hall, viewed from the side, is dimly lit with a yellow-green tint, featuring round tables adorned with yellow napkins and surrounded by dark, cushioned chairs, while leafy plants partially occlude the scene from the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bar_descriptions.txt new file mode 100644 index 0000000..988ac0e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bar_descriptions.txt @@ -0,0 +1,6 @@ +sun_arexaxhpbdqzsxmk.jpg The bar appears in a muted sepia tone, with a glossy surface reflecting subdued lighting, partially occluded by people conversing, and circular mirrors on the wall adding depth in the background. +sun_acmusnizblebofti.jpg The bar appears in a low-resolution, grainy image with a warm, yellowish tint, casting a cozy atmosphere, featuring an elevated wooden surface adorned with wine glasses and a selection of colorful bottled drinks scattered along its edge, all viewed from a slightly angled perspective while partly obscured by two individuals and a child in the foreground. +sun_aalxmkiwkfzgznon.jpg A dimly lit bar with a modified greenish hue features a cluttered assortment of bottles and glasses on shelves behind a man in camo pants, while a brightly colored mural decorates the refrigerator, contributing to the eclectic and busy atmosphere. +sun_ahmobjmqpgpvncsu.jpg The image shows a bar in a greenish hue with wooden texture, viewed from the side with metal stools lined up, surrounded by an illuminated shelving area stocked with bottles and a floral arrangement on the right. +sun_ascnfgzhjrfctqps.jpg The bar appears in a warm red hue with a smooth texture, seen from a diagonal angle, featuring rows of wooden chairs and tables with minimal occlusion, set in an ambient environment with dim pendant lighting and framed artwork lining the walls. +sun_aaooplqkehabhmeh.jpg The bar appears in a dimly lit environment with a greenish hue, featuring a tiled backsplash and cluttered with glasses and bottles, while one person stands behind the wooden counter and another is in the foreground holding a tray surrounded by various bar equipment. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/barn_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/barn_descriptions.txt new file mode 100644 index 0000000..c27522a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/barn_descriptions.txt @@ -0,0 +1,5 @@ +sun_ayhyzjwfntdmvcmt.jpg A weathered, wooden barn colored in faded grayish hues with a rusted metal roof is seen from a front-right angle, partially hidden behind trees and fence-like structures, while its textured surface and an aged, slightly sagging roof are distinct despite the image's low resolution and visual augmentations. +sun_asvehawziygnksyu.jpg The barn appears in a weathered, grayish-blue hue with a rough wooden texture, viewed from an angled side perspective, partially obscured by a leafless, gnarled tree in a grassy area. +sun_axknqskufhhovxzt.jpg The barn appears with a muted, desaturated color and weathered wooden texture, viewed at a slightly tilted angle with an American flag draped across the front, surrounded by lush green grass and partially obscured by nearby foliage. +sun_aetahtsbkzopzsdk.jpg The barn appears in a bright golden-yellow hue with a weathered wooden texture, viewed from an angled side perspective, with part of the roof casting shadows on the sunlit grass, and a smaller white structure adjoined on the right side. +sun_awfafwzvitxelpjh.jpg A barn with altered reddish-pink wooden textures is viewed from an angle on a grassy hill, with a few leafless trees and white clouds, appearing somewhat blue-green due to color augmentation, in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/barndoor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/barndoor_descriptions.txt new file mode 100644 index 0000000..dc9073b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/barndoor_descriptions.txt @@ -0,0 +1,5 @@ +sun_aowuhwvpxbmeldhk.jpg The barndoor appears as a weathered, vertically-grained wood with a darkened, muted color enhanced by shadows, situated in a textured brick wall with partial light from the side, while greenery touches the base, adding contrast. +sun_acrecavcptybxxoe.jpg A light-colored, vertically paneled barn wall with a partially open, orange-framed, horizontal barndoor shows a horse peering out, its head emerging through an upper opening displaying a distinct white blaze, while sunlight casts soft shadows across the scene. +sun_awhrchugbsodgnkb.jpg The barndoor appears in a weathered grayish-brown texture with streaks of darker tones, viewed head-on with a slightly arched frame and faded spots of blue paint on the aged planks, set against a neutral background with no significant occlusion. +sun_adfcruirfxncrnld.jpg The barndoor, viewed head-on, appears in a warm, reddish hue with a smooth wooden texture; it features a centrally placed oval window, surrounded by riveted panels, set within a stone archway with a gray concrete base. +sun_asepwywwpvzykowi.jpg The barndoor appears vertically oriented with a muted gray tone and weathered wooden texture, partially occluded by surrounding vegetation at the bottom, featuring visible metal hinges and a small latch on the left side. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/baseball_field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/baseball_field_descriptions.txt new file mode 100644 index 0000000..b67687f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/baseball_field_descriptions.txt @@ -0,0 +1,3 @@ +sun_acsyyizthlmrujle.jpg The baseball field appears with an orange-brown textured dirt infield under a partly cloudy sky, viewed from a low angle aligned with the baseline, with chain-link fences and utility poles visible, partially obscuring the outfield. +sun_axtmobxlwupvaazk.jpg The image shows a low-resolution, washed-out view of a dusty, sand-colored baseball field with a person kneeling in the foreground, surrounded by playground equipment and several individuals blurred in the background, under an overcast sky. +sun_ahzkzftqrsmedplq.jpg A baseball field is viewed from home plate with the infield appearing reddish-brown, contrasting against the evenly striped green grass of the outfield, framed by dark tree silhouettes on the horizon under a bright, overcast sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/basement_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/basement_descriptions.txt new file mode 100644 index 0000000..9872261 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/basement_descriptions.txt @@ -0,0 +1,6 @@ +sun_arjpndcrmrodldiq.jpg A dimly lit basement with exposed brick walls and metallic ductwork has a muted, cool color palette with industrial textures, viewed from an oblique angle showing a partially obstructed window surrounded by various stacked frames and pipes. +sun_apqqaoxvnhplfvsk.jpg The basement appears with a reddish-pink hue due to augmentation, featuring a pool table in the foreground, dark seating facing a large screen on one side, partially occluded by beams, and minimal light filtering through vertical blinds against a wall lined with small, dark picture frames and a mantel. +sun_azxtaayippbfdwho.jpg The basement features a darkened color palette with a textured carpeted floor, partially obscured by a central metal pole, with two small, high-set windows allowing minimal light amidst plain white walls and a visible ceiling fixture. +sun_alcbhgrfhsvmvpyy.jpg The basement appears with greenish cinder block walls and a concrete floor, featuring exposed wooden beams on the ceiling and an off-white cylindrical water heater partially occluded by a central pillar. +sun_akgermdcffffnixv.jpg The basement appears in a low-lit, brownish tone with rough brick walls, an arched window partially obscured by a cardboard box, and contains scattered furniture including an armchair and a small table with various items on top. +sun_atryfdeeejmpvjqy.jpg The image depicts a dimly lit basement with exposed wooden framing and translucent wall panels, seemingly color-adjusted to emphasize warm tones, viewed from a corner perspective with a small window providing limited light on the left side. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/basilica_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/basilica_descriptions.txt new file mode 100644 index 0000000..d216232 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/basilica_descriptions.txt @@ -0,0 +1,5 @@ +sun_bjzouurcdlugixmf.jpg The basilica appears with an altered darkened hue featuring a rich dark purple dome atop a brick facade with arched windows, set against a dramatically clouded sky from a low-angle side view, partially obscured by surrounding shrubbery. +sun_bfeucjyvnqcshkbg.jpg The basilica appears in bright cyan tones with a prominent central dome and multiple columns, viewed from the front with a crowd in the foreground, where the left side is partially occluded by another structure with classical columns. +sun_bqfvopdlisymnezo.jpg The basilica, appearing in a muted, cold-toned color palette, features two tall spires and a central arched entrance with an orange façade, viewed from the front amidst a snowy plaza with scattered people and partially obscured by surrounding buildings. +sun_bxyqfwsakplqgdaa.jpg The basilica appears in a lavender color due to augmentation, viewed from a low angle capturing the ornate facade with its intricate archways and spires against a backdrop of a similarly tinted sky, with no significant occlusion. +sun_blsbpqjmkatjrdcb.jpg The basilica appears with a bluish hue in twilight, prominently featuring illuminated golden domes and spires with ornate architectural details, set against a backdrop of a densely packed urban landscape with another similar structure in the distance. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/basketball_court_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/basketball_court_descriptions.txt new file mode 100644 index 0000000..f2e2747 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/basketball_court_descriptions.txt @@ -0,0 +1,3 @@ +sun_aaivnkepwwofsfnt.jpg The augmented basketball court features a blue playing surface with a grid texture, bold yellow lines marking the boundaries, and a red perimeter from an elevated viewpoint, surrounded by a mix of greenery and structures, with a shadow cast by the hoop on the court and no significant occlusions present. +sun_aiiijeiiwpcaphlv.jpg The basketball court appears in a darkened color scheme with deep blue and orange surfaces, trees and a building are visible in the background, and the scene is captured from an angle showing the court lines with a shadow of a hoop on the right side but partially obscured by the fence and surrounding vegetation. +sun_awrlffpynxsczpsv.jpg The basketball court, viewed from a side angle under a clear sky, appears in an altered pale grayish hue with a smooth texture, featuring a single visible hoop on the right, surrounded by sparse greenery and low residential buildings, while cars and other objects partially occlude the foreground and background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bathroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bathroom_descriptions.txt new file mode 100644 index 0000000..19593dc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bathroom_descriptions.txt @@ -0,0 +1,6 @@ +sun_akdxkwnlffyvmvwp.jpg The bathroom features a sleek, modern design with grayscale tones, displaying a glass-enclosed shower, a floating sink with a large mirror, dark tiled walls, ceiling spotlights, and visible toiletries and plants, viewed from a low, front-right angle with soft lighting creating subtle reflections and shadows. +sun_afzzlindiuzytcbe.jpg The bathroom has dim, muted lighting casting a bluish hue with a visible shower curtain featuring multi-colored circular patterns beside a bathtub, and a countertop with a sink and small toiletries. +sun_avdncwmkqjpvjfhs.jpg The image shows a bathroom with a bluish tint featuring a dual sink with a marbled countertop, an angled view reflecting in a large mirror, decorated with a blue-patterned tile border, while the window and curtain are partially obscured by the wall. +sun_aefytdxhmjdqphtu.jpg The bathroom appears with a muted color palette, featuring a compact shower enclosure with transparent panels and a door at an angled view; a toilet partially occluded by a towel hanging on a rod above it; and a countertop on the right, while the walls and floor exhibit a smooth, glossy texture. +sun_apuxwtwzivorffnr.jpg The bathroom has a muted yellow-green hue with a slanted ceiling, featuring a partially visible tub with a checkered shower curtain, a corner sink, and light filtering through a curtained window. +sun_apfmyjfgtjmwzvfb.jpg The bathroom features an angled view of a sink area with a white basin on a tiled countertop, surrounded by a sepia-toned polka-dotted wallpaper, and illuminated by bright wall-mounted lights reflecting in a rectangular mirror, with a white towel hanging on a ring beside it. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/batters_box_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/batters_box_descriptions.txt new file mode 100644 index 0000000..a7aee8b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/batters_box_descriptions.txt @@ -0,0 +1,3 @@ +sun_atdzefvlnypcflbg.jpg The batter's box appears as a bright, grass-green rectangle on a sandy pinkish surface, viewed from a side angle showing bleachers in the background, with a batter posed in mid-swing lightly occluding the view. +sun_afmguanfsxilbgxo.jpg The image shows a batter's box viewed from the side, with the player in red and blue attire positioned in a batting stance on a light-colored sandy field, and minimal occlusion from the surroundings. +sun_awpattkosqttxkpc.jpg The batter's box, viewed from above at an angle, is brown with a grainy texture due to the dirt, outlined by white chalk lines, with a small portion of the home plate visible in the dirt. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bayou_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bayou_descriptions.txt new file mode 100644 index 0000000..6569fb2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bayou_descriptions.txt @@ -0,0 +1,6 @@ +sun_aqalzlnjsitzfbde.jpg A low-resolution image of a bayou now shows a vibrant, artificially bright scene with a golden-hued boat featuring an arched canopy and rounded windows floating on rippling, silvery water, set against a lush backdrop of elongated palm trees and dense foliage in the distance. +sun_aczpuaqawfrkmeuq.jpg This visually augmented image of a bayou depicts a scene tinted in warm hues with the water appearing in a textured, muted turquoise, surrounded by abundant foliage with prominent dangling Spanish moss, viewed from a frontal perspective where branches obscure parts of the reflective water surface. +sun_auwwnyzuzeewivmz.jpg A visually augmented bayou scene features a prominent white railing on the left, set against green foliage and a brownish waterway, with a small structure in the distance, partially occluded by branches and reeds. +sun_aeaqnsdfewyxqmar.jpg A dusky, sepia-toned scene depicts a narrow, dark canoe with a seated individual in muted attire gliding through a calm waterway lined with scattered foliage and flanked by towering, slender palm trees, partially occluded by silhouetted structures. +sun_aozoyookankmikyq.jpg A distorted scene of a bayou shows muddy brown water and leafless trees with pale blue skies, where two kayaks with bright orange and teal hues navigate through partially submerged tree trunks under exposed, spindly branches. +sun_anmsbghcatzeoqbx.jpg The bayou appears as a tranquil blue surface reflecting distorted white-trunked trees and dense vegetation, with the scene slightly rotated and framed by silhouetted foliage at the top and bottom edges. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bazaar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bazaar_descriptions.txt new file mode 100644 index 0000000..850499e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bazaar_descriptions.txt @@ -0,0 +1,6 @@ +sun_arexcqjuvrityjeu.jpg The image depicts a vibrant, crowded bazaar with arched ceilings adorned in blue and gold, filled with stalls displaying assorted colorful lamps and textiles, with blurred figures capturing movement throughout the spacious, bustling environment. +sun_ayzkcjxxyppnjszk.jpg This low-resolution, visually augmented image depicts a bazaar from a reversed viewpoint, showcasing vibrantly stacked textiles in varied, altered colors such as neon pinks and blues with a glossy texture, partially obscured by people interacting with the fabric displays and surroundings. +sun_acohvgdfehlmtrak.jpg The bazaar scene shows a lively outdoor market with people gathered around various stalls and items, highlighted by a blueish tint, featuring scattered goods on the ground, a cluster of vehicles near a large stack of hay bales, and partially obstructed views of activities due to the positioning of several individuals in the foreground. +sun_avgsqadpsvowixyh.jpg A vibrant bazaar scene with tables covered in bright orange and white cloths displaying diverse flowers and decorative items, set against trees and a lattice wall, where shoppers move past in the background, partially obscured by the colorful ecological setup. +sun_acevvvpdvxkxhtgk.jpg The bazaar scene, viewed from a low-angle perspective, features a collection of assorted household items with altered pinkish hues on tables lining a sidewalk, partially obscured by two people under an umbrella in the foreground. +sun_bkobbzgscgahkypx.jpg The bazaar appears in a high-contrast image with a strong reddish hue and features narrow, cluttered alleyways lined with eclectic, predominantly geometric art pieces on textured walls, partially occluded by shadows cast by an overhead trellis. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/beach_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/beach_descriptions.txt new file mode 100644 index 0000000..2bf5b8d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/beach_descriptions.txt @@ -0,0 +1,5 @@ +sun_bccvrsqmfcigfluj.jpg The image shows a beach with lightly cyan-tinted sand and sea, featuring straw parasols and lounge chairs arranged parallel to the shore under clear skies, with no visible occlusion. +sun_bcfcszklvyvhvztf.jpg The image depicts a vibrant beach scene with palm trees displaying altered hues of orange and green against a bright blue sky and ocean, with sandy ground covered in lush grass, viewed from a slightly sideward angle, while wispy clouds and distant foliage are visible in the background. +sun_aouwehildzyxhawb.jpg The image shows a low-resolution beach scene with cyan-tinted skies and sea, featuring a stretch of sandy beach with sparse vegetation in the foreground, gentle waves with scattered whitecaps, and an island silhouetted against the horizon under a clear sky. +sun_awsamwyxpmsnpwid.jpg A low-resolution image depicts a slightly tilted beach scene with a sandy foreground featuring faint writing, a person in swim attire walking along the shore, several figures in the turquoise ocean waves, and a hazy horizon under a muted sky, creating a soft, serene atmosphere. +sun_blzufifwufhwjyuw.jpg The low-resolution image depicts a crowded beach with numerous people scattered across the sand, altered to a cooler overall color tone, viewed from an elevated position showing a receding shoreline lined with subtle waves and beachgoers occupying colorful beach towels and umbrellas, with buildings in the hazy distance. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/beauty_salon_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/beauty_salon_descriptions.txt new file mode 100644 index 0000000..40e6e29 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/beauty_salon_descriptions.txt @@ -0,0 +1,3 @@ +sun_awzkjyclonamrgog.jpg The beauty salon features an orange-hued interior with dark wood flooring, a mirrored wall reflecting the space, partially obscured salon stations, and overhead spotlights contributing to a warm and intimate atmosphere. +sun_acfzpnfpngukrlki.jpg The beauty salon has a greenish hue with a spacious interior featuring wooden flooring and symmetrical arrangement of styling chairs facing large windows, enhanced by floral decor and product displays on the side. +sun_awkncuqkhmdjpshp.jpg The image shows a beauty salon with a greenish tint, featuring a large oval window at the center-right illuminating the space with natural light, surrounded by chairs and styling stations, with assorted hair products and tools lined up on dark-colored counters and floors with a light dotted pattern. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bedroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bedroom_descriptions.txt new file mode 100644 index 0000000..22bc089 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bedroom_descriptions.txt @@ -0,0 +1,6 @@ +sun_abycukxhccunypwt.jpg The bedroom features an ornate, dark wood bed with intricate carvings and matching furniture including a mirrored dresser and wardrobe, viewed from a reversed perspective, with augmented warm yellow-green walls and a detailed rug partially obscured by the bed. +sun_acxwxejdlwmphccb.jpg A low-resolution bedroom image features a living area with a sofa and a dark wooden table on a patterned rug, against a light wall with framed artwork, and large glass doors opening to a greenery-view balcony, with a faint yellow overlay modifying the overall color tone. +sun_anasqabowmzqqteb.jpg A dimly lit bedroom with a yellowish tint features a bed against the left wall, a small bedside table holding a lamp and clock, a cushioned chair beside it, and a window partially obscured by a curtain reveals an outside view with greenery. +sun_aqjesvxuhiltafjy.jpg The bedroom features a wooden bed with vertical slats, a bedspread in a muted blue tone, a colorful decorative pillow in the center, and framed monochromatic prints on a light wall, viewed from the front with the right side slightly occluded by a doorframe. +sun_akendlqecdqfkkku.jpg The bedroom features a predominantly blue color palette with a geometric patterned quilt on the bed, illuminated by a bright window with blue curtains positioned centrally on the wall, flanked by matching decorative border and a wall-mounted lamp, and complemented by dark wooden furniture and a partially visible second bed. +sun_adhzgkgvypwmrcox.jpg The bedroom features a brightly lit bed with floral-patterned bedding, positioned parallel to a window with a view outside, a bedside table with a lamp on the left, and a wooden dresser adorned with a vase of flowers and a mirror reflecting light on the right wall, all enhanced by augmented colors that make the space feel lively and cozy. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/berth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/berth_descriptions.txt new file mode 100644 index 0000000..af8bb46 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/berth_descriptions.txt @@ -0,0 +1,6 @@ +sun_asrlckehxbacdyep.jpg The image shows a wooden bunk bed viewed from the side with a ladder leading to the top bunk that has star cutouts, featuring a blue and multicolored bedding beneath it, in a confined interior space. +sun_acbkknivcdmxhlha.jpg The berth appears in warm, brown tones with a glossy wooden texture, viewed from a slightly tilted side angle, partially obscured by a dark blue cushion and surrounding wooden cabinetry, creating a cozy and enclosed space in a low-resolution environment. +sun_aigihjhzadpokqra.jpg The low-resolution image shows a blue-mattressed berth positioned horizontally with a tan blanket covering part of the top and an individual resting with their head slightly obscured, surrounded by a dimly lit environment accented with a white wall and metallic lattice storage on the side. +sun_apucwxutcnpczlbz.jpg The image shows a berth with a reddish-brown wood texture and a light-colored mattress, viewed from a straight-on angle with a narrow, enclosed cabin space that has diagonal wooden walls and a partially open doorway in the foreground. +sun_aksydrdtuoqibpbg.jpg The berth appears in a skewed perspective, revealing a light-colored textured mattress against smooth, reddish-brown wood-paneled walls with distinct grain, while a small black TV, headphones, and desk clutter are partially occluded under a mounted light, adding a cozy and compact cabin ambiance. +sun_atbwywgrllnthkvy.jpg The berth is viewed from an overhead angle, showing a beige and patterned texture with a wood-paneled front wall, surrounded by fabric-covered sloped sides and a small fan attached to the ceiling. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/biology_laboratory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/biology_laboratory_descriptions.txt new file mode 100644 index 0000000..6703e35 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/biology_laboratory_descriptions.txt @@ -0,0 +1,3 @@ +sun_auqhjezagrcbqcdv.jpg The biology laboratory, viewed from a side angle, appears desaturated with muted colors, featuring white laboratory benches cluttered with transparent and green-tinted glassware, shelves above holding various containers, and large windows in the background diffusing bright light across the scene. +sun_aulzhwkeveimckiw.jpg The biology laboratory shows a horizontal work surface in shades of green and magenta, with laboratory glassware and equipment scattered across the shelves, partially obscured by cabinetry, with a focus on organization and functionality amid the augmented coloration. +sun_bhiplnjaxcfjsmge.jpg The biology laboratory displays a blue-hued, textured countertop with various scientific equipment neatly arranged, including glass bottles, colored liquids, and instructional materials, facing diagonally with partially visible plastic-wrapped items at the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bistro_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bistro_descriptions.txt new file mode 100644 index 0000000..e4ae665 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bistro_descriptions.txt @@ -0,0 +1,5 @@ +sun_begaqriykgpevrkl.jpg The bistro features red-toned wooden walls and flooring, with a central view showing a bar area with high stools and tables, ambient lighting from ceiling fixtures, and partially occluded by decorative elements including framed artwork and chandeliers. +sun_afcofuuzebuadceo.jpg The bistro features an elongated interior view with tables dressed in white linens and accented by wooden chairs, under a ceiling with mirrored and recessed lighting, and has a mix of deep blue and red tones due to visual augmentation. +sun_brhihuhutcdhvfbt.jpg The bistro appears dimly lit with a warm color palette dominated by deep browns and soft yellows, featuring a polished wooden floor, neatly arranged dark wooden tables and chairs, and walls adorned with a series of small square mirrors, while ambient lighting gently enhances the cozy atmosphere. +sun_bneqefkapennukcs.jpg The bistro displays a warm, sepia-toned ambiance with wooden chairs and tables, framed artwork lining the cream-colored walls, earthly-hued carpet flooring, and blurred outdoor light streaming through the large window on the right. +sun_aolgveaomcxzwfju.jpg The bistro features a richly textured wooden bar with a red hue, four dark stools arranged in front, ambient ceiling lighting, a vibrant green potted plant, and a corner display case partially occluded by a decorative floral arrangement. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/boardwalk_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/boardwalk_descriptions.txt new file mode 100644 index 0000000..1717d34 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/boardwalk_descriptions.txt @@ -0,0 +1,6 @@ +sun_bjricwyvyzhwpmwu.jpg The boardwalk features dark gray planks with a smooth texture, positioned diagonally with a slight leftward tilt, surrounded by lush greenery and overlooking a serene body of water under a pale blue sky, partially obscured by a few branches. +sun_brnxfdnooqgncfrk.jpg A wooden boardwalk painted in light teal, viewed from a slight upward angle, curves subtly to the right, bordered by dense foliage with wildflowers on the right and vines partially obstructing the left railing. +sun_anpwhdfatrdsjyht.jpg The boardwalk appears in a magenta and green hue with a textured wooden surface, winding through a dense canopy of altered-color foliage, with leafy overgrowth encroaching from both sides creating a tunnel-like effect, while scattered red leaves dot its path. +sun_bvmgsvzptervtafk.jpg The boardwalk appears with a smooth, light brown texture winding through a lush green forest, viewed from an angle that emphasizes its curving path and bordered by dense foliage, with individuals using wheelchairs along the path providing a sense of scale and activity. +sun_biefjcpfyverycpd.jpg The boardwalk, seen in a twisting orientation from a slightly elevated position, appears in muted greenish tones with a worn, wooden texture enveloped by dense vegetation and tall, slender trees that partially obscure the path. +sun_bexhxzbhafwoefrh.jpg The boardwalk appears in muted grayscale hues with a lightly worn texture, meandering through a dense thicket of leafless trees and sparse underbrush, viewed from a slightly elevated angle with minimal occlusion from foreground vegetation. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/boat_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/boat_deck_descriptions.txt new file mode 100644 index 0000000..0a2a3b5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/boat_deck_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahoqelgnbrzklqmi.jpg The image shows a boat deck with a predominantly greenish-gray texture, viewed from an elevated angle with a vibrant purple canopy, partially obscuring the deck, while docked near a rocky shore and juxtaposed against a sunlit coastal building. +sun_aucqgwujptmamhgh.jpg The boat deck, viewed from a slightly elevated angle, appears to have a grayish-blue hue with a smooth texture, featuring white railings and benches partially occupied by people, with parts of the background blurry due to low resolution and some sections of the deck shaded, enhancing contrast with the brighter areas. +sun_alwfdkihfyapcbhi.jpg The boat deck appears with a pinkish hue and an industrial texture, viewed from a side angle with stairs leading up, featuring a prominently colored life preserver with text located centrally above, partial railings above, and scattered shadows on the lower section. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/boathouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/boathouse_descriptions.txt new file mode 100644 index 0000000..d216fdc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/boathouse_descriptions.txt @@ -0,0 +1,4 @@ +sun_awkjoyohrynsgkee.jpg The boathouse, viewed from a slightly angled position across calm water, is augmented with a muted teal color overlay, featuring a prominent central watchtower and a sloped roof, surrounded by a small marina and a minimalistic Ferris wheel visible in the distant background. +sun_azgncoyotrymscda.jpg The boathouse features a bright red and white color scheme with a sloped roof, seen from a frontal angle, surrounded by stacked boats and clear blue water, while a rower in a yellow outfit moves in the foreground. +sun_alwxqvbzflfzajwb.jpg The boathouse appears in washed-out tones with a textured stone facade, a front-facing arched entrance with a barred gate partially submerged, surrounded by water and dense trees on the left, with its roof sharply sloped and oriented slightly to the right. +sun_agefqycztqzquikr.jpg The boathouse is a light-colored structure with a slightly tilted orientation, featuring a gabled roof, open front exposing wooden interior elements, partial occlusion by water reflections, and surrounded by a grassy and paved backdrop. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bookstore_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bookstore_descriptions.txt new file mode 100644 index 0000000..094b927 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bookstore_descriptions.txt @@ -0,0 +1,6 @@ +sun_agvjurcwdbixvnyi.jpg The bookstore appears in a warm reddish hue with numerous wooden shelves densely packed with books, a globe visible in the foreground, and ceiling lights casting a soft glow across the narrow aisle, creating a cozy and inviting atmosphere. +sun_atumyooruzcvkqff.jpg The image depicts a narrow, cluttered bookstore aisle with books stacked chaotically from floor to ceiling, having a bluish tint and a slight angle distortion, with two individuals partially occluded by the tight space. +sun_ajtqtuilhloyhzxh.jpg The bookstore features a bright, high-contrast interior with dark shelving units displaying a variety of vibrantly colored books, under warm, diffused lighting and interspersed with green potted plants, viewed from a slightly elevated angle showing the foreground in sharper focus. +sun_axegrdryxqiyspkt.jpg The bookstore features altered purple walls with a corner view that shows three bookcases filled with colorful, predominantly warm-toned books; one green and one red bookcase are angled toward the viewer while the white one is perpendicular, and the ceiling has track lighting casting soft shadows onto the rug-adorned beige floor, with slight occlusion from various decorative items and plants scattered around. +sun_aedudnpyadgdejwp.jpg The bookstore appears with an exaggerated reddish hue, showing tightly packed colorful books on wooden shelves, viewed from a frontal perspective with a small section to the left partially occluded, and softened lighting from overhead bulbs bathing the area in a warm glow. +sun_avbvgwhtxxwuunli.jpg The image depicts a dimly lit, horizontally oriented bookstore aisle with muted colors due to visual augmentation, lined with tall bookshelves packed tightly with colorful books or magazines, while the glossy floor reflects overhead square lights, and a person is walking towards the back, partially occluding the view of the central aisle. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/booth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/booth_descriptions.txt new file mode 100644 index 0000000..64636e9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/booth_descriptions.txt @@ -0,0 +1,6 @@ +sun_bbjpjqofgipplghz.jpg The booth features a prominent blue and white sign with reversed text above two widescreen monitors displaying data, surrounded by several people engaged in discussion, with the space brightly lit and organized within a trade show or exhibition setting. +sun_bjnmjwgdnualguty.jpg The booth features a prominent blue front panel with a geometric black top, displayed from a slightly elevated angle revealing part of the surrounding exhibition environment, and is partially obstructed by people and adjacent booths, with a corporate logo in white set against the vivid blue surface. +sun_bdhxynafmviuftcm.jpg The augmented booth, with a dark blue and white color scheme, features a rectangular table with promotional materials, flanked by tall banners depicting text and images, set against a red and white backdrop in a convention environment with partial occlusion from surrounding dividers. +sun_bhstssxsuiemuiid.jpg The booth exhibits a dark, moody ambiance with dim lighting, showcasing displays of jewelry on stands behind a curtain featuring large abstract shapes in various colors like green, orange, and blue, with the setup partially obscured by the shadowy foreground and subtle spotlights overhead. +sun_artpjizuzqwekzhi.jpg The booth features a prominent angular design with a pink and black color scheme, showcasing a large, textured graphic panel tilted at an angle, surrounded by a trade show environment with visible chairs and neighboring exhibits partially occluded. +sun_bywponagcufuqjxv.jpg The booth, viewed slightly from the side, predominantly features a gray and dark blue color scheme with vibrant, tilted text signs, a textured wall displaying colorful graphics, and is partially occluded by two individuals standing in front, obscuring some of the display items. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/botanical_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/botanical_garden_descriptions.txt new file mode 100644 index 0000000..66e694b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/botanical_garden_descriptions.txt @@ -0,0 +1,3 @@ +sun_aptyzmluwzhdusmc.jpg The botanical garden appears in a bright, augmented color palette with vivid pink ground cover, lush green trees dominating the scene, and a distinctive leafy canopy view while sparse sunlight filters through the branches onto a partially shadowed environment. +sun_ayhbmyrfbxhqzexg.jpg The image depicts a lush botanical garden with numerous lilac bushes showcasing a spectrum of colors from deep magenta to soft pink and pale lavender, set against a backdrop of verdant trees under a brightened, color-shifted light, with low resolution enhancing a slightly grainy texture yet maintaining the garden's essence. +sun_akryklnzpcglebgd.jpg The image shows a sunlit botanical garden with lush green foliage, pink flowering shrubs, and a lone slender tree positioned centrally, set against a backdrop of densely packed trees with a carpet of dappled light and shadow on the ground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bow_window_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bow_window_descriptions.txt new file mode 100644 index 0000000..8abdfbc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bow_window_descriptions.txt @@ -0,0 +1,3 @@ +sun_anbsyvzrmxjixoas.jpg The bow window is viewed from the front with a cool-toned, desaturated appearance, framed by light trim and set in a mauve brick wall, with reflections of trees in the glass and partially obscured by greenery at the bottom. +sun_abwoxppbytkgtvic.jpg The bow window, viewed from a slightly angled perspective, appears in a warm reddish-brown hue with purple-tinted glass due to color augmentation, set against a yellow-brick facade, with a floral arrangement hanging to the right. +sun_apnvdyecnjjmcuhi.jpg The augmented bow window appears with a purple tint and texture resembling a corrugated surface, viewed from a slight angle showcasing a partial interior scene with kitchen elements visible through three panels, while a blonde woman stands inside, facing slightly towards the right side panel. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bowling_alley_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bowling_alley_descriptions.txt new file mode 100644 index 0000000..770511d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bowling_alley_descriptions.txt @@ -0,0 +1,3 @@ +sun_akdtojzfogdccaih.jpg The bowling alley, viewed from the right and altered with a reddish hue, shows a dynamic scene with a bowler mid-swing in the foreground, under a ceiling of horizontal light fixtures, with a colorful mural featuring pins and the word "BOWL" on the wall, and lanes extending into the background. +sun_azwmdrnyyglrlkfn.jpg A bowling alley with a warm-toned floor and multiple lanes is viewed from the side, showing overhead monitors and partially-visible bowlers with colorful bowling balls, under a ceiling with soft lighting and an American flag on the back wall. +sun_anmpxiapzrtfxagk.jpg The image shows a low-resolution view of a bowling alley with lanes featuring augmented pink and purple hues, viewed from the side with a person partially occluding the foreground, and vibrant, abstract patterns on the back wall. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/boxing_ring_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/boxing_ring_descriptions.txt new file mode 100644 index 0000000..c2c4292 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/boxing_ring_descriptions.txt @@ -0,0 +1,3 @@ +sun_awcvqlsmjpwqlkgu.jpg The boxing ring features a bright yellow hue with a slightly textured appearance, seen from a mid-to-low angle perspective amid a crowd, with ropes partially visible and the scene partially obscured by the fighters' action at the center. +sun_alfmjdhrlxodshvz.jpg The boxing ring appears with red and white ropes, a dark blue floor, reddish-brown corner pads, viewed from an elevated diagonal angle that highlights the corner structure against a plain white and muted yellow background, with a slight occlusion by the corner padding. +sun_ahglnmqmzddxbfae.jpg The boxing ring appears in a dimly lit gym environment with a dark blue canvas, brightly illuminated orange and blue lines on the ceilings, and ropes predominantly silhouetted against gym equipment in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/brewery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/brewery_descriptions.txt new file mode 100644 index 0000000..d6a2db7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/brewery_descriptions.txt @@ -0,0 +1,6 @@ +sun_anainupdzrfccrxo.jpg The image shows two large copper brewing kettles with a shiny, smooth texture, viewed from an elevated angle in an indoor setting, surrounded by a tiled floor and walls, with polyhedral windows in the background and no significant occlusion. +sun_anraxdeafzathioo.jpg The image shows a low-resolution view of a brewery's interior featuring large, glossy, brass-like equipment with pipes and tanks, viewed from a slightly elevated angle, and surrounded by darkened windows and dim lighting, with some angular shadows cast on the floor. +sun_btbqdshvtqxtrltj.jpg The brewery scene shows a large, metallic tank with a dull greenish hue and matte texture due to color augmentation, positioned centrally from a low-angle viewpoint, with a person standing atop it, partially occluding the view of the tank, while shadows create a mottled texture on the walls and floor of the stark environment. +sun_btzeeidunjhppevh.jpg The image depicts a view from ground-level showcasing a shiny, metallic, vertical cylindrical tank with various pipes and valves, surrounded by an industrial grid-tiled wall, featuring enhanced brightness that highlights the reflective surfaces while maintaining a light, desaturated color tone. +sun_abpzvowzhmvsddah.jpg A person in a green jacket is arranging orange and white packages on an inclined conveyor belt within an industrial setting, illuminated by overhead lights with metallic structures surrounding the area. +sun_aiosuaxkyaxuamaz.jpg The image shows three metallic kegs with a reflective silver texture arranged on a black metal stand against a pale wall, partially obstructed by silver pipes and cables, under a metallic surface with an adjacent wall-mounted fan and orange extension cords. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bridge_descriptions.txt new file mode 100644 index 0000000..2afe9b7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bridge_descriptions.txt @@ -0,0 +1,6 @@ +sun_bkowhlvezbsljtmc.jpg The bridge appears in a muted pink tone, likely due to color alteration, with its textured arches and towering pylons viewed in profile against a dim, overcast sky, partially reflected in the dark, rippling water below, obscuring some structural details. +sun_bsteovvizxdefkqw.jpg The bridge appears in soft pastel hues with a wooden texture, viewed from a central, linear perspective, partially occluded by vertical posts along its edges, set against a blurred, verdant forest background with a slight tilt to the right. +sun_bwwgxdeljegegpao.jpg The bridge is viewed from a low angle with its vibrant orange structure contrasting against the muted sky and water, featuring visible suspension cables, while the surrounding terrain includes hills and a coastline partially obstructed by a parked yellow vehicle and onlookers. +sun_bbxvctltntrtinjf.jpg A silhouetted cable-stayed bridge with vertical support towers and diagonal cables is set against a gradient sunrise background, casting reflections on the water, with dense greenery partially blocking the view from below. +sun_ahfdjjnxulpcxrqo.jpg The bridge appears greenish with illuminated turrets and arched elements, viewed from a low angle at night, reflecting on a calm water surface. +sun_bpxurbnbongculvy.jpg The bridge appears in a sepia-toned color scheme with a suspension design, featuring tall stone towers and cables, viewed from a side angle with a foreground of rocky cliffs and a partially visible river below. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/building_facade_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/building_facade_descriptions.txt new file mode 100644 index 0000000..28d2d21 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/building_facade_descriptions.txt @@ -0,0 +1,3 @@ +sun_aegfyoqlrmzvuzqn.jpg The building facade appears in a desaturated olive hue with a violet sky, featuring a classical design with visible columns and numerous rectangular windows, viewed from a frontal angle without obstruction, highlighting its symmetry and sculptural rooftop embellishments. +sun_ayevknwokhdtcwwr.jpg The building facade appears in a muted pastel color palette with pink and pale green hues, featuring a classic European architectural style with arched and rectangular windows in a slightly skewed orientation, while the environment includes street-level lamps and visible sidewalk, partially occluded by the angle of the shot. +sun_aveviqphrvmhusav.jpg The image shows a group of tall, densely packed apartment buildings displayed in a muted pink hue with a vertically stretched appearance, featuring numerous small windows and balconies, all set against an urban landscape with structural elements partially obscuring the lower portion. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bullring_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bullring_descriptions.txt new file mode 100644 index 0000000..c4ff50e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bullring_descriptions.txt @@ -0,0 +1,5 @@ +sun_akdcrsysqczbpjjz.jpg The bullring appears in a tilted and color-enhanced format with a smooth, mustard-yellow arena floor surrounded by a red and white barrier, partially obscured by clouds above and enclosed by multi-story brick buildings, featuring arched spectator tiers filled with colorful attendees. +sun_ajarfgcrghpcsndk.jpg The image depicts a low-resolution bullring with a reddish-brown textured exterior and a sandy yellow interior, viewed from an elevated angle with a partial occlusion from foliage in the foreground, surrounded by dense greenery and hills in the background. +sun_azfbhcxkxctjcqyg.jpg The low-resolution image shows a bullring scene with a bullfighter in gold and pink attire facing a large, black bull, with vibrant red and orange fabric held high, set against a muted background with the bull reaching slightly forward. +sun_cwezhafrdjtxogcq.jpg The image shows a reddish-orange bullring with a brightly saturated color, visible from an elevated angle, where a group of dark-coated horses, accompanied by handlers dressed in black, pull a fallen bull across the arena, and the scene is encircled by vibrant magenta barriers, creating a striking contrast with the light streaks on the ground. +sun_anizfueybzpclcap.jpg The bullring appears with a warm, orange hue dominating the sandy arena floor, encircled by a two-tiered structure in muted tones with a line of arches above, showcasing an overcast sky and surrounding urban buildings partially obscured by the stands. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/burial_chamber_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/burial_chamber_descriptions.txt new file mode 100644 index 0000000..9411585 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/burial_chamber_descriptions.txt @@ -0,0 +1,3 @@ +sun_aruxxvurnrrieisd.jpg The large stone in the foreground has a yellow-green hue with a smooth yet weathered texture, displaying intricate swirling patterns and geometric carvings, while positioned horizontally with a partial stone wall and shadowed opening behind it, suggesting a harmony with its rough, ancient environment. +sun_appjndaxygbsedaq.jpg The burial chamber features a rich pink-red hue with an arched ceiling and intricate patterns, illuminated by hanging lights, while the columns create a rhythmic perspective in a spacious hall with a polished stone floor, partially occluded by a person on the right. +sun_bamlnkpomzzujqpa.jpg The burial chamber appears as a rectangular stone structure with a visibly altered gray and green hue, displaying a smooth top and rough-textured sides with green drapery partially covering the sandy floor around it, viewed diagonally from one corner with minor occlusion from a cloth on the floor. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/bus_interior_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/bus_interior_descriptions.txt new file mode 100644 index 0000000..530aae1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/bus_interior_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahmoozceggkkvlnt.jpg The bus interior features orange handrails, white and brown seating, a bright blue-toned window with blurred exterior view, and a highly reflective floor, viewed from the front left corner facing backward. +sun_amnhyskdrvvhjxch.jpg The image shows a bus interior with a warm sepia-toned ceiling and a row of beige seats with white headrests, viewed from the back towards the front with passengers filling most seats, partially obscured by each other and the aisle running centrally through the image. +sun_akoqarkgeobrmcmi.jpg The bus interior is viewed from the front facing the back, with rows of patterned seats in muted earth tones and a central aisle under a uniform, shadowed ceiling, partially occluded by support elements and windows reflecting exterior brightness. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/butchers_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/butchers_shop_descriptions.txt new file mode 100644 index 0000000..30bb9b4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/butchers_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_akbwiytzogqtjbdc.jpg The image shows a butcher's shop viewed from the front, with a faded yellowish hue that highlights the texture of hanging meats and dim lighting inside, partially occluded by wooden doors on either side and scattered people near the entrance. +sun_ajsijhmgvweykjon.jpg The butcher's shop displays rows of hanging cured meats in warm, yellowish lighting, with slightly tilted angles showing a busy indoor market environment where shopkeepers interact with customers across a glass counter filled with packaged meats, creating a bustling and layered visual texture. +sun_asjtcqgxewtzzzbl.jpg The image shows a dimly lit, glass-covered butcher display with cuts of meat wrapped in plastic, arranged on a white and black checkered mat with a slightly tilted viewpoint and reflections obscuring some of the text at the top. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/butte_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/butte_descriptions.txt new file mode 100644 index 0000000..6a30f45 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/butte_descriptions.txt @@ -0,0 +1,5 @@ +sun_awrdjhjthzfsgxsv.jpg The butte appears in a pink and cyan palette with a flat top, surrounded by sparse vegetation and shadows in the foreground, viewed from a slightly elevated perspective with an open, expansive landscape behind it. +sun_aujmehrtbkccnzph.jpg The butte appears in an altered turquoise and pink hue with a flat top and rugged sides, viewed from a side angle with some occlusion by sparse vegetation in the foreground. +sun_atqjwgyxfbbygdkd.jpg The butte appears in a reddish-brown hue due to visual augmentation, showcasing a rugged, stratified texture with a prominent, steep face in the foreground, and is partially surrounded by sparse desert vegetation against a slightly cloudy, blue sky. +sun_amhzsaitmrpowndh.jpg The image shows a distant, low-resolution butte with a pinkish hue due to visual augmentation, standing prominently against a bright cyan sky, with a flat top and slightly rugged sides, surrounded by a sparse, brownish foreground and smaller rock formations nearby. +sun_atxcnpzrwebbnkfl.jpg A trio of buttes appear against a bright blue sky with scattered clouds, their textures and striated surfaces are visible, exhibiting an altered golden hue, oriented at a slight tilt, surrounded by a vast, flat desert landscape with sparse vegetation. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cabin_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cabin_descriptions.txt new file mode 100644 index 0000000..3d5fba6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cabin_descriptions.txt @@ -0,0 +1,6 @@ +sun_bkrpaiwtgiwuqaoo.jpg The cabin appears as a small, rustic, dark brown log structure viewed from an angled side perspective, with a slightly slanted roof, a chimney made of gray stones, surrounded by green foliage and trees, partially obscuring the view from the right. +sun_auewajdpuieiyyio.jpg A single-story cabin with a front porch and four visible dark windows appears in a washed-out, desaturated brown color, under strong sunlight casting shadows, surrounded by leafy trees, with a small bush near the left side and grass in the foreground. +sun_bdnhtdaajvfexyew.jpg The cabin appears with a muted yellow-green door and window frames set against light gray, horizontally striped wooden logs and has an angled roof covered in white, viewed from a slightly elevated front-left angle with barren trees partially obscuring the sides. +sun_bouixwxrvqihfhgs.jpg A green-hued wooden cabin with a stone foundation is viewed frontally, partially shaded by overhanging branches, featuring a porch with a screen, a single visible window, and a rustic door, while a wooden bench and a yellow container are seen to the left. +sun_bfdmfnnbsnfqmnjr.jpg A red-brown cabin with a steep, metallic silver roof is viewed from an angled front-left perspective, surrounded by leafy trees casting dappled shadows on a pathway and deck. +sun_atnvrlxkgdrhjuoa.jpg The cabin appears bright yellow with a rustic texture, viewed from an angled front-left perspective, featuring a screened porch and surrounded by lush green foliage, with a picnic table and a grill on a wooden deck. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cafeteria_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cafeteria_descriptions.txt new file mode 100644 index 0000000..8cd13ad --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cafeteria_descriptions.txt @@ -0,0 +1,6 @@ +sun_bjdgttnlsffrzlvn.jpg The cafeteria appears with a pinkish hue due to color augmentation and features a long table lined with rows of similarly styled chairs, filled with people on either side, against a backdrop of large windows reflecting the altered light. +sun_afvwfsmqkjrutjta.jpg The cafeteria is viewed from a central perspective displaying numerous round tables with dark surfaces and matching chairs, beneath a dimly lit ceiling with evenly spaced lights; the overall color appears to have a muted, desaturated tone due to augmentation, enhancing the texture of the stone-like floor and surrounding walls. +sun_bcpombnddnwhhgck.jpg The cafeteria, viewed from a central perspective, features a gray and purple color scheme with a metallic-textured ceiling and a long arrangement of tables, slightly distorted by the color changes, while a gray trash can at the forefront partially occludes the view. +sun_aughckodglpirnxy.jpg The cafeteria features several rows of long, gray tables with circular stools spread across a polished, speckled floor, viewed from an elevated angle showing darkened windows and bright green accent walls that create a marked contrast. +sun_auhvdlrlmemecmgz.jpg The cafeteria appears brightly lit and crowded, with children sitting at long tables, some with jackets draped over their seats, against a background of white walls and colorful bulletin boards, viewed from an angle showcasing mainly the back view of the children. +sun_akvwqwxxliygargz.jpg The cafeteria, viewed from a side angle with a visible flag, has a bright, pinkish hue with white ceilings featuring regularly spaced, recessed lights, populated by groups of people seated at long tables arranged parallel to each other, and a railing on the left side partially obscuring the view. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/campsite_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/campsite_descriptions.txt new file mode 100644 index 0000000..e27ae2d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/campsite_descriptions.txt @@ -0,0 +1,6 @@ +sun_airpvitrxhkkvuot.jpg A pastel-hued campsite features several trailers with visible wheels and windows, positioned around an expansive grassy area with patches of reddish-brown soil, viewed from a low angle facing a canopy of trees in the background. +sun_aguivurwrkqopafi.jpg A lightly blue-tinted camper is parked on a gravel pad next to a white SUV under the shade of tall trees, with scattered foliage partially obscuring the site and shadows adding depth to the wooded surroundings. +sun_acxqztubzhdzqpzc.jpg A campsite in a wooded area features a blue-tinted tent with mesh sections on uneven ground, surrounded by scattered pine needles and gear, under the angled light filtering through tall, vertically-positioned trees, with an adjacent closed orange tent partially visible. +sun_aecpeydhuzrghoad.jpg A green-textured dome tent is positioned on the right amid a forested area with tall trees, accompanied by a picnic table covered in a light green cloth in the foreground and a person standing to the left, all under soft, dappled sunlight. +sun_adubzegaqwgnrwne.jpg A vibrant green grass field holds a white caravan on the right with surrounding small trees, a picnic table, and a rainbow arching over the sky, complemented by a darkened stormy atmosphere. +sun_alkofwkswrrcpawf.jpg A vibrant and sunlit campsite features a colorful mix of tents and vehicles, including a red SUV and blue truck with yellow tarps, set against a lush green forest with dappled sunlight filtering through the trees, capturing an idyllic outdoor scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/campus_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/campus_descriptions.txt new file mode 100644 index 0000000..f0f625e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/campus_descriptions.txt @@ -0,0 +1,6 @@ +sun_abslhphpiejdjmpz.jpg A pinkish-red brick building with a flat roof and large glass windows dominates the foreground, viewed from a low angle with people and bicycles partially obscured in the foreground, under a bright sky and surrounded by minimal landscaping. +sun_azhizuriiuroarih.jpg A symmetrical entrance flanked by two brick pillars with white panels leads to a tree-lined campus pathway under a sky tinted with deep teal, with patches of sunlight casting sharp shadows on the path and adjacent greenery. +sun_bjcholoitrjrcwpy.jpg The centrally positioned building, viewed from a straight frontal angle along a wide cobblestone path, appears a tint of pinkish-beige with a clock tower as a distinctive feature, flanked by bare winter trees and bordered by dark, dense hedges with scattered orange flowerbeds. +sun_axxmdoprjqnyrmpw.jpg The image depicts a slightly desaturated and pinkish-view of a campus entrance featuring a large, arched, dark stone building with symmetric windows framed by bare and leafy autumn trees, with several people walking on the path, and vibrant red bushes on the right side. +sun_albthhletanyjwjn.jpg The image shows a red-brick building with a symmetrical facade, prominent arched entrance, and large semi-circular bay windows, viewed from a frontal angle, with the environment featuring parked cars and sparse greenery. +sun_anlhyjfjqfdgfgzl.jpg The building, viewed from an angled perspective, appears in muted colors with a darker purple hue, featuring a multi-story rectangular structure with repeating square windows and a prominent central tower, surrounded by a grassy area and a few palm trees in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/canal_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/canal_descriptions.txt new file mode 100644 index 0000000..3697cfc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/canal_descriptions.txt @@ -0,0 +1,5 @@ +sun_bermrndkaczimcsp.jpg The canal appears in a lavender hue with enhanced saturation, flanked by a lush, green tree-lined bank on the right and a cobblestone path on the left, alongside brightly painted narrowboats reflecting off the smooth water surface, with occlusion from overhanging trees and a partially visible brick structure on the left. +sun_blkewdnhetmusdtm.jpg A turquoise-hued canal flows between elegant Italian-style architecture with arched arcades and terraces, viewed from an elevated angle, showing reflections in the water and a gondola navigating the scene while diners enjoy their meals along the side. +sun_bzxszikqdwiwhyjo.jpg A lightly color-shifted canal scene with a brightened, soft-edged texture features a small waterway lined with lush greenery, viewed from above, with a bright red canoe positioned centrally, partly occluded by tree reflections, and a pale building in the background. +sun_bexiyirxwdmantvf.jpg The image depicts a canal with a reddish-brown tint featuring several narrowboats moored alongside a modern marina building with angular roofs, while the water reflects the structures and boats, surrounded by a sparse grassy area with a cloudy sky above. +sun_bqroioqpjctxmnaa.jpg The canal, viewed from a low angle, displays a deep blue-brown water texture beneath an arched brick bridge, surrounded by brightly colored, tilted historic buildings adorned with autumnal yellow-brown trees. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/candy_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/candy_store_descriptions.txt new file mode 100644 index 0000000..7bd12e0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/candy_store_descriptions.txt @@ -0,0 +1,3 @@ +sun_aapcxvfuiupvehvo.jpg The candy store, viewed from the front at a slight angle, features a dark, warm-toned color scheme with a glowing sign and illuminated display windows showcasing an array of candies, partially occluded by two people standing and observing the variety inside. +sun_afzpxnkfrkfcypwd.jpg The photo shows a diagonally oriented candy store display with various compartments filled with colorful, glossy gummy candies, featuring textures altered to appear shiny and smooth, and some sections occluded by refraction from the glass dividers. +sun_acvgjyqdhizoityf.jpg The candy store displays rows of transparent bins filled with a vibrant assortment of candies against a slightly tilted pink background, with various colorful packaging and lollipops prominently visible on a top shelf, creating a playful and visually busy appearance. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/canyon_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/canyon_descriptions.txt new file mode 100644 index 0000000..e36fa45 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/canyon_descriptions.txt @@ -0,0 +1,6 @@ +sun_aidvbhxioocigwlg.jpg The image shows a canyon with vivid orange and blue hues, rugged textures, and a perspective from a high vantage point, surrounded by distant shadowed formations and partially occluded by green foliage in the foreground. +sun_asjtrqgzgtdamrlt.jpg The canyon appears with a deep reddish-brown texture, showcasing layered rock formations and a prominent dark structure at the center with a cross shape, against a bright sky backdrop with scattered clouds. +sun_aiygmeizvjhdqbep.jpg The image shows a canyon with steep, rugged rock faces tinted in lavender and aqua, with a high angle viewpoint that highlights the narrow passage; the environment is partially obscured by a foggy, light blue haze that adds a surreal quality to the scene. +sun_atrvpyuqvefmqcey.jpg The canyon features tall, narrow hoodoos with a soft, pinkish-beige coloration, surrounded by sparse greenery and minimally occluded by the dense arrangement of rock formations seen from an elevated viewpoint. +sun_ajtvysscoirnzowp.jpg The canyon displays a striking reddish hue with horizontal striations, viewed from a frontal angle highlighting its towering, sheer cliffs set against a bright sky, with sparse vegetation at the base providing contrast and texture. +sun_adouftgdrzsideja.jpg The image displays a low-resolution view of a canyon with enhanced red and blue hues, visible from an elevated viewpoint, showcasing a rugged and layered terrain under a clear sky, with trees partially occluding the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/car_interior_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/car_interior_descriptions.txt new file mode 100644 index 0000000..ee69493 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/car_interior_descriptions.txt @@ -0,0 +1,3 @@ +sun_bwqewjltpghhafgh.jpg The car interior appears gray with a textured fabric seat, viewed from a driver's side angle with the steering wheel prominently in the foreground and bright greenery visible through the side window, slightly obscured by the angle and orientation of the image. +sun_dvstfjpskuyhigjy.jpg The car interior is viewed from the passenger seat with a muted, grayscale tone showing circular air vents and a central console with visible controls, while the seat upholstery features a mix of light and dark tones with a ribbed texture. +sun_dszbcethzezzzftn.jpg The car interior features cream-colored leather seats with a smooth texture and is shown from a slightly elevated side angle, revealing a convertible design with a visible steering wheel and dashboard, and no significant occlusion but a clear view of the front passenger area. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/carrousel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/carrousel_descriptions.txt new file mode 100644 index 0000000..f0516cc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/carrousel_descriptions.txt @@ -0,0 +1,6 @@ +sun_ahitjiaidgmhllto.jpg The photo depicts a carrousel with a vibrant yellow and green augmented color scheme, seen from a low-angle side view revealing toy cars and scooters in the foreground, with a plethora of twinkling lights on a floral-patterned canopy overhead, partially obstructed by vertical poles, creating a playful and festive atmosphere. +sun_amxxltxsnzbjosmk.jpg The carousel horse, viewed from the side, features a vibrant yellow body with intricate orange and green saddle designs, set against a blurred background of other carousel figures and metallic poles, with its posed front leg and detailed mane prominently displayed. +sun_avegpmvbkcytntla.jpg The carrousel is seen in a profile view with a vibrant purple hue dominating the sky, featuring ornate gold and white decorative elements, various animal figures in motion, partially obscured by a person interacting with a cooler in a sunlit open park environment, with a Ferris wheel visible in the background. +sun_akivqhsdzavbqkvv.jpg The carousel appears in a vivid red and white color scheme with a striped canopy pattern, viewed from a slightly tilted angle, standing against a grassy backdrop, and features horse figures encircling the platform despite low resolution and color modifications. +sun_apopwlksikrgzrlh.jpg The carrousel, viewed from a slightly tilted side angle, displays warm reddish-brown and beige tones with a prominent striped roof, ornate golden poles, two partial white horses with visible ornate saddles and ride seats, and is situated in a softly lit indoor setting, giving it an antique and nostalgic feel. +sun_aqfwgeehyzeaeuxo.jpg The carousel is vibrant with enhanced, swirling tones of purple and orange decorating the horse, seen from a side view with a busy background featuring buildings and signs, while children on the ride partially obscure the intricate, gold-accented detailing. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/casino_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/casino_descriptions.txt new file mode 100644 index 0000000..030d2b1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/casino_descriptions.txt @@ -0,0 +1,5 @@ +sun_azvdvlppoitgqmmy.jpg The image shows a brightly lit, low-resolution casino scene with a teal card table in the center, surrounded by a group of people, where the vivid color and texture of the table and playing cards stand out against the blurred, muted background. +sun_ayxjmmmkjcvnihuk.jpg A dimly lit scene shows a casino entrance with altered deep hues, surrounded by lush greenery above the archway, flanked by muted, bright slot machines on the left and overhead spherical lamps casting warm light, partially obscured by a sign featuring vivid, multi-colored neon highlights. +sun_amguelqiibrjnaqw.jpg The image shows a dimly lit indoor casino with a red and purple color scheme, featuring ornate chandeliers above and gaming tables aligned diagonally across the room, partially obscured by people and floral arrangements, with a backdrop of classic architectural elements. +sun_ahpriwupsxwhsafj.jpg The image shows a line of slot machines with a turquoise and pink color scheme, viewed from a slight right angle and partially obscured by green chairs bearing white writing, all set against a bright, high-contrast background. +sun_aczwgavqicqxxnjl.jpg The image shows a dimly lit casino with a reddish-purple hue and a hazy texture, featuring tables with green felt and burgundy chairs, a crowd of people engaged in games, and ornate ceilings with chandeliers, all from an elevated side view with no significant occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/castle_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/castle_descriptions.txt new file mode 100644 index 0000000..8db8b09 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/castle_descriptions.txt @@ -0,0 +1,6 @@ +sun_aedwlioqpfefnsyn.jpg The castle, viewed from the front with a flat gradient sky and surrounded by neatly lined green vegetation, features altered hues with a lightened facade and a prominent triangular roof, partially obscured by shadowed trees on the left. +sun_aczyjfgjswcnkrpr.jpg The low-resolution image reveals an upside-down castle with reddish-brown textured walls, partially obscured by surrounding lush, green foliage and a reflective body of water in the foreground, under a partly cloudy sky. +sun_ardcufegzmczlenz.jpg The image shows a small, squat castle with tall conical battlements, appearing in muted stone gray with a rugged texture, perched on a grassy, rocky hill, with verdant forest and soft hills in the background under a bright sky. +sun_arkxdnmjanapnhyx.jpg The castle appears in a muted pink and gray hue with a texture resembling weathered stone, viewed from an upward angle highlighting the battlements and towers, partially obscured by dense foliage on the left. +sun_advuoabppjswkfht.jpg The castle appears with a washed-out yellow hue and uneven brick texture, viewed from a low angle with walls partially covered in dense greenery, obstructing some sections, and surrounded by sparse trees and underbrush. +sun_aroazcovygzydjpl.jpg The castle appears in a yellowish hue with a rugged stone texture, viewed from a slightly angled front perspective showing multiple vertical rectangular windows, set against a bright sky with scattered clouds and partially surrounded by grass and trees on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/catacomb_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/catacomb_descriptions.txt new file mode 100644 index 0000000..9f6262f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/catacomb_descriptions.txt @@ -0,0 +1,5 @@ +sun_aofrsooyntvqaimk.jpg The image depicts a stone archway with a rough, light-enhanced texture leading into a dimly lit underground room containing rustic wooden furniture, where antique tools are visibly mounted on the curved, uneven walls. +sun_aknfnuqnxcqyqxuq.jpg The catacomb features augmented reddish and pale brick textures with a dimly lit arched entryway on the right, and rough, irregular stone surfaces partially occluding the lower foreground, creating a cavernous and ancient atmosphere. +sun_auuhcjzejgrgujrt.jpg The catacomb corridor appears with an altered sepia-tone coloration and a grainy texture, showcasing a linear perspective view with arched stone walls receding into the distance, dimly lit by a series of hanging lights that cast soft halos and leave the foreground partially shadowed. +sun_ayaurahjbkhfbinu.jpg The altered catacomb image shows a stone-lined room with an arched ceiling, featuring predominantly yellowish-gray tones; the viewpoint is from the entrance, looking inward where walls display an array of colorful framed images, a small chair with objects sits on the sooty floor in the center, and white linens hang on the right, creating a cluttered yet vibrant interior despite the visual modifications. +sun_aauuytnrpbdfyftz.jpg The image shows a catacomb with warm-toned, augmented colors of orange and red, featuring textured frescoed arches and walls with intricate patterns, a brick wall is visible at the end from a central long corridor viewpoint, and the setting has a worn, aged appearance with murals depicted overhead. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cathedral_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cathedral_descriptions.txt new file mode 100644 index 0000000..347374a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cathedral_descriptions.txt @@ -0,0 +1,6 @@ +sun_bqnwsmknwxanvoml.jpg The cathedral appears in a surreal pinkish hue due to the color augmentation, with intricate stone carvings and statues visible on its facade, viewed from a low angle against a cloudy sky background. +sun_bqhdmuhtplzjwsvg.jpg The cathedral features reddish-brown pointed spires against a grey sky, with intricate arched windows and gothic details visible despite scaffolding on one side, set amidst a busy street with cars in the foreground. +sun_ahyglglhhuxzzpnm.jpg The low-resolution image shows a cathedral interior with a green-yellow hue, featuring high arched ceilings, stone columns, wooden pews, chandeliers, and a visible central altar area at the far end, slightly obscured by visitors. +sun_ayovuzbxjucqhbao.jpg The cathedral interior features large, intricately ribbed arches and soaring columns in a muted grayish-blue hue, with a symmetrical central nave leading to a stained glass-lit altar, framed by soft ambient lighting filtering through high-set windows. +sun_azwghkyfprwbmmuq.jpg The cathedral appears in muted gray tones with a large, arched entrance flanked by two stained-glass windows, viewed from a low angle with an imposing facade, partially obscured by surrounding stone buildings and shadowed stairway. +sun_bmfpsolkgtxlubmf.jpg The cathedral appears in a somber blue-grey tone, enhanced by the augmented color, showcasing a largely frontal viewpoint that highlights its triangular pediment and classical columns, with a large stained glass window visible on the side, partially obscured by a tree in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cavern_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cavern_descriptions.txt new file mode 100644 index 0000000..6c03d06 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cavern_descriptions.txt @@ -0,0 +1,6 @@ +sun_aeirxlzqrhofozan.jpg The cavern exhibits a light, washed-out texture with a greenish tint, partially obscured on the left by rocky, uneven formations; a person is positioned on the right side in the foreground, providing a sense of scale. +sun_akaeugvancwoiknl.jpg This low-resolution image depicts a cavernous space with warm, yellowish lighting, showcasing rough brick textures and an arched ceiling, with a musician performing on stage positioned to the right, partially obscured by a foreground speaker and surrounded by a dark, ambient environment. +sun_aidaupmwzyffmiwu.jpg The cavern appears in a muted blend of reddish-brown and gray, with a rough, textured surface; it is viewed from an angled perspective with the foreground partially occluded by overhanging rock formations, and displays jagged, uneven edges with shadowed depths. +sun_aolkrbsxngqqdzwo.jpg A dimly lit cavern with altered reddish and brown stalactites and stalagmites, viewed from an angled perspective with shadowed areas creating a textured and irregular environment. +sun_agpysxgkeqxnuemb.jpg The cavern appears with a warm, amber hue featuring rough, striated textures along its steep walls, where slender stalactites hang from the top; the lower part exhibits rounded, pale formations with the viewpoint angled downward, giving a sense of depth into a narrow opening. +sun_afozwocnwezpughq.jpg A diver navigates through an underwater cavern with yellow-brown stalagmites protruding from the bottom, set against a dark blue-green backdrop with limited visibility due to low resolution and submersion. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cemetery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cemetery_descriptions.txt new file mode 100644 index 0000000..d93293d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cemetery_descriptions.txt @@ -0,0 +1,6 @@ +sun_awjhiqglqfkdrvec.jpg A low-resolution image shows a cemetery with a blue-tinted hue, featuring a prominent bare tree in the foreground surrounded by a sparse arrangement of headstones on a gently sloping hill, set against a cloudy sky, with slight occlusion from the branches. +sun_alrezysmfhmmxuic.jpg The image shows a wide, low-resolution view of a cemetery with gravestones scattered across a muted, yellowish-green grassy terrain, lined with sparse bare trees against a cloudy sky, and a metal drum partially visible in the foreground. +sun_alfsxaumuuzkzwui.jpg The image shows a vibrant, possibly color-altered scene with a large bird standing among rows of evenly spaced, light-colored gravestones, seen from a slightly elevated angle, against a lush backdrop of green foliage, creating a contrast between natural and man-made elements. +sun_aevdbeymsvlktnbx.jpg The cemetery features rows of pale gray headstones on green grass, viewed from a slightly tilted angle with a large tree partially occluding the left side, under a brightened, overexposed sky where the texture of the grass contrasts the smoothness of the headstones. +sun_aztdjrljvwluteyo.jpg The image showcases a cemetery with rows of vertical white headstones on lush green grass, enhanced with a purplish hue, viewed from an angle leading towards the distant trees and stone structures, creating a symmetric and orderly appearance. +sun_aiyfhmlbqjvylsny.jpg The image depicts a row of upright, rectangular headstones with a washed-out teal tint amidst a grassy landscape, viewed from a slightly elevated angle with light dappled through surrounding trees onto the uneven terrain. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/chalet_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/chalet_descriptions.txt new file mode 100644 index 0000000..3ce8293 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/chalet_descriptions.txt @@ -0,0 +1,6 @@ +sun_aailmhugmeyacfhc.jpg The chalet appears in a rosy hue with a wooden texture, observed from a frontal angle, featuring bold red shutters and balcony railings, set against a mountainous backdrop with a mixture of greenery and clear skies, partially occluded by trimmed hedges on the side. +sun_axuvrxvaccakitgk.jpg The chalet, viewed from a front angle, appears light brown with a green-trimmed deck, featuring a prominent gable roof and surrounded by partially occluding leafy branches, under bright, direct lighting. +sun_anquyxvzszsuqime.jpg The chalet is viewed from a slightly elevated angle and features a muted brown and green-striped texture with a snowy foreground, partially obscured by fog and surrounded by towering, snow-dusted mountains. +sun_agkekwuwhtuhwyly.jpg The chalet appears in a pale, washed-out color with a textured wooden surface, viewed from a slightly tilted angle, with a clear sky and trees partially obscured by a large roof to the right and a stone wall in the foreground. +sun_ayyxgxivqvhwglei.jpg The chalet appears in a vivid red hue with wooden texture due to visual augmentation, viewed from a front-right angle with partial shadow and sunlight enhancing its outline, surrounded by a grassy area and dense trees, and featuring a small porch with outdoor furniture visible. +sun_auvdfaerfgyyqznk.jpg The chalet appears in bright orange hues with visible wood grain texture, viewed from a slightly angled perspective from the ground level, partially obscured by a snow-covered foreground, featuring a distinct multi-gabled roof and several balconies with dark railings. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cheese_factory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cheese_factory_descriptions.txt new file mode 100644 index 0000000..86a7531 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cheese_factory_descriptions.txt @@ -0,0 +1,3 @@ +sun_dzmcjxowthrsjdgf.jpg The image shows several round cheese wheels with a pinkish hue on wooden shelves oriented diagonally in a sparse room, with metal racks partially obscured by a light-colored cloth in the foreground. +sun_dawrvlmsdapxqhau.jpg The cheese factory interior shows light wood shelving filled with round cheese on the left, stacks of white crates on the right, and a person standing at the back in a long corridor, with a muted, warm color tone and slight angle tilt in the image. +sun_datjppfjzhykemzb.jpg The image depicts a low-resolution cheese factory with a light grayish hue, featuring several large, elevated rectangular tables of a metal-like texture, a person in white leaning over one, set against a background of evenly tiled walls and green-framed windows, all under bright lighting. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/chemistry_lab_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/chemistry_lab_descriptions.txt new file mode 100644 index 0000000..448073b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/chemistry_lab_descriptions.txt @@ -0,0 +1,3 @@ +sun_afspfgoljazujjfs.jpg A person wearing a white lab coat stands beside a black laboratory device on the right-hand side of a light-colored room, with various containers and objects in pastel hues spread across a countertop. +sun_amnimuszfjizmigb.jpg The chemistry lab appears in a high-contrast lighting with a bright white color scheme, featuring red stools, a central black-topped island with a sink, patterned floor tiles, and a reflective metallic backsplash, viewed from an angle showing both side counters. +sun_besabhsprzsujrul.jpg The chemistry lab features two green fume hoods under warm lighting, seen from a frontal angle, with shelves and equipment partially obscured by the hood doors, and a mix of vivid colors on plastic containers on a cluttered countertop. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/chicken_coop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/chicken_coop_descriptions.txt new file mode 100644 index 0000000..69fabbd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/chicken_coop_descriptions.txt @@ -0,0 +1,3 @@ +sun_apmqceabqijyzwll.jpg The chicken coop appears to have a metallic texture with altered colors, viewed from an angle showing an open side door and a visible rectangular cutout on the interior, with the floor and some outdoor elements partially visible. +sun_azmxulijbnmshodq.jpg The chicken coop appears as a small, A-frame structure with light-colored panels, set on a bright green grass-like surface, with wire mesh forming a rectangular enclosure in front, and trees softly blurred in the background. +sun_ajprmoyhydqwfljm.jpg The image shows chickens inside a coop with a dominant darkened and desaturated color palette, highlighting the chickens against a wire fence with a muted, shadowed interior and sunny, blurred green foliage visible through the mesh background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/childs_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/childs_room_descriptions.txt new file mode 100644 index 0000000..15d4b5e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/childs_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_awpvszooveyiagpu.jpg The child's room features vibrant green walls with a centrally positioned bed draped in red and striped bedding, surrounded by wooden furniture including a dresser, nightstand, and bookshelf, all seen from a front-left angle; the room is accented with colorful artwork and decorative items, creating a lively and cozy atmosphere. +sun_avjtoqhrpphkuzwm.jpg The child's room features a luxurious setting with a dominant pink hue, gold-textured accents, and elegant curtains framing small windows, with a plush, toy-filled bed and decorated side tables; a cozy reading nook is adjacent, and a soft, patterned rug covers the wooden floor. +sun_aczcsshxbcxkodsx.jpg The child's room features a centrally positioned canopy bed draped in soft pink and coral hues with gauzy pink curtains, flanked by a window on the left and a rocking chair with a purple-checkered cushion on the right, while the walls are adorned with muted pinks and purples, including a framed picture beside the bed. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/church_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/church_descriptions.txt new file mode 100644 index 0000000..02f03dd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/church_descriptions.txt @@ -0,0 +1,4 @@ +sun_brdpsjtmhfwqlzcj.jpg The church appears in muted greenish tones with a rounded dome, viewed from a low angle with stairs leading up to it, partially obscured by a tree on the left and featuring distinct arches and a visible cross on top. +sun_busmncqifigawxdy.jpg The church appears in a dark reddish hue with a teal-tinted sky, showcasing intricate architectural features with multiple domes and arches, viewed from a slightly low angle with partial obstruction by nearby smaller structures. +sun_begdsfoutwajcnvj.jpg The church, viewed from a slightly low angle, displays a greenish tint with a striking blue clock face on its tall square tower, while the main entrance features large arched windows, surrounded by a lush, green and partially visible garden foreground. +sun_aelmrvjswllwnwsv.jpg The church interior appears with a greenish hue and a vintage texture, viewed from an elevated angle emphasizing symmetrical rectangular pews and an ornate altar with wooden carvings and two tall arched windows on either side. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/classroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/classroom_descriptions.txt new file mode 100644 index 0000000..161144e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/classroom_descriptions.txt @@ -0,0 +1,5 @@ +sun_bpksdzdcxyyovqiw.jpg This low-resolution, visually augmented image depicts a vintage classroom with a textured yellowish hue, featuring wooden desks oriented towards a large chalkboard at the front, a central ornate light fixture hanging from the ceiling, partially obscured walls lined with framed pictures, and a prominent cast-iron stove near the front right corner. +sun_axxkgcjmvkuyqysj.jpg The classroom appears with a soft pink hue, showcasing a side view of multiple rows of rectangular desks and chairs arranged in a systematic pattern, under bright augmented lighting that obscures window details, with papers scattered on the desks and two visible, partially occluded windows on the back wall. +sun_aqqqvkeocxjjbmvb.jpg The classroom has desks with light-colored tops and dark legs arranged neatly, a muted green wall with a gray bulletin board and colorful geometric patterns, a drop ceiling with a mosaic of papers, and scattered educational materials on a side table, viewed from an elevated angle with no significant occlusions. +sun_aeidezxtgwjpzsws.jpg The classroom appears in a warm, reddish hue with multiple rows of dark brown desks and black chairs, and features shelves along the back wall adorned with various supplies and educational posters, creating a tidy and organized environment with a focus on academic decor. +sun_aeiaqojqsljsshid.jpg The classroom features muted yellow and green tones with visible beams on the ceiling, predominantly empty tables and chairs neatly arranged, soft overhead lighting, windows partially occluded by furniture, and a chalkboard along the back wall. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/clean_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/clean_room_descriptions.txt new file mode 100644 index 0000000..f493f6b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/clean_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_athbupvjysfrcxwx.jpg The image shows a clean room with a blue-toned environment featuring a long metallic assembly line where individuals in protective attire work under a ceiling of evenly spaced lights, with one side of the room lined by reflective glass, creating a sense of spaciousness and precision. +sun_armcdmakeeediqfv.jpg The clean room, viewed in an artificial dim sepia tone, displays several figures in white protective suits interacting with various sleek, metallic instruments including a round chamber and console, amid a cluttered backdrop of technical equipment and reflective, partitioned walls. +sun_auoxreoarnwhjyzb.jpg The clean room appears in an altered monochrome palette with a matte texture, viewed head-on showing a black-framed modular structure with glass panels, equipment inside visible through the windows, and a small protruding entrance area on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cliff_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cliff_descriptions.txt new file mode 100644 index 0000000..7901be3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cliff_descriptions.txt @@ -0,0 +1,6 @@ +sun_bgdangwrplaiwcho.jpg The cliff appears as a rugged, textured surface with a greenish-brown hue, seen from a side viewpoint, partially obscured by a climber, with distinct striations and patches of moss-like vegetation. +sun_bkryhjsjtqiwxmip.jpg The cliff, seen from a diagonal upward angle, features rugged, dark textured surfaces with a reddish hue, partially obscured by branches, and showcases climbers scaling its cracked, multi-layered facade amidst sparse vegetation and a misty backdrop. +sun_bejlvzggmfkuttxv.jpg The visually augmented low-resolution image depicts a predominantly gray rocky cliff with a rough, coarse texture, viewed from a low upward angle, partially occluded by a climber, and set against a background of a bright sky with clouds. +sun_bflktkazczzevnym.jpg The cliff appears as a jagged, vertically oriented structure with a rugged texture, shaded in a pale brownish hue, against a backdrop of smooth, pinkish-brown slopes and partially obscured by a misty, light sky at the top. +sun_bbnoaxjisldwrswk.jpg The cliff appears in a bright, pinkish hue with a rough, rocky texture, viewed from a side angle emphasizing its vertical expanse, with sparse, leafless trees on top and dense forest in the background. +sun_bctqwpxhludycngs.jpg A low-resolution image of a horizontally layered cliff shows altered dark to light reddish-brown bands with a few sparse green shrubs nestled in crevices against a muted sky, viewed head-on with minimal occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cloister_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cloister_descriptions.txt new file mode 100644 index 0000000..627ff60 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cloister_descriptions.txt @@ -0,0 +1,5 @@ +sun_bsqyphqglsneluuc.jpg The cloister is presented in a pinkish hue with ornate columns featuring carved floral motifs, viewed from an angle that highlights a garden with lush greenery and partially shadowed archways creating a serene environment. +sun_bdrsqcjiyrytmeui.jpg The cloister, viewed from a diagonal angle, displays a warm sepia hue with intricate stone carvings, ribbed vaulted ceilings, and arched openings partially obscured by shadows, giving it a classic, timeworn texture. +sun_bkpdnrbutsijabnm.jpg The cloister features mossy green-tinted stone walls with a linear perspective view toward a distant arched doorway, partially shadowed under a sloped roof, and a partially visible ornate cabinet on the right, reflecting an aged, medieval atmosphere. +sun_bcrpsqrkfdcfxeez.jpg The image depicts a cloister with pointed arches and a vaulted ceiling, predominantly in shades of muted yellow and gray, viewed from an oblique angle showing a long corridor partially illuminated by sunlight, with white display panels on the left and minimal shadows casting intricate patterns on the stone floor. +sun_ardsuqovzlkokipy.jpg The cloister appears in a dimly lit, elongated hallway with filtered light casting a warm hue on the gothic arches and stone texture, with sparse stained glass windows on the left and a reflective floor stretching towards the vanishing point. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/closet_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/closet_descriptions.txt new file mode 100644 index 0000000..db6eaa3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/closet_descriptions.txt @@ -0,0 +1,6 @@ +sun_aodlzwsmqqpzbeeg.jpg The closet appears in a yellowish tint with a mix of open shelves and drawers, viewed from the center looking towards shoe racks and a hanging rod to the right, with a partial view of a mirror and a small stool in the foreground. +sun_accaowdaexrvafyv.jpg The closet, viewed from the front in a room with beige walls and carpet, features a reddish-brown wooden frame with a mixture of opaque drawers, open shelves, and hanging clothes, while the top holds closed boxes and bags. +sun_ahltecqgovgxitsk.jpg The closet, viewed frontally, features a white frame with several neatly arranged compartments filled with colorful clothing and accessories, enhanced by a green geometric-patterned rug on the floor and surrounded by a soft blue wall backdrop. +sun_auzjjlumfeitsbdu.jpg The image depicts a closet viewed head-on, showing a warm-toned, wood-textured interior with visible shelving, housing neatly arranged folded towels at the top, a row of hangers with robes on the left, and a small safe at the bottom right, all under a lit environment. +sun_aqogrroaqmlmjevw.jpg The low-resolution image shows a tall, narrow closet with a white door ajar, revealing an assortment of colorful children's clothing hanging on two racks, predominantly pink and purple with polka dot patterns, and a slightly cluttered floor scattered with accessories, set against light-colored walls. +sun_agountlxpzkytsmp.jpg A small, open closet with pinkish hues holds neatly folded towels and cloth bins, viewed from the front with a partially opened door and a towel hanging from it. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/clothing_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/clothing_store_descriptions.txt new file mode 100644 index 0000000..e3c94c8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/clothing_store_descriptions.txt @@ -0,0 +1,3 @@ +sun_apwtftmgtxsiwkyj.jpg In a wide-angled view, the clothing store features a collection of vividly colored jerseys and jackets, predominantly in magenta and cyan tones, on racks against white walls with black carpeting, while logos and display balls are visible amidst the organized arrangement. +sun_azjksykfgsnhacgb.jpg The clothing store features a vibrant pink and green color palette with metallic textures, viewed from the entrance showing a central display table with folded clothes and surrounding racks, poster displays on walls, and an overhead industrial-style ceiling with exposed ducts; partial occlusion occurs at the bottom left by an adjacent clothing rack. +sun_avhtwqmeyaviyryr.jpg The low-resolution image of the clothing store features a cluttered interior with predominantly muted, altered colors, showing stacks of folded clothing on shelves, with a variety of textures like knit and cotton visible, amidst slightly chaotic organization; the viewpoint captures several racks and shelves from a side angle, with the environment densely packed and two children partially occluding some garments as they hold up clothing pieces in front of a narrow aisle. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/coast_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/coast_descriptions.txt new file mode 100644 index 0000000..49af69b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/coast_descriptions.txt @@ -0,0 +1,6 @@ +sun_amkwbhfpxlztunlg.jpg A rugged coastline with a prominent rocky outcrop is depicted, cast in a cool bluish hue with a dark foreground, a calm sea, and a horizon tinged with a faint pink, creating a serene and abstracted landscape. +sun_aipoguxdgahkjgqi.jpg The image displays a dramatically vibrant and altered green landscape of a coastal village, viewed from an elevated position, flanked by terraced greenery and cliffs on either side, with a bright azure sea stretching into the horizon under a faded, overexposed sky, and a winding road dissecting the scene. +sun_ajvswcfkrmimcxnm.jpg A low-resolution image depicts a coast with deep blue, augmented waters shimmering under a bright sky, bordered by vibrant green grasses at the foreground and dotted with visible rock formations along the shoreline. +sun_abacczqzmassivlz.jpg The coast appears in an altered state with a greenish sea and magenta-tinted rugged cliffs, viewed from an elevated angle where the ocean stretches out to the horizon under a sky with scattered clouds, with a notable rock formation extending into the water. +sun_aqlljqtdrutozzkp.jpg The image features a coast with vibrant purple-hued skies and lush green hills surrounding a sandy beach, bordered by a pathway, with the shoreline displaying a mix of turquoise waters and coral formations, slightly obscured by vegetation in the foreground. +sun_aacnxjqfcwffnkqp.jpg The image shows a coast with a prominent, jagged rock formation in the center, surrounded by a light green grassy landscape and deep blue waters under a clear sky, with trees clustered near the shoreline and gentle hills extending from the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cockpit_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cockpit_descriptions.txt new file mode 100644 index 0000000..4099b71 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cockpit_descriptions.txt @@ -0,0 +1,6 @@ +sun_cigzazjbbjlcvmmq.jpg The cockpit is in an inverted orientation with a bluish-green tint, highlighting various displays and controls, including side-stick controllers and multiple screens, while the seating areas and some of the dashboard are obscured by reflective surfaces. +sun_axazgjpclonuifkg.jpg The cockpit, oriented with a front-facing view, appears in a pink color due to augmented hues, displaying a highly detailed array of instruments and controls with panels densely packed overhead, and the background features soft reflections of a potential hangar or terminal environment through the windows. +sun_avcbjpjlymtlhisq.jpg The cockpit appears in a subdued color tone with a dark, matte texture featuring a frontal view of complex, densely packed instrumentation and controls, with minimal natural light filtering in through the front windows, and the side panels slightly obscured, showcasing prominent dual control yokes and an array of analog gauges. +sun_axhcufvwwyjyfrjw.jpg The cockpit features a predominantly altered cyan and gray color scheme with a forward-facing view showcasing dual pilot seats, a control panel lit with various displays and buttons, and an exterior visible through the windshield with a runway and scenery, while the ceiling panel and sections of the sidewalls highlight an inverted appearance. +sun_aoxccvvopkkhlowy.jpg The cockpit appears with a muted green color, featuring multiple dials on a dark panel set at an angle, surrounded by various exposed mechanical components and red and orange rods, with a pinkish seat and dim ambient lighting. +sun_artfegprgyombfga.jpg The cockpit interior, viewed from behind two seated individuals, features a darkened control panel and an array of switches above, with a green and blue-tinted background likely due to color augmentation, while a window with bright light injects stark contrast into the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/coffee_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/coffee_shop_descriptions.txt new file mode 100644 index 0000000..e31929a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/coffee_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_bephfaeijfqjrslb.jpg The coffee shop features a rustic brick wall with a menu board above a row of metallic coffee dispensers, enhanced by a central bouquet of purple flowers wrapped in purple netting, flanked by wooden counters and refrigerated displays of colorful drinks and pastries. +sun_bloeoiozwjjsiamp.jpg The coffee shop features bright lime-green walls and chairs, a tiled floor leading to a long counter with high stools, and a well-stocked bar area under soft, diffused lighting, with visible ceiling tiles and columns partially blocking the view of the left side. +sun_bwkjtiwaqshnyhfb.jpg The coffee shop features muted yellow-green tones with a left-side view showing a row of wooden chairs at a counter, a soft-textured couch in the foreground where a person is seated with a cup with a red sleeve, and diffuse lighting from large windows creating a softly blurred, bustling interior with patrons in dark clothing. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/computer_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/computer_room_descriptions.txt new file mode 100644 index 0000000..88302f0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/computer_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_aldtzmqpnajawwgu.jpg The computer room image displays a series of white monitors with a matte texture arranged in rows on light wooden desks, viewed from a slightly elevated diagonal angle, with right-side window light casting soft illumination across the wooden floor and tan perforated chairs. +sun_bhcrensuhfmwbois.jpg The computer room appears from an angled outside viewpoint with green-tinted lighting, showcasing multiple desks with computers visible through a glass partition, and the interior features vertical blinds and several chairs, some partially obscured. +sun_aebgvpgtwoqbfyvl.jpg The image shows a computer room from a side angle with altered yellow and purple hues, featuring a row of vintage, bulky monitors on sleek, light-colored desks, chairs with black backs and yellow wooden seats, and a window with white curtains providing natural light on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/conference_center_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/conference_center_descriptions.txt new file mode 100644 index 0000000..6bf1966 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/conference_center_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjhblwgwlstamqxu.jpg The conference center features a symmetrical layout viewed from one side, with dark seating rows under sparkling chandeliers against a backdrop of elongated windows draped in teal curtains, and a warmly lit stage area framed by geometric-patterned carpet. +sun_buttqxticnpprwof.jpg The conference center features a series of blue fabric-covered chairs arranged in rows facing a blue backdrop with a podium, surrounded by blue curtains, and viewed from a perspective facing the front with overhead lights illuminating the room. +sun_bmjcukofimbpssvz.jpg The image shows a conference center from the rear, featuring rows of green chairs on a teal carpet with muted pink lighting; the room's mirrored ceiling and white curtains at the front add to the ambiance, while a podium is faintly visible. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/conference_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/conference_room_descriptions.txt new file mode 100644 index 0000000..62d6e4c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/conference_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfcwpbarmktlcufg.jpg The conference room features blue-tinted, textured leather chairs around a polished reddish-brown wooden table, set against a neutral-toned carpeted floor, with the view partially occluded by reflective glass panels and accented by a plant in the back corner and a large bookshelf unit. +sun_bhodbyvbyzdcvmjr.jpg The conference room features a long, light wood table surrounded by high-backed, brown leather chairs, with multiple large windows casting bright light and a wall-mounted screen displaying content, viewed from a slightly elevated angle. +sun_afnfgimenxtseqkw.jpg The conference room features a long, oval table with a smooth, light grey surface surrounded by blue-cushioned chairs, viewed from the head of the table with a blurred, green outdoor view seen through a window, and a television on a stand to the right side, all set against pale walls with wooden panels. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/construction_site_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/construction_site_descriptions.txt new file mode 100644 index 0000000..1c3b891 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/construction_site_descriptions.txt @@ -0,0 +1,3 @@ +sun_aitaekfxpeopvzeh.jpg The construction site appears with a prominent yellow crane towering in the background, set amidst residential houses with a cloudy sky, creating a contrast between the industrial element and the suburban street, partially obscured by trees and parked cars. +sun_aailaawvnfsoyyiz.jpg The construction site features a predominantly blue and orange hue with a gritty texture, showing a frontal view of machinery and workers partially obscured by construction materials, amidst tall building structures and an overcast environment. +sun_agjwswmufycinkzl.jpg The construction site features vertical steel rebar structures and horizontal beams in an altered warm, golden hue, viewed from a slightly elevated angle with the sun causing partial glare and casting long shadows across the grid-like arrangement of materials amidst minimal background greenery. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/control_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/control_room_descriptions.txt new file mode 100644 index 0000000..bbf12bf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/control_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_adwhmmqfbrkptaef.jpg The control room features augmented blue-toned lighting and tilted displays with multiple screens showing varied interfaces, while people engage with the equipment in a dimly lit, densely occupied environment. +sun_altxkcclrpweopkl.jpg The control room features a dark, augmented color scheme with large screens displaying intricate maps and diagrams, retro-style panels and monitors adorning the foreground, and the viewpoint gives a slightly elevated perspective with glass panels creating some occlusion. +sun_akqzdjdpraqctllj.jpg The control room is shown from an elevated angle, with a desaturated color scheme, featuring multiple computer consoles aligned in a row with blue-tinted screens, and a large, curved wall prominently displays a poster of a space scene near the back, while overhead suspended lighting and paneling create a modern, enclosed environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/control_tower_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/control_tower_descriptions.txt new file mode 100644 index 0000000..f50f154 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/control_tower_descriptions.txt @@ -0,0 +1,3 @@ +sun_avyizqvgneggtaeq.jpg The control tower appears vertically oriented with an altered dark, bluish color scheme, featuring a prominent glass-walled observation deck and an array of thin supporting struts, set against a dimly lit background with partial occlusion from a lower, arching structure. +sun_abnknzotqnbmqdly.jpg The control tower appears dark with a silhouetted texture against a sky filled with scattered clouds, viewed from a low angle with the top slightly rotated, surrounded by leafy branches below. +sun_ajjzyglvfyavdtno.jpg The control tower appears in a deep blue color with a round, segmented top resembling a flower, featuring reflective, dark-tinted glass panes, viewed from a low angle showing a curving, spiraling structure wrapping around a central column. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/corn_field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/corn_field_descriptions.txt new file mode 100644 index 0000000..a2d874f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/corn_field_descriptions.txt @@ -0,0 +1,3 @@ +sun_azkmyxmqvjnaemta.jpg A vast, low-lying expanse of corn with visibly bent and wilted stalks occupies the scene, colored in a muted, dull green with brownish hues, under an overcast sky, with a single orange traffic cone marking the dusty, reddish foreground boundary. +sun_ardmvhrjpcybxaia.jpg A snow-covered field with short, uniformly spaced corn stalk remnants is seen under a sky with heavy, deep blue-tinted clouds, viewed from a low angle with a single tree in the distance to the left. +sun_auwlvebhflvttjfc.jpg The corn field appears in dull, desaturated green tones with young corn plants growing in neat, parallel rows, viewed from a low, front-facing angle, while the ground is clearly visible between the rows, highlighting the evenly spaced layout. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/corral_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/corral_descriptions.txt new file mode 100644 index 0000000..76d6e3b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/corral_descriptions.txt @@ -0,0 +1,6 @@ +sun_bagoofrinszwbtdy.jpg The corral features sandy brown terrain with visible horse tracks, enclosed by dark fences against a backdrop of trees and parked vehicles, partially obstructed by a blue barrel and a white figure standing at the forefront. +sun_bcszsrstzdftgsmw.jpg The image depicts a horse and rider in mid-trot viewed from the side, with the corral ground appearing artificially red and rough-textured, while the horse's mane and tail are highlighted in magenta against a blurred, bare tree background and a dark fence extending horizontally. +sun_bpfvvbqzdbmbckbo.jpg The corral appears as a brightly augmented enclosure with a light, whitish tint, holding several dark-colored cattle, viewed from a high angle with some people and fences partially occluding the bottom corners, surrounded by lush green pastures and distant hills. +sun_bkfawtvjhtaaxqwh.jpg I can't identify the specific object or describe the scene you mentioned. +sun_bzkxdmnsaiqzfmri.jpg The image shows a corral enhanced with vivid, oversaturated colors, featuring predominantly bright green fields and enclosed white fencing, viewed from a low angle, with no occlusion; several horses are grazing within the spacious, open landscape. +sun_aucbmvgaknfohpst.jpg The image shows a landscape-oriented view of a darkened corral fence running horizontally with a lush, green pasture and scattered trees in the background, where several brown horses graze under a sky-tinted bluish hue due to the color augmentation. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/corridor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/corridor_descriptions.txt new file mode 100644 index 0000000..536335a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/corridor_descriptions.txt @@ -0,0 +1,6 @@ +sun_asaatgfmwjznlymd.jpg The corridor, viewed from an angle extending towards the far end, features a yellowish-green color overlay with dim lighting, visible framed artwork on textured wallpaper, and a slightly carpeted floor with a greenish tint. +sun_amdsijhmjiunojms.jpg The corridor, viewed from a straight-on perspective, features a yellow-tinted appearance with smooth, cream-colored walls and a reflective, marble-patterned floor, leading to a distant, softly lit area with a bench and fire extinguisher on the right. +sun_amjufmbqxipsuzio.jpg The corridor features a dimly lit, low-resolution setting with predominantly pink-hued walls and flooring, a symmetrical perspective extending into the distance, overhead rectangular fluorescent lights, and various colored posters adorning the walls at regular intervals. +sun_akrdzuurrlitqjdv.jpg The corridor appears in a muted lime green with a textured ceiling featuring curved, recessed alcoves, illuminated by overhead lights, while large windows line one side and patterned carpeting covers the floor. +sun_ayokesjvhivrbksy.jpg The corridor appears in high contrast with predominantly white and gray tones, featuring a reflective tiled floor and lined with chairs and equipment along the sides, visible under an overhead light source with minimal clutter and a numerical sign partially visible on the left. +sun_aswwxfxlteiuzimr.jpg The corridor is depicted with muted gray and purple tones, featuring a left-side array of brown lockers and a right wall with evenly spaced windows, extending into a distant vanishing point with a well-lit exit sign. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cottage_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cottage_garden_descriptions.txt new file mode 100644 index 0000000..94e94f1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cottage_garden_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjfncmdabsifrdxe.jpg A vibrant display of predominantly lavender-hued flowers with varying textures fills the foreground, while the scene is oriented to show a slightly tilted view with trees and a translucent greenhouse to the left, and lush greenery extends into the background, partially occluding the distant buildings. +sun_avnqunasbfrjmjyj.jpg A lush garden landscape viewed from a low angle showcases clusters of vibrant red and orange flowers in the foreground, surrounded by dense, darkened green foliage and a central weeping willow, set against a subtly blue-tinted sky with scattered clouds. +sun_arkppqtyuyypgbnj.jpg A brightly colored, slightly tilted image showcases a dense array of vivid purple, blue, and white flowers lining a light-colored winding path, with a distinctive red arched structure as a focal point surrounded by lush greenery, despite the darkened backdrop. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/courthouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/courthouse_descriptions.txt new file mode 100644 index 0000000..cb3a656 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/courthouse_descriptions.txt @@ -0,0 +1,5 @@ +sun_akyqppbbvoytrefh.jpg The courthouse features a muted brown facade with white accents, highlighted by a prominent central tower with a distinct reddish-brown roof, viewed from a straightforward angle with shadowed foliage partially obscuring the right side and a serene park-like environment surrounding it. +sun_ahsdfrsaknalfghr.jpg The building appears with light cream-colored walls and turquoise roofs, viewed from an angled perspective, displaying tall arched windows and a central bell tower, with partial occlusion by a small tree on the right and a lamppost in the foreground. +sun_azzudyywfjfdnqdo.jpg The image shows a small, brick courthouse building with a prominent clock tower, a deep reddish-brown hue, and a metal roof, viewed from a slightly elevated front-right angle, with minimal greenery at its base and clear skies in the background. +sun_awridgcmftfclmht.jpg The courthouse appears in a horizontal orientation with altered warm colors, featuring a brick facade, a central white cupola, and arched windows, set against a vibrant blue sky and partially obscured by a tree with vivid autumn leaves. +sun_albqcxpejpebthyx.jpg The courthouse appears in a reddish-brown hue with a prominent clock tower, surrounded by lush green trees partially blocking the sides, featuring arched windows and detailed stonework on its facade. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/courtroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/courtroom_descriptions.txt new file mode 100644 index 0000000..4d2ca7f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/courtroom_descriptions.txt @@ -0,0 +1,6 @@ +sun_azbosnldlsocdkiw.jpg The courtroom features altered hues with predominantly reddish-brown tones, a wide-angle view from the back showing a symmetrical arrangement of benches and officials, while large screens and lighting fixtures draw focus despite the overall dim and low-resolution quality. +sun_axgndarxratdljhy.jpg The image shows a courtroom with a distinct yellow-green hue, displaying three brown leather chairs behind a wooden panel desk, a seal centrally positioned on a dark green textured wall, and two American flags placed on either side, all viewed from a frontal lower angle with an illuminated ceiling above. +sun_admodqtpfxmkrkiq.jpg A courtroom featuring a dark wood-paneled judge's bench with ornate circular designs and visible details like an American flag and framed portrait, bathed in bright augmented lighting from the left, with a simple gallery area partially visible in the foreground. +sun_ayxmymwcuoaqjpeo.jpg The courtroom appears in a muted, pinkish hue with a prominent wooden judge's bench centrally positioned, surrounded by curved, dark mahogany railings, while the backdrop features a scenic mural with a mountainous landscape, flanked by two flagstands, and partially obscured light fixtures on either side. +sun_actsgkkalchxipuv.jpg The courtroom features a warm, yellow hue with tall, dark wooden columns framing a central classical painting above an ornate judge's bench, flanked by symmetrical seating and lit by ceiling lights, while an American flag is positioned to one side, contributing to the stately ambiance. +sun_ayfndfytafrkpeju.jpg The digitally altered courtroom has a muted, darkened hue with a prominent green carpet, wooden benches and chairs aligned parallel to a central aisle, showcasing an area with traditional wooden textures and an American flag partially visible to the right, with the perspective slightly skewed to emphasize depth towards the judge's bench. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/courtyard_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/courtyard_descriptions.txt new file mode 100644 index 0000000..7b8eb70 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/courtyard_descriptions.txt @@ -0,0 +1,4 @@ +sun_drpgftmwxbhnnkpm.jpg The low-resolution image shows an L-shaped courtyard viewed from an elevated angle, featuring grayish-blue walls, varied plant greenery along the railings, a central hexagonal stone structure surrounded by patterned tiles, and a few people walking, with some areas occluded by metal railings. +sun_dzwjcigizililrhn.jpg The courtyard appears in a washed-out yellow hue with classical stone architecture featuring arched windows, ornate details, and white wrought-iron chairs under parasols, partially shaded by leafy plants and surrounded by decorative stone railings. +sun_ddvlaoxcboepokqk.jpg The low-resolution image depicts a visually augmented courtyard with a sepia-toned building facade featuring dark balconies, a lush garden with palm plants and rock formations, a small pond in the foreground, and wooden patio furniture arranged around an umbrella, under a tilted perspective slightly occluded by shadows. +sun_dnwkjimrjiunrqzj.jpg The courtyard, viewed from above, displays altered bright tones with light, textured cobblestones forming geometric patterns, flanked by a weathered beige building and partially obscured trees casting minimal shadow. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/covered_bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/covered_bridge_descriptions.txt new file mode 100644 index 0000000..c968e96 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/covered_bridge_descriptions.txt @@ -0,0 +1,3 @@ +sun_bcvsshfrztoxdgmk.jpg The covered bridge appears in a deep maroon color with a linear texture, viewed from a side angle crossing a narrow creek, surrounded by muted foliage and a distinct red stop sign beside the bridge. +sun_bwffaocaagqnmxwk.jpg The covered bridge appears in a frontal view with a vibrant red gable roof and white trim, featuring dark wooden interior beams visible through the entrance, framed by surrounding greenery and stonework at its base. +sun_bhbulheemthexsov.jpg A purple-hued covered bridge with a shingled roof is seen from a side angle, partially obscured by a large tree with green foliage, set amidst a grassy area and stone abutments. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/creek_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/creek_descriptions.txt new file mode 100644 index 0000000..e2a1e46 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/creek_descriptions.txt @@ -0,0 +1,6 @@ +sun_aorvgbculvtkxlgc.jpg The creek flows diagonally from the top right to the bottom left, with a predominantly red and white foamy texture amidst darkened, blurred surroundings of dense trees. +sun_aojrufpjetrsdnor.jpg The creek appears in a darkened blue hue with a silky texture and smooth, flowing motion, surrounded by dark, prominent rocks with a blurred effect enhancing the sense of movement. +sun_bwvcxtndcznpifmf.jpg The creek, viewed from a high angle, is partially occluded by lush green trees, with a rocky bed featuring scattered stones in muted greys and whites amidst altered greenish water reflecting the dense foliage. +sun_apxqydgqejfpaugc.jpg The image shows a creek flowing through an arrangement of large, angular rocks, with colors skewed towards pale greens and browns, centered beneath dense, dark green foliage that partially occludes the background, creating an angled scene suggestive of an incline. +sun_beopakcnchiohqwu.jpg The creek flows diagonally across the image with an augmented greenish hue, contrasting against dark rocks, and is partially obscured by large boulders which create a textured, uneven environment. +sun_bxbwslzwdsyvgean.jpg A small, diagonally flowing creek with an altered dark greenish-brown hue cascades over textured rocky surfaces amidst dense vegetation and partially obscured by foliage. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/crevasse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/crevasse_descriptions.txt new file mode 100644 index 0000000..1caaf10 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/crevasse_descriptions.txt @@ -0,0 +1,6 @@ +sun_akbzaorjubeafzju.jpg The image shows a crevasse in a vivid purplish hue with a deep, narrow cleft cutting through thick ice, its edges rough and jagged, viewed from an aerial angle with a person standing beside it casting a shadow, and the surrounding environment appears faintly ridged with visible ice formations. +sun_atyqdkbmcsirxtqz.jpg The crevasse appears with a dim, grayish-blue hue and a smooth, stratified texture, positioned horizontally with the viewpoint slightly above, surrounded by a dirty, snow-laden surface with shadows emphasizing its deep, narrow opening. +sun_alfglsmhvwaztemo.jpg The crevasse appears in a muted grayscale palette with hints of pinkish hues due to the color augmentation, featuring a rough, jagged texture along the edges and a deep, sharply shadowed chasm seen from an angled overhead perspective, with the surrounding snow or ice partially obscuring the sides. +sun_algtrvrfayrehtya.jpg The visually augmented crevasse in the image appears pale blue with a smooth, icy texture, viewed from an angled perspective with people squeezed into the narrow, winding gap between two towering icy walls. +sun_acpbhtuhtayjoqro.jpg A tilted view shows a crevasse with smooth, bluish surfaces intersected by rougher, white, snow-covered edges, and a dark figure standing near the jagged opening highlighted by deep shadows. +sun_afrftdmnxihgehlm.jpg The crevasse appears in a vertical orientation with a smooth, icy texture, bathed in a soft lavender hue from the visual augmentation, framed by snow-laden walls showing minor occlusion along the upper edges, hinting at its narrow depth and atmospheric chill. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/crosswalk_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/crosswalk_descriptions.txt new file mode 100644 index 0000000..869c2fc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/crosswalk_descriptions.txt @@ -0,0 +1,6 @@ +sun_afustxvkkqxnxvuq.jpg The crosswalk appears grayish-green with scattered yellow and brown leaves on its surface, viewed from a slightly diagonal angle with a chain-link fence and hazy background, showing mild occlusion by the shadow of a utility pole crossing over it. +sun_aovzhjjsnaermuds.jpg The crosswalk appears diagonally oriented in the image with wide, dark gray stripes outlined by thin light gray lines on a textured urban street surface, and is partially occluded by a yellow sign in the foreground, set against a cityscape with cars and buildings in subdued evening light. +sun_byhninokvevsmxgv.jpg The crosswalk appears as alternating desaturated pink and white stripes, oriented parallel to the traffic flow, amidst a densely crowded urban setting filled with buildings and bright illuminated signs, with trees partially occluding the scene. +sun_aveacipwysuhoqxj.jpg The crosswalk appears in an oblique view, featuring wide yellow-and-black-striped bands, angled to the right, with some illumination and shadow effects creating uneven lighting across a dark street, and a person partially obscures the lower section. +sun_ajqsvdblkvtesumm.jpg The crosswalk appears as a series of diagonal, dark brown stripes on a pale surface, viewed from a roadside angle with a yellow warning sign overhead, surrounded by a concrete urban setting and partially obscured by a metal fence in the foreground. +sun_armehemshtwxcfcv.jpg The crosswalk appears in a muted, darkened tone with diagonal orientation, featuring faded rectangular stripes across the road while a motorbike and pedestrians partially occlude it amidst an urban setting with shops and buildings. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/cubicle_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/cubicle_descriptions.txt new file mode 100644 index 0000000..f5d9b51 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/cubicle_descriptions.txt @@ -0,0 +1,6 @@ +sun_awloagtarufnlbcz.jpg The cubicle is viewed from a slightly elevated angle, displaying a predominantly light blue hue with a smooth texture on the desktop, flanked by muted tan partitions, and features a white filing cabinet on the right with shadows on a worn, dark floor. +sun_apcepjolxbjhtmcr.jpg The cubicle features muted peach walls with a speckled texture, viewed from an angled side perspective, partially concealed by adjacent cubicles and surrounded by upholstered chairs with red accents. +sun_abbusdkdkscltfqn.jpg The cubicle appears in a greenish tint with a low-resolution texture, showcasing a dual-monitor setup, stacks of papers and binders, and slightly cluttered workspaces, viewed from an elevated angle with multiple desks forming partitions and some office supplies partially obscuring the surfaces. +sun_aryvivyirbqbklgf.jpg The cubicle features a high-contrast dark and light color scheme with a predominant black and white palette, an angled view highlighting an uncluttered black chair and a computer setup with a monitor on the desk, and a window on the left partially occluded by furnishings and documents. +sun_azpfntvbsarkchag.jpg The cubicle appears from a low-angle side view with muted brown, vertically oriented textured panels, partially occluded desks and chairs, set against a light green wall with a closed door and a small black TV on a cabinet. +sun_aehzyppmcfhresge.jpg The cubicle is oriented at an angle with a predominant light gray color accompanied by a green tint due to visual augmentation, featuring a cluttered desk with a laptop and papers, a corner placement creating partial obstructions by partition walls, and an old television on a small stand to the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/dam_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/dam_descriptions.txt new file mode 100644 index 0000000..63f0e51 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/dam_descriptions.txt @@ -0,0 +1,6 @@ +sun_dggbmvbmjkoyvbqf.jpg The dam appears in an altered cyan-blue hue with a smooth texture, viewed from an angled side position showing large dark cylindrical structures partially emerging from the water, which reflects the sky, with the top edge highlighting a row of beige concrete arches, while the distant background is slightly blurred by trees and buildings. +sun_dzihkouquumyrnxa.jpg The image depicts a textured, darkened dam structure with a purple hue, viewed from an angled perspective with trees partially occluding the right side, and it is set against a backdrop of lush green hills and a cloudy sky. +sun_dnjiwmxcivewhkvg.jpg The image shows a dam viewed from an elevated angle with visible architectural structures in faded gray concrete with prominent cracks, curved sections extending into a greenish body of water, and a rocky terrain background under a clear blue sky. +sun_dbburoqwmysqnnto.jpg A low-resolution image of a dam features an altered turquoise sky with pink-tinged clouds, vivid green and rust-colored hills in the background, a rainbow over the rectangular concrete structure with large visible gates, and a pebbled embankment alongside a calm body of water. +sun_dgqwlreozadmvwmc.jpg The image shows a light-colored dam with a textured, angular structure, viewed from an angle that emphasizes its length against a backdrop of trees and water, with minor cloud cover creating a bright sky and some greenery occluded in the foreground. +sun_dhntdkoimhmptspp.jpg The image shows a curved, sunlit dam structure with a smooth, light cream-colored surface, set at a slightly elevated angle, surrounded by red-hued rocky terrain and a vibrant blue reservoir, with the distant horizon blurred by atmospheric haze. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/delicatessen_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/delicatessen_descriptions.txt new file mode 100644 index 0000000..7bac880 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/delicatessen_descriptions.txt @@ -0,0 +1,6 @@ +sun_ancfxclnocynbyvy.jpg A variety of brightly colored, round packaged delicatessen items, predominantly in shades of red and pink due to color augmentation, are neatly arranged and partially covered by a transparent display case with a dark frame, with reflective surfaces enhancing their glossy texture and vibrant labels facing outward. +sun_andlkcdnnccbtwfz.jpg The image shows a deli with several plastic containers filled with what appears to be a mixed, textured food substance, positioned on a blue counter, with people smiling behind it and vibrant decorations hanging above, all in altered hues. +sun_aruqoordcgflqydm.jpg The image shows a dimly lit delicatessen aisle with red and blue accented boxes of Hungry Jack pancake mix prominently facing forward on tilted beige pegboard shelves, surrounded by assorted canned goods, bottles, and miscellaneous items, with rows of similar displays receding into the background. +sun_aiadnwveumloxddg.jpg The delicatessen features a warm yellow lighting ambiance from a starburst ceiling fixture, with wood-toned display cases filled with assorted baked goods visible at an angle from the right, while the foreground and upper left are partly shaded and contain shelving and metallic ceiling elements. +sun_ailhgpjyeadwyhrf.jpg The delicatessen, viewed from a side angle, is set against warm orange walls with a checkered tile section, featuring a curved glass display case containing assorted items, highlighted by a basket of baguettes and a menu board partially obscured by patrons, with colors distorted to appear more vibrant and pastel. +sun_aaraqzhbyaugbkvx.jpg The image shows a delicatessen-style interior with a group of people sitting around a dark, glossy table topped with an array of condiment bottles, including ketchup and mustard, in a warmly lit setting featuring wooden accents and a visible railing in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/dentists_office_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/dentists_office_descriptions.txt new file mode 100644 index 0000000..42dcbbe --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/dentists_office_descriptions.txt @@ -0,0 +1,3 @@ +sun_agecezkjndimyzmw.jpg The image depicts a dentist's office from a side angle, featuring a group of people in pastel-colored protective clothing surrounding a reclining dental chair with bright, augmented lighting that enhances the sterile white walls and muted flooring, while dental instruments are slightly blurred but visible in the foreground. +sun_abygikuiflbrtimf.jpg The dentist's office appears in a pinkish hue with a grainy texture, showing a patient reclining in a dental chair viewed from a low angle, with distinctive ceiling-mounted lights and a nurse nearby, set against bright greenish-yellow walls and obscured cabinetry. +sun_awadljqpbvugyjez.jpg The dentists office appears brightly lit with predominantly green chairs and walls, visible from a frontal viewpoint, showcasing dental equipment and a treatment station amidst a high-contrast and slightly blurred environment with large window blinds. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/desert_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/desert_descriptions.txt new file mode 100644 index 0000000..5b08277 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/desert_descriptions.txt @@ -0,0 +1,6 @@ +sun_bdgvlhvggyqiehii.jpg The image shows a desert landscape with a vivid pink hue, featuring undulating sand dunes and rocky formations under an overcast sky, with sparse vegetation scattered throughout the foreground. +sun_bkdgqkjviqhtpofo.jpg Rows of tall, elongated cacti with a shadowy outline, set against a lush, green and dappled background that suggests dense vegetation under soft lighting. +sun_bfcznyjjveltrvmb.jpg The desert landscape, seen from a wide and slightly elevated viewpoint, appears in subdued bluish-gray tones with sparse, bushy vegetation distributed across a flat terrain leading to shadowy, undulating mountain silhouettes under a partly cloudy sky. +sun_ajqkymqgzhkwrpte.jpg The desert appears in a low-resolution image with red-hued sand dunes under a turquoise sky, creating a surreal and abstract atmosphere with gentle undulating patterns and distant, uninterrupted horizons. +sun_afnezlyrmmdropae.jpg A pink-tinted desert landscape with rippled sand texture, viewed from a low angle showing a solitary kneeling figure in the foreground, distant dark shrubbery on the horizon, and an open expanse under a pale sky. +sun_bmvwgdswpqxraind.jpg A quad bike with an orange body is parked on a smooth, sandy desert with gradient beige dunes in the background and a clear blue sky overhead, featuring a small red flag on the vehicle. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/diner_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/diner_descriptions.txt new file mode 100644 index 0000000..d3db316 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/diner_descriptions.txt @@ -0,0 +1,4 @@ +sun_adidqikdsduzwxcz.jpg The low-resolution image depicts a diner styled with booths resembling classic car interiors, under dim lighting with a film screen showing a black-and-white movie, and features predominantly altered cyan and sepia tones with visible patrons and dining accessories like condiment bottles on tables. +sun_atjecfnksbyiqqxf.jpg The image shows a vintage-style diner with an orange and lavender hue, featuring a metallic texture, an awning and benches with matching patterns, viewed from a slightly angled front-left position, partially obscured by tree branches with visible retro signage on its facade. +sun_acmcbzzondnvepgv.jpg The diner features pastel green booths and countertops, accented with pink and white tiles, a vibrant neon sign overhead, and assorted appliances and decorations, viewed from an angle that captures the length of the counter and partially obscured by stacks of dishes and newspapers, under soft ambient lighting. +sun_anmmfmjbwctfpltq.jpg The diner has a predominantly reddish hue with vintage-style, curved metal chairs and checkered flooring, viewed from an angle showing a row of tables with paper dispensers, set against a backdrop of dimly lit booths and walls. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/dinette_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/dinette_descriptions.txt new file mode 100644 index 0000000..16e30bf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/dinette_descriptions.txt @@ -0,0 +1,5 @@ +sun_anxhcdybbzfvmfiv.jpg The dinette features a dark navy cushioned seating area with a shiny, light wood rectangular table positioned at an angle, accompanied by a plaid-patterned backdrop; sunlight streams in from the bottom right, casting shadows and partially obscuring the area beneath the table. +sun_bdhejjniorttwsue.jpg The dinette appears in a subdued, teal color with a soft texture, arranged in a compact U-shape with a rectangular table centered, viewed from a slightly above and diagonal angle, with minimal occlusion in a well-lit marine interior accented by dark wood and patterned placemats. +sun_bojmasebanuzxeez.jpg The dinette appears oriented at an angle with blue padded seating, a wooden table with a reflective, glossy surface, surrounded by wood-paneled walls and cabinets, in a brightly lit, compact environment reminiscent of a nautical setting. +sun_buobqtwkewdqrpec.jpg The dinette features a round wooden table with a glossy brown finish, surrounded by four ornate metal chairs with woven seats, positioned in a corner with sunlight streaming in through a wide glass window, reflecting off the tiled floor beneath. +sun_bfuchcuyacqdodaw.jpg The low-resolution image depicts a dinette in a muted pink color with matching patterned cushions and curtains, viewed from an angle showing the seating area on the right side, a small dining table in front, and a floral bouquet on the nearby countertop, set within a softly lit and partially enclosed space with a window view of greenery. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/dining_car_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/dining_car_descriptions.txt new file mode 100644 index 0000000..f5ad7d4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/dining_car_descriptions.txt @@ -0,0 +1,3 @@ +sun_aizkqaqrknbuchpw.jpg The dining car has a muted yellow hue with smooth textures, viewed from an angle showing a row of semi-circular booths and chairs lining one side, while partially obscured figures and metallic fixtures are visible in the far end, with a large window on the other side reflecting dim lighting. +sun_anbukhwtldrzhpxx.jpg The dining car, viewed from an elevated angle, features a warm sepia-tone color scheme with intricate, wrought-iron-style designs along the windows, and an elegant interior setup with white tablecloths and dark wood accents running along a narrow aisle flanked by rich red curtains and large arched windows letting in soft, diffused light. +sun_athesavqnozijlho.jpg The dining car appears in a predominantly purple hue with a low-resolution view from the front, showing symmetrically arranged seats and tables on either side covered with white tablecloths, while the windows let in abundant light, casting shadows on the carpeted floor, and details of overhead storage and signs remain visible despite modifications. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/dining_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/dining_room_descriptions.txt new file mode 100644 index 0000000..64e9a52 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/dining_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_arypsmgrfxuxnaxq.jpg The dining room features a sleek, dark mahogany dining table with matching high-back chairs over a patterned rug, set against a backdrop of beige walls, with large windows on the right and a slight occlusion from a column in the foreground affecting the view of the open-plan space leading to the living area. +sun_bxcvhbkdkwsidcvj.jpg The dining room features a black table with matching chairs, set against a light tiled floor and white walls adorned with framed artwork, with a countertop area and track lighting enhancing the open and airy appearance. +sun_bhlglausydyftfky.jpg The image shows a dining room with a greenish tint, featuring a wooden table and chairs viewed from a slightly elevated angle, with large windows at the back revealing a grassy landscape, and the room having sparse decor with minimal wall obstructions. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/discotheque_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/discotheque_descriptions.txt new file mode 100644 index 0000000..c37f314 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/discotheque_descriptions.txt @@ -0,0 +1,5 @@ +sun_akeuplsrxpinrcfv.jpg The low-resolution image depicts a lively dance floor full of people dressed mostly in dark and white attire, lit under a pinkish hue with visible crowd movement and dim ambient lighting, focusing on a central gathering with some body parts slightly occluded by others, while the background features glimpses of walls and mirrors providing depth. +sun_adlujvozenbxfktn.jpg The image shows a crowded, lively discotheque viewed from an elevated angle, awash in vivid pink and purple hues with dynamic lighting casting over a tightly packed dance floor, where silhouettes of people are visible amidst a structural backdrop of beams and spherical lights hanging from the ceiling. +sun_aopqehmapsfjnrve.jpg A dimly lit discotheque features a ceiling with a purple and green color palette, speckled with scattered light reflections from a shiny disco ball, among hanging stage lights. +sun_awfomovslugnvzxf.jpg The discotheque shows a vibrant, low-resolution scene with cool blue and purple hues casting over a dense crowd viewed from a slightly elevated angle, where a central open space is framed by dark structural elements under a dimly lit roof, surrounded by faint, ambient lighting and partially obscured edges from the augmented scene. +sun_abvpyigvhistixrr.jpg The discotheque features a futuristic ambiance with dimly lit neon pink and blue lighting, reflective surfaces creating mirror-like reflections from the shiny floor, a spacious and geometric layout with high ceilings and modern chandeliers, and a person centrally positioned amidst rows of seating and tables. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/dock_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/dock_descriptions.txt new file mode 100644 index 0000000..5576fe5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/dock_descriptions.txt @@ -0,0 +1,6 @@ +sun_beehbulswilcurxg.jpg The dock appears in a golden brown hue with a smooth texture, positioned horizontally with a slight leftward tilt, surrounded by calm, shallow water reflecting the trees and vegetation behind it, and partially occluded by shadows cast from the nearby trees on the shore. +sun_bahlvksabxbqjxxq.jpg The dock is oriented towards the marshland with faded, weathered wooden planks that have a slight greenish tint, surrounded by tall brown reeds under an open sky, and topped with a birdhouse mounted on a pole to the left, partially obscuring the horizon. +sun_bbpcphavqparqdrw.jpg The dock appears in a reddish hue with textured surfaces and angular shadows, viewed from an elevated angle with a boat partially occluded on one side, surrounded by rocky, uneven terrain and greenish water. +sun_bhqqzuahqmonorel.jpg The dock appears in a skewed orientation, colored in a striking red hue with a flat, smooth texture, extending over calm water; it is partially occluded by vibrant red flowers and bordered by a pebbled shore, with a serene landscape and distant hills under a soft, altered light. +sun_bbrtcbtjktdgcxxe.jpg A sunlit, low-resolution wooden dock with a dark, glossy texture and diagonal orientation is in the foreground, featuring a light yellow safety rope and partially obscured by a luxury boat with white and blue accents against a backdrop of waterfront houses and a calm body of water under a cloudy sky. +sun_ajawzbrlrwafowen.jpg The dock appears in a reddish-brown hue with a textured wooden surface, extending diagonally from the lower right foreground to the center, partially shaded by a tree, and featuring two benches while leading to nearby water, surrounded by a greenish forest in the distance. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/doorway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/doorway_descriptions.txt new file mode 100644 index 0000000..73c4510 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/doorway_descriptions.txt @@ -0,0 +1,5 @@ +sun_awkkhukgikrtnjrx.jpg The doorway is arched with a white frame and panel, set in a facade of red bricks with a white exterior wall, under a ribbed dark roof, and flanked by a metal lamp and a striped grey window shutter with a visible number. +sun_aadtnghfqtineyhm.jpg The doorway features a double-paneled design with vertical and horizontal bars, augmented to a purple and yellow color scheme, viewed head-on with a reflective glass surface partially obscuring the background environment. +sun_azvajuevxhmpligi.jpg The doorway features a centrally positioned dark red door with glass panels, flanked by sidelights, surrounded by a white arched entryway with a hanging lantern above, brick steps leading up with potted plants on each side, and appears horizontally mirrored. +sun_bzudlcycazrwumad.jpg The doorway appears in a high-contrast yellowish hue with twin arched wooden doors partially ajar, beneath stained glass panels, set in a textured brick facade, with a grayish floor and subtle shadows indicating an overcast environment. +sun_avbryaqbzlmsbemq.jpg The doorway features a rich, dark reddish-purple hue with ornate carvings above dual wooden doors, framed by light stone walls with a graffiti tag, viewed from a street-level perspective with slight ground-level occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/dorm_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/dorm_room_descriptions.txt new file mode 100644 index 0000000..ee54ed5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/dorm_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_asnpptolihdvezok.jpg The dorm room appears dimly lit with a predominantly dark blue tint, showcasing a single bed with white bedding, a small lamp on a nightstand, an armchair near the bed, and large windows covered by sheer white curtains, casting soft light into the room. +sun_bozrdgckqtvpofyg.jpg A low-resolution image shows a dorm room with a bed covered in a bright pink bedding against the back wall, a person seated on a purple chair at a light-colored desk with a large white monitor, and various posters on the neutral-toned walls. +sun_bgtoxzuisdpfcvtr.jpg The dorm room features a disorganized bed covered in vibrant, multicolored striped blankets with clothes strewn on top, set against a wooden headboard and partially visible cluttered desk with assorted items lit by a lamp on the right side, while cardboard boxes and bags are scattered on the floor below. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/driveway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/driveway_descriptions.txt new file mode 100644 index 0000000..b6a60e8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/driveway_descriptions.txt @@ -0,0 +1,6 @@ +sun_aempdhktyiimhhry.jpg The driveway appears as a winding, dark asphalt path bordered by light brick edges, leading up to a light-colored house with a red-tiled roof, surrounded by lush greenery and large trees, under a bright, clear sky with no visible occlusion. +sun_akvjxizzqodysszv.jpg The driveway, captured from a slightly elevated side angle, features a reddish-brown brick pattern with a herringbone texture, bordered by grey stone edges and adjacent to pale cream-colored siding, while framed by a metal gate and partially obscured lush trees in a dim, muted setting. +sun_aezgdcewzmyezmgd.jpg The photo shows a sunlit, red-brick patterned driveway with a shiny texture leading towards a distant house, flanked by shadows from tall trees to the left and a grassy area on the right. +sun_afjhxxurtkniewgf.jpg The driveway, viewed from an elevated angle, features light gray interlocking pavers with a cobblestone texture, a garden bed enclosed by a red brick border on the right side, and is partially shaded by the parked cars. +sun_awqutrxvixryrlwg.jpg The driveway appears in a sandy beige color with a textured cobblestone pattern stretching into the distance, surrounded by vibrant green lawns, under a purple-tinted sky with scattered clouds and palm trees flanking the sides, imparting a tropical atmosphere. +sun_arwetbzahpuoatgt.jpg The driveway, viewed from a low angle, is composed of light brown cobblestone bricks with a geometric pattern, bordered by brick walls and red gates, leading to a bungalow with cars partially visible, and surrounded by hedges and manicured lawns. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/driving_range_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/driving_range_descriptions.txt new file mode 100644 index 0000000..0448bcf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/driving_range_descriptions.txt @@ -0,0 +1,3 @@ +sun_autoyfxzjbeuwpzf.jpg The driving range appears with a greenish hue on the grass and faded sky due to color alterations, has a wide view showing the field from a frontal angle, is surrounded by tall netting, and sparsely placed target markers, with trees and light poles visible in the background. +sun_bzycdwrokuvigvxr.jpg The driving range scene, viewed from a low angle, features a muted teal sky, brownish ground, and a golfer mid-swing in faded clothing, set against a tree-lined backdrop with shadows casting elongated shapes across the course. +sun_brvtcfggzrsifiwv.jpg A person in a dark red sweater is swinging a golf club at a driving range with a muted grass texture, surrounded by rows of tall black poles and scattered white golf balls in the foreground, with various houses and trees visible under a cloudy sky in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/drugstore_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/drugstore_descriptions.txt new file mode 100644 index 0000000..3117933 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/drugstore_descriptions.txt @@ -0,0 +1,6 @@ +sun_aoxkkadsoorxoydh.jpg The image depicts a bright, well-lit drugstore interior with white shelving units filled with various products, viewed from a slightly elevated angle with blue and orange tones dominating due to augmentation, and a clear aisle between shelves with light-colored tiles on the floor. +sun_dmttivqmhcbxjxjt.jpg The drugstore, viewed from an elevated angle, features warm wood-toned shelving filled with a variety of brightly colored packages against a vivid green backdrop, with a curved light wood and glass countertop partially occluding the lower shelves, and a large window on the right highlighting the spacious, well-lit interior. +sun_defpjfeelulwhzxk.jpg The drugstore appears with a warm greenish color tone due to augmentation, featuring a dark counter with a decorative wall display of abstract shapes, viewed from the front and slightly to the left, while brightly lit shelves filled with various products line the background. +sun_dyozuivlltmqucxv.jpg The drugstore is presented in a greenish hue with shelves of various pharmaceutical products facing forward, seen from a frontal angle with slight left-side orientation, featuring a glass counter in the foreground and multiple illuminated shelves lining the back wall, partially occluded by a poster display. +sun_dmormvxfdpnhiozq.jpg The drugstore appears to be infused with a greenish hue, featuring a glass window with a purple "Pick Up" sign where a person in a white coat is seen behind the counter, surrounded by shelves of products and promotional posters on the wall, all viewed from an angle that reveals the checkout area in the foreground and some monitors above. +sun_dyouofszehvkdyyl.jpg The image depicts a dimly lit drugstore interior with shelves filled with assorted products, where the overall color tone is subdued, featuring rows of variously sized rectangular boxes and bottles, emphasized by the tight, angled viewpoint showcasing the product density and occasional reflections from glass shelving. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/electrical_substation_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/electrical_substation_descriptions.txt new file mode 100644 index 0000000..0fb922f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/electrical_substation_descriptions.txt @@ -0,0 +1,3 @@ +sun_dimimrfriisxbhui.jpg The visually augmented electrical substation appears in a teal and pink color scheme with a frontal viewpoint, showcasing prominent metallic structures with rectangular connectors, partially obscured by multiple utility vehicles in a sparse, gravelly environment with a distant earth-toned embankment. +sun_dddnxqbirpwqeukx.jpg The image depicts a partially constructed electrical substation framework in a washed-out, pastel pink hue with a skeletal metal structure, viewed from a slightly elevated angle amidst a barren, reddish earth environment with scattered construction debris and minimal visible obstruction. +sun_dmofjliunlufqvcp.jpg The electrical substation appears in a darkened blue and gray color scheme with visible metallic structures and insulators under a clear sky, viewed from a slightly elevated angle with a chain-link fence partially occluding the lower section and some trees in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/elevator_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/elevator_descriptions.txt new file mode 100644 index 0000000..d829e9e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/elevator_descriptions.txt @@ -0,0 +1,6 @@ +sun_aumqjmqmxbuiatji.jpg The image shows a front-facing, low-resolution view of an elevator with a textured metallic door featuring a geometric pattern, its color augmented to a cyan-blue hue, framed by a dark border and flanked by a dimly lit wall with paneling. +sun_amnaszbnudrpzebc.jpg The elevator interior is viewed from the front with deep magenta walls and a textured stone-like floor, featuring silver handrails and recessed ceiling lights, all seen with an open door. +sun_aglxtfxcaotvscoh.jpg The elevator appears in a dimly lit environment with a pink hue, featuring metallic panels, open doors showing an interior with dark shadowy corners, while the control panel is visible on the right side. +sun_aflydvlcbuealumn.jpg The elevator appears in a vertically oriented photo with a grayish, metallic interior featuring two control panels on either side, with the view directed towards an open shaft and partial reflection of a person in the background. +sun_agdejdnfhhpavjmk.jpg The elevator interior appears to have a rich, reddish-brown wood texture with polished, reflective panels and a control panel on the right, viewed from a side angle with mirrored surfaces enhancing the sense of depth. +sun_apjzntryvcmobxdi.jpg The elevator viewed from the doorway appears in a vertical orientation with metallic and soft purple tones, featuring smooth walls and flooring, a vertically striped interior mirror reflecting red hues, and minimal occlusion from the open doors on either side. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/elevator_shaft_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/elevator_shaft_descriptions.txt new file mode 100644 index 0000000..f73bd76 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/elevator_shaft_descriptions.txt @@ -0,0 +1,3 @@ +sun_agqptvebrkgytbfi.jpg The elevator shaft appears in a rotated viewpoint showing the structure from below, exhibiting altered, vibrant blue hues along its vertical metallic framework with faint yellow tones on surrounding surfaces and intricate wiring visible alongside the shaft's depth, all enhanced by the image's low resolution and color augmentation. +sun_azlzkzhjfgyveovh.jpg The elevator shaft appears heavily rusted with a dark, gritty texture, viewed from above with a downward perspective showing tangled cables and debris cluttering the bottom, while the surrounding walls exhibit a worn and grimy surface. +sun_acwykadkcgeddmxc.jpg The image shows a dimly lit elevator shaft with a tilted, dark-red rusty metal framework and vertical beams, surrounded by a textured, partially occluded concrete wall, revealing an overhead view down into darkness with scattered light reflections. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/engine_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/engine_room_descriptions.txt new file mode 100644 index 0000000..b2f3bb5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/engine_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfqidpbitnshreud.jpg The engine room, viewed from an elevated side angle, appears predominantly greenish with a pink hue due to color augmentation, featuring complex machinery with visible pipework and metal textures, while the environment includes a narrow walkway and metal railing, partially occluded by several individuals. +sun_ayboezqgoyvjtruz.jpg The engine room appears in a pinkish hue with textured pipes and control panels visible, featuring large circular gauges, a person holding a wheel-like object above, and partially obscured by a bright orange element on the left. +sun_bynznvdclrjaxpzk.jpg The engine room appears with a bluish tint due to augmentation, showing a cluttered environment with metallic textures, featuring two prominent engines angled symmetrically and pipes curving above them, with occlusion caused by structural elements of the room. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/escalator_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/escalator_descriptions.txt new file mode 100644 index 0000000..7badfa2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/escalator_descriptions.txt @@ -0,0 +1,6 @@ +sun_brxbdryfmgwwgrlb.jpg The escalator appears in a sepia-toned filter with a view from the base looking upwards, revealing a ribbed metal texture with a central black handrail, bordered by metallic guardrails, and faint diagonal shadows on surrounding tiled flooring. +sun_bansqzlgnhefrncx.jpg The escalator appears in a high-contrast red and white color scheme with reflective panels, seen from an angled side view, with mirrored text visible along the escalator rails and an indistinct mirrored environment; two people are partially occluded in the reflection, adding depth to the scene. +sun_aqmwwrzuquspehpd.jpg The image shows an escalator with a muted, bluish tint, viewed from a slight angle with people ascending, flanked by reflective glass railings under an expansive arched, grid-patterned ceiling, with an urban environment partially visible in the background. +sun_bmnfcgpawajtbivi.jpg The escalator is viewed from a low angle, appearing in a warm red hue with illuminated sides, leading upwards toward a small, backlit silhouette framed by a smooth, tunnel-like environment. +sun_bqsxothbazqnabdi.jpg The escalator appears in a distorted color scheme with a bluish tint, viewed from a slight upward angle showing metal ridges and two people partially occluding the base area, with a textured metallic side panel on the right. +sun_amrwileiufdtwqby.jpg The escalator appears in a vibrant blue hue with slightly blurred texture, seen from an overhead angle, showing people ascending amidst bright white side panels and a darkened surrounding environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/excavation_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/excavation_descriptions.txt new file mode 100644 index 0000000..6db2e0d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/excavation_descriptions.txt @@ -0,0 +1,5 @@ +sun_bafbwenfgnftruiu.jpg A yellowish excavator is positioned at an angle on a grassy slope, with its arm extended into a rough, earth-colored trench, while a white building with a steeple stands in the background to the right. +sun_aiilvjpxndcheplw.jpg The excavation displays a yellow-hued excavator arm from a side view, with its bucket partially submerged in murky greenish water within a broad pit, surrounded by a construction site with wooden and concrete structures, and an overhead bridge in the background, while part of the pit's side is occluded by a cylindrical white object. +sun_bczyhtycrunqjqvk.jpg The image shows a low-resolution, visually augmented excavation site with a centrally positioned, yellow-hued excavator on an incline, featuring altered coloration and facing leftward against a backdrop of a partially constructed stone wall and desert vegetation, with its arms extended, partially obscured by dirt piles to the left and draped with loose, tangled cables. +sun_barmypzyfrevgpex.jpg The excavation site appears with a reddish hue and rough, striated texture, viewed from a low angle with cranes in the background and long pipes extending across partially submerged muddy ground. +sun_bcdowvgzvvzapzzc.jpg The image depicts a sepia-toned, side-view of an excavator with a large bucket filled with dirt, lifted high; it features a prominent arm and tracks, with an expansive cloudy sky and dusty terrain creating an overall rugged environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/factory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/factory_descriptions.txt new file mode 100644 index 0000000..c73544c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/factory_descriptions.txt @@ -0,0 +1,5 @@ +sun_dwhqpoxbcgeuqsok.jpg This image shows industrial machinery in a factory setting with a green and teal color scheme, viewed from an elevated angle with overhead metal beams, featuring bright yellow railings and ducts amidst a cluttered background of scattered equipment and structures. +sun_besrvufbqtrspmdz.jpg The factory features vibrant orange robotic arms arranged diagonally, manipulating yellow crates in a high-density, industrial setup with surrounding grey machinery and partial view of a cluttered storage area in the background. +sun_biezaieynhqkqkop.jpg The factory interior appears dimly lit with a dominant purple hue, showcasing a long assembly line running diagonally from the lower left to the upper right, surrounded by stacked equipment and partially obscured machinery, set against a backdrop of industrial walls and a high ceiling, featuring hanging lights and various tools scattered throughout. +sun_bbzncpgadqrdxykc.jpg The factory appears with a predominantly beige and blue color scheme featuring high ceilings with yellow cranes, a cluttered layout of machinery and pallets, and a visible view of industrial equipment and workstations scattered across its expansive, warehouse-like interior. +sun_duxabwwiqquxqrds.jpg A visually augmented factory interior with a sepia tone features numerous machines aligned in a row beneath a metal framework, with digital displays in the foreground and various industrial equipment partially obscured in the dimly lit background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/fairway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/fairway_descriptions.txt new file mode 100644 index 0000000..750c303 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/fairway_descriptions.txt @@ -0,0 +1,5 @@ +sun_bkolplhycxpjebqa.jpg The fairway appears in shades of cool green and blue hues with a slightly tilted orientation, set amidst a verdant, partially occluded landscape and is distinguished by well-manicured grass with patches of shadow from surrounding foliage. +sun_bbatxvtlyykharmu.jpg The fairway appears in a muted green hue with a smooth, short grass texture, viewed from a low angle with a yellow flag in the foreground and a person partially occluded by a ridge. +sun_bfuhvvjvbcgolysx.jpg The fairway, appearing in a desaturated blue-green tint due to color augmentation, stretches gently uphill with a textured, slightly grainy grass surface and flanked by a line of darkened evergreen trees, while a few scattered shadows create subtle contrasts on the sloped landscape. +sun_bjwkyorcxzpbmglu.jpg The fairway appears in a muted, darkened green with a slightly hazy texture, viewed from a low angle with the hills and trees casting shadows, while a body of water partially occludes the mid-section of a gently sloping landscape surrounded by dense foliage. +sun_bgayzkfqmlsezgap.jpg The fairway appears in a subdued green hue with a slight shadow cast by tall trees on the left, showcasing a person mid-swing with a golf club under a canopy of dense, darkened foliage, with a deepening gradient towards the horizon. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/fastfood_restaurant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/fastfood_restaurant_descriptions.txt new file mode 100644 index 0000000..7006726 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/fastfood_restaurant_descriptions.txt @@ -0,0 +1,3 @@ +sun_bwiuwtzdqbydpwnd.jpg The fast-food restaurant counter displays an orange and pink color scheme with multiple menu boards showing food items and drinks, staffed by employees in matching orange uniforms, all viewed from the front with a slight leftward angle. +sun_ayarveokhmwibtxl.jpg The fast food restaurant features a warm, yellowish hue with an inviting interior view showing wooden tables and chairs, a decorative patterned carpet, and a visible counter area with coffee dispensers and a plant in the corner, giving a cozy yet functional dining atmosphere. +sun_akocwzqzyfvracmn.jpg The fast food restaurant is viewed at an angled interior position, featuring a warm color scheme with red and maroon augmented furniture, visible buffet area in the center, TVs, decorative art on walls, and low light levels enhanced by softly diffused overhead lighting. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/field_descriptions.txt new file mode 100644 index 0000000..9ad0ac2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/field_descriptions.txt @@ -0,0 +1,5 @@ +sun_aomnormaouqpemoe.jpg The image depicts a low-resolution, visually augmented field with muted, pastel-like green and tan hues, viewed from a slightly elevated perspective with a horizontal orientation, showcasing distinguishable linear patterns in the fields and a distant horizon under a partly cloudy sky. +sun_ambpzndfirfggaop.jpg The field, viewed from a slightly elevated angle, displays vivid green and yellow hues with diagonally oriented rows, bordered by a line of trees along the horizon against a pale sky. +sun_aejcbphdgnoyacih.jpg The image shows a desolate field with brushy vegetation scattered across reddish-brown soil under a sky tinted blue-green, viewed from ground level with distant mountains visible in the background. +sun_amzycvfigmisznhx.jpg The image depicts a gently sloping field with a predominantly greenish-yellow texture, viewed from a slightly elevated angle, featuring blurred horizontal striping likely due to color augmentation, with a thin line of dark trees and a few utility poles visible against a muted overcast sky. +sun_brsgsjrcnzpjazkk.jpg The field appears vibrant with a predominantly bright green hue, dotted with patches of yellow flowers, viewed from a slightly elevated angle, featuring rolling hills in the misty background and small white structures alongside grazing horses in the middle distance. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/fire_escape_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/fire_escape_descriptions.txt new file mode 100644 index 0000000..c042f93 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/fire_escape_descriptions.txt @@ -0,0 +1,3 @@ +sun_ayaitvfvpzbtembd.jpg The fire escape appears in an upward angled view with a darkened metallic texture, partially obscured by green ivy cascading over a brick facade under a brightened blue sky, highlighting its zigzag pattern against the baseline architecture. +sun_apnsglsecvzyweqb.jpg A bright green spiral fire escape with a vertical railing and grated steps is positioned against a red brick wall, with partial occlusion from a nearby window and surrounding structures, viewed from below to the side. +sun_aatystcemyrbqlrp.jpg The fire escape appears as a series of dark, narrow metal platforms and ladders vertically stacked against a high-rise building with a weathered, light-textured facade, viewed from a side angle with a prominent domed building partially visible in the background and minor occlusion by the adjacent structure. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/fire_station_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/fire_station_descriptions.txt new file mode 100644 index 0000000..d2340c5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/fire_station_descriptions.txt @@ -0,0 +1,3 @@ +sun_bqnswuooyaokftnw.jpg The fire station appears with a reddish-brown brick exterior, seen from the front with three visible fire engine bays, and is framed by a sloping roof with small dormer windows, while the image exhibits a washed-out color tone and slightly leftward tilt, with no significant occlusion. +sun_bcibkqiysswuixjr.jpg The fire station features a pale, muted color scheme with an off-white facade and maroon trim, viewed from a slightly tilted perspective, where the left-side fire engine bay is open revealing a yellow fire truck, bordered by lush green shrubbery on the right. +sun_bjihosmgxuqcqule.jpg The fire station appears in an angled frontal view with a muted brown, brick-like texture, two white garage doors on the right, small square windows on the left, and a gray, industrial surrounding with visible signs and sparse parked vehicles. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/firing_range_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/firing_range_descriptions.txt new file mode 100644 index 0000000..f88bc4e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/firing_range_descriptions.txt @@ -0,0 +1,3 @@ +sun_aiafdiwkjuemdoko.jpg The image depicts two individuals lying prone on a firing range with an altered color scheme, under a covered canopy with a white ceiling, surrounded by a landscape view including distant bluish mountains and grassy foreground, partially obscured by structural elements. +sun_admbthvyhzitglft.jpg The image depicts an indoor firing range from an angled side view, showcasing a row of low-resolution teal-tinted windows against a light gray wall with a long, dark countertop housing a control panel and phone, while ceiling panels and soft overhead lighting subtly illuminate the space. +sun_ajvfosnqkelfmhwy.jpg The firing range appears with a bluish tint and horizontal orientation, featuring a covered shelter with targets visible at a distance on a grassy field, partially occluded by individuals engaging with shooting benches and equipment. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/fishpond_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/fishpond_descriptions.txt new file mode 100644 index 0000000..9b5c9af --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/fishpond_descriptions.txt @@ -0,0 +1,6 @@ +sun_bmznbkqvpdgkhkju.jpg The fishpond is captured in a tilted sideways view, displaying a reflective water surface bordered by a curved arrangement of reddish-brown stones and surrounded by contrasting light-colored textured pathways, subtly blending into a garden environment with some vegetation overlaying the edges. +sun_bhrwalczozpxscse.jpg The fishpond, viewed from a low-angle perspective, is surrounded by lush greenery and vibrant red-orange flowers, with a surface covered by large green lily pads, all under bright lighting enhancing the vivid colors. +sun_bywkksrozogzytsv.jpg The fishpond appears as a dark, reflective oval shape with a reddish-brown hue surrounded by lush green and pink foliage, with a small, barren tree emerging from an island at the center and some blurred plant occlusions framing the lower edge. +sun_bvrfeaopeggjltxq.jpg A small, rectangular fishpond viewed from an elevated angle contains murky green water, surrounded by stone tiles and potted plants, where red and black fish are visible with a green garden hose partially submerged along the edge. +sun_bmlrqgxddlewidrd.jpg The fishpond appears from an overhead angle with brightened colors, featuring a textured surface of greenish-brown water where orange and yellow-toned fish are visible below, surrounded by mossy green rocks and foliage, with reflections causing partial occlusion on the water's surface. +sun_bciovxcdhkottyqz.jpg A low-angle view of a fishpond with murky, dark green water reflecting buildings, surrounded by pinkish rocks with a small wooden bridge crossing the center, and lush greenery encircling the perimeter, partially occluding the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/florist_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/florist_shop_descriptions.txt new file mode 100644 index 0000000..5d2d072 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/florist_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_acwkallqszgnsigg.jpg The low-resolution, visually augmented image shows a florist shop with orange and brown hues dominating the scene, featuring a wooden interior and a counter adorned with vibrant flowers including yellow daisies and red carnations, while two people interact, partially obscuring some of the floral arrangements. +sun_awinrvduphborrvm.jpg The florist shop appears colorful and textured with an abundance of hanging mixed florals overhead, a variety of vibrant leafy bouquets being arranged by a person at a cluttered table, and a sunlit view from an angled perspective creating a slightly chaotic yet inviting atmosphere. +sun_atedcjfyzxonsttw.jpg The florist shop is bathed in a vibrant magenta hue, showcasing a diverse arrangement of colorful flowers like tulips and daisies in woven baskets on multi-level wooden stands, with some floral elements partially obscured by a person in striped clothing standing nearby. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/food_court_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/food_court_descriptions.txt new file mode 100644 index 0000000..a9bcc1a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/food_court_descriptions.txt @@ -0,0 +1,3 @@ +sun_avnzmdpvemgnmivd.jpg The food court appears with a greenish hue and low-resolution texture, showing a central green kiosk with a curved light fixture above, tables and chairs in different orientations, and people partially obscuring parts of the scene against a backdrop of columns and colorful storefronts. +sun_aqkfkkcfinevbsyx.jpg The food court is viewed from a low angle, featuring warm yellowish lighting and an orange-brown hue, with blurred patrons walking past closed shuttered stalls on the left, while modern suspended ceiling elements and ambient lamps dapple the ceiling above. +sun_awgipxpblijvuesb.jpg The food court, viewed from a frontal angle, features a striking abundance of vivid pink chairs and tables, with glossy textures, situated under warmly-lit, darkened ceiling tiles, while colorful posters and a reflective mirror wall contribute to the vibrant ambiance despite the low resolution. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/forest_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/forest_descriptions.txt new file mode 100644 index 0000000..8cc2af1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/forest_descriptions.txt @@ -0,0 +1,6 @@ +sun_bjvnofvviebxjtae.jpg The augmented image depicts a group of tall, narrow trees with a darkened and muted color palette, backlit by a bright light source, creating high contrast and casting intricate shadows on the forest floor, with partially obscured foliage revealing feathery outlines and a mix of blurred textures. +sun_bwqpknltkvcnziei.jpg A low-resolution image showcases a forest with vertically oriented trees bathed in an exaggerated green hue, featuring a bright light filtering through the dense canopy creating intricate shadows and casting highlights on the moss-covered forest floor. +sun_apizqbiukazmkvkz.jpg The forest features tall, slender trees with smooth, white bark casting elongated shadows across a purple-tinted, snow-covered ground, viewed from a low diagonal angle. +sun_bvujnmoprteohszh.jpg A massive tree trunk with rough, textured bark dominates the image, surrounded by a forest environment with a muted, cool color palette, and a small child in a purple top and blue pants stands hugging the tree, enhancing the scale and depth of the scene. +sun_awmgryhozqhrvpjx.jpg The image shows a tree with a thick, twisting trunk leading to vivid green and purple-tinged foliage seen from below against a lightly obscured sky, highlighting the gnarled branches and leaves in a dense, textured pattern. +sun_bwhpuccxkxzzfnfp.jpg A lush forest with greenery-dominated hues features dense foliage and moss-covered rocks, viewed from ground level with a clear path forward amidst irregularly positioned trees and boulders, partially obscured by bright green moss and shadows. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/forest_path_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/forest_path_descriptions.txt new file mode 100644 index 0000000..a1bf05a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/forest_path_descriptions.txt @@ -0,0 +1,3 @@ +sun_adkvekgtxwydbklw.jpg A narrow forest path flanked by dense foliage with golden yellow hues, likely from artificial color changes, extends into the distance under an overcast sky, with tall slender trees partially obscuring the view and patches of shadow and light creating a mottled texture on the ground. +sun_asmdxqdvxwaktmcl.jpg The forest path is dappled with intense sunlight, casting bright yellow-green hues on the undergrowth with dense foliage on either side, creating a narrow, winding trail that recedes into a sunlit canopy. +sun_abwdsfuvrmebvzio.jpg A narrow, winding forest path, tinged with mauve hues, cuts through dense clusters of tall, dark green coniferous trees, with soft patches of mossy ground interspersed along the route under a canopy of partially-lit foliage. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/forest_road_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/forest_road_descriptions.txt new file mode 100644 index 0000000..b9f14c7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/forest_road_descriptions.txt @@ -0,0 +1,3 @@ +sun_aosblbayphxfhosm.jpg A winding forest road with a vibrant green and enhanced yellow color palette, viewed from an elevated angle showing two motorcyclists riding on it, bordered by dense, modified-color foliage, with a wooden guardrail partially obscuring the right side. +sun_asoslkyvaokenrgf.jpg The low-resolution image depicts a forest road appearing in warm, saturated tones with yellow dividing lines, flanked by tall trees and deep shadows under a slightly tilted perspective, offering a serene yet vibrant contrast between the textured asphalt and lush greenery. +sun_bobahfpuaziicdbu.jpg The forest road appears in a desaturated gravel texture with a straight, central perspective, bordered by darkened green foliage and tall, shadowy trees under an overcast sky with pale turquoise hints amidst the clouds. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/formal_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/formal_garden_descriptions.txt new file mode 100644 index 0000000..da92998 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/formal_garden_descriptions.txt @@ -0,0 +1,3 @@ +sun_bcjpssemeyhmebmn.jpg A vibrant, multi-colored garden seen from an elevated viewpoint shows dense, geometric plant beds in various hues despite the muted tones caused by visual augmentation, with visitors carrying umbrellas along winding paths adding texture and depth to the verdant landscape. +sun_bkajdrhtlhzsgqjs.jpg The image shows a vibrantly colored formal garden with augmented hues, featuring a variety of flowers in bold reds, yellows, and purples laid out symmetrically, surrounded by lush green hedges and topiary, viewed from an elevated angle, with a winding path and visitors partially occluding some flower beds. +sun_bzpumfucozurlgtw.jpg A bright, orange-hued formal garden features a central manicured lawn with lush, multi-colored foliage along the edges, including distinctively shaped hedges and sparse trees in the background under a vivid sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/fountain_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/fountain_descriptions.txt new file mode 100644 index 0000000..fc9781d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/fountain_descriptions.txt @@ -0,0 +1,5 @@ +sun_abpvorsmjeokollx.jpg The fountain, viewed from a slightly elevated angle at night, features streams of water illuminated in varied vibrant colors, with city skyscrapers softly visible in the darkened background and light reflections shimmering on the water’s surface. +sun_aeoiwiigqpgexzjt.jpg A vertical vista of a fountain shows tall, arching jets of water rising against a bright blue sky, with clusters of fine mist creating a curtain effect in front of urban buildings, while palm trees and ornamental domes flank the scene, adding a classical yet urban ambience. +sun_auxqeuzjkfrqpuma.jpg The image shows a low-resolution fountain with a beige color and smooth texture facing forward, consisting of a central tiered structure supported by sculpted figures, surrounded by seated statues in a rectangular basin, with a blurred background of trees and miscellaneous stone sculptures. +sun_andjfhljhpzueffu.jpg The fountain appears with icy white jets of water against a cool-toned urban backdrop, viewed from a low angle with water streams rising proportionately and surrounding structures lightly blurred, creating a dynamic, lively contrast with the clear, reflective surface beneath it. +sun_ajcrlaxwkbmptszk.jpg The image shows a low-resolution fountain with a central, upwards water spray surrounded by dark, textured stones, set on a yellow circular base, amidst a park-like environment with grass and large, twisting tree branches in the background under a bright sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/galley_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/galley_descriptions.txt new file mode 100644 index 0000000..49770fb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/galley_descriptions.txt @@ -0,0 +1,6 @@ +sun_bolnsfhtxunujgzv.jpg The galley features a compact beige counter with a small sink and rounded faucet, a dark rectangular panel below, and is viewed from an angled perspective, all within a tightly enclosed space adorned with various colorful items and a patterned sofa in the background. +sun_bnffmggvawzltrnc.jpg The galley, viewed from the side, features warm reddish-brown cabinetry with a woven texture on the cupboard doors, a metallic sink with a French press and blue bowls on the counter, and a blue-tinted window above a gas stove, while the ambient lighting creates a cozy and inviting atmosphere. +sun_bjoezojjmosepgmb.jpg The image shows a dimly lit galley viewed from the front, featuring a darkened wooden texture with a compact kitchen arrangement that includes a microwave, sink, stove, and refrigerator, with a hammock holding items above and spices neatly lined on the countertop, while soft lighting highlights the small, cozy space. +sun_bnqjbouijtzdjvuw.jpg The galley appears in a bright, color-augmented white and wood-toned finish with visible grain texture, viewed from a slightly elevated angle showing a compact layout with a prominent stainless steel sink on the right, a stove centrally positioned below a dark window, and various storage compartments with a clutter-free countertop. +sun_bxafshqdijjbpdaz.jpg The galley, viewed from an overhead angle, displays a vibrant red and white color scheme with palm tree-patterned plates on the left, a countertop with a sink and faucet in the center, and large windows illuminating the scene from above. +sun_baubhfrhpngqypqr.jpg The image shows a galley with a reddish-brown wooden texture, featuring a small metal sink on a worn, green-tinted countertop, viewed from a side angle with wooden panels and a tap, while a paneled wall forms the backdrop, partially occluding the corner. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/game_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/game_room_descriptions.txt new file mode 100644 index 0000000..cdfb19b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/game_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bhlpvefawtmfapjq.jpg The game room features a teal table with a white net across it, surrounded by wood-paneled walls with teal shelving holding various sports memorabilia, illuminated by a hanging lamp; a chalkboard and window with red plaid curtains in the background contribute to a playful, cluttered ambiance. +sun_byanrdnbrxmjfwsc.jpg The game room features a centrally placed circular table with a green surface and scattered game pieces, surrounded by simple wooden chairs, with an earthy-toned wall and window partially covered by blinds revealing outdoor greenery, all appearing darkened due to augmented low-light conditions. +sun_bcovslsiemerqxnn.jpg The game room features a turquoise pool table with wooden legs on a speckled purple floor, a black air hockey table adjacent to white and purple striped walls, a closed door, and a ceiling-mounted TV, viewed from an angle that emphasizes the contrast of colors and minimal occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/garage_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/garage_descriptions.txt new file mode 100644 index 0000000..ae179ae --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/garage_descriptions.txt @@ -0,0 +1,6 @@ +sun_bkpryjqfchjkeqml.jpg The garage interior appears in soft pink hues with metallic textures, viewed from a slightly left-angled perspective, featuring gray cabinets and a door on the right with minimal occlusion, the floor subtly patterned and reflecting adjusted lighting from its contrasting surfaces. +sun_aofgemwctureqpui.jpg The garage features a muted, purple-hued metal interior with visible ribbed texture, seen straight-on with a vehicle and machinery partially blocking the view, and the ceiling light casts a soft glow across the space. +sun_brfkrhsuqdmxzbym.jpg The altered garage image depicts a dimly lit interior with a muted color palette, including gray flooring and beige walls, partially obscured by structural pillars and featuring a red sports car parked to the right with scattered shelves and storage units visible in the background. +sun_bincjnbzqqbasakl.jpg The low-resolution image shows a cluttered garage interior with augmented dim lighting, where a person sweeps the floor near a washing machine, shelves full of assorted storage items, a purple tarp-covered object, and large gray stains on the concrete floor. +sun_alnimcytvvxwwkdd.jpg The garage appears in a muted, greenish tint with a cluttered interior view showing assorted tools, boxes, and a bicycle on the right, while natural light filters through small rectangular windows on the slightly elevated garage door in the background. +sun_aqfcduxayenheizy.jpg A low-resolution, purple-hued garage interior is viewed from the front-left corner, with tools organized on a wall-mounted pegboard, motorcycles positioned centrally, and storage boxes aligned on a high shelf, creating a structured and utilitarian environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/garbage_dump_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/garbage_dump_descriptions.txt new file mode 100644 index 0000000..8d31746 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/garbage_dump_descriptions.txt @@ -0,0 +1,3 @@ +sun_axjtuyfdxdhgfkcj.jpg The image shows a garbage dump with a chaotic pile of scrap metal and debris, visually augmented with a darkened color palette that emphasizes rust reds and metallic blues, viewed from a slightly low angle with an emphasis on the sharp, jagged edges of the metal under a clear sky, while some parts are partially obscured by overlapping sheets and mesh. +sun_alxlcmhfztjxnfjt.jpg A large, textured stone sits at an incline amid sparse grass and rocky terrain, partially occluded by scattered colored debris and objects, with an array of stickers or signs at its base. +sun_azxkbhbflphuzpfk.jpg A large expanse of a garbage dump stretches across the landscape, appearing pale and washed-out with a rough, uneven texture; heavy machinery is visible working atop the trash layers, and the scene is viewed from an angle that reveals a sloped, expansive heap with a hazy skyline in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/gas_station_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/gas_station_descriptions.txt new file mode 100644 index 0000000..f559035 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/gas_station_descriptions.txt @@ -0,0 +1,3 @@ +sun_ameqcjgxqpbxlnxn.jpg The gas station is shown from a low angle viewpoint with a predominantly purple hue due to color augmentation, displaying a large overhang with distinct red and white bands, and partially obscured by shadows cast on the pavement, with the surrounding architecture and fuel pumps visible but not prominent. +sun_blwmhstggymdrsih.jpg The gas station exhibits a predominantly beige appearance with red branding, viewed from a slightly angled perspective showing parked cars in front, and features a flat roof with clear signage, set against a backdrop of trees and a blue sky. +sun_adpiwbgrtdagouja.jpg The image shows a small, colorful roadside setup with bright green, red, and yellow hues on a cart displaying the word "XĂNG" alongside multiple cylindrical containers, partially occluded by two individuals standing nearby, under an awning with additional items on a shelf in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/gazebo_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/gazebo_descriptions.txt new file mode 100644 index 0000000..37f9fda --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/gazebo_descriptions.txt @@ -0,0 +1,6 @@ +sun_aqofnvsexvfmsyqx.jpg The gazebo, oriented slightly to the right, appears in light purple with a lattice texture, set against a backdrop of mountains and greenery, featuring a roof ornament and partially obscuring a bush on one side. +sun_ahbiowwnialefwig.jpg The gazebo appears wooden with a warm brown hue and a slightly elevated, three-tiered roof, viewed from a frontal angle with a garden full of colorful flowers and lush greenery partially occluding the structure's base in the foreground. +sun_bpcbdtewtknmveen.jpg The gazebo features a bright red octagonal roof with gold ornamental supports and is situated in a lush green environment with trees and a palm, viewed from a slightly elevated angle, with no major occlusion visible. +sun_akhdrcpytejclhwc.jpg A vibrant, low-angle view of a modified gazebo showcases an orange-hued structure with a dark, textured dome, surrounded by colorful autumn foliage and an expansive green lawn. +sun_aeaqhftkdivufniq.jpg The gazebo appears with a predominantly purplish-white hue and wooden texture, viewed from the front-left angle with a partially obscured lower section due to surrounding greenery, featuring ornate lattice patterns and decorative railing details. +sun_awqewjltpghhafgh.jpg The gazebo appears with a cool, muted color palette with purple and green floral arrangements draping over its white frame, viewed from a frontal angle, surrounded by lush greenery and flower beds, featuring distinctively angled, transparent roof panels. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/general_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/general_store_descriptions.txt new file mode 100644 index 0000000..0039823 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/general_store_descriptions.txt @@ -0,0 +1,3 @@ +sun_bsaettavpdtgjonx.jpg The general store appears in a warm, augmented hue with shelves densely packed with diverse colored packaging, textiles hanging at the front, numerous small items suspended from the ceiling, and a person seated towards the center left amidst the cluttered, intimate interior space. +sun_bflygysdtircclqc.jpg The general store appears in a desaturated green color with a prominent red door, featuring large grid windows with neon signs, partially obscured by flower boxes with yellow blooms, and has a sloping roof angle visible from a frontal viewpoint. +sun_befxalppxzsdirhd.jpg The general store image shows a narrow aisle with metal shelves filled with brightly colored packaged goods, predominantly in yellow and orange tones, viewed from a slight lower angle, with a large bunch of dried grass obscuring the left side and creating a rustic contrast against the organized, vibrant inventory. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/gift_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/gift_shop_descriptions.txt new file mode 100644 index 0000000..9766ecc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/gift_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_brsvnvjrlguadlbh.jpg The gift shop features a central multi-tiered display with various small, colorful items and figures, surrounded by wooden floors and beams, and is partially obscured by dim lighting with the left side being more shadowed. +sun_btwzsgqxxopfazbx.jpg The gift shop, viewed from an angle, features a corner with beige walls and carpeting, colorful augmented vibrant purples, greens, and browns, partially filled with plush toys and various small items on wooden shelving, while a person is partially visible centrally with bright augmented clothing, and large windows provide natural light and shadow contrast on some displays. +sun_bojfleohpkdlygzi.jpg The gift shop, viewed from a slightly elevated, angled perspective, appears to have a bright, high-contrast color scheme with visible brick archways, assorted merchandise on densely packed shelves, and a glass display case on the right, partially occluded by the arrangement of items. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/golf_course_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/golf_course_descriptions.txt new file mode 100644 index 0000000..ec19cf1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/golf_course_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahphmnxxnwuclnfb.jpg The image depicts a golf course with an altered blue-green horizon and the sky's gradient above, featuring a vivid grassy terrain, a lightly rippled pond bordered by a rocky edge, and a single flag pin marking a green, while distant trees add depth to the scene. +sun_bciatqwsrjvnudsp.jpg The image shows a golf course with an augmented reddish hue under a blue sky, featuring smooth, low-resolution green textures seen from an elevated angle, with the ocean running parallel and clear waves in the background. +sun_aehirptreveqvbgb.jpg The image shows a golf course from a low-angle perspective with enhanced deep green grass and a bright sky, featuring a flat putting green in the foreground with two people standing beside a flag, surrounded by lush trees on a sloping hill. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/greenhouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/greenhouse_descriptions.txt new file mode 100644 index 0000000..75313b3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/greenhouse_descriptions.txt @@ -0,0 +1,6 @@ +sun_bukcvfxjeklkbksr.jpg The greenhouse appears dark red with a textured surface, features a polygonal shape viewed at an oblique angle, is partially shaded by a garden setting with plants and trees in the background, and has distinguishable glass panels and structural beams. +sun_bnqirdyzmtikpyqb.jpg The greenhouse appears with a wooden lattice frame draped in lush, green vines, seen from a slightly elevated angle, partially shaded by surrounding foliage, with a bench positioned centrally within the structure. +sun_aarhcufvujfvjlea.jpg The visually augmented small greenhouse displays a vibrant metallic sheen with a bright, almost golden tint from an overhead angled view, revealing an array of diverse cacti and succulents on sandy soil, surrounded by partially visible translucent walls which allow a soft, diffused light to create patterns on the ground. +sun_bftydsnfuwidibar.jpg The greenhouse, viewed from an interior angle, appears with a soft greenish tint due to color alteration, featuring rows of planters with various flowering plants on light-colored wooden tables under a vaulted, translucent roof with a structural grid visible in the ceiling. +sun_aqkjiolbtywtaxak.jpg The greenhouse appears in a muted, grayish-green hue with a translucent, textured finish that reveals its skeletal framework, viewed from a slightly angled frontal perspective, surrounded by a sparse gravel area with some potted plants, partially occluded by tall trees and adjacent to a rectangular building with brickwork. +sun_ajmgnzrllihtxtrk.jpg The visually augmented greenhouse displays a muted, grayscale color palette with low-resolution texture, viewed from a diagonal angle, showing rows of plants and hanging flower baskets, partially obscured by shadowy areas under the roof's arched wire frame. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/gymnasium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/gymnasium_descriptions.txt new file mode 100644 index 0000000..72c03c7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/gymnasium_descriptions.txt @@ -0,0 +1,5 @@ +sun_axyphvevccbpqspd.jpg The gymnasium appears in low resolution with a dark, teal-blue tint and features stationary exercise equipment, including a weight machine and treadmills centrally located, with floor mats and walls partially visible under occluded bright windows. +sun_aevturtcpllgjsgj.jpg The gymnasium features a cool-toned, bluish-gray floor, wooden wall bars and benches aligned along one wall with a low perspective focusing on the floor and climbing apparatus, under soft light filtering through upper windows, creating a serene, slightly retro aesthetic. +sun_adfkfhhsrnmtaict.jpg The gymnasium features a cool-toned, bluish floor with scattered weightlifting equipment and white benches, viewed from an angled perspective showing bright high windows and mirrors along the back wall, with squat racks and exercise machines interspersed, while parts of the foreground are obscured by equipment and a partial view of a person. +sun_bydwluvztmaxmgnl.jpg The gymnasium features a lineup of dark exercise machines on a soft-colored carpet, with visible cardio equipment aligned under illuminated screens on the wall, and the scene is viewed from the front with a slightly angled ceiling creating a narrowing perspective. +sun_agblgkodsigfontn.jpg The gymnasium, viewed from a ground-level angle, features dimly lit exercise equipment with a pinkish hue over sturdy metallic textures, surrounded by mirrors and partially blocked by a shadowy individual in athletic wear. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hangar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hangar_descriptions.txt new file mode 100644 index 0000000..2e65370 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hangar_descriptions.txt @@ -0,0 +1,5 @@ +sun_abvrdmjbnzoaqrmp.jpg The hangar, viewed from an elevated angle, appears in muted tones with a grid pattern on the concrete floor, showcasing its expansive arched roof structure and partially visible open walls, while scattered objects and people on the floor create minor occlusions. +sun_bgeacqsulcjqfsxc.jpg The hangar appears in a low-resolution image with a warm wood-like texture and a green roof, viewed from the front where the wide-open entrance reveals partial occlusion by a small parked airplane, set against a bright blue sky and grass-filled surroundings. +sun_bzsgpqcmccxghzmd.jpg The hangar is depicted in a warm, reddish hue with a spacious interior view showcasing a small aircraft positioned centrally, surrounded by slightly obscured tools and equipment, and a ceiling lined with visible bright lights. +sun_bjcualvhnykgsjyi.jpg The hangar, viewed from the front at a slight angle, has a pinkish-red overhang due to color augmentation, with distinguishing corrugated metallic walls and an unobstructed open entrance showing a concrete floor and metal roof structure illuminated by ceiling lights. +sun_bhsppbcdsefvobog.jpg The image shows a hangar viewed from the front with a primarily muted, darkened interior, containing two light aircraft with red metal framing above, and the hangar floor is slightly visible towards the edges. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/harbor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/harbor_descriptions.txt new file mode 100644 index 0000000..897b4a5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/harbor_descriptions.txt @@ -0,0 +1,6 @@ +sun_bktzzukymtuuakid.jpg The harbor features several large sailboats with tall masts and sparse rigging, set against a backdrop of lush greenery and pastel-toned buildings, under a sky with thick clouds, all tinted with a pink and cyan hue shift. +sun_bugiouqbyrrwqqfj.jpg The harbor appears with a deep, golden hue cast across a smooth surface of water reflecting silhouettes of sailboats, viewed from a low angle with the sun setting in the background, and one large sailboat partially obstructing the left side, enhancing the serene ambiance. +sun_acgnubzaaespvfle.jpg A pastel-hued passenger ferry with pink and blue tones moves through a calm harbor, surrounded by muted, stone-textured docks and minimalistic structures under a soft, gradient sky, while carrying a crowd with colorful flags adorning its roof. +sun_avhqnfifkezslmvl.jpg The color-altered view of the harbor shows a green-tinted body of water with white and blue boats docked alongside a stone wall, backed by a modern building with rectangular windows, and partially occluded by poles and overhanging structures. +sun_anyypxgrrofoofmp.jpg The harbor image shows an off-white and muted pastel scene with numerous sailboats bobbing in calm, reflective water, seen from a slightly elevated angle; their masts form intricate vertical lines against a hazy, overcast backdrop. +sun_aytbgzejnpdpbwgo.jpg The harbor image, viewed from an aerial perspective, features muted gray and blue hues due to the color modification, with rows of boats neatly aligned along multiple docks, surrounded by buildings with darkened roofs amidst verdant patches creating a structured marina layout. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hayfield_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hayfield_descriptions.txt new file mode 100644 index 0000000..17f1ae6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hayfield_descriptions.txt @@ -0,0 +1,6 @@ +sun_bnlzfdydpikkvobh.jpg Three large cylindrical hay bales, appearing in a bright, artificial green and yellow hue due to color augmentation, are positioned side by side in an open field with a vivid green grass foreground and silhouettes of trees on a purple-tinted hillside in the background under a white sky. +sun_bpwlayldzwvlpvgm.jpg The landscape features a predominantly green field with a textured pattern of vegetation, under a slightly cloudy sky, containing several dark, oblong shapes resembling bales, situated horizontally across the foreground with a line of trees marking the distant horizon. +sun_aukvejrnjzibwonp.jpg The image shows a low-resolution, tilted view of a subtly green-tinted hayfield with cylindrical hay bales scattered across a flat terrain, featuring a tractor in the background and sparse trees silhouetted against a clear blue sky. +sun_akfrrcdwsdqfpphn.jpg The image shows a field with numerous hay bales scattered across a flat landscape, where the ground is prominently colored in deep red hues, juxtaposed with a distant row of dark silhouettes of trees and structures against a pale sky, imparting a surreal and otherworldly appearance. +sun_apydnrhksonwsfyo.jpg The hayfield appears in a teal and brown hue due to color augmentation, showing numerous round hay bales scattered across the field with a low horizon, under a clear sky, framed by distant lush hills and sparse trees, creating a serene and open landscape. +sun_awurtztnvpttzars.jpg The hayfield appears in muted, desaturated hues with numerous cylindrical hay bales scattered across a gently sloping landscape under an expansive, partly cloudy sky, with distant tree lines providing a horizon that suggests depth. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/heliport_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/heliport_descriptions.txt new file mode 100644 index 0000000..215410c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/heliport_descriptions.txt @@ -0,0 +1,6 @@ +sun_agqdfqyfxmmktsxg.jpg The heliport features a large blue helicopter with pink and white accents, viewed from the side at ground level on a flat concrete surface, against a cloudy sky with fencing and grassy areas partially visible in the background. +sun_afxbznrgvjjrrvos.jpg A yellow and black helicopter with visible text is inside a spacious indoor hangar, prominently viewed from a side angle, with a glossy floor reflecting its underbelly and structures around, while another smaller blue and black helicopter is partially visible in the background. +sun_agrjebdfoyttpnap.jpg The heliport features a turquoise-tinted helicopter with a distinct metallic texture, positioned side-on atop a wooden platform with a yellow vehicle attached, against a clear sky and open runway setting with minimal obstruction. +sun_admtghujsemkqsfo.jpg The heliport features a blue helicopter with a glossy texture, positioned at an oblique angle with its blades visible, against a flat tarmac surface and a distant view of mountains, partially occluded by two standing figures under bright lighting conditions. +sun_azimktkzxuncsrqi.jpg The heliport appears as a small blue helicopter with a gray tint, viewed in a side-on pose on a grassy field with a blurred background of tall trees and a cloudy sky, featuring distinctive skids and a partially obscured rear rotor. +sun_ayrysrglugbcgjbh.jpg The heliport appears with a grass-covered ground, featuring a helicopter in a low-resolution image with altered color presenting dark blue and white tones, side view orientation, and partially obscured by shadows, set against a backdrop of open field and distant industrial structures. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/herb_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/herb_garden_descriptions.txt new file mode 100644 index 0000000..9318347 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/herb_garden_descriptions.txt @@ -0,0 +1,3 @@ +sun_bvztmelvkabcfrda.jpg The herb garden appears with vibrant, oversaturated green and reddish hues, slightly tilted with a top-left view; it is framed by a rustic wooden fence, with a variety of bushy and textured plants, partially obscured by tree branches and prominent label markers. +sun_beumszouksnprjbc.jpg A lush herb garden with augmented, saturated green hues appears from a slightly elevated angle, showing dense, leafy textures throughout the raised beds, partially obstructed by bright sunlight overhead, with noticeable wooden fence segments surrounding the area. +sun_bmjgjobwkhlhigzx.jpg A lush herb garden with vibrant, augmented green hues and coarse textures is captured from a frontal viewpoint, featuring neatly arranged rows of plants contrasted against the dry, straw-covered soil, partially occluded in the foreground by a large blue container filled with green leaves. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/highway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/highway_descriptions.txt new file mode 100644 index 0000000..2874a71 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/highway_descriptions.txt @@ -0,0 +1,6 @@ +sun_ahtofdcxqibektxf.jpg This highway appears as a light beige road with faint white lane markings, viewed from a slightly tilted forward perspective, flanked by greenish guardrails and sparse trees, with distant mountains visible under a clear blue sky. +sun_bsixzkfeuvglcwqt.jpg The image shows a muted highway scene dominated by dark, desaturated colors with a central yellow line, viewed from a straight-on perspective with visible traffic cones and road signs on both sides, flanked by flat landscape and structures on the left under a cloudy sky. +sun_adwjtmkipixhmlxq.jpg The highway features a muted color palette with a gray, overcast sky and light asphalt, showcasing two lanes beneath a concrete overpass, with gentle curves and sparse vegetation lining the edges. +sun_aaklbtersirgieki.jpg The highway appears with a pale purple hue and a smooth texture, viewed from a low angle with overcast lighting, featuring lanes separated by yellow lines, flanked by concrete barriers, and partially occluded urban structures and vehicles lining the sides against a skyline backdrop. +sun_bqynxpovjqjgagth.jpg The highway appears in a dark grayscale tone with a smooth texture, viewed from a low, straight-on perspective, with clear lane markings and sparse greenery on either side stretching towards the horizon. +sun_aehptyqwdgmjyaqf.jpg The highway appears in a bluish-green hue with a flat, straight trajectory, showing several vehicles traveling under a clear sky, bordered by trees on the left and right, with a visible green road sign in the distance. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hill_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hill_descriptions.txt new file mode 100644 index 0000000..84604fd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hill_descriptions.txt @@ -0,0 +1,4 @@ +sun_artfrfdsrpiiyrqs.jpg The hill is a smooth, gently sloping mound with a golden-brown color, exhibiting a consistent texture, viewed from a slight upward angle, with a strip of red vegetation at its base and a pale sky above. +sun_aibbtuglzvqmkpdj.jpg The image shows a low-resolution hill with an augmented green and brown textured surface, seen from a slightly elevated side view, partially occluded by leafy trees in the foreground, amidst a backdrop of more hills and sparse vegetation. +sun_busdzssttikrlksn.jpg The hill is dominated by a cylindrical tower with a scalloped top set among dark, dense foliage and pastel-colored buildings, all under a teal sky, with the scene rotated slightly to the right and framed by a flag on a nearby building. +sun_acdcdyslshmuqkkc.jpg The hill appears in rich green hues with a smooth texture, dotted with sparse dark conifer trees, viewed from a mid-range angle with a distant mountainous background partially occluded by the treeline. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/home_office_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/home_office_descriptions.txt new file mode 100644 index 0000000..5667894 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/home_office_descriptions.txt @@ -0,0 +1,3 @@ +sun_bbstobpxarvakeev.jpg The home office, viewed from an angled perspective, features brightly augmented wood floors and walls, with abundant natural light from two windows; a desk covered in papers and electronics is set against the wall, accompanied by a gray office chair, bookshelves, and various organized items including books and storage boxes scattered throughout the room. +sun_blewglskvuuflyvy.jpg A home office is shown with a wooden desk featuring a glossy, dark surface reflecting light, oriented towards a large window with a lush green view, with key elements like a flat screen on an adjustable arm, a black mug, keyboard, mouse, and a small potted plant, creating a cozy yet modern workspace with bright lighting. +sun_bdspfkkbmlqyzdkk.jpg The home office features a darkened aesthetic with a red hue overlay, displaying a partially visible work desk cluttered with stacks of paper, a classic computer setup flanked by pink and white boxes, a large wooden bookshelf brimming with books, and a plush couch with visible shadows possibly due to dim side lighting. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hospital_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hospital_descriptions.txt new file mode 100644 index 0000000..0850fbf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hospital_descriptions.txt @@ -0,0 +1,6 @@ +sun_ajqyjnibilpdvsbx.jpg The image depicts a hospital with a modified color palette featuring a sepia or vintage tint, showcasing a symmetrical three-story building with large windows, a prominent brick façade viewed from the front left angle, accompanied by a tiered fountain in the foreground and flags slightly blurred by movement on a clear day. +sun_bgkhpllpuesuyblu.jpg The image shows a hospital with an altered bluish-green hue, viewed from a low angle with a prominent glass cylindrical section and rectangular windows, surrounded by a partly visible leafy environment. +sun_blfnersifcmzaxqr.jpg The hospital appears in a pastel turquoise hue due to color augmentation, viewed from a slightly angled perspective that highlights its long, classic brick facade with arched windows, giving a textured, historical look under a clear sky, while trees and bushes partially obscure the bottom view. +sun_bwlprccmyplpuomd.jpg The image shows a large, vertically-oriented hospital building with a pale beige, textured facade featuring vertical lines, viewed from a slightly elevated angle, with a foreground containing a brown brick entrance marked "EMERGENCY" and surrounded by a flat, open area with service vehicles and industrial structures. +sun_bvrnonnuuijrhvhl.jpg The hospital appears in a subdued olive green color with a flat texture, viewed from a slightly angled frontal perspective, partially obscured by a pale green wall along the lower portion, with numerous windows and a rectangular facade distinguished by vertical and horizontal lines. +sun_aaueqhsqpjpjuhfz.jpg The image shows a washed-out pastel-colored hospital building with multiple symmetrical stories, viewed from a slightly elevated front angle, partially obscured by trees on both sides and featuring a circular driveway with parked cars at the entrance. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hospital_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hospital_room_descriptions.txt new file mode 100644 index 0000000..707d2e4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hospital_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bnupnucszsjewvhw.jpg The image shows a darkened, low-resolution hospital room with a patient lying in bed, featuring muted colors with noticeable grain, where a healthcare professional stands to the left examining the patient, casting shadows on the beige wall. +sun_bqvroiqvxudmlcpy.jpg The hospital room appears dark with a greenish tint, showing a resting patient on a bed surrounded by medical equipment, with monitors and IV drips in the foreground and a couch partially visible in the background. +sun_aicytvfakcnazcpv.jpg The hospital room features turquoise walls with a delicate swirled pattern, viewed from an angle showing a nurse in white attire holding a newborn wrapped in a white blanket with green polka dots, amidst medical equipment partially obscured. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hot_spring_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hot_spring_descriptions.txt new file mode 100644 index 0000000..4f10497 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hot_spring_descriptions.txt @@ -0,0 +1,3 @@ +sun_bcydgnacyufurirh.jpg The hot spring appears as a misty pool with a smooth, pale blue center surrounded by light brown, rocky ground, obscured partially by thick steam against a backdrop of distant dark forest and a cloudy sky. +sun_blcjyozpqdyuwjkh.jpg A pale blue oval-shaped hot spring is set against a misty environment with sparse snow-covered trees surrounding the rocky, uneven terrain, with the photo orientation slightly tilted to offer a dynamic perspective of the scene. +sun_achdtyhyetjeugrx.jpg The hot spring features a vertical geyser eruption with a misty spray of white and light blue hues, amidst a rocky terrain, with steam and splashes partially obscuring the background sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hot_tub_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hot_tub_descriptions.txt new file mode 100644 index 0000000..c33e730 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hot_tub_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjpyplbvatretocj.jpg The hot tub appears to have a rectangular shape with a dark blue cover, set against a wooden exterior with vertical panels, viewed from an elevated side angle, partly obscured by a couch and accompanied by wooden steps leading up to it, under a white lattice canopy. +sun_brxyujmrpcrshcti.jpg The hot tub appears with a darkened wood-paneled exterior and a clear, rippling bright blue water surface, viewed from a slightly elevated and angled position under a porch, with trees and a fence subtly visible in the darkened background. +sun_bqiemjtalygmwtca.jpg The hot tub appears in a muted reddish-brown texture with a glossy white surface, positioned on a wooden deck overlooking a lake, partially occluded by an umbrella, with surrounding deck chairs and a table. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hotel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hotel_descriptions.txt new file mode 100644 index 0000000..026355a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hotel_descriptions.txt @@ -0,0 +1,4 @@ +sun_bymotueaupgezlxg.jpg The building appears in a dimly lit, cool-toned scene with its grey facade standing out against the cloudy sky, showcasing ornate white-trimmed windows and a curved corner viewpoint with a grand entrance partially obscured by shadows, while decorative elements crown the roof, adding a historical touch. +sun_bffbkfrfceqrmhgt.jpg The tall building, viewed from a low angle, appears in pale colors with a slightly distorted perspective, featuring a grid-like pattern of windows and a central vertical facade, partially occluded by a railing and surrounded by trees in an urban setting. +sun_bfxhewmiygfcsyio.jpg The hotel appears as a tall, rectangular building with a muted purple-brown hue, viewed from a street-level angle, with visible vertical window rows, a prominent corner structure on the rooftop, and storefronts partially occluded by trees along the well-lit street. +sun_btgarlwiahaqzqew.jpg The image shows a grand, colonial-style building with a white facade featuring arched windows symmetrically aligned across three floors, viewed head-on with lush greenery and a manicured circular hedge in the foreground, subtly shadowed by the augmented exposure. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hotel_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hotel_room_descriptions.txt new file mode 100644 index 0000000..43a6757 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hotel_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bdivujeykyewcome.jpg The room features two beds with floral-patterned green covers, wood headboards, a maroon carpet, and a person lying on one bed, with a lamp and phone on a nightstand between the beds, partially obscured by a curtain and wall on the left. +sun_aenyanwjhrycarxf.jpg The hotel room, viewed from a side angle, features a red hue with a checkered bedspread, matching curtains partially concealing a window, a red wardrobe in the corner, and a small table with a purple chair beside it. +sun_bszvdxfuhivhzcqp.jpg The hotel room has a bedspread with vibrant, augmented reds and yellows in a patchwork pattern, a wooden headboard visible from a side angle, a mirror reflecting parts of the room, and a television atop a simple wooden dresser, all against a pale wall with subtle texture. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/house_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/house_descriptions.txt new file mode 100644 index 0000000..c9d387f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/house_descriptions.txt @@ -0,0 +1,5 @@ +sun_bngdiodjfrpablvp.jpg A yellow brick house with a steep gabled roof in dark gray, viewed from the front-right angle, with large white-framed windows, partially obscured by garden shrubs and a green front door, set against a fence and cloudy sky. +sun_adcizewwgmoulcik.jpg The image shows a small, two-story house with a gabled roof, painted in a muted grayish color with reddish-brown trim, viewed from the front and slightly off-center, partially occluded by a blue car in the foreground and surrounded by lush green foliage in a hilly background. +sun_buylswgvglxfrhxh.jpg A single-story, beige-colored house with a gabled roof viewed from the front, featuring large windows, a double garage, and partially obscured by a wooden fence in a sparse woodland setting with overcast skies. +sun_bdjofnflnlvogafd.jpg The house is a light turquoise two-story structure with a gabled roof viewed from a front-side angle, featuring several windows, surrounded by bare trees and a bush to the left, with a partially visible fence and a green dumpster in the background, under a cloudy sky. +sun_bhdpkqbbytjreexm.jpg The house appears in a desaturated blue-green tone with a gabled roof, bordered by lush greenery and a variety of colorful plants, with a chimney on the left and a visible window adorned with flowers to the right, partially occluded by garden foliage. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/hunting_lodge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/hunting_lodge_descriptions.txt new file mode 100644 index 0000000..ec69ef7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/hunting_lodge_descriptions.txt @@ -0,0 +1,3 @@ +sun_bdjqsaaoxvxvgmnf.jpg The hunting lodge appears in an elevated position with a prominent, elongated wooden structure in bright, enhanced green and brown hues, surrounded by dense foliage on a sloped, rocky hillside with a clear view from the front side showing a helicopter nearby and a body of water in the foreground. +sun_blklclqktqhavafv.jpg The hunting lodge is viewed from a slightly elevated angle, featuring a darkened rustic wooden facade with a grey metal roof, stone chimney on the left, wooden railings, and surrounded by partial vegetation and rocky terrain. +sun_bkdeshnqeekulgmf.jpg A red hunting lodge with a steep gabled roof and wooden balcony, viewed from a low angle, is surrounded by a grassy area and trees, with modifications giving it a bright turquoise sky and enhanced colors. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ice_cream_parlor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ice_cream_parlor_descriptions.txt new file mode 100644 index 0000000..68fa05f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ice_cream_parlor_descriptions.txt @@ -0,0 +1,3 @@ +sun_djdeitrckcbvpdam.jpg The ice cream parlor, viewed from a low oblique angle, features a curving glass display case with numerous vividly colorful ice cream scoops, set against a warm-toned, dimly-lit interior with decorative elements lining the walls, and has a small child slightly occluding the left side. +sun_dfajgjiqiifncwyp.jpg The visually augmented ice cream parlor appears in a pale green hue with a tilted perspective showing orange chairs at tables, a patterned wall to the right, and a counter with display freezers centered in the image amidst hanging fluorescent lights in a sparsely decorated interior. +sun_djdqagvgmhlktnyj.jpg The image shows an ice cream parlor with a greenish hue, featuring a stone wall with blackboards, a counter displaying numerous ice cream tubs, a group of people interacting with the staff behind the counter, and a patterned floor, viewed from a slightly elevated angle with some patrons obscured by the display case. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ice_floe_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ice_floe_descriptions.txt new file mode 100644 index 0000000..6dc3380 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ice_floe_descriptions.txt @@ -0,0 +1,3 @@ +sun_asxrxsnaqpfvjkwb.jpg The image shows a predominantly grayish ice floe with a rough and jagged texture, set against a dull sky and cold water, partially obscured by a group of indistinct figures in a boat in the center, highlighting the floe's uneven surface and layered formations. +sun_bbpnxmhafoexuvcm.jpg A low-resolution image shows a flat, expansive ice floe with an artificially darkened grayscale hue, occupying the majority of the scene in a landscape orientation with a person and rocks partially occluding the lower left, while the background reveals an overcast sky and distant coastline. +sun_bmsjjeflooecqdtq.jpg The ice floe appears in a dark, bluish-gray hue with a smooth texture and irregular shapes, scattered across a flat, reflective water surface, set against a backdrop of a misty, overcast horizon. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ice_shelf_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ice_shelf_descriptions.txt new file mode 100644 index 0000000..9611f6b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ice_shelf_descriptions.txt @@ -0,0 +1,3 @@ +sun_brpwztmgmcdwbczi.jpg The ice shelf appears in a vertical orientation with a pale purple hue, showcasing a jagged and rugged texture on its towering face, set against a partially obscured background of clouds and smooth, flat ice below. +sun_aadbmpmxxatythtm.jpg The ice shelf in the image appears vertically oriented with a rough, textured surface exhibiting a bluish-white hue, set against a muted backdrop with a ship partially occluded by the massive icy structure. +sun_bqovgtdgsgdulxab.jpg This ice shelf appears as a jagged, crystalline formation with an altered hue of bright cyan, set against a rugged mountainous backdrop, with fragmented ice floating on the calm, reflective waters in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ice_skating_rink_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ice_skating_rink_descriptions.txt new file mode 100644 index 0000000..687967d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ice_skating_rink_descriptions.txt @@ -0,0 +1,3 @@ +sun_azlqqfqmnapvqoze.jpg The visually augmented ice skating rink appears with a vivid blue sky contrasting its large, angular, white exterior, featuring prominent stairs leading to a shadowed entrance with minimal visible environmental details. +sun_bdyfbrhpistjnkwr.jpg The ice skating rink appears with a dark, reddish hue, featuring a smooth texture and visible markings, seen from a ground-level angle with a distant view of walls decorated with vibrant, outlined athlete posters, surrounded by a high ceiling with structural beams and minimal occlusion. +sun_blugpeifvqkxospv.jpg The ice skating rink appears with a bluish tint under bright artificial lights, viewed from an angle showing an expanse of smooth ice with red circle markings, surrounded by white and orange boards, and banners hanging from the high ceiling, with two skaters visible in the distance. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/iceberg_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/iceberg_descriptions.txt new file mode 100644 index 0000000..2e18d5b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/iceberg_descriptions.txt @@ -0,0 +1,5 @@ +sun_atvdyagpbomhibrn.jpg The iceberg appears in a pale, almost pastel blue with a smooth, rounded top and jagged edges, reflecting sunlight on a calm sea surface, partially obscured by glare, giving it an ethereal glow against a light overcast sky. +sun_apppiycsdldvrrtz.jpg The iceberg appears in a pale cyan color with a smooth, elongated shape, seen from a side angle, partially submerged in calm water, with a group of small birds perched on its flat top surface. +sun_asbnusaihryxopbn.jpg The iceberg appears as a collection of jagged, light blue and white shapes floating in a calm, reflective body of water, with the landscape of distant dark, rugged mountains under a soft, cloudy sky in the background. +sun_ajqqcxskwcdkyhrm.jpg The iceberg appears light blue with smooth and jagged textures, viewed from the side and floating in a calm body of water against a backdrop of distant snowy mountains and clear sky. +sun_akruzbkawohrabqj.jpg The iceberg appears in a deep blue hue due to color augmentation, with a textured surface spotted with numerous small birds on its undulating ridges, viewed from a side angle against a horizon of rocky outcrops partially obscured by the iceberg's height. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/igloo_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/igloo_descriptions.txt new file mode 100644 index 0000000..3d80969 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/igloo_descriptions.txt @@ -0,0 +1,6 @@ +sun_aeilzkonhzckvpgj.jpg The igloo appears darkened with a coarse, blocky texture due to the low resolution, viewed from a frontal angle, partially open at the top, and situated in a dimly lit, snowy environment with people partially obscuring its entrance. +sun_agavxwvifpufjiqa.jpg The igloo appears in a turquoise hue with a brick-like texture, viewed from the front-left side, featuring a visible entrance partially blocked by snow blocks in a snowy environment. +sun_awcjosrlrxyoapcd.jpg The image shows a snow igloo with a low, rounded structure oriented slightly to the left, appearing bluish-grey in color due to the lighting or filter, with a smooth but slightly uneven snowy texture and an entrance visible in the front, set against a dark, possibly nighttime background. +sun_abgdqxqmnvkjszca.jpg The igloo appears in a muted, possibly unnatural hue with a smooth, snowy texture, seen from a slightly frontal angle, with a visible entrance and partially obscured by people standing around it while surrounded by a snowy environment. +sun_awbabjeoybzxkiyj.jpg A small, roughly dome-shaped igloo with a smooth snow texture appears off-white under a blue tint, sitting in the foreground on a snowy landscape with a partially melted hole beside it, viewed from a side angle, with colorful tents and distant figures in the snow-covered background. +sun_ajzzhwukjdfdhsaz.jpg The igloo has a bright white snow texture with a purplish tint, viewed from the front with the entrance centered, partially occluded by a person inside, and is set in a snowy field with patches of green grass. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/industrial_area_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/industrial_area_descriptions.txt new file mode 100644 index 0000000..373da48 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/industrial_area_descriptions.txt @@ -0,0 +1,3 @@ +sun_aznzspxqejoornbs.jpg The industrial area appears in muted, bluish tones with tightly arranged rectangular buildings and prominent smokestacks emitting steam or smoke, viewed from an elevated angle with a hazy backdrop of distant structures. +sun_auythuvykzgprlyr.jpg The image depicts three large cylindrical silos in an industrial area, appearing in a muted blue-gray hue due to color augmentation, viewed from a slightly elevated angle against a backdrop of blue sky with scattered clouds, with the lower section partially occluded by machinery and fences. +sun_ahsknmkvyzjvzpic.jpg The image shows several large, gray cooling towers of a power plant with altered dark clouds of smoke billowing upwards against a muted, ominous sky, partially obscured by silhouetted trees and industrial structures at the base. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/inn_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/inn_descriptions.txt new file mode 100644 index 0000000..836e333 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/inn_descriptions.txt @@ -0,0 +1,6 @@ +sun_ayupqtkxelvzancp.jpg The inn appears in a vertically oriented view with a predominantly yellowish-green color filter, featuring a rustic, textured stone facade partially occluded by leafy greenery at the bottom, and a large, white and red sign delineating the building's upper portion against a bright, cloudy sky backdrop. +sun_bgptnbgipciqegwj.jpg The image shows a red-brick building with multiple white-framed sash windows, set at a slight angle along a narrow street, flanked by a black iron fence and pavement, with partial tree and sky occlusion. +sun_aswghdnabkqlogkr.jpg The image depicts an inn with a sepia-toned, rustic stone facade featuring arched windows and shutters, viewed from an angled perspective, with lush greenery partially covering the lower section, and an overcast sky completing the serene setting. +sun_byxvxowfukqzdjan.jpg The image shows a large brick inn with a darkened, sloped roof, accented by red window flower boxes under diffuse lighting, situated in a grassy area with shrubbery in the foreground and a canopy-shaded seating area partially covered by the shadow of a nearby tree. +sun_apyfgdawtolariza.jpg A low-resolution image of an inn shows the building in a bright, augmented yellow and green hue with a gabled roof and dormer windows, partially obscured by the shadowy silhouette of trees in the foreground. +sun_bocmjstjzffujemm.jpg The inn appears in a brightened blue hue with a multi-story rectangular structure, featuring numerous white-framed windows and a distinctive black sloping roof, viewed from an angled perspective where one side is partially visible and surrounded by a street with parked cars and adjacent buildings. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/islet_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/islet_descriptions.txt new file mode 100644 index 0000000..014437d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/islet_descriptions.txt @@ -0,0 +1,6 @@ +sun_bvbmocnkdnxbfgcb.jpg The islet appears dark green with a smooth, dome-like shape visible from a side angle, set against a cloudy gray sky, while the foreground includes a sandy shoreline, and the distance creates slight occlusion at the base by the horizon. +sun_arkpwbbekqkucvfr.jpg The islet, viewed from a high angle, features a green and brown grassy top above dark, jagged rocky sides surrounded by turbulent white surf with foreground vegetation framing the scene against a cloudy sky. +sun_ahakqalyvizhmgpd.jpg The small rocky islet, set against a purple-hued sky, features lush green vegetation atop and is surrounded by vibrant blue water, with a couple of divers partially visible in the foreground near its base, lending a sense of scale to the scene. +sun_byopnshzhrvkuiuk.jpg A small, elongated group of trees with dark green foliage sits atop a pale sandy strip, surrounded by bright turquoise water under a sky with patchy clouds, viewed from a low angle with slight distortion due to visual augmentation. +sun_afiqewzjnikytevw.jpg The islet appears with a reddish-brown textured surface, partially covered in green patches, viewed from a frontal angle with a visible darkened cave-like opening at the base, surrounded by clear, deep blue water. +sun_anabrqkpkwccmkyq.jpg A silhouetted islet, appearing dark due to shadowy lighting, is nestled between two larger landmasses under a sky with darkened clouds, framed by the silhouetted outlines of tall grasses in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/jacuzzi_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/jacuzzi_descriptions.txt new file mode 100644 index 0000000..56055d4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/jacuzzi_descriptions.txt @@ -0,0 +1,6 @@ +sun_dgwaknnhblpsqngy.jpg The image shows a low-resolution jacuzzi with a hexagonal shape, filled with bubbling water that appears green due to color alteration, featuring a metal handrail at the front center, surrounded by red-tinted tiles, and partially obscured by five individuals sitting around the perimeter. +sun_didfvkvckuetehba.jpg The jacuzzi features a warm, sepia-toned color with a smooth, circular texture, viewed from a slightly elevated angle showing its perimeter lights and partially enclosed by a wall with a pool and soft lighting in the background. +sun_byjggjnmojofusqb.jpg The jacuzzi appears in a desaturated, muted blue hue with visible ripples and bubbles, viewed from a slightly elevated angle showing metal handrails and surrounded by a gray-tiled floor with dark lounge chairs on one side, suggesting an indoor setting with large windows. +sun_bifqfoeahfzgafvi.jpg The jacuzzi appears as a round, low-resolution pool with a greenish hue inside, surrounded by red-brown brick-like tiles; it is situated indoors with large windows showing a blurred, tree-filled exterior, and includes a stainless steel handrail on one side. +sun_afkmyrcmtmhjsetu.jpg The low-resolution image depicts a jacuzzi with water tinted in pale turquoise and swirling frothy textures, viewed from an elevated angle, with a small potted plant and beige tiled walls partially visible in the background. +sun_dwmwkyrbwjlvkizy.jpg The jacuzzi is viewed from the front with a light green hue dominating the rectangular tub surrounded by textured stone flooring, positioned centrally under a bright interior, bordered by large windows revealing lush greenery outside, and a white plastic chair on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/jail_cell_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/jail_cell_descriptions.txt new file mode 100644 index 0000000..576a80e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/jail_cell_descriptions.txt @@ -0,0 +1,3 @@ +sun_akjhmszgsrddvajh.jpg The image depicts a small, basic jail cell with two teal bunk beds against a white wall, viewed from a slightly angled side perspective, featuring a metal ladder, a shelf with books near the top bunk, and a window to the right, allowing light to illuminate the grey-speckled floor. +sun_agxojbgcntbcroxr.jpg The image depicts a low-resolution jail cell with a beige color tone, featuring a plain wooden bench along the back wall, a silver-colored toilet partially visible in the lower right corner, and an off-center orientation creating a view with the left wall slightly occluded. +sun_ahhhilcrwujdtzfj.jpg The visually augmented jail cell has a desaturated, grayish tone with a forward-facing viewpoint showing transparent glass walls and doors, a light stone-textured wall, and simple modular furniture inside, with occlusion from the ceiling light that adds a slight overexposed glare. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/jail_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/jail_descriptions.txt new file mode 100644 index 0000000..54e26cb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/jail_descriptions.txt @@ -0,0 +1,5 @@ +sun_axnqghsyxyecqjek.jpg The image displays a drab gray and white interior view of a jail with a row of barred metal doors marked by red numbers, seen from an oblique angle, with sunlight casting a grid pattern onto the floor through nearby windows. +sun_anfzafzchgsppuyx.jpg A low-resolution image shows a mint-green, vertically-paneled gate viewed head-on, enclosed between light brown brick structures with flat roofs, one partially occluded by foliage on the right, under a soft purple sky. +sun_agfykapzxzmaxsxg.jpg The image shows a dimly-lit hallway with yellow-tinted walls of barred cells on both sides, viewed from a central perspective, while a crowd of people in various colored clothing walks through the corridor, casting irregular shadows on the floor. +sun_aphioefkpzcmbwpg.jpg The image shows a row of vertically oriented jail cells with bluish-gray bars and walls, viewed from a low-angle indoors, with a concrete floor and some overhead infrastructure partially obstructing the top. +sun_avynalaoygpkbech.jpg The image shows a dimly lit corridor with rows of beige jail cells on both sides, red railings, and overhead fluorescent lights, while a large group of people crowd the center walkway. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/jewelry_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/jewelry_shop_descriptions.txt new file mode 100644 index 0000000..73d0bdc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/jewelry_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_agizqhzqjewceuhe.jpg The image shows a low-resolution jewelry shop with blue-tinted glass display counters and walls, reddish-brown shelving units, and overhead lighting casting a warm glow, while the left side is partially occluded by metallic balloons. +sun_acxheyprtwfgstbd.jpg The jewelry shop features a display of items within black and white glass cases on a red carpet, with pink flowers accenting the setup, viewed from an angled perspective that highlights a bright, spacious interior with visible wall decorations and counters. +sun_aevksyvkvjrtbkta.jpg The jewelry shop features an interior with vibrant red-orange display cases and a prominent crystal chandelier at the center, showcasing an array of items on reflective surfaces with a pinkish hue under reduced light, set against a background of arched shelves adorned with various silverware, all viewed from a slightly elevated angle. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/kasbah_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/kasbah_descriptions.txt new file mode 100644 index 0000000..df6ff6c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/kasbah_descriptions.txt @@ -0,0 +1,6 @@ +sun_awumnsyhrhbefmru.jpg Set against a vivid purple-blue sky, the kasbah appears in muted brown tones with a rugged texture, situated on a rocky hillside in a frontal viewpoint, surrounded by sparse greenery and mountainous terrain. +sun_akvluygrsdduvgwl.jpg The kasbah appears in a warm reddish hue with a sand-like texture, viewed from a slightly angled frontal perspective under a vivid blue sky, partially obscured by vehicles and sparse greenery on the left side. +sun_adxkxbvspykgrqea.jpg A sandy brown kasbah viewed from a low angle features rough-textured walls, partially occluded by a yellow and orange patterned tapestry on the left, contrasted by a clear sky backdrop. +sun_aubvgotliivekhxl.jpg The kasbah appears in a desaturated beige tone with intricate geometric carvings and towers, viewed from a slightly elevated angle, surrounded by a cloudy sky with partial occlusion from palm leaves on the right. +sun_alzlqkofepbcmllz.jpg The image depicts a kasbah in a muted, sepia tone with a textured, earth-toned facade, observed from an elevated angle showing partial occlusion by modern shade structures, with a flat rooftop and scattered satellite dishes enhancing the modern-meets-ancient aesthetic. +sun_agxohbpgwrmohevr.jpg The kasbah appears with a light sepia tone and a rough, earthen texture, viewed from a ground-level perspective, displaying an open courtyard with central tall structures under a dramatically clouded sky, while shadows cast onto the foreground enhance the depth of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/kennel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/kennel_descriptions.txt new file mode 100644 index 0000000..11bd83c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/kennel_descriptions.txt @@ -0,0 +1,6 @@ +sun_asvklogioaifychy.jpg A kennel with dark tiled flooring and a plush, cream-colored bed in a maroon plastic frame is visible from a low vantage point, partially occluded by a shadowy foreground, with a wire gate beyond showing a concrete path and grass, where a gray-colored dog stands next to a red ball. +sun_aovyulupfwiygtbq.jpg The kennel appears as a chain-link structure viewed from an angled perspective, displaying a brightened, high-contrast color modification with a single dog visible inside, surrounded by a sunlit concrete environment. +sun_ahhyzvkajnaunyuc.jpg The kennel appears with a violet hue due to color augmentation, viewed from the ground looking down a long corridor with tiled flooring and wire mesh sides, partially occluded by a person crouching at the end holding an animal, alongside a visible orange container. +sun_annabrdomcmhordv.jpg The image shows a row of dark, vertically-oriented wire kennels lining the left side of a spacious and light-colored room, with a bright, multi-colored play structure featuring red, purple, and orange elements occupying the right side, while the floor has two rectangular grates and the walls appear to be light gray with vertical paneling and large windows. +sun_afyevwjfbkrugfbm.jpg The kennel appears in a frontal view with altered bluish-gray siding, a central white door with a corrugated awning, two green shuttered windows, and is partially obscured by metal fencing while surrounded by trees in the background. +sun_apgiiltjemqjruhz.jpg The kennel appears silver with a chain-link mesh texture, viewed from the side at an angle with trees partially occluding the scene in a natural grassy environment, and includes a neutral-toned dog visible through the fencing. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/kindergarden_classroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/kindergarden_classroom_descriptions.txt new file mode 100644 index 0000000..1e69092 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/kindergarden_classroom_descriptions.txt @@ -0,0 +1,3 @@ +sun_afmyzinsyyriyqub.jpg The image depicts a playfully arranged kindergarten classroom with red chairs around a low table, colorful artwork on butter-colored walls, and various toys and playsets arranged neatly, all viewed from an angled overhead perspective with a soft, muted color overlay. +sun_amycqpexxhxuujhp.jpg The kindergarden classroom, viewed from a side angle, displays teal and white walls adorned with colorful posters, several wooden tables cluttered with paper and pink containers, and young children in blue uniforms engaged in activities, while soft daylight filters through a window, casting a gentle glow. +sun_awsvcqqguqyblfoc.jpg The kindergarten classroom appears in a pastel-hued, softened texture with yellow-toned walls and a variety of colored storage bins, visible in a horizontal layout with partially obscured wall displays and windows filtering in ambient light on the left side. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/kitchen_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/kitchen_descriptions.txt new file mode 100644 index 0000000..ff83789 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/kitchen_descriptions.txt @@ -0,0 +1,6 @@ +sun_atkrisvsrzpbgyxu.jpg The image portrays a dimly lit kitchen with white cabinets, a reflective floor that appears grayscale due to color alteration, wooden chairs facing forward, and a fish tank partially visible on the left side, with soft shadows casting across the scene. +sun_apumvnycvwtrdlmc.jpg The kitchen features a warm, reddish hue over wooden cabinetry with a black and white checkered floor partially transitioning to a wooden texture, viewed from an angle showing a large stainless steel refrigerator, centered island with wooden stools, and bright window lighting revealing some outdoor greenery. +sun_auzwhookgjmsmnrs.jpg The kitchen features a warm-toned wood backsplash with visible grain texture and a muted white countertop viewed at an angle, with appliances surrounding the central counter, partially obscured by a small area rug, while the space is illuminated by soft natural light from multiple white-framed windows. +sun_azasqdtcqckquplg.jpg The kitchen appears in a vivid red hue with glossy, stainless steel appliances at the center, featuring red granite countertops with flowing water from a faucet in the foreground, an elevated viewpoint highlighting cabinets and a partially occluded wine glass on the counter. +sun_ajuqshhjcubjzedh.jpg The kitchen features dark wood cabinetry with a sleek metallic backsplash, viewed from a wide-angle perspective showing a black countertop with shiny decorations and a central island, set against a bright floor and softly illuminated by ceiling lights. +sun_acmstexzoiusuvqj.jpg The kitchen features a warm, reddish hue with an orientation showing a central island with a textured countertop and visible stovetop, surrounded by light cabinetry and stainless-steel appliances, set against a distinct red-orange textured wall. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/kitchenette_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/kitchenette_descriptions.txt new file mode 100644 index 0000000..9b1921f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/kitchenette_descriptions.txt @@ -0,0 +1,4 @@ +sun_aghlxmiovdjcrzvj.jpg The kitchenette features a bright, teal-blue color scheme with a rustic, wooden sideboard in the center, flanked by white appliances on the left, shelves holding dishes on the right, and lace curtains partially covering the window above it. +sun_aggoxcvtjlqrairh.jpg The kitchenette appears in a pinkish hue with checkered wall tiles, viewed from a front-right angle showing a compact counter space with jars, a partially open window with a view outside, and an oven to the right with a visible curtain underneath the countertop. +sun_aslbacmozyltajwv.jpg The kitchenette features a rustic design with a warm color palette, including a beige wall and wooden textures, a small sink set into a tiled countertop adjacent to floral-patterned cabinetry, and an overhead open shelf displaying white dishes and jars, partially obscured by shadowing on the left side. +sun_ambbwwafhjhxvdwm.jpg A kitchenette with muted, darkened tones features light wood cabinetry, a compact white microwave and stove combo, partially obscured by a small sink and assorted kitchen items along a marble-textured wall. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/labyrinth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/labyrinth_descriptions.txt new file mode 100644 index 0000000..3f70578 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/labyrinth_descriptions.txt @@ -0,0 +1,5 @@ +sun_bihwlfmttcnqehuq.jpg A circular labyrinth with a distinctly green hue and a spiraling path is surrounded by a grassy environment, featuring a central white object and a series of evenly placed protrusions around the perimeter. +sun_buybwuusqsjigglb.jpg A labyrinth composed of circular stone paths set on a grassy and slightly uneven terrain, viewed from an elevated angle with a backdrop of dense green trees, features a muted earthy color palette likely altered from its original hues, with a few figures walking along its twisting paths. +sun_bbasykvtutnbqdsp.jpg A sunlit stone labyrinth with a sepia tone, viewed at an angle, where three people are walking in different directions amid circular stone pathways surrounded by a grassy park environment. +sun_bbyiifaqolbnljyh.jpg The image depicts a labyrinth with a prominent swirling pattern, appearing in an augmented rusty orange tone amidst a vibrant green and brown natural setting, viewed from an aerial perspective with surrounding foliage partially occluding its edges. +sun_bdisysjjfwkwrzgh.jpg The labyrinth is a flat pattern on grass, with paths faintly outlined in the green lawn, surrounded by people walking along it under clear, sunny skies with sparse autumn trees and parked cars in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/lake_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/lake_descriptions.txt new file mode 100644 index 0000000..7e0d10c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/lake_descriptions.txt @@ -0,0 +1,6 @@ +sun_agqkmpgtfsykydsz.jpg The image shows a deep blue lake with a textured, calm surface, surrounded by snow-capped mountains in the distance, with evergreen trees partially occluding the foreground, and an island is visible near the center. +sun_aoikosjowjxkztio.jpg The image depicts a low-resolution lake with a deep blue hue, surrounded by lush green fields under a dramatically altered purple-toned sky, with mountainous silhouettes in the background and trees partly occluding the view at the lake's edges. +sun_asvqshfqcbfycqly.jpg The lake, centrally positioned amid a valley of lush green hills and snow-capped mountains, reflects an artificially vivid purple hue under a sky with altered vibrant blue tones, with the scene viewed from a slightly elevated angle. +sun_bubczknuxswlarsp.jpg The lake appears serene with a dark, desaturated bluish tone, reflecting surrounding hills under an overcast sky, with geese visible in the foreground adding a natural, tranquil element to the scene. +sun_bihpdfituarmevbb.jpg The visually augmented lake appears in vibrant shades of turquoise and coral, reflecting an array of autumnal trees on its still surface, with a red-roofed building nestled at the tree-lined shore under a brightened sky, viewed from a slightly elevated angle without visible occlusions. +sun_bnrwcoftgizmknfr.jpg The lake, viewed from a low vantage point, appears turquoise with a smooth texture, surrounded by a coniferous forest and rocky snow-capped mountains, while patches of green vegetation and reflective water pools in the foreground create a vibrant natural scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/landfill_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/landfill_descriptions.txt new file mode 100644 index 0000000..f675961 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/landfill_descriptions.txt @@ -0,0 +1,5 @@ +sun_amlchdstzxnoukss.jpg The image shows a sprawling landfill with a blue-tinted view, filled with a chaotic mix of debris spread out across the foreground where a red-orange bulldozer is central, two figures in high-visibility vests stand on the litter-strewn ground, and a bird hovers above, with a muted horizon line in the distance under a pale sky. +sun_aiujazjeykjpbnon.jpg A tilted view shows a rust-red bulldozer amidst variegated, colorful waste under a turquoise sky, with a hill of debris partially obstructing the lower left section. +sun_agcncuqyaejmzzse.jpg The landfill appears as a densely packed heap with a mottled texture, exhibiting predominantly dark and muted colors scattered with occasional brighter hues, viewed from a low angle, showing metal objects and miscellaneous debris on top, while partially obscured flora borders the scene. +sun_annqxfjhqhxndvdm.jpg The image shows a landfill with a textured, multicolored heap of garbage dominated by muted and artificially altered colors, viewed from an elevated angle, with parts of the surroundings occluded by dense vegetation on the right. +sun_akqilnjmtfkztydl.jpg A sprawling and textured landscape of muted, washed-out colors stretches into the distance, dominated by scattered debris and a faintly visible silhouette of machinery, under an overcast sky densely filled with numerous birds in flight, creating a sense of chaotic motion. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/landing_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/landing_deck_descriptions.txt new file mode 100644 index 0000000..4392609 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/landing_deck_descriptions.txt @@ -0,0 +1,3 @@ +sun_btrpsakutynifgbr.jpg The landing deck, seen from a side viewpoint under low light, appears deep red with blurred, elongated light trails extending across the emblem-blazoned aircraft and reflective runway surface, where silhouettes of personnel provide scale and contrast. +sun_aqriexdzfxrfdsco.jpg The landing deck appears in muted grayish tones with a smooth texture, viewed from an oblique angle showing a helicopter hovering above, with white foam indicating ocean waves in the background and no significant occlusion. +sun_aaddnyjyhfcpopua.jpg The landing deck appears textured in a dark hue with a high-contrast orientation, featuring a jet in profile view with vibrant yellow-clad personnel directing, positioned such that the blurred ocean and sky form the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/laundromat_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/laundromat_descriptions.txt new file mode 100644 index 0000000..798321c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/laundromat_descriptions.txt @@ -0,0 +1,5 @@ +sun_akgssnbxysnviuon.jpg The image shows a row of front-loading washing machines with red exteriors and chrome doors, viewed from an angled side perspective with each machine's round door clearly visible, containing some clothes inside. +sun_aifyvnoilbmcahci.jpg The laundromat appears in a darkened, red-tinted palette with rows of industrial-size white washing machines along the back wall, housing large, dark circular doors; a lone person partially obscures the row of front-load dryers on the left under harsh overhead lighting, and a central pillar with an attached seating fixture marks the interior layout amidst a sparsely tiled floor. +sun_anikjvdrxrywuyvr.jpg The laundromat appears with a red and blue color scheme, showcasing a row of front-loading washers against the left wall with a slightly elevated viewpoint, surrounded by indoor plants and benches, with minimal occlusion from the surrounding decor. +sun_aaxufyiupegixznm.jpg The laundromat depicts a dimly lit, reddish-toned environment with three front-loading washers featuring large circular doors, displaying swirling clothes inside, while a person in a hoodie and beanie sits smiling in the foreground. +sun_awigfehbvyxhksxu.jpg The laundromat appears in a darkened blue hue with sunlight filtering through the glass door illuminating the tiled floor, where industrial-sized washing machines with a muted color finish line one wall while a black silhouette partially occludes the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/lecture_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/lecture_room_descriptions.txt new file mode 100644 index 0000000..1a41012 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/lecture_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bcjwxsjwsvkfskep.jpg The augmented lecture room appears with a bright, light wood texture on both the floor and chairs, neutral white ceilings and walls, and features rows of wooden seats facing a wooden lectern and table under a slightly distorted viewpoint, with the room's spacious layout unobstructed and well-lit by ceiling lights. +sun_bgduyjxoaesmsrdd.jpg The lecture room appears in a cooler color tone with a side view showcasing rows of beige chairs and dark-suited individuals along tiered, wood-textured seating, partially obscured by a crowd of people, with large windows visible in the background providing natural light. +sun_acmjoyjdyftfmmga.jpg The lecture room appears in muted brown tones with a tiled wood-textured ceiling, a tiered setup of cream-colored seats with black desktops, a slanted wall panel on the left, and projector equipment centrally positioned against flat, grayish-white walls. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/library_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/library_descriptions.txt new file mode 100644 index 0000000..ef85de6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/library_descriptions.txt @@ -0,0 +1,5 @@ +sun_bforrnptasikypcb.jpg The library space, viewed from a frontal angle, features a central yellowish wooden table with mismatched chairs against shelves of neatly arranged books set on a green carpet, with an overexposed window and a softly lit floor lamp in the background. +sun_bohzkwamgaqtjwfw.jpg The library image shows a dimly lit interior with greenish tones, featuring two rows of bookshelves filled with books and scrolls, a central Corinthian column with decorative capitals, viewed from a low angle down a narrow aisle, partially obstructed by the shelving and column. +sun_bvvmhallnvsopxsb.jpg The image features a slightly blurred, low-resolution library interior with augmented warm hues, displaying wooden card catalogs and shelves filled with multicolored books, seen from a corner viewpoint with greenery and office furniture partially occluding the central area. +sun_bqbgcqdxwndclqel.jpg A low-resolution image shows a library circulation desk viewed head-on, with a muted, altered color palette highlighting the wooden texture of the desk, surrounded by shelves filled with books and partially obscured by people interacting at the counter, set under industrial-style lighting. +sun_bavljnjvwieiepak.jpg The visually augmented library features an overexposed setting with bright, warm tones and a prominent white book cart in the foreground, placed at an angle, while numerous bookshelves filled with colorful books create a vibrant backdrop, with the environment partially occluded by a wooden counter and office supplies. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/lido_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/lido_deck_descriptions.txt new file mode 100644 index 0000000..e2cb6e8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/lido_deck_descriptions.txt @@ -0,0 +1,3 @@ +sun_arspdprcolobjwrr.jpg The lido deck appears in a high-contrast, washed-out blue and white color scheme with geometric lines and shapes, featuring pools and deck chairs symmetrically arranged, with clusters of large white globes and colorful flags decorating the upper area of the ship, viewed from a central elevated perspective. +sun_bpoqllikynanvewl.jpg A brightly colored lido deck features a mosaic-tiled pool with a central fountain, flanked by vividly purple railings and sun loungers, viewed from an angle that highlights the stairway leading to an upper deck, with the sky and parts of a ship structure obscured by the overhanging ceiling. +sun_bzleeoayogumzhyj.jpg The image shows a low-resolution, desaturated view of a lido deck with statues of a bear and a cub on a rocky platform at the pool's edge, where the water appears dark and reflective, framed by metal railings, with indoor lighting casting a warm glow at the top. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/lift_bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/lift_bridge_descriptions.txt new file mode 100644 index 0000000..fa35b6b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/lift_bridge_descriptions.txt @@ -0,0 +1,3 @@ +sun_bzyojklpykxmrthe.jpg The lift bridge appears with a purple-blue hue, silhouetted against a twilight sky, featuring two prominent vertical towers connected by a horizontal span above a calm waterway with reflections of city lights, and the view is unobstructed and from a low angle. +sun_atssabatdgvmwcwz.jpg The lift bridge appears dark gray and metallic with a boxy, angular framework, viewed from a side angle as it ascends on one side over a narrow canal, partially obstructing a long, narrow boat beneath, set against a backdrop of lush greenery and distant, large structures. +sun_bumlyshkologqjgc.jpg The lift bridge appears in a desaturated bluish-grey hue with a metallic texture, viewed from an elevated angle with trees partially occluding the lower right and left, showcasing a truss structure with vertical lift towers against a wide river and clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/lighthouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/lighthouse_descriptions.txt new file mode 100644 index 0000000..bc7aa39 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/lighthouse_descriptions.txt @@ -0,0 +1,5 @@ +sun_aflgmdgsubwmxjui.jpg The lighthouse appears in a muted, pale grayish-blue hue with a vertical siding texture, viewed from a low angle with its octagonal structure partially obscured by leafless trees in the background and a white railing in the foreground. +sun_acgevxosjhmhlqfb.jpg The lighthouse appears with a vivid orange roof contrasting against a deep blue sky, exhibiting a tall, white, ribbed structure viewed from the ground up, with a sparse surrounding of greenery and partial cloud cover. +sun_ajbhvbhornmtfrhd.jpg The lighthouse features a pink roof with a white cylindrical tower, viewed from a low angle with rocks surrounding its base, and a cloudy sky in the background. +sun_actedozmevnccgmz.jpg The lighthouse, viewed from a ground-level perspective, stands tall with a distinctly altered white hue and smooth texture, partially obscured by a lush green tree on one side, against a cloudy sky, next to a red-roofed building. +sun_awucehqlblcsrwho.jpg The lighthouse appears with a red and white horizontally striped dome, positioned on a hilltop surrounded by a fence with red and white hues, and features a square base structure with large, evenly spaced windows under a predominantly blue sky tinged with pink. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/limousine_interior_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/limousine_interior_descriptions.txt new file mode 100644 index 0000000..45fbc6e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/limousine_interior_descriptions.txt @@ -0,0 +1,3 @@ +sun_arnuripcsrkkckpm.jpg The augmented limousine interior features a warm orange-brown color scheme with a leather-like texture, viewed from the back seat facing a retro television embedded in a pillar, surrounded by horizontal shaded lines indicating window blinds or ambient light, and minimal occlusion from seatbelts and partial seatback visibility. +sun_awslvkpjahtcnqzb.jpg The limousine interior, viewed from the rear and slightly to the right, features light-toned, smooth-textured seats and upholstery contrasted by a dark carpeted floor, with ceiling lights reflecting off shiny surfaces, and a mirrored divider at the front. +sun_aoefqwxpnaawohvn.jpg The interior of the limousine features a wavy black and silver seating pattern with a reflective, shimmering ceiling, viewed from a front-to-back perspective, and includes ambient blue lighting with partially occluded window views. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/living_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/living_room_descriptions.txt new file mode 100644 index 0000000..5070975 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/living_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfxaylqcmsblmpwa.jpg The living room appears in muted, darkened tones with a centrally positioned armchair and ottoman in front of a large glass sliding door, flanked by a visible bookshelf to the left and an entertainment unit to the right, creating a cozy yet occluded atmosphere. +sun_bmxnvsstaqdstqtt.jpg The living room, viewed from a slightly elevated angle, features an array of muted warm colors and textures with brown and reddish tones, displaying two couches with orange cushions, several scattered chairs, a large stone fireplace as a centerpiece against the far wall, with partial occlusion by furniture, under soft ambient lighting that creates a cozy atmosphere. +sun_bxdnritjvibevhgi.jpg The living room features a muted color tone with soft lighting, showcasing a brown leather sofa positioned on the left, flanked by dark curtains framing sliding glass doors at the center, while a flat-screen TV sits to the right on a stand beside a vibrant bouquet of flowers. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/lobby_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/lobby_descriptions.txt new file mode 100644 index 0000000..3d7a4a9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/lobby_descriptions.txt @@ -0,0 +1,6 @@ +sun_bmdtyeiqvhimeers.jpg The lobby features a series of blue-striped sofas and armchairs arranged on a glossy, reflective tiled floor with alternating light and dark tones, softened by diffused lighting from overhead fixtures and large windows partially obscured by lush green plants, creating a serene, inviting atmosphere. +sun_aljeyrkxshelybha.jpg The lobby appears with dark leather sofas and a matching ottoman arranged on a red patterned carpet, surrounded by greenery and a soda machine near large, curtained windows with a tiled ceiling and floor, creating a structured and orderly aesthetic. +sun_axdhpskcldpepnej.jpg The lobby features a grand, circular layout with a zigzag-patterned dome ceiling, a large central chandelier, and a checkered floor in warm tones, surrounded by elegant seating and decorative elements, viewed from a slightly elevated angle. +sun_aewjmnekqyjrrekq.jpg The lobby features a low-resolution, yellow-tinted appearance with a reflective patterned floor of black and gold geometric shapes, viewed from a central perspective with symmetric walls and a ceiling adorned with recessed lighting and mirrored surfaces. +sun_buhhvwodfypvdjby.jpg The visually augmented lobby appears in soft pinkish-beige tones with a textured, curved ceiling featuring circular light patterns, a central stone-like sculpture with water flowing down, and a polished, intricate geometric floor design observed from an eye-level viewpoint. +sun_bryhefepbtrebqpi.jpg The image shows a lobby viewed from a slightly elevated angle, featuring a distinctive purple sofa set against mirrored walls, with greenish floral-patterned chairs and beige marble flooring, surrounded by large windows offering limited outdoor visibility through shades. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/lock_chamber_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/lock_chamber_descriptions.txt new file mode 100644 index 0000000..5a6ac63 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/lock_chamber_descriptions.txt @@ -0,0 +1,3 @@ +sun_avvozluenojypppf.jpg The lock chamber appears in a vivid purple hue, surrounded by lush green foliage, with a view from above showing water cascading over the gate, partially obscured by overhanging branches on the left side. +sun_bzqhpcsgzswozfhs.jpg The low-resolution image depicts a lock chamber with a dominant gray concrete texture, featuring an overhead view that reveals a partially occluded rectangular basin with water at the bottom and a partially visible construction crane on the platform, all set under a bright lighting condition. +sun_bvnsfgsfxsgavekd.jpg The lock chamber appears with a muted greenish hue due to color augmentation, viewed from a boat's perspective, where it is framed symmetrically with overgrown vegetation on both sides, and features sturdy metallic gates partially occluding the chamber and creating a sharp contrast against the soft textures of the surrounding landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/locker_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/locker_room_descriptions.txt new file mode 100644 index 0000000..08b2bf8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/locker_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_arxpkzfzjukczvjw.jpg The locker room features muted gray lockers with a matte texture against white walls with red trim, viewed from an angled corner perspective, with a wooden bench in the foreground and a partially visible wooden doorframe and white partition on the right side. +sun_abrobwrylptceqfh.jpg The image shows a dimly lit locker room with pink chairs lined against a wall on the left, beige curtains creating changing stalls on the right, and a tiled floor, with the viewpoint angled directly down the aisle between the chairs and stalls. +sun_anntqxogukysnimn.jpg The locker room features an elongated, symmetrical interior view with orange-hued lockers lining both sides, separated by a central carpeted bench area and illuminated by overhead fluorescent lighting, emphasizing a clean and orderly aesthetic despite the low resolution. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/mansion_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/mansion_descriptions.txt new file mode 100644 index 0000000..0ae8714 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/mansion_descriptions.txt @@ -0,0 +1,6 @@ +sun_bngzaadclwsplkoc.jpg A small, low-resolution image shows a mansion with a pinkish hue due to color changes, featuring a classical façade with prominent columns, sitting amidst a grassy hill with trees partially obscuring the lower half, and a bright, altered sky. +sun_bybyiaslpucyuckq.jpg The visually augmented image depicts a grand mansion with a primarily white exterior, textured with smooth curved surfaces and cylindrical towers, viewed from a frontal angle with a manicured garden and vibrant flowering shrubs leading up to a spacious porch adorned by decorative stonework. +sun_buykogdajnwrghbq.jpg The visually augmented mansion features a stone-textured facade with a prominent turret on the right, seen from a front angle with a fenced, grassy foreground and partially obscured upper windows by lush green foliage. +sun_brtnedihtngaqxjr.jpg The mansion appears with a stone-textured exterior in greenish hues, viewed from the street with an inverted orientation, surrounded by trees and a lush garden, and distinguishable by its pointed gable roofs and arched windows. +sun_bllwzrrfigxefvtj.jpg The image shows a brick mansion with two stories, featuring white pillars and railings on a symmetrical front porch, set against a backdrop of lush trees that partly occlude the upper facade, with the view slightly angled upwards. +sun_byqzthxsypxekbtt.jpg The mansion, viewed from a front-right angle, features tan stone textures with ornamental carvings and a reddish-brown tiled roof, against a bright blue sky, with partial obstruction by leafy greenery on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/manufactured_home_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/manufactured_home_descriptions.txt new file mode 100644 index 0000000..58e7364 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/manufactured_home_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjezsmelazrskfsw.jpg A tan, single-story manufactured home is shown from a side angle, featuring a carport with a silver car underneath, white shuttered windows, a white skirting base, and a barren yard with small desert plants, all under a slightly overcast sky. +sun_bmptsehjthnapqgl.jpg The manufactured home appears in a washed-out pastel hue with a metal siding texture, viewed from a front side angle with one window partially visible, set in an open grassy area with unobstructed surroundings under bright, scattered clouds. +sun_bmddfdldsvvfrhuh.jpg The manufactured home is a horizontally-oriented, pale lavender structure with a sleek, smooth texture, featuring a front view with a small porch and railing, situated in a grassy environment with a chain-link fence in the foreground and a tall antenna extending from its roof. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/market_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/market_descriptions.txt new file mode 100644 index 0000000..180c4fb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/market_descriptions.txt @@ -0,0 +1,6 @@ +sun_bsehgxuhfkemxvqp.jpg A white canopy covers a market stall with green leafy plants and colorful signs, situated on a gray pavement, with partially visible people and lush green trees in the background. +sun_bxkeanmkoicujqdm.jpg A low-resolution image of an outdoor market shows a man in a purple shirt from a side viewpoint, standing in front of a table with floral-patterned coverings and various items, under a purple tent with a partially visible and augmented white banner, set against a lightly clouded sky with a few visible trees and a vehicle in the background. +sun_boiiiqvpektaetba.jpg The market scene, viewed from a slightly elevated angle and cast in a pinkish hue, features bustling stalls on either side with vibrant signage, dim interior lighting, and a crowd of people in darkened silhouettes filling the central aisle. +sun_adkpgiplachgsyem.jpg The small, open-air market with a reversed "OPEN AIR MARKET" sign displays altered colors, featuring a muted blue and white facade and a prominent Coca-Cola advertisement above a covered entrance, partially obstructed by a garbage can and surrounded by greenery, with stacks of goods visible inside. +sun_bnuwzsdwgpksnvxv.jpg This low-resolution, visually augmented image depicts an outdoor market with muted, cool-tone hues, featuring stalls aligned in a row with colorful striped umbrellas overhead, some occluded by one another, and assorted baskets of produce displayed on tables set against a gravelly ground under an overcast sky. +sun_babhmarxbaotifmq.jpg The market features a row of white tent canopies below a series of colorful international flags, surrounded by people and vibrant produce stands, set against a backdrop of tall urban buildings with a prominent farmer's market sign in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/marsh_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/marsh_descriptions.txt new file mode 100644 index 0000000..1cf4a05 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/marsh_descriptions.txt @@ -0,0 +1,6 @@ +sun_awpqacbohgzzjtfo.jpg A muted, sepia-toned marsh with still water reflecting surrounding tall grasses, viewed from a low angle with dense foliage and trees on the horizon, partially obscured by mist. +sun_avcjjbgjeebuvpqd.jpg A low-resolution marsh image shows a landscape with an altered green hue dominating the water plants and surrounding vegetation, viewed from a slight elevation with trees partially occluding the left and right edges, and distant hills visible under a subdued sky. +sun_alqfvlizgvfllvsg.jpg The image depicts a marsh with desaturated, brownish grasses and shallow water, where a person stands holding a long stick, surrounded by leafless trees in the background under an overcast sky. +sun_azgvpajjejjctudh.jpg The image shows a marsh with a narrow, winding waterway reflecting a light sky, surrounded by dense grasses and reeds in altered flat colors of blue and green, under a low viewpoint with the trees and horizon occluded by vegetation. +sun_abjstuqmctcsqlsf.jpg The marsh appears with muted earthy tones featuring dark brown water and reddish-orange grasses, viewed from a slightly elevated angle with reeds scattered throughout and some birds visible near the water's surface. +sun_bulnzckztegbujqb.jpg The image depicts a marsh with a still, reflective water surface tinted in muted earthy tones, surrounded by sparse vegetation and tree stumps on muddy banks, under a cloudy, overcast sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/martial_arts_gym_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/martial_arts_gym_descriptions.txt new file mode 100644 index 0000000..e6b1c5c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/martial_arts_gym_descriptions.txt @@ -0,0 +1,3 @@ +sun_bksmwkxysxloafmo.jpg A bright, high-contrast scene featuring martial artists in traditional white gi with black belts striking synchronized poses, viewed from a side angle on a glossy floor with a vibrant red backdrop and an emblem in the foreground. +sun_bsttzktchwplheka.jpg Several individuals in white and blue martial arts uniforms, standing in line with arms extended forward, are seen on a green mat in a gym, with a wall of equipment and mirrors partially visible in the background. +sun_bqaoltlhxwcnjtrl.jpg The image shows a martial arts gym with a darkened color scheme featuring a group of people practicing a stance in a spacious room with beige tiled flooring, minimalistic decor including a rainbow mural on the wall, and substantial overhead pipes, while some participants are noticeably occluded by others in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/mausoleum_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/mausoleum_descriptions.txt new file mode 100644 index 0000000..870c84e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/mausoleum_descriptions.txt @@ -0,0 +1,6 @@ +sun_bmssqaxrfmufhwxv.jpg A pyramid-shaped mausoleum with a smooth pinkish-blue surface stands centrally under a bright sky, viewed from the front with a slightly open door, casting shadows from bare trees onto its facade and flanked by black posts. +sun_bichfospwykajdqn.jpg The mausoleum features an upward view with augmented reddish hues, where a prominent sphinx statue in a warm tone sits beside steep, curved stone steps leading to a columned shelter adorned with detailed carvings, all surrounded by autumn-colored trees. +sun_bzomoyjkvemjsqxp.jpg A small, gothic-style mausoleum with a weathered stone facade tinted in dark purples and browns stands front-facing amidst overgrown trees and foliage, its arched doorway and stained-glass windows partially obscured by vibrant red and green leaves. +sun_bbnzcyngklosdebt.jpg The mausoleum, viewed from the front with a skewed orientation, appears with a muted, color-shifted brick texture, partially covered by dark green ivy along the top, surrounded by a wintery environment with bare trees and patches of snow on the ground, while the main structure is flanked by faded doors and its facade is marked by visible inscriptions. +sun_brigndgsguhlpxdi.jpg The mausoleum appears in a sepia-toned color with a rough stone texture, seen from an angled viewpoint under tall trees, surrounded by tombstones, with clear skies above and grass and a dirt path leading toward it. +sun_aroeqppyzdptjnkj.jpg The image depicts a coral-hued mausoleum with a frontal view, featuring detailed sculptures and columns, set against a bright turquoise sky, with partial structures visible on either side and a domed roof partially obscured by the main building. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/medina_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/medina_descriptions.txt new file mode 100644 index 0000000..9fd599a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/medina_descriptions.txt @@ -0,0 +1,5 @@ +sun_cnwoaatspndmeufh.jpg The image depicts a medina with a pale, desaturated appearance featuring tall, narrow, and weathered stone buildings with small shuttered windows, a central structure in a slightly angled pose showing predominant shadows on its textured facade, and a narrow, cobblestone alley partially obscured by a jutting balcony. +sun_cpdeppvtwnsdshxl.jpg The medina image shows a narrow alley with muted pink and gray walls, textured surfaces indicating age and wear, a wet cobblestone path reflecting light, and a person partially occluded by a gray wall, while the alley recedes into a foggy background with low visibility. +sun_cbnalmclhsczaebb.jpg The image depicts a narrow alley of a medina bathed in a deep red hue, featuring a rough, textured wall with visible wear, a person in dark clothing standing near an open wooden door on the left, and a brightly illuminated doorway with orange light spilling into the passage on the right. +sun_cwepwmkdwdxkdwqq.jpg The image features a narrow alley with blue-tinted whitewashed walls, a cobblestone pathway, and wooden shutters on windows visible at varying angles, while potted plants and a lantern adorn the left side, creating a quaint and shaded atmosphere. +sun_djoclmmewcuzhzrw.jpg The low-resolution image depicts a medina with predominantly sepia-tinted buildings, seen through a dark, arched passageway with visible cobblestone street texture, where pastel walls blend into the background streetscape, partially occluded by the archway above. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/moat_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/moat_descriptions.txt new file mode 100644 index 0000000..91d3a84 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/moat_descriptions.txt @@ -0,0 +1,5 @@ +sun_bfpeytvjxqccsnwz.jpg A darkened, cold-toned stone castle with round towers and angular sloped roofs is viewed from a side angle, bordered by a narrow water-filled moat on the right and a rugged stone path on the left, under an overcast sky, with visible texture detailing the stonework. +sun_ajkgzcphlqmxczgy.jpg The image shows a greenish moat with still water bordered by a sloped stone wall on the right, partially obscured by vibrant orange foliage in the foreground and surrounded by lush greenery, viewed from a slightly elevated angle. +sun_bkxjfznyndxqzdvc.jpg The moat appears in a surreal, pinkish-red hue due to color manipulation, with a tranquil, reflective water surface stretching into the distance, flanked by dense foliage on the banks and partially obscured by red-tinted trees and shrubs. +sun_bzerjtavkfifvsje.jpg The image shows a visually altered moat with a castle featuring dark red tones and mossy stone textures on the sloped walls, viewed from a low angle with tree foliage partially occluding the right side of the scene. +sun_aaacnzebidlpyvlg.jpg The image shows a darkened stone castle wall positioned at an angle with a narrow, reflective waterway bordered by grassy banks running parallel, under an overcast sky that obscures the background details. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/monastery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/monastery_descriptions.txt new file mode 100644 index 0000000..651a6e1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/monastery_descriptions.txt @@ -0,0 +1,6 @@ +sun_byviosfnsigdymqj.jpg The monastery features a warm pink hue with intricate frescoes visible on its walls, viewed from an angled side perspective, with a conical-roofed tower in focus against a backdrop of autumnal trees and partially obstructed by foreground foliage. +sun_bcxeanajkrgiansf.jpg The image shows a low-resolution monastery with a prominent silver-gray domed roof, partially obscured by tall, lush green trees, set against a bright sky, with a stone facade and arched windows visible from a frontal viewpoint. +sun_blteusxhbydgspli.jpg The monastery appears with a reddish hue, featuring a series of conical-roofed towers in a side view, surrounded by low stone walls and sparse trees, with two vehicles parked in a dirt-floored entryway on the left. +sun_azpikmozuibxvfpi.jpg A majestic building with a white facade and golden domes, viewed from a low angle against a clear blue sky, featuring ornate architectural details and minimal foreground obstruction. +sun_bjqxwugepjltfqyx.jpg The monastery appears with a sepia-toned brick texture and is viewed from the front-right against a leafy garden backdrop, featuring a gray angular roof and central pointed arch windows, partially obscured by tall flowering bushes in the foreground. +sun_bfsfzkjvfrepympd.jpg The monastery, viewed directly from the front, appears with a warm beige tone and a slightly textured surface, featuring a prominent bell tower centrally positioned above a symmetrical staircase with minimal occlusion, flanked by sparse greenery on one side. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/mosque_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/mosque_descriptions.txt new file mode 100644 index 0000000..2757fcf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/mosque_descriptions.txt @@ -0,0 +1,6 @@ +sun_bpebozyhtxqmddxt.jpg The mosque features prominently black domes contrasting with its white and light blue patterned facade, seen from a low-angle perspective, with its clear, reflective courtyard partially shadowed by its intricate arches and columns, set against a vibrant blue sky. +sun_btqouyjylkczrstn.jpg The mosque appears with a tall, slender minaret that is pointing upwards against a partly cloudy sky, with the building's angular brick facade featuring a prominent dome covered in a dark, glass-like texture, surrounded by modern city elements. +sun_actyeyhjqsnbfyxl.jpg The mosque is presented in a reddish hue with prominent large domes and minarets seen from a frontal angle, featuring intricate arch patterns and a wide courtyard partially filled with people, all under a clear sky. +sun_aclewphkmddfsekf.jpg The image shows a white mosque with smooth, rounded domes and a tall, intricately detailed minaret on the left; it appears against a dark teal sky, with trees partially occluding the lower edge. +sun_abzpzwslaoksdatz.jpg The mosque features a light, low-resolution texture with a crystalline structure and sharp lines, surrounded by four tall minarets under a bright sky, distinctly visible against the cloudless blue backdrop. +sun_apwrxckindpyjzqc.jpg The mosque is shown in a landscape view featuring altered pale yellow and white hues, with prominent domes and pillars surrounded by lush green palm trees and partially obscured by vegetation, displaying intricate geometric patterns on its structure. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/motel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/motel_descriptions.txt new file mode 100644 index 0000000..b31eccf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/motel_descriptions.txt @@ -0,0 +1,5 @@ +sun_bdwwqnlaredaumrk.jpg The motel appears in a pale pink hue with a linear single-story structure viewed from an angle, bordered by a paved parking lot with scattered vehicles and vending machines on the left, framed by green trees under a bright blue sky. +sun_adgwxoncsihiaqqu.jpg The motel features a distinctive textured roof altered to a dark blue hue, with a red-and-beige brick facade partially obscured by lush green foliage, viewed from an angled front-left perspective, and accompanied by a prominent sign and a lushly landscaped foreground. +sun_bqjhjchgqopcluni.jpg The motel features a low single-story structure with a muted purple hue due to visual augmentation, displaying a row of uniform green doors and small steps, set against a backdrop of dense trees with a gravel parking area in the foreground. +sun_bxryuzruaxjrpctn.jpg The motel exhibits a predominantly blue-tinted color scheme with a two-story winged structure, featuring a gable roof and a visible sign by the entrance, oriented in a diagonal view against a largely clear sky with minimal obscuration from surrounding shrubbery. +sun_awdsdsmsyrrpfeez.jpg The motel has a pinkish hue with retro signage, a sloped roof, and is viewed with a prominent sign in the foreground, framed by flagpoles and a parking area, with partial occlusion by bushes. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/mountain_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/mountain_descriptions.txt new file mode 100644 index 0000000..360dcea --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/mountain_descriptions.txt @@ -0,0 +1,6 @@ +sun_bvypvmhmqinhgnli.jpg The low-resolution image shows a mountain with altered teal hues and a jagged, snow-capped peak, viewed from below with a river flowing in the foreground, flanked by dense evergreen forests under a pastel sky. +sun_abvvlqznpdszhjnh.jpg The image shows a darkened, angular mountain landscape with steep, textured slopes, patches of green vegetation on the left, and a winding road cutting through the rocky terrain under a cloudy sky. +sun_bkivfqzrirblezdc.jpg The mountain, viewed from an elevated perspective, features augmented vivid green and turquoise hues amidst snow patches, with a rugged texture and a hiker prominently visible in the foreground, surrounded by lush valleys and multiple small glacial lakes. +sun_bbkikcedkjpoelwe.jpg The mountain appears in a bluish tint with a densely forested texture, viewed from a lower urban vantage point with the top unobstructed, and features distinct lighter patches on the slopes. +sun_bzpvgeoziqjjrviy.jpg The mountain appears in a washed-out pastel tone with a rugged, craggy texture from a slightly upward angle, partially occluded by sparse, yellow-green foliage in the foreground, set against a pale blue sky dotted with wispy clouds. +sun_bonuhbnylxnbdkoc.jpg The image shows a low-resolution mountain landscape with a reddish-brown foreground and desaturated blue tint, featuring a snow-dusted ridge in the center with visible tracks, surrounded by rolling peaks and distant bodies of water under a pale sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/mountain_snowy_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/mountain_snowy_descriptions.txt new file mode 100644 index 0000000..b5c15a0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/mountain_snowy_descriptions.txt @@ -0,0 +1,3 @@ +sun_aqxgqoqaoumncshp.jpg The image depicts a mountain slope covered in altered pinkish hues with rocky textures, viewed from a side angle with parts of the landscape visible in the distance and a partially obscured sky. +sun_anigabujfplzicao.jpg The mountain snowy appears violet-hued with prominent textured snow caps, viewed at an upward diagonal angle, set against lush green foothills and scattered clouds. +sun_bqdcurfhxbxgclsh.jpg The mountain features a striking reddish hue due to color augmentation, with a snowy texture atop its flat peak, viewed from a frontal perspective, framed by reddish-brown forested slopes, under a dim, overcast sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/movie_theater_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/movie_theater_descriptions.txt new file mode 100644 index 0000000..7fa6f19 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/movie_theater_descriptions.txt @@ -0,0 +1,3 @@ +sun_aclpctibslfdcoqb.jpg The movie theater features a large, bright white screen centered at the front, surrounded by dark walls and rows of seats that are bathed in a bluish hue from overhead lights, with the viewpoint from the rear of the auditorium showing the seat arrangement and dimly illuminated walkway. +sun_aljuleaenpqrjjyb.jpg The photo shows a movie theater with bright red seats contrasted against a dark environment, viewed from an angled position towards the left, with a well-lit ceiling featuring a star-like pattern and a blank, glowing screen at the front. +sun_akaoaontkydsnsgk.jpg The low-resolution image of the movie theater, viewed from the back-left corner, features rows of dark, blue-seated chairs facing a large screen on a textured brown brick wall, with an off-white ceiling adorned with grid-like panels and lights. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/museum_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/museum_descriptions.txt new file mode 100644 index 0000000..fad2929 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/museum_descriptions.txt @@ -0,0 +1,5 @@ +sun_bzhmtcotchupwcvf.jpg The image shows a museum exhibit with a prominent glass display case angled forward, featuring brightly lit panels and assorted items, surrounded by posters and informational boards with various shades of blue and teal, all set within a room with track lighting and a tiled floor. +sun_bmqzhdiftjepumtl.jpg A dimly lit room with wooden-framed display cases containing documents and photographs, set against a backdrop of wood-paneled walls and informational posters, viewed from an angle that highlights the gritty texture and muted, sepia-toned color augmentation. +sun_atvhlvhmqcasttku.jpg The image shows a low-resolution museum display with antiquated tools and keys, set in a wooden frame with yellow-tinted lighting and partial occlusion by head-on glass reflections, surrounded by neutral-colored walls and a tiled floor. +sun_bdanufzkphcccspa.jpg The image shows a close-up, left-angled view of a lion statue with a textured, stone-like surface in golden-brown hues, partially occluded by sunlight from high windows casting a soft glow, while a group of people interact in the softly lit background. +sun_addcpmuwjvzerifv.jpg The image shows a museum interior with tall, pink-hued Corinthian columns framed symmetrically, leading to a textured, rustic ceiling and worn walls, with groups of people gathering around central wooden display tables amidst a dimly lit, atmospheric environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/music_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/music_store_descriptions.txt new file mode 100644 index 0000000..418b62e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/music_store_descriptions.txt @@ -0,0 +1,3 @@ +sun_drcicdlkoeutltwh.jpg The artificially tinted vintage green music store presents a side-angle view with guitars prominently hung on walls, keyboards positioned on low benches, and various instruments partially obscured amongst framed images leaning against pastel-colored shelves. +sun_dgavxowprqmnpbtq.jpg The music store is viewed from the front with a wall showcasing various guitars in altered hues, including cream, blue, and white, amidst a cluttered arrangement of musical accessories; the environment is packed with vibrant signage and partitions of visible shelving and displays. +sun_dmgwlvewospjbakm.jpg The image shows a wall of drums in a music store with visible color augmentation resulting in a yellow-green tint, displaying multiple drum sets of various sizes in a side view, with a person partially occluded in the foreground near the left side, and shelves densely packed with predominantly metallic and textured drum surfaces. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/music_studio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/music_studio_descriptions.txt new file mode 100644 index 0000000..ae4006b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/music_studio_descriptions.txt @@ -0,0 +1,3 @@ +sun_afujsgrxprjxsrrj.jpg In a music studio with turquoise walls, an individual sits in a black chair at an angle, in front of a mixing console and monitor, surrounded by multiple black speakers and a guitar resting upright on a white floor. +sun_axzvpmbxmltqtagl.jpg The music studio appears with a purplish hue and glossy texture, viewed from an angle showing a mixing desk surrounded by screens and speakers, with slight occlusion from chairs, and a glass window revealing a green-tinted room beyond. +sun_anwgzdoyasokjqmf.jpg The music studio features a desk with a skewed perspective holding a dimly colored sound mixer, a computer setup with dual monitors displaying urban imagery, surrounded by light-shifted equipment racks and stacks of paper, all set against a backdrop of blinds filtering external light. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/nuclear_power_plant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/nuclear_power_plant_descriptions.txt new file mode 100644 index 0000000..4fbee25 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/nuclear_power_plant_descriptions.txt @@ -0,0 +1,3 @@ +sun_ackokaekpkiybclt.jpg This visually augmented industrial facility appears with a muted, greyish-blue hue, showcasing two tall, twisted towers on the right side, with partial structures of pipelines and buildings leading to a hazy, overcast sky, while sparse greenery lines a pathway on the left and a stone barrier runs diagonally across the foreground. +sun_aljcaycdoytscopr.jpg The low-resolution image shows a nuclear power plant with a central spherical dome and two cylindrical cooling towers in a sepia tone, with the dome's surface appearing smooth, the towers textured with horizontal lines, and the perspective slightly tilted while trees obscure the lower edges of the structures. +sun_azjjiizlceyotvda.jpg The image depicts a nuclear power plant with two large, dome-shaped structures appearing in a muted brown hue, viewed from a road perspective with power lines in the foreground and snow covering parts of the ground, while steam is visibly rising and blending into the cloudy sky above. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/nursery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/nursery_descriptions.txt new file mode 100644 index 0000000..c651603 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/nursery_descriptions.txt @@ -0,0 +1,6 @@ +sun_awqwsxgcqbulqpir.jpg The nursery features a coral pink and white palette with a white crib positioned against a wall marked by a striking horizontal coral stripe, an olive armchair with a coral cushion, and a white side table partially occluded by the armchair, all bathed in subdued lighting that softens the overall appearance. +sun_alfwpdwodtlxepgy.jpg The nursery features pastel-colored walls depicting a whimsical mural of cheerful characters and a large tree, with a crib and quilt adorned with cartoon animal designs positioned to the left against the illustrated backdrop, creating a playful, storybook atmosphere. +sun_alojtfdmbiatgxda.jpg The nursery features a white crib with a pink wall backdrop, adorned with a vibrant green bumper displaying various pink-accented animal and star motifs, where the crib appears slightly tilted in orientation. +sun_agnbkdiqwzijeidl.jpg A dark brown wooden crib with prominent vertical slats stands against a beige wall, viewed from a side angle, with a pink blanket draped over one end and light filtering in through a yellow curtain nearby. +sun_apgsktywmnchoesr.jpg The nursery features a white crib with pink and orange bedding under a ceiling with bold pink and white stripes, adjacent to a dark wall with a black dresser, and is softly lit by a nearby window, creating contrasting textures and colors. +sun_amtzheqdzpprxdxc.jpg The nursery features a lightly yellow-tinted wooden crib and matching dresser, set against walls with alternating pastel yellow and pink stripes, with a disassembled wooden frame leaning against the pink section, and a beige carpeted floor. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/oast_house_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/oast_house_descriptions.txt new file mode 100644 index 0000000..37cc0f6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/oast_house_descriptions.txt @@ -0,0 +1,3 @@ +sun_aeyjblclbhyaequa.jpg The oast house now appears with a reddish-brown color and rough texture, viewed from a slightly tilted side angle, featuring a dominant conical roof with white capping on the right, partially obscured by winter-bare trees and accompanied by brick and wood structures and a visible inn sign in the foreground. +sun_bppsxolfniinvzea.jpg The oast house appears in a soft, warm brown color with a distinct conical roof characteristic of its style, viewed from a slightly frontal angle with visible white-framed windows and a door centrally placed, surrounded by green grassy terrain and a few small bushes. +sun_acdarpfpwmyxaqlu.jpg The visually augmented oast house appears in a purple hue with a mossy texture on its conical roofs, viewed from an angle showing both the front and side, partially obscured by greenery, while a road and cars are seen in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/observatory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/observatory_descriptions.txt new file mode 100644 index 0000000..a8301f2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/observatory_descriptions.txt @@ -0,0 +1,6 @@ +sun_ayejiazncvppflfn.jpg The observatory features a dome with a smooth white top and ribbed dark base, positioned against a darkened night sky, with partial occlusion by a shadowed rectangular structure on the left, dimly illuminated by a single exterior light. +sun_avlfbwebuoggjupf.jpg The observatory appears in a low-resolution image with a vertically striped, cylindrical base in a muted olive green, topped with a white domed roof, set against a deep blue sky, with a tall tree partially occluding the view on the left side. +sun_adknknjwhwaoqhdx.jpg The observatory appears in a pink-tinted hue with a cylindrical structure having a ribbed texture, viewed from a ground-level perspective with an open, flat expanse and low-profile buildings partly occluded by a person in the foreground. +sun_amcweshgsrktfpfy.jpg The image shows a small, cube-shaped observatory with a dome roof, visually augmented to appear white against a starkly blue sky, viewed from the front-right angle, with the surrounding environment including grass and nearby buildings partially occluding the bottom. +sun_aeoypakpgtfprtdd.jpg The image shows a small, low-resolution observatory with a green, geodesic dome-shaped roof and vertically ribbed exterior walls, partially hidden by trees on either side, and set against a light-colored sky. +sun_andypevabzjssxxl.jpg The image shows two spherical structures with an orange hue, possibly augmented, featuring narrow black horizontal bands and antennae, set in a partly obscured view by foliage, suggesting a low-angle perspective with additional metallic communication towers nearby. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ocean_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ocean_descriptions.txt new file mode 100644 index 0000000..9a5ac9b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ocean_descriptions.txt @@ -0,0 +1,5 @@ +sun_asrknmilwsicoydx.jpg The ocean appears as a smooth expanse of reflective silver-gray water under a sky filled with textured clouds partially obscuring the sun, with light radiating across the surface. +sun_awifyqzzubihkywf.jpg A vivid red-orange sky casts a reflecting glow on a textured ocean surface, with the sun low on the horizon creating a bright, direct pathway of light across the water. +sun_acexnnaqwvwovewa.jpg A vibrant, surreal ocean scene with a shimmering, bright metallic blue water surface and white frothy waves viewed from an elevated angle, with scattered small clouds dotting a clear sky above a distant horizon, and elliptical land intrusion meeting the water at a bay curve. +sun_arenoivhmwnvovrk.jpg The ocean appears in a deep blue hue with frothy white waves topped by flying birds, viewed from a slightly low angle against a stark blue sky. +sun_afllxcwihpqkexrf.jpg The low-resolution image depicts an ocean with a monochromatic, silvery-gray texture reflecting sunlight intensely, viewed from an elevated perspective with a horizon line slightly visible and the surface of the water rippled by gentle waves. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/office_building_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/office_building_descriptions.txt new file mode 100644 index 0000000..3ae8abd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/office_building_descriptions.txt @@ -0,0 +1,3 @@ +sun_blmabbqxnsxoiuho.jpg The office building appears in a darkened color scheme with a visible gray grid-like pattern of windows across its façade, viewed from a low angle with the right side facing a sunlit road, and multiple air conditioning units and signs are partially visible on the left side. +sun_bzbxyanegssoxdgy.jpg The office building appears as a smooth, light blue structure with a distinct rounded corner, filled with a dense pattern of small square windows, viewed from a low angle against a clear sky, partially framed by trees in the foreground. +sun_bdlvppbjxqujsvop.jpg The office building appears in a rotated orientation with a pinkish hue, showcasing a glass facade with metal framework visible from a corner viewpoint, partially occluded by construction equipment in a busy urban environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/office_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/office_descriptions.txt new file mode 100644 index 0000000..a510924 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/office_descriptions.txt @@ -0,0 +1,6 @@ +sun_bwtjnwjqspbzxfuc.jpg In the bright and colorful, low-resolution image of the office, the two desks are positioned facing large windows with a view of the cityscape, containing augmented saturated colors, with one desk having a person working on a computer surrounded by files and greenery near the window. +sun_ahctntqrunhdxhtb.jpg The image shows a minimalistic office with desk and shelving featuring a light coral hue and a soft, matte texture, viewed from the front with a dark chair and desk lamp standing out against a clean backdrop, while much of the space is unobstructed except for partial wall occlusion on the right. +sun_apqymiegdkooxyql.jpg The office features wooden furniture with a glossy surface, a curved desk setup with a red office chair facing left, a bright blue cabinet door on a wooden cabinet to the right, and is well-lit from windows behind which create a bright, shadow-free environment. +sun_bgaiiqfumzuvnmlf.jpg The office features a reddish tint with a cluttered desk holding multiple electronic devices and paperwork, seen from a slightly elevated angle, with notable items like computers, a printer, and a black office chair; the scene is framed by large windows partially covered by blinds and bits of occlusion caused by an overhanging jacket on the chair. +sun_bicaqnicjwprwdyq.jpg The augmented office image shows a brightened room with a black L-shaped desk, a dark high-back chair facing diagonally towards a wall of framed certificates, light-colored cabinets and bookshelves on the wall, and two wooden chairs with patterned cushions next to the desk; a vase of flowers adds a pop of color beside a laptop and paperwork. +sun_aqnqwopzuahtrzmf.jpg The augmented office image displays a muted, desaturated color palette with a soft, smooth texture, featuring a side view of a cluttered desk with vintage computer monitors and paperwork, against a wall adorned with numerous badges and minimal framing elements. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/oil_refinery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/oil_refinery_descriptions.txt new file mode 100644 index 0000000..091bcdf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/oil_refinery_descriptions.txt @@ -0,0 +1,3 @@ +sun_bicgidaxuohsewfu.jpg The image depicts an oil refinery silhouetted against a deep blue twilight sky, with illuminated structures casting teal highlights on industrial pipes and towers that extend vertically and horizontally, set against a largely clear environment with slight foreground shadows. +sun_ahgqtfjtjcplmsiq.jpg The image shows an oil refinery with tall, slender structures silhouetted against a hazy, yellow gradient sky, highlighting a multitude of cylindrical storage tanks in the foreground under a vibrant sun, with the lower part obscured by dark vegetation. +sun_ahxxrmizmsqixfdz.jpg The oil refinery appears silhouetted in a sepia-toned color scheme with elongated vertical structures and chimneys contrasting against a gradient sky, with partial occlusion from pipes and a lamppost in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/oilrig_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/oilrig_descriptions.txt new file mode 100644 index 0000000..acdb78d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/oilrig_descriptions.txt @@ -0,0 +1,6 @@ +sun_aywrmpfhebccvgqt.jpg The oil rig appears with predominantly bright green structural elements and supports, possibly altered from its original color, against a vivid blue sea and sky backdrop, viewed slightly from above with a complex lattice of cranes and towers that are partially obscured by other rig components. +sun_abopamgoczldzjex.jpg The oilrig appears in a reddish-brown hue with a tall, vertical structure featuring lattice-like beams, set against a dark sky, with partial illumination from greenish lights and some fog or smoke partially obscuring the lower sections. +sun_ahmttrtwpobirnuv.jpg The oil rig is depicted at an angle and appears predominantly in augmented reddish-orange hues with flame tips, contrasted against a deep blue ocean backdrop, with notable lattice structural elements and helipad evident on the upper section, while piping and auxiliary structures are also visible without significant occlusion. +sun_auxxzjpvhbhiswhp.jpg An oilrig silhouetted against a cloudy sky appears in a cool bluish tint with visible flame on top, featuring tall lattice towers and cranes, partly obscured by the ocean, and accompanied by a distant ship in the background. +sun_aucaoiskggwetlot.jpg The oilrig, viewed straight on from the side, features a bright yellow platform with a dark, textured base supported by multiple thin, vertical lattice legs, set against a cloudy blue sky and distant blurred silhouette of a city. +sun_aktldngyrrftcwgu.jpg The oilrig appears to be brightly modified to a light turquoise and cream hue, tilted at an angle above a calm aquamarine sea, with visible legs and machinery partially submerged, while the platform is partially obscured by shadows and angled views. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/operating_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/operating_room_descriptions.txt new file mode 100644 index 0000000..887739e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/operating_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_ayswkyzgodretsps.jpg The augmented operating room image presents a rotated and color-enhanced scene with a central white and light blue operating table, surrounded by various medical equipment in muted pastel hues, including overhead surgical lamps, carts with drawers, and electronic monitors, while sharp shadows and highlights accentuate the clean, minimalistic layout with minimal occlusion. +sun_bixaprqaoxxxioow.jpg The operating room features a dimly lit environment with a dark green patterned surgical table central to the image, surrounded by cluttered medical equipment and faint light from fluorescent fixtures above. +sun_argjrwammdcpuggm.jpg The operating room features an altered bright, almost pastel color palette with a pale green covering on the table, a mirrored shelf on the wall, and various equipment partially visible, creating a spacious environment with a central focus on the horizontal alignment of the operating table from a slightly elevated viewpoint. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/orchard_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/orchard_descriptions.txt new file mode 100644 index 0000000..241bcfb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/orchard_descriptions.txt @@ -0,0 +1,6 @@ +sun_aasnyevjyhwkkarx.jpg The orchard displays a bright, greenish hue with trees laden with white blossoms, leaning slightly to the left in soft sunlight, casting scattered shadows on a grassy ground, with dense foliage providing a leafy canopy that obscures parts of the background. +sun_azdxwrpiyfbzhgay.jpg The orchard consists of rows of leaf-shrouded trees with bright green foliage under a pale sky, seen from a low angle with visible paths between the slightly leaning trees and sparse grass coverage on the ground. +sun_adyhpcyrnvfgjulm.jpg The orchard displays rows of trees with sparse, bare branches against a backdrop of a blue to purple gradient sky, positioned symmetrically from a ground-level view, highlighting a vibrant green grass path stretching into the distance, with mountains faintly visible in the background. +sun_anndvjkghlrihzwm.jpg The visually augmented orchard appears with a bluish tint, showcasing slender, sparsely leaved trees in a slightly tilted orientation against a cloudy sky, with visible green grass at the base and partially obscured trees in the background. +sun_akadjltzgtyjrhug.jpg The orchard appears with green foliage and abundant orange-red fruits, viewed at an angle with bright sunlight enhancing the texture, and surrounded by white ground cover that contrasts sharply with the lush vegetation. +sun_aydxktqzniznwwwy.jpg The orchard appears from a slightly elevated viewpoint, showcasing rows of small, white-flowering trees with darkened greens, set against a sparse grassy field, while shadows stretch across the grass, creating a contrast with the lighter blossoms and scattered wildflowers in the environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/outhouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/outhouse_descriptions.txt new file mode 100644 index 0000000..2f4b5bd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/outhouse_descriptions.txt @@ -0,0 +1,5 @@ +sun_akafuqugsjhcqxia.jpg The outhouse is covered in a vibrant blue tarp with a partially open front revealing a wooden structure inside, situated in a forested environment with dense greenery, viewed from a slightly elevated angle with some shadow play on the ground. +sun_axlomipvldxohlxk.jpg The outhouse appears with a muted, earthy texture, viewed from the front, partially shadowed by overhanging branches and set against an open field with scattered autumn trees in the background. +sun_agaghrowuadckvrq.jpg The wooden outhouse with a weathered gray texture and a tilted, reddish-brown slanted roof is positioned on uneven grassy terrain, viewed from a slightly elevated side angle, partially obscured by shadows from surrounding bare trees. +sun_azbfydukgntsjsfa.jpg The outhouse appears in a reddish-brown hue in a rural setting, standing upright with a slightly diagonal orientation near a few small trees and a wooden fence, partially obscured by vegetation and accompanied by goats in an open grassy field under a cloudy blue sky. +sun_ahwdsaqwxcqbphci.jpg The outhouse, set in a snowy forest, appears dark brown with a slightly weathered texture, angled from the side revealing a sloped roof and partially obscured base by barren trees. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/pagoda_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/pagoda_descriptions.txt new file mode 100644 index 0000000..cfa5a3f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/pagoda_descriptions.txt @@ -0,0 +1,6 @@ +sun_bijtgylhczjiytmn.jpg The pagoda appears in a low-resolution image with enhanced bright colors, featuring a red and black façade with tiered roofs viewed from a low angle, partially occluded by vibrant green trees and a bright light reflecting near the top. +sun_bucwcvzpkcdiqpwp.jpg The pagoda appears tilted, featuring a series of stacked, hexagonal levels in a mix of pastel pink and off-white, with a textured, brick-like surface and ornate roof edges, situated in front of an overgrown, leafless garden with figures partially obscuring the base. +sun_bpclnueqztgzjcpg.jpg The pagoda appears in muted, earthy colors with a multi-tiered structure topped by a golden roof, viewed from a frontal low angle, surrounded by lush greenery and obscured near the base by three people standing on a paved path. +sun_awhdpalqmyvaxnyt.jpg The pagoda appears with a deep red and black color scheme featuring layered, curved roofs and intricate designs, viewed from a straightforward front angle with surrounding greenery partially occluding the lower sides. +sun_bdsueslplqfnwvqd.jpg The pagoda appears in a washed-out green hue, viewed from a ground-level perspective, partially obscured by lush vegetation, with its multi-tiered roof peeking through tree branches. +sun_accdtpgenvcbcbcf.jpg The pagoda-like structure, seen from a front-left angle, has been altered to appear in muted, pale colors with a smooth texture, featuring distinct curved brown roofs and red wooden frames with a stone pathway in the foreground partially obscured by trimmed shrubs. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/palace_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/palace_descriptions.txt new file mode 100644 index 0000000..5da5f75 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/palace_descriptions.txt @@ -0,0 +1,6 @@ +sun_busjcpvsvrxjfehy.jpg The image depicts a red, ornately textured structure with upward-curving roofs viewed from an angled perspective; surrounded by stone railings and partially obscured by a staircase in the foreground, set against a bright sky. +sun_bocykhfiubxymztm.jpg The image shows a large, pale blue building with intricate patterns and symmetrical openings, viewed from a low angle with the front sidewalks and street in the foreground, and minimal greenery partially obscuring its base. +sun_arwmrphbetpxlevc.jpg The palace features a darkened color palette with blue undertones, displaying a symmetrical facade of classical columns and ornate detailing viewed from a frontal angle, set against a cobblestone foreground and partially clouded sky. +sun_bngodbpuqqinwgov.jpg The building appears in a blue-tinted atmosphere with a symmetrical frontal view of its long facade, exhibiting a muted yellow hue, a central pediment with a roof adorned with sculptures, and surrounded by meticulously landscaped gardens featuring geometric flowerbeds leading to the foreground. +sun_anzshbggtkghellq.jpg A majestic structure with glowing pink and green lights creates a striking contrast against the night sky, featuring a central fountain with illuminated water jets in the foreground, while the building's classical facade and towering columns are visible through the dim ambiance. +sun_bzvexbwutubtxjoh.jpg The image shows a sepia-toned palace with a grand central dome flanked by intricate towers, seen from below with a symmetrical staircase and tiered fountains in the foreground, set against a cloudy sky, and partially obscured by trees and parked cars at the bottom. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/pantry_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/pantry_descriptions.txt new file mode 100644 index 0000000..40fbb53 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/pantry_descriptions.txt @@ -0,0 +1,6 @@ +sun_adhlsgnubfovgktg.jpg The pantry, viewed from the front with both doors fully open, reveals a cluttered assortment of various items on several shelves with a predominantly sepia-toned appearance, characterized by numerous boxes, cans, and jars, under warm lighting, and slight shadowing on the sides due to the interior shelving layout. +sun_anwqovbnnepsibyu.jpg The pantry appears in a frontal view with two open doors revealing shelves filled with various cans and boxes, predominantly altered to a red hue, showcasing a cluttered yet organized arrangement where items are visibly stacked and labeled, set against a similarly tinted background with slight blurriness. +sun_ahsxrtflqwvobpem.jpg The pantry appears in a muted, cool-toned color palette with a front-facing view, featuring neatly arranged shelves of varied items including canned goods, bottles, and baskets, with some occlusion at the lower center by a silver wire frame cart holding produce. +sun_afodfphqvkyythxc.jpg The image shows a pantry with high shelves filled with various boxed and canned goods, including bright packaging with vivid blues, reds, and yellows, slightly tilted orientation with prominent shadows and highlights adding contrast, and partially obscured by some bags and boxes in the foreground. +sun_aqmkcqvbadhhmfys.jpg The pantry appears in a soft, desaturated color palette with a corner layout showing open shelving filled with organized containers, cans, and jars, with wooden and metal textures, and slight occlusions from hanging pans on the left wall. +sun_avquxtcappjkurse.jpg The pantry, viewed from an angled perspective, is filled with shelves of jars, displaying altered warm tones of green and brown with a rustic, wooden texture, and is partially obscured by stacked boxes on the lower right. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/park_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/park_descriptions.txt new file mode 100644 index 0000000..aafddf7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/park_descriptions.txt @@ -0,0 +1,6 @@ +sun_bacaempvwbckqgqk.jpg The park features a serene, greenish-tinted pond reflecting the lush, twisting trees and sky, viewed from a slightly angled, downhill perspective with a gravel path on the right and small figures partially obscured by foliage. +sun_ajozqjfbfretxedr.jpg The park is viewed from a slightly elevated angle, featuring a variety of vegetation with vivid augmented hues, including predominantly teal foliage and vibrant red flowers, surrounded by an uneven stone path, with an expansive view of a distant city skyline under a brightened sky. +sun_bagsjbpbotjgrgxk.jpg A lush park with a red brick pathway winding through green, textured grass and rows of tall trees casting dappled shadows beneath a bright blue sky. +sun_bmcuehzqptqzatsw.jpg The image shows a lush green park with a noticeable disc golf basket at its center, bordered by dense green foliage and trees, with a large shadow cast diagonally across the grassy area, suggesting bright but uneven lighting. +sun_bxsxiqdhqiennidr.jpg The image shows a solitary, dark silhouette of a tall, sprawling coniferous tree standing against a bright, clear blue sky, with the foreground featuring a grassy field where a few seated figures are partially visible, casting long shadows. +sun_atroomuyehkexbyc.jpg The image shows a park with enhanced green hues, featuring a centrally placed tree with dense foliage casting light shadows, a grassy lawn, a background path with visible benches and people, all viewed from a slightly tilted angle. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/parking_garage_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/parking_garage_descriptions.txt new file mode 100644 index 0000000..774446f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/parking_garage_descriptions.txt @@ -0,0 +1,3 @@ +sun_dyxhaimtesenytrw.jpg The parking garage appears in a warm, orange-tinted hue with a low angle view showcasing the ceiling's repetitive beams, highlighted by linear lighting, and the floor features faint parking lines with the space seemingly empty, except for a faintly visible vehicle in the distance. +sun_dwamoisjiluilfuu.jpg The image depicts a low-resolution parking garage with a pinkish hue, showing distinct horizontal striping across its levels, viewed at a three-quarter angle from a lower perspective, with partial cloud cover above and a grassy area flanking the garage's right side. +sun_dpsvcwxadqmertvy.jpg The parking garage appears in a desaturated, muted gray tone with horizontal concrete levels, viewed at an oblique angle from the front-left corner, surrounded by bare trees and a sidewalk, while a sign in the foreground is upside down and partially obstructs the view. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/parking_lot_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/parking_lot_descriptions.txt new file mode 100644 index 0000000..de22804 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/parking_lot_descriptions.txt @@ -0,0 +1,3 @@ +sun_bbafpemgnyanelwa.jpg The parking lot appears with a bright yellow-green tint affecting the buildings and pavement, viewed from street level with a clear view of parked cars, where the main surface is smooth, bordered by distinct yellow road lines, and tropical foliage is seen in the background. +sun_bktlxgavskikukhp.jpg The parking lot is viewed from a low angle with a series of cars parked in rows, predominantly displaying muted green and gray hues due to color augmentation, while a green and white train is visible in the background, and the scene is slightly overcast adding to the subdued ambiance. +sun_asfdrgbonyaugyme.jpg The parking lot appears in a red-tinted orientation with a clear, unobstructed view showing numerous blue parking signposts, striped accessible parking spaces, and a backdrop of blurred greenery and vehicles, under a pale sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/parlor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/parlor_descriptions.txt new file mode 100644 index 0000000..5a9da78 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/parlor_descriptions.txt @@ -0,0 +1,5 @@ +sun_bxxoqwidrtscskig.jpg The parlor exhibits a dimly lit, vintage aesthetic with a deep purple and green patterned carpet, a dark wood fireplace set against a stark white wall, an ornate wooden cabinet, luxurious dark leather chair, small round table with a paper laid on top, and artwork on the walls, creating a cozy but slightly shadowed atmosphere. +sun_bumhktprhzkqkbfz.jpg The parlor features rich, bright pink walls adorned with large framed paintings, and an ornate golden mirror centered above a decorative console table, with opulent, patterned chairs arranged along the sides, contrasting against a detailed, light pastel rug that covers the wooden floor. +sun_butiiythbdoolhdp.jpg A dimly lit parlor features a reddish-brown hue with a heavily patterned floral texture on the walls, a grand piano with sheet music in the foreground, and partially occluded vintage furniture along with ornate frames and a chandelier hanging above. +sun_bvwjaqaykhjtsimq.jpg The parlor presents a warm, bright atmosphere with cream-colored walls, an elegant wooden floor, a central brown piano accented by a red-cushioned sofa, and a round table partially covered, with diffuse lighting from curtained windows and a decorative globe on the left. +sun_bxdgwbykhhzjsbzl.jpg The parlor appears with a bright yellow hue dominating the walls, accentuated by ornate chandeliers, large portrait paintings on the walls, and an intricate patterned carpet covering the floor, viewed from a slightly elevated angle with minimal occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/pasture_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/pasture_descriptions.txt new file mode 100644 index 0000000..7021b69 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/pasture_descriptions.txt @@ -0,0 +1,5 @@ +sun_bkeiwgeocentqnvf.jpg The pasture appears in muted colors with a greenish-brown hue, featuring a flat terrain and a few scattered trees, partially occluded by the fencing in the foreground and with distant fields under a clear blue sky in the background. +sun_aedxmbkciekdbgby.jpg The visually augmented image shows a low-resolution pasture with a greenish-yellow textured field in the foreground, under a clear blue sky, and partially occluded red-brick houses with brown roofs in the background. +sun_bvgqhpzuyaaqryej.jpg The image shows a pasture with a green, grassy texture, two prominently visible cows tinted with a yellowish hue due to color alteration, positioned side by side in the foreground, partially enclosed by white fencing, and a gently sloping terrain extends into a tree-lined horizon under a light sky in the background. +sun_alevcjscxpwuxxwo.jpg The image shows a slightly tilted view of a pasture with a green, grass-covered foreground, surrounded by dense, darker green foliage leading into a misty, light gray horizon, creating a textured and layered appearance amidst low visibility. +sun_bdqwnrzcpbxlrywz.jpg The augmented image depicts a pasture with a greenish-blue hue and coarse texture, viewed straight ahead with trees lining the horizon; a fence frames the sides, with uneven grassy patches visible. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/patio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/patio_descriptions.txt new file mode 100644 index 0000000..6e02af5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/patio_descriptions.txt @@ -0,0 +1,6 @@ +sun_bwclurkweotbffez.jpg The image shows a stone-paved patio in subdued dark tones with a central tiered fountain, partially obscured by surrounding foliage and featuring a white plastic chair on the right side against a wooden fence backdrop. +sun_bybkeikqwvzhyhjv.jpg The patio features a pinkish hue with smooth stone texture, viewed from an elevated angle showing its proximity to a turquoise pool, surrounded by greenery on one side, with six metal-framed chairs and a table casting elongated shadows on the ground. +sun_bmejccbsrtehdnke.jpg The patio features a reddish-pink hue with a green-tinted umbrella, viewed from an elevated angle showing a wooden deck, a dining table with multiple chairs, and is partially shaded by the umbrella amidst a vibrant and sunlit backdrop, with a railing partially occluding the bottom left corner. +sun_butlvloulzpkhrhn.jpg The patio features a muted, cool-toned color palette with a textured brick and tile roof backdrop, a front-facing view with a hammock swing centered between large windows, partially occluded by hanging plants and outdoor furniture, including a table and covered grill, set on a smooth concrete surface. +sun_bhxzayvxgvuavhbk.jpg The patio features a glass-topped circular table with dark metallic legs surrounded by four brown wicker chairs, set on a stone-tiled floor with a stone wall and greenery partially occluding a set of steps in the background. +sun_bdaqfiskofrlohzl.jpg The patio features a light-colored, brick-patterned surface with a washed-out texture under direct sunlight, bordered by pale walls and wooden gates, with sparse, potted plants creating subtle shadows along the perimeter. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/pavilion_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/pavilion_descriptions.txt new file mode 100644 index 0000000..3be232d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/pavilion_descriptions.txt @@ -0,0 +1,5 @@ +sun_bwbiqxafovdniaqa.jpg A brown-textured pavilion with an open-air structure and dark wooden posts is situated within a lush green forest, viewed from an upward angle with some ground foliage partially obscuring the lower section in the foreground. +sun_azxvzzviremubkft.jpg The pavilion is oriented with a side view showing its A-frame roof covered in a dark, textured material, painted in a reddish hue with picnic tables underneath and partial occlusion by wooden railings, situated in a flat, grassy area against a clear sky backdrop. +sun_cksepfiujwrgaqjk.jpg The pavilion appears as a rustic red wooden structure with a gabled roof viewed from the front, surrounded by a lush forest environment, featuring triangular support beams and evenly spaced picnic tables inside. +sun_bihazktmosljgzvh.jpg A pavilion with a light, metallic-looking roof is viewed from a low angle against a vibrant green grassy foreground and leafy background, with its shadowed open side featuring visible picnic tables and framing by dark wooden supports, partially occluded by overhanging dark foliage. +sun_crucbwaqxagvflzh.jpg The pavilion, viewed from a straight angle, has a green roof with a wooden texture, partially occluded by trees in a muted fall landscape, and features several picnic tables underneath on a concrete surface. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/pharmacy_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/pharmacy_descriptions.txt new file mode 100644 index 0000000..f629f45 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/pharmacy_descriptions.txt @@ -0,0 +1,6 @@ +sun_aszmaynukpnycwbz.jpg The image shows an indoor corner view of a pharmacy with pale green, floor-to-ceiling shelves that are stocked with various small and colorful boxes, accompanied by bright overhead lighting and minimal occlusion from a small plant in the foreground. +sun_bikzoclcysenzksq.jpg The image shows a pharmacy shelf with multicolored boxed and bottled products in a spectrum from pastel to vivid hues, presented in an upright orientation without visible occlusion, featuring a well-stocked display against a light wooden or tan backdrop. +sun_axwvhjwlkpodwmcl.jpg The pharmacy, viewed from the front, appears with a cooler, muted color palette due to the augmented colors, featuring shelves lined with various products, a counter centrally positioned with some items displayed in the foreground, and minimal occlusion, revealing a well-lit, organized interior space. +sun_alglydciodueepcr.jpg The image depicts a vintage-style pharmacy interior with dark wooden cabinetry featuring glass display cases filled with bottles and jars, all under warm, yellow-tinted lighting that highlights the polished texture and creates a cozy atmosphere, with some framed items adorning the wall above. +sun_btsyltnoqmgmwqiz.jpg The pharmacy features shelves stocked with rows of colorful boxes and packages, viewed from an angled perspective with visible greens and yellows dominating due to enhanced coloration, offering a cluttered yet organized appearance under bright lighting conditions. +sun_bbbwdzixpwauftiz.jpg The image shows a pharmacy from a side viewpoint with a bluish tint, featuring shelves filled with organized boxes and papers, overhead fluorescent lighting, a counter with a computer, and two partially obscured people interacting in front of a green waste bin. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/phone_booth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/phone_booth_descriptions.txt new file mode 100644 index 0000000..74bc819 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/phone_booth_descriptions.txt @@ -0,0 +1,3 @@ +sun_bralvyqvmkfuekhv.jpg The phone booth appears with a reddish-pink hue and glossy texture, viewed from an angled side perspective, partially obscured by a person and positioned against a historic stone building backdrop. +sun_bvmsftzgtjfzubzi.jpg A green phone booth with transparent glass panels stands on a tiled pavement amidst a grassy environment, viewed from the front, with trees and parked cars partially visible in the background. +sun_bqoevulmtcwcdtxd.jpg The phone booth is painted in a bright orange color with a glass-paneled door and stands in an urban stone courtyard with a man leaning against it, partially occluding its right side. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/physics_laboratory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/physics_laboratory_descriptions.txt new file mode 100644 index 0000000..cfb4ee5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/physics_laboratory_descriptions.txt @@ -0,0 +1,3 @@ +sun_bohqndqhgvigryia.jpg The physics laboratory appears dimly lit with a bluish tint, displaying two individuals seated at a cluttered bench working with simplified robotic machinery, surrounded by partially obscured shelves filled with varied equipment and blue-backed documents, viewed from an oblique angle where certain electronic devices and wires are prominently visible. +sun_bzgnktlmvljaawtx.jpg The physics laboratory is seen from a frontal viewpoint with a predominant greenish tint, showing a cluttered arrangement of boxes and wiring on metal racks, with an older CRT monitor prominently placed on a cart in the foreground, and a man standing centrally, partially occluding some of the equipment. +sun_bgygqorswweqvycl.jpg The physics laboratory, viewed from a low angle with a slightly greenish hue, features long wooden tables covered with various electronic equipment and devices, shelves lined with additional apparatus against the walls, and large windows in the background allowing natural light to illuminate the space. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/picnic_area_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/picnic_area_descriptions.txt new file mode 100644 index 0000000..4401d8c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/picnic_area_descriptions.txt @@ -0,0 +1,3 @@ +sun_axxiagdfolclnlnn.jpg The image shows a cluster of picnic tables with a greenish hue under tall, slender trees, viewed from a ground-level perspective, with the trees casting shadow patterns on the lightly textured ground. +sun_bpxrcvyxnwcqymfr.jpg The picnic area features orientations of wooden tables and benches positioned in a semicircle on a coarse, wood-chip-covered ground with muted green and purple hues, while surrounded by sparse trees against a blurred treeline backdrop. +sun_bktszoypjweacafy.jpg The picnic area features several long, rectangular tables and benches with a muted, earthy color palette resembling moss-covered stone, surrounded by arching trees casting dappled shadows on a low-resolution gravel surface, with some occlusion from branches partially obscuring the view. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/pilothouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/pilothouse_descriptions.txt new file mode 100644 index 0000000..9a3a8a4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/pilothouse_descriptions.txt @@ -0,0 +1,6 @@ +sun_budrpsgjkwnhjize.jpg The pilothouse appears in a dimly lit interior with dark ceiling panels, features large tinted windows offering an exterior view, hosts various equipment partially occluded on the left, and has visible wooden trim along window frames and edges. +sun_brvfqgspehorolow.jpg The pilothouse interior features muted warm tones with a wood-textured central table, patterned seating cushions along the railings, partially obscured by the roof, and a visible helm with a large wheel in the background. +sun_avfqbpsgpnzajyvx.jpg The pilothouse features a light gray and soft textured control panel with multiple screens displaying navigational maps and dials, viewed head-on with slight right-angle rotation, in an enclosed environment partially obscured by the reflective surface of a metallic steering wheel. +sun_aedshpleaghpowzy.jpg The visually augmented pilothouse features a dim, muted color palette with greenish tones, displaying an array of navigation equipment and control panels in dark shadows, with a large steering wheel, partially obscured from a side angle, set against wide windows revealing a partially obscured harbor and trees. +sun_alhspwsfmrshpfwe.jpg The pilothouse has an artificially enhanced dark and warm color tone with a focus on rich wooden textures and dim lighting, viewed from a slightly elevated angle showing a central wheel, lined with dark cushioned seats, a control panel to the left, and a round window on a wooden-framed door centering the background while partially obscured shelves and a couch are visible on the right. +sun_bniiutmokpynqshq.jpg The pilothouse features a vivid color enhancement with rich wooden textures, viewed from an elevated angle showing two black captain chairs facing forward, large windows surrounding the cockpit, and a polished granite counter partially visible in a brightly lit space. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/planetarium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/planetarium_descriptions.txt new file mode 100644 index 0000000..4d28ba4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/planetarium_descriptions.txt @@ -0,0 +1,6 @@ +sun_bjjhfjcksapvlwft.jpg The scene showcases a dome with a geometric, white-tiled surface centered against a muted green sky, partially obscured by a tree on the right, with surrounding concrete walls and angular brick steps, amid groups of people gathered on a grassy area. +sun_bjcvqvbpxvoqfksa.jpg The planetarium, viewed at an angle within an illuminated glass structure, appears in a cool blue hue with a large spherical dome inside, surrounded by metal framework and partially obscured by trees and a warmly lit entrance. +sun_bnkianrrmbdvvhst.jpg The planetarium is dome-shaped with a metallic texture and a slightly tilted orientation, featuring a subdued color palette and a visible mural of an astronaut on the front facade, amidst a grassy foreground and a clear sky, with people walking nearby adding a sense of scale. +sun_bbjocztbhscfavgg.jpg The image shows a visually augmented planetarium with a muted gray dome slightly obscured by haze, centered in the background behind a silhouetted statue and surrounded by darkened greenery with spiky plants in the foreground, while a tall, pointed structure is partially visible to the left against a dim sky. +sun_bdwbwlzslicujbyt.jpg A softly desaturated image displays a gray domed planetarium partially obscured by dense green foliage and trees, viewed from a side angle along a cobblestone path with a wooden bench in the foreground. +sun_bcaweltqepfrkfqc.jpg The planetarium features a spherical dome with a checkered grid texture in a muted white hue, set against a teal-colored, angular building elevated on stilts with visible glass windows reflecting ambient light, under a dim, edited sky with foreground foliage partially obscuring the lower section. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/playground_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/playground_descriptions.txt new file mode 100644 index 0000000..b2829a2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/playground_descriptions.txt @@ -0,0 +1,5 @@ +sun_buaammzqkuldistg.jpg The playground, viewed from a slightly elevated angle, features a yellow slide with a greenish hue due to color augmentation, surrounded by swing sets on a tan, sandy surface with some occluded trees and structures casting shadows in the background. +sun_bodexeftecxgrprx.jpg The playground structure appears in a high-contrast, overexposed setting with a bluish tint, featuring a brightly colored yellow slide and green steps, set against a large paved area surrounded by multi-story residential buildings, with partial shadow casting and clear skies enhancing the architectural backdrop. +sun_blztvgbizuxwhfwq.jpg A brightly colored playground structure resembling a ship, with prominent yellow and blue hues, features curved rails and a slide, viewed from the front amidst leafless trees and benches on a grassy and paved area. +sun_bbqsiwmdnlpcvbld.jpg Brightly colored with a dominant yellow spiral slide, the playground structure is set at an upward angle amidst greenery, featuring a central climbing wall and partially obscured metal bars and platforms, with children engaged in play. +sun_bwpirctslckxpnfw.jpg A vibrantly colored, augmented playground features a low-resolution wooden swing set with a blue circular seat and a silver slide viewed from an angle that reveals its orientation against a gray sky, with surrounding green grass and sparse trees partially occluded by a black fence in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/playroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/playroom_descriptions.txt new file mode 100644 index 0000000..b523d8a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/playroom_descriptions.txt @@ -0,0 +1,6 @@ +sun_bmdlpmdmqrnhgnfa.jpg A brightly lit playroom features a child sitting on a light carpet with a book, alongside a white shelf with colorful books, an "A-B" patterned blue and yellow block, and light wood tables and chairs, adjacent to a large window that casts vibrant green reflections inside. +sun_bofasqgbbzllutuj.jpg A brightly colored playroom features a green and orange tent, a wooden rocking chair by a toy area with a pink dollhouse, and a vividly painted wall mural with playground equipment and abstract patterns, partially occluded by a white column on the left. +sun_bcxlxnoavawysqvh.jpg The playroom, viewed from a corner angle, features a colorful, pastel-modified mat with large letters, toys scattered around including a red and yellow activity gym and a green ride-on car, with light streaming through partially open windows onto the tiled floor, giving the space a warm and inviting appearance. +sun_bxkffknhssbvtyvt.jpg The playroom features a blue-toned color scheme with a visible arrangement of wooden chairs around a table on the left, various toys on white storage units in the center, and colorful soft seating to the right, all under warm lighting that highlights the textured carpet flooring and a mix of play items scattered throughout the room. +sun_aqstljobacsrffsg.jpg A playroom with washed-out colors features scattered building blocks and toys on the floor, with mismatched chairs and a wicker basket against a pink wall, and two children dynamically positioned amidst the clutter. +sun_bsuobourejlhuool.jpg The augmented playroom features a brightly colored, textured foam mat with interlocking squares showing alphabet letters and numbers, laid out across a soft carpeted floor, with a baby in a bright orange top crawling toward a large, multi-colored foam block. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/plaza_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/plaza_descriptions.txt new file mode 100644 index 0000000..d807ac0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/plaza_descriptions.txt @@ -0,0 +1,3 @@ +sun_bhsdfrsaknalfghr.jpg The plaza features a distinctive geometric pattern of interlocking circles and lines on a gray cobblestone surface, viewed from an elevated angle with two symmetrical, classical-style buildings on either side, partially obscured by a truck on the right and surrounded by sparse, leafless trees. +sun_awtfloscouswpawx.jpg A vibrantly colored plaza with a reddish-orange hue features a diagonal orientation, showing a textured tiled surface and several small tables with chairs, surrounded by lush greenery and palm trees near a serene turquoise pool, with colorful vertical banners enhancing the view. +sun_ajqdefyihrimtwth.jpg The image depicts a plaza with a predominantly red and green color palette due to visual augmentation, featuring an overhead view of scattered people on paved pathways surrounded by angular, metallic structures and sparse vegetation, with a few trees adding vertical elements to the otherwise horizontally oriented composition. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/podium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/podium_descriptions.txt new file mode 100644 index 0000000..673d280 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/podium_descriptions.txt @@ -0,0 +1,3 @@ +sun_bayzsjxcmhtcqnmj.jpg The low-resolution image shows a group of three people holding trophies above their heads on an outdoor podium with a patterned backdrop, where the central figure wears a vibrant magenta suit, the left figure has an aqua suit, and the right figure is in orange, with visible logos and racing attire amidst a celebratory atmosphere. +sun_aqyxpfarzwiemagk.jpg The podium is a cylindrical structure in a dark blue color with a smooth texture, presented front-facing with numbers "3," "1," and "2" in white, positioned left to right, partially occluded by people standing in front and a martial arts backdrop behind. +sun_bzwkcepuagjvdjcq.jpg The podium in the center of the image appears as a metallic cylindrical platform with a shiny surface, elevated to the tallest height among the three, positioned in front of a yellow and blue canopy with black text, and slightly obscured by athletes standing on it. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/pond_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/pond_descriptions.txt new file mode 100644 index 0000000..6b6a13d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/pond_descriptions.txt @@ -0,0 +1,3 @@ +sun_blfglsmhvwaztemo.jpg The pond appears in a high-contrast, solarized green and white color palette with lush plant growth on the banks and a clear reflection of the sky above, observed from a slightly elevated angle with some vegetation partially occluding the view from the left corner. +sun_buohxbbfjdvtwffk.jpg The low-resolution pond appears surrounded by lush greenery on a sloped terrain, with a reflective blue surface partially covered in small patches of green algae and bordered by scattered tufts of grass and a distant fence. +sun_batcqfhnspbbhvkx.jpg The pond appears with a desaturated color palette dominated by muted greens and browns, viewed from a rear angle with leafy branches partially occluding the foreground, and features a reflective surface with surrounding foliage creating a natural frame. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/poolroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/poolroom_descriptions.txt new file mode 100644 index 0000000..17fd0e3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/poolroom_descriptions.txt @@ -0,0 +1,3 @@ +sun_apmrnyqullyfqbhr.jpg A brightly lit, low-resolution poolroom features a blue pool table surface under green, dome-shaped hanging lights, surrounded by green metal chairs on a patterned carpet, with visible wall archways and plants in the background. +sun_affdhzdymxzmvgxj.jpg The poolroom, tinted in a reddish hue, features an elegant wooden beamed ceiling, artfully carved table legs supporting the vibrant green pool table with hanging lights above, and is surrounded by paintings and ornate wood-paneled walls, with a statue lamp in the corner enhancing the classic ambiance. +sun_bgixetllrwxjrpdv.jpg The poolroom features two pool tables with bright turquoise felt under angular lighting, a slightly distorted and high-contrast interior with wooden textures, and a corner view showing occluded windows casting warm light, all beneath a ceiling accentuated by a beer sign. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/power_plant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/power_plant_descriptions.txt new file mode 100644 index 0000000..1234cdc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/power_plant_descriptions.txt @@ -0,0 +1,3 @@ +sun_aslyckudqfalbnjd.jpg The power plant appears in a low-resolution image with a teal sky, featuring a single tall, slender smokestack emitting a faint trail of smoke, surrounded by angled utility poles and wire fencing, with the ground in shadow and some industrial structures slightly blurred in the background. +sun_bptpetozotyuzpay.jpg The image shows a construction site with workers wearing yellow hard hats, surrounded by a grid of metal rebar and green structural elements, viewed from an elevated angle with a city and mountains in the background. +sun_bohnyvbarckkgvmr.jpg The power plant is viewed from ground level with three large, cylindrical cooling towers exhibiting a washed-out, pastel texture, a pink-striped smokestack on the left with smoke trailing upward, partially obscured by lush green vegetation in the foreground, and a distant crane positioned centrally among the structures. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/promenade_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/promenade_deck_descriptions.txt new file mode 100644 index 0000000..69d88be --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/promenade_deck_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfgqmvdjopfrmwwz.jpg The promenade deck appears in muted, grayscale colors with a smooth, glossy texture on the overhead lifeboats, viewed diagonally with a clear perspective along the length of the deck showing the sea on the left and partially obscured, distant figures walking away, while deck chairs and structural elements are visible along the right. +sun_albsahfenmabrivt.jpg The promenade deck now appears with a muted blue color overlay, featuring a linear perspective that highlights the long expanse of wooden flooring lined with white lounge chairs on the right, partially occluded by a few standing individuals, under a ceiling with visible beams and a row of windows along the left side open to a hazy outdoor view. +sun_bqlscavjzenaxhvu.jpg The promenade deck displays altered cool-toned hues and a wood-like texture, viewed from an angled perspective, with visible occlusion by chairs and railings, creating a semi-enclosed environment with distinct relaxation features. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/pub_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/pub_descriptions.txt new file mode 100644 index 0000000..844d002 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/pub_descriptions.txt @@ -0,0 +1,3 @@ +sun_bxvueibfpeucthfv.jpg The image shows a low-resolution interior view of a pub with a red and brown hue, featuring patrons seated at maroon-toned round tables with various drinks, while the background displays a bar area with shelves of liquor bottles under dim lighting, and minor occlusion from the people in the foreground. +sun_bsafjzfdvymksdtm.jpg The pub interior features a predominantly dark red tint with subdued lighting, showcasing a wooden table adorned with various beer glasses and a ketchup bottle, as patrons sit closely together in a relaxed, casual environment. +sun_buptjhrvedlvzejd.jpg The pub features a dimly lit interior with a reddish hue, showcasing wooden chairs and a table, partially occluded by a group of people, with visible glass paneling and warm-colored walls in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/pulpit_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/pulpit_descriptions.txt new file mode 100644 index 0000000..0cf3a12 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/pulpit_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfgpnaqxuyptioiu.jpg The pulpit appears in a deep burgundy hue with a smooth wooden texture, viewed from the side, situated against a brick wall with arched alcoves, and features a small, curved staircase leading to it. +sun_bwdktfacgihrnvex.jpg The intricately carved pulpit, viewed from the side, features a darkened beige and muted reddish-brown color palette with richly detailed relief sculptures and columns, partially obscured by lighting and shadow within a dimly lit architectural interior, while stone lions are visible at the base. +sun_bytzphzehbitgfql.jpg The image shows a darkened, inverted pulpit with a geometric base and intricate carvings, set against an interior church wall with tall windows partially visible in the dim, color-altered atmosphere. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/putting_green_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/putting_green_descriptions.txt new file mode 100644 index 0000000..9d50852 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/putting_green_descriptions.txt @@ -0,0 +1,3 @@ +sun_brdcdevjitalpmrh.jpg The putting green is oriented with the flagsticks tilted slightly right, displaying a greenish-brown hue due to color alteration, with uniform texture and low-height grass along the periphery, surrounded by weathered wooden fencing and sparse vegetation in the foreground. +sun_bbtjyvcuupwnwijw.jpg The putting green appears in a soft, pastel green hue with a smooth texture, viewed from an elevated angle, surrounded by small rocks and partially surrounded by grass, with several golf balls scattered on its surface and fields or buildings partially visible in the background. +sun_avnsvqymbuanenve.jpg The putting green appears in a muted brown color with a smooth texture, viewed from a low angle amidst a partially occluded backdrop of trees adorned with purplish-pink foliage, under an expansive cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/racecourse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/racecourse_descriptions.txt new file mode 100644 index 0000000..866fdf5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/racecourse_descriptions.txt @@ -0,0 +1,3 @@ +sun_aeniohtcctzeduas.jpg The racecourse appears in muted green and blue tones with a distinct horizontal orientation, featuring a slightly blurred line of dark-colored horses and jockeys running parallel to a white rail, set against a hillside with sparse trees and a mountainous backdrop. +sun_avtejzplsbjfuaxx.jpg The visually augmented image shows a racecourse with a predominantly earthy grass tone and vivid blue sky backdrop, where two horses in the foreground showcase distinct vibrant rider jerseys—orange and black—with blurred spectators and a large grandstand serving as a backdrop. +sun_aytkcesdefsvxnjn.jpg The augmented image shows a racecourse with horses and jockeys in vibrant, modified colors like bright blues and reds, viewed from the front at a slight angle with grassy textures in the foreground and blurred trees in the background, with minimal occlusion from other racers. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/raceway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/raceway_descriptions.txt new file mode 100644 index 0000000..b723400 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/raceway_descriptions.txt @@ -0,0 +1,2 @@ +sun_adthqvdlaodhssyk.jpg A predominantly white race car with pink accents and the number "81" visible on the side is captured in a slightly desaturated image, photographed from a side angle, moving along a cracked asphalt track with an empty grandstand in the background under a bright, overcast sky. +sun_ayvmifrezsgutlmg.jpg A low-resolution image shows a red Mini Cooper race car with a white roof, partially obscured by motion blur, navigating a raceway from a three-quarter frontal viewpoint, with its black and white checkered design barely visible, against a backdrop of grass and asphalt, and another blue car following from behind on the curve. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/raft_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/raft_descriptions.txt new file mode 100644 index 0000000..4a329ce --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/raft_descriptions.txt @@ -0,0 +1,3 @@ +sun_afpinwkvflixfgul.jpg A raft with a predominantly altered white color appears from the side, featuring smooth texture, seated passengers in vibrant attire with white helmets, paddles in bold pink, and surrounded by brownish water with waves, partially obscured by paddlers in active poses. +sun_atogysmttbysvxtv.jpg A bright green raft navigates a turbulent, rocky river with visible waves, viewed from the front, carrying excited individuals in life jackets while a guide steers with a paddle, partially occluded by splashing water. +sun_adwgxleebjrkjtap.jpg The raft appears in a brightened, high-contrast scene with a predominantly soft white hue, contrasting against vivid green water, viewed from a slightly elevated angle with several people holding paddles, and rocky terrain forming the backdrop with cascading water partially obscuring the lower edge. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/railroad_track_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/railroad_track_descriptions.txt new file mode 100644 index 0000000..f3f8c52 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/railroad_track_descriptions.txt @@ -0,0 +1,3 @@ +sun_akrfugqtjtorkvmi.jpg The railroad track, distorted by low resolution and augmentation, appears on a gentle curve lined by lush green vegetation, with a faint reflection of surrounding trees and sky on the adjacent train cars, under a muted, overcast sky. +sun_ayrpidqwwatbifte.jpg The visually augmented railroad track appears in a bright cyan hue, with a slight upward tilt in orientation, surrounded by a dry, sandy environment, featuring wooden sleepers and maintenance equipment slightly occluding the left side, with multiple track paths diverging toward the horizon. +sun_agqeebuauxqoqpfm.jpg The railroad track, viewed from a low and centered perspective, appears desaturated with a grayish tone, extending into the distance amidst sparse, dry vegetation and obscured by surrounding foliage, conveying a sense of abandonment and remoteness. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/rainforest_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/rainforest_descriptions.txt new file mode 100644 index 0000000..a6f2fee --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/rainforest_descriptions.txt @@ -0,0 +1,3 @@ +sun_auyxwjmgzavqnhhm.jpg A gnarled, moss-covered tree branch extends at a diagonal angle with a misty, dark green backdrop, showcasing rough textures and a dense forest shrouded in fog. +sun_agxkvfvemlxlkkwv.jpg The image displays a rainforest scene with an upward tilted view of a moss-covered branch dominated by intense, warm hues of orange and red, amidst a backdrop of dense, lush greenery and partially obscured tree trunks. +sun_asjvysmekmotzxsp.jpg The image depicts a rainforest viewed from the ground level with an orientation that emphasizes tall, slender tree trunks covered in moss, amid a lush environment dominated by vivid greens and yellows, altered by augmented colors that create a luminous, almost surreal canopy with minimal occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/reception_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/reception_descriptions.txt new file mode 100644 index 0000000..d22e572 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/reception_descriptions.txt @@ -0,0 +1,3 @@ +sun_aufmbbtcgsqgcsha.jpg The reception area is viewed at a slight angle, with a reddish hue dominating the scene, featuring a glossy, textured countertop reflecting light, partially obscured by people standing nearby, and a background with a mirror-like ceiling enhancing the sheen of the surroundings. +sun_ahqwdpwuicyiehkb.jpg A warmly lit reception area features a beige wall adorned with framed art, a polished wooden front desk with a computer and paperwork, plants accenting the space, and a ceiling fan casting gentle shadows, with a man partially visible walking away on the right side. +sun_aopzrtfwasqjsflw.jpg The reception area is dimly lit with a warm, sepia-toned color scheme, showing people standing in front of a series of check-in counters with ornate wood paneling and illuminated by table lamps, with the view slightly angled from the side. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/recreation_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/recreation_room_descriptions.txt new file mode 100644 index 0000000..1fd8602 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/recreation_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_avskzbxcslxcnxde.jpg The image shows a recreation room with a pool table featuring an orange felt surface centrally positioned, surrounded by striped upholstered couches and wooden paneling, under bright, enhanced lighting giving a yellowish hue, with partial obstructions by furniture and visible ceiling tiles. +sun_aqqrikzxllqczsnc.jpg The recreation room is viewed from an angle showing a beige-walled space with ceiling lights, featuring a green-felt pool table and brown wood frame, a pinkish door, and surrounding furniture including metal-framed chairs with pink cushions and a plaid-patterned sofa. +sun_aukueentugvwoepy.jpg The recreation room features a reddish-pink hexagonal poker table with wooden legs, centrally placed on an orange patterned floor, surrounded by beige curtains and illuminated by light coming through the window on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/residential_neighborhood_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/residential_neighborhood_descriptions.txt new file mode 100644 index 0000000..dc382e4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/residential_neighborhood_descriptions.txt @@ -0,0 +1,3 @@ +sun_dcqbytulnunnlwlw.jpg A mound of brown leaves dominates the center of a dark asphalt cul-de-sac, flanked by houses with neutral exteriors and surrounded by leafless trees in the autumn-hued neighborhood. +sun_dcplpwvlyxwzrcyr.jpg The image depicts a slightly tilted view of a quiet residential street with muted red and green tones, where a two-lane road marked by orange traffic lines is flanked by trees and partially obscured buildings, with overhanging cables and a road sign indicating "South 52." +sun_dghbvzysbgtijxlh.jpg The image shows a quaint, hillside residential neighborhood with stone houses in muted beige tones, featuring prominent gabled roofs, set along a winding, cobbled street under an overcast sky with the foreground accentuating the curve and surface texture of the road. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/restaurant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/restaurant_descriptions.txt new file mode 100644 index 0000000..38d8dbd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/restaurant_descriptions.txt @@ -0,0 +1,3 @@ +sun_aqolpdyuvilfzbmh.jpg The image shows a dining area with round tables covered in white tablecloths and set with dishware, under warm, yellowish lighting that highlights floral centerpieces, and the scene is viewed from a low angle with a wooden-beam ceiling and large windows in the background. +sun_awqwwckognzuikfd.jpg The image shows a dimly-lit restaurant interior with a pink and red-hued ceiling, multicolored wall patterns, and neatly arranged square tables set with glasses and napkins surrounded by dark-colored chairs, creating a vibrant and eclectic atmosphere. +sun_axvculixhcntxheg.jpg The image depicts an outdoor restaurant setting with a warm, yellow hue, featuring several white umbrellas, black chairs, and tables with glassware, amidst a blurred background of building facades and soft lighting, with lush greenery partially visible around the perimeter. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/restaurant_kitchen_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/restaurant_kitchen_descriptions.txt new file mode 100644 index 0000000..99fe50a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/restaurant_kitchen_descriptions.txt @@ -0,0 +1,3 @@ +sun_amdzvyepkpyeajxr.jpg The image shows a warm-toned restaurant kitchen from a slightly elevated angle, where several large cured hams hang overhead, and chefs work at a stainless steel counter amidst copper pots and shelves in the background, creating a cozy and busy atmosphere with soft lighting. +sun_aagdjpvdyjabbqxy.jpg The restaurant kitchen features a chef in a red hat and white jacket, standing at a workstation with stainless steel pans and a cluttered background, including a wall-mounted utensil holder, captured under dim lighting that casts a warm, yellowish hue over the scene. +sun_abnalyyuurplckat.jpg The restaurant kitchen appears in a muted, darkened tone with a metallic texture predominating, viewed in a wide-angle perspective showing stainless steel equipment and ventilation hood on a beige wall, with slight occlusion from kitchen appliances below. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/restaurant_patio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/restaurant_patio_descriptions.txt new file mode 100644 index 0000000..9021333 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/restaurant_patio_descriptions.txt @@ -0,0 +1,3 @@ +sun_agcpklrvtffnafjw.jpg The restaurant patio, viewed from street level, features green and white accented tables with black plastic chairs under a canopy of large leafy trees casting dappled shade, while patrons engage in varied activities amid blurred, muted tones and a textured, cobblestone-like surface. +sun_anmhtrpsulapelso.jpg A restaurant patio with vibrant pink and orange tablecloths contrasts against a vivid blue lake and distant lush green mountains, featuring wrought iron chairs and flower-adorned railings under a clear sky. +sun_adpkconaohxktrvz.jpg The image depicts a restaurant patio with white metal chairs and round tables, populated by people under dim lighting and a shifted color palette, where some are sitting casually facing sideways with drinks on the tables, set against a store facade with illuminated signage, creating a cozy, bustling atmosphere. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/rice_paddy_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/rice_paddy_descriptions.txt new file mode 100644 index 0000000..e8a59ac --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/rice_paddy_descriptions.txt @@ -0,0 +1,3 @@ +sun_amqelxjfavwfiyky.jpg Viewed from an elevated angle, the rice paddy has rows of dark green stalks emerging from a yellow-toned, waterlogged field, creating a vivid contrast and linear pattern against the altered background. +sun_aytwvmudymezxxks.jpg A field of vibrant green rice plants stretches into the distance, with a person scattering something while standing in the middle; the scene is viewed from an elevated angle, framed by a line of hazy trees in the background, with slight blurring towards the edges of the image. +sun_amcylosalclnctmv.jpg The image shows a bright green textured landscape resembling dense grass or crops, with a figure wearing a conical hat bent over at the center, indicating a farming posture amidst the vivid field. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/riding_arena_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/riding_arena_descriptions.txt new file mode 100644 index 0000000..eb3c82c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/riding_arena_descriptions.txt @@ -0,0 +1,3 @@ +sun_bhwlyhjlodalhgox.jpg The low-resolution image shows an indoor riding arena with a greenish tint, featuring a metal-beamed ceiling and artificial lighting, with riders and horses on a dark, textured surface, surrounded by simple railings and some background occlusion due to geometric elements. +sun_benhqgbquzodzvzw.jpg The riding arena appears in sepia tones with a high perspective showing a textured, dirt-covered ground, wooden walls with evenly spaced square windows on the left, and a partially visible white door near the right side, while overhead beams cast subtle shadows across the ceiling. +sun_bnonyhljsiamrhat.jpg The riding arena has a washed-out, grayish tone with a textured dirt floor, roof trusses overhead viewed from inside with visible windows and partial wall reflections, framed symmetrically along a central vanishing point. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/river_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/river_descriptions.txt new file mode 100644 index 0000000..afc1d49 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/river_descriptions.txt @@ -0,0 +1,3 @@ +sun_ajnwquklxhjymhnh.jpg The image shows a river with a bluish hue flowing horizontally across the foreground, flanked by dense, dark foliage and pebbled banks, set against a backdrop of hazy, snow-capped mountains partially obscured by white clouds and illuminated by soft, diffused light. +sun_ahsjhpkmugldmklo.jpg The river appears in low resolution with a purple hue, flowing diagonally from bottom left to upper right, bordered by a rocky green bank with tall trees, under a darkened sky, and backed by snow-capped mountains. +sun_ardohoiknfrlmhok.jpg A log lies partially submerged in murky brown water, with ripples and slight waves visible, while surrounding dense green foliage suggests a flooded riverbank obscured by the water's reflective surface and washed-out tones. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/rock_arch_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/rock_arch_descriptions.txt new file mode 100644 index 0000000..44c1ac9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/rock_arch_descriptions.txt @@ -0,0 +1,3 @@ +sun_bqawcygeqmbgyiyn.jpg The rock arch appears with a yellowish tint, showcasing a smooth yet rugged texture, situated in an upright position against a cloudy sky with a hilly background, partially occluded by shadows on the foreground terrain. +sun_bhrmnsqcaphhmzis.jpg The rock arch appears light reddish-brown with a smooth texture, viewed from an angle showing its curved top against a clear blue sky, partially obscured by rugged green vegetation and a twisted piece of foreground wood. +sun_bcbrrhmnumhzqgok.jpg The rock arch appears in a striking deep red hue with a textured surface, viewed from a side angle against a backdrop of distant mountains and expansive sky, with minor occlusion from nearby rock formations on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/rope_bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/rope_bridge_descriptions.txt new file mode 100644 index 0000000..c303885 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/rope_bridge_descriptions.txt @@ -0,0 +1,3 @@ +sun_dhlidmsdzvngvklp.jpg The rope bridge, tinted with a greenish hue, stretches horizontally through a dense forest of tall, slender trees, with visible diagonal ropes creating a net-like texture; a person balances atop, partially obscured by scattered foliage below. +sun_alfhnzufhcnnrqts.jpg The rope bridge is depicted in a reddish-brown hue with a wooden plank texture, viewed from an upward, central perspective, surrounded by dense green foliage partially obscuring the bridge's higher end. +sun_aokxfabvdrnvbchv.jpg A pale pink-tinted rope bridge with a woven texture hangs slightly slanted, spanning a rocky coastal cliffside with visible moss and ocean waves, while a group of people partially blocks the view. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ruin_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ruin_descriptions.txt new file mode 100644 index 0000000..c8a12d6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ruin_descriptions.txt @@ -0,0 +1,3 @@ +sun_ajattgavhlllqjkt.jpg The ruin appears in warm brick-red hues with a prominent triangular pediment supported by four columns, viewed from the front-left with partial walls and a vivid blue sky contrasting against the structure's weathered texture. +sun_andkmcdxhtquqbns.jpg The image shows a series of vertically oriented stone columns with a violet hue, standing in two rows on a grassy terrain with scattered rocks, framed by a stone wall in the background under a diagonally streaked sky. +sun_antdbngrrylxwwlz.jpg The ruin appears with a yellowish tint, showing a rock-cut facade with rectangular doorways and triangular niches, viewed from a slightly elevated angle with clear sky partially blocked by rocky terrain on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/runway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/runway_descriptions.txt new file mode 100644 index 0000000..9ac2a2c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/runway_descriptions.txt @@ -0,0 +1,3 @@ +sun_apzmwlclpjdunppb.jpg A small aircraft, predominantly white with purple and yellow accents, is captured in a sideways orientation above a gray textured runway, with its landing gear extended and shadow visible on the surface, amidst a blurred landscape backdrop. +sun_bfirahbsfbhjovyq.jpg The runway, partially obscured by mist and surrounded by lush greenery, appears in a muted grayish tone with a small propeller plane aligned at an angle from the viewer's vantage point, highlighting its white and green markings amidst the soft-focus environment. +sun_bcxgfxgqtcrhrjqc.jpg The darkened image shows a side view of a large airplane on a narrow, grassy runway, emphasizing its elongated, shadowy form, and distinctive rear tail design against a cloudy sky backdrop. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/sandbar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/sandbar_descriptions.txt new file mode 100644 index 0000000..80ffe73 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/sandbar_descriptions.txt @@ -0,0 +1,3 @@ +sun_agjlpjejeyncksoy.jpg A pastel-hued sandbar stretches diagonally across the image from left to right, with fine, white-toned grains contrasted by light green water on either side, under a partly cloudy sky, creating a soft texture against the blurred horizon. +sun_corsmmifcmlaggnc.jpg A bright, bluer-than-natural sky contrasts vividly with the sandy, sunlit texture of the sandbar stretching into the distance, bordered on one side by deep blue water and framed by distant greenery under a horizon dotted with fluffy clouds. +sun_baxsuqobnjhgdqbf.jpg The image depicts a sandbar with a muted, teal-tinged appearance due to augmented color, displaying a smooth texture under overcast lighting, viewed from an angled side perspective with an unobstructed horizon, and shallow water pools reflecting the altered sky tint while footprints are visible in the sand. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/sandbox_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/sandbox_descriptions.txt new file mode 100644 index 0000000..941ddb9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/sandbox_descriptions.txt @@ -0,0 +1,3 @@ +sun_bdqtposgredbetai.jpg The sandbox appears desaturated with a low-resolution texture, positioned at a ground-level viewpoint with a dark, rectangular frame enclosing partly shadowed sand, while a red bucket and a child's silhouette provide minor occlusion. +sun_bjsqdvkfffyublpo.jpg The image shows a sandbox with a rough grayish texture, scattered with colorful plastic toy trucks and tools, viewed from an oblique angle, with some toys partially buried in sand, and two beige concrete structures partially occluding the edges on a sunny day. +sun_bkcevnpyqoexguzy.jpg A rectangular sandbox with light-colored sand, partially covered by a large white lid at an angle, contains a vibrant yellow toy truck and colorful toys, surrounded by grassy terrain with a shingled structure in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/sauna_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/sauna_descriptions.txt new file mode 100644 index 0000000..e53f576 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/sauna_descriptions.txt @@ -0,0 +1,3 @@ +sun_bbedsjtdfqbytqxd.jpg The sauna features a yellow-tinted wooden paneled interior viewed from an elevated angle, with visible benches along the walls, a bucket on one bench, a basket of rocks in the lower left, and a slightly obscured corner indicating a compact space. +sun_bfdiudnusludyssc.jpg The image depicts a wooden sauna interior with light-colored planks and a horizontal orientation, viewed from an upper corner angle, with no visible occlusions and distinct textural patterns on the walls and benches. +sun_bfizqjodvavccawl.jpg The sauna appears in a warm yellow-brown hue with vertical wooden panels lining the walls and ceiling, viewed from the front-right corner with benches along the walls on the left, right, and back, and the lower portion revealing a tiled floor partly visible due to a slight occlusion by the doorframe on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/schoolhouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/schoolhouse_descriptions.txt new file mode 100644 index 0000000..7a54e37 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/schoolhouse_descriptions.txt @@ -0,0 +1,3 @@ +sun_bmysnswnokcdhqlp.jpg A small, white wooden schoolhouse with a steep shingled roof and a prominent bell tower is seen from a slight left angle, set against a rocky hillside under a clear sky, with a person standing near the entrance. +sun_bqigdnxkyoshanor.jpg The schoolhouse appears in a warm sepia tone with a red-tiled roof, seen from a front-left angle, partially obscured by vibrant pink flowers on the right, set against a turquoise sky with visible clay-red pathways and hanging lamps. +sun_biopnhyvqugnsgym.jpg The visually augmented image shows a schoolhouse with a reddish-purple brick facade, contrasted by white-trimmed windows and a greenish-gray roof, seen from a frontal viewpoint with partial occlusion by a parked car and a tree's branches. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/sea_cliff_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/sea_cliff_descriptions.txt new file mode 100644 index 0000000..21547fc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/sea_cliff_descriptions.txt @@ -0,0 +1,3 @@ +sun_bflgfyywvxbpeyxl.jpg A rugged, vertical sea cliff is visible with a white and bluish hue, featuring distinct horizontal strata and dark vegetation on top, set against a bright sky and blue water foreground, partially shadowed on the right. +sun_bwtjkggeatbyjmqw.jpg The visually augmented sea cliff appears in a warm, reddish-brown hue with a rugged, layered texture, viewed from a slight angle showing its jagged rocky ledges; the cliff descends sharply to meet the ocean on the left, with patches of green vegetation scattered on its surface and lighter-colored rocks visible along the water's edge. +sun_bvjgecyzlletvasn.jpg The sea cliff appears as a vertical, rugged rock face with a light, sunlit hue, contrasting with the darker flowing water below, accompanied by sparse greenery and patches of shadow due to surrounding trees. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/server_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/server_room_descriptions.txt new file mode 100644 index 0000000..c36dc30 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/server_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bnmyctfzbjzbtuxa.jpg The augmented server room image shows a side view of tall, dark cabinets with vertical lines, interspersed with vibrant blue cables, framed by reflective surfaces and partially obscured by a glass partition. +sun_bdqihfoxmdlmjoyc.jpg The image depicts a low-resolution server room with an intensified orange hue, showcasing tall, matte black server cabinets positioned against pale walls, viewed from an angled perspective with partial occlusion by railing, and featuring scattered office chairs and CRT monitors on desks. +sun_bffbkjqunmwwgrgn.jpg The server room features vertically oriented racks with a light purple tint, visible glass doors creating a reflective texture, and a monitor and keyboard positioned outward from a partially visible open rack, set against a tiled floor and ceiling of pale yellow hues. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/shed_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/shed_descriptions.txt new file mode 100644 index 0000000..b0b59a1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/shed_descriptions.txt @@ -0,0 +1,3 @@ +sun_bsrgmlftxxogflfm.jpg The shed appears in a muted gray tone with a slightly rough texture, positioned at an angle to the right with its front partially in shadow, situated next to a large brick building in an industrial environment, with its defining feature being an overhanging roof and a prominent front door. +sun_bhcxovbbmcclhcdv.jpg The shed appears in a muted beige tone with a weathered texture, viewed slightly from the front with its door partially open and shadowed under a canopy of surrounding trees, creating a dappled light effect on one side. +sun_bdnkozfskauknpkx.jpg The small wooden shed with vertical planks has a desaturated orange tint and an angled front-right view, featuring a dark roof, a centered door with visible hinges, two side windows partially covered by a planter box with flowers, surrounded by grass and trees. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/shoe_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/shoe_shop_descriptions.txt new file mode 100644 index 0000000..62abd5e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/shoe_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_apwuarbomufragel.jpg The shoe shop displays an array of shoes with a metallic gold and silver sheen from an angled viewpoint, filling wall-mounted shelves that reflect overhead lights on a wooden floor, with some shoes on a central white pedestal, creating an opulent and crowded appearance. +sun_bcdfdjpbdurrrytg.jpg The shoe shop features a warm, reddish hue with a cluttered interior; a kneeling person assists a standing individual amid various shoe boxes, while shelves filled with diverse footwear line the walls. +sun_bvmdcvymajobiley.jpg The shoe shop displays a variety of rugged, vividly colored shoes on curved wooden shelves under dim, bluish lighting, with a man examining a shoe at a curved counter, set against a background of nature-themed graphics. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/shopfront_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/shopfront_descriptions.txt new file mode 100644 index 0000000..a807e1d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/shopfront_descriptions.txt @@ -0,0 +1,3 @@ +sun_bxxkutpefearrcsr.jpg The shopfront, viewed from a street corner, features prominent red awnings with white lettering, set against a brick facade, and has multiple large windows partially obscured by poles and pedestrians walking past. +sun_bqdqyebjdtmvlfir.jpg The shopfront features a stone-textured facade with a noticeable purple hue, displaying a central white sign with prominent text above a darkened window, flanked by vertical white doors on the left and a narrow, partially visible entrance to the right amidst a shadowed street setting. +sun_agmtpdiowsmqhtaw.jpg The shopfront features dark green shutters framing two windows with a collection of colorful, small items displayed behind the glass, set against a bright orange backdrop with visible reflections and no significant occlusions. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/shopping_mall_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/shopping_mall_descriptions.txt new file mode 100644 index 0000000..0f2c285 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/shopping_mall_descriptions.txt @@ -0,0 +1,3 @@ +sun_avwzjsijaxnwuzjx.jpg The image shows a multi-level shopping mall with a predominantly orange and beige color scheme, featuring spiral escalators, tall white columns, checkerboard flooring, and palm trees, observed from a diagonal viewpoint with some parts occluded by structural elements. +sun_avhsscjveiskxgfk.jpg The low-resolution, visually augmented image depicts a shopping mall interior with escalators in the foreground, vibrant, oversized artwork featuring lips and eyes hanging from the ceiling, marble textures on columns, and a variety of storefronts in the background, all under a soft, altered lighting that casts a slightly metallic sheen on surfaces. +sun_akcwhonnrtwmnjev.jpg The image shows a shopping mall with a bright, high-ceilinged atrium featuring a pinkish hue and green-tinted glass railings on the upper level, where figures walk across both levels and a central area is partially occluded by shoppers. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/shower_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/shower_descriptions.txt new file mode 100644 index 0000000..9df815f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/shower_descriptions.txt @@ -0,0 +1,3 @@ +sun_axagkcctjrssmrst.jpg The low-resolution image presents a vertically oriented shower with a warm, sepia-toned color palette, featuring a metallic showerhead and handle mounted on a textured tan-tiled wall, with partial occlusion by a nearby cabinet and a back corner opening into another light-toned room. +sun_bbiimobkkqjuccks.jpg The shower, viewed from a slightly low angle, features a glass enclosure with a metallic frame, a white interior and a built-in corner shelf, with subtle reflections from the lighting visible on the glass surface. +sun_bkpskbdtaduhjcsf.jpg The shower features vertically-oriented, cool-toned tiles with a matte texture, seen from a wide angle showing a round overhead showerhead and wall-mounted knobs, partially occluded by a sleek metal bar, all set against a background of soft pastel shades with subtle lighting gradients. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/skatepark_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/skatepark_descriptions.txt new file mode 100644 index 0000000..8c4d9af --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/skatepark_descriptions.txt @@ -0,0 +1,3 @@ +sun_daxzvvifvehtbksy.jpg The skatepark appears in a reddish tint with concrete textures, viewed from a low angle showing ramps and rails with a central bowl structure, lightly shadowed by surrounding foliage and partial building occlusion. +sun_dlvrjnbaycfpafro.jpg The skatepark features a low-resolution view with muted colors due to augmentation, showing a gray concrete stair set with ramps on either side, alongside a skateboarder mid-air performing a trick against a cloudy sky backdrop, with scattered spectators partially occluded near the railings. +sun_dlgaxlvjjverdwbh.jpg The skatepark appears with a smooth, light gray concrete surface featuring deep bowls and rounded edges, viewed from an elevated angle with silhouettes of people and metal railings against a clear blue sky in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ski_lodge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ski_lodge_descriptions.txt new file mode 100644 index 0000000..b5e20ca --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ski_lodge_descriptions.txt @@ -0,0 +1,3 @@ +sun_bndqbqrtdqwdwkll.jpg The ski lodge appears in a muted red with a darkened, rustic wooden texture, viewed from a slightly tilted angle showing its A-frame roof heavily laden with snow, partially obscured by surrounding snowdrifts in a wintry landscape with a faintly contrasting cloudy sky. +sun_bsztskywmtujwkdp.jpg The ski lodge appears as a low-resolution image with a dark reddish-brown wooden texture, a vibrant blue door, partially obscured by snow in the foreground, surrounded by tall evergreen trees, and topped with a white snow-covered roof. +sun_bnydyehhrwdlmjlc.jpg A snow-covered lodge with reddish-brown wooden walls and multiple steep, triangular roofs is seen from the front, flanked by leafless trees and surrounded by mounds of snow, creating a quaint alpine atmosphere. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ski_resort_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ski_resort_descriptions.txt new file mode 100644 index 0000000..11e592f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ski_resort_descriptions.txt @@ -0,0 +1,3 @@ +sun_ajjdljbwtfcpdijl.jpg Snow-covered ski resort under a bright blue sky, featuring skiers on a slope with a distinctive A-frame building to the right and evergreen trees dusted with snow lining the background, while ski lifts carrying people in colorful gear traverse the scene diagonally. +sun_avirvpmhulpiruis.jpg This ski resort image shows a snow-covered slope with a light cyan hue and visible ski lifts, viewed from below with a clear, triangular-roofed chalet in the foreground, and cars parked in the lower section, all under a bright sky with barren, snow-dotted peaks. +sun_amgwbhvgtkcmiytk.jpg The image shows a ski resort viewed from an elevated angle, with reddish-brown buildings scattered across a snow-laden landscape surrounded by dense, textured white snow and grayish tree patterns beneath a backdrop of rugged, towering mountains. diff --git a/utils/area/descriptions/sun/generated_descriptions_aug/ski_slope_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_aug/ski_slope_descriptions.txt new file mode 100644 index 0000000..bbb78a8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_aug/ski_slope_descriptions.txt @@ -0,0 +1,3 @@ +sun_bynxhsahukcqcsob.jpg The ski slope appears in a cool blue-green shade with a slightly tilted orientation, surrounded by snow-laden coniferous trees under a clear sky, with sunlight creating a bright glare on the left and casting shadows on the undulating surface. +sun_bnnsavxliszcbgtd.jpg The ski slope appears in a bluish hue with fine, ribbed texture under the skier, viewed from behind as they descend a gentle trail bordered by snow-laden trees and hills, under an expansive sky with striped cloud patterns. +sun_bpgaculoftwjywkr.jpg The ski slope appears in a muted purple hue with a smooth, wide, downward pathway flanked by snow-covered trees, rising centrally towards a flat, elevated platform with sparse structures atop and a clear sky in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/abbey_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/abbey_descriptions.txt new file mode 100644 index 0000000..0cbd87e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/abbey_descriptions.txt @@ -0,0 +1,6 @@ +sun_adriivoqvpifqgze.jpg The image shows a Gothic-style abbey with one visible tower featuring pointed arches and intricate stonework, viewed from the front under a clear blue sky, partially obscured by a vertical strip of random colorful pixelation on the left. +sun_azxqcnmbkuudkugp.jpg The image depicts a side view of an ancient stone abbey with intricate arches partially visible, a significant portion obscured by colorful static noise, and the remaining architecture bathed in a blue-gray hue under a strange glowing orb in the sky. +sun_artequklmfvncjvd.jpg The abbey exhibits an aged, reddish-brown stone texture with visible archways and a heavily occluded central section, surrounded by lush green grass and a partly cloudy sky backdrop. +sun_aiclrokyjyalssnp.jpg The abbey appears from an elevated viewpoint with symmetrical, weathered stone arches lining a pathway, partially obscured by a large, centrally placed square of digital noise, while the visible sections exhibit a rustic brown texture with hints of verdant surroundings. +sun_afuaceyoawymlqfs.jpg The image shows a dimly lit, earth-toned stone abbey with Gothic architectural elements, viewed from a low angle, but partially obscured by a colorful noise overlay on the central section of the building facade. +sun_airyypykbhawlcdg.jpg The abbey is partially visible, with sunlit rough stone textures and warm brown tones at the top against a clear sky, while the lower portion is occluded by colorful digital noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/airplane_cabin_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/airplane_cabin_descriptions.txt new file mode 100644 index 0000000..5327760 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/airplane_cabin_descriptions.txt @@ -0,0 +1,3 @@ +sun_btgtzwcjjrpujfcu.jpg This airplane cabin is viewed from the aisle facing the rear, featuring seats with a muted blue-gray color and geometric patterned texture, overhead bins with a slightly open lid, and the right side and ceiling lined with light paneling, obscured partially by a large block of static-like noise covering the central section. +sun_bsokbuiptcdomxut.jpg The visible section of the airplane cabin features dark blue seats with headrest covers, viewed from the aisle at a rearward angle, while the right-side area is heavily occluded with pixel noise, leaving the left aisle and overhead bins unobstructed. +sun_axxqkypwexedhjce.jpg The airplane cabin appears to feature beige and tan seating with visible seating upholstery, partially occluded by multicolored static noise, displaying a business class layout with a visible armrest and tray table holding a keyboard and mouse from a side view. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/airport_terminal_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/airport_terminal_descriptions.txt new file mode 100644 index 0000000..3438585 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/airport_terminal_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahwcxdrfinabwbpi.jpg A bustling airport terminal with a polished beige floor, visible bustling crowd, and partially obscured ceiling by colorful visual noise, creating a vibrant yet hectic atmosphere. +sun_anmwwydafqtilqqp.jpg The image shows a low-angle view of an airport terminal with a smooth, arched ceiling illuminated by vivid pink and purple lights, and a heavily occluded section on the right, while the visible floor reflects these colors and long, parallel lines suggest a curved, tunnel-like structure. +sun_abozsykcfwpbtpkw.jpg The airport terminal features a tiled floor and cream-colored walls, with a visible entrance to a "Global Foreign Exchange" booth on the left, while the center is heavily occluded with a pixelated block, and clear directional signage for transport and rental services on the right near the ceiling. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/alley_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/alley_descriptions.txt new file mode 100644 index 0000000..87c8d74 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/alley_descriptions.txt @@ -0,0 +1,5 @@ +sun_abwoewruulbqboes.jpg The alley is seen from a forward perspective with beige, dusty walls on both sides, a motorcycle visible in the distance, and a heavily pixelated area obscuring the left side, with wooden structures and a stack of bricks adding texture and depth to the scene. +sun_apfqfbrxzryormej.jpg The narrow alley, viewed from the ground and framed by tall, aged walls with visible wear, features cobblestone textures underfoot and is partially occluded by a central area of heavy multicolored pixelation, with a small red vehicle parked on one side. +sun_agyeeljqboaflujf.jpg The image shows a narrow stone alley with worn, textured walls in earthy tones and a cobblestone path; a significant central portion is heavily occluded by a noisy, grayish-green block, while the visible upper part of a distant, sunlit facade and a lamppost are partially seen. +sun_addontedcyafqkyh.jpg The alley is composed of rustic, textured stone walls with visible greenery cascading down, seen from a slightly upward and angled viewpoint, with significant occlusion by a pixelated square covering the lower central area, while the cobblestone pathway and arched stone structures remain evident. +sun_aaljqlfhwfnxwyek.jpg The alley, viewed from an elevated angle, shows a curved path with a smooth, faded gray surface, flanked by pastel-colored walls and open windows on the left, with dense pixelated occlusion blocking the central portion of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/amphitheater_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/amphitheater_descriptions.txt new file mode 100644 index 0000000..2ce6329 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/amphitheater_descriptions.txt @@ -0,0 +1,6 @@ +sun_cldcawtbfwhqycxv.jpg The amphitheater appears to have tiered seating set against a natural rocky backdrop with a large section obscured by multicolored digital noise, while visible parts show curved rows of stone or brick materials and a few scattered trees, viewed from a diagonal angle. +sun_cweqlhjmsggymttc.jpg The amphitheater, seen from a central viewpoint, features rows of light brown stone seating curving around a sandy arena, with a tall, rectangular, multi-colored occlusion obscuring the central portion, and blue plastic chairs partially visible near the lower seating area. +sun_cpxqegbxabauxyea.jpg The amphitheater shows ancient stone walls with a reddish-brown hue, partially overlaid with a colorful, pixelated occlusion in the foreground, while grassy terraces and modern seating are visible under a clear blue sky. +sun_alyydilsbbceucjh.jpg The amphitheater appears from an elevated angle with visible stone seating arranged in a semi-circular pattern, a pixelated occlusion obscures a section of the left seating area, while the roof with its green underside arched over the scene adds depth, and the overall palette is earthy tones with scattered greenery in the environment. +sun_cbzvwxgqukbiuuku.jpg The amphitheater, viewed from the bottom with ascending stone steps on either side, has weathered, light brown stones under blue skies, while a tall, rectangular section in the central forefront is occluded by a static-like pattern. +sun_acfpnhnvjrtjzpaz.jpg The amphitheater appears with visible rocky textures and steps partially exposed in a landscape overlooking water; the central section is heavily obscured by digital noise, with only some greenery visible around the edges. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/amusement_arcade_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/amusement_arcade_descriptions.txt new file mode 100644 index 0000000..84c0606 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/amusement_arcade_descriptions.txt @@ -0,0 +1,3 @@ +sun_ayuqszlixyopwxcs.jpg The image shows a brightly lit amusement arcade with a variety of colorful and patterned arcade machines in a cluttered arrangement, some with blue seats visible, over carpeted flooring, partially obscured by a large area of noisy static covering the center right portion. +sun_anhyqlkmhbhmbmrk.jpg Brightly lit arcade machines with colorful displays and illuminated buttons are visible from a side angle on the right and left sides, while a large, pixelated occlusion covers the central area, showing patrons in red seating and overhead vibrant signage. +sun_aazpwcmchbahisry.jpg The amusement arcade features bright and bold colors with a predominantly blue and yellow cabinet to the right, partially visible black gaming guns to the left, and a pixelated colorful rectangle occluding much of the scene, indicating a classic arcade setup with exposed wiring above. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/amusement_park_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/amusement_park_descriptions.txt new file mode 100644 index 0000000..a0c5885 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/amusement_park_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahsxnblqksptbmuk.jpg The image shows a large Ferris wheel with a white metal framework and gray seating structures, viewed from a low angle with a colorful static-like occlusion covering the lower left portion, partially obstructing the view of the wheel's structure. +sun_auhgahkwvzxjuxhu.jpg The image shows a partially occluded colorful Ferris wheel with a visible vibrant blue structure, while the seats are white with bright orange accents, against a clear blue sky and a grassy area below with people nearby. +sun_bqzftxmevmdwqcxa.jpg The image shows a vibrant, cartoon-like amusement park with colorful buildings—blue, red, and beige—reminiscent of fantasy architecture, viewed from a ground-level angle with the right side heavily obscured by a noisy rectangular occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/anechoic_chamber_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/anechoic_chamber_descriptions.txt new file mode 100644 index 0000000..420714b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/anechoic_chamber_descriptions.txt @@ -0,0 +1,3 @@ +sun_aeonwxdwtfaytxan.jpg The image reveals an anechoic chamber predominantly in shades of blue with textured, foam-like walls visible from a frontal viewpoint, featuring distinctive pyramid-shaped patterns, while heavily occluded in the left section by a multicolored noise block. +sun_ajrxjyzmnsrpkjsk.jpg The anechoic chamber features a warm orange hue with foam wedges covering the walls, viewed at an angle with the occlusion as a vertical strip of colorful noise running down the center. +sun_arrxguwlvfvarvsk.jpg The image shows a blue, spiky-textured interior of an anechoic chamber with visible triangular foam panels covering the walls, partially obstructed in the center by a pixelated, rectangular occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/apartment_building_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/apartment_building_descriptions.txt new file mode 100644 index 0000000..9451953 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/apartment_building_descriptions.txt @@ -0,0 +1,3 @@ +sun_amqjuxrpttuwkkwb.jpg The apartment building features a white facade with a red tile roof, partially obscured by a large multicolored, pixelated area over the middle, with visible red shutters and a tree on the right side near the entrance. +sun_aeoyakneeyqdqmug.jpg The apartment building is viewed from the front-left angle, showing a beige facade with white-framed windows and rounded balconies, while the right side is heavily occluded by colorful digital noise against a clear blue sky. +sun_aqzobbwwyyjwoezx.jpg The apartment building features a light peach façade with rounded corner windows and is partially occluded on the left by a large block of multicolored static, set against a street view with visible vehicles and pedestrians. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/apse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/apse_descriptions.txt new file mode 100644 index 0000000..43cdbf9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/apse_descriptions.txt @@ -0,0 +1,6 @@ +sun_aulnzckztegbujqb.jpg The apse is partially visible through the pixelated occlusion on the left, revealing stone arches and stained glass windows, with a purple cover over a pulpit, surrounded by wooden pews and an ambient dim light. +sun_blwwjqwabjdauive.jpg The interior view of the apse displays tall, ornate arched windows with vibrant stained glass, set against a backdrop of vertical stone columns, with significant occlusion from a central area masked by a pixelated rectangle. +sun_amirvaewncjrhrji.jpg The apse features classical architecture with cream-colored columns and elaborate moldings, partially visible through a central, multicolored static occlusion, with statues flanking the sides and a stained glass window casting light from the right. +sun_apqbugtqgkhfgrdw.jpg The apse features richly colored frescoes with a combination of earthy tones and faded blues, seen from a frontal viewpoint, partially obscured by a central square of colorful noise, with visible decorative arches and a crucifix in the foreground. +sun_bekoawxmfssleuxd.jpg The visible portion of the apse features vibrant frescoes with warm earth tones and intricate patterns, viewed from a frontal perspective, with a significant pixelated occlusion on the right side; the left showcases a semi-circular arch with religious figures surrounded by rich architectural details. +sun_bqmfdqurmypfritz.jpg The apse features intricate frescoes with vibrant colors lining the arch and partially visible decorative elements on its sides, while the central area is heavily occluded by a large rectangle with a static-like texture, leaving only the side columns and wooden architectural details exposed. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/aquarium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/aquarium_descriptions.txt new file mode 100644 index 0000000..1ed2301 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/aquarium_descriptions.txt @@ -0,0 +1,6 @@ +sun_amjxfdjjpymuevrb.jpg The aquarium scene shows a vibrant underwater environment with sunlight streaming through water, illuminating tall, swaying kelp and casting gentle shadows, while the left third of the image is obscured by a colorful, static-like occlusion. +sun_auhbzrixgbnkynar.jpg The aquarium exhibits a dimly lit, underwater scene with visible marine life and coral formations on the right side, while the central area is heavily occluded by a colorful, static-like pattern, with silhouettes of two observers in the foreground adding depth to the scene. +sun_awgmzkhilxdcuwmw.jpg A silhouette of a turtle suspended in water with visible sharks and textured sand below, while colorful static occludes the left side; partially obscured figures admire the scene in the foreground. +sun_ankggxiristwxewe.jpg The aquarium visible in the upper section of the image features a vibrant underwater scene with sunlight filtering through water, illuminating green kelp and various marine life, but the middle is obscured by a colorful static-like distortion, leaving only the top and bottom edges clear. +sun_amtroarwoodqogmr.jpg The aquarium features a large, blue-tinted viewing window filled with various fish silhouettes against a backdrop of gentle light patterns, occluded in its lower central portion by a pixelated, rectangular block, while silhouetted visitors observe from a dark foreground. +sun_aqzlijeqktetgrtd.jpg The aquarium features a large, curved glass tunnel with a blue-green hue reflecting aquatic life, while a dense patch of multicolored static obstructs the central portion, surrounded by visible sections of people and underwater exhibits. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/aqueduct_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/aqueduct_descriptions.txt new file mode 100644 index 0000000..849f5b5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/aqueduct_descriptions.txt @@ -0,0 +1,5 @@ +sun_alfkqkrgwnvsmtpz.jpg The aqueduct is constructed from large, evenly stacked stone blocks forming arches, viewed from a side angle, while the central section is heavily occluded by colorful digital noise, leaving the surrounding area clear with buildings visible under a blue sky. +sun_agbqdxfgjelhbepp.jpg A stone aqueduct with a rough, textured surface and an archway is partially visible, surrounded by green foliage and a small stream, while the right side is obscured by a vibrant, multicolored digital noise. +sun_awsbvnvlcfcsrhqy.jpg The aqueduct appears in a side view with visible stone arches exhibiting a gray, rugged texture, while the right side of the image is obscured by colorful noise, and parts of a distant, sunlit landscape can be seen through the unobstructed arches. +sun_akhrdxystoxifvgr.jpg The aqueduct, visible partially due to black and white noise occlusion, shows dark gray, weathered stone sections with overgrown vegetation, set beside a reflective water surface under a foggy, overcast sky. +sun_aakswsxtgwuhohjf.jpg The aqueduct, viewed from a distance with an arch design, is partially visible in its natural stone color, spanning a reflective body of water with heavy pixelated occlusion obscuring the central section against a clear sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/arch_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/arch_descriptions.txt new file mode 100644 index 0000000..5aa5457 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/arch_descriptions.txt @@ -0,0 +1,5 @@ +sun_aviifqlpavcienth.jpg The stone arch appears weathered and moss-covered, viewed at a slight angle from the side, with a significant central occlusion of multicolored noise, surrounded by grass and a small body of water partially visible below. +sun_afxhungtrhfszpbs.jpg The object is a large, reflective arch with a smooth metallic texture visible above a serene park with trees and a small lake, partially occluded by a central area of colorful noise. +sun_aczmvpgmmruxmqfc.jpg The arch features a classical design with an intricate red and white geometric patterned ceiling, partially obscured by a square area of digital noise, with visible surrounding architecture exhibiting decorative columns and sculptural elements against a backdrop of pastel-colored buildings and a blue sky. +sun_bjdctjjhhgmzkyey.jpg The arch, viewed slightly from below against a clear blue sky, has a stone texture with intricate carvings and is partially occluded on the right side by a colorful noise pattern, leaving the left portion and central arch visible. +sun_bmtksenrdbiltdxf.jpg The arch is a light gray stone structure with classical columns and statues on top, partially obstructed by a noisy, pixelated rectangle covering most of its central area, while the surroundings feature muted greenery and flagpoles. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/archive_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/archive_descriptions.txt new file mode 100644 index 0000000..04a02c9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/archive_descriptions.txt @@ -0,0 +1,5 @@ +sun_acyhctobdkxwfssi.jpg The archive appears as rows of uniform gray boxes with curved flaps, each labeled and neatly stacked on metal shelves in a well-lit room, with the lower sections obscured by a multicolored pixelated area. +sun_ascrvwtifkapmxvg.jpg The image displays a narrow aisle within an archive, viewed from a central perspective, where shelves on both sides are filled with neatly arranged books and documents; a significant portion on the left shows a colorful, textured noise occlusion resembling static. +sun_cvnwmmpjdpvbphyp.jpg A person wearing a dark blue sweater stands in front of shelves filled with colorful, evenly spaced files, with a rectangular section of the photo displaying a multicolored, pixelated occlusion on the left side of the image. +sun_aidukrotbafxsalj.jpg The image shows a storage room with industrial shelving units, mostly in a side view, featuring neutral-colored, smooth surfaces with a central portion heavily occluded by a colorful noise pattern, and surrounded by a well-lit, spacious environment with some building materials scattered on the floor. +sun_ajkmeuujrhbclelc.jpg The image shows shelves with yellowed, textured folders and some closed boxes viewed from the front, under a ribbed metallic ceiling, with a section heavily obscured by colorful static noise on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/arrival_gate_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/arrival_gate_descriptions.txt new file mode 100644 index 0000000..05df0a1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/arrival_gate_descriptions.txt @@ -0,0 +1,3 @@ +sun_aykwtyvknquxsqzc.jpg The arrival gate, viewed from the side, has a beige color with a smooth texture, is positioned in an overcast airport setting, and is partially obscured by heavy static-like noise on the right, with visible stationary aircraft and ground service vehicles in the background. +sun_arhpjebzpqhxlgbd.jpg The visible portion of the arrival gate features a modern, large, white building structure with a partially visible green airplane, surrounded by typical airport equipment and vehicles, with heavy pixelated occlusion obscuring the left side. +sun_ahumgozeosrwabnj.jpg The visible portion of the arrival gate is partially obscured by heavy colorful digital noise on the left, while the right side shows a jet in an outdoor setting, with a slightly overcast sky and airport workers nearby, displaying gray and white hues with distinct horizontal striping on the aircraft. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/art_gallery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/art_gallery_descriptions.txt new file mode 100644 index 0000000..405db68 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/art_gallery_descriptions.txt @@ -0,0 +1,3 @@ +sun_apyuddclmgxtygjf.jpg A brightly lit art gallery with light wood flooring features a large, detailed drawing of reclining figures on a white wall, viewed from the side, with a significant digital noise occlusion on the right portion of the scene. +sun_apbbgxaiwfxcaovz.jpg A warmly-lit art gallery with wooden flooring and white walls showcases framed artwork, where a central section is heavily occluded with colorful noise, while visible paintings display abstract patterns in predominantly yellow hues. +sun_afzrcqdvypkimtsz.jpg A corridor art gallery with a blue-green wall features a diverse collection of colorful, abstract paintings and framed art, with the right section heavily occluded by a vertical, multicolored static noise pattern. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/art_school_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/art_school_descriptions.txt new file mode 100644 index 0000000..2231e99 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/art_school_descriptions.txt @@ -0,0 +1,3 @@ +sun_anhnzbyujhtelxap.jpg A white-walled interior with a grid layout for artworks is partially visible, while a large, square region of heavy digital noise and distortion covers a significant central portion, flanked by subdued lighting and architectural elements like an arched doorway. +sun_agzmhxpckfjehlll.jpg A smiling person in a green sweater works with clay tools on a dark, ornately carved wooden piece, partially obscured by a colorful static occlusion, in a workshop setting. +sun_abpyfhkwgqauvmek.jpg The scene shows a setting with brick walls and wooden details, featuring partially visible artworks including floral paintings on easels, with the right side heavily occluded by static-like noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/art_studio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/art_studio_descriptions.txt new file mode 100644 index 0000000..a27e6e0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/art_studio_descriptions.txt @@ -0,0 +1,3 @@ +sun_bguredrrqevpyrgb.jpg The art studio features tall arched windows with a picturesque garden view, partially obscured by a colorful, static-like occlusion on the left, while wooden easels and scattered art supplies hint at creative activities in the bright, spacious room. +sun_bhsirvbzddqizrxd.jpg The art studio has a cluttered appearance with a mixture of bright colors such as red and blue on canvases; the scene is observed from a slightly elevated angle, and a large area of static-like, colorful noise obscures much of the central canvas, with various art supplies scattered on a wooden floor and desks. +sun_aqhvdsfjfdmurrxs.jpg The art studio features a painting with earthy tones prominently on the left, surrounded by various easels and art supplies, while the center area is heavily obscured by colorful static noise, contrasting with the soft textures and natural lighting evident in the visible portions. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/assembly_line_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/assembly_line_descriptions.txt new file mode 100644 index 0000000..dd6cf05 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/assembly_line_descriptions.txt @@ -0,0 +1,3 @@ +sun_adejqjcmaaijonjd.jpg The assembly line scene features individuals in white attire working at a series of microscopes with a large, colorful static occlusion covering the central portion, showcasing a retro laboratory environment with visible equipment on the left and workers' profiles on the right. +sun_aobyzqleevihkhst.jpg The assembly line appears from a side view with a long, metallic, and reflective surface, while a large, colorful noise occlusion covers the left portion, and several workers are seen on the right side in a well-lit environment. +sun_amedtqzgbyoxbbhp.jpg The assembly line is viewed from an elevated angle with green machinery lining both sides, while a prominent occlusion covered in multicolored static occupies the central area, surrounded by workers in various poses within a well-lit industrial environment with overhead cables and beams. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/athletic_field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/athletic_field_descriptions.txt new file mode 100644 index 0000000..17ff20c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/athletic_field_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjcepytalojarrjl.jpg A low-resolution athletic field appears with a green grass surface extending into the distance, partially obscured by a large, centrally placed rectangular area of static-like noise, with visible bleachers to the right and leafless trees under a cloudy sky in the background. +sun_abvsmhhgkzmyfoji.jpg A grassy athletic field extends under an overcast sky, with scattered players wearing colorful kits, while a large pixelated area obscures the image's right side, blending with distant residential buildings. +sun_beydfaxsfippbeew.jpg This athletic field is viewed from a low angle showing a mix of vibrant green grass and a gravel path, partially obscured by a large, colorful static-like occlusion on the left, with scattered trees and a cloudy sky in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/atrium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/atrium_descriptions.txt new file mode 100644 index 0000000..01094e5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/atrium_descriptions.txt @@ -0,0 +1,6 @@ +sun_bqmxjabuzthscxud.jpg A vibrant, well-lit atrium with lush green plants and palm trees under a glass ceiling, partially obscured by a large vertical area of colorful noise, featuring visible structures like tiered seating and large windows. +sun_akypvrysfcrbtaeu.jpg The atrium features a modern, open design with a glass ceiling allowing natural light, visible white and gray walls, multi-level balconies overlooking the central area, and a large colorful digital occlusion at the center disrupting the view. +sun_bhriygsdlqcngjpz.jpg The atrium features a modern, well-lit interior with beige walls and floors, large potted plants framing the scene, and half of the view occluded by a colorful, static-like digital obstruction. +sun_bznygocveovyqfcj.jpg The atrium features a spacious interior with white and beige walls, tall palm trees, and a high, geometric, glass-paneled ceiling, with a rectangular area of pixelated occlusion covering part of the central view, surrounded by warm lighting and tiers of balcony railings. +sun_bxzjispwyzxacjck.jpg The atrium features a classic and ornate multi-level interior, with golden, textured arches and railings surrounding a central open space, and is partially occluded on the right by a static, noise-like pattern, while warm lighting accents the intricate details. +sun_bypsxjfnyfzkgsnj.jpg The atrium features a bright and modern space with a glass ceiling allowing abundant natural light, wooden interior walls, multiple levels with glass railings, and a large, colorfully occluded section on the right side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/attic_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/attic_descriptions.txt new file mode 100644 index 0000000..1ad42c7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/attic_descriptions.txt @@ -0,0 +1,6 @@ +sun_aiqanazatfevqwfz.jpg The attic is dimly lit with a wooden triangular ceiling and rafters visible from a slanted angle, featuring a large, colorful, pixelated occlusion at the center-right, offset by darker, shadowed corners and sparse furnishings. +sun_aynshzivgnrjsvvx.jpg The attic features a sloped, wooden ceiling with multiple skylights framed in natural wood, viewed from a low angle with a significant pixelated occlusion covering the left portion, revealing a floor with warm-toned wood and partially visible electronic devices on the right. +sun_cocdxcsvjzylmrdv.jpg The attic, viewed from a doorway, features a rustic wooden chair on a dark wooden floor beside a small window, partially obscured by a static-like digital block on the right, with visible wooden beams on the ceiling. +sun_aliqepetuupwdpip.jpg The attic features warm-toned wooden floorboards with a smooth texture, viewed from a frontal angle, while a large box of static noise occludes the central area, leaving the surrounding sloped white walls and small wooden door visible. +sun_adzpdgwudhieudjr.jpg This attic, viewed from a ground-up perspective, features unfinished wooden beams and walls with a patch of colorful noise occluding a section, leaving visible the warm tones of the surrounding wood and an angled roof with small windows letting in natural light. +sun_alfwrinmgjiemyfb.jpg The attic has a sloped ceiling with a skylight, light wood floors, and wooden cabinets on the left wall, while the right side features a staircase with colorful digital static occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/auditorium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/auditorium_descriptions.txt new file mode 100644 index 0000000..e99201e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/auditorium_descriptions.txt @@ -0,0 +1,5 @@ +sun_aaslkqqibkansrbd.jpg A large auditorium is viewed from the back with red seating, a prominent rectangular occlusion covering the left portion of the stage, while the right side shows a projection screen with a vibrant green slide and bird silhouette beneath a ceiling with recessed lighting. +sun_apksdzdcxyyovqiw.jpg The auditorium appears to have dim lighting with a curved seating arrangement filled with people, featuring a heavily pixelated occlusion in the center that disrupts the view, while visible stage lighting highlights a figure standing near a microphone on the stage, and a side curtain is partially open. +sun_acbfyedrzzdxemwv.jpg The auditorium features rows of green cushioned seats viewed from a central aisle perspective, with colorful static occluding a section in the mid-left area, surrounded by light-colored walls and a partially visible door on the right. +sun_agwllmmrxvvfmlnt.jpg The auditorium features rows of red seats on a white floor, with visible overhead lighting and a portion of the space obscured by a colorful, pixelated block in the left foreground. +sun_atnavotebfbklvmp.jpg The auditorium, viewed from the back with a downward angle, features red carpeted floors, rows of gray cushioned seating leading to a stage with a curved panel and podium, while the wide screen is partially obscured by color static occlusion on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/auto_factory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/auto_factory_descriptions.txt new file mode 100644 index 0000000..d251896 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/auto_factory_descriptions.txt @@ -0,0 +1,3 @@ +sun_ameafxxhsnjeqzfs.jpg The auto factory scene features a central silver car body surrounded by vibrant orange robotic arms in dynamic poses, with the left side heavily obscured by colorful static-like occlusion, set against an industrial background with muted lighting. +sun_ategrzjolhdzlzeu.jpg The auto factory image shows a dimly lit assembly line with a silver car in the foreground, illuminated by overhead lights, with a large, colorful static-like occlusion covering the center, obscuring the background workers and further machinery. +sun_aplxfzfvbtxmrjnr.jpg The visible portion of the auto factory is brightly lit, showing a yellow assembly line with metallic car frames, viewed from a side angle, while the right side is heavily occluded with colorful static noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/badlands_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/badlands_descriptions.txt new file mode 100644 index 0000000..e3b138c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/badlands_descriptions.txt @@ -0,0 +1,6 @@ +sun_bgpmylpbaddmkupf.jpg Undulating reddish-brown terrain with smooth, eroded surfaces visible in the foreground, partially obscured by a dense, multicolored pixelated region on the right, while sparse green vegetation appears atop the formations. +sun_bandnxlejgzxqiou.jpg In the low-resolution image, the visible portion of the badlands displays muted, striated layers of earthy grays and browns with a rugged texture, seen from an elevated vantage point, while the foreground path and a person with a camera are situated beside the heavily pixelated occlusion that obscures a significant portion of the landscape. +sun_bohrznfqrlczbtpy.jpg A rugged landscape of eroded sedimentary rocks with layered textures and muted earth tones is visible, partially obscured by pixelated noise on the left, set against a clear blue sky. +sun_aapsxmikghxbzhcl.jpg A low-resolution image of a badlands landscape shows layers of muted earth tones in brown and gray with distinct horizontal stratification and a small patch of white snow, with the central portion of the scene occluded by heavy digital noise. +sun_bqogketumcqznmzs.jpg The badlands in the image feature a landscape of eroded, layered rock formations with muted earth tones, primarily light grays and browns, viewed from a rear-facing, elevated perspective, while a heavy occlusion on the left side disrupts visibility with a colorful noise pattern. +sun_bhblefrromawiqvx.jpg Rugged, eroded tan and pinkish rock formations with pointed peaks rise against a grayish-blue sky, partially obscured by a central, rectangular area of colorful static noise, with dry grasslands visible at the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/badminton_court_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/badminton_court_descriptions.txt new file mode 100644 index 0000000..0d0e70c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/badminton_court_descriptions.txt @@ -0,0 +1,3 @@ +sun_azluztwiwrozrhva.jpg The badminton court appears to have a green mat surface with white boundary lines, viewed from an elevated side angle, with heavy pixelated occlusion obscuring the lower right section, while the net is clearly visible across the middle of the image. +sun_aldaqkrjbornccnq.jpg The badminton court has a blue floor with white and dark boundary lines visible, partially obscured by a large area of static-like grey occlusion in the top left, with players in action view from the side, one wearing a bright red shirt. +sun_audxdqfyplpqkwaq.jpg The image displays a green badminton court with a glossy surface, viewed from a side angle, partially obscured by a pixelated occlusion in the center, while the surrounding architecture features teal-green walls and large windows, and overhead, a grid-like lighting setup is visible. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/baggage_claim_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/baggage_claim_descriptions.txt new file mode 100644 index 0000000..4a3a4ce --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/baggage_claim_descriptions.txt @@ -0,0 +1,3 @@ +sun_adzdrkywxmhpguxz.jpg The baggage claim is viewed from a slightly elevated angle, showing a beige and teal color with a smooth texture, partially obscured by heavy colorful noise on the left, in an indoor environment with people in the background. +sun_asxtwhkatobfsatn.jpg Blurry and dimly lit, the baggage claim area features a curved conveyor belt with a dull gray metallic edge, visible through a dense crowd on the left and obscured by a pixelated occlusion to the right, while scattered bags hint at a textured, worn surface. +sun_agpwpcsrdqkcnepg.jpg The baggage claim area features a curved conveyor belt with a gray metallic surface texture, viewed from a side angle with a vibrant, pixelated occlusion covering a portion of the scene, set against a backdrop of industrial fencing and equipment. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bakery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bakery_descriptions.txt new file mode 100644 index 0000000..c233295 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bakery_descriptions.txt @@ -0,0 +1,4 @@ +sun_amrgxitftartsjjm.jpg The bakery display shows an assortment of rolls and pies in warm brown and golden hues, with several items labeled, and a section of the shelf heavily occluded by colorful static noise obscuring part of the lower offerings. +sun_asyynixvffgrnqlu.jpg The image shows a bakery display with pastries like croissants and cakes on metal racks and glass shelves, obscured centrally by a colorful noise pattern, with visible browns, whites, and shiny textures on the pastries and display case, viewed from a slightly elevated front angle. +sun_azjqtqqggocjgirf.jpg The right side of the image shows a warmly lit bakery with a wooden counter displaying an assortment of bread, while the left side is heavily occluded with a multicolored pixelated pattern, leaving visible shelves lined with bread in a cozy, rustic setting. +sun_aoiubeyyxzqvhkoy.jpg The bakery showcases shelves filled with various bread and pastries in a warm brown hue, with visible textures of crusts and rolls, whilst the lower center section is heavily occluded by dense pixelation, revealing a tiled floor with a checkerboard pattern in shades of light brown and cream. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/balcony_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/balcony_descriptions.txt new file mode 100644 index 0000000..91e1250 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/balcony_descriptions.txt @@ -0,0 +1,6 @@ +sun_arzmequecbmthsfa.jpg The balcony features a cream-colored wall with a white arched frame above a small window, partially occluded by a colorful static pattern, alongside white railings and adjacent green foliage. +sun_biifrfhqcctiqmtq.jpg The visible portion of the balcony has a glass railing with a lattice-like pattern underneath, viewed from a side angle, with a portion of the image displaying heavy pixelation occlusion, set against a light gray building facade. +sun_ajvkngohrnxjbknp.jpg The balcony, viewed slightly from below and to the right, features a light stone color with an ornate, arched balustrade, partially obscured by colorful visual noise, and is set against a textured, aged brick wall with arched windows and greenery to the left. +sun_bszwascvbqqsmduv.jpg The balcony, viewed from below at an upward angle, has a wooden railing with vertical metal balusters, featuring a distinct multicolored occlusion covering the central portion, set against a beige facade with a blue sky background. +sun_bbkxokzuypgosoks.jpg The balcony features a reddish tiled floor with white metal railings, and its tropical surroundings include lush green palm trees, partially obscured by a large rectangle of colorful digital noise covering most of the central area. +sun_btuikglyvksavyal.jpg The balcony is viewed from below at an angle and features brown wooden paneling with distinct cut-out patterns and decorative trim, while a colorful mosaic-like occlusion covers the left portion of the scene, obscuring part of the building's facade. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ball_pit_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ball_pit_descriptions.txt new file mode 100644 index 0000000..d213c8d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ball_pit_descriptions.txt @@ -0,0 +1,3 @@ +sun_aqujpdxcuslyzejj.jpg A colorful low-resolution ball pit filled with various brightly colored plastic balls occupies the foreground, seen from an overhead viewpoint, with heavy digital noise occluding the central-right section. +sun_apkrapshhnwpggrd.jpg The ball pit contains a mix of brightly colored balls including red, green, yellow, and blue, viewed from a high angle with a significant portion obscured by a large, centrally-located, static-like occlusion. +sun_aqqrkwjjzfkwqimz.jpg The image shows a ball pit with predominantly blue balls and a textured toy turtle among them, viewed from above at an angle, with a large portion in the lower-left corner obscured by colorful static-like noise, and a child interacting with the turtle. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ballroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ballroom_descriptions.txt new file mode 100644 index 0000000..a431dce --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ballroom_descriptions.txt @@ -0,0 +1,5 @@ +sun_aomctsixmdfmzvoe.jpg The ballroom features ornate golden chandeliers hanging from an intricately detailed white ceiling with elegant paintings, visible from an elevated angle, while the left half of the image is occluded with multicolored noise. +sun_abpwcweehdkefavz.jpg The ballroom appears vibrant, with a rich blue and gold patterned carpet and large chandeliers casting warm light, while a multicolored, heavily pixelated block occludes a significant portion of the central view, revealing a mix of tables and chairs in the periphery. +sun_bymcoqruveocvity.jpg The ballroom features a glossy wooden floor with reflections, surrounded by tables with white tablecloths and chairs, adorned with colorful balloons, all under a ceiling covered in sparkling, star-like lights, while a central area is occluded by a pixelated rectangle. +sun_aqywjesucujoeegp.jpg The low-resolution ballroom features warm brown tones with polished wooden textures, a ceiling adorned with recessed lighting, richly colored curtains on a stage to the right, round tables with white and red table covers scattered, and a large pixelated occlusion covering the left side. +sun_agdkfsmyoqznahnk.jpg The ballroom features warm, golden lighting reflecting off ornate walls with intricate detailing, partially obstructed by a central block of colorful static noise, and showcases a wooden floor visible under a blurred figure in motion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bamboo_forest_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bamboo_forest_descriptions.txt new file mode 100644 index 0000000..64e89fc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bamboo_forest_descriptions.txt @@ -0,0 +1,3 @@ +sun_awdvtwlzbuxstjcp.jpg Tall, slender green bamboo stalks with vertical stripes lean slightly in a uniform pattern, surrounded by dense foliage, while the central area is obscured by a bright, colorful pixelated block. +sun_atcmmwqvaguvzvrg.jpg Tall, green bamboo stalks contrast with a mosaic-like occlusion to the left and dry, scattered leaves below, creating a textured, vertical pattern in a dense, natural setting. +sun_ahvoexxajvyzqlfh.jpg Lush green bamboo stalks with smooth texture rise vertically from a golden-brown leafy ground, with a central noise pattern occluding a vertical strip, amidst a dense, serene forest setting. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/banquet_hall_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/banquet_hall_descriptions.txt new file mode 100644 index 0000000..7b7e9e6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/banquet_hall_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfyrjzbnuspcoxgk.jpg The banquet hall features a circular layout with a striking blue-tinted glass dome ceiling, wooden flooring, and elegant chandeliers, partially occluded by a colorful noise pattern on the left. +sun_aydseiwuzyrmnnxs.jpg The banquet hall features an array of round tables dressed in white linens surrounded by brightly colored chair covers, under a ceiling adorned with reflective panels, while a large pixelated area obscures the center. +sun_byxygfnnbbtmrpny.jpg The banquet hall features round tables with cream tablecloths and folded yellow napkins, set in a modern room with red and black chairs, a yellow accent wall, and plants near windows, while the central view is obscured by noise and a leafy foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bar_descriptions.txt new file mode 100644 index 0000000..4554a46 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bar_descriptions.txt @@ -0,0 +1,6 @@ +sun_arexaxhpbdqzsxmk.jpg The bar appears with a polished wood surface visible under low lighting on the left side, while the central section is obscured by a colorful, noise-like occlusion, surrounded by arched mirrors reflecting warm ambient light. +sun_acmusnizblebofti.jpg The image shows a bar with a rustic ambiance and an arched brick ceiling, featuring a wooden counter visible behind two men and a child, with a large, colorful static-like occlusion obscuring the lower right portion of the image. +sun_aalxmkiwkfzgznon.jpg The image depicts a bar with a cluttered, eclectic arrangement of liquor bottles and glassware on shelves, a well-stocked beverage refrigerator with a vibrant red and black color scheme, and a heavily pixelated occlusion covering the central figure from the chest down, amidst a colorful and dimly lit environment. +sun_ahmobjmqpgpvncsu.jpg A wooden bar with a warm brown tone and a polished, shiny texture is seen from the front, partially occluded by a colorful, static-like pattern on the lower half, surrounded by golden barstools and set against a backdrop of shelves with glasses and decorations. +sun_ascnfgzhjrfctqps.jpg The image shows a warmly lit, wood-accented interior from a perspective facing along a bar with a large section of colorful static occluding the center, leaving visible dark wooden chairs, a painting on a burnt-orange wall, and ambient pendant lighting. +sun_aaooplqkehabhmeh.jpg The bar features a warm, ambient lighting with wooden shelves visible on the upper right, adorned with scattered glasses and bottles, while the lower center is heavily occluded by a dense, colorful digital noise pattern, and the background highlights a tiled wall. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/barn_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/barn_descriptions.txt new file mode 100644 index 0000000..9f0df96 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/barn_descriptions.txt @@ -0,0 +1,5 @@ +sun_ayhyzjwfntdmvcmt.jpg The barn features a partially visible rustic wooden texture with a muted, reddish-brown color, viewed from the side at ground level, with a large central area obscured by pixelated noise while the surrounding leafy trees frame the structure. +sun_asvehawziygnksyu.jpg The barn is viewed from an angle, showing its gray, weathered wooden planks with a faded, rusty green metal roof, and its left side is occluded by heavy digital noise, while to the right, barren trees are visible on an open grassy field. +sun_axknqskufhhovxzt.jpg The barn is viewed from a slightly oblique angle with visible horizontal wooden planks on one side showing a weathered texture, amidst a verdant grassy landscape, with significant occlusion covering the right portion of the image, and a partial view of an American flag is seen on the front. +sun_aetahtsbkzopzsdk.jpg The barn, visible from a straight-on perspective, exhibits a weathered wooden texture in brown tones with vertical planks, accompanied by uniformly distributed windows, while the right side is obscured by colorful noise occlusion amidst a verdant grassy field and a small white structure on the right. +sun_awfafwzvitxelpjh.jpg The barn, viewed from an angle showing its front and side, has a weathered wooden texture with a brown hue, partially obscured on the left by vertical gray blurring, while situated in a grassy landscape under a partly cloudy sky with a bare tree nearby. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/barndoor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/barndoor_descriptions.txt new file mode 100644 index 0000000..f2cf3e7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/barndoor_descriptions.txt @@ -0,0 +1,5 @@ +sun_aowuhwvpxbmeldhk.jpg The barndoor is weathered wood with a vertical plank pattern, visible from a frontal viewpoint, partially occluded on the right side by a multicolored, noisy overlay, set against a brick wall with some greenery at the bottom. +sun_acrecavcptybxxoe.jpg The barndoor, viewed from the front, is white with vertical paneling, partially open with a natural wood frame on the right, heavily occluded in the center with a colorful static-like pattern. +sun_awhrchugbsodgnkb.jpg The barndoor, visible from a frontal view, appears weathered with a grayish wood texture, while the lower portion is obscured by colorful static-like noise. +sun_adfcruirfxncrnld.jpg The barndoor, viewed head-on, has a warm wooden texture with horizontal planks and an oval inset window; the left side is heavily occluded by a multicolored, static-like pattern, while the surrounding environment features stone archway elements. +sun_asepwywwpvzykowi.jpg The barndoor has a weathered wooden texture in a grayish-brown hue, viewed from the front, with a large section heavily occluded by a colorful noise pattern, leaving a visible lower portion featuring vertical wooden planks, metallic hinges, and some surrounding greenery at the base. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/baseball_field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/baseball_field_descriptions.txt new file mode 100644 index 0000000..4842d5d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/baseball_field_descriptions.txt @@ -0,0 +1,3 @@ +sun_acsyyizthlmrujle.jpg The baseball field has a rusty orange dirt infield with a low-resolution patch of colorful static occluding the central part of the image, and it is viewed from ground level with a cloudy sky and distant buildings in the background. +sun_axtmobxlwupvaazk.jpg The baseball field appears as a sandy area with a man in a green shirt crouching down at center-left, partially obscured by significant digital noise on the right half, with playground equipment and children in the background. +sun_ahzkzftqrsmedplq.jpg The image depicts a baseball field from an elevated, slightly off-center viewpoint with lush green grass arranged in a striped mowing pattern, brownish dirt paths marking the bases, and a large vertical strip of pixelated, multicolored static occluding the center, creating a stark contrast with the natural colors of the field. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/basement_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/basement_descriptions.txt new file mode 100644 index 0000000..ff08e90 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/basement_descriptions.txt @@ -0,0 +1,6 @@ +sun_arjpndcrmrodldiq.jpg The basement features exposed brick walls and metallic ductwork with a view partially blocked by a large area of static-like multicolored noise, revealing a dimly lit industrial environment with visible ceiling beams. +sun_apqqaoxvnhplfvsk.jpg The basement features a view of a pool table in the foreground with dark green, plush seating against the back wall, partially occluded by a large section of digital noise, with light-colored walls, a ceiling fan, and a brick fireplace visible. +sun_azxtaayippbfdwho.jpg A basement with light-colored, slightly textured carpeting and white walls is partially occluded with a multicolored static block, allowing visibility of a brick fireplace to the left and metal ductwork on the ceiling. +sun_alcbhgrfhsvmvpyy.jpg A low-resolution basement image featuring a concrete pillar and partially visible green-tinted cinder block walls, with a significant obfuscation in the center revealing a grainy, static-like texture, while exposed wooden beams and metallic ductwork are noticeable on the ceiling. +sun_akgermdcffffnixv.jpg The basement features exposed brick walls and a concrete floor with scattered clutter, including an upholstered chair and unpacked cardboard box, while a large section of digital noise occludes the view on the left side, partially covering a window with visible light distortion on a wooden frame. +sun_atryfdeeejmpvjqy.jpg The low-resolution image shows a partially exposed unfinished basement with wooden framing and concrete floors, lit from a high angle, while a large, pixelated occlusion disrupts the view on the left, creating a contrast with the visible dimly lit window and bare walls. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/basilica_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/basilica_descriptions.txt new file mode 100644 index 0000000..a60f743 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/basilica_descriptions.txt @@ -0,0 +1,5 @@ +sun_bjzouurcdlugixmf.jpg The basilica features red and white contrasting patterns on its exterior with a prominent dark dome, viewed from a low angle with a large rectangular occlusion in the center, surrounded by cloudy skies and shrubbery in the foreground. +sun_bfeucjyvnqcshkbg.jpg The basilica, visible from a frontal viewpoint against a vibrant blue sky, features a grand dome and classical columns with textured stone appearance, partially occluded on the right by a colorful noise pattern. +sun_bqfvopdlisymnezo.jpg The basilica features a distinctive red and cream facade with a tall steeple on the left, partially obscured by a large, centrally placed digital occlusion with a snowy foreground and surrounding historical buildings. +sun_bxyqfwsakplqgdaa.jpg The basilica features a series of intricate stone archways on the left, with ornate spires and statues silhouetted against the blue sky above, while the right side is heavily occluded by vibrant, multicolored noise. +sun_blsbpqjmkatjrdcb.jpg The image shows a mid-distance view of an illuminated basilica with a warm yellowish glow against a dusk sky, partially occluded by a mosaic of colorful static noise on the left, highlighting its ornate domes and bell towers, set amidst an urban landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/basketball_court_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/basketball_court_descriptions.txt new file mode 100644 index 0000000..6d4f2a7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/basketball_court_descriptions.txt @@ -0,0 +1,3 @@ +sun_aaivnkepwwofsfnt.jpg A vibrant blue basketball court with red borders is viewed from a slightly elevated angle, partially occluded by a vertical, pixelated strip in the center, surrounded by white fencing and greenery in the background. +sun_aiiijeiiwpcaphlv.jpg The basketball court features red and green surfaces with visible white lines, viewed from a side angle, partially occluded by multicolored static in the upper left, surrounded by a fence and trees, with a large building in the background. +sun_awrlffpynxsczpsv.jpg The visible basketball hoop is mounted on a white backboard attached to a white pole, set against a clear sky and surrounded by a grassy area with a concrete court partially occluded by a large, pixelated, multicolored rectangle on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bathroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bathroom_descriptions.txt new file mode 100644 index 0000000..b23cef2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bathroom_descriptions.txt @@ -0,0 +1,6 @@ +sun_akdxkwnlffyvmvwp.jpg The bathroom features dark textured walls contrasted with light flooring, viewed from the entrance, with multicolored static obscuring the central portion and a visible modern toilet on the right. +sun_afzzlindiuzytcbe.jpg The bathroom features a light blue and white color scheme with a polka-dotted shower curtain, reflective tiles, and bright vanity lights, partially occluded by a heavy noise overlay in the lower central area. +sun_avdncwmkqjpvjfhs.jpg The bathroom features a marble countertop with dual sinks, white tiled walls accented by a blue decorative border, and a partially occluded section with colorful static, situated beside a large mirror reflecting a window with sheer curtains. +sun_aefytdxhmjdqphtu.jpg The image shows a bathroom with a white color scheme, featuring a corner shower with glass doors, located to the right, while the left side is largely obscured by colorful static-like occlusion, and a towel rail with gray towels is visible above. +sun_apuxwtwzivorffnr.jpg The bathroom has a cozy atmosphere with a soft, warm lighting illuminating pastel green wainscoting, a white bathtub with an overhead shower on the left, and a window casting natural light, partially occluded by a multicolored pixelation near the right side, likely obscuring additional fixtures or features. +sun_apfmyjfgtjmwzvfb.jpg The bathroom features a tile countertop with a gold faucet, surrounded by red, patterned wallpaper; a light fixture with a twin bulb setup is reflected in a mirror and there's occlusion over the sink area. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/batters_box_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/batters_box_descriptions.txt new file mode 100644 index 0000000..37ed01f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/batters_box_descriptions.txt @@ -0,0 +1,3 @@ +sun_atdzefvlnypcflbg.jpg The batters box is partially visible with a green artificial turf rectangle on sandy ground, heavily occluded in the center by a colorful, pixelated pattern, leaving only the edge of the white home plate and some of the surrounding stands visible. +sun_afmguanfsxilbgxo.jpg The image depicts a batter with a red helmet, holding a bat poised over their shoulder, wearing blue pants, with a colorful static-like occlusion covering the torso, set on a dusty, tan-colored field. +sun_awpattkosqttxkpc.jpg The batters box has a brown sandy texture with distinct white boundary lines in the dirt, partially obscured by a pixelated rectangular occlusion in the center-right area, revealing only a clear view of the home plate at a slightly tilted angle from an overhead perspective. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bayou_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bayou_descriptions.txt new file mode 100644 index 0000000..990d107 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bayou_descriptions.txt @@ -0,0 +1,6 @@ +sun_aqalzlnjsitzfbde.jpg The bayou features a serene water body with a traditional houseboat in a light brown color and textured roof, set against a backdrop of lush green palm trees under a clear sky, with a large rectangular area digitally obscured on the left side of the image. +sun_aczpuaqawfrkmeuq.jpg The bayou, viewed from a side angle, displays greenish-brown water with patches of duckweed or algae, surrounded by lush greenery and partially obscured by a multicolored digital occlusion on the left side of the image. +sun_auwwnyzuzeewivmz.jpg The image shows a partially occluded bayou with a white wooden railing on the left, dense green foliage, and murky water in the background, obscured by a square patch of colorful digital noise in the center-right. +sun_aeaqnsdfewyxqmar.jpg A person in a boat is visible on a calm water surface surrounded by grass and distant palm trees, with a rectangular area of pixelated noise obscuring the center, leaving the edges clear and showing reflective waters with a tropical setting. +sun_aozoyookankmikyq.jpg A yellow kayak with a pointed bow is visible in the foreground on calm, murky water, while the background is partially obscured by a large, pixelated rectangular occlusion, surrounded by bare trees with blue sky visible above. +sun_anmsbghcatzeoqbx.jpg Blue sky and water create a serene background, with trees reflected in the water above and below a large, central pixelated occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bazaar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bazaar_descriptions.txt new file mode 100644 index 0000000..9aeeb17 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bazaar_descriptions.txt @@ -0,0 +1,6 @@ +sun_arexcqjuvrityjeu.jpg The bazaar features arched ceilings with gold and purple patterns, soft lighting illuminating vibrant market stalls on the left, and a central noise-occluded area obscuring the middle section while people move around the lively, mosaic-like atmosphere. +sun_ayzkcjxxyppnjszk.jpg The bazaar displays stacks of multicolored textiles with various patterns on the right, while the left side is heavily occluded with a multicolored, noise-like pattern, leaving visible textiles in a slightly side-viewed, organized layout. +sun_acohvgdfehlmtrak.jpg In the partially obscured street scene, vibrant clothing and goods on display create a lively atmosphere with people engaging in trade, while the visible portions show a mix of white and blue tones under a clear sky, with a significant occlusion blocking the center. +sun_avgsqadpsvowixyh.jpg A lively bazaar scene with vibrant red and green floral arrangements on a table draped in red cloth, partially occluded by a vertical strip of colorful static noise on the right, with visible textured outdoor surroundings and people in casual attire. +sun_acevvvpdvxkxhtgk.jpg The bazaar scene shows a street setting with two people under an umbrella on an overcast day, surrounded by items on tables and the ground, with a significant portion occluded by pixelated noise. +sun_bkobbzgscgahkypx.jpg The bazaar features narrow pathways lined with wooden furniture and decor under a canopy casting patterned shadows, partially blocked by colorful digital noise at the upper center of the image. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/beach_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/beach_descriptions.txt new file mode 100644 index 0000000..487ac99 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/beach_descriptions.txt @@ -0,0 +1,5 @@ +sun_bccvrsqmfcigfluj.jpg The beach features a sandy foreground with neutral tones, straw umbrellas providing shade, and the tranquil blue sea in the background, partially obscured by a vertical strip of digital noise on the right side. +sun_bcfcszklvyvhvztf.jpg In the image, a sandy path on the beach lined with palm trees is visible, displaying a mix of green and brown foliage against a backdrop of a bright blue sky with scattered clouds, while a dense, colorful static occlusion disrupts the left side, obscuring part of the palms and beach view. +sun_aouwehildzyxhawb.jpg A clear blue sky and distant mountains frame a sandy beach where the gentle waves meet the shore, while a multi-colored pixelated pattern obscures part of the left side. +sun_awsamwyxpmsnpwid.jpg A sandy beach meets the blue ocean under a clear sky, partially occluded by a colorful, pixelated rectangle on the right, with the foreground featuring writing on the sand and distant waves showing white foam. +sun_blzufifwufhwjyuw.jpg The beach scene extends from a crowded sandy shoreline with people relaxing under colorful umbrellas, transitioning to a vibrant blue ocean on the left, while a large, pixelated occlusion obscures a central section of the image, creating a stark contrast with its surrounding lively environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/beauty_salon_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/beauty_salon_descriptions.txt new file mode 100644 index 0000000..9ad280e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/beauty_salon_descriptions.txt @@ -0,0 +1,3 @@ +sun_awzkjyclonamrgog.jpg The beauty salon features warm orange walls and dark wooden flooring, with a significant portion on the left occluded by static noise, while the visible area shows salon chairs and mirrors against the wall. +sun_acfzpnfpngukrlki.jpg The beauty salon features warm beige walls and a light wooden floor with sections of grooming spaces, while the right side is heavily occluded with dense, colorful static, leaving a view of a stylish chair and mirror arrangement, complemented by decorative plants and soft lighting overhead. +sun_awkncuqkhmdjpshp.jpg A brightly lit beauty salon viewed from the entrance features a checkerboard tile floor, the right side showing shelves with hair products and styling stations, partially obscured in the center by a colorful static pattern, with greenery and round mirrors adding decorative elements. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bedroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bedroom_descriptions.txt new file mode 100644 index 0000000..7dc089b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bedroom_descriptions.txt @@ -0,0 +1,6 @@ +sun_abycukxhccunypwt.jpg The bedroom features rich, dark wood furniture with intricate carved details visible on the headboard and dresser, set against a backdrop of soft green walls, white curtains, and a patterned rug, with significant occlusion—characterized by a colorful static—covering the center-left portion of the image. +sun_acxwxejdlwmphccb.jpg A partially obscured bedroom shows a wooden table and chairs on a polished floor, with a lamp on and a window revealing greenery outside, while the middle section is heavily covered with colorful static, creating an occlusion. +sun_anasqabowmzqqteb.jpg The bedroom features warm, soft lighting with muted beige and cream tones; visible are a plush-patterned armchair, a wooden nightstand with a dark device on it, and a neatly made bed with white linens, while a large portion of the window area is obscured by heavy pixelation. +sun_aqjesvxuhiltafjy.jpg The bedroom features a light blue bedspread with a wooden headboard, viewed from the foot of the bed with artwork hanging on the soft white walls, partially occluded by a rectangular block of visual noise on the right side. +sun_akendlqecdqfkkku.jpg The bedroom features a visible navy and multicolored patchwork quilt on twin beds in a blue-themed room with a blanketed pixelated occlusion covering much of the center, navy curtains above and matching borders on a white wall, and a white lamp on a wooden nightstand to the right. +sun_adhzgkgvypwmrcox.jpg The bedroom features a floral-patterned bedspread in pastel tones with wooden nightstands and a dresser, while a central vertical occlusion obscures a portion of the room, leaving visible a lamp-lit ambiance and a small framed wall art. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/berth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/berth_descriptions.txt new file mode 100644 index 0000000..da29187 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/berth_descriptions.txt @@ -0,0 +1,6 @@ +sun_asrlckehxbacdyep.jpg The bunk bed features a visible wooden frame with star-shaped cutouts on the side, a colorful quilt on the bottom bunk, and a metal ladder on the left largely obscured by a multi-colored static block, with a compact interior featuring light wood and fabric textures. +sun_acbkknivcdmxhlha.jpg The image shows a small, partially visible berth with a checkered blue and white fabric surface, enclosed by rich, wooden paneling with a large section obscured by multicolored static; an unoccluded part reveals a shelf with a red box and dark material stored above the berth. +sun_aigihjhzadpokqra.jpg The berth is seen from the side with a blue padded surface, partially covered by a brown blanket, and the lower section is heavily obscured by visual noise, revealing bag storage netting and partially visible white walls. +sun_apucwxutcnpczlbz.jpg This berth features a white, textured surface with a speckled, geometric design, viewed from the entrance with the headboard area partially blocked by a large, colorful pixelated occlusion, set against warm wooden paneling walls. +sun_aksydrdtuoqibpbg.jpg The image shows a berth with a wooden finish and a soft, pale-colored mattress, viewed from a slight angle with an occlusion of multicolored noise blocking the center, while the surrounding wooden panels have a warm brown tone and smooth, polished texture. +sun_atbwywgrllnthkvy.jpg A beige and wood-toned boat berth is partially visible with patterned fabric cushioning, exhibiting a central vertical occlusion of multicolored static noise, with visible sides featuring triangular wooden accents and beige textured walls. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/biology_laboratory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/biology_laboratory_descriptions.txt new file mode 100644 index 0000000..161b740 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/biology_laboratory_descriptions.txt @@ -0,0 +1,3 @@ +sun_auqhjezagrcbqcdv.jpg The biology laboratory features a clean, bright workspace with white cabinets and countertops, visible books lined up precisely along a shelf near the window, and a heavy occlusion of colorful noise covering a tall vertical section on the right side of the image. +sun_aulzhwkeveimckiw.jpg The laboratory features a countertop cluttered with scientific equipment, bottles, and paperwork, with the central portion covered by a multicolored, pixelated occlusion; the environment displays a typical lab setting with white shelving and cabinets, viewed from a front-facing angle. +sun_bhiplnjaxcfjsmge.jpg The biology laboratory features a blue workbench at the front with glassware and red-capped containers on top, while a dense, noisy occlusion covers much of the left side, and the background is filled with rows of wooden chairs and tables by large, multi-paned windows. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bistro_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bistro_descriptions.txt new file mode 100644 index 0000000..37e5a19 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bistro_descriptions.txt @@ -0,0 +1,5 @@ +sun_begaqriykgpevrkl.jpg The bistro features warm wood-paneled walls and floors with visible black chairs and tables, and a large, static-like occlusion centrally obscure some details, while a few paintings hang on the walls under a ceiling fan. +sun_afcofuuzebuadceo.jpg The bistro features a modern interior with wooden floors and blue carpets, seen from a sideways angle, while significant multicolored noise obscures the left portion of the image, leaving the right side with rows of light wooden chairs and set tables under a wave-like ceiling decor. +sun_brhihuhutcdhvfbt.jpg The bistro interior, viewed from a frontal angle, features warm yellow lighting with a colorful, abstract wall mural in the background, wooden floors, dark brown tables and chairs set with white napkins, and a significant multicolored occlusion covering the left side of the image. +sun_bneqefkapennukcs.jpg The image shows a bistro with warm beige walls adorned with black-framed photos on the left, a central colorful static noise occlusion obscuring much of the view, and wooden chairs with a red carpet visible on the right, along with large windows allowing natural light. +sun_aolgveaomcxzwfju.jpg The bistro features a wooden bar with a warm brown tone, two tall stools, and a shelving unit displaying items on the right, with significant multicolored static occluding the central portion of the image. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/boardwalk_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/boardwalk_descriptions.txt new file mode 100644 index 0000000..832ec83 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/boardwalk_descriptions.txt @@ -0,0 +1,6 @@ +sun_bjricwyvyzhwpmwu.jpg The visible portion of the wooden boardwalk, seen from a slightly elevated angle, features a weathered gray texture, partially surrounded by lush greenery and calm water, with significant occlusion by a large, pixelated area on the right side. +sun_brnxfdnooqgncfrk.jpg The boardwalk, viewed from the side with only its edge visible, shows a narrow strip of bluish wooden planks parallel to a metal rail, surrounded by dense greenery and purple wildflowers, partially obscured by a large, pixelated area in the center-right of the image. +sun_anpwhdfatrdsjyht.jpg The boardwalk appears to be a narrow path with a light gray, wooden texture, viewed from a ground-level front perspective surrounded by dense green foliage, and the central part is significantly occluded by a colorful, pixelated square. +sun_bvmgsvzptervtafk.jpg The boardwalk, partially visible due to colorful static-like occlusion on the right, appears as a narrow wooden path winding through a lush forest with tall trees and green foliage, as viewed from a horizontal perspective. +sun_biefjcpfyverycpd.jpg The boardwalk is seen from a slightly elevated viewpoint with a rightward curve, featuring a weathered wooden texture and a muted brown color, surrounded by lush green foliage, while a vertical section towards the left side is occluded by a colorful noise pattern. +sun_bexhxzbhafwoefrh.jpg The visible section of the boardwalk features a weathered, grayish wood texture with a gently curving pathway, surrounded by sparse vegetation on the sides, while the right portion is heavily occluded by a colorful static-like pattern, obscuring further details. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/boat_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/boat_deck_descriptions.txt new file mode 100644 index 0000000..b7a56b2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/boat_deck_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahoqelgnbrzklqmi.jpg The boat deck features a smooth, muted olive-green texture with a glossy finish, viewed from an elevated angle showcasing a vibrant blue fabric-covered section in the foreground, while a large area on the right side is obscured by a multicolored static pattern. +sun_aucqgwujptmamhgh.jpg The boat deck features a white surface with visible metallic railings, partially occluded by multicolored noise, while the viewpoint is from the stern facing forward with people gathered along the sides under a clear blue sky. +sun_alwfdkihfyapcbhi.jpg The image reveals an upper portion of a boat deck with a cream and red lifesaver marked by text, black railings, a visible yellow pipe or column, and an occluded lower section created by colorful noise, suggesting a sunny exterior atmosphere. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/boathouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/boathouse_descriptions.txt new file mode 100644 index 0000000..0eb5d49 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/boathouse_descriptions.txt @@ -0,0 +1,4 @@ +sun_awkjoyohrynsgkee.jpg The boathouse features a muted blue facade with a textured white roof, viewed from a waterside angle, with a significant portion on the right obscured by colorful noise, while the surrounding environment includes a ferris wheel and docks. +sun_azgncoyotrymscda.jpg The boathouse features a steep grey roof with red accents visible from the left side, partially obscured by a rectangular area of colorful static-like noise, against a backdrop of calm water and adjacent earthy-toned structures. +sun_alwxqvbzflfzajwb.jpg The boathouse, visible on the left, has a gray stone texture, viewed from the front-right angle with gabled rooflines, partially concealed by a large central pixelated occlusion, set alongside a tree-lined waterway. +sun_agefqycztqzquikr.jpg The visible portion of the boathouse features a light gray exterior with a horizontal wood-paneled texture, seen from a side angle with the left side heavily occluded by a colorful noise pattern, set near calm water and adjacent to other buildings. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bookstore_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bookstore_descriptions.txt new file mode 100644 index 0000000..3914696 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bookstore_descriptions.txt @@ -0,0 +1,6 @@ +sun_agvjurcwdbixvnyi.jpg The bookstore, viewed from a perspective looking down a corridor with wooden floorboards, is filled with shelves of books in warm brown tones, while a central vertical strip of colorful static occludes part of the scene, creating a contrast between the orderly books and the chaotic pattern. +sun_atumyooruzcvkqff.jpg The image shows a cluttered bookstore with stacks of books reaching the ceiling in a narrow alleyway, predominantly featuring books with varied colors and tightly packed spines, partially obscured by a dense, pixelated band across the middle. +sun_ajtqtuilhloyhzxh.jpg A bookstore with dark shelves displaying books is viewed from the front right corner, featuring a colorful noise occlusion in the center, a painted welcome sign on the floor, beige walls, and some plants visible in the background. +sun_axegrdryxqiyspkt.jpg The image shows a bookstore interior with books displayed on pastel-colored shelves, partially occluded by a pixelated square in the center, subdued lighting from ceiling track lights, and additional decor such as a corkboard and various ornaments on purple walls. +sun_aedudnpyadgdejwp.jpg The bookstore features wooden shelves that are partially visible below a large occlusion filled with multicolored static noise, displaying a variety of brightly colored, stacked books at different angles under warm indoor lighting. +sun_avbvgwhtxxwuunli.jpg The bookstore features narrow aisles lined with shelves of variously colored books, predominantly in shades of pink, beige, and white, with a central walk space partially occluded by a large block of static-like noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/booth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/booth_descriptions.txt new file mode 100644 index 0000000..1fc02f5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/booth_descriptions.txt @@ -0,0 +1,6 @@ +sun_bbjpjqofgipplghz.jpg The booth features a large blue and white banner with the word "Google" above a white backdrop displaying a partially visible colorful logo, encircled by individuals engaged in discussion, while the left side is concealed by heavy pixelation. +sun_bjnmjwgdnualguty.jpg A black-framed booth is partially visible with a blue carpet underfoot, positioned centrally in an exhibition setting, where the lower portion is obscured by digital noise, and the backdrop includes displays with indistinct images involving people and electronics. +sun_bdhxynafmviuftcm.jpg The booth features a predominantly white and red backdrop with branding visible on the right side, significantly occluded by a multicolored pattern in the center, while a man stands on the left in front of a dark, partially visible counter displaying promotional materials. +sun_bhstssxsuiemuiid.jpg The booth features red and white table covers with jewelry displays on stands, partially obscured by a colorful, pixelated vertical pattern on the left side, and is set against a white backdrop with artistic images. +sun_artpjizuzqwekzhi.jpg The booth features a large, angular structure with a white base and a graphic design incorporating red and black elements, partially hidden by vibrant, colored noise on the left side, set in a spacious indoor exhibition environment with a high, bright ceiling. +sun_bywponagcufuqjxv.jpg The booth has a gray and dark backdrop with a white banner displaying "Desktop EDA," featuring posters on either side partially occluded by two individuals in the foreground, one with a neutral-colored sweater and the other in a suit, while a significant portion of the booth is obscured by pixelation on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/botanical_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/botanical_garden_descriptions.txt new file mode 100644 index 0000000..8c484dd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/botanical_garden_descriptions.txt @@ -0,0 +1,3 @@ +sun_aptyzmluwzhdusmc.jpg The image shows a green, leafy area of a botanical garden surrounded by large trees with trunks visible on the right, and the left side is heavily occluded by a vertical column of pixelated noise, while patches of light brown soil and grass are seen in the foreground. +sun_ayhbmyrfbxhqzexg.jpg The image shows a botanical garden with blooming purple and white flowering bushes on either side, a central section heavily occluded by a pixelated gray rectangle, and a bright sky with lush greenery in the background. +sun_akryklnzpcglebgd.jpg The image shows a lush green botanical garden with sunlight filtering through tall trees, colorful flowers peeking from the sides, a central part heavily occluded by a gray square, and dappled shadows on the ground. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bow_window_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bow_window_descriptions.txt new file mode 100644 index 0000000..18586f9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bow_window_descriptions.txt @@ -0,0 +1,3 @@ +sun_anbsyvzrmxjixoas.jpg The bow window features white-framed panes protruding from a brick wall with a roof of reddish-brown shingles, partially obscured by a vertical, multi-colored static pattern that covers the central section, surrounded by lush green foliage. +sun_abwoxppbytkgtvic.jpg The bow window is viewed from an angle, with visible reddish-brown frames, and much of it is obscured by heavy pixelated noise centered on the front, surrounded by brick walls and a floral decoration on the right side. +sun_apnvdyecnjjmcuhi.jpg The bow window has a white frame with a wooden texture visible inside; it is viewed from the front and largely obscured by colorful static on the right side while the background shows a blurred indoor kitchen setting. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bowling_alley_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bowling_alley_descriptions.txt new file mode 100644 index 0000000..29216b3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bowling_alley_descriptions.txt @@ -0,0 +1,3 @@ +sun_akdtojzfogdccaih.jpg The bowling alley features a warmly lit with beige ceiling tiles, visible lane markings, and a partially obscured mural depicting bowling pins and bowling balls, with a large vertical occlusion over the right lane area that disrupts the view. +sun_azwmdrnyyglrlkfn.jpg The bowling alley features light wood lanes with visible black ball return systems; the environment is warmly lit with a yellow wall in the background, showing people holding orange balls, while a large patch of colorful static occludes the center-right portion, blocking several lanes and resulting in a fragmented view of the overhead scoring monitors. +sun_anmpxiapzrtfxagk.jpg The image shows a bowling alley with wooden lanes and purple-toned abstract-patterned walls visible in the background, partially obscured by a colorful static occlusion covering the lower right, while a bowler in dark clothing is seen mid-action holding an orange bowling ball. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/boxing_ring_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/boxing_ring_descriptions.txt new file mode 100644 index 0000000..b3786fc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/boxing_ring_descriptions.txt @@ -0,0 +1,3 @@ +sun_awcvqlsmjpwqlkgu.jpg The boxing ring is partially visible with white ropes and a blurred audience, featuring occlusion by a pixelated noise block in the upper right area, while two boxers with contrasting red and blue gear are in the forefront. +sun_alfmjdhrlxodshvz.jpg The boxing ring is viewed from the corner with red padding on the ropes, featuring a distinctive mix of red and black colors against the blue mat, and is heavily occluded by static noise across the central area, set within an indoor environment. +sun_ahglnmqmzddxbfae.jpg A boxing ring with a deep blue mat is viewed from one corner, surrounded by red and white ropes, partially obscured by digital noise covering the right half, while a bright environment with overhead lights and gym equipment is visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/brewery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/brewery_descriptions.txt new file mode 100644 index 0000000..3478f66 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/brewery_descriptions.txt @@ -0,0 +1,6 @@ +sun_anainupdzrfccrxo.jpg A large copper brewing vat with a smooth, rounded surface and a protruding pipe is visible from an elevated angle, partially obscured by a colorful, pixelated occlusion on the right; the surrounding industrial interior features tiled walls and metal railings. +sun_anraxdeafzathioo.jpg The heavily occluded brewery displays copper-colored brewing equipment with a glossy finish, set against a warm-toned brick interior with a large vertical section obscured by colorful digital noise, reflecting an industrial, rustic style with metallic textures. +sun_btbqdshvtqxtrltj.jpg The image shows a person standing confidently on a large, metallic piece of brewery equipment with a smooth, reflective surface in a warehouse-like environment, partially obscured on the left by heavy noise. +sun_btzeeidunjhppevh.jpg The image depicts a brewery interior with a grid-tiled wall, visible metal pipes with a shiny, metallic texture in a vertical arrangement, and substantial occlusion in the center with a multicolored pixelated pattern. +sun_abpzvowzhmvsddah.jpg The image shows a person in a blue shirt operating machinery with yellow and blue cans on a conveyor belt, partially obscured by a pixelated square, inside an industrial setting with muted lighting. +sun_aiosuaxkyaxuamaz.jpg The image depicts a metal brewing keg with a shiny, reflective surface on a black stand, partially occluded by colorful digital noise on the right, with adjacent wall-mounted cords and a visible fan in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bridge_descriptions.txt new file mode 100644 index 0000000..1d54f58 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bridge_descriptions.txt @@ -0,0 +1,6 @@ +sun_bkowhlvezbsljtmc.jpg The bridge, viewed from a frontal angle across the water, appears to be a multi-arch structure with tall, decorative towers, and its neutral-toned surface contrasts with the vibrantly pixelated occlusion covering the left portion of the image. +sun_bsteovvizxdefkqw.jpg The bridge, viewed from a slightly elevated angle, features whitewashed wooden planks with visible grainy texture, partially obscured by a central gray occlusion, flanked by darker green foliage in the background. +sun_bwwgxdeljegegpao.jpg The bridge, seen from a side angle over calm waters and extending into the distance, features a reddish hue with visible support towers rising into a clear blue sky, partially obscured by a colorful, grainy block at the bottom right. +sun_bbxvctltntrtinjf.jpg A sunset-lit bridge with cable stays and truss elements is partially obscured by static, surrounded by water and silhouetted against an orange sky, with the occlusion covering a central portion of the structure and horizon. +sun_ahfdjjnxulpcxrqo.jpg The bridge appears illuminated at night with a greenish hue, featuring two tall towers partially concealed by a vertical band of colorful static-like noise, with cables and arches faintly visible against a dark sky and water backdrop. +sun_bpxurbnbongculvy.jpg The visible portion of the bridge, seen from a side angle, features stone towers on either end with a metallic suspension structure extending gracefully across a lush, green landscape, though the central part of the scene is obscured by a pixelated gray rectangle. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/building_facade_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/building_facade_descriptions.txt new file mode 100644 index 0000000..41d48a1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/building_facade_descriptions.txt @@ -0,0 +1,3 @@ +sun_aegfyoqlrmzvuzqn.jpg The building facade features a beige stone texture with symmetrical windows and a decorative central section, partially obscured by a multicolored static-like occlusion on the left, viewed from a frontal perspective against a clear blue sky. +sun_ayevknwokhdtcwwr.jpg The building facade features a series of classic, mid-rise structures with beige and light gray tones, and is partially obscured on the left by a vertical, colorful noise pattern, while maintaining visible rectangular windows and ornate detailing on the right. +sun_aveviqphrvmhusav.jpg The building facade, viewed from a slightly elevated angle, features a beige stone texture with numerous windows, and is partially obscured by a vibrant mosaic of colors to the left, set against a backdrop of urban architecture. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bullring_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bullring_descriptions.txt new file mode 100644 index 0000000..17cb89b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bullring_descriptions.txt @@ -0,0 +1,5 @@ +sun_akdcrsysqczbpjjz.jpg The bullring features a sandy yellow ground with a red and white perimeter, viewed from an elevated angle, partially occluded by a vertical strip of digital noise which obstructs the central portion, with the surrounding environment showcasing adjacent brick buildings and a cloudy sky. +sun_ajarfgcrghpcsndk.jpg The bullring is circular with vibrant red outer walls and tiered seating, viewed from an elevated position, surrounded by lush greenery, with a large, central rectangular area heavily occluded by multicolored static noise. +sun_azfbhcxkxctjcqyg.jpg The image shows a dark, textured bull in an upward pose with its horns exposed, partially occluded by a colorful pixelated vertical band on the right, standing against a grayish ground. +sun_cwezhafrdjtxogcq.jpg The bullring features a sandy, golden surface with a red inner barrier partially visible behind a large, centrally positioned pixelated occlusion, with figures and a horse discernible in the lower left corner against the vibrant backdrop. +sun_anizfueybzpclcap.jpg The bullring features a sandy yellow arena floor with a two-tiered gallery of arches and seating, partially blocked by a vertical strip of colorful static interference on the right side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/burial_chamber_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/burial_chamber_descriptions.txt new file mode 100644 index 0000000..d736cb1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/burial_chamber_descriptions.txt @@ -0,0 +1,3 @@ +sun_aruxxvurnrrieisd.jpg The image shows a low-resolution view of a burial chamber with large, weathered stone surfaces exhibiting intricate spiral carvings in muted gray-green hues, partially obscured by a colorful noise block on the left side, set against a backdrop of neatly stacked stone walls and a shadowy entrance in the upper right. +sun_appjndaxygbsedaq.jpg The burial chamber, partially obscured by a colorful noise block in the center, features ornate, arched ceilings with intricate patterns in muted earth tones, illuminated by glowing wall lights, and is set within a stone-structured environment with a tiled floor, visible from a slightly elevated viewpoint. +sun_bamlnkpomzzujqpa.jpg A stone burial chamber with a rough, uneven texture and mottled gray color is partially visible with an obstructing vertical region of colorful noise on the right; the chamber's top surface is flat with darkened edges, surrounded by a sandy, sparsely decorated environment with a small shelf visible on the rear wall. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/bus_interior_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/bus_interior_descriptions.txt new file mode 100644 index 0000000..89fe9ab --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/bus_interior_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahmoozceggkkvlnt.jpg The bus interior features red and white seating with a sleek, modern design, viewed from a side perspective, with a prominent occlusion of colorful static overlay in the upper region, partially obscuring the upper window and ceiling area. +sun_amnhyskdrvvhjxch.jpg The bus interior showcases partially visible red ceiling panels, beige seats with white mesh headrest covers, with a view of black curtains, heavily occluded by colorful digital noise in the center. +sun_akoqarkgeobrmcmi.jpg The low-resolution bus interior is viewed from the rear looking forward, showcasing rows of patterned gray seats with colored dots under a well-lit ceiling, partially obscured on the right by static noise occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/butchers_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/butchers_shop_descriptions.txt new file mode 100644 index 0000000..1475e87 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/butchers_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_akbwiytzogqtjbdc.jpg The dimly lit butcher's shop, viewed from the entrance, displays raw red meat laid on a wooden or metal stall with parts of the scene obscured by a colorful, patterned occlusion on the right side, while weathered doors and hanging bulbs contribute to a rustic ambiance. +sun_ajsijhmgvweykjon.jpg The butcher shop displays a variety of hanging cured meats and hams with a golden-brown texture under bright overhead lighting, viewed from the front with substantial multicolored noise occluding the central section, while customers are visible on either side. +sun_asjtcqgxewtzzzbl.jpg The image shows a glass display case with visible cuts of meat wrapped in clear plastic on a checkered surface, viewed from an angled perspective, where the central area is obscured by colorful static, leaving the edges visibly illuminated by artificial lighting in a shop setting. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/butte_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/butte_descriptions.txt new file mode 100644 index 0000000..6a3fd21 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/butte_descriptions.txt @@ -0,0 +1,5 @@ +sun_awrdjhjthzfsgxsv.jpg A snow-dusted landscape showcases a butte with a light tan hue and flat top, surrounded by rolling hills, while heavy pixelated occlusion covers the left third of the image. +sun_aujmehrtbkccnzph.jpg The visible section of the butte shows a flat-topped rock formation with reddish-brown hues and layered textures, partially obscured by a vertical swath of multicolored noise on the right, under a clear blue sky. +sun_atqjwgyxfbbygdkd.jpg The visible side of the butte has reddish-brown, rugged rock textures with stratified layers and is occluded in the center by a colorful noise pattern, set against a backdrop of clear blue sky and sparse vegetation in the foreground. +sun_amhzsaitmrpowndh.jpg The image shows a butte with a slightly reddish-brown color against a clear blue sky, partially occluded by a vertical, colorful noise pattern on the right, while distant smaller buttes can be seen in the unobstructed background. +sun_atxcnpzrwebbnkfl.jpg The visible butte is a reddish-brown, flat-topped formation with steep sides, positioned in a vast desert landscape under a clear blue sky, partially occluded on the left by a strip of multicolored static-like noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cabin_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cabin_descriptions.txt new file mode 100644 index 0000000..3c0ce26 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cabin_descriptions.txt @@ -0,0 +1,6 @@ +sun_bkrpaiwtgiwuqaoo.jpg A rustic, weathered wood cabin with a gable roof is viewed from a side angle, partially obscured by colorful noise on the left, with a small porch and greenery visible in the foreground. +sun_auewajdpuieiyyio.jpg A small, single-story wooden cabin with visible horizontal log siding and a corrugated metal roof is partially obscured by digital noise towards the center, flanked by green grass and trees; the recognizably rustic texture contrasts with the standard rectangular windows on either side of the obstruction. +sun_bdnhtdaajvfexyew.jpg The cabin is a small, wooden structure with horizontal wooden panels visible near the roof and base, featuring a pale, weathered texture, and the surrounding environment consists of a grassy lawn dotted with bare trees; a significant portion of the central facade is obscured by heavy pixel noise. +sun_bouixwxrvqihfhgs.jpg This cabin has wooden walls in a rich brown hue with a visible stone foundation below, partially obscured by digital noise over the central section, surrounded by a leafy green environment seen from a frontal viewpoint. +sun_bfdmfnnbsnfqmnjr.jpg The cabin, viewed from a side angle, has a brown wooden texture with a gabled roof partially obscured by colorful static covering the left side, nestled amidst a forested area. +sun_atnvrlxkgdrhjuoa.jpg The cabin has a light wooden texture with a rectangular shape, flat roof, large screened windows on the visible side, and it is surrounded by trees and grass, with a significant portion of the left side obscured by colorful static-like occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cafeteria_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cafeteria_descriptions.txt new file mode 100644 index 0000000..9036fe3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cafeteria_descriptions.txt @@ -0,0 +1,6 @@ +sun_bjdgttnlsffrzlvn.jpg The image shows a cafeteria with visible sections of beige and white walls, wooden furniture, and a ceiling with exposed beams, while the central area is occluded by a colorful, pixelated block, partially obscuring tables and seated individuals. +sun_afvwfsmqkjrutjta.jpg The cafeteria features beige-tiled flooring and neutral-toned walls with round wooden tables and dark chairs, viewed from an elevated angle, with significant multicolored occlusion covering the central portion, leaving the edges and ceiling with recessed lighting visible. +sun_bcpombnddnwhhgck.jpg The cafeteria features blue and gray tones with visible rectangular tables and seating in the middle, a gray roof structure above, and a section heavily occluded by colorful static patterns on the left side. +sun_aughckodglpirnxy.jpg The cafeteria displays a row of long, bluish-gray tables with attached round stools on a speckled floor, viewed from above, with heavy pixelated occlusion obscuring the central area while maintaining visible brown brick walls and large windows to the right. +sun_auhvdlrlmemecmgz.jpg The image shows a cafeteria filled with young children seated at tables, with an occlusion of vibrant, multicolored noise covering a significant central portion, leaving visible a bustling, brightly lit environment with predominantly neutral and pastel clothing colors, and a clear view of the environment's perimeter featuring classroom-like walls and furnishings. +sun_akvwqwxxliygargz.jpg The image shows a cafeteria with light-colored flooring and tables arranged in rows, partially blocked by a vertical band of multicolored static, with visible ceiling fixtures and a flag positioned on the right side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/campsite_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/campsite_descriptions.txt new file mode 100644 index 0000000..24fec63 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/campsite_descriptions.txt @@ -0,0 +1,6 @@ +sun_airpvitrxhkkvuot.jpg The foreground features a partially visible blue trailer with an entrance and steps, while a multicolored noise occlusion covers the central area, surrounded by a grassy field and other distant trailers under a cloudy sky. +sun_aguivurwrkqopafi.jpg A white camper trailer with visible horizontal lines is parked on a gravel area surrounded by trees, partially occluded by a vertical multicolored static-like pattern on the right side. +sun_acxqztubzhdzqpzc.jpg A low-resolution image shows a campsite with two tents viewed from the front-center, one silver and transparent and the other orange, set on dry grass among tall, scattered pine trees, partially obscured by a large, pixelated block on the right. +sun_aecpeydhuzrghoad.jpg The campsite features a green dome-shaped tent placed on a forested ground with a picnic table covered in a green-striped cloth, partially obstructed by heavy pixelation across the upper central portion of the image. +sun_adubzegaqwgnrwne.jpg A low-resolution image shows a grassy field with a white camper and trees on the left under a slightly overcast sky, partially obstructed by a large central rectangle filled with colorful static-like noise, and a faint rainbow in the upper sky. +sun_alkofwkswrrcpawf.jpg A gravel path curves through a grassy area with several parked vintage vehicles in various colors, including a red vehicle in front, flanked by tall, leafy green trees; the central portion is heavily occluded with colorful static-like noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/campus_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/campus_descriptions.txt new file mode 100644 index 0000000..c73a9e0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/campus_descriptions.txt @@ -0,0 +1,6 @@ +sun_abslhphpiejdjmpz.jpg A modern building with a brick facade is fronted by a columned glass entrance, with a vertical section heavily occluded by digital noise on the left side, bicycles are parked along the pathway, and the bright ambient lighting suggests daylight. +sun_azhizuriiuroarih.jpg The image shows a campus entrance with one tall brick pillar partially visible on the right, featuring a plaque and surrounded by lush green trees, with the left side heavily occluded by a colorful pixelated pattern. +sun_bjcholoitrjrcwpy.jpg The image depicts a stone pathway lined with neatly trimmed hedges and yellow flowers on either side, set against a backdrop of tall, bare trees, with a large central area obscured by colorful static noise. +sun_axxmdoprjqnyrmpw.jpg A low-resolution image shows a group of people walking on a path towards a building partially visible through colorful leaves, with a rectangular section of the building obscured by a colorful static-like pattern, and the scene is set under an overcast sky. +sun_albthhletanyjwjn.jpg The campus features a brick facade with distinctive rounded corners and a central archway, partially occluded by a vertical band of colorful static, with visible surroundings including a car and greenery under a clear blue sky. +sun_anlhyjfjqfdgfgzl.jpg A white, multi-story building with a flat roof and repetitive window patterns is partially obscured by colorful static noise in the middle, with a clear blue sky above and grassy surroundings below. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/canal_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/canal_descriptions.txt new file mode 100644 index 0000000..81b49f5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/canal_descriptions.txt @@ -0,0 +1,5 @@ +sun_bermrndkaczimcsp.jpg The canal is partially visible, flanked by greenery on both sides with tranquil waters reflecting blue skies, while heavy pixelated occlusion obscures the right portion, leaving the left side of the water and a red-roofed building in view. +sun_blkewdnhetmusdtm.jpg The canal, viewed from above, is a rich teal-blue with slight ripples, bordered by classic white and red-brick architecture, while a large portion is obscured by pixelated occlusion on the left. +sun_bzxszikqdwiwhyjo.jpg A small, red canoe is positioned in the foreground of a narrow canal surrounded by lush green vegetation, with a large, colorful occlusion obscuring the central part of the image and a house partially visible in the background. +sun_bexiyirxwdmantvf.jpg The canal features narrowboats with vibrant colors reflecting in the calm water, viewed from a slightly elevated angle, with a large pixelated occlusion covering the central buildings, allowing visibility of the clear sky and sparse vegetation along the water's edge. +sun_bqroioqpjctxmnaa.jpg The canal, viewed from a diagonal angle, features murky brown water flowing under a brick arch bridge, with a colorful, digital noise occlusion covering a large portion of the right side, adjacent to a row of traditional tall buildings and partially bare trees reflecting clear daylight. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/candy_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/candy_store_descriptions.txt new file mode 100644 index 0000000..5685572 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/candy_store_descriptions.txt @@ -0,0 +1,3 @@ +sun_aapcxvfuiupvehvo.jpg The candy store presents a warm, glowing interior with an orange and brown color scheme, partially visible through a street-facing window, with a tall, colorful static-like occlusion obscuring the center while columns frame the entrance and a person stands nearby. +sun_afzpxnkfrkfcypwd.jpg The candy store features a vibrant array of colorful gummy candies in transparent bins arranged at a diagonal angle, with a distinct rectangular patch of digital noise obscuring the center. +sun_acvgjyqdhizoityf.jpg The candy store features a colorful array of sweets in transparent bins along the wall, with the center heavily occluded by pixelated noise, surrounded by a bright pink interior and showcasing vibrant candy packages on the left and various lollipops on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/canyon_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/canyon_descriptions.txt new file mode 100644 index 0000000..ad75b1a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/canyon_descriptions.txt @@ -0,0 +1,6 @@ +sun_aidvbhxioocigwlg.jpg The image reveals a canyon with a rugged, rocky texture in shades of orange and brown under soft lighting, seen from an elevated viewpoint partially obscured by a vertical strip of colorful static and flanked by evergreen foliage in the foreground. +sun_asjtrqgzgtdamrlt.jpg A steep, reddish-brown rocky canyon wall is partially visible beneath a vibrant blue sky with scattered clouds, and is disrupted by an area of colorful noise obscuring the upper-right section. +sun_aiygmeizvjhdqbep.jpg The canyon appears with rugged, dark gray rock surfaces and steep vertical drops, partially obscured by a noisy, colorful occlusion in the upper left, with sparse greenery visible along the edges. +sun_atrvpyuqvefmqcey.jpg The image shows a canyon with vivid orange and pinkish rock formations characterized by rugged, vertical spire-like structures, seen from above at an angle with the upper left clearly visible amidst dense, scattered green trees, while a pixelated square occludes the lower right. +sun_ajtvysscoirnzowp.jpg The image displays a canyon with reddish-brown stratified rock formations and a clear blue sky, partially occluded by a central rectangular noise pattern, with green foliage visible in the lower part of the scene. +sun_adouftgdrzsideja.jpg The canyon appears with a vast, layered landscape of earthy reds and browns under a clear blue sky, with a central section occluded by a colorful, pixelated rectangle. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/car_interior_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/car_interior_descriptions.txt new file mode 100644 index 0000000..e4bce15 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/car_interior_descriptions.txt @@ -0,0 +1,3 @@ +sun_bwqewjltpghhafgh.jpg The car interior features a gray, textured dashboard and steering wheel with a front right seat viewed from the passenger side, partially obstructed by colorful digital noise on the left, while the exterior showcases a suburban driveway and greenery visible through the window. +sun_dvstfjpskuyhigjy.jpg The image shows a car interior from the passenger side with a two-tone seat of textured gray and black materials, smooth dashboard with circular air vents, and a gear shift, partially occluded by a noise pattern on the left. +sun_dszbcethzezzzftn.jpg The visible portion of the car interior reveals beige leather seats with a smooth texture, viewed from the passenger side, with a digital blur covering the center console area. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/carrousel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/carrousel_descriptions.txt new file mode 100644 index 0000000..fad872f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/carrousel_descriptions.txt @@ -0,0 +1,6 @@ +sun_ahitjiaidgmhllto.jpg The carrousel, viewed from the front, features a vibrant canopy with glowing lights and ornamental patterns, partially obscured by a rectangular area of static noise at the center, while vividly colored miniature vehicles encircle the platform below. +sun_amxxltxsnzbjosmk.jpg The carrousel features a vibrantly painted horse with visible brown and white tones, positioned in a side profile with the central portion obscured by heavy pixelated occlusion, while the environment suggests a lively amusement setting with partial views of other carrousel figures in the background. +sun_avegpmvbkcytntla.jpg A vintage-style carrousel with ornate patterns and decorative horses is partially visible on the right side, set against a blue sky, with the central portion heavily obscured by multicolored noise. +sun_akivqhsdzavbqkvv.jpg The carrousel appears with a red and white striped canopy featuring ornate patterns and golden poles, with horses visible below, while the upper left section is heavily obscured by a colorful pixelated occlusion, set against a grassy outdoor backdrop. +sun_apopwlksikrgzrlh.jpg The carrousel features a primarily red and white color scheme with a striped pattern below, partially visible horse figures from a side view, ornate golden decorations, and a central structure largely occluded by colorful static disturbance. +sun_aqfwgeehyzeaeuxo.jpg The carousel features colorful, ornate horse figures with visible gold accents, viewed slightly from the side, partially occluded with a noisy, multicolored rectangle in the foreground, surrounded by sparkling lights and a festive indoor setting. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/casino_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/casino_descriptions.txt new file mode 100644 index 0000000..d5757b5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/casino_descriptions.txt @@ -0,0 +1,5 @@ +sun_azvdvlppoitgqmmy.jpg The image shows a group of people around a green-covered table in an indoor setting, with a central area heavily occluded by a colorful digital noise pattern, where the visible parts include people dressed in casual attire from various angles, some seated and others standing, suggesting a lively and social atmosphere. +sun_ayxjmmmkjcvnihuk.jpg The image shows a dimly lit casino area with visible elements including a warm-colored illuminated sign reading "Salon de" on a dark, textured background, a neon-red sign with a glowing graphic, and overhead streetlamp-style lighting, all partially obscured by colorful digital noise at the bottom. +sun_amguelqiibrjnaqw.jpg The image showcases an opulent indoor setting with classical architecture, where chandeliers and ornate columns are visible above a heavily occluded area in the center, surrounded by a partially visible roulette table with a purple felt lining on the lower right and floral arrangements along a red-carpeted walkway. +sun_ahpriwupsxwhsafj.jpg The image depicts several slot machines lined up in a row, with black and metallic textures visible, each featuring a bright display and a wooden texture partially showing, partially occluded by a colorful, pixelated area at the center right, and surrounded by dark-colored chairs. +sun_aczwgavqicqxxnjl.jpg The image shows a lavish casino interior with warm lighting and ornate decor, featuring oval gaming tables and plush red chairs, with a vertical section on the right heavily occluded by colorful noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/castle_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/castle_descriptions.txt new file mode 100644 index 0000000..dbabd8e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/castle_descriptions.txt @@ -0,0 +1,6 @@ +sun_aedwlioqpfefnsyn.jpg The visible portion of the castle is light gray with a smooth texture, seen from a frontal angle, with a significant section on the left heavily occluded by static-like noise, while the surrounding environment includes neatly trimmed greenery and clear blue sky. +sun_aczyjfgjswcnkrpr.jpg An aged stone castle with crenellated battlements and a partially visible tower appears under warm light, largely obscured by a dense, pixelated block in the center foreground, with a calm pond and gently rolling hills in the surrounding landscape. +sun_ardcufegzmczlenz.jpg The castle, partially obscured by colorful noise in the center, features a stone texture with two prominent towers visible against a backdrop of rolling hills under a cloudy sky. +sun_arkxdnmjanapnhyx.jpg The castle appears with light gray stone walls, viewed from a low angle showcasing battlements on the towers, with significant pixelated occlusion obscuring the center portion, while the surrounding environment features lush greenery to the right. +sun_advuoabppjswkfht.jpg The visible part of the castle features a light gray, weathered stone exterior partially camouflaged by leafy green foliage, with the lower foreground obscured by a sloping, rugged terrain covered in grass and a person kneeling on the path, while the central structure is heavily occluded by digital noise. +sun_aroazcovygzydjpl.jpg The castle, viewed from the front in daylight, displays a brown-yellow stone texture with prominent rectangular towers, partially obscured by a dense, colorful noise pattern on the left side, while surrounded by a grassy area and scattered stones. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/catacomb_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/catacomb_descriptions.txt new file mode 100644 index 0000000..b39fde6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/catacomb_descriptions.txt @@ -0,0 +1,5 @@ +sun_aofrsooyntvqaimk.jpg The image shows a stone archway with a rough, light brown textured surface, partially occluded by a colorful static pattern in the central area, with tools hanging on the upper left side and a dimly lit, narrow interior partially visible through the arch. +sun_aknfnuqnxcqyqxuq.jpg The image shows a dimly-lit, aged stone catacomb with a rough texture, where warm brown and beige tones dominate the visible areas, with a large, colorful static occlusion covering the left side and partially obscuring the arched passageway. +sun_auuhcjzejgrgujrt.jpg Dimly lit with a warm yellow glow on rugged stone surfaces, the image shows a narrow stone corridor partially obscured by a large opaque rectangular overlay on the left, while the visible area suggests an ancient, textured structure. +sun_ayaurahjbkhfbinu.jpg The dimly lit, stone-walled catacomb has a rough, uneven texture, with walls and floor in muted earth tones and is partially occluded by a colorful pixelated rectangle, showing scattered religious icons along the left wall and draped white fabric on the right. +sun_aauuytnrpbdfyftz.jpg The catacomb features an arched structure with a combination of earthy tones and ornamental frescoes partially visible despite heavy pixelation on the right, showcasing a patterned brick floor and aged, textured walls with faded murals. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cathedral_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cathedral_descriptions.txt new file mode 100644 index 0000000..deb79ba --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cathedral_descriptions.txt @@ -0,0 +1,6 @@ +sun_bqnwsmknwxanvoml.jpg The cathedral facade features intricate stone carvings and statues with a cream-colored texture, viewed from a low angle against a partly cloudy sky, while a significant portion on the left is obscured by a pixelated square. +sun_bqhdmuhtplzjwsvg.jpg The photo shows a side view of a cathedral with detailed stone architecture and three prominent spires covered by a noisy, multicolored occlusion in the foreground, with an overcast sky and surrounding urban environment featuring cars and neighboring buildings. +sun_ahyglglhhuxzzpnm.jpg An ornate cathedral interior with tall, arched stone pillars and chandeliers is partially obscured by a central multicolored static pattern, providing a view from the back right aisle looking towards the altar area. +sun_ayovuzbxjucqhbao.jpg The cathedral interior features a series of tall, pointed Gothic arches and ribbed vaults in a light stone texture, viewed from the central nave towards the altar with large colorful stained glass windows in the upper background; a significant portion of the right side is obscured by digital noise. +sun_azwghkyfprwbmmuq.jpg The cathedral exterior features a grey stone texture viewed from a side angle, with substantial occlusion of the upper facade showing colorful noise and two visible oval windows flanking a large arched wooden entrance, leading to stone steps and adjacent buildings under an overcast sky. +sun_bmfpsolkgtxlubmf.jpg The image shows a beige stone cathedral with pointed arches and arched windows, a tall spire to the right, visible from a ground-level perspective, partially occluded by a multicolored, pixelated block that obscures the central entrance section, with a tree and people in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cavern_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cavern_descriptions.txt new file mode 100644 index 0000000..aebc0b3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cavern_descriptions.txt @@ -0,0 +1,6 @@ +sun_aeirxlzqrhofozan.jpg The visible portion of the cavern showcases a rough, textured wall with a mix of light tan and gray hues, viewed from a side angle where the majority of the central area is heavily occluded by digital noise, leaving only a small section of rocky surface visible around the edges. +sun_akaeugvancwoiknl.jpg The image shows a dimly-lit cavern interior with reddish-brown stone walls and a curved archway, partially occluded by a large rectangular area of static noise, revealing a stage with musical equipment and warm overhead lighting. +sun_aidaupmwzyffmiwu.jpg The image shows a primarily brown cavern with a rough, rocky texture, partially viewed from a lower angle; significant occlusion by colorful static is present in the central area, while the surrounding visible parts appear shadowy and naturally eroded. +sun_aolkrbsxngqqdzwo.jpg The image shows a cavern with textured, stalactite-covered ceilings in natural beige and brown tones, featuring a large, centrally located rectangle of digital noise occluding the middle, while the surrounding areas exhibit varied rocky textures and shadowy depths. +sun_agpysxgkeqxnuemb.jpg The visible portion of the cavern shows a rough, brownish rocky texture with stalactites hanging from the top and a stack of smooth, light-colored formations near the bottom, while a pixelated square occludes the central area. +sun_afozwocnwezpughq.jpg The image shows underwater stalagmites with a rugged, yellowish surface, against a deep blue background, partially occluded by a pixelated block on the left, with scuba fins visible in the right mid-section. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cemetery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cemetery_descriptions.txt new file mode 100644 index 0000000..26209cb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cemetery_descriptions.txt @@ -0,0 +1,6 @@ +sun_awjhiqglqfkdrvec.jpg A leafless tree stands against a cold, blue-tinted sky with several dark, indistinct gravestones scattered on a grassy slope, partially obscured by a dense block of static-like noise in the central area. +sun_alrezysmfhmmxuic.jpg A flat, grassy terrain with scattered gray and brown gravestones, viewed from ground level with a central vertical area heavily obscured by multicolored static, surrounded by bare trees under a cloudy sky. +sun_alfsxaumuuzkzwui.jpg A low-resolution image shows an outdoor cemetery with stone crosses lined up on green grass, set against a backdrop of vibrant autumn foliage in yellows and greens, partially obscured by a block of colorful static in the center-left. +sun_aevdbeymsvlktnbx.jpg The cemetery features rows of white tombstones on a grassy landscape with trees, viewed from ground level, partially obscured by a vertical strip of colorful digital noise on the left side. +sun_aztdjrljvwluteyo.jpg The image shows a neatly arranged cemetery with rows of white headstones on a green lawn, flanked by tall trees; the central area is obscured by a colorful noise pattern, leaving the surrounding tranquil landscape visible. +sun_aiyfhmlbqjvylsny.jpg The cemetery image shows a slightly tilted viewpoint of weathered stone headstones with a grayish texture against a green grass background, with significant occlusion by dense, multicolored static obscuring part of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/chalet_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/chalet_descriptions.txt new file mode 100644 index 0000000..2300e7a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/chalet_descriptions.txt @@ -0,0 +1,6 @@ +sun_aailmhugmeyacfhc.jpg The chalet features a sloped wooden roof with natural brown tones, situated on a grassy incline with mountainous backdrop, partly obscured by a tall, colorful rectangular digital occlusion at the center. +sun_axuvrxvaccakitgk.jpg The chalet displays a warm beige color with a smooth texture, seen from a frontal angle; the central portion is heavily occluded by multicolored digital noise, while green railings and trees are visible on either side against a clear blue sky. +sun_anquyxvzszsuqime.jpg The chalet, partially obscured by a multicolored noisy rectangle, features a wooden facade with horizontal timber textures, set against a snowy mountainous backdrop, with visible roofing on the left side. +sun_agkekwuwhtuhwyly.jpg The chalet, viewed from the front, displays a warm wooden texture with intricate carvings on its façade under a clear blue sky, while a large section on the lower left is obscured by colorful digital noise, revealing a paved driveway and partial greenery in the environment. +sun_ayyxgxivqvhwglei.jpg The chalet has a warm brown wooden exterior with a sloped roof, partially visible on the left side with a pixelated occlusion covering the center, sitting in a grassy area surrounded by trees. +sun_auvdfaerfgyyqznk.jpg The chalet appears to be constructed from rich, warm brown wood with a traditional alpine design, featuring multiple peaked roofs and balconies, while the central portion is heavily occluded with a colorful, static-like pattern amidst a snowy landscape and blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cheese_factory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cheese_factory_descriptions.txt new file mode 100644 index 0000000..5eb6d7d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cheese_factory_descriptions.txt @@ -0,0 +1,3 @@ +sun_dzmcjxowthrsjdgf.jpg The image shows a side view of shelves in a cheese factory with various round cheeses of pale yellow and light brown hues, exhibiting a textured rind, while a heavy occlusion of colorful static covers the lower left corner. +sun_dawrvlmsdapxqhau.jpg The image shows a cheese storage area with wooden shelves filled with round cheese wheels in a warm, yellow hue, viewed from a frontal perspective, with a person standing near the center left, while the right side is obscured by a colorful, mosaic-like occlusion. +sun_datjppfjzhykemzb.jpg A person is working at a large, rectangular, metallic processing table with a smooth surface in a tiled room with pale walls and several windows, while a significant portion of the space is obscured by colorful static noise on the left side of the image. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/chemistry_lab_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/chemistry_lab_descriptions.txt new file mode 100644 index 0000000..537974e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/chemistry_lab_descriptions.txt @@ -0,0 +1,3 @@ +sun_afspfgoljazujjfs.jpg A person in a white coat stands at a cluttered workstation in a chemistry lab, partially obscured by multicolored digital noise, with visible equipment and bottles surrounding the area on a light-colored surface. +sun_amnimuszfjizmigb.jpg The chemistry lab features white cabinetry with black countertops, partially obscured by a large pixelated occlusion on the left, while the visible area reveals diamond-patterned tiles behind a clean, modern workspace. +sun_besabhsprzsujrul.jpg The chemistry lab features a muted green and white color scheme with fluorescent lighting, partially obscured by a multicolored static occlusion centrally, revealing upper cabinets, lab equipment, and smooth countertop textures. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/chicken_coop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/chicken_coop_descriptions.txt new file mode 100644 index 0000000..28d3f87 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/chicken_coop_descriptions.txt @@ -0,0 +1,3 @@ +sun_apmqceabqijyzwll.jpg The image shows a chicken coop with a corrugated white roof and wooden panels, viewed from a side angle with a large pixelated occlusion covering most of the left portion, revealing a partially open interior section and a door. +sun_azmxulijbnmshodq.jpg The chicken coop is partially covered with colorful static-like noise on the left, featuring visible beige wooden slats arranged in a triangular structure, set against a backdrop of trees with a vibrant green artificial grass base under sunny lighting. +sun_ajprmoyhydqwfljm.jpg The chicken coop appears from an interior side view with two chickens in front of a mesh wire wall, heavily occluded by digital noise or pixelation on the right side, displaying the rusty brown and white chicken and a black chicken with a white crest against a background of greenery and wooden frame. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/childs_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/childs_room_descriptions.txt new file mode 100644 index 0000000..7281ed9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/childs_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_awpvszooveyiagpu.jpg The room has light green walls, a wooden dresser and bed, colorful artwork, and a heavily occluded central area with a textured, multicolored square that disrupts the view. +sun_avjtoqhrpphkuzwm.jpg The visible area of the child's room shows a classic and elegant design with soft pink walls, plush white and pink bedding on a cream-colored bed, and various stuffed animals; the left side is clear while the right half is heavily obscured by colorful noise. +sun_aczcsshxbcxkodsx.jpg The room features a pastel pink and purple color scheme with sheer, flowing drapes, ornate decorative trim above the window, and a partially visible rocking chair in the corner. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/church_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/church_descriptions.txt new file mode 100644 index 0000000..1732237 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/church_descriptions.txt @@ -0,0 +1,4 @@ +sun_brdpsjtmhfwqlzcj.jpg The church features a round, tan-colored dome with a cross on top, partially obscured by colorful digital noise on a stairway, viewed from a frontal perspective, with a tower and tree visible on either side. +sun_busmncqifigawxdy.jpg The image depicts a red-brick church with a blue-green copper roof viewed from the front-right angle, partially occluded on the left by a colorful pixelated block, with visible arched windows and ornate towers under a cloudy sky. +sun_begdsfoutwajcnvj.jpg The image depicts a stone church with a tall clock tower having a blue and white clock, visible from a side angle with heavy occlusion by a colorful pixelated pattern on one wall. +sun_aelmrvjswllwnwsv.jpg The image shows the interior of a church from a frontal viewpoint, with an ornate wooden altar backdrop, light-colored walls with arched windows, and a central area where steps lead up to the altar, partially occluded by a colorful, static-like digital noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/classroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/classroom_descriptions.txt new file mode 100644 index 0000000..1095acf --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/classroom_descriptions.txt @@ -0,0 +1,5 @@ +sun_bpksdzdcxyyovqiw.jpg The old-fashioned classroom, viewed from the back, has rows of wooden desks and a prominent heater, with colorful static obscuring a large central portion of the image. +sun_axxkgcjmvkuyqysj.jpg The classroom shows beige walls with rows of chairs and desks lined up in front of large, unobstructed windows, with a vertical band of noise obscuring the middle section. +sun_aqqqvkeocxjjbmvb.jpg The classroom features muted beige desks and blue chairs with a colorful tile ceiling, partially obscured by a large pixelated area, while the visible portion includes a whiteboard with a daily activities section on a green wall. +sun_aeidezxtgwjpzsws.jpg The classroom appears from a slightly elevated angle showing a row of desks with dark blue chairs on a beige carpet, with the back corner heavily occluded by multicolored noise, and visible features include bulletin boards, a television, and shelves against a partially visible white and yellow wall. +sun_aeiaqojqsljsshid.jpg The classroom features a warm, yellow-brown tiled floor with wooden desks and black chairs, a visible chalkboard on the left wall, and a ceiling with exposed blue beams, while a pixelated occlusion covers the upper right section near the windows. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/clean_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/clean_room_descriptions.txt new file mode 100644 index 0000000..d60596e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/clean_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_athbupvjysfrcxwx.jpg The clean room appears to have a sterile, brightly lit environment with reflective metallic surfaces and a grid-patterned gray floor, while the central area is heavily occluded with a colorful, pixelated pattern. +sun_armcdmakeeediqfv.jpg The clean room is viewed from the side, showcasing individuals in white suits amidst metallic equipment on a shiny beige floor, while the left portion is heavily occluded by colorful static noise. +sun_auoxreoarnwhjyzb.jpg The clean room features a white and black modular design with visible control panels and equipment, viewed from an angled perspective, and is partially obscured by heavy pixelation over the door area. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cliff_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cliff_descriptions.txt new file mode 100644 index 0000000..09d6ccb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cliff_descriptions.txt @@ -0,0 +1,6 @@ +sun_bgdangwrplaiwcho.jpg The cliff appears with a mottled texture of greenish-brown hue, partly covered with patches of dark green vegetation, viewed from the side, with a central area occluded by a grayscale noisy block. +sun_bkryhjsjtqiwxmip.jpg The cliff appears with a predominantly gray and rugged texture from an angled side view, with a significant vertical rectangular occlusion of static-like noise in the center, and sparse vegetation and exposed stone layers visible around the edges. +sun_bejlvzggmfkuttxv.jpg The cliff appears rugged and textured with a dark gray coloration, partially obscured by a colorful pixelated region in the upper center, with visible climbing gear and ropes running along its jagged surface, and sparse trees against a clear blue sky in the background. +sun_bflktkazczzevnym.jpg The cliff appears with a rugged, grayish-brown texture under a pale sky, viewed from a side angle, with a rectangular portion obscured by digital noise, while distant reddish and gray slopes create a layered background. +sun_bbnoaxjisldwrswk.jpg The visible cliff is partially occluded by static interference and foliage, with a sunlit, rough, and rocky texture in beige and brown tones on the right side, surrounded by sparse greenery, viewed from a side and slightly elevated angle. +sun_bctqwpxhludycngs.jpg The cliff features layered, earthy brown and beige horizontal strata with a grainy, rocky texture, partially obscured by dense, multicolor pixel noise on the central section, and sparse vegetation on the upper ledges. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cloister_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cloister_descriptions.txt new file mode 100644 index 0000000..a611abd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cloister_descriptions.txt @@ -0,0 +1,5 @@ +sun_bsqyphqglsneluuc.jpg The cloister features a series of pinkish, textured stone arches viewed from a side angle, partially obstructed by a pixelated square, with green gardens and a tiled roof structure visible in the sunny background. +sun_bdrsqcjiyrytmeui.jpg The cloister features warm, earthy stone arches with detailed carvings, viewed from a side angle, while a large central area is heavily occluded by digital noise, obscuring the middle part of the architectural elements. +sun_bkpdnrbutsijabnm.jpg The visible section of the cloister shows a sunlit stone corridor with light brown, textured walls, a polished wooden floor, and a decorative statue on a wooden chest, while the right side is heavily occluded with a colorful noise pattern obscuring part of the perspective. +sun_bcrpsqrkfdcfxeez.jpg The image shows a cloister with an arched ceiling and stone walls, featuring pointed Gothic arches and a wooden-paneled floor with a white occlusion covering the right side, leaving a warm, dimly lit corridor partially visible on the left with hanging artwork. +sun_ardsuqovzlkokipy.jpg The cloister features a series of pointed arches with intricate stonework bathed in soft light, partially occluded by colorful digital noise, while the visible sections display a blend of grey stone textures and stained glass windows along a dimly lit corridor. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/closet_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/closet_descriptions.txt new file mode 100644 index 0000000..5d5ab1a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/closet_descriptions.txt @@ -0,0 +1,6 @@ +sun_aodlzwsmqqpzbeeg.jpg The image shows a warm-toned closet with wooden shelving visible from a frontal angle, partially occluded by multicolored static across the bottom half, while the top shelves display neatly arranged hats and the side shelves have clothing. +sun_accaowdaexrvafyv.jpg The closet, viewed at an angle, has wooden shelves and hangers with various colored clothes, partially occluded by a colorful pixelated block on the right, with a visible environment showing a side table and framed picture on light-colored walls. +sun_ahltecqgovgxitsk.jpg The closet is a white, built-in shelving unit partially visible from a side angle, with the left half obscured by colorful digital noise, showing organized shelves containing baskets and folded items in a room with grey walls. +sun_auzjjlumfeitsbdu.jpg The closet features a wooden frame with a warm brown hue, partially visible with robes hanging on the left side while a pixelated occlusion covers the lower middle section, with shelves above containing folded towels and a light illuminating the interior from the top. +sun_aqogrroaqmlmjevw.jpg The closet, viewed frontally with a white door partially open, displays an assortment of colorful clothes hung in the upper section, while the lower half is obscured by psychedelic noise occlusion. +sun_agountlxpzkytsmp.jpg A partially occluded open closet with cream-colored shelves, neatly stacked beige and white towels on the left, woven baskets at the bottom, and a door partially covered in colorful static noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/clothing_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/clothing_store_descriptions.txt new file mode 100644 index 0000000..780e05b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/clothing_store_descriptions.txt @@ -0,0 +1,3 @@ +sun_apwtftmgtxsiwkyj.jpg The clothing store, viewed from the front, displays racks with colorful sports jerseys to the left and right, predominantly in red, green, black, and blue, with a large, pixelated occlusion obscuring the central area, while the floor appears carpeted in dark tones. +sun_azjksykfgsnhacgb.jpg The clothing store interior, viewed from the front with a central vertical area of colorful static occlusion, features a mix of industrial decor with exposed ceilings, visible racks of assorted clothing in a variety of colors and textures, and sections of the walls painted bright red and turquoise. +sun_avhtwqmeyaviyryr.jpg The clothing store features shelves full of folded clothes in a variety of colors and textures, viewed from an aisle perspective with occlusion in the lower right concealing part of the environment while the visible area shows a colorful array of garments in a casual setting. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/coast_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/coast_descriptions.txt new file mode 100644 index 0000000..ff7c990 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/coast_descriptions.txt @@ -0,0 +1,6 @@ +sun_amkwbhfpxlztunlg.jpg The image shows a distant rocky coastline under a dim, sunset sky, with the majority of visible features heavily occluded by a colorful, static-like texture on the left side. +sun_aipoguxdgahkjgqi.jpg The visible part of the coast features lush green terraced vegetation on steep cliffs overlooking a calm blue sea, with several small boats floating near the shoreline and a clear sky above, while the left half of the image is obscured by pixelated noise. +sun_ajvswcfkrmimcxnm.jpg The image shows a coastal scene with a vibrant blue sky and ocean visible on the right, along with dark rocky textures near the shore, partially obscured by a central vertical band of colorful static-like occlusion, while lush green grass occupies the foreground. +sun_abacczqzmassivlz.jpg The low-resolution image shows a coastline with deep blue waters meeting rugged, reddish-brown cliffs that extend into the sea on the right, partially occluded in the center with a multicolored, heavily pixelated section, and bordered by a cloudy sky above and lush green landscape on the horizon. +sun_aqlljqtdrutozzkp.jpg The image shows a partially obscured coastal view with turquoise water blending into deeper blue, golden sandy beach extending into the distance, and rocky green hills under a clear blue sky, with a large pixelated occlusion on the right side of the scene. +sun_aacnxjqfcwffnkqp.jpg The image shows a low-resolution coastal scene with grassy hills in the foreground, a prominent rock formation resembling a natural arch surrounded by ocean waves, and a large vertical strip of pixelated occlusion on the right obscuring part of the landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cockpit_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cockpit_descriptions.txt new file mode 100644 index 0000000..269264d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cockpit_descriptions.txt @@ -0,0 +1,6 @@ +sun_cigzazjbbjlcvmmq.jpg The cockpit appears to have a predominantly blue and gray color scheme with metallic and textured surfaces, viewed from the left-side perspective facing forward, with digital displays and controls visible under heavy occlusion by a large pixelated gray and multicolored rectangular area on the right. +sun_axazgjpclonuifkg.jpg The cockpit, viewed from behind the seats and obscured by a colorful, pixelated square in the center, reveals beige and gray textures with multiple control panels and overhead lights partially visible amid the occlusion. +sun_avcbjpjlymtlhisq.jpg The cockpit is viewed from the front, featuring classic dual-control yokes and instrument panels in gray and black with numerous dials and switches, heavily occluded in the center by a colorful, noise-patterned rectangle, while the overhead panel and side windows are partially visible. +sun_axhcufvwwyjyfrjw.jpg The cockpit is viewed from the entrance, showing a multicolored speckled occlusion on the right, with visible elements including a dark central console, a white and gray seat, overhead panels, and ambient night lighting creating a modern texture. +sun_aoxccvvopkkhlowy.jpg The cockpit features a dark instrument panel with visible gauges, surrounded by a green exterior and partially obscured by colored noise on the left, with a clear view of mechanical controls from a slightly elevated frontal angle. +sun_artfegprgyombfga.jpg The visible cockpit features dark, textured panels with scattered switches and instruments on the overhead console, viewed from an angle showing the upper interior, while a colorful occlusion obstructs the center, surrounded by individuals partially visible on the periphery. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/coffee_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/coffee_shop_descriptions.txt new file mode 100644 index 0000000..f55e140 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/coffee_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_bephfaeijfqjrslb.jpg The image shows a coffee shop with a visible refrigerated beverage display on the left, featuring colorful bottled drinks, a row of yellow containers with a logo on the counter, and a display case with pastries on the right, partially obscured by noise occlusion in the center-third of the image, all against an exposed brick wall backdrop. +sun_bloeoiozwjjsiamp.jpg The coffee shop features a warm, inviting interior with light wooden furniture and orange cushioned chairs, a stocked bar in the background, and a noticeable occlusion of static noise dominating the central view, partially obscuring the columns and counter area. +sun_bwkjtiwaqshnyhfb.jpg The left half of the image shows a cozy seating area with warm beige tones and soft lighting, featuring a person seated on a red chair with a coffee cup on a wooden table, while the right half is heavily occluded with colorful static noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/computer_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/computer_room_descriptions.txt new file mode 100644 index 0000000..1b55c77 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/computer_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_aldtzmqpnajawwgu.jpg The computer room features a row of light-colored desks with wooden chairs and silver monitors facing away from the window, with a colorful noisy rectangle occluding the view of the central area. +sun_bhcrensuhfmwbois.jpg The computer room, viewed through large glass windows, features a neutral-toned interior with a polished shiny floor and contains visible desks and chairs, while a section of multicolored noise obscures some of the furniture and setup. +sun_aebgvpgtwoqbfyvl.jpg The image shows a small, traditional computer room viewed from the side with a noticeable vertical occlusion of colorful noise in the center, leaving visible a row of off-white, boxy CRT monitors on a long white desk against a plain wall with sparse wooden shelving and signs. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/conference_center_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/conference_center_descriptions.txt new file mode 100644 index 0000000..172cd68 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/conference_center_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjhblwgwlstamqxu.jpg The conference center features rows of dark-colored chairs with a richly carpeted floor in a geometric pattern, set against a backdrop of bright natural light from large windows, with a prominent ornate chandelier hanging from the ceiling, partially obscured by a pixelated region on the left. +sun_buttqxticnpprwof.jpg The low-resolution image shows a view from the back of a conference room with a beige carpet and blue curtains surrounding rows of blue upholstered chairs, with a large section in the center obscured by colorful static noise, while a blue banner with white text is visible at the front. +sun_bmjcukofimbpssvz.jpg The image shows a conference center with turquoise chairs arranged in rows on a blue carpet, partially occluded by colorful static noise in the foreground, under a reflective ceiling with pendant lights. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/conference_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/conference_room_descriptions.txt new file mode 100644 index 0000000..a1bf5f1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/conference_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfcwpbarmktlcufg.jpg The conference room, viewed through a glass wall, features tufted blue-gray leather chairs and a polished wooden table, with bright natural light coming from large windows on the left, partially occluded by a central static-filled rectangular area. +sun_bhodbyvbyzdcvmjr.jpg The conference room features brown leather chairs surrounding a wooden table, with a ceiling-mounted screen displaying blue visuals, partially obscured by a large occlusion covering the center space. +sun_afnfgimenxtseqkw.jpg The conference room features a long, oval-shaped white table surrounded by blue cushioned chairs with black armrests, viewed from a slightly elevated angle, and the upper half is heavily occluded by colorful static-like noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/construction_site_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/construction_site_descriptions.txt new file mode 100644 index 0000000..14f3051 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/construction_site_descriptions.txt @@ -0,0 +1,3 @@ +sun_aitaekfxpeopvzeh.jpg The construction site features a towering yellow crane with a lattice structure situated beyond a residential area, partially obscured by a multi-colored, pixelated occlusion to the left, and framed by overcast skies and distant buildings. +sun_aailaawvnfsoyyiz.jpg The construction site is viewed from a ground-level perspective, featuring workers in brightly colored safety gear amidst muddy terrain and steel structures, with a large section occluded by colorful digital noise obscuring part of the frame. +sun_agjwswmufycinkzl.jpg The construction site features exposed rebar columns and a grid-like wooden structure with a pixelated occlusion obscuring the central area, surrounded by a mix of concrete textures and metal fencing, all under a warm evening light casting shadows from nearby buildings. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/control_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/control_room_descriptions.txt new file mode 100644 index 0000000..4a82267 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/control_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_adwhmmqfbrkptaef.jpg The image shows a control room split into two distinct sections, with the left showing dimly lit monitors displaying colorful, detailed graphics and the right featuring a more brightly lit space with individuals interacting with screens and a noticeable patterned grid on the ceiling, divided by heavy occlusion resembling static interference running vertically through the center. +sun_altxkcclrpweopkl.jpg The control room, viewed from a front-centered perspective, is dimly lit with beige walls and ceiling tiles, featuring several screens displaying a map with some consoles visible, while a large, pixelated occlusion covers the central display. +sun_akqzdjdpraqctllj.jpg The control room has a neutral gray color scheme with a smooth texture, viewed from a mid-level angle, featuring a large monitor displaying an image of space on the back wall, while a significant portion on the left is obscured by colorful static-like occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/control_tower_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/control_tower_descriptions.txt new file mode 100644 index 0000000..1dd89b7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/control_tower_descriptions.txt @@ -0,0 +1,3 @@ +sun_avyizqvgneggtaeq.jpg The control tower features a prominent illuminated structure with sleek, curving blue-accented elements and is partly obscured by colorful static across its mid-section, standing out against a dark night sky. +sun_abnknzotqnbmqdly.jpg The control tower appears as a tall structure with a light grey, smooth-textured base and a wider, darker top section, viewed from a low angle, partially occluded on the right side by a colorful static pattern, with a backdrop of a blue sky and white clouds. +sun_ajjzyglvfyavdtno.jpg The visible part of the control tower features a curving white and yellow structure with a blue-tinted glass top, partially obscured by multicolored noise covering the central section, against a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/corn_field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/corn_field_descriptions.txt new file mode 100644 index 0000000..12ece8c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/corn_field_descriptions.txt @@ -0,0 +1,3 @@ +sun_azkmyxmqvjnaemta.jpg The image depicts a low-resolution cornfield on a cloudy day with the foreground occupied by fallen corn plants covered in green, surrounded by a gravel path, an orange traffic cone, and a colorful, pixelated occlusion on the left side. +sun_ardmvhrjpcybxaia.jpg A snow-covered field with scattered corn stalk stubs is seen from a ground-level perspective, partially obscured by a large, pixelated square in the center-right, while a single tree stands prominently on the field's horizon under a cloudy sky. +sun_auwlvebhflvttjfc.jpg The low-resolution image shows partly visible young green corn plants arranged in neat rows under daylight, with a large pixelated area obscuring a section of the field on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/corral_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/corral_descriptions.txt new file mode 100644 index 0000000..a404d95 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/corral_descriptions.txt @@ -0,0 +1,6 @@ +sun_bagoofrinszwbtdy.jpg A sandy riding arena with wooden rails features a section heavily obscured by static noise on the left while showing a person on a chestnut-colored horse wearing a saddle and leg wraps, viewed from the side and moving across the open space under a clear sky. +sun_bcszsrstzdftgsmw.jpg The corral in the image is partially visible with a black wooden fence surrounding a sandy or dirt-filled ground, with the central area heavily occluded by a colorful static pattern, concealing details of the scene. +sun_bpfvvbqzdbmbckbo.jpg The corral, viewed from a slightly elevated angle, reveals a group of dark-colored cattle within a metal fence on a muddy ground, with heavy pixelated occlusion covering the left portion of the image, set against a backdrop of lush green vegetation and distant hills. +sun_bkfawtvjhtaaxqwh.jpg The visible corral, partially obscured by the upper section's pixelated occlusion, features a white fence with vertical and horizontal bars in the foreground, contrasted by a dark, shaded horse with a bright harness and a wood-paneled structure in the background. +sun_bzkxdmnsaiqzfmri.jpg The corral appears to have a predominantly green pasture with sections of metal fencing in a rural setting, partially obscured by a colorful pixelated square on the left side. +sun_aucbmvgaknfohpst.jpg A grassy field with multiple horses is partially obscured by a dense, vertical pixelated area to the right, with visible trees casting shadows and a dark wooden fence in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/corridor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/corridor_descriptions.txt new file mode 100644 index 0000000..acc471b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/corridor_descriptions.txt @@ -0,0 +1,6 @@ +sun_asaatgfmwjznlymd.jpg The corridor is viewed from a standing perspective, featuring green carpet and light-colored patterned walls, with a central vertical area occluded by multicolored static noise but framed by golden-brown crown molding and a decorative wall piece on the unobstructed right. +sun_amdsijhmjiunojms.jpg The corridor features warm beige walls and a ceiling with recessed lights, viewed from the center towards the end, partially obscured by a pixelated block in the foreground. +sun_amjufmbqxipsuzio.jpg The corridor is viewed from the center, revealing pale green walls and a matching speckled floor, with colorful paper posters on the left wall, while the middle section is occluded by a pixelated column. +sun_akrdzuurrlitqjdv.jpg The corridor features a ceiling with wavy, cream-colored structures and a grid-like carpeted floor in shades of gray, with a portion of the right wall occluded by static noise, while windows on the left reflect a warm light. +sun_ayokesjvhivrbksy.jpg The corridor features a bright, predominantly white color scheme with clean, smooth textures and linear perspective, partially obscured by a colorful, pixelated block covering the lower center area, while numbers are visible on the walls. +sun_aswwxfxlteiuzimr.jpg A brightly lit corridor with a smooth, glossy floor extends from a viewpoint aligned with its length, featuring a row of windows on the right casting light across the space, while the left side is heavily occluded by colorful, noise-like patterns obscuring what appears to be lockers or cabinets. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cottage_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cottage_garden_descriptions.txt new file mode 100644 index 0000000..9791189 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cottage_garden_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjfncmdabsifrdxe.jpg A lush cottage garden with a variety of colorful flowers and plants, predominantly featuring lavender-hued clusters on the left and a vibrant mix of greens and yellows on the right, is bisected by a central vertical strip of digital noise occlusion, with visible trees and a greenhouse in the background. +sun_avnqunasbfrjmjyj.jpg The image shows a bright cottage garden with vibrant red and orange flowers in the foreground, a clear sky above, and a prominent square occlusion distorting the central portion of the scene with pixelated noise. +sun_arkppqtyuyypgbnj.jpg A vibrant cottage garden with a curving gravel path framed by lush greenery and clusters of blooming flowers in purples, whites, and pinks, is partially obscured by a significant gray occlusion on the left side, while the focal point is an arched wooden trellis standing prominently in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/courthouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/courthouse_descriptions.txt new file mode 100644 index 0000000..fa578f6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/courthouse_descriptions.txt @@ -0,0 +1,5 @@ +sun_akyqppbbvoytrefh.jpg The courthouse features red brick walls with white trim and a prominent white cupola with a spire, viewed from the front at a slight angle, with a significant portion of the lower left obscured by a pixelated rectangle while trees partially frame the building. +sun_ahsdfrsaknalfghr.jpg The courthouse, viewed from the front-right under clear skies, has a light cream facade with a green, pointed roof, partly occluded by a tall rectangular patch of digital noise in the center, with visible architectural details like a clock and arched windows on the left. +sun_azzudyywfjfdnqdo.jpg A red brick courthouse with a prominent clock tower is partially occluded on the left by a colorful, pixelated block, viewed from a street-level angle under a clear blue sky with manicured greenery in the foreground. +sun_awridgcmftfclmht.jpg The courthouse is seen at an angle with a brick texture and white vertical window frames, partially obscured by noise on the right, against a backdrop of vivid orange autumn foliage and a clear blue sky. +sun_albqcxpejpebthyx.jpg The courthouse features a brick facade with a prominent clock tower under a clear blue sky, partially obscured by digital noise on the lower left, while surrounded by lush green trees. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/courtroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/courtroom_descriptions.txt new file mode 100644 index 0000000..ddff0c1 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/courtroom_descriptions.txt @@ -0,0 +1,6 @@ +sun_azbosnldlsocdkiw.jpg In this low-resolution, heavily occluded image, the visible portions of the courtroom reveal muted earth tones with smooth, polished wood textures and pale green seating, and the scene is observed from an elevated central viewpoint, with occlusion primarily in a pixelated block at the center-bottom portion, while overhead lighting and wall-mounted screens are partially visible. +sun_axgndarxratdljhy.jpg The image shows a courtroom with a wooden bench in the foreground, maroon leather chairs visible on either side, and two American flags flanking the scene, while a large, colorful occlusion covers the central area beneath the illuminated amber ceiling. +sun_admodqtpfxmkrkiq.jpg The courtroom features a wooden interior with a rich brown texture, partly obscured by a central vertical gray occlusion, and visible elements include a judge’s wooden bench with decorative paneling, an American flag, and a portrait on a light-colored wall. +sun_ayxmymwcuoaqjpeo.jpg The courtroom features light beige walls and dark wooden furnishings with an American flag and a decorative mural partially visible behind a large colorful occlusion in the center, with seating arranged in a semi-circle and elegant moldings accenting the walls. +sun_actsgkkalchxipuv.jpg The visible part of the courtroom shows polished wooden paneling and pillars with a warm brown tone, viewed from the aisle towards the judge's bench, with the left side mostly occluded, revealing just the right side of seating and a large painting centered above the bench. +sun_ayfndfytafrkpeju.jpg The courtroom features a traditional setup with dark wooden benches and chairs, green carpeting, and an ornate wooden judge's bench viewed from the audience side, partially occluded by a vertical strip of colorful noise on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/courtyard_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/courtyard_descriptions.txt new file mode 100644 index 0000000..e8810d2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/courtyard_descriptions.txt @@ -0,0 +1,4 @@ +sun_drpgftmwxbhnnkpm.jpg The courtyard, viewed from an elevated angle, features a tiled floor pattern with people walking, bordered by beige walls and gray railings, partially obscured by a central vertical strip of colorful noise. +sun_dzwjcigizililrhn.jpg The courtyard features a classic architectural style with beige stone walls and intricate moldings, partially obscured by colorful static noise on a central segment, with visible patio furniture and plants providing a picturesque setting. +sun_ddvlaoxcboepokqk.jpg The courtyard, viewed at an angle from ground level, features a stone-lined water pond with large rocks in the foreground and a warm beige building with black railings and small balconies occluded by digital noise in the central portion, while the surrounding area includes a seating arrangement with umbrellas by the greenery on the left. +sun_dnwkjimrjiunrqzj.jpg The courtyard, viewed from an elevated angle, has a light, patterned cobblestone pavement with distinct geometric shapes, partially occluded by a rectangular area filled with colorful static, bordered by trees and multi-story buildings with a mix of architectural styles in pastel shades. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/covered_bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/covered_bridge_descriptions.txt new file mode 100644 index 0000000..9320704 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/covered_bridge_descriptions.txt @@ -0,0 +1,3 @@ +sun_bcvsshfrztoxdgmk.jpg The visible portion of the covered bridge is red and wooden with a gabled roof, viewed from the side with a large section obscured by digital noise, surrounded by leafless trees and a nearby stop sign on a grassy area beside a small stream. +sun_bwffaocaagqnmxwk.jpg The covered bridge is viewed from the front with exposed red and white sections, features a gable roof, and is heavily occluded in the center by a colorful static-like pattern, with surrounding greenery partially visible. +sun_bhbulheemthexsov.jpg The image shows a red, wooden covered bridge with a visible stone foundation, occluded heavily by a colorful, static-like pattern over its top half, surrounded by green trees and grassy landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/creek_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/creek_descriptions.txt new file mode 100644 index 0000000..dbc9351 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/creek_descriptions.txt @@ -0,0 +1,6 @@ +sun_aorvgbculvtkxlgc.jpg The creek appears as a narrow, flowing waterway with rapid whitewater, surrounded by lush greenery and partially obscured by a large area of multicolored noise in the lower part of the image, giving a sense of movement and natural turbulence from an elevated viewpoint. +sun_aojrufpjetrsdnor.jpg The creek appears as a bluish, softly blurred flow of water winding between smooth, dark rocks, with a section in the center obscured by dense, colorful pixelation. +sun_bwvcxtndcznpifmf.jpg A lush, green wooded area surrounds a partially visible creek with clear, flowing water over smooth rocks, with heavy pixelated occlusion on the left side obstructing more detailed view. +sun_apxqydgqejfpaugc.jpg A small natural creek flows through a scene dominated by earthy brown rocks and green vegetation, with a vertical patch of pixelated color occluding part of the upper left area amidst the surrounding foliage. +sun_beopakcnchiohqwu.jpg A narrow, rocky creek with flowing water and visible white frothy textures, surrounded by brown and gray stones under sunlight, is partially obscured by a large grayish rectangular occlusion on the left side. +sun_bxbwslzwdsyvgean.jpg A small waterfall cascades over dark, mossy rocks surrounded by lush green foliage, with a significant portion on the right side obscured by pixelated noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/crevasse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/crevasse_descriptions.txt new file mode 100644 index 0000000..2c6182d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/crevasse_descriptions.txt @@ -0,0 +1,6 @@ +sun_akbzaorjubeafzju.jpg The crevasse reveals icy blue tones and rugged, uneven texture along a steep, vertical viewpoint, partially obscured by digital noise at the lower right, contrasting with a climber on a snow-covered edge. +sun_atyqdkbmcsirxtqz.jpg The visible portion of the crevasse is characterized by a white, snowy texture with some dirt speckles, viewed from above, while the center is covered by a vertical, pixelated occlusion, allowing only the edges of the icy, shadowed interior to be seen. +sun_alfglsmhvwaztemo.jpg The crevasse is partially visible and situated within a snowy landscape, displaying a rough, icy texture with shades of gray and white, viewed from an aerial angle while a multicolored pixelated occlusion obscures a large central section. +sun_algtrvrfayrehtya.jpg A narrow icy crevasse with pale blue walls is visible from a mid-angle viewpoint, showing rough, jagged textures along its vertical surfaces where individuals navigate through, partially occluded by a large pixelated block concealing part of the scene. +sun_acpbhtuhtayjoqro.jpg The crevasse appears in a partially obscured icy landscape with snow-covered edges on the visible sides, while the central part is obscured by a dense, multicolored digital noise pattern. +sun_afrftdmnxihgehlm.jpg The crevasse appears as a deep, shadowy chasm of muted blue and gray tones with sharp snow-laden edges, partially obscured by a rectangular area of heavy noise that covers the central section of the image. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/crosswalk_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/crosswalk_descriptions.txt new file mode 100644 index 0000000..718f1a7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/crosswalk_descriptions.txt @@ -0,0 +1,6 @@ +sun_afustxvkkqxnxvuq.jpg The crosswalk appears to be light-colored and textured with leaves scattered across, viewed from an oblique angle with significant distortion covering a central portion, revealing surrounding cement pavement and road markings amidst a park-like setting. +sun_aovzhjjsnaermuds.jpg The crosswalk appears diagonally with alternating white stripes on gray asphalt under natural light, partly occluded by colorful static noise in the lower portion, with a yellow road sign above. +sun_byhninokvevsmxgv.jpg The crosswalk, viewed from a slightly elevated angle, shows broad white stripes on a busy urban street, heavily occluded by a colorful, pixelated rectangle that obscures the central area, while buildings and crowds surround the scene under evening lights. +sun_aveacipwysuhoqxj.jpg The image shows a diagonal yellow-striped crosswalk on a dark, possibly asphalt surface, heavily occluded by a vertical, colorful noise pattern covering the central portion, with visible stripes on either side under dim lighting conditions. +sun_ajqsvdblkvtesumm.jpg The crosswalk, viewed obliquely from a sidewalk, appears in alternating light and dark gray stripes on asphalt, partially obscured by a large vertical pixelated area on the right, with a surrounding urban environment featuring a bright yellow pedestrian sign above. +sun_armehemshtwxcfcv.jpg The crosswalk appears from a ground-level viewpoint with faint yellow lines barely visible against an asphalt surface, partially obscured by a large, colorful, noise-like occlusion on the right, set in an urban environment with a multi-story building in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/cubicle_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/cubicle_descriptions.txt new file mode 100644 index 0000000..ee573d8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/cubicle_descriptions.txt @@ -0,0 +1,6 @@ +sun_awloagtarufnlbcz.jpg The cubicle features gray partition walls and a cream-colored desk surface, with a white drawer unit underneath to the right, all viewed from a front-facing angle and partially occluded by a colorful, static-like overlay at the center. +sun_apcepjolxbjhtmcr.jpg The cubicle, viewed from a frontal angle, has beige and gray tones with a textured surface, partially covered by colorful static-like occlusion on the left side, and includes a visible corner desk on the right with a small box or tray. +sun_abbusdkdkscltfqn.jpg The cubicle features beige and white surfaces with dark edges, viewed diagonally from above with a large, colorful digital occlusion covering much of the background, and the workspace includes organized documents, a monitor, and office supplies visible on the desk. +sun_aryvivyirbqbklgf.jpg The cubicle features a modern design with light gray paneling, a clean white tabletop, and a computer screen visible behind a brightly colored static occlusion, while a black lamp and phone add contrast to the workspace setup. +sun_azpfntvbsarkchag.jpg The cubicle has brown fabric walls, is set against a light-colored wall with office chairs around, and is partially occluded by a large, colorful static-like pattern covering the central area. +sun_aehzyppmcfhresge.jpg A low-resolution image shows a cubicle with gray partition walls, part of a seated chair visible in the foreground, several items on desks, and a large pixelated area obscuring part of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/dam_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/dam_descriptions.txt new file mode 100644 index 0000000..bf1c9b4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/dam_descriptions.txt @@ -0,0 +1,6 @@ +sun_dggbmvbmjkoyvbqf.jpg The dam appears as a concrete structure with dark, curved segments visible from a slight angle above the waterline, partially occluded by a vertical section of colorful static on the left, with calm water reflecting the structure and a clear sky above. +sun_dzihkouquumyrnxa.jpg The dam appears partially visible with a brownish, textured surface from an angled viewpoint, surrounded by lush green trees and a blue sky, with the bottom left heavily occluded by static-like noise. +sun_dnjiwmxcivewhkvg.jpg The image shows the left side of a dam structure against a watercolor-filled reservoir with a distinct earthy and rugged landscape; the right side reveals a concrete arch bridge over the dam with a rocky background, while the central portion is heavily occluded with colorful static noise. +sun_dbburoqwmysqnnto.jpg A concrete dam, light gray in color with a smooth texture, is visible in a frontal viewpoint, partly obscured by a large, pixelated occlusion on the right, while surrounded by a vibrant landscape with a rainbow above and water below. +sun_dgqwlreozadmvwmc.jpg The dam appears with a smooth gray concrete texture, viewed from an angle that reveals a sloping face extending into the distance, with a significant part of the right side occluded by multicolored static, while surrounded by a natural forested and water environment under a clear sky. +sun_dhntdkoimhmptspp.jpg The dam appears as a curved structure in a pale beige or light concrete color with a smooth texture, viewed from above and slightly to the side, with a large portion occluded by vertical multicolored noise on the left, and clear water with contrasting rugged, reddish terrain in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/delicatessen_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/delicatessen_descriptions.txt new file mode 100644 index 0000000..89233fe --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/delicatessen_descriptions.txt @@ -0,0 +1,6 @@ +sun_ancfxclnocynbyvy.jpg The image shows a refrigerated display case with various round cheeses, partially occluded by a multicolored static-like pattern at the bottom, with the visible cheeses having distinct labels, textured rinds, and wrapped in plastic. +sun_andlkcdnnccbtwfz.jpg The delicatessen scene displays a cluttered countertop with transparent containers filled with mixed, textured goods, surrounded by people wearing casual clothing, all partially obscured by a large, pixelated, colorful occlusion at the center. +sun_aruqoordcgflqydm.jpg The image shows a delicatessen section with boxed food items in various shades of red and brown, placed on a shelf with visible grainy texture and heavy pixelated occlusion on the left, under bright ceiling lights, with cleaning supplies and paper products visible in the background. +sun_aiadnwveumloxddg.jpg The delicatessen features a warmly lit interior with glass display cases filled with assorted baked goods, and has a modern chandelier overhead, while the left side of the image is obscured by colorful static. +sun_ailhgpjyeadwyhrf.jpg The image shows a delicatessen counter from a side angle, with mostly visible sections including a curved glass display filled with various packaged items against a vibrant yellow wall featuring chalkboards, while heavy digital noise obscures much of the right side and background. +sun_aaraqzhbyaugbkvx.jpg The delicatessen, partially visible in low-resolution, is predominantly occluded by a multicolored, static-like texture in the central part of the image, surrounded by dim ambient lighting and subtle wooden textures of the furnishings in the visible sections. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/dentists_office_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/dentists_office_descriptions.txt new file mode 100644 index 0000000..d0b1978 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/dentists_office_descriptions.txt @@ -0,0 +1,3 @@ +sun_agecezkjndimyzmw.jpg The image shows a clinical space with fluorescent ceiling lights, white walls, a wooden desk, cabinetry, and individuals wearing blue and pink protective coverings; a significant portion of the scene is obscured by a colorful, static-like occlusion in the center. +sun_abygikuiflbrtimf.jpg The dentist's office features a bright green wall and a patient chair where a young patient is seated, partially occluded by a pixelated area to the left, with the dental professional and ceiling light visible in a relaxed clinical setting. +sun_awadljqpbvugyjez.jpg The image shows a dentist's office with muted colors and a clinical texture, visible from a side angle where the right half is heavily occluded with multicolored static; on the left, there are white dental equipment and light teal accents, with vertical blinds partially visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/desert_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/desert_descriptions.txt new file mode 100644 index 0000000..e4fee79 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/desert_descriptions.txt @@ -0,0 +1,6 @@ +sun_bdgvlhvggyqiehii.jpg The image shows a desert landscape with reddish-brown rocky formations, partially obscured by a noisy, colorful occlusion on the left, and scattered patches of green vegetation on sandy terrain in a gentle incline under an overcast sky. +sun_bkdgqkjviqhtpofo.jpg A landscape of tall, slender cacti with segmented arms is visible, surrounded by sparse green vegetation under a muted, earthy-tone sky, partially obscured by a central vertical rectangle of multicolored static. +sun_bfcznyjjveltrvmb.jpg The image shows a vast, arid landscape with a muted green and brown vegetation-covered flatland, surrounded by low, dark mountain ranges under a clear blue sky, partially obscured by a large area of dense, multicolored static noise on the upper right side. +sun_ajqkymqgzhkwrpte.jpg A landscape view of a desert with smooth, undulating sand dunes in light brown, under a clear blue sky with a rectangular area of colorful noise occluding the center. +sun_afnezlyrmmdropae.jpg The desert has a vast, flat plain with a light brown, sandy texture, minimal vegetation, and a clear sky, while a person in red kneels in the foreground with the right side heavily occluded by noise. +sun_bmvwgdswpqxraind.jpg The image shows a sandy desert with pale beige dunes under a clear blue sky, and an all-terrain vehicle with a red body partially visible at the center, obscured by a large block of multicolored noise covering a significant portion of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/diner_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/diner_descriptions.txt new file mode 100644 index 0000000..b1ab637 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/diner_descriptions.txt @@ -0,0 +1,4 @@ +sun_adidqikdsduzwxcz.jpg The diner features retro car seating with turquoise upholstery, dim atmospheric lighting, a large screen playing a vintage black-and-white film, and significant pixelated occlusion on the right side, surrounded by tables with condiment holders. +sun_atjecfnksbyiqqxf.jpg The diner features a retro aesthetic with a visible red and white striped awning, accompanied by red accents and a visible vintage red gas pump, partially surrounded by greenery with significant occlusion in the central area. +sun_acmcbzzondnvepgv.jpg The diner has a retro style with pastel turquoise counters and bar stools, a mosaic tiled counter-front, a neon sign illuminating "GOLDEN APPLE," and is partially occluded by a colorful static noise block over the counter area, with visible white mugs and various condiments aligned along the counter. +sun_anmmfmjbwctfpltq.jpg The diner features a warm, dim interior with red walls, checkered black and white flooring, reflective metal chairs, wooden tables set symmetrically with condiments and napkin holders, and is heavily occluded on the right side with colorful static noise, partially obscuring part of the seating area. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/dinette_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/dinette_descriptions.txt new file mode 100644 index 0000000..8dba70b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/dinette_descriptions.txt @@ -0,0 +1,5 @@ +sun_anxhcdybbzfvmfiv.jpg The dinette features a wooden table with a polished surface, surrounded by dark cushioned seating forming an L-shape, with the right side of the booth partially obscured by a vertical band of multicolored noise, set against a warm, wood-paneled interior with nautical-themed decor. +sun_bdhejjniorttwsue.jpg The image shows a dinette with visible blue cushioned seating along the sides and a table with a light top surface and placemats, partially obscured by colorful static-like noise close to the center, viewed from a side angle inside a compact, boat-like interior. +sun_bojmasebanuzxeez.jpg The dinette, viewed from a slightly angled overhead perspective, features a warm wooden texture and color with a significant central occlusion, partially revealing a blue upholstered bench and a polished wooden table set amidst the wooden cabin surroundings. +sun_buobqtwkewdqrpec.jpg A tan and brown tiled floor leads towards a corner dinette area with a hanging light fixture and large window, partially obscured by pixelated occlusion, while a painting decorates the adjacent wall. +sun_bfuchcuyacqdodaw.jpg The dinette features light wood cabinetry and beige upholstery with a patterned texture, partially obscured by a digitally augmented speckled block covering the right side, while the remaining area is decorated with sunflower arrangements and paneled curtains with a leaf design. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/dining_car_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/dining_car_descriptions.txt new file mode 100644 index 0000000..7a6000e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/dining_car_descriptions.txt @@ -0,0 +1,3 @@ +sun_aizkqaqrknbuchpw.jpg The dining car has a warm brown color with smooth wooden textures and consists of cushioned tan seating and metallic accents; it has a right-side view with large windows mainly unobstructed, but the left portion is heavily occluded by a multicolored noise pattern. +sun_anbukhwtldrzhpxx.jpg The dining car features elegant black wrought-iron detailing on the seats, a warm golden hue on the walls, and soft overhead lighting, while a large central area is heavily occluded with multicolored static. +sun_athesavqnozijlho.jpg The dining car has maroon and cream-colored seating with white tablecloths, viewed from the aisle with colorful static occluding the center, and features large windows letting in bright natural light along the sides. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/dining_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/dining_room_descriptions.txt new file mode 100644 index 0000000..aae4700 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/dining_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_arypsmgrfxuxnaxq.jpg The dining room features polished wood flooring and an ornate area rug, with a wooden dining table partially concealed by pixelated occlusion in the lower right, and white walls and columns enhancing the bright, open layout. +sun_bxcvhbkdkwsidcvj.jpg The dining room features a smooth light-colored floor, black chairs with sleek designs around a glass table, and a counter with high stools partially obstructed by a vertical section of heavy colorful noise on the right. +sun_bhlglausydyftfky.jpg The dining room features a long, wooden table with matching chairs and is partially visible from a side perspective, with the central area occluded by colorful visual noise, leaving some light walls and framed artwork discernible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/discotheque_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/discotheque_descriptions.txt new file mode 100644 index 0000000..5db20de --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/discotheque_descriptions.txt @@ -0,0 +1,5 @@ +sun_akeuplsrxpinrcfv.jpg The image shows a dimly lit discotheque with people dancing in formal attire, predominantly in black, white, and grayscale, illuminated by soft overhead lighting, with a large portion of the scene obscured by a pixelated gray rectangle on the right side. +sun_adlujvozenbxfktn.jpg A dimly lit, crowded discotheque filled with people under red lighting, partially obscured by a central multicolor static occlusion, with visible structural elements like beams and ceiling lights above. +sun_aopqehmapsfjnrve.jpg A dimly lit space with a reflective disco ball on the left, surrounded by vibrant pink and purple lighting patterns, is partially obscured by a rainbow-colored static occlusion spanning the right side. +sun_awfomovslugnvzxf.jpg A dimly lit interior scene with a crowded dance floor under blue and purple lights, partially occluded by a dense, multicolored noise pattern on the right, leaving only the vibrant dance floor and arched entrances visible on the left. +sun_abvpyigvhistixrr.jpg The image shows a dimly lit discotheque with a sleek, glossy black floor reflecting muted red and blue lighting, with ornate chandeliers overhead; the center is heavily occluded by static-like noise, obscuring the middle part of the venue. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/dock_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/dock_descriptions.txt new file mode 100644 index 0000000..46c2e45 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/dock_descriptions.txt @@ -0,0 +1,6 @@ +sun_beehbulswilcurxg.jpg A wooden dock with a light brown, textured surface extends over calm water, viewed from a side angle, with the right half heavily obscured by colorful noise; the surrounding area features lush green trees and grassy banks. +sun_bahlvksabxbqjxxq.jpg A weathered wooden dock with a grayish hue extends over marshy reeds, viewed from an elevated perspective, with a heavily pixelated and colorful occlusion in the center, partially blocking the horizon and occupying the middle section. +sun_bbpcphavqparqdrw.jpg The dock, viewed at an angle from the shoreline, features a reddish-brown wooden texture with straight, geometric lines, partially obscured by a large, colorful pixelated block at the center, surrounded by deep blue water and rocky terrain. +sun_bhqqzuahqmonorel.jpg The dock appears to have a reddish-brown hue, partially visible on the left side beneath a heavy rectangular occlusion, with textured pebbles leading to calm water on the right and vibrant red flowers in the foreground. +sun_bbrtcbtjktdgcxxe.jpg A wooden dock with a reddish-brown finish, partially obscured by a large vertical grey and static-textured occlusion, extends diagonally from the bottom left to the center, surrounded by clear blue water and housing structures in the background. +sun_ajawzbrlrwafowen.jpg The dock is seen from a side angle leading into the water, with visible parts showing a brown, wooden texture, and it is partially occluded by colorful static noise in the center with the background featuring a calm lake and trees under a slightly cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/doorway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/doorway_descriptions.txt new file mode 100644 index 0000000..048a126 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/doorway_descriptions.txt @@ -0,0 +1,5 @@ +sun_awkkhukgikrtnjrx.jpg The doorway features a white frame with a semi-circular window at the top, situated within a red brick facade partially covered by digital noise on the left, with gray steps and a small dark object nearby. +sun_aadtnghfqtineyhm.jpg The doorway features a light stone frame, black horizontal bars, a shiny gold handle, and a large multicolored occluded area in the center, with a visible street reflection on the right. +sun_azvajuevxhmpligi.jpg The doorway features a classic-style white archway with visible brick steps and potted plants on either side, partially obscured by colorful, pixelated occlusion occupying the left section. +sun_bzudlcycazrwumad.jpg The doorway features aged reddish-brown brickwork with a series of arches above, contrasting against a wooden door with glass panels on the left while the right side is obscured by a multi-colored, static-like pattern, and the setting includes an open passageway leading into a dim interior. +sun_avbryaqbzlmsbemq.jpg The doorway features ornate wooden double doors with intricate carvings, set within a stone facade, partially occluded by a colorful, pixelated rectangle across the upper portion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/dorm_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/dorm_room_descriptions.txt new file mode 100644 index 0000000..6aaa063 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/dorm_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_asnpptolihdvezok.jpg The dorm room features a beige carpet with a texture altered by low resolution, a white wall partially covered by heavy pixelation on the left, a simple bed with white sheets in the foreground, and large windows with sheer curtains allowing diffused daylight to filter in, alongside a dark-colored curtain to the right. +sun_bozrdgckqtvpofyg.jpg The dorm room features a light-colored wall with posters, a cluttered desk with a white monitor, and a pink bed partially visible, while a significant part of the right side is occluded by a digitally noise-filled vertical stripe. +sun_bgtoxzuisdpfcvtr.jpg The dorm room appears from an angled view to have a cluttered wooden loft bed with visible colorful striped bedding, surrounded by miscellaneous items on the light-colored carpeted floor, with significant visual noise occlusion covering a portion of the lower bed and adjacent area, while the background features a small shelf with personal items and a neutral wall. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/driveway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/driveway_descriptions.txt new file mode 100644 index 0000000..9a31ffc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/driveway_descriptions.txt @@ -0,0 +1,6 @@ +sun_aempdhktyiimhhry.jpg The visible portion of the driveway is smooth and dark gray with a curved layout, bordered by a narrow, light-colored edge, surrounded by grass on either side, with significant multi-colored digital noise obscuring the central area. +sun_akvjxizzqodysszv.jpg The driveway, viewed from the front with a central perspective, features reddish-brown herringbone brickwork leading up to a black wrought-iron gate, with the left side heavily occluded by a gray and noisy rectangular patch that obscures part of the adjacent yellow house and plant-lined environment. +sun_aezgdcewzmyezmgd.jpg The driveway is composed of reddish-brown bricks laid in a herringbone pattern, viewed from an angle, with the center heavily occluded by colorful digital noise amidst a surrounding environment of green grass and trees. +sun_afjhxxurtkniewgf.jpg The driveway, viewed from an angle, consists of gray interlocking pavers with a subtle herringbone texture, partially occluded by a large, vertically textured rectangle on the left, amidst a setting of parked cars and brick-edged greenery. +sun_awqutrxvixryrlwg.jpg The driveway appears to be a reddish-brown stone path with a speckled texture, viewed from a ground-level perspective, surrounded by grass, with the lower left obscured by multicolored noise. +sun_arwetbzahpuoatgt.jpg The driveway, viewed from a frontal angle, features light brown, rectangular bricks arranged in a herringbone pattern, with a central area obscured by heavy visual noise, flanked by red wooden gates and bordered by grass and brick houses in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/driving_range_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/driving_range_descriptions.txt new file mode 100644 index 0000000..95ec8d8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/driving_range_descriptions.txt @@ -0,0 +1,3 @@ +sun_autoyfxzjbeuwpzf.jpg The driving range features a grassy, green surface visible from a frontal viewpoint, enclosed by tall, netted fences with open blue skies and trees in the background, while a large, pixelated occlusion covers the left portion of the image. +sun_bzycdwrokuvigvxr.jpg The image shows a driving range with green grass under a clear blue sky, partially obscured by a dense, colorful static-like occlusion in the central foreground, while sparse trees are visible in the background. +sun_brvtcfggzrsifiwv.jpg The image shows a golfer swinging a club on a grassy fairway with several trees and buildings in the background, partially obscured by a large rectangular area of colorful static-like noise covering the lower central portion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/drugstore_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/drugstore_descriptions.txt new file mode 100644 index 0000000..96efb50 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/drugstore_descriptions.txt @@ -0,0 +1,6 @@ +sun_aoxkkadsoorxoydh.jpg The drugstore interior, viewed from the front, has white and beige shelving units displaying various rectangular products with vibrant colors, while a significant central portion is obscured by a multicolored static pattern, surrounded by a tiled floor and bright lighting. +sun_dmttivqmhcbxjxjt.jpg The drugstore features light wood shelving and counters, a vibrant array of green and pink products on the back shelves, with a central gray and colored static occlusion masking a large portion of the scene, while natural light streams in from the right through a window. +sun_defpjfeelulwhzxk.jpg The image shows a drugstore with a warmly lit interior featuring dark wooden counters and shelving filled with neatly arranged products, with a large colorful occlusion on the left and patterned flooring adding a textured element to the scene. +sun_dyozuivlltmqucxv.jpg The drugstore features bright white display shelves filled with assorted colorful products, partially hidden by a large, pixelated occlusion over the center, while the visible area reveals overhead signage in a language other than English and a modern retail counter with digital equipment. +sun_dmormvxfdpnhiozq.jpg The drugstore features a beige counter with visible product displays and price tags, a partially occluded view of a person in a white coat behind the counter, and a pixelated area obscuring part of the background, surrounded by rows of neatly arranged shelves displaying various packaged goods. +sun_dyouofszehvkdyyl.jpg The drugstore interior is viewed from the front entrance, showing warmly lit shelves filled with various health and beauty products, while a large, colorful pixelated occlusion covers the central left area, and visible white and light wood textures dominate the remaining décor. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/electrical_substation_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/electrical_substation_descriptions.txt new file mode 100644 index 0000000..884b5ab --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/electrical_substation_descriptions.txt @@ -0,0 +1,3 @@ +sun_dimimrfriisxbhui.jpg The electrical substation structure is viewed from a frontal angle, appearing metallic gray with a heavily pixelated occlusion covering the central part, while the surrounding environment includes some parked vehicles and a barren, brownish landscape. +sun_dddnxqbirpwqeukx.jpg The image shows a construction site with an exposed metal frame structure against a cloudy sky; a significant portion on the right is obscured by digital noise, leaving visible some reddish-brown earth, scattered debris, and partially constructed walls in the background. +sun_dmofjliunlufqvcp.jpg The electrical substation is partially visible, displaying a few metallic, silver-gray structures with wires extending upward into a deep blue sky, while the central portion is heavily occluded with a dense, multicolored noise pattern, and the surrounding environment includes a clear horizon and sparse ground vegetation. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/elevator_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/elevator_descriptions.txt new file mode 100644 index 0000000..e447c8a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/elevator_descriptions.txt @@ -0,0 +1,6 @@ +sun_aumqjmqmxbuiatji.jpg The elevator door features a black frame with a glossy finish and a central section obscured by multicolored static, surrounded by green-trimmed white walls, viewed from a frontal perspective, with decorative paneling visible above the door. +sun_amnaszbnudrpzebc.jpg The elevator interior has a warm wood-paneled texture with a rich brown hue, viewed from the front with visible spot lighting from above, and occlusion on the right side by a colorful pixelated block, standing out against a clear tiled floor backdrop. +sun_aglxtfxcaotvscoh.jpg The elevator is viewed frontally with a beige and metallic color scheme, featuring an open door with visible interior lighting, and a large central occlusion created by a colorful, pixelated pattern obscuring the middle section. +sun_aflydvlcbuealumn.jpg A partially visible elevator with a light-colored, smooth texture is shown in a frontal view, exhibiting a darkened interior while the right and rear walls are unobstructed, surrounded by a pixelated occlusion covering the left portion. +sun_agdejdnfhhpavjmk.jpg The image shows a wooden-textured elevator interior with brass-colored trim, partially obscured by a colorful static-like occlusion on the central panel, viewed from a frontal angle. +sun_apjzntryvcmobxdi.jpg The elevator features metallic walls with vertical paneling viewed from an interior angle facing outward, with colorful static-like occlusion on the right panel and a visible glass back wall showing a light-filled atrium. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/elevator_shaft_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/elevator_shaft_descriptions.txt new file mode 100644 index 0000000..712e7a5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/elevator_shaft_descriptions.txt @@ -0,0 +1,3 @@ +sun_agqptvebrkgytbfi.jpg The elevator shaft is viewed from a side perspective, revealing metallic textures and structures with a dominant brown hue, while the central area is heavily occluded by multicolored noise, contrasting against the visible vertical cables and steel framework at the edges. +sun_azlzkzhjfgyveovh.jpg The elevator shaft appears in a vertical viewpoint with a gritty, dark concrete texture visible on the walls, rusty support beams on the sides, and the occlusion forming a pixelated block of noise covering the right central portion, leaving some debris and cables still discernible. +sun_acwykadkcgeddmxc.jpg The elevator shaft, seen from a top-down viewpoint, is partially visible with rusted metallic walls and beams, and is heavily occluded by a colorful, static-like rectangle in the central area, while the surrounding environment appears dimly lit and industrial with scattered debris. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/engine_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/engine_room_descriptions.txt new file mode 100644 index 0000000..619adad --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/engine_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfqidpbitnshreud.jpg The image depicts an engine room with visible green and yellow painted machinery and piping, a red railing, and a pixelated occlusion obscuring the upper section, revealing a crowded arrangement known for its industrial complexity. +sun_ayboezqgoyvjtruz.jpg The image shows an engine room with a person in a blue jumpsuit reaching upwards towards a circular metal object amidst pipes and dials, with colorful static noise occluding the right side of the scene. +sun_bynznvdclrjaxpzk.jpg The engine room features a teal and metallic color palette with visible pipes and machinery on either side, showing a symmetrical layout from a frontal viewpoint, while a dense occlusion obscures the central section, revealing the ceiling and upper walls with curved pipes and a small light. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/escalator_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/escalator_descriptions.txt new file mode 100644 index 0000000..ebf8f1f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/escalator_descriptions.txt @@ -0,0 +1,6 @@ +sun_brxbdryfmgwwgrlb.jpg The escalator features metallic silver surfaces with a visible textured pattern on the steps, viewed from the bottom looking upward, with significant multicolored pixelated occlusion covering the central portion, leaving portions of the handrails and edges unobstructed. +sun_bansqzlgnhefrncx.jpg The escalator features a sepia-tone color scheme, a mirrored side panel showing two people with text visible, and is partially occluded by a large, pixelated square, obstructing the left side of the image. +sun_aqmwwrzuquspehpd.jpg The escalator, viewed from a frontal angle, is partially occluded by a colorful noise pattern in the center, with visible sections having metallic handrails and grey steps surrounded by a glass-arched ceiling and bustling environment. +sun_bmnfcgpawajtbivi.jpg The escalator, viewed from the bottom with visible red lighting reflecting on its curved railings, is partially occluded by a pixelated square, and the surrounding environment has a smooth, pinkish hue with a tunnel-like shape. +sun_bqsxothbazqnabdi.jpg A section of the escalator is visible at an angle, showing dark textured steps with a metallic sheen, while part of it is heavily occluded by colorful static noise on the right, with visible hints of escalator handrails. +sun_amrwileiufdtwqby.jpg The escalator appears partially visible with metallic sides and a black step surface, viewed from an angled perspective, with heavy multicolored noise occluding the central portion, leaving only the edges and some surroundings discernible. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/excavation_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/excavation_descriptions.txt new file mode 100644 index 0000000..9ada031 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/excavation_descriptions.txt @@ -0,0 +1,5 @@ +sun_bafbwenfgnftruiu.jpg The visible portion of the excavation shows a rusty-brown, textured digger arm in an upright position, with the occlusion as a large, static noise rectangle on the left, next to a white building and an open, grassy environment. +sun_aiilvjpxndcheplw.jpg The visible section of the excavation features a muddy, earth-toned pit with rugged texture along the edges, partially bordered by a wooden retaining structure, and is alongside a construction site with a pipe protruding near the murky water, all under an overcast sky, while the left side is completely obscured by a grainy, gray noise occlusion. +sun_bczyhtycrunqjqvk.jpg The image features a construction site with a dirt-brown, earth-moving machine partially visible on the right side, where the background shows uneven terrain and scattered greenery, while a textured digital occlusion covers most of the photo's central area. +sun_barmypzyfrevgpex.jpg The image shows a muddy construction site with earth-moving equipment partially visible, where the central part is obscured by colorful digital noise, revealing the surrounding area as uneven, textured with dirt, and featuring several pipes laid across the rough terrain under a bright sky. +sun_bcdowvgzvvzapzzc.jpg A large yellow excavator with visible metal tracks is partially occluded by a colorful, static-like vertical strip, positioned against a backdrop of a clear sky and distant green landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/factory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/factory_descriptions.txt new file mode 100644 index 0000000..f0a77d7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/factory_descriptions.txt @@ -0,0 +1,5 @@ +sun_dwhqpoxbcgeuqsok.jpg A large, industrial interior with visible green and yellow machinery is partly obscured by a central rectangular gray occlusion, with overhead metal beams and track-like structures suggesting a complex assembly environment. +sun_besrvufbqtrspmdz.jpg The image shows an industrial setting with robotic arms in a metallic and orange hue processing uniform stacks of crates on a conveyer, while the bottom portion is occluded by a colorful, pixelated area. +sun_biezaieynhqkqkop.jpg The image features a factory interior with visible beige walls and a high ceiling, partially obscured by pixelated occlusion in the lower left, where metal structures and equipment, including conveyor belts and shelving, are discernible amidst scattered tools and dim lighting. +sun_bbzncpgadqrdxykc.jpg A large factory interior with a high ceiling is visible with industrial equipment and workspaces scattered throughout; the floor has a polished gray texture and a significant area on the right is heavily occluded by multicolored static. +sun_duxabwwiqquxqrds.jpg The factory appears from an elevated viewpoint with a warm, yellowish hue dominating the environment, partially obscured by a central, colorful pixelated occlusion, while metallic structures and machinery are faintly visible amidst the industrial setting. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/fairway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/fairway_descriptions.txt new file mode 100644 index 0000000..f0aa4d6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/fairway_descriptions.txt @@ -0,0 +1,5 @@ +sun_bkolplhycxpjebqa.jpg The fairway is partially visible with a lush green texture and slight natural undulations, but heavily occluded by a vertical band of colorful static noise on the right side, viewed from a perspective where a golfer is swinging amidst vibrant greenery in the background. +sun_bbatxvtlyykharmu.jpg A partially visible grassy expanse of a fairway appears vivid green with a smooth texture, viewed from a low angle, while a large pixelated occlusion obscures the left side, adjacent to a slightly undulating and manicured surface with a prominent yellow flag in the foreground. +sun_bfuhvvjvbcgolysx.jpg The fairway is a slightly sloping green field with a patchy grass texture, partially obscured by a lower corner area filled with colorful static-like noise, surrounded by scattered trees and a visible sand trap on the right under a clear blue sky. +sun_bjwkyorcxzpbmglu.jpg The fairway appears as a lush, green expanse with a smooth texture, viewed from a slightly elevated angle, with the scene partially obscured by a large, pixelated, multi-colored rectangular occlusion on the left-hand side, and surrounded by dense, dark green foliage under an overcast sky. +sun_bgayzkfqmlsezgap.jpg A lush green fairway with smooth texture is partially visible on the left side of the image, with a thick rectangular occlusion to the right covering the center, surrounded by vibrant trees and a golfer captured mid-swing. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/fastfood_restaurant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/fastfood_restaurant_descriptions.txt new file mode 100644 index 0000000..80ac5ab --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/fastfood_restaurant_descriptions.txt @@ -0,0 +1,3 @@ +sun_bwiuwtzdqbydpwnd.jpg The visible portion of the fast-food restaurant displays a warm yellow and red color scheme with bright lighting, a staff member wearing a yellow uniform is partially visible behind two white-finished cash registers, while menus featuring food items are displayed above against a red background, with a large occlusion made up of colorful noise obscuring a significant portion of the scene. +sun_ayarveokhmwibtxl.jpg The fast food restaurant appears warm and inviting with a predominantly wood-toned interior featuring medium brown and wood-textured furniture, a patterned carpet, and a partially occluded central area displaying digital noise over several of the tables and chairs, with a view towards the main counter at the back. +sun_akocwzqzyfvracmn.jpg The fast food restaurant interior features red cushioned booth seating and wooden tables with dim hanging lights, viewed from an angle with a large pixelated occlusion covering part of the seating area near the TV on a beige wall. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/field_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/field_descriptions.txt new file mode 100644 index 0000000..f2fbd90 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/field_descriptions.txt @@ -0,0 +1,5 @@ +sun_aomnormaouqpemoe.jpg A landscape with patches of earthy brown and green fields under a cloudy sky, partially blocked by a vertical strip of colorful digital noise in the center. +sun_ambpzndfirfggaop.jpg A lush green field stretches across the image with a central rectangular patch heavily occluded by colorful noise, surrounded by gentle rolling hills and sparse trees under a partly cloudy sky. +sun_aejcbphdgnoyacih.jpg A desert landscape with scattered shrubs on sandy ground, under a partly cloudy sky, has digital noise heavily occluding the right side. +sun_amzycvfigmisznhx.jpg The image shows a grassy field viewed from a slightly elevated angle with a misty, pale sky, partially obscured by a multicolored, pixelated occlusion in the left foreground, while a cluster of trees and a pole are visible in the distant right background. +sun_brsgsjrcnzpjazkk.jpg The image shows a lush, rolling green field with scattered yellow wildflowers, partially obscured by heavy pixelated noise on the left, under a cloudy sky with white yurts in the distance. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/fire_escape_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/fire_escape_descriptions.txt new file mode 100644 index 0000000..4ec1496 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/fire_escape_descriptions.txt @@ -0,0 +1,3 @@ +sun_ayaitvfvpzbtembd.jpg The fire escape appears as a black metal structure with straight lines and barred patterns, viewed from a slightly angled side perspective, partially visible against a red brick building with significant digital noise obscuring the central portion where it attaches to the wall. +sun_apnsglsecvzyweqb.jpg A bright green spiral staircase with a glossy finish is attached to a red brick wall, with the right half obscured by colorful noise, while some nearby windows are partially visible. +sun_aatystcemyrbqlrp.jpg The fire escape is black with a metal texture, visible at an oblique angle on a weathered brick wall with significant occlusion by a large, rectangular, pixelated area on the upper section. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/fire_station_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/fire_station_descriptions.txt new file mode 100644 index 0000000..983e016 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/fire_station_descriptions.txt @@ -0,0 +1,3 @@ +sun_bqnswuooyaokftnw.jpg The fire station features a brick facade with a gabled roof and two visible red fire trucks parked in open garages, partially obscured by a central vertical strip of multicolored noise, surrounded by greenery and a street in the foreground. +sun_bcibkqiysswuixjr.jpg A fire station with cream walls and red roof features a visible garage occupied by a bright yellow fire truck next to neatly trimmed landscaping, partially obscured by a granular, colorful occlusion covering the left section of the building. +sun_bjihosmgxuqcqule.jpg The fire station has a muted, beige brick façade with a flat, dark brown roof, partially obscured by a central, vertically rectangular region of colorful static, and is viewed from the front with two garage doors visible on either side of the occlusion, against a backdrop of overcast sky and nearby industrial buildings. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/firing_range_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/firing_range_descriptions.txt new file mode 100644 index 0000000..244bb10 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/firing_range_descriptions.txt @@ -0,0 +1,3 @@ +sun_aiafdiwkjuemdoko.jpg The image shows two individuals lying prone at a firing range on a concrete platform under a roofed area, with the central part obscured by multicolored static, a landscape view of hills and sky visible in the background. +sun_admbthvyhzitglft.jpg The firing range appears to have a clean, industrial look with visible light gray walls and a smooth, reflective counter surface stretching along the right, while the left side is heavily occluded by static, colorful noise rendering details obscure. +sun_ajvfosnqkelfmhwy.jpg The firing range features a metal-roofed shooting area with green grass and target stands in the background, partially obscured by a digitally pixelated box on the right, while figures are positioned at the shooting benches. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/fishpond_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/fishpond_descriptions.txt new file mode 100644 index 0000000..c514149 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/fishpond_descriptions.txt @@ -0,0 +1,6 @@ +sun_bmznbkqvpdgkhkju.jpg The image shows a fishpond bordered by natural, rough-textured rocks with a gravel bed visible on the left; the center is heavily occluded by a colorful noise pattern, while to the right a stone-tiled path is surrounded by lush greenery. +sun_bhrwalczozpxscse.jpg The fishpond, viewed from a slight angle, showcases clear water with visible green lily pads in the foreground, while bright flowers and plants appear around the edges, and a large, centrally-positioned area is heavily occluded by multi-colored static, obscuring details. +sun_bywkksrozogzytsv.jpg The fishpond, viewed from a slight elevation, appears as a dark, reflective, and narrow body of water bordered by a vibrant mix of greenery and red flowers, with a significant vertical band of multicolored digital noise obscuring part of the central area. +sun_bvrfeaopeggjltxq.jpg A small square fishpond with a visible water surface slightly murky, surrounded by light-colored stone tiles, contains a few orange and black fish with plant pots and greenery at the edges, partly covered by a large occlusion on the right. +sun_bmlrqgxddlewidrd.jpg The fishpond, viewed from above, features a blurry, dark brown water surface with visible reflections, disrupted by a colorful, static-like occlusion in the upper left quadrant, surrounded by natural stone edges and minimal visible plant life, with hints of small fish beneath the surface. +sun_bciovxcdhkottyqz.jpg The fishpond appears from a slightly elevated angle, showcasing calm water with reflections of nearby buildings and greenery partially obscured by an overlaid block of colorful static noise in the lower right corner, with rocky textures and earthy greenish-brown tones surrounding the water's edge. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/florist_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/florist_shop_descriptions.txt new file mode 100644 index 0000000..59ddf16 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/florist_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_acwkallqszgnsigg.jpg A florist shop interior with visible colorful flowers in vases and wooden-panel walls, is partially occluded by vertical, dense noise covering the center, revealing two tables with various floral arrangements and plants under warm lighting on both sides. +sun_awinrvduphborrvm.jpg The florist shop is viewed from the front with a cluttered assortment of vibrant flowers cascading from the ceiling, a large pixelated occlusion on the left side, and a person in a white shirt arranging a bouquet surrounded by various green and orange foliage. +sun_atedcjfyzxonsttw.jpg The florist shop displays a vibrant assortment of colorful flowers with pink, yellow, and white hues, alongside textured green leaves, viewed from a front angle with a significant portion in the center obscured by digital noise, while the surrounding area shows assorted floral arrangements on shelves. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/food_court_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/food_court_descriptions.txt new file mode 100644 index 0000000..5ecdd44 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/food_court_descriptions.txt @@ -0,0 +1,3 @@ +sun_avnzmdpvemgnmivd.jpg The food court features diverse colored walls with a visible gradient of warm to cool tones, bright circular ceiling lights casting soft illumination, partially obscured by a large pixelated block at the center-right, and bustling with people seated at green metal chairs while some stand in lines or converse. +sun_aqkfkkcfinevbsyx.jpg The food court, viewed from a ground perspective, displays warm lighting with yellow-orange hues on the walls and ceiling, bustling with people, while a significant portion to the right is occluded by a vertical noise-filled block, obscuring part of the setting. +sun_awgipxpblijvuesb.jpg The food court features a warm color palette with predominantly orange chairs and a patterned ceiling, while the middle is heavily occluded with static-like noise, revealing some light reflections on the right side tables and partially obstructed colourful posters above. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/forest_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/forest_descriptions.txt new file mode 100644 index 0000000..27c8a0d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/forest_descriptions.txt @@ -0,0 +1,6 @@ +sun_bjvnofvviebxjtae.jpg A forest with tall, slender trees displaying a mix of green and yellow foliage is partly obscured by a grainy, gray rectangular occlusion in the center, with clear visibility of the upper and outer areas of the trees against a blue sky lit by sunlight from the upper right. +sun_bwqpknltkvcnziei.jpg The image shows a serene forest scene in soft green hues, with tall, slender trees reaching upwards and dense foliage illuminated by dappled sunlight, while a colorful noise occludes the left portion, leaving the right side open to view. +sun_apizqbiukazmkvkz.jpg Slender, snow-covered tree trunks with smooth, light gray bark rise vertically from a pristine snowy ground, while colorful pixelation obscures part of the scene on the right side. +sun_bvujnmoprteohszh.jpg A large tree trunk with a rough, textured brown bark is partially occluded on the right by a colorful, static-like pattern, with patches of green foliage and a wooded area visible in the background and a small figure in a purple top standing at the base. +sun_awmgryhozqhrvpjx.jpg The image depicts an upward view of a forest with vibrant green leaves set against a bright sky, featuring a large tree with a dark, twisting trunk and a significant, pixelated occlusion on the right side. +sun_bwhpuccxkxzzfnfp.jpg The image shows a dense, verdant forest with moss-covered rocks and a rocky creek bed at the center, viewed from a ground-level angle, with a heavy digital noise occlusion on the right side obscuring part of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/forest_path_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/forest_path_descriptions.txt new file mode 100644 index 0000000..a105d2d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/forest_path_descriptions.txt @@ -0,0 +1,3 @@ +sun_adkvekgtxwydbklw.jpg The forest path features a narrow wooden walkway surrounded by trees with vivid yellow leaves, partially obscured by a colorful, pixelated rectangle on the right side. +sun_asmdxqdvxwaktmcl.jpg The visible part of the forest path is a narrow, dirt trail surrounded by dense, bright green foliage, with dappled sunlight filtering through the trees, while a large, pixelated occlusion covers the upper central portion of the image. +sun_abwdsfuvrmebvzio.jpg A meandering forest path with a coarse, pebbled texture and shadowed by tall, dark green trees on either side, is partially obscured by a central vertical strip of colorful noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/forest_road_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/forest_road_descriptions.txt new file mode 100644 index 0000000..55c0ee0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/forest_road_descriptions.txt @@ -0,0 +1,3 @@ +sun_aosblbayphxfhosm.jpg A curved, sunlit forest road with yellow lines is partially obscured by pixelated noise on the top left, bordered by wooden railings and flanked by greenery. +sun_asoslkyvaokenrgf.jpg The image depicts a forest road seen from a low angle with visible yellow dividing lines on a dark, smooth asphalt surface, bordered by tall green trees providing partial canopy, and a section on the right heavily occluded by pixelated noise. +sun_bobahfpuaziicdbu.jpg The gravel forest road appears to stretch into the distance under a cloudy sky, with evergreen trees lining the sides and a large, pixelated area of digital noise occluding a central portion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/formal_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/formal_garden_descriptions.txt new file mode 100644 index 0000000..7025ab0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/formal_garden_descriptions.txt @@ -0,0 +1,3 @@ +sun_bcjpssemeyhmebmn.jpg The formal garden is viewed from an elevated angle, showcasing vibrant, multicolored flower beds arranged in symmetrical patterns, surrounded by manicured greenery and hedges, with a large rectangular occlusion on the right side, partially obscuring the path and additional flora. +sun_bkajdrhtlhzsgqjs.jpg A picturesque formal garden viewed from a slightly elevated angle features a vibrant tapestry of blooming flowers in shades of red, yellow, and purple amidst lush green foliage, partially obscured by a large, centrally positioned block of speckled noise, surrounded by neatly trimmed hedges and winding paths. +sun_bzpumfucozurlgtw.jpg A bright green, well-manicured grass lawn is framed by dense, leafy shrubs and trees under a clear sky, with a significant central occlusion of colorful noise obscuring a rectangular section of the view. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/fountain_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/fountain_descriptions.txt new file mode 100644 index 0000000..518f3ee --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/fountain_descriptions.txt @@ -0,0 +1,5 @@ +sun_abpvorsmjeokollx.jpg The fountain features bright white and yellow illuminated jets of water rising vertically against a dark night sky, with a significant portion of the image obscured by a colorful static noise in the upper left area, while buildings faintly glow in the background. +sun_aeoiwiigqpgexzjt.jpg The fountain appears as tall, vertical streams of water with a fine misty texture emerging from a large pool, viewed from a distance with a split-screen occlusion revealing left-side buildings contrasting a colorful grain in the middle and a side area marked with year 2001. +sun_auxqeuzjkfrqpuma.jpg The fountain appears to be composed of light stone with intricate sculptural elements on a geometric base, partially obscured on the right by dense, colorful noise, situated in an outdoor area surrounded by numerous statues and trees in the background. +sun_andjfhljhpzueffu.jpg The fountain features multiple slender, vertical streams of water emerging from a circular basin, with a metal structure partially obscured by noise on the right, all set against a backdrop of urban architecture. +sun_ajcrlaxwkbmptszk.jpg The image shows a scene with lush green trees and some parked vehicles, with a central area obscured by a large pixelated square, making it difficult to discern the fountain’s features. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/galley_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/galley_descriptions.txt new file mode 100644 index 0000000..0009e59 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/galley_descriptions.txt @@ -0,0 +1,6 @@ +sun_bolnsfhtxunujgzv.jpg The galley features a cream-colored cabinet with a gray countertop, partially obscured by heavy occlusion in the center, with visible electronic controls and a sleek chrome handle, set against a soft fabric backdrop with patterned material. +sun_bnffmggvawzltrnc.jpg The image shows a galley with warm wooden cabinetry and a countertop on the right side, with a large area of colorful noise obscuring the center, while a French press and blue bowls are visible on the left. +sun_bjoezojjmosepgmb.jpg The galley features a compact, U-shaped layout with wooden cabinets, silver appliances, and a dark countertop, partially obscured by a pixelated mesh covering the right side, while spices in transparent containers add detail around the central area. +sun_bnqjbouijtzdjvuw.jpg The image shows a galley from a frontal viewpoint with a modern layout; the environment is predominantly white with wooden trim, featuring glossy and smooth surfaces, while a significant section in the middle right is heavily occluded by colorful, pixelated noise yet highlights stainless steel fixtures and cabinetry. +sun_bxafshqdijjbpdaz.jpg The galley features a light-colored countertop with a metallic faucet, surrounded by wooden trim, while the central area is occluded with static-like distortion, beneath windowed cabinets displaying nautical-themed plates and a scenic outdoor view. +sun_baubhfrhpngqypqr.jpg The image shows a wooden galley with a rich brown hue and visible grain texture, featuring a metal faucet and white sink viewed from a side angle, while the right side of the image is heavily occluded by a multicolored speckled pattern. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/game_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/game_room_descriptions.txt new file mode 100644 index 0000000..63c4b76 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/game_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bhlpvefawtmfapjq.jpg The game room features teal wood-paneled walls with a window and decorative shelves housing sports memorabilia and a lamp, partially occluded by a static-filled rectangle covering a central portion of the image. +sun_byanrdnbrxmjfwsc.jpg The game room features a rustic wooden interior with brown paneling and a side table with rattan detailing, while three chairs and a card table with a green felt surface partially obscured by colorful RGB static are visible against a carpeted floor. +sun_bcovslsiemerqxnn.jpg The game room features a colorful setup with a blue-felt pool table in the foreground, set against a backdrop of bold purple and white horizontal stripes, with a significant portion of the wall obscured by digital noise, an air hockey table nearby, and a mounted TV visible above the rectangular occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/garage_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/garage_descriptions.txt new file mode 100644 index 0000000..9a2956e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/garage_descriptions.txt @@ -0,0 +1,6 @@ +sun_bkpryjqfchjkeqml.jpg The garage appears from a side viewpoint with gray and yellow walls, a concrete-like floor, and modular cabinets, while the left side is heavily occluded with a multicolored static pattern. +sun_aofgemwctureqpui.jpg The garage interior is viewed from the front with a mostly metallic gray and red structure, featuring a large central occlusion of colorful static, surrounded by various tools and equipment partially visible on the periphery. +sun_brfkrhsuqdmxzbym.jpg The garage is viewed from inside with visible light-colored walls, overhead storage cabinets, a smooth concrete floor, and a section heavily occluded by a multicolored static-like overlay on the left side, while the rest of the space appears clean and organized with various tools and objects around. +sun_bincjnbzqqbasakl.jpg The garage interior includes visible shelves with a white door in the background, a person wearing a light-colored jacket standing with a broom, and clutter including a ladder on the right and various items partially covered under a star-patterned blue cloth with significant pixelated occlusion on the left side. +sun_alnimcytvvxwwkdd.jpg The garage is viewed from an interior angle, displaying a cluttered space with shelves and assorted objects on the left, a series of rectangular windows allowing diffused light at the back, while a significant portion on the right is heavily occluded by colorful static noise, masking any detail or structure there. +sun_aqfcduxayenheizy.jpg The garage has a cluttered workshop vibe with visible tools hanging neatly on a pegboard, a motorcycle parked inside, and two people, partially occluded by heavy pixelation in the left section, while the right side showcases organized shelves and equipment, viewed from an angle that provides a glimpse of both the interior space and floor. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/garbage_dump_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/garbage_dump_descriptions.txt new file mode 100644 index 0000000..3cb4f93 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/garbage_dump_descriptions.txt @@ -0,0 +1,3 @@ +sun_axjtuyfdxdhgfkcj.jpg A chaotic pile of metallic debris with sharp, angular textures and a predominantly blue and silver color palette is partially occluded by a rainbow-colored, rectangular digital distortion, with visible rusted frames and disjointed panels under a clear blue sky. +sun_alxlcmhfztjxnfjt.jpg The garbage dump is set on a rocky terrain and surrounded by a stone structure partially covered with various discarded items, with one side heavily occluded by colorful noise, visible in direct overhead sunlight. +sun_azxkbhbflphuzpfk.jpg The garbage dump appears as layered, mounded heaps of greyish-brown debris stretching along a sloped expansive landscape with excavators visible on top, while the left section is blocked by colorful pixelated noise resembling digital interference. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/gas_station_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/gas_station_descriptions.txt new file mode 100644 index 0000000..0965afd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/gas_station_descriptions.txt @@ -0,0 +1,3 @@ +sun_ameqcjgxqpbxlnxn.jpg The gas station appears from a frontal viewpoint with a red and white color scheme, featuring a large occlusion with colorful noise occupying the right side, and visible pumps under an overhanging canopy on the left. +sun_blwmhstggymdrsih.jpg The image shows a partially occluded, low-resolution view of a modern gas station with a white and gray building having a flat roof, large windows, and a visible red sign on the right, with the occlusion covering the central portion and the surrounding area including trees and parked cars in the background. +sun_adpiwbgrtdagouja.jpg The image shows a street-side setting with a blue and white striped awning and partial visibility of people next to a highly pixelated and colorful occlusion, suggesting the presence of a small, possibly urban, outdoor gas dispensing area. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/gazebo_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/gazebo_descriptions.txt new file mode 100644 index 0000000..496023f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/gazebo_descriptions.txt @@ -0,0 +1,6 @@ +sun_aqofnvsexvfmsyqx.jpg The gazebo, partially obscured by a large, colorful noise pattern in the center, has visible white lattice panels and a pointed roof with intricate woodwork, set against a scenic backdrop of green hedges, distant mountains, and a bit of clear sky. +sun_ahbiowwnialefwig.jpg The gazebo is partially visible in the mid-ground with a wooden texture and a natural wood color, surrounded by a well-maintained garden with various plants and flowers, while heavy digital noise obscures the central portion of the image. +sun_bpcbdtewtknmveen.jpg The gazebo is partially visible with a red roof and situated in a garden-like setting, with heavy multicolored pixelation obscuring the central portion, leaving only the roof and a hint of greenery on the sides discernible. +sun_akhdrcpytejclhwc.jpg The gazebo features a white and smooth-textured dome and columns, partially visible above a large, colorful noise block occluding the lower section, with a clear blue sky and lush trees surrounding the scene. +sun_aeaqhftkdivufniq.jpg A white octagonal gazebo with ornate detailing and a shingled roof is partially obscured by a colorful noise pattern on the left side, with visible greenery surrounding the structure. +sun_awqewjltpghhafgh.jpg The gazebo is white and partially visible from the front, surrounded by greenery and flowers, with notable floral decorations on the columns and a colorful occlusion covering the left side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/general_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/general_store_descriptions.txt new file mode 100644 index 0000000..2d3f2ef --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/general_store_descriptions.txt @@ -0,0 +1,3 @@ +sun_bsaettavpdtgjonx.jpg The image shows a cluttered general store with a variety of colorful items like clothing and toys, with heavy occlusion in the center, revealing wooden shelves filled with stacked merchandise such as boxes, and a person seated to the left in a mix of ambient warm light and shadows. +sun_bflygysdtircclqc.jpg The general store has a yellow exterior with white-trimmed windows and door frames, partially obscured by multicolored pixelated noise, with visible green shutters and floral decor beneath the windows. +sun_befxalppxzsdirhd.jpg The general store features narrow aisles with shelves stocked with colorful packaged snacks, a textured bundle of twigs occluding the left side, and a pixelated area obscuring part of the lower right corner, with a warm overhead light illuminating the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/gift_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/gift_shop_descriptions.txt new file mode 100644 index 0000000..94e235d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/gift_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_brsvnvjrlguadlbh.jpg The photo shows a rustic wooden gift shop with a central white and red shelf displaying various figurines and trinkets, partially obscured by digital noise on the right, while the setting has warm, natural lighting from a window in the back. +sun_btwzsgqxxopfazbx.jpg Softly lit, cluttered room with cream walls and wooden accents features assorted colorful merchandise and decor on display despite a large central occlusion; shelves and tables line the perimeter, showcasing various gifts. +sun_bojfleohpkdlygzi.jpg The gift shop features wooden shelves and displays with various small items, a texture of exposed brick and wood accenting the environment, and a vertical section on the right heavily occluded with pixelated noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/golf_course_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/golf_course_descriptions.txt new file mode 100644 index 0000000..6b1e672 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/golf_course_descriptions.txt @@ -0,0 +1,3 @@ +sun_ahphmnxxnwuclnfb.jpg The image shows a scenic green golf course with a bright blue sky and a body of water reflecting the sky, bordered by a line of rocks, partially obscured by a large vertical rectangular area of colorful static noise on the right side. +sun_bciatqwsrjvnudsp.jpg The visible portion of the golf course features a smooth, green expanse with gentle undulations and a distant backdrop of sandy dunes under a clear blue sky, with a colorful noise occluding the left side of the image. +sun_aehirptreveqvbgb.jpg A vibrant green landscape with a smooth, well-maintained putting green is visible from a slightly elevated angle, partially occluded by a colorful, pixelated patch covering a section on the right, while the rest remains open under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/greenhouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/greenhouse_descriptions.txt new file mode 100644 index 0000000..bccc8e9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/greenhouse_descriptions.txt @@ -0,0 +1,6 @@ +sun_bukcvfxjeklkbksr.jpg The greenhouse, viewed from a front angle, displays a predominantly reddish-brown wooden frame with a slightly sloped transparent roof, surrounded by lush greenery, and the left side is obscured by a colorful pixelated square, leaving potted plants and patio stones visible. +sun_bnqirdyzmtikpyqb.jpg The image shows a garden area with a wooden-framed structure partly occluded by colorful static, featuring lush green climbing plants on the left, a wooden bench visible in the center, and vibrant yellow flowers at the top, suggesting a tranquil outdoor setting. +sun_aarhcufvujfvjlea.jpg The greenhouse has a translucent roof and walls made of glass panels, with a patch of colorful static obscuring the central part, leaving visible various potted succulents and cacti on a bench in the lower section, and a pathway is noticeable amid the greenery surrounding the perimeter. +sun_bftydsnfuwidibar.jpg The greenhouse interior, viewed from the front and partially obscured by dense multicolored noise in the center, features rows of red and pink flowering plants on wooden benches with glass walls and ceiling visible in the background. +sun_aqkjiolbtywtaxak.jpg The greenhouse, seen from a frontal angle, has a translucent, plastic-textured exterior with two metal chimneys, partially occluded on the left by colorful noise, and is set against a background of trees and a stone building. +sun_ajmgnzrllihtxtrk.jpg A vibrant greenhouse interior is partially visible with colorful hanging flowers above, lush green plants below, and a large pixelated occlusion over a central section, while diffused light filters through a semi-transparent roof structure. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/gymnasium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/gymnasium_descriptions.txt new file mode 100644 index 0000000..688545e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/gymnasium_descriptions.txt @@ -0,0 +1,5 @@ +sun_axyphvevccbpqspd.jpg The gymnasium features a dark exercise machine against light blue walls, with significant pixelated occlusion in the lower right area, revealing a small portion of the floor's textured surface. +sun_aevturtcpllgjsgj.jpg The gymnasium features a high-ceilinged room with pale walls, tall wooden climbing bars, and green mats along one side, with a speckled occlusion predominantly masking the central section. +sun_adfkfhhsrnmtaict.jpg The gymnasium features a cluttered arrangement of weightlifting equipment and benches on a blue floor, with high windows allowing in natural light, and a large colorful occlusion covering the center foreground, partially hiding various exercise machines and a mural on the wall. +sun_bydwluvztmaxmgnl.jpg The gymnasium, viewed from the front with a perspective showcasing the treadmills and exercise bikes, features a muted color palette with gray and blue tones, and is partially obscured by a centrally placed, colorful static-like occlusion, while the ceiling is ribbed metallic above a light beige wall with small rounded lights and a few mounted screens visible. +sun_agblgkodsigfontn.jpg The gymnasium features exercise equipment with predominantly gray, metallic textures and black accents, scattered across a wooden floor; a substantial multicolored noise occlusion covers the left side of the image, while the visible parts display a variety of fitness machines with a sleek, modern design in a well-lit environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hangar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hangar_descriptions.txt new file mode 100644 index 0000000..95417a2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hangar_descriptions.txt @@ -0,0 +1,5 @@ +sun_abvrdmjbnzoaqrmp.jpg The hangar features a large interior view with a grid-patterned, industrial floor marked by yellow lines, partially covered by a colorful, pixelated occlusion on the left, while the background displays structural details and a curved roof. +sun_bgeacqsulcjqfsxc.jpg The hangar appears to have a tan wooden exterior with a green roof, viewed from a frontal angle, with the left portion heavily occluded by a colorful static-like pattern, and an adjacent open bay door partially visible. +sun_bzsgpqcmccxghzmd.jpg The image shows a light-colored aircraft partially inside a hangar with visible blue stripes, viewed from the side, with a significant portion of rainbow-like static distortion obscuring the top half and a cluttered workshop environment around it. +sun_bjcualvhnykgsjyi.jpg The hangar, viewed from the front with an open door revealing its interior, features metallic gray panels with a vertical multi-colored occlusion blocking the left side, while the environment shows a concrete floor and structural beams overhead. +sun_bhsppbcdsefvobog.jpg The visible section of the hangar has a metallic gray roof and open front with wooden beams inside, partially occluded by a tall, rectangle of colorful noise on the left, and houses an aircraft with a white body and red stripe, viewed from the front. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/harbor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/harbor_descriptions.txt new file mode 100644 index 0000000..07940a2 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/harbor_descriptions.txt @@ -0,0 +1,6 @@ +sun_bktzzukymtuuakid.jpg The visible left side of the harbor shows tall masts and sails of various ships against an overcast sky and gentle waves, with the right half obscured by colorful static noise. +sun_bugiouqbyrrwqqfj.jpg The low-resolution image displays a serene harbor at sunset with warm, golden light reflecting off the calm water, partially occluded by a square patch of noisy pixels in the center right, while the silhouette of boats and distant land features remain visible against the clear evening sky. +sun_acgnubzaaespvfle.jpg The image shows a partially occluded boat with a white hull and a red and blue stripe cruising through calm water near a yellow dock, while people are visible on the deck, and the sky appears to be clear with a subtle gradient. +sun_avhqnfifkezslmvl.jpg The harbor scene features partially visible boats moored to a dock with a backdrop of a concrete building, where a significant portion is occluded by a dense, multicolored pattern that obscures central details, leaving the water textured and dark with reflections. +sun_anyypxgrrofoofmp.jpg The low-resolution harbor image shows a group of white and light-colored boats with tall masts clustered on serene water under a hazy sky, partially obscured by a colorful, pixelated rectangle in the right central area. +sun_aytbgzejnpdpbwgo.jpg The aerial viewpoint reveals a harbor with multiple white boats docked side by side along narrow, dark-colored water channels, with a large pixelated occlusion obscuring the bottom right quadrant, while numerous houses and buildings are visibly surrounding the area. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hayfield_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hayfield_descriptions.txt new file mode 100644 index 0000000..31dfd54 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hayfield_descriptions.txt @@ -0,0 +1,6 @@ +sun_bnlzfdydpikkvobh.jpg The image depicts a pair of hay bales with a rough, straw-like texture and light brown color, situated on a vibrant green field with a mountainous background, partially occluded by a large, pixelated rectangle on the left side. +sun_bpwlayldzwvlpvgm.jpg A sunlit hayfield stretches into the distance with a foreground of rough, dark brown earth; partially obscured by a centrally placed large block of random noise, the remaining small portion of the field and distant trees appear in muted green hues. +sun_aukvejrnjzibwonp.jpg A low-resolution hayfield with green and brown hues is partially obscured by a central pixelated occlusion, while round hay bales are scattered across the flat terrain and trees line the horizon under a clear blue sky. +sun_akfrrcdwsdqfpphn.jpg The hayfield appears golden brown with rows of round hay bales scattered across the landscape under a partly cloudy sky, although a central portion of the image is obscured by a colorful noise pattern. +sun_apydnrhksonwsfyo.jpg A hayfield with golden bales scattered across a flat terrain appears under a clear sky, partially obscured by a vertical band of colorful pixel noise on the left, bordered by green hills in the background. +sun_awurtztnvpttzars.jpg The visible portion of the hayfield features a muted golden-brown texture with scattered round hay bales under an overcast sky, partially obscured by a vibrant rectangular static-like occlusion on the right side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/heliport_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/heliport_descriptions.txt new file mode 100644 index 0000000..15372c7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/heliport_descriptions.txt @@ -0,0 +1,6 @@ +sun_agqdfqyfxmmktsxg.jpg The heliport features a large blue helicopter with a red and white stripe design, viewed from the side on a concrete pad, partially occluded by a pixelated block over the front section, surrounded by cloudy skies and fenced grassy surroundings. +sun_afxbznrgvjjrrvos.jpg The heliport scene shows two helicopters inside a hangar with a polished floor, featuring a yellow helicopter prominently in a side view with a pixelated occlusion on the tail section, alongside a smaller, mostly black and white helicopter marked "POLICE" in the background, partially obscured by the larger aircraft. +sun_agrjebdfoyttpnap.jpg The heliport in the image shows a gray helicopter with visible side profile features including its rotor blades against a clear blue sky, a distinctive vertical rectangular occlusion obstructing the midsection, and a yellow ground vehicle adjacent to it on a paved surface. +sun_admtghujsemkqsfo.jpg The visible portion of the blue helicopter is positioned on a flat, dark surface with a mountainous backdrop, showing its tailboom and rotor blades, while the right side is obscured by a colorful, static-like pattern. +sun_azimktkzxuncsrqi.jpg The heliport features a land environment with a grassy field, partially obstructed by heavy pixelation in the center, while a blue helicopter with visible rotor blades is positioned on the left. +sun_ayrysrglugbcgjbh.jpg The heliport features a white helicopter with blue stripes, visible on a flat grass field under a clear blue sky, partially occluded by a tall, colorful, static-like pattern on the left side of the image. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/herb_garden_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/herb_garden_descriptions.txt new file mode 100644 index 0000000..04d01ef --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/herb_garden_descriptions.txt @@ -0,0 +1,3 @@ +sun_bvztmelvkabcfrda.jpg The herb garden features vibrant greenery with textured foliage set against a rustic landscape, partially obscured by a dense, multicolored occlusion on the right side. +sun_beumszouksnprjbc.jpg A partially occluded herb garden is visible from a straight-on viewpoint, showing a lush, green array of mixed textures like broad leaves and feathery foliage with a pixelated square distortion on the left side, surrounded by wooden fencing and neighboring plants under bright sunlight. +sun_bmjgjobwkhlhigzx.jpg The image shows a herb garden with a patch of green plants surrounded by taller grass, a blue plastic container with green leaves inside in the foreground, and a significant portion of the right side heavily occluded by a noisy, static-like overlay, obscuring any further details in that area. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/highway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/highway_descriptions.txt new file mode 100644 index 0000000..5b8c372 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/highway_descriptions.txt @@ -0,0 +1,6 @@ +sun_ahtofdcxqibektxf.jpg The image shows a light brown, asphalt highway with white lane markings under a clear blue sky, partially occluded by a central rectangular area of colorful noise, with a gentle curve to the left and a distant line of hills and trees in the background. +sun_bsixzkfeuvglcwqt.jpg The low-resolution image shows a two-lane highway with orange traffic cones scattered along a cloudy day, partially occluded by a vertical section of colored noise on the right, while a visible bridge and directional sign blend into the green surrounding landscape. +sun_adwjtmkipixhmlxq.jpg A straight, light-colored highway with faint lane markings is partially visible, stretching under an overpass from a driver's viewpoint, while a pixelated occlusion obscures the left side, surrounded by overcast skies and grassy roadside embankments. +sun_aaklbtersirgieki.jpg A three-lane highway with worn concrete texture is viewed from a roadside angle, featuring one visible white semi-truck to the left and a large occlusion of colorful digital noise covering part of the middle lane and obscuring some urban structures in the background. +sun_bqynxpovjqjgagth.jpg The highway features a smooth, dark asphalt surface with white lane markings, a central vertical occlusion obscuring part of the image with a noticeable pixelated texture, and visible roadside structures and sparse foliage scattered along the horizon under a clear sky. +sun_aehptyqwdgmjyaqf.jpg The image shows a highway with a clear blue sky, smooth gray asphalt, and vehicles visible in various lanes; most of the central area is heavily occluded with multicolored static, but trees with autumn foliage border the road on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hill_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hill_descriptions.txt new file mode 100644 index 0000000..aa99f4f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hill_descriptions.txt @@ -0,0 +1,4 @@ +sun_artfrfdsrpiiyrqs.jpg The hill appears as a rolling green surface with a smooth texture, viewed from a low angle, partially obscured by a centrally placed multicolored static pattern with the foreground showing a darker green and brown grassy area. +sun_aibbtuglzvqmkpdj.jpg The hill has a natural green and brown texture with dense tree coverage, viewed from a distance with a central randomized pixelation occlusion, revealing a partially clear sky above. +sun_busdzssttikrlksn.jpg The visible portion of the scene showcases a clear blue sky above a hill, partially covered with structures and trees, with a prominent white cylindrical tower visible, while the central area of the image is heavily occluded with multicolored static, obscuring additional details. +sun_acdcdyslshmuqkkc.jpg The hill appears to be lush and green with a slightly irregular texture, viewed from a distance with scattered trees amidst rolling grass, partially obscured by a vertical band of colorful noise covering the central section and leaving a clear sky with distant mountains visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/home_office_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/home_office_descriptions.txt new file mode 100644 index 0000000..06bdb42 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/home_office_descriptions.txt @@ -0,0 +1,3 @@ +sun_bbstobpxarvakeev.jpg The home office, viewed from the doorway, features a bright and airy room with light-colored walls, wooden floors, and a large occlusion of colorful static in the center, with visible sections showing a desk and chair setup in the right area, partially illuminated by a window. +sun_blewglskvuuflyvy.jpg A classic wooden home office desk with a glossy finish is partially visible, featuring a keyboard and a potted plant on one side, while a pixelated occlusion covers a central portion of the desk, obscuring the computer screen, amid warm natural light streaming through windowpanes. +sun_bdspfkkbmlqyzdkk.jpg A home office with a light brown carpet and a beige wall features a cluttered wooden desk with a black office chair, partially occluded by a digitally altered rectangular area with a noise pattern, and is adjacent to a bookshelf filled with various books. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hospital_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hospital_descriptions.txt new file mode 100644 index 0000000..92db354 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hospital_descriptions.txt @@ -0,0 +1,6 @@ +sun_ajqyjnibilpdvsbx.jpg The image depicts a mid-century modern hospital with a facade of brown bricks and large rectangular windows under a clear blue sky, with a block of static-like noise obscuring its central portion while a tiered fountain and manicured greenery stand prominently in the foreground. +sun_bgkhpllpuesuyblu.jpg The building features a predominantly beige and glass facade with vertical columns, a grid-like window arrangement, and significant occlusion in the central section that obscures details. +sun_blfnersifcmzaxqr.jpg The hospital, viewed from the front, features light-colored stone walls with multiple arched windows, twin clock towers on top, and a large rectangular pixelated occlusion covering part of the left side, while set against a clear blue sky with surrounding greenery and directional signs. +sun_bwlprccmyplpuomd.jpg The hospital building is a tall, modern structure with vertical beige paneling, viewed from a slightly elevated angle, with a large, colorful occlusion covering most of its lower left facade, in front of a clear blue sky. +sun_bvrnonnuuijrhvhl.jpg The hospital appears as a multi-story beige building with some text visible on the upper levels, viewed from a side angle with part of the structure and surrounding environment obscured by a large static-like occlusion. +sun_aaueqhsqpjpjuhfz.jpg The image shows a predominantly white multi-story building with visible rectangular windows, partially occluded in the center by static-like, colorful noise, with a clear blue sky and trees surrounding the structure. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hospital_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hospital_room_descriptions.txt new file mode 100644 index 0000000..71e8db9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hospital_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bnupnucszsjewvhw.jpg The hospital room features a clean, clinical environment with white bedding and medical attire, partially obscured by multicolored static on the left side, showing healthcare professionals in close proximity to a patient. +sun_bqvroiqvxudmlcpy.jpg The visible portion of the hospital room reveals a small child lying on a white hospital bed with a pale pink blanket under them, surrounded by medical equipment partially obscured to the left, with a blue chair and a green cabinet in the background to the right, all viewed from a high angle with significant static occlusion on the left side. +sun_aicytvfakcnazcpv.jpg The image shows a light blue-themed hospital room with a person wearing a navy blue cap and white attire, holding an obscured object, positioned in front of patterned blue curtains and medical equipment, with substantial colorful static occluding the main subject. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hot_spring_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hot_spring_descriptions.txt new file mode 100644 index 0000000..c40d165 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hot_spring_descriptions.txt @@ -0,0 +1,3 @@ +sun_bcydgnacyufurirh.jpg A partially visible hot spring shows a pale blue pool with steam rising against a barren, rocky foreground; the central area is heavily occluded by a rectangular pattern of dense noise, while a clear skyline and distant treeline can be seen at the top right. +sun_blcjyozpqdyuwjkh.jpg A foggy, pale turquoise hot spring is observed from a slightly elevated angle with a significant vertical occlusion on the left side, surrounded by snowy, tree-lined terrain and a steamy, ethereal atmosphere, with some gritty textures on the surrounding ground. +sun_achdtyhyetjeugrx.jpg The image depicts a hot spring with a dynamic burst of white steam and water vapor against a cloudy sky, with the lower left section obscured by a colorful, pixelated noise overlay. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hot_tub_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hot_tub_descriptions.txt new file mode 100644 index 0000000..f26bd84 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hot_tub_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjpyplbvatretocj.jpg The hot tub features a dark blue, slightly textured cover viewed from an elevated angle, with the right side heavily occluded by a vertical strip of multicolored noise, set against a backdrop of white lattice fencing and wooden steps leading up to the tub. +sun_brxyujmrpcrshcti.jpg The hot tub is viewed from an angled perspective, showing a warm brown wooden exterior with visible wood grain on one side, while the other half is obscured by heavy noise, and its upper edge is white, surrounded by a natural outdoor setting with trees and grass. +sun_bqiemjtalygmwtca.jpg The image shows a sunlit outdoor setting with a wooden deck, featuring several pieces of outdoor furniture surrounding a tall, rectangular area of multicolored static that heavily occludes the central part of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hotel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hotel_descriptions.txt new file mode 100644 index 0000000..020603e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hotel_descriptions.txt @@ -0,0 +1,4 @@ +sun_bymotueaupgezlxg.jpg The building appears to be a multi-story structure with a light blue façade and a decorative dome, viewed from a ground-level angle, with a large, colorful pixelated area obscuring the central portion. +sun_bffbkfrfceqrmhgt.jpg The hotel, viewed from the front at street level, appears light gray with horizontal bands, partially obscured by a central vertical patch of colorful noise, set against a backdrop of cloudy sky and minimal greenery. +sun_bfxhewmiygfcsyio.jpg The hotel is a multi-story building with a light brown facade, viewed from a street-level angle, with a colorful occlusion covering the lower right part of the image, and features vertical rectangular windows and exterior lighting. +sun_btgarlwiahaqzqew.jpg The hotel features a white exterior with classic architectural design and symmetrical windows, viewed from the front with decorative greenery at its base, while a large colorful noise block occludes the central portion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hotel_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hotel_room_descriptions.txt new file mode 100644 index 0000000..bc496cd --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hotel_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bdivujeykyewcome.jpg The image shows a hotel room with two beds featuring floral-patterned comforters and partially visible wooden headboards, with pixelated occlusion covering the central area; a person is reclining on one bed, wearing casual clothing, while the wall and carpet are neutral in color. +sun_aenyanwjhrycarxf.jpg The hotel room features a warm-toned, plaid-patterned bedspread and matching room accents, with a red armchair beside a small wooden round table, while a colorful occlusion obscures the center, hiding parts of the wardrobe and window area. +sun_bszvdxfuhivhzcqp.jpg The image shows a hotel room with a partial view of a bed featuring a colorful, multi-patterned bedspread in warm tones, visible next to a wooden headboard with a grid design, with a large digitally occluded rectangle covering the right side of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/house_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/house_descriptions.txt new file mode 100644 index 0000000..260ac9d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/house_descriptions.txt @@ -0,0 +1,5 @@ +sun_bngdiodjfrpablvp.jpg The house has a brick texture with red and brown tones, partially obscured by colorful noise in the upper section, viewed from a front-right angle with visible greenery and a front porch. +sun_adcizewwgmoulcik.jpg The house appears to be a light gray two-story structure with a pink trim, viewed from the front, partially occluded by digital noise over the right side, with a gabled roof, surrounded by greenery and parked cars on the street. +sun_buylswgvglxfrhxh.jpg The low-resolution image shows a house partially occluded by a colorful, pixelated pattern in the central region, with visible portions featuring a neutral-toned exterior located in a wintery suburban setting with leafless trees and a wooden fence. +sun_bdjofnflnlvogafd.jpg The house is a pale blue, two-story structure viewed from the side, with an A-frame roof and rectangular windows visible, while the right side is heavily occluded by a greyish, pixelated rectangular area amidst a backdrop of bare trees and overcast skies. +sun_bhdpkqbbytjreexm.jpg The house appears from a frontal viewpoint with a gray exterior and white trim, partially obscured by multicolored static on the left, featuring a visible chimney, landscaped garden, and a prominent garage on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/hunting_lodge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/hunting_lodge_descriptions.txt new file mode 100644 index 0000000..6791388 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/hunting_lodge_descriptions.txt @@ -0,0 +1,3 @@ +sun_bdjqsaaoxvxvgmnf.jpg The hunting lodge, partially visible behind a large occlusion of noisy pixels in the foreground, shows a muted earthy brown facade with a sloped roof, set amidst lush green forested hills and a rocky riverbank. +sun_blklclqktqhavafv.jpg The hunting lodge features a visible stone chimney on the left, a gray metal roof, and wooden log construction partially obstructed by pixelated noise covering the lower half, set against a cloudy sky and surrounded by trees. +sun_bkdeshnqeekulgmf.jpg The hunting lodge is viewed from a side angle, showcasing a wooden exterior with a sloping brown roof and a stone chimney, partially occluded by a large, pixelated block on the left, with lush green surroundings. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ice_cream_parlor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ice_cream_parlor_descriptions.txt new file mode 100644 index 0000000..f30f238 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ice_cream_parlor_descriptions.txt @@ -0,0 +1,3 @@ +sun_djdeitrckcbvpdam.jpg The ice cream parlor features a curved glass display showcasing various pastel-colored ice cream scoops with a decorative wooden clock and plants in the background, partly occluded by digital noise across the lower section. +sun_dfajgjiqiifncwyp.jpg The ice cream parlor features light-colored walls with a speckled appearance, red chairs around plain tables, and an area partially occluded by dense noise, showing a visible glass freezer and wall menu on the right. +sun_djdqagvgmhlktnyj.jpg The ice cream parlor features a beige and cream color scheme with a classic, slightly worn look, where a large colorful occlusion covers the left side, the remaining visible elements include a glass counter displaying various ice cream flavors, and a checkerboard floor pattern, viewed from a slightly elevated angle. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ice_floe_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ice_floe_descriptions.txt new file mode 100644 index 0000000..f3bdfbe --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ice_floe_descriptions.txt @@ -0,0 +1,3 @@ +sun_asxrxsnaqpfvjkwb.jpg The ice floe is partially visible with a rough, irregular texture and a pale white appearance set against a cloudy sky, while a section is heavily occluded with colorful digital noise on the right side, showing figures in a boat to the left, navigating through broken icy water. +sun_bbpnxmhafoexuvcm.jpg The ice floe appears predominantly white with a rough, fragmented texture visible beyond the center occlusion, and it is partially surrounded by both snow-covered rocks and water, viewed from a low-angle horizontal perspective. +sun_bmsjjeflooecqdtq.jpg The ice floe is partially visible around a central, pixelated occlusion, displaying a patchy, off-white texture with rough, uneven edges, set against a cold, overcast environment with a view from above. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ice_shelf_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ice_shelf_descriptions.txt new file mode 100644 index 0000000..caa95ff --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ice_shelf_descriptions.txt @@ -0,0 +1,3 @@ +sun_brpwztmgmcdwbczi.jpg The ice shelf appears in the foreground with visible vertical ridges and crevices in a light blue tone, partially obscured by a large central rectangular region of static noise, complemented by a distant snowy flat area and cloudy sky in the background. +sun_aadbmpmxxatythtm.jpg The visible portion of the ice shelf appears white with a rough, textured surface viewed from a side angle, with the right side heavily occluded by a pixelated block, near calm ocean water. +sun_bqovgtdgsgdulxab.jpg The image displays a jagged, bluish-white ice shelf with a rough texture and visible crevices, set against a misty mountainous backdrop with a large rectangle of digital noise obscuring the right side, including some of the ice and part of a person in a red jacket. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ice_skating_rink_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ice_skating_rink_descriptions.txt new file mode 100644 index 0000000..4070e8e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ice_skating_rink_descriptions.txt @@ -0,0 +1,3 @@ +sun_azlqqfqmnapvqoze.jpg A building is visible with a view showing beige and blue exterior walls, stairs leading up, and a prominently occluded area by colorful noise, set against a bright blue sky. +sun_bdyfbrhpistjnkwr.jpg The visible portion of the ice skating rink shows a smooth, light gray ice surface with red and blue lines, bordered by tan walls adorned with colorful sports-themed decals, all viewed from a slightly elevated angle, with a large portion on the left heavily occluded by a static, multicolored noise pattern. +sun_blugpeifvqkxospv.jpg An indoor ice skating rink is partially visible from a frontal viewpoint, featuring a smooth white ice surface with red and blue markings, enclosed by yellow and white boards with advertisements, while the right side is heavily occluded with a colorful static pattern. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/iceberg_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/iceberg_descriptions.txt new file mode 100644 index 0000000..0176370 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/iceberg_descriptions.txt @@ -0,0 +1,5 @@ +sun_atvdyagpbomhibrn.jpg The visible iceberg appears in the background with a faint bluish tint and rough texture, partially obscured by a vertical strip of dense, multicolored noise, set against a cloudy sky and calm water. +sun_apppiycsdldvrrtz.jpg The visible tip of the iceberg appears as a smooth, light blue form emerging from the water, with the left portion being heavily occluded by a pixelated square, against a calm, reflective surface of the surrounding environment. +sun_asbnusaihryxopbn.jpg The low-resolution image shows a white and light blue iceberg with a rough, jagged texture partially visible from the left side, with a large pixelated occlusion covering the central and part of the left area, set against a backdrop of a mountainous landscape under a partly cloudy sky. +sun_ajqqcxskwcdkyhrm.jpg The iceberg on the left side of the image appears pale blue with a smooth texture, partially submerged in a calm body of water, while the right side is heavily occluded by a colorful noise pattern. +sun_akruzbkawohrabqj.jpg The iceberg is partially visible with a bright white and light blue texture, seen from a side view, rising sharply above the ocean water, with numerous birds perched on its curved surface, while a significant portion on the right is obscured by a pixelated noise pattern. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/igloo_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/igloo_descriptions.txt new file mode 100644 index 0000000..dd32b10 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/igloo_descriptions.txt @@ -0,0 +1,6 @@ +sun_aeilzkonhzckvpgj.jpg The igloo, viewed from a slight side angle, is predominantly white with a coarse snow texture, mostly obscured by a central, multicolored static pattern, while the surroundings appear dimly lit with a hint of darkness. +sun_agavxwvifpufjiqa.jpg A white, dome-shaped structure with a distinct block pattern is partially visible from a side view, with colorful noise heavily occluding the lower portion while the upper region shows the igloo's entrance. +sun_awcjosrlrxyoapcd.jpg A snow-covered igloo with a smooth, rounded surface is partially visible from a side angle, with the right half occluded by static-like noise, set against a dark, nighttime background. +sun_abgdqxqmnvkjszca.jpg The igloo's upper structure, visible above the colorful occlusion, is rounded and snow-covered, appearing white and smooth, contrasted against a dark backdrop of trees in a snowy environment. +sun_awbabjeoybzxkiyj.jpg A snow-covered igloo with a rough, icy texture is partially visible with its top exposed, viewed from a side angle, while a large vertical area on the right is obscured by colorful static noise, set against a snowy landscape with people and other tents in the background. +sun_ajzzhwukjdfdhsaz.jpg The igloo is predominantly white with a rough, snow-like texture, viewed from the front with a low archway entrance partially blocked by colorful digital noise and a snowy field setting in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/industrial_area_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/industrial_area_descriptions.txt new file mode 100644 index 0000000..8a4b23a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/industrial_area_descriptions.txt @@ -0,0 +1,3 @@ +sun_aznzspxqejoornbs.jpg The industrial area, viewed from a distance, features muted gray and brown structures with smoke emerging from chimneys, partially obscured by a colorful, pixelated occlusion on the right side. +sun_auythuvykzgprlyr.jpg A low-resolution industrial area depicts a dominant gray cylindrical silo with visible framework, partly obscured by a rainbow static noise occlusion on the right, under a bright blue sky with scattered clouds. +sun_ahsknmkvyzjvzpic.jpg The image shows a landscape view of an industrial area with large cooling towers emitting steam under a cloudy sky, with a colorful occlusion obscuring the central portion of the image, while the surrounding greenery contrasts with the gray structures. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/inn_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/inn_descriptions.txt new file mode 100644 index 0000000..148139d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/inn_descriptions.txt @@ -0,0 +1,6 @@ +sun_ayupqtkxelvzancp.jpg The visible section of the stone inn displays a rustic texture with dark wooden frames and a sign, while the upper part is occluded by heavy pixelation, making it difficult to discern details. +sun_bgptnbgipciqegwj.jpg The inn appears as a red brick building with white framed windows, viewed from the side along a slightly curved street, partially occluded by a multicolored, pixelated rectangle covering a significant portion of the right side of the facade. +sun_aswghdnabkqlogkr.jpg The stone-facade inn, viewed from the front, features dark brown shutters on the windows, a rustic roof, and floral decorations, with significant occlusion on the right side by a multicolored, pixelated block. +sun_byxvxowfukqzdjan.jpg The photo depicts a two-story building with visible stone and brick textures, dark roofing, and dormer windows, partially obscured by a vertical, colorful noise pattern in the center, with well-kept gardens surrounding it. +sun_apyfgdawtolariza.jpg A partially occluded, brick-front inn with beige and grey tones is visible at an oblique angle, surrounded by green grass and trees, with the left side obscured by colorful visual noise. +sun_bocmjstjzffujemm.jpg A beige, multi-story building with a dark roof and large white-framed windows is partially occluded on the left by a colorful static block, with a clear shadow cast on the pale blue sky above. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/islet_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/islet_descriptions.txt new file mode 100644 index 0000000..8164e09 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/islet_descriptions.txt @@ -0,0 +1,6 @@ +sun_bvbmocnkdnxbfgcb.jpg The image displays an islet with a dark, uniform texture, partially visible behind a central vertical strip of colorful noise, set against a cloudy sky and calm sea. +sun_arkpwbbekqkucvfr.jpg The islet, viewed from a side angle, has a dark, rocky texture with patches of green vegetation on top, contrasting against a background of churning blue and white ocean waves, with the left side heavily occluded by a multicolored static pattern, framed by lush foreground greenery. +sun_ahakqalyvizhmgpd.jpg The islet, visible in a distant view, appears with rocky terrain and sparse greenery against a bright blue sky and ocean backdrop, partially occluded by a dense, colorful noise pattern on the right side. +sun_byopnshzhrvkuiuk.jpg The islet is seen from a distance with a band of dense palm trees lining the horizon against a pale blue sky, surrounded by dark blue water, with a central vertical area obscured by colorful digital noise. +sun_afiqewzjnikytevw.jpg A rocky islet with a rugged texture displays a mix of brown and beige hues, emerging from a vibrant blue sea on the left, while the right side is obscured by digital noise, with a clear blue sky backdrop visible above. +sun_anabrqkpkwccmkyq.jpg The islet is mostly obscured, but it appears as a small dark silhouette against a bright blue sky with fluffy clouds, surrounded by the dark blue sea, while colorful noise covers the central area. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/jacuzzi_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/jacuzzi_descriptions.txt new file mode 100644 index 0000000..ef4cd93 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/jacuzzi_descriptions.txt @@ -0,0 +1,6 @@ +sun_dgwaknnhblpsqngy.jpg The jacuzzi appears to be a white, tiled, octagonal structure with visible bubbling water, situated in a corner with a metal handrail on the left, while the right side is heavily occluded by a multicolored, pixelated obstruction, and the floor around it is a mix of beige and light brown tiles. +sun_didfvkvckuetehba.jpg The jacuzzi's visible section shows a light-colored, smooth surface with curving steps leading into the water, surrounded by a serene indoor pool environment with elegant decor, though most of the image is obscured by a colorful, pixelated occlusion in the center. +sun_byjggjnmojofusqb.jpg The jacuzzi is partially visible with a blue-tinted water surface, grey tiling, and a metal handrail, while the right side is heavily occluded by a vertical strip of colorful noise. +sun_bifqfoeahfzgafvi.jpg The jacuzzi, viewed from an elevated angle, features a circular shape with a light blue interior and brick trim, situated on a beige tiled floor, partially occluded by a large, static-filled rectangular region that obscures the upper portion of the image, surrounded by large windows and metallic railing. +sun_afkmyrcmtmhjsetu.jpg The jacuzzi, partially obscured by a vertical pixelated occlusion on the left, is viewed from above with visible light blue water and bubbling foam around the edges, set against a beige-tiled wall with a plant in the background. +sun_dwmwkyrbwjlvkizy.jpg The image shows an indoor jacuzzi with a grayish surface texture, partially visible from a front angle, surrounded by beige walls and tile flooring, with significant occlusion in the center by colorful static patterns, while a white plastic chair and metal handrail are positioned to the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/jail_cell_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/jail_cell_descriptions.txt new file mode 100644 index 0000000..e66f822 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/jail_cell_descriptions.txt @@ -0,0 +1,3 @@ +sun_akjhmszgsrddvajh.jpg The image shows a jail cell with a pair of bunk beds featuring blue mattresses and white metal frames, viewed from a side angle, with a tall rectangular region of multicolored pixelation occluding part of the lower bunk and the window on the left, while a closed cabinet is visible to the right. +sun_agxojbgcntbcroxr.jpg The image shows a jail cell from a front-left viewpoint, featuring a light beige wall and floor with a matching wooden bench, partially obscured by colorful noise on the left side, and a small metallic fixture visible on the right. +sun_ahhhilcrwujdtzfj.jpg The jail cell, viewed from the front, features beige brick walls and metallic frames with glass partitions, partially obscured by a dense, multicolored, static-like occlusion across the lower half. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/jail_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/jail_descriptions.txt new file mode 100644 index 0000000..2673413 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/jail_descriptions.txt @@ -0,0 +1,5 @@ +sun_axnqghsyxyecqjek.jpg A metal bar structure, likely part of a cell door with numbered details (26), is visible in the upper right, set against a concrete-colored interior with hash-like pixilation obscuring the lower left, showing minimal visible texture and light casting diagonal shadows across the floor. +sun_anfzafzchgsppuyx.jpg The image depicts a partially visible structure with reddish-brown brick walls and sections of light teal-green panels, with a heavy occlusion of multicolored noise at the center and a view indicating a ground-level perspective of an outdoor environment. +sun_agfykapzxzmaxsxg.jpg The image shows an indoor hallway of a jail with beige bars and a row of cells on either side, partially occluded on the left by a colorful, pixelated patch, while the visible portion displays people walking down the corridor under fluorescent lighting. +sun_aphioefkpzcmbwpg.jpg The image shows a corridor with a series of vertically barred cell doors in a linear arrangement, featuring muted greenish-gray tones and artificial lighting from above, with a large, multicolored occlusion blocking part of central cell doors and walls. +sun_avynalaoygpkbech.jpg A corridor view of the jail shows a two-level interior with visible brown and red railings and beige walls, partially occluded by a central vertical area of pixelated noise, with groups of people walking through. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/jewelry_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/jewelry_shop_descriptions.txt new file mode 100644 index 0000000..bd7d120 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/jewelry_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_agizqhzqjewceuhe.jpg The jewelry shop features warm wood display cases and glass countertops surrounding a carpeted floor, with bright overhead lighting and decor including a cluster of balloons, partially occluded at the center by a pixelated block. +sun_acxheyprtwfgstbd.jpg The jewelry shop exhibits glossy black display cases with glass tops, partially visible through heavy pixelated occlusion on the left, framed by cream-colored walls and illuminated by soft overhead lighting, while the right side showcases organized rows of white jewelry holders and decorative pink flowers. +sun_aevksyvkvjrtbkta.jpg A richly adorned jewelry shop is partially blocked by a vertical, colorful noise occlusion at the center, revealing a warm and elegant ambiance with arched wooden display frames containing silver items and illuminated by a central chandelier. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/kasbah_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/kasbah_descriptions.txt new file mode 100644 index 0000000..d4c1bf5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/kasbah_descriptions.txt @@ -0,0 +1,6 @@ +sun_awumnsyhrhbefmru.jpg The kasbah appears as a reddish-brown rectangular structure with a textured surface set against a backdrop of arid, rocky hills under a clear blue sky, with dense digital noise occluding the lower portion. +sun_akvluygrsdduvgwl.jpg The kasbah is visible from a side viewpoint, showcasing its light brown, sandy texture with part of its façade blocked by heavy pixelated occlusion while the surrounding environment includes a clear blue sky and sparse trees. +sun_adxkxbvspykgrqea.jpg The kasbah, viewed from below and partially obscured by a colorful static patch, features earthy brown, textured walls with an exposed top section and adjacent faded orange patterned textiles, set against a clear sky backdrop. +sun_aubvgotliivekhxl.jpg The kasbah, viewed from a frontal angle, features earthen-colored, textured walls with intricate geometric patterns adorning its upper sections, partially obscured by a central rectangular occlusion blending into an overcast sky backdrop. +sun_alzlqkofepbcmllz.jpg The image shows a low-resolution, occluded kasbah with a visible cream or light-colored wall contrasting with terracotta tones, a textured rooftop with decorative edges, and surroundings hinting at an urban setting with a colorfully distorted central area. +sun_agxohbpgwrmohevr.jpg The kasbah appears to have a sandy brown texture typical of clay or adobe, viewed from a slightly elevated angle with the main tower visible against a partly cloudy sky, while a large area on the left is obscured by pixelated noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/kennel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/kennel_descriptions.txt new file mode 100644 index 0000000..51c8140 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/kennel_descriptions.txt @@ -0,0 +1,6 @@ +sun_asvklogioaifychy.jpg A tiled floor leads to the partially obscured kennel entrance with a red dog bed and plush blanket visible inside, where a white dog stands outside on green grass with a bright red ball near its paws, while the central vertical area is covered in dense colorful static. +sun_aovyulupfwiygtbq.jpg The visible kennel is seen from a side angle and appears to be made of metal fencing with a rectangular shape, featuring a chain-link texture, while a significant portion in the middle is occluded by a colorful noise pattern obscuring the interior. +sun_ahhyzvkajnaunyuc.jpg The image portrays a corridor view of a kennel with brick walls on either side and wire fencing, where a woman is crouching and holding a dog in the center, while the left side is occluded by colorful static noise. +sun_annabrdomcmhordv.jpg The kennel is partially visible on the left side with its black metal bars unobscured, while the rest of the area is heavily occluded by a multicolored, patterned block, and the indoor environment features a smooth, light-colored floor with a colorful playground slide set in the background. +sun_afyevwjfbkrugfbm.jpg The kennel appears as a small, light gray wooden structure with horizontal siding, viewed from the front, with a colorful rectangular occlusion obscuring the central area between two shuttered windows, surrounded by a wooded environment and chain-link gates on either side. +sun_apgiiltjemqjruhz.jpg The kennel is a metallic chain-link structure viewed from the side with a grassy environment, where the right side is heavily occluded by a colorful static pattern, and two dogs are visible inside. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/kindergarden_classroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/kindergarden_classroom_descriptions.txt new file mode 100644 index 0000000..36d5d4f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/kindergarden_classroom_descriptions.txt @@ -0,0 +1,3 @@ +sun_afmyzinsyyriyqub.jpg The kindergarten classroom features a warm, yellow-toned wall with colorful artwork, small red chairs surrounding a low wooden table with scattered papers, and includes a partially visible kitchen playset in a cozy, carpeted environment, where a significant portion on the right is obscured by heavy gray static noise. +sun_amycqpexxhxuujhp.jpg The kindergarden classroom features light teal walls with a mix of wooden tables and chairs positioned around the room, partially visible through a central pixelated occlusion, with a large window providing natural light on the right and children's artwork on display at the back. +sun_awsvcqqguqyblfoc.jpg The classroom features pastel yellow walls with a bulletin board displaying colorful circles, brightly colored storage bins, and significant noise occlusion in the central area, partially obscuring the view. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/kitchen_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/kitchen_descriptions.txt new file mode 100644 index 0000000..72bd861 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/kitchen_descriptions.txt @@ -0,0 +1,6 @@ +sun_atkrisvsrzpbgyxu.jpg The kitchen is viewed from a slightly elevated angle, featuring white cabinetry and light-colored tiled flooring, with two wooden chairs in the foreground, while heavy occlusion in the form of multicolored noise obscures a central portion of the scene, likely where a refrigerator or cabinet would be. +sun_apumvnycvwtrdlmc.jpg The kitchen displays a warm, wood-toned cabinetry with black countertops, visible from a wide-angle view, while the left side is occluded by a colorful static texture, and features distinctive black and white checkered flooring. +sun_auzwhookgjmsmnrs.jpg The image shows a bright kitchen with wooden cabinets and a white countertop, featuring a stove on the left; the right side is heavily occluded with digital noise, revealing a partial view of wooden flooring and a glimpse of a living space beyond. +sun_azasqdtcqckquplg.jpg The kitchen features warm wooden cabinetry and stainless steel appliances with a speckled granite countertop, viewed from a side angle with a colorful noise occlusion obscuring part of the sink area. +sun_ajuqshhjcubjzedh.jpg The visible part of the modern kitchen has sleek black countertops contrasting with white tile flooring, enhanced by ceiling spotlights, and features a metallic fruit centerpiece with wooden blinds in the background, while a significant area is occluded by noise covering the central section. +sun_acmstexzoiusuvqj.jpg The kitchen features a light beige and white color scheme with a warm wood texture on the island, visible stainless steel appliances, and an area heavily occluded by multicolor static noise over part of the cabinetry. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/kitchenette_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/kitchenette_descriptions.txt new file mode 100644 index 0000000..1d319c4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/kitchenette_descriptions.txt @@ -0,0 +1,4 @@ +sun_aghlxmiovdjcrzvj.jpg The kitchenette appears with teal painted walls and a tiled floor, featuring a wooden cabinet and shelves holding dishes and cups, with white lace curtains on the window, partially occluded by a large multicolored static pattern on the left. +sun_aggoxcvtjlqrairh.jpg A small kitchenette is viewed from the front with a white tiled backsplash and multi-colored square tiles partially visible on the right, while the left side is heavily occluded with a colorful noise pattern, showing a wooden counter with various items and a window above it. +sun_aslbacmozyltajwv.jpg The kitchenette features wooden paneling with a light wood wall, a white chair with a slatted back, and an upper shelf holding various kitchen items, partially obscured by heavy pixelation that covers much of the sink area and lower cabinet. +sun_ambbwwafhjhxvdwm.jpg The kitchenette features beige cabinetry and a visible tiled backsplash, with the lower right section heavily obscured by digital noise, while the left side shows a portion of a white refrigerator, countertop, and cooking appliances. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/labyrinth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/labyrinth_descriptions.txt new file mode 100644 index 0000000..f01cca3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/labyrinth_descriptions.txt @@ -0,0 +1,5 @@ +sun_bihwlfmttcnqehuq.jpg The labyrinth is a circular arrangement set against a lush green grassy background, viewed from above, with a pixelated occlusion covering the bottom left, and features alternating concentric paths with decorative elements dispersed along the rings. +sun_buybwuusqsjigglb.jpg A garden pathway labyrinth made of stones in concentric circles is partially visible in a grassy setting with the majority of the central area occluded by a vibrant, multicolored static noise, with the visible edges showing an earthy tone against a backdrop of trees. +sun_bbasykvtutnbqdsp.jpg The labyrinth features a circular pattern of light brown stones forming concentric paths on grass, partially obscured on the right side by a colorful noise occlusion, with two individuals walking inside it from a top-down viewpoint. +sun_bbyiifaqolbnljyh.jpg The labyrinth, partially visible in an aerial view, displays a dusty brown texture surrounded by lush green and dry foliage, with its lower-left section obscured by colorful digital noise. +sun_bdisysjjfwkwrzgh.jpg The labyrinth appears as a barely visible pattern of paths marked with short, light-colored posts on a grassy lawn, partially obscured by a vibrant, noise-patterned occlusion on the right, with people casually standing around it under clear skies. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/lake_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/lake_descriptions.txt new file mode 100644 index 0000000..4a24972 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/lake_descriptions.txt @@ -0,0 +1,6 @@ +sun_agqkmpgtfsykydsz.jpg A deep blue lake surrounded by snowy mountains is visible from an elevated viewpoint with dense green pine trees in the foreground, and the right portion occluded by a colorful, pixelated effect. +sun_aoikosjowjxkztio.jpg The lake appears as a serene blue patch visible from a distant viewpoint surrounded by green rolling hills in the foreground and snow-capped mountains in the background, with the left side heavily occluded by colorful static noise. +sun_asvqshfqcbfycqly.jpg The image displays a serene lake partially obscured by a vertical band of colorful noise, surrounded by verdant hills and under a bright blue sky with scattered clouds, with snow-capped mountains visible in the distance. +sun_bubczknuxswlarsp.jpg The lake appears as a calm, slightly reflective body of water with a bluish-gray hue set against a backdrop of distant, forested hills under a cloudy sky, partially occluded by a vertical, colorful noise pattern on the left. +sun_bihpdfituarmevbb.jpg A tranquil lake with deep blue waters reflects the vibrant autumn foliage on its shores, with the left area unobstructed, while a tall, pixelated occlusion covers the center, and a sandy beach with a wooden house is visible on the right. +sun_bnrwcoftgizmknfr.jpg The image shows a serene lake with a vibrant blue surface reflecting the clear sky, surrounded by lush greenery and snow-capped mountain ranges in the background, with an area of pixelated occlusion on the right obscuring part of the landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/landfill_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/landfill_descriptions.txt new file mode 100644 index 0000000..8c9ce36 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/landfill_descriptions.txt @@ -0,0 +1,5 @@ +sun_amlchdstzxnoukss.jpg The image shows a landfill with predominantly brown and gray hues, featuring scattered waste piles and machinery; a large central section is heavily occluded with colorful noise, while the environment includes dirt ground, a background of rolling hills, and a visible bird in the sky. +sun_aiujazjeykjpbnon.jpg In the image, a hazy, earthy-toned landfill stretches across the foreground littered with various debris, partially obscured by a colorful static-like occlusion in the upper center, while the scene is captured from a slightly tilted perspective under a sky with scattered clouds. +sun_agcncuqyaejmzzse.jpg A cluttered view of a landfill features a mix of black, white, and multicolored debris with various textures, partially obscured by a central pixelated square, amidst a backdrop of indistinct, piled waste in a chaotic arrangement. +sun_annqxfjhqhxndvdm.jpg The landfill site, observed from a slightly elevated angle, is dominated by a chaotic mixture of whites, grays, and muted earth tones with various small patches of color peeking through, while a significant portion is obscured by a colorful static-like pattern adding a digital texture to the environment. +sun_akqilnjmtfkztydl.jpg In this low-resolution image, the landfill appears as a mix of muted, earth-toned debris with a rough texture, viewed from a slightly elevated angle, surrounded by a flock of birds in flight against a clear sky, with a large, colorful occlusion covering a central portion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/landing_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/landing_deck_descriptions.txt new file mode 100644 index 0000000..44142ae --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/landing_deck_descriptions.txt @@ -0,0 +1,3 @@ +sun_btrpsakutynifgbr.jpg The partially visible landing deck appears dark and illuminated by artificial lighting, with a jet parked on one side; the deck includes distinct markings, and there is a large, vertical rectangular occlusion on the left obscuring part of a fighter jet, while several personnel are visible near the bright, blurred tail lights of a departing aircraft. +sun_aqriexdzfxrfdsco.jpg A helicopter hovers above a naval landing deck with a high viewpoint; the scene features a textured dark surface with visible shadows and contrasting against a vibrant blue ocean, despite heavy occlusion by digital noise in the center. +sun_aaddnyjyhfcpopua.jpg The low-resolution image shows a mostly obscured aircraft carrier deck with a jet, partially visible in the background, featuring a man in yellow and white gear, with the central section densely covered by multicolored digital noise extending from top to bottom. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/laundromat_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/laundromat_descriptions.txt new file mode 100644 index 0000000..f777feb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/laundromat_descriptions.txt @@ -0,0 +1,5 @@ +sun_akgssnbxysnviuon.jpg The image shows a laundromat with a vibrant orange panel and a visible silver washing machine door on the right, while the rest of the surface is heavily obscured by colorful static noise. +sun_aifyvnoilbmcahci.jpg The laundromat has a predominantly monochromatic appearance with white and gray tones, featuring industrial-style front-loading washing machines, a tiled floor, and a central table, with a significant portion of the middle right section occluded by a multicolored, static-like pattern. +sun_anikjvdrxrywuyvr.jpg The laundromat, viewed from a corner angle, features light blue walls and a ceiling with a grid of white tiles, accented by bright pink dividing panels partially obscured by a central vertical strip of colorful static occlusion, with visible rows of black laundry machines and seating for patrons. +sun_aaxufyiupegixznm.jpg A beige-colored laundromat wall with front-loading washers partially visible, showing two circular glass doors with metallic frames, and heavily occluded by colorful digital noise obscuring the central section. +sun_awigfehbvyxhksxu.jpg The laundromat interior features a left-side view with a dark entrance door leading outside, a row of blue washing machines partially visible on the right, a white-tiled floor leading towards the door, and significant multicolored static occlusion covering the right half of the image. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/lecture_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/lecture_room_descriptions.txt new file mode 100644 index 0000000..a3bf9c7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/lecture_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bcjwxsjwsvkfskep.jpg The lecture room features a wooden floor, beige walls, ceiling lights, and empty rows of wooden chairs with light brown desks, while a significant portion is occluded with a vertical strip of random colorful static, partially covering a projector screen and wall with blinds. +sun_bgduyjxoaesmsrdd.jpg A lecture room filled with attentive students sits in tiered rows with beige chairs and wooden desks, while a large gray occlusion covers the left side, contrasting the white walls and large windows on the right. +sun_acmjoyjdyftfmmga.jpg The lecture room features a front-facing wide whiteboard flanked by medium-tone wooden panels, with a column of colorful static occlusion vertically bisecting the image, surrounded by beige seating arrays. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/library_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/library_descriptions.txt new file mode 100644 index 0000000..43b813d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/library_descriptions.txt @@ -0,0 +1,5 @@ +sun_bforrnptasikypcb.jpg The image shows a library corner with wooden furniture and dark-colored bookshelves set against a light-colored wall, partially obscured by a colorful noise pattern covering the center area, revealing a traditional setting with framed artwork and a window above the occlusion. +sun_bohzkwamgaqtjwfw.jpg Warmly lit with rows of softly colored books on wooden shelves, a classical column with ornate corinthian design is partially obscured by pixelated noise in the center. +sun_bvvmhallnvsopxsb.jpg A low-resolution image of a library shows books densely packed on shelves along the right and back walls, with a dark office desk in the center topped by scattered paperwork and surrounded by greenery, where the left side is heavily occluded by a tall, multicolored, pixelated column. +sun_bqbgcqdxwndclqel.jpg The image shows the circulation desk area of a library with a wooden counter, bookshelves filled with books in the background, a sign saying "CIRCULATION," and is heavily occluded by a multicolored, textured interference on the left side, while three people are visible on the right side interacting at the counter, under a ceiling light. +sun_bavljnjvwieiepak.jpg In the low-resolution image of the library, the visible portion shows a side view of shelves filled with colorful books against a beige wall, with a significant portion of the foreground obscured by a vertical, pixelated occlusion, while parts of a desk, a computer, and some decorations are visible around the edges. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/lido_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/lido_deck_descriptions.txt new file mode 100644 index 0000000..8e23e4a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/lido_deck_descriptions.txt @@ -0,0 +1,3 @@ +sun_arspdprcolobjwrr.jpg The image shows a lido deck with light-colored lounge chairs and a pool, partially occluded by a colorful static pattern on the left, while the visible areas have a clear sky and some intricate deck structures viewable from an elevated angle. +sun_bpoqllikynanvewl.jpg A colorful, partially visible lido deck with vibrant blue deck chairs, mosaic-tiled edging around the pool, and a central area obscured by a large, static-filled rectangle, surrounded by a cruise ship's fencing and railings under a bright cloudy sky. +sun_bzleeoayogumzhyj.jpg The image shows a lido deck with a clear blue pool reflecting a warm-toned structure and statues of bears situated on a rocky island, partially occluded by digital noise covering the left side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/lift_bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/lift_bridge_descriptions.txt new file mode 100644 index 0000000..c8c5532 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/lift_bridge_descriptions.txt @@ -0,0 +1,3 @@ +sun_bzyojklpykxmrthe.jpg The lift bridge, viewed from the side, appears dimly lit with a grayish hue under a dusky sky, where its distinctive towers and suspension cables rise above a partially obscured waterway; the heavily occluded right half alters perceptions yet the reflection and serene surroundings remain clear. +sun_atssabatdgvmwcwz.jpg The lift bridge features a steel-gray metallic structure with a simple, angular design partially visible from a side angle, set against a lush green landscape with significant right-side occlusion by a multicolored noise pattern overlaid on the image. +sun_bumlyshkologqjgc.jpg The visible portion of the lift bridge features a dark metal structure with several angular geometric patterns, standing horizontally between two banks of a broad river, while the environment includes trees and a clear sky despite a significant central occlusion covering part of the view with bright noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/lighthouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/lighthouse_descriptions.txt new file mode 100644 index 0000000..9b56a57 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/lighthouse_descriptions.txt @@ -0,0 +1,5 @@ +sun_aflgmdgsubwmxjui.jpg The lighthouse is white with a vertically striped texture, viewed from a slightly low angle, partially occluded by a colorful digital noise block on its lower-left side, and surrounded by bare trees with overcast skies. +sun_acgevxosjhmhlqfb.jpg The lighthouse features a tall, white, timber-clad structure with a slightly flared base and red hexagonal roof, viewed from ground level with a prominent occlusion of multicolored noise on the left side, set against a backdrop of blue sky and greenery. +sun_ajbhvbhornmtfrhd.jpg The lighthouse, partially obscured by a vertical strip of digital noise on the right side, is cylindrical with a white exterior, red roof, and black railing visible from a slightly angled side view, contrasting against a partly cloudy sky and a stone foundation at the water's edge. +sun_actedozmevnccgmz.jpg The visible portion of the lighthouse shows a white cylindrical structure partially obscured by digital noise in the upper section, positioned behind a tree and a white building with a red roof from a ground-level viewpoint, with green foliage and a parking lot in the foreground. +sun_awucehqlblcsrwho.jpg The lighthouse features a red and white dome with vertical panels, positioned on a hilltop against a backdrop of clear sky and ocean, partially obscured by a large pixelated section covering the foreground and part of the structure. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/limousine_interior_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/limousine_interior_descriptions.txt new file mode 100644 index 0000000..ccee1f7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/limousine_interior_descriptions.txt @@ -0,0 +1,3 @@ +sun_arnuripcsrkkckpm.jpg The limousine interior, viewed from the side, features a tan leather finish with a smooth texture, wood panel accents, a visible small television screen on the right, and is partially obscured by a large, central patch of colorful static. +sun_awslvkpjahtcnqzb.jpg The limousine interior features beige leather seating with a soft fabric texture on the backrests, viewed from the rear towards the front, with a large, pixelated occlusion obscuring the center and screens visible overhead in the front section. +sun_aoefqwxpnaawohvn.jpg The limousine interior features a wavy black and white textured seating arrangement with star-like light patterns on the reflective ceiling, partially obscured by a colorful static-like box occupying the middle section. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/living_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/living_room_descriptions.txt new file mode 100644 index 0000000..9ced08b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/living_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfxaylqcmsblmpwa.jpg The living room features a gray carpet, wooden entertainment furniture, and a sunlit view of an outdoor patio through large glass doors, with a colorful noise pattern occluding the central area. +sun_bmxnvsstaqdstqtt.jpg The living room features warm tones with a classic stone fireplace in the background, partially obscured by a vertical band of heavy pixelation, with ornate furniture and a richly textured area rug anchoring the setting. +sun_bxdnritjvibevhgi.jpg The living room, viewed from a slightly elevated angle, has a light-colored carpet, white walls, brown curtains, and a visible chocolate-brown sofa with patterned cushions partially occluded by bright, colorful noise in the upper left. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/lobby_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/lobby_descriptions.txt new file mode 100644 index 0000000..e3c3c44 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/lobby_descriptions.txt @@ -0,0 +1,6 @@ +sun_bmdtyeiqvhimeers.jpg The lobby features blue and white striped sofas, beige walls, and large windows, with a colorful, noise-like occlusion covering a central portion of the image. +sun_aljeyrkxshelybha.jpg The lobby features black leather sofas arranged around a wooden coffee table atop a patterned red rug, with a vibrant pixelated occlusion covering much of the right side, while soft natural light filters through sheer curtains on the left. +sun_axdhpskcldpepnej.jpg The lobby, viewed from a central perspective beneath a patterned dome, features a checkered floor and warm lighting, partially obscured by a rectangular area of colorful static in the central field of view. +sun_aewjmnekqyjrrekq.jpg The image shows a lobby with glossy, reflective, red and black checkered flooring partially visible from a low angle, while the center area is heavily occluded by a colorful noise pattern, with the walls appearing warm-toned and featuring an elevator on the right side. +sun_buhhvwodfypvdjby.jpg The lobby features a centrally placed, textured dark sculpture with water flowing at the base, surrounded by circular patterns on the polished floor, while the ceiling shows concentric designs, and a section on the right is heavily occluded by a colorful, pixelated block. +sun_bryhefepbtrebqpi.jpg The lobby features polished beige tiles, floral-patterned chairs, large windows with a view of greenery and parked cars, while the left side is heavily occluded with a noise pattern. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/lock_chamber_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/lock_chamber_descriptions.txt new file mode 100644 index 0000000..16e49ca --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/lock_chamber_descriptions.txt @@ -0,0 +1,3 @@ +sun_avvozluenojypppf.jpg The lock chamber, partially visible through dense greenery, appears from an elevated angle with textured stone walls, surrounded by lush foliage, while the central section is occluded by a mosaic of colorful noise. +sun_bzqhpcsgzswozfhs.jpg The lock chamber, viewed from above, features concrete and steel structures with a large colorful occlusion on the left, leaving the right area visible where murky green water meets the side wall and partially obscured machinery is present. +sun_bvnsfgsfxsgavekd.jpg The lock chamber area is occluded, but the visible foreground shows a boat with a white deck and railing, while the surroundings feature lush green vegetation along the banks, under a partly cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/locker_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/locker_room_descriptions.txt new file mode 100644 index 0000000..c36d920 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/locker_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_arxpkzfzjukczvjw.jpg A gray locker room with visible red framing features and benches, where a large section on the left is heavily occluded by a static-like noise pattern, and rows of lockers extend towards the back from a front-right viewpoint. +sun_abrobwrylptceqfh.jpg This low-resolution image of a locker room, viewed from an angle, shows a row of red chairs along the right with a column heavily occluded by multicolored noise, beige curtains on the left under warm lighting, and a partially visible ceiling with white tiles. +sun_anntqxogukysnimn.jpg The locker room features yellow lockers and grey carpeted seating and floor, viewed from the center aisle, with the left side heavily occluded by colorful static noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/mansion_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/mansion_descriptions.txt new file mode 100644 index 0000000..3a735de --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/mansion_descriptions.txt @@ -0,0 +1,6 @@ +sun_bngzaadclwsplkoc.jpg A distant view shows a red brick mansion with white columns partially obscured by a pixelated vertical strip on the left, set on a grassy hill with trees in the background and clear skies above. +sun_bybyiaslpucyuckq.jpg The image shows a mansion with beige siding, prominent rounded tower on the left, white trim detailing, manicured gardens with red flowers, and a large central area heavily occluded by colorful static noise. +sun_buykogdajnwrghbq.jpg The visible portion of the stone mansion features a steep gabled roof, dark textured facade, and ornate wrought iron fencing in the foreground, with heavy occlusion covering the left side and surrounding greenery composing much of the environment. +sun_brtnedihtngaqxjr.jpg The image shows part of a red-brick mansion with white window frames and a sloped roof, partially occluded by a large, pixelated gray rectangle, under a canopy of green foliage along a street. +sun_bllwzrrfigxefvtj.jpg The visible portion of the mansion features red brick walls with black shutters, white trim, and a front staircase leading to a column-supported porch, while the upper left appears partially occluded by a pixelated square, with leafy trees framing the left and right. +sun_byqzthxsypxekbtt.jpg The mansion exhibits a brown stone facade with intricate details, red tiled gable roof, and ornate balconies, partially obscured by digital noise on the right side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/manufactured_home_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/manufactured_home_descriptions.txt new file mode 100644 index 0000000..e1937c9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/manufactured_home_descriptions.txt @@ -0,0 +1,3 @@ +sun_bjezsmelazrskfsw.jpg The manufactured home is beige with white trim, viewed from a front-side angle, partially obscured by a large vertical strip of visual noise on the right, and features a white slatted design near the base and a single visible window with shutters. +sun_bmptsehjthnapqgl.jpg A cream-colored manufactured home with horizontal siding is partially visible from a side angle, with the front section heavily occluded by colorful static noise, displaying a window with a dark green awning. +sun_bmddfdldsvvfrhuh.jpg This low-resolution image shows a light grey manufactured home viewed from the front with a large occlusion covering the right side, featuring a simple rectangular shape and a small deck on grassy land with a chain-link fence, under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/market_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/market_descriptions.txt new file mode 100644 index 0000000..cabdb26 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/market_descriptions.txt @@ -0,0 +1,6 @@ +sun_bsehgxuhfkemxvqp.jpg A white tent with green plants beneath it under a tree, partially occluded on the right side by heavy pixelation, with signage indicating the sale of heirloom vegetables and herbs. +sun_bxkeanmkoicujqdm.jpg The image shows an outdoor market from a side view with booths under blue and gray canopies, a variety of produce on patterned tablecloths, and a large, rectangular occlusion covering part of the foreground. +sun_boiiiqvpektaetba.jpg The market features a bustling indoor environment with high ceilings and signage in black and yellow directing towards fruits and vegetables, partially obscured by heavy static occlusion across the bottom portion, while the upper area shows various small shops with green and brown tones. +sun_adkpgiplachgsyem.jpg The image shows a market storefront with a brick exterior and a cluttered foreground, partially obscured by a vertical patterned block covering the central sign area, displaying hints of white and red signage and surrounded by a mix of textured surfaces and urban elements like a trash can and street signs. +sun_bnuwzsdwgpksnvxv.jpg The market appears under overcast skies with stalls partially visible on the right, where vendors beneath colorful umbrellas sell produce, while a large area on the left is heavily occluded by digital noise, obscuring additional detail. +sun_babhmarxbaotifmq.jpg The market appears with multiple white tents arranged in a row, partially occluded by a colorful, pixelated block on the right, surrounded by people and diverse international flags under a cloudy sky in a bustling urban setting with tall buildings. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/marsh_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/marsh_descriptions.txt new file mode 100644 index 0000000..45644ef --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/marsh_descriptions.txt @@ -0,0 +1,6 @@ +sun_awpqacbohgzzjtfo.jpg The image shows a marsh with green reeds and grass surrounding a reflective water surface, partially obscured on the left side by colorful digital noise, under a cloudy sky. +sun_avcjjbgjeebuvpqd.jpg A lush green landscape with water reflecting the sky surrounded by dense greenery, partially obscured by a colorful noise pattern positioned centrally, suggesting a serene setting with visible vegetation and distant tree outlines. +sun_alqfvlizgvfllvsg.jpg A marsh scene with dried, brownish vegetation and shallow water partially concealed under a dense digital occlusion; leafless trees and a cloudy sky form the overlooked, serene backdrop. +sun_azgvpajjejjctudh.jpg The marsh appears as a serene water body with dark, reflective surfaces occupying the lower portion, surrounded by dense, green vegetation along the banks, while a significant central area is occluded by colorful digital noise extending vertically. +sun_abjstuqmctcsqlsf.jpg The low-resolution image shows a marshland with scattered patches of tall, yellowish-green grasses, an open water area reflecting muted colors in the background, and two black birds near the water's edge; the left lower corner is heavily occluded with a colorful, pixelated pattern. +sun_bulnzckztegbujqb.jpg The marsh scene shows a cloudy sky reflected in still water, bordered by autumn-colored trees on the horizon, with muddy ground and scattered tree stumps visible despite the large, centrally-placed occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/martial_arts_gym_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/martial_arts_gym_descriptions.txt new file mode 100644 index 0000000..a84d650 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/martial_arts_gym_descriptions.txt @@ -0,0 +1,3 @@ +sun_bksmwkxysxloafmo.jpg The image shows two martial artists in white uniforms performing a synchronized stance on a bright wooden floor, with a large, colorful occlusion obscuring their midsections, against a backdrop of indistinct spectators and gym equipment. +sun_bsttzktchwplheka.jpg The image shows a martial arts gym with a mint-green mat and individuals in white uniforms performing a stance; vibrant static occludes the center, while a person in blue stands in the background beside flags on a white wall. +sun_bqaoltlhxwcnjtrl.jpg A martial arts gym with a light-tiled floor and white walls, partially obscured by heavy static occlusion, features a person in a black outfit performing a stance near colorful, childlike wall decorations on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/mausoleum_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/mausoleum_descriptions.txt new file mode 100644 index 0000000..c8a5072 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/mausoleum_descriptions.txt @@ -0,0 +1,6 @@ +sun_bmssqaxrfmufhwxv.jpg A weathered mausoleum with a light stone texture is partially covered in snow, featuring classical columns and a gable roof, with a significant colorful occlusion on the right side, set amidst a wintery landscape with bare trees. +sun_bichfospwykajdqn.jpg A stone structure with curved steps leading upward is partially obscured by a large rectangle covering the central facade, while a stone sphinx with a slight patina is visible to the left, and autumn trees provide a backdrop. +sun_bzomoyjkvemjsqxp.jpg The mausoleum features a textured stone facade with a pointed arch door at the center, flanked by autumnal trees, with the left side heavily occluded by a pixelated block. +sun_bbnzcyngklosdebt.jpg A partially occluded mausoleum with a brick façade is visible, showcasing a horizontal rectangular structure with a snow-dusted ground and bare trees in the background, obscured on the left by a pixelated area, while wooden boards cover the entrance. +sun_brigndgsguhlpxdi.jpg The mausoleum, partially visible behind the central tall rectangular occlusion, appears to have a textured stone facade with elements like an archway, set amidst a cemetery filled with various tombstones and lush green grass under a clear blue sky. +sun_aroeqppyzdptjnkj.jpg The mausoleum is partially visible with its smooth, beige stone facade and classical architectural details seen from a frontal vantage point, with heavy multicolored pixelation occluding the central portion, while a clear blue sky and adjoining structures frame the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/medina_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/medina_descriptions.txt new file mode 100644 index 0000000..dc7293c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/medina_descriptions.txt @@ -0,0 +1,5 @@ +sun_cnwoaatspndmeufh.jpg The medina features bright white walls with a smooth texture, viewed from a street-level perspective, partially obscured by a tall vertical area of colorful static-like noise on the right, while the pathway and distinctively arched windows remain visible. +sun_cpdeppvtwnsdshxl.jpg The medina features aged, textured walls in muted earthy tones, with visible structural wear and tear, and the scene is viewed from a narrow alley, partially occluded by a horizontally placed, pixelated bar across the lower middle of the image. +sun_cbnalmclhsczaebb.jpg The image shows a sunlit, warm-toned orange wall with a small, tiled roof above a doorway, partially blocked by heavy colored noise, with visible parts including a metal gate, an illuminated open doorway, and a person dressed in black near the right side. +sun_cwepwmkdwdxkdwqq.jpg The image displays a narrow alley with white and vibrant blue-washed walls, leading into a passageway, partially obscured by a textured, colorful rectangular block in the foreground, and featuring a rustic lamp and potted plant on the cobblestone path under a clear blue sky. +sun_djoclmmewcuzhzrw.jpg The medina appears from a shaded archway revealing sunlit cream and yellow-toned buildings with flat roofs and minimal architectural details, partially obstructed by a large, colorful noise-filled rectangle in the left foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/moat_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/moat_descriptions.txt new file mode 100644 index 0000000..5274321 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/moat_descriptions.txt @@ -0,0 +1,5 @@ +sun_bfpeytvjxqccsnwz.jpg The image depicts a medieval stone castle with cylindrical towers, partially obscured by a large vertical area of dense noise, surrounded by a narrow water-filled moat, and partially visible under a cloudy sky. +sun_ajkgzcphlqmxczgy.jpg A serene, narrow water-filled moat with reflective greenish water is bordered by lush grassy banks, vibrant red flowers on the left, and tall stone walls, partially obscured by a colorful, pixelated square on the upper right corner. +sun_bkxjfznyndxqzdvc.jpg The visible portion of the moat is lined with autumn-hued trees reflecting in still water, with a substantial vertical section on the right obscured by digital noise. +sun_bzerjtavkfifvsje.jpg The moat is partially visible with a stone wall sloping down to a water surface, surrounded by lush green foliage on one side, while the center of the image is heavily occluded with a colorful noise pattern. +sun_aaacnzebidlpyvlg.jpg The image reveals a partially visible stone structure on the left with a grassy landscape to the right and a water-filled ditch, heavily obscured by colorful pixelation at the center, disrupting the view of the moat area. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/monastery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/monastery_descriptions.txt new file mode 100644 index 0000000..0450cfe --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/monastery_descriptions.txt @@ -0,0 +1,6 @@ +sun_byviosfnsigdymqj.jpg The monastery is viewed slightly from the side, with a grayscale, conical roof and stone walls adorned with faded, vibrant frescoes, partially obstructed by a tall, pixelated vertical occlusion, set against a backdrop of trees and blue sky. +sun_bcxeanajkrgiansf.jpg The monastery appears with a dome roof and stone walls, emerging above vibrant greenery on the right, while the left side is heavily occluded by randomized noise, partially obscuring a building structure. +sun_blteusxhbydgspli.jpg A small, aged stone monastery with weathered, sandy-colored walls and a prominent, central cylindrical tower with a conical roof, is partially obscured by a static-like occlusion on the left, set against a gray, overcast sky with rolling hills in the background. +sun_azpikmozuibxvfpi.jpg The image shows a large domed structure with a white facade and gold-colored domes, partially occluded by a vertical section of colorful noise on the right side and set against a clear blue sky with scattered clouds. +sun_bjqxwugepjltfqyx.jpg The image shows a brick building with an arched structure partially visible behind a large, colorful pixelated occlusion, surrounded by a garden with green grass and various flowering plants under a clear sky. +sun_bfsfzkjvfrepympd.jpg The image shows a stone monastery facade under a clear blue sky with a central bell tower, characterized by warm beige tones and a textured surface; the scene is partially obscured by a colorful, static-patterned vertical rectangle on the left, while a set of stone steps and surrounding greenery remain visible. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/mosque_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/mosque_descriptions.txt new file mode 100644 index 0000000..f8aa670 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/mosque_descriptions.txt @@ -0,0 +1,6 @@ +sun_bpebozyhtxqmddxt.jpg The mosque features a symmetrical design with a central dome and two side domes, predominantly white with blue and black accents, visible under a bright blue sky, though the middle section is heavily occluded by a mottled, multi-colored pattern. +sun_btqouyjylkczrstn.jpg The mosque exhibits a blend of modern and traditional architecture with a brown and white brick facade, partially obscured by a pixelated section covering the central dome, and features arched windows with intricate designs visible from a street-level viewpoint under a blue sky with clouds. +sun_actyeyhjqsnbfyxl.jpg The mosque has a sandy brown and white color with ornate carvings, domes and large minarets visible from a frontal viewpoint, and a central rectangular area heavily occluded by a static-like pattern amidst a clear blue sky. +sun_aclewphkmddfsekf.jpg The mosque, viewed from a low angle, features a bright white exterior with smooth textures on its domes and minaret, a clear blue sky overhead, and dense noise obscuring the central section, while the edges reveal trees and lower architectural details. +sun_abzpzwslaoksdatz.jpg The mosque has a white and triangular roof structure with visible geometric patterns, flanked by two tall, slender minarets on both sides and partially occluded by a central block of static noise, while the sky appears clear and blue in the background. +sun_apwrxckindpyjzqc.jpg The image shows a light-colored mosque with distinctive onion-shaped domes, partially obscured on the left by a multicolored, pixelated rectangular occlusion, amidst a lush environment with visible palm trees and traditional architectural elements. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/motel_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/motel_descriptions.txt new file mode 100644 index 0000000..93f74ce --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/motel_descriptions.txt @@ -0,0 +1,5 @@ +sun_bdwwqnlaredaumrk.jpg The scene shows a low-resolution view of a motel with a predominantly blue sky above, partially obscured by a large, colorful noise block that covers much of the central area, while a vintage vehicle and vending machines are visible on a paved surface in the unoccluded parts. +sun_adgwxoncsihiaqqu.jpg The image features a low-resolution view of a motel partially obstructed by colorful noise, with visible elements including a tan brick facade, a red railing, tall palm trees, and a foreground of neatly trimmed grass and purple flowers. +sun_bqjhjchgqopcluni.jpg A low-resolution image shows a single-story motel with beige siding and green doors partially obscured by a large occlusion covering the central area, set against a backdrop of dense green trees, with gravel in the foreground. +sun_bxryuzruaxjrpctn.jpg The motel has a white exterior with a red-trimmed roof and signage above the entrance, partially visible from the side at an angle, with a colorful, pixelated occlusion covering a central portion. +sun_awdsdsmsyrrpfeez.jpg The motel is viewed from the ground level, displaying a partially obscured light brown building with a visible Best Western sign on the left against a clear blue sky; the central area is heavily pixelated with a colorful, static-like pattern, covering much of the structure and surroundings. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/mountain_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/mountain_descriptions.txt new file mode 100644 index 0000000..beafc5f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/mountain_descriptions.txt @@ -0,0 +1,6 @@ +sun_bvypvmhmqinhgnli.jpg The visible portion shows a lush green landscape with a flowing river in the foreground, distant snow-capped peaks under a bright blue sky, and heavy occlusion in the center obscuring part of the mountains and trees. +sun_abvvlqznpdszhjnh.jpg The image depicts a rugged mountain with a textured surface of striated gray rock under a cloudy sky, partially obscured by a colorful noise pattern in the central-left portion, while the right side remains clear with visible ridges and sparse vegetation. +sun_bkivfqzrirblezdc.jpg The visible portion of the scene shows rocky, snow-dappled mountain terrain and an azure alpine lake, with significant occlusion by a gray, noise-patterned block covering the central areas of the image. +sun_bbkikcedkjpoelwe.jpg The mountain is a deep evergreen hue, accentuated by the shadowed hillside visible around the dense vertical occlusion of rainbow-colored noise, with a clear blue sky above and sparse tree vegetation along the slopes. +sun_bzpvgeoziqjjrviy.jpg The visible part of the mountain has a rugged, rocky texture with a grayish hue, seen against a clear blue sky, while the lower portion is heavily occluded by a dense patch of colorful noise, surrounded by a foreground of autumn-colored trees and grassy terrain. +sun_bonuhbnylxnbdkoc.jpg The visible portion of the mountain, seen from a partially elevated vantage point, features a snow-dusted texture with brownish earth, contrasted against a blue sky, while the right side is heavily occluded by a static pattern noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/mountain_snowy_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/mountain_snowy_descriptions.txt new file mode 100644 index 0000000..520e149 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/mountain_snowy_descriptions.txt @@ -0,0 +1,3 @@ +sun_aqxgqoqaoumncshp.jpg A rocky, textured landscape with grayish tones is partially obscured on the left by a colorful, static-like pattern while the background reveals distant snow-capped mountains under a cloudy sky. +sun_anigabujfplzicao.jpg The image shows a distant snowy mountain with white peaks and a smooth gradient into dark rocky textures, partially occluded by a colorful pixelated block in the upper left, set against a clear blue sky and a foreground of green sloping hills. +sun_bqdcurfhxbxgclsh.jpg A mountain with a flat top appears in the background, partially covered by digital noise obscuring its middle section, while its base is lined with evergreen trees in the foreground, against a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/movie_theater_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/movie_theater_descriptions.txt new file mode 100644 index 0000000..0175436 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/movie_theater_descriptions.txt @@ -0,0 +1,3 @@ +sun_aclpctibslfdcoqb.jpg The dimly lit movie theater, viewed from the rear, has dark seating and walls with a large projector screen centered in the background, partially occluded by a vibrant, multicolored vertical distortion. +sun_aljuleaenpqrjjyb.jpg The image portrays a dimly lit movie theater with red-cushioned seats, viewed from the rear toward a large blank screen; the central seating area is partially occluded by a multi-colored static pattern, while the ceiling features a grid-like texture with small white lights resembling stars. +sun_akaoaontkydsnsgk.jpg The image shows a side viewpoint of a movie theater with rows of dark, blue-backed seats arcing towards a large screen, which is heavily occluded by colorful static noise, while the ceiling has a grid of recessed lighting. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/museum_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/museum_descriptions.txt new file mode 100644 index 0000000..9c9c646 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/museum_descriptions.txt @@ -0,0 +1,5 @@ +sun_bzhmtcotchupwcvf.jpg The image shows an indoor museum setting with modern exhibit displays and panels in blue and white tones, partially occluded by a central strip of colorful noise, with visible text panels and lighting from the ceiling. +sun_bmqzhdiftjepumtl.jpg The image shows a museum interior with wooden display cases and walls, partially occluded on the left by a large area of static noise, while the visible section reveals framed pictures and text panels under soft lighting on a blue ceiling with a dark brown floor. +sun_atvhlvhmqcasttku.jpg The museum room features a warm, earthy-toned floor with white walls adorned with various artworks and shadowboxes on display, disrupted by a central vertical band of colorful static occlusion. +sun_bdanufzkphcccspa.jpg A heavily occluded image shows a group of people in formal attire standing in a room with a high ceiling and large grid windows, with a noise-filled vertical strip obscuring the center and part of a blurred figure against a light-colored wall on the left. +sun_addcpmuwjvzerifv.jpg The image shows a partially occluded interior with two ornate, beige-colored columns against a backdrop of textured, aged walls, while the central colorful static obscures the middle portion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/music_store_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/music_store_descriptions.txt new file mode 100644 index 0000000..6e86a7b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/music_store_descriptions.txt @@ -0,0 +1,3 @@ +sun_drcicdlkoeutltwh.jpg The music store features a room with white walls and pegboards displaying a variety of guitars in different colors, mostly visible from a slight angle, while the center is heavily occluded with colorful static noise, and additional instruments like a keyboard and a harp are visible amid a cluttered assortment on gray stands and tables. +sun_dgavxowprqmnpbtq.jpg The music store features a variety of guitars in different colors hanging on a wall-mounted display with a visible central glittery occlusion, showcasing white pegboard walls adorned with instrument accessories and small shelves, providing a glimpse of a structured, organized retail layout from a straight-on viewpoint. +sun_dmgwlvewospjbakm.jpg The image shows a music store with a variety of drum kits displayed on black shelves with metallic finishes, featuring mainly black and shiny gold textures, while the right side experiences significant occlusion with a noisy, multicolored pixelated pattern partially hiding the environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/music_studio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/music_studio_descriptions.txt new file mode 100644 index 0000000..77ded41 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/music_studio_descriptions.txt @@ -0,0 +1,3 @@ +sun_afujsgrxprjxsrrj.jpg The music studio features blue-textured walls, visible black studio monitors at different heights, and a visible yellow guitar resting vertically, with a central region heavily occluded by colorful noise. +sun_axzvpmbxmltqtagl.jpg The music studio is viewed from a slightly elevated angle revealing a control room setup with light-colored wood surfaces and dark equipment, mostly occluded by a strip of colorful static in the center, while visible areas exhibit neutral tones and speakers on either side. +sun_anwgzdoyasokjqmf.jpg From a side vantage point, a cluttered music studio with a visible sound mixer panel and a computer monitor is partially obscured by colorful static, with black shelving and equipment discernible against the window-lit background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/nuclear_power_plant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/nuclear_power_plant_descriptions.txt new file mode 100644 index 0000000..607f0d3 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/nuclear_power_plant_descriptions.txt @@ -0,0 +1,3 @@ +sun_ackokaekpkiybclt.jpg The nuclear power plant, partially obscured by a large pixelated area on the right, showcases weathered gray structures and two tall smokestacks set against a cloudy sky, with a small portion of a red and white building visible on the left amidst a paved and landscaped environment. +sun_aljcaycdoytscopr.jpg The image shows the top portion of a gray nuclear power plant with cylindrical cooling towers in the background, while the lower central area is heavily occluded by a colorful noise pattern, leaving only the upper parts and some surrounding sky visible. +sun_azjjiizlceyotvda.jpg The image depicts a low-resolution nuclear power plant with two large, dome-shaped structures in the background under an overcast sky, partially occluded by a colorful noise pattern along the right side, while power lines and a snowy environment with scattered vehicles are visible in the foreground. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/nursery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/nursery_descriptions.txt new file mode 100644 index 0000000..12f3a0b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/nursery_descriptions.txt @@ -0,0 +1,6 @@ +sun_awqwsxgcqbulqpir.jpg The nursery features a modern design with a green armchair and vivid orange accents, partially occluded by colorful static noise, revealing a small portion of a white crib and a straight horizontal orange wall stripe in a corner view. +sun_alfwpdwodtlxepgy.jpg The nursery features pastel-colored wall murals depicting cartoon characters with a partial view of a crib and a quilt, while a pixelated occlusion obscures the center, leaving the surroundings in soft tones of blues, greens, and yellows. +sun_alojtfdmbiatgxda.jpg The nursery features light blue and white bedding with a sailboat design, a teddy bear with red striped clothing on the right, and is partially occluded by a large block of colorful static covering most of the crib area. +sun_agnbkdiqwzijeidl.jpg The nursery features a dark wooden crib with a slatted design and a pink blanket draped over one side, viewed from an angled perspective in a carpeted room, with the right side heavily obscured by a static-like occlusion. +sun_apgsktywmnchoesr.jpg The nursery features a white crib with a yellow-striped ceiling, a black wall with a dark dresser containing colorful items, and black-and-white wall decorations, with significant pixelated occlusion obscuring part of the scene in the center. +sun_amtzheqdzpprxdxc.jpg The nursery features light pastel-colored walls with a wainscot divide, a wooden crib visible on the left, beige carpeting, and a large central occlusion with colorful static, covering parts of a wooden dresser and chair. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/oast_house_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/oast_house_descriptions.txt new file mode 100644 index 0000000..59d268c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/oast_house_descriptions.txt @@ -0,0 +1,3 @@ +sun_aeyjblclbhyaequa.jpg The oast house features a slightly reddish-brown roof with a visible white cowling on the right, partially obscured by a large rectangular patch of colorful static-like occlusion in the center, surrounded by a clear sunny sky and leafy vegetation. +sun_bppsxolfniinvzea.jpg The oast house has a reddish-brown, textured surface visible on the conical roofs, with a distorted, pixelated occlusion over the center, set against a clear blue sky with greenery partially visible at the base. +sun_acdarpfpwmyxaqlu.jpg The oast house features a white clapboard exterior with a pointed, conical roof partially visible from a roadside angle, heavily occluded with multicolored static on the right, while the surrounding environment includes greenery and a blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/observatory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/observatory_descriptions.txt new file mode 100644 index 0000000..26f2b59 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/observatory_descriptions.txt @@ -0,0 +1,6 @@ +sun_ayejiazncvppflfn.jpg The image shows a white-domed observatory structure at a slight angle against a clear night sky, with a rectangular, colorful static occlusion covering the lower portion, alongside a nearby red wooden structure. +sun_avlfbwebuoggjupf.jpg The low-resolution image shows a cylindrical white-domed observatory, partially obscured by colorful static-like occlusion over its lower section, with a foreground of silhouetted trees and a gradient blue sky. +sun_adknknjwhwaoqhdx.jpg The observatory features a white, dome-shaped structure with a smooth texture, viewed at an angle with a clear evening sky; significant occlusion covers the left side with a colorful noise pattern. +sun_amcweshgsrktfpfy.jpg A small, white domed observatory with a partially visible roof sits on a grassy area, with most of the lower structure heavily occluded by colorful static noise, and a clear blue sky in the background. +sun_aeoypakpgtfprtdd.jpg The image shows a green, metal-textured observatory with a domed roof on the right side, while the rest is heavily occluded with colorful noise patterns and partially surrounded by trees and a light grass pathway. +sun_andypevabzjssxxl.jpg The image shows a pair of spherical, red observatory domes with contrasting dark circular windows and thin antennas on top, partially obscured by a colorful rectangular occlusion, set against a cloudy sky with surrounding silhouettes of sparse trees and a metal lattice tower. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ocean_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ocean_descriptions.txt new file mode 100644 index 0000000..be3f918 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ocean_descriptions.txt @@ -0,0 +1,5 @@ +sun_asrknmilwsicoydx.jpg The ocean appears with a shimmering silver surface reflecting the muted sky, partially obscured by a vibrant, pixelated square of multicolored static in the upper right portion. +sun_awifyqzzubihkywf.jpg The image shows a low-resolution ocean scene at sunset with a golden-yellow sky reflecting on dark, rippling water, partially obscured by a brightly colored, static-like square in the lower left area. +sun_acexnnaqwvwovewa.jpg The image shows a distant view of a dark blue ocean under a bright, partially cloudy sky, with heavy multicolored pixelated occlusion in the lower right section, obscuring much of the water's surface. +sun_arenoivhmwnvovrk.jpg The image shows a section of turbulent ocean waves with a rich blue hue and foamy white crests, partially obscured by a vertical strip of colorful static, while a bird is silhouetted against the sky. +sun_afllxcwihpqkexrf.jpg The ocean appears dark with a textured, wavy surface reflecting sunlight from a low angle, partially occluded by a narrow vertical strip of colorful noise on the right side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/office_building_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/office_building_descriptions.txt new file mode 100644 index 0000000..5e9a03a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/office_building_descriptions.txt @@ -0,0 +1,3 @@ +sun_blmabbqxnsxoiuho.jpg A medium-gray and dark-blue office building with visible alternating horizontal lines of windows and panels is viewed from a low angle, with the upper section obscured by random noise, while the environment features a clear blue sky and a foreground of yellow railings. +sun_bzbxyanegssoxdgy.jpg A modern white building with a smooth, curved top and small, dark windows is visible, partially occluded by a colorful, pixelated block in the lower section, with the background showing a clear blue sky. +sun_bdlvppbjxqujsvop.jpg The office building, viewed from a street-level angle, features a modern glass facade with a metallic structural framework and is partially obstructed by a multicolored pixelated section covering the upper central area, while construction cones and equipment are visible in the urban environment below. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/office_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/office_descriptions.txt new file mode 100644 index 0000000..e0efcde --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/office_descriptions.txt @@ -0,0 +1,6 @@ +sun_bwtjnwjqspbzxfuc.jpg The office features large windows and brick walls, with cluttered desks visible at the lower corners, obstructed by a central region of noise, overlooking a cityscape with tall buildings in the background. +sun_ahctntqrunhdxhtb.jpg The office features a minimalist, modern design with light wooden furniture contrasted against white and gray walls, while a vibrant, multicolored occlusion obscures the central portion of the image, covering part of the desk and wall. +sun_apqymiegdkooxyql.jpg The office features wooden cabinetry with a blue accent panel, a uniquely shaped wooden desk with a computer, light gray flooring, and a tall occlusion of colorful static obscuring part of the scene in front of a window. +sun_bgaiiqfumzuvnmlf.jpg The office appears with a predominantly beige and soft brown color scheme, featuring a standard office chair covered with a dark fabric, a cluttered desk with a visible computer monitor, and wood blinds partially covering the windows, while the right side is heavily occluded with multicolored noise affecting visibility. +sun_bicaqnicjwprwdyq.jpg A modern office with wood flooring and a round table surrounded by chairs, featuring a heavily occluded section near the center, with visible shelves containing colorful books and a computer on the desk. +sun_aqnqwopzuahtrzmf.jpg The office features a cluttered desk with vintage beige computer monitors, scattered papers, and a dark blue chair, while a large section of the wall above is heavily occluded with colorful digital noise, leaving the lower right area minimally affected by the obstruction. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/oil_refinery_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/oil_refinery_descriptions.txt new file mode 100644 index 0000000..815a7f0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/oil_refinery_descriptions.txt @@ -0,0 +1,3 @@ +sun_bicgidaxuohsewfu.jpg The low-resolution image of the oil refinery shows a silhouetted structure against a twilight sky, featuring visible industrial pipes and towers with illuminated green lights, while a significant central portion is obscured by a large, pixelated gray rectangle. +sun_ahgqtfjtjcplmsiq.jpg The image shows an oil refinery with silhouettes of towers and pipes against an orange-hued sky at sunset, with a prominent static noise occlusion covering the right side, while large white storage tanks and a green foreground are partially visible. +sun_ahxxrmizmsqixfdz.jpg The oil refinery is silhouetted against an orange-tinted sky, with multiple tall, narrow chimneys partially obscured by a central vertical band of noise, and the landscape shows intricate networked structures highlighted in dark profiles under the evening sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/oilrig_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/oilrig_descriptions.txt new file mode 100644 index 0000000..881628f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/oilrig_descriptions.txt @@ -0,0 +1,6 @@ +sun_aywrmpfhebccvgqt.jpg This image shows the upper sections of an oilrig in the ocean with towering red and white latticed structures extending into a clear blue sky, partially obscured by a large, colorful static-like block in the center, while yellow framework and equipment are visible along the platform edges. +sun_abopamgoczldzjex.jpg The oilrig exhibits a deep red, partially illuminated tower structure rising vertically against a dark sky, heavily occluded in the lower center by static noise, with distinguishable horizontal beams and industrial elements in the foreground. +sun_ahmttrtwpobirnuv.jpg The oilrig is mostly visible from an elevated side view, with a yellow and white structure standing against a blue ocean backdrop, partially obscured by a large colorful static-like occlusion on the left side. +sun_auxxzjpvhbhiswhp.jpg The image depicts an oil rig with a dark silhouette against a cloudy sky, a flare visible at the top and partial occlusion by colorful static in the center; the structure's legs and cranes are faintly visible above a calm sea. +sun_aucaoiskggwetlot.jpg A partially occluded oil rig stands against a blue sky with visible metal lattice legs extending into the water, framed by a cityscape at the horizon, obscured by a large pixelated patch in the central structure. +sun_aktldngyrrftcwgu.jpg The oil rig is partially visible in a tilted position over turquoise water with significant pixelated occlusion on the right, revealing rusted support beams and a deck with metal surfaces and light objects scattered. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/operating_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/operating_room_descriptions.txt new file mode 100644 index 0000000..7955699 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/operating_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_ayswkyzgodretsps.jpg The operating room is brightly lit with a predominantly white and light gray color scheme, featuring a visible surgical table with a white sheet to the left, various medical equipment around, while the center portion is heavily occluded by multicolored static noise artifacts. +sun_bixaprqaoxxxioow.jpg The image shows an operating room with a blue patterned surgical drape covering a low table, viewed from the side and partially obscured by a large, vertically pixelated area; the walls appear plain white with minimal equipment visible around the edges, contributing to a sparse environment. +sun_argjrwammdcpuggm.jpg The operating room features a light beige floor with visible metal tables; one table is covered with a turquoise fabric, while the center of the image is heavily occluded with a bright, multicolored static pattern, with some medical equipment partially visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/orchard_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/orchard_descriptions.txt new file mode 100644 index 0000000..4b7386b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/orchard_descriptions.txt @@ -0,0 +1,6 @@ +sun_aasnyevjyhwkkarx.jpg The image shows a grove of trees with white blossoms, illuminated by bright sunlight, partially obscured by a central strip of heavy digital noise, with green grass visible at the base. +sun_azdxwrpiyfbzhgay.jpg The orchard features green-branched trees lining a dirt path, with a vertical multicolor pixelated occlusion centrally obstructing part of the foliage while maintaining a ground-level viewpoint. +sun_adyhpcyrnvfgjulm.jpg The orchard features rows of leafless fruit trees in bloom with white flowers, viewed from a ground-level perspective along a grassy path, partially obscured by a central rectangular patch of multicolored noise. +sun_anndvjkghlrihzwm.jpg The orchard features rows of leafless trees with small buds against a partly cloudy sky, while a colorful, static-like vertical occlusion covers a significant portion on the left side of the image. +sun_akadjltzgtyjrhug.jpg An apple orchard with rows of trees bearing red apples is partially visible under clear blue skies, with significant gray and multicolored occlusion on the right side that obscures part of the foliage and white ground covering. +sun_aydxktqzniznwwwy.jpg The low-resolution orchard scene is predominantly green with evenly spaced trees showing white blossoms along a grassy path, and the central region is heavily occluded with a multicolored static-like square. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/outhouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/outhouse_descriptions.txt new file mode 100644 index 0000000..6323609 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/outhouse_descriptions.txt @@ -0,0 +1,5 @@ +sun_akafuqugsjhcqxia.jpg The outhouse is constructed from bright green tarp material with a loose, makeshift appearance, visible from the front view with a large section occluded by colorful digital noise, surrounded by forest greenery. +sun_axlomipvldxohlxk.jpg The visible part of the outhouse is a weathered wooden structure with a dark, rustic appearance, seen from an angled side view with the right side heavily occluded by a pixelated area, set in a field with trees showcasing autumnal foliage. +sun_agaghrowuadckvrq.jpg The visible portion of the outhouse, seen from an angled front-side view, has a weathered wooden texture with a partially visible sloped roof, and the right half is obscured by heavy pixelation, set in a grassy, lightly wooded landscape. +sun_azbfydukgntsjsfa.jpg The outhouse in the image appears with a brown textured exterior against a rural landscape, partially occluded by a colorful static-like overlay, and is situated next to tall grass and a tree under a partly cloudy sky. +sun_ahwdsaqwxcqbphci.jpg The outhouse, seen from the front-left corner and partly obscured by digital noise on the right, has a weathered wooden texture with dark brown tones, standing in a snowy environment with a few bare trees around. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/pagoda_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/pagoda_descriptions.txt new file mode 100644 index 0000000..4dbcad9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/pagoda_descriptions.txt @@ -0,0 +1,6 @@ +sun_bijtgylhczjiytmn.jpg The pagoda, seen from a low upward angle, features layered brown roofs with ornate eaves and a central façade occluded by heavy pixelation, against a bright blue sky with a lens flare on the upper left. +sun_bucwcvzpkcdiqpwp.jpg The pagoda, viewed from the front, has a reddish-brown façade with ornamental detailing, partially obscured by pixelated noise covering the upper section, set against a clear blue sky. +sun_bpclnueqztgzjcpg.jpg The visible portion of the pagoda, seen from a ground-level front angle, features red and white tiers with ornate edges and green roof tiles, partially occluded by a central rectangle of digital noise, amidst a leafy environment and a staircase in the foreground. +sun_awhdpalqmyvaxnyt.jpg The pagoda features a partially visible dark and red facade with a traditional multitiered, curved roof, occluded in the central area by a colorful, noise-like pattern, surrounded by lush green trees and a paved pathway. +sun_bdsueslplqfnwvqd.jpg The pagoda, viewed from a frontal angle, has a dark, textured roof with several thin, stacked tiers, partially obscured on the left by a colorful noise pattern while surrounded by lush green foliage. +sun_accdtpgenvcbcbcf.jpg A traditional architectural structure with red and brown hues and curved, upturned eaves is partially obscured by a large, static-patterned rectangle, with a clear blue sky and trimmed greenery visible around the building. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/palace_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/palace_descriptions.txt new file mode 100644 index 0000000..814dc5a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/palace_descriptions.txt @@ -0,0 +1,6 @@ +sun_busjcpvsvrxjfehy.jpg The image shows a traditional architectural structure with ornate wooden carvings and dark red columns, partially obscured by a vibrant, pixelated block on the upper left, with stone steps leading to a raised platform in the foreground. +sun_bocykhfiubxymztm.jpg The image depicts a light-colored palace with an intricate, symmetrical architectural design, partially obscured by a central, vertically-oriented, colorful noise pattern, set against a clear blue sky with two prominent streetlamps framing the view. +sun_arwmrphbetpxlevc.jpg The visible sections of the palace feature a golden-brown facade with classical architectural elements, seen from a frontal and slightly elevated viewpoint, while the right side is occluded by a tall, pixelated rectangle against a clear blue sky and open courtyard. +sun_bngodbpuqqinwgov.jpg The yellowish facade of the ornate palace, viewed from the front with a clear blue sky backdrop, is partially obscured by a colorful, pixelated occlusion on the lower right, with meticulously landscaped gardens evident in the foreground. +sun_anzshbggtkghellq.jpg The image displays a brightly illuminated palace at night with turquoise and white lighting, featuring a central tall structure flanked by symmetrical wings, partially obscured by a vertical column of static noise, in front of a large fountain and sculpture courtyard. +sun_bzvexbwutubtxjoh.jpg The image shows a distant view of a grand building with classical architecture and dome-like structures in a muted beige color, obscured by a pixelated occlusion over its central portion, surrounded by structured gardens and cascading fountains with overcast skies above. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/pantry_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/pantry_descriptions.txt new file mode 100644 index 0000000..5f42d18 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/pantry_descriptions.txt @@ -0,0 +1,6 @@ +sun_adhlsgnubfovgktg.jpg The pantry, viewed from the front with open double doors, has shelves densely packed with assorted items, showing a variety of colors and textures, while a central rectangular occlusion with a multicolored, noisy pattern obscures part of the middle section, contrasting with the white doors and wooden floor. +sun_anwqovbnnepsibyu.jpg The image shows a pantry shelf displaying a variety of canned goods with colorful labels, viewed from the front with two wooden doors open; the left middle section is heavily occluded by digital noise, but the upper and lower sections reveal a collection of stacked cans and boxes in a neatly organized arrangement. +sun_ahsxrtflqwvobpem.jpg The pantry, viewed from the front, has white shelving stocked with assorted goods including jars, boxes, and cans; the upper shelves are heavily occluded with a colorful, pixelated pattern, while lower shelves display visible baskets and clear storage bins. +sun_afodfphqvkyythxc.jpg The pantry shelves are cluttered with various colorful boxed and jarred items, including visible cereal boxes and a clear bag of cereal, with a large section in the center obscured by heavy digital noise resembling a static interference pattern. +sun_aqmkcqvbadhhmfys.jpg The visible sections of the pantry show white shelving filled with assorted food containers and canned goods, surrounded by a light-colored wall and wooden floor, with a colorful, pixelated rectangle obscuring the central area. +sun_avquxtcappjkurse.jpg The pantry features wooden shelves with jars of preserved goods displayed from a side viewpoint, partially occluded by colorful visual noise in the center. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/park_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/park_descriptions.txt new file mode 100644 index 0000000..53d691d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/park_descriptions.txt @@ -0,0 +1,6 @@ +sun_bacaempvwbckqgqk.jpg The image shows a tranquil park scene with a partly cloudy sky, featuring a gently curving path bordered by a vivid green grassy area and a leafy tree extending its branches over a serene body of water; a large, central rectangular area is obscured by digital noise. +sun_ajozqjfbfretxedr.jpg A vibrant park scene with green grass in the foreground and colorful flowers, partially obscured by a large central pixelated area, surrounded by trees and distant buildings under a blue sky. +sun_bagsjbpbotjgrgxk.jpg A brick pathway curves through a grassy section of the park with trees lining the left side and a heavily pixelated rectangular occlusion covering the central portion, under a blue sky and scattered light. +sun_bmcuehzqptqzatsw.jpg A sunlit green park with visible trees in the background and a pixelated, multicolored occlusion in the center foreground obstructing ground-level details. +sun_bxsxiqdhqiennidr.jpg A sprawling green lawn with a tall, dark-textured tree in the center partially obscured by a pixelated rectangular area on the left, under a clear blue sky. +sun_atroomuyehkexbyc.jpg The image shows a park with lush green grass and trees, set against a bright background, partially obscured by heavy pixelation in the center that distorts the view of the environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/parking_garage_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/parking_garage_descriptions.txt new file mode 100644 index 0000000..d360a02 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/parking_garage_descriptions.txt @@ -0,0 +1,3 @@ +sun_dyxhaimtesenytrw.jpg The visible section of the parking garage reveals a linear perspective with muted yellow and brown colors, showcasing horizontal concrete beams along the ceiling, while the central area is heavily occluded by a vibrant, multi-colored, static-like pattern. +sun_dwamoisjiluilfuu.jpg The parking garage is viewed from an upward corner perspective, showcasing a beige brick texture with dark horizontal stripes, partially obscured by a central, colorful static-like occlusion, surrounded by a grassy area and set against a blue sky. +sun_dpsvcwxadqmertvy.jpg A multi-level parking garage with a visible gray concrete facade and horizontal bands, viewed from a street-level angle with significant pixel noise occluding the central-right portion of the image, while tree shadows and a sidewalk edge slightly frame the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/parking_lot_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/parking_lot_descriptions.txt new file mode 100644 index 0000000..6e15823 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/parking_lot_descriptions.txt @@ -0,0 +1,3 @@ +sun_bbafpemgnyanelwa.jpg The parking lot is viewed from across the street with yellow buildings featuring red roofs and awnings in the background, while the central area is significantly occluded by multicolored static noise, leaving visible portions of parked white and dark-colored cars on asphalt. +sun_bktlxgavskikukhp.jpg The image depicts a parking lot viewed from the side with numerous cars lined up in a row, some partially covered by a colorful noise occlusion on the right, with a train featuring a green and white color scheme visible in the background. +sun_asfdrgbonyaugyme.jpg The parking lot features an asphalt surface with white marked parking spots visible from a horizontal viewpoint, predominantly clear skies with some scattered greenery in the background, while a large vertical section on the left is occluded by multicolored static noise, obscuring parts of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/parlor_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/parlor_descriptions.txt new file mode 100644 index 0000000..1fbb1c5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/parlor_descriptions.txt @@ -0,0 +1,5 @@ +sun_bxxoqwidrtscskig.jpg The parlor features a classic style with a black and white fireplace on the left, a vibrant patterned carpet, a wooden display cabinet on the right, and a large occlusion of colorful noise obscuring part of the center. +sun_bumhktprhzkqkbfz.jpg The parlor features ornate red walls with gold-framed paintings, elegant chairs along the wall, a patterned carpet, and intricate architectural details marred by an occlusion covering the left portion. +sun_butiiythbdoolhdp.jpg A warmly lit parlor features floral patterned wallpaper and a grand piano adorned with sheet music on the left, a partially visible chandelier, and a fireplace with decorative vases on the mantel, obscured centrally by a vertical rectangle emitting a colorful, static-like texture. +sun_bvwjaqaykhjtsimq.jpg The parlor, viewed from an angle showing wooden flooring, features a predominantly light-colored wall and curtain setting, with a colorful painting and globe partially visible, while a significant portion is obscured by a dense, multicolored static-like rectangle; a red pillow accents the seating area. +sun_bxdgwbykhhzjsbzl.jpg The parlor features warm golden walls with intricately framed paintings and grand chandeliers, partially obscured by a central vertical mosaic of vivid colors; the elaborate patterned carpet covers the floor, and elegant light fixtures adorn the walls. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/pasture_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/pasture_descriptions.txt new file mode 100644 index 0000000..79c84cb --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/pasture_descriptions.txt @@ -0,0 +1,5 @@ +sun_bkeiwgeocentqnvf.jpg A green, grassy field is visible under clear blue skies, with a large central rectangular area obscured by colorful static noise, and scattered trees casting shadows across the landscape. +sun_aedxmbkciekdbgby.jpg The image shows a flat expanse of light green grass under clear blue skies, partially obscured on the left by a vertical strip of multicolored static, with rows of brick houses in the background adding a distinct contrast. +sun_bvgqhpzuyaaqryej.jpg The image displays a low-resolution pasture with lush green grass, captured from a side angle viewpoint where a cow stands partially visible, with a colorful, static-like occlusion covering its midsection, set against a backdrop of gentle hills and a sparse tree line. +sun_alevcjscxpwuxxwo.jpg A low-resolution image shows a partially occluded pasture with predominantly green hues where the grass is visible, set against a backdrop of blurred, muted blue-gray mountains and sky; the occlusion in the foreground is a vividly colored, pixelated square, while the visible vegetation appears lush and slightly hilly. +sun_bdqwnrzcpbxlrywz.jpg A lush green pasture with tall grass and a visible wooden fence on the right is partially obscured by a large, colorful, pixelated square in the upper center, with forested trees visible at the left edge. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/patio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/patio_descriptions.txt new file mode 100644 index 0000000..5bb0658 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/patio_descriptions.txt @@ -0,0 +1,6 @@ +sun_bwclurkweotbffez.jpg A low-resolution patio image showing a white resin chair on the right, stone paving with patches of grass, a wooden fence in the background, and heavy occlusion on the left side obscuring part of the view. +sun_bybkeikqwvzhyhjv.jpg The patio is viewed from a slightly elevated angle, showing tan stone tiles with a smooth texture surrounding a blue-tiled pool, partially occluded by a central vertical column of colorful static, with chairs and a table visible on one side under a backdrop of greenery. +sun_bmejccbsrtehdnke.jpg A wooden deck patio is partially visible from an elevated angle with a green umbrella and chairs, while part of the scene is heavily occluded by static-like noise covering a central region, surrounded by light wooden railings and a building with a glass door. +sun_butlvloulzpkhrhn.jpg The patio features a mixture of red brick and white siding, with a textured gray roof visible above, while a large multicolored occlusion obscures the central portion, surrounded by visible furniture and potted plants on a concrete floor. +sun_bhxzayvxgvuavhbk.jpg The patio features a stone surface with a varied texture, partially obscured by a colorful, pixelated pattern, while brown woven chairs and a small table are visible around the occlusion, set against a background of stone walls and greenery. +sun_bdaqfiskofrlohzl.jpg The patio features a reddish-brown brick floor with a textured surface, viewed from an angle showing white stucco walls and wooden gates, partially obscured by a large digital noise occlusion on the right side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/pavilion_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/pavilion_descriptions.txt new file mode 100644 index 0000000..619675f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/pavilion_descriptions.txt @@ -0,0 +1,5 @@ +sun_bwbiqxafovdniaqa.jpg The pavilion, partially obscured on the left by colorful noise, features a brown, wooden, triangular roof seen from a side-facing viewpoint with surrounding green trees and a gravel area. +sun_azxvzzviremubkft.jpg The pavilion features a gable roof with visible wooden beams, appearing from a slightly elevated viewpoint, with a multicolored static occlusion centrally obscuring the middle section beneath the roof, while the surroundings consist of open space with sparse vegetation and a partly cloudy sky. +sun_cksepfiujwrgaqjk.jpg The pavilion is viewed from the front with a red, wooden exterior and a gable roof, partially occluded on the left by a multicolored, static-like pattern, surrounded by a wooded environment with sunlight filtering through the trees. +sun_bihazktmosljgzvh.jpg The pavilion is partially visible with a light-colored roof peeking out from the top right of a large, heavily pixelated and noise-augmented rectangular occlusion, set against a backdrop of lush green grass and trees. +sun_crucbwaqxagvflzh.jpg A partially visible pavilion with a green roof and wooden supports is situated in an open, concrete-paved area, with significant occlusion at the center by a colorful, pixelated block, and accompanied by bare trees and benches in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/pharmacy_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/pharmacy_descriptions.txt new file mode 100644 index 0000000..929b221 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/pharmacy_descriptions.txt @@ -0,0 +1,6 @@ +sun_aszmaynukpnycwbz.jpg The pharmacy displays light wooden shelves with a mix of visible skincare and medication products at eye-level, brightly lit from above, with a colorful occlusion obscuring the central section of the middle shelf. +sun_bikzoclcysenzksq.jpg The image shows a pharmacy shelf dominated by vibrant white and blue shelving units visible from a frontal viewpoint, with bottles and boxes in various shapes aligned on top, while the central section is heavily occluded by a dense, multicolored noise pattern. +sun_axwvhjwlkpodwmcl.jpg A pharmacy with shelves of assorted products on either side is partially occluded by a column of pixelated static, while the visible sections display a variety of colorful boxes and bottles under fluorescent lighting. +sun_alglydciodueepcr.jpg The pharmacy has dark wooden cabinets with glass doors displaying various bottles, with a significant portion obscured by colorful digital noise, while the surrounding environment features warm lighting and vintage decor elements. +sun_btsyltnoqmgmwqiz.jpg The image shows pharmacy shelves filled with various colorful packages in a diagonal view with a vertical strip of pixelated occlusion masking the central section, leaving the top and bottom rows of products partially visible. +sun_bbbwdzixpwauftiz.jpg The image shows a pharmacy with a corridor view, where shelves lined with white and light-colored medicine boxes run along the right wall, partially occluded by a colorful static pattern, while the fluorescent overhead lights illuminate the pale, neutral-toned flooring and ceiling. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/phone_booth_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/phone_booth_descriptions.txt new file mode 100644 index 0000000..f6da761 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/phone_booth_descriptions.txt @@ -0,0 +1,3 @@ +sun_bralvyqvmkfuekhv.jpg The phone booth is red with a classic British design, partially obscured on the left by heavy digital noise, and situated on a stone-paved path adjacent to a historic building facade. +sun_bvmsftzgtjfzubzi.jpg The phone booth is painted green with a glossy texture, viewed from a slightly tilted front angle, partially obscured by multicolored noise on the door and surrounded by trees and parked cars. +sun_bqoevulmtcwcdtxd.jpg The phone booth is a classic red color and is viewed from the side, showing its rectangular shape with a row of small, square windows, while the lower part is heavily occluded by a colorful, static-like pattern, and it is surrounded by a stone pavement and building. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/physics_laboratory_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/physics_laboratory_descriptions.txt new file mode 100644 index 0000000..bb0aa3b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/physics_laboratory_descriptions.txt @@ -0,0 +1,3 @@ +sun_bohqndqhgvigryia.jpg The physics laboratory features a cluttered tabletop with electronic equipment and a small wheeled robot visible from a horizontal viewpoint, where a significant section is occluded by a colorful noise pattern on the left, contrasting against the neutral colors and textures of the room and furniture. +sun_bzgnktlmvljaawtx.jpg The image shows a cluttered laboratory environment with metallic shelving and various electronic equipment, while the central area is obscured by a square region with digital noise, featuring a mix of colorful static patterns and surrounded by visible metal frames and wires. +sun_bgygqorswweqvycl.jpg A cluttered laboratory setting with visible wooden cabinets and shelves under fluorescent lighting has a central vertical strip heavily occluded with digital noise, obscuring the middle section while showing equipment and benches on either side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/picnic_area_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/picnic_area_descriptions.txt new file mode 100644 index 0000000..51ae4b0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/picnic_area_descriptions.txt @@ -0,0 +1,3 @@ +sun_axxiagdfolclnlnn.jpg The image shows a wooded picnic area with numerous tall, slender trees casting shadows on a sunny ground, while a central patch is obscured by colorful digital noise, with visible picnic tables arranged sporadically on the clearings. +sun_bpxrcvyxnwcqymfr.jpg The picnic area features scattered wooden picnic tables on a dirt ground with patchy sunlight streaming through surrounding trees, while a colorful pixelated occlusion obscures the lower left portion of the image. +sun_bktszoypjweacafy.jpg A picnic area with wooden tables and benches in a natural setting is viewed from ground level, showing trees and subdued earth tones, while the center bottom is heavily occluded by pixelated noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/pilothouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/pilothouse_descriptions.txt new file mode 100644 index 0000000..83190c8 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/pilothouse_descriptions.txt @@ -0,0 +1,6 @@ +sun_budrpsgjkwnhjize.jpg A pilothouse interior is partially visible, showing a dark ceiling with light panels and a large window view of the sea, while the right side is heavily occluded by multicolored static. +sun_brvfqgspehorolow.jpg The pilothouse interior features a neutral-toned seating area with patterned upholstery, a wooden table, visible from an elevated viewpoint with the lower right corner occluded by colorful static noise, and a steering wheel visible on the back wall. +sun_avfqbpsgpnzajyvx.jpg The pilothouse has a clean white surface with multiple electronic navigation panels and displays, a prominent metallic steering wheel on the right, and a large vertical occlusion in the center with a grainy texture, while the background shows a wooden dock and subtle reflections. +sun_aedshpleaghpowzy.jpg The pilothouse features a modern control area with a large ship wheel on the left, various navigation equipment in the center with a digital display on the right, seen from a frontal viewpoint, while the top left corner is occluded by a noisy, pixelated patch above the window line, with visible details including floor carpeting and large wrap-around windows offering a view of the industrial waterfront outside. +sun_alhspwsfmrshpfwe.jpg The pilothouse interior features a warm, wood-toned texture with a distinct metallic steering wheel, black seating, and a cluster of screens on the control panel, partially occluded by a pixelated area in the central right section. +sun_bniiutmokpynqshq.jpg The image shows a pilothouse interior with a warm-toned wooden control console, partially obscured by a noise pattern overlay on the right side, surrounded by leather seating and a multi-pane windowed view. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/planetarium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/planetarium_descriptions.txt new file mode 100644 index 0000000..93b7f7a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/planetarium_descriptions.txt @@ -0,0 +1,6 @@ +sun_bjjhfjcksapvlwft.jpg The planetarium is partially visible on the right, showing a dome with a geometric, white exterior contrasted against a concrete structure, set against a grassy area with a tree obscuring part of it, while the left portion of the image is heavily obscured with a colorful noise pattern. +sun_bjcvqvbpxvoqfksa.jpg The image shows a front view of a large glass-walled structure illuminated in blue light, with a prominent spherical object inside, partially occluded on the right by digital noise; green grassy surroundings and lit lampposts are visible in the foreground. +sun_bnkianrrmbdvvhst.jpg A partially visible building with a dome textured in a metallic sheen and girdle-like horizontal bands is heavily occluded by a large, pixelated panel on the right, which obscures the entrance area, while a grassy lawn in front is bordered by a walkway along which people are passing. +sun_bbjocztbhscfavgg.jpg A dome-shaped structure with a neutral-toned surface is partially visible in the background, obscured by a densely pixelated rectangular area in the center, amidst a dim environment with silhouetted vegetation and tall spires on the right. +sun_bdwbwlzslicujbyt.jpg A dome-shaped structure with a smooth, light gray surface and partially visible ribbed texture is seen from a frontal viewpoint, surrounded by lush green trees, with significant colorful noise occlusion on the right side. +sun_bcaweltqepfrkfqc.jpg The image shows a large, dome-like planetarium with a grid-patterned surface in light gray, viewed from an angle showcasing a blue angular structure attached to it, partially obscured on the right by digital noise and foliage on the lower left in a dusk setting. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/playground_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/playground_descriptions.txt new file mode 100644 index 0000000..30f2e7b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/playground_descriptions.txt @@ -0,0 +1,5 @@ +sun_buaammzqkuldistg.jpg The playground image shows a patch of vibrant static over the central area, with visible elements like a sandy ground, a yellow slide slightly peeking from the right, and a structure resembling a swing set, set against a blurred background of trees and structures. +sun_bodexeftecxgrprx.jpg The playground features a curvy white slide with green and yellow supports, viewed from a slightly elevated angle against a backdrop of beige residential buildings, with a large central occlusion consisting of colorful static covering part of the scene. +sun_blztvgbizuxwhfwq.jpg The playground features a central blue slide structure with yellow rope elements on either side, viewed from the front with a vertical multicolored occlusion obscuring the left portion, and surrounded by bare trees and picnic tables in a park setting. +sun_bbqsiwmdnlpcvbld.jpg The playground features a vibrant yellow slide with a smooth texture, a central yellow climbing panel with handles, and is partially occluded by a pixelated vertical section on the upper left, surrounded by children playing on multi-level structures amidst a woodchip-covered ground and lush green background. +sun_bwpirctslckxpnfw.jpg The playground features a wooden swing set with red plastic connectors visible from a side angle, with the foreground dominated by a fenced black rubberized ground marked with yellow shapes, while the right half of the image is obscured by pixelated noise. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/playroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/playroom_descriptions.txt new file mode 100644 index 0000000..93539cc --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/playroom_descriptions.txt @@ -0,0 +1,5 @@ +sun_bmdlpmdmqrnhgnfa.jpg The playroom features a well-lit, beige carpeted floor with a low white bookshelf partially visible on the left, containing colorful children's books, while a wooden table set and a green cup are subtly illuminated by sunlight near a large window, with heavy occlusion in the center. +sun_bofasqgbbzllutuj.jpg The playroom features a pastel pink dollhouse with a teal base to the left, a large wooden rocking chair in the center beside an open doorway, and a colorful pixelated area occluding toys on the right, all set against a wall with a blue backdrop decorated with a chalkboard mural of a sun, grass, and flowers. +sun_bxkffknhssbvtyvt.jpg The playroom features a warm-toned wooden table and chairs on a textured carpet with a turquoise wall carrying framed pictures, while a large portion is occluded with a colorful static pattern, leaving the toy-covered white activity table partially visible. +sun_aqstljobacsrffsg.jpg A playroom featuring a light purple wall and a carpeted floor, with visible scattered toys and furniture such as a wooden chair and table; the right side is heavily occluded by colorful static, partially obscuring a child and a red chair. +sun_bsuobourejlhuool.jpg A brightly colored playroom features alphabet and numeral foam floor tiles with a textured surface, viewed from above, with a large vertical occlusion on the right side, partially revealing cubical foam blocks on the left in a carpeted environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/plaza_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/plaza_descriptions.txt new file mode 100644 index 0000000..57a5716 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/plaza_descriptions.txt @@ -0,0 +1,3 @@ +sun_bhsdfrsaknalfghr.jpg The image shows an elevated view of a plaza with symmetrical historical buildings on either side, featuring stone pavement outlined by lighter patterns, with the center heavily occluded by colorful static noise, while the background reveals a scenic cityscape under a cloudy sky. +sun_awtfloscouswpawx.jpg The image shows a sunlit plaza with a tiled surface featuring beige and gray tones, surrounded by dark wooden furniture arranged symmetrically, with a colorful pixelated occlusion on the left, bordered by lush green trees, retreating into a clear view of a pool and ocean beyond. +sun_ajqdefyihrimtwth.jpg The image shows a plaza with pathways and trees, bordered by modern buildings, and the scene is partially obscured by a colorful noise pattern covering the left side, while the right side reveals a gathering of people amidst greenery and urban structures. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/podium_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/podium_descriptions.txt new file mode 100644 index 0000000..8af6349 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/podium_descriptions.txt @@ -0,0 +1,3 @@ +sun_bayzsjxcmhtcqnmj.jpg The podium is obscured by a heavy visual noise overlay, with a racing-themed banner backdrop visible, showcasing logos such as SCCA, HAWK, and Sunoco, against which a trophy is being held up by someone in a yellow racing suit on the left side. +sun_aqyxpfarzwiemagk.jpg The podium appears to be a simple blue structure with a white number "1" visible on its flat front, partially occluded by a mosaic pattern, and surrounded by a group of individuals in martial arts attire on a stage setting. +sun_bzwkcepuagjvdjcq.jpg The podium appears shiny with a metallic texture, viewed from the front, partially occluded on the right side by colorful noise, set against a backdrop featuring a yellow banner with black text, surrounded by athletes raising their arms. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/pond_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/pond_descriptions.txt new file mode 100644 index 0000000..45d4a7b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/pond_descriptions.txt @@ -0,0 +1,3 @@ +sun_blfglsmhvwaztemo.jpg The visible portion of the pond shows a greenish, slightly reflective water surface with patches of sunlight, surrounded by lush green vegetation while a significant portion in the center is occluded by a noise-patterned rectangle. +sun_buohxbbfjdvtwffk.jpg The pond's reflective surface captures a hint of blue sky surrounded by dense foliage, with the central area obscured by colorful static-like noise, while visible sections feature an irregular grassy texture and a chain-link fence running diagonally in the foreground. +sun_batcqfhnspbbhvkx.jpg The pond, seen from a slightly elevated angle, exhibits a warm, amber-like hue with a smooth surface reflecting surrounding foliage, while a large, vibrant, pixelated occlusion covers the top left area, partially obscuring dense greenery along the banks. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/poolroom_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/poolroom_descriptions.txt new file mode 100644 index 0000000..69ce228 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/poolroom_descriptions.txt @@ -0,0 +1,3 @@ +sun_apmrnyqullyfqbhr.jpg The poolroom features two wooden pool tables with green felt tops and black corner pockets, seen from a frontal angle with a large vertical occlusion of colorful noise at the center, surrounded by a warm-toned carpet and overhanging green lamps, amid a backdrop of decorative walls, plants, and arched mirrors. +sun_affdhzdymxzmvgxj.jpg A room with warm, wooden paneling and a section of a classic pool table is visible from a frontal angle, partially obscured by a vertical strip of colorful static, showing ornate decor like a statue lamp and a framed painting on the walls, with a textured rug on the floor. +sun_bgixetllrwxjrpdv.jpg The poolroom features a dark pool table with a green playing surface, viewed from a side angle with low lighting, wooden flooring, and large rectangular occlusion over part of the room, while natural light filters through a window. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/power_plant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/power_plant_descriptions.txt new file mode 100644 index 0000000..54b5b85 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/power_plant_descriptions.txt @@ -0,0 +1,3 @@ +sun_aslyckudqfalbnjd.jpg The image shows a power plant with a predominantly industrial environment, featuring tall electric poles, a fence running horizontally, and significant occlusion in the center marked by multicolored static, all set against a partly cloudy sky with a low grassy foreground. +sun_bptpetozotyuzpay.jpg The image shows a construction site partially obscured by a digital noise overlay, with visible gray concrete flooring, exposed rebar structures, and a view of workers wearing yellow helmets against an urban and mountainous background. +sun_bohnyvbarckkgvmr.jpg The image shows a predominantly green foreground with vegetation and a railway, while on the right, three cylindrical cooling towers made of gray concrete rise against a hazy sky; on the left, partially visible behind heavy pixelation, is a tall red-and-white striped smokestack, with the central section obscured. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/promenade_deck_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/promenade_deck_descriptions.txt new file mode 100644 index 0000000..aa290ff --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/promenade_deck_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfgqmvdjopfrmwwz.jpg The image shows a partially occluded promenade deck with a perspective from one side featuring a wooden floor and white railings overlooking water, where the left area is obscured by colorful digital noise, and the visible section has deck chairs and a metallic structure overhead with an overcast sky. +sun_albsahfenmabrivt.jpg The promenade deck features a wooden floor with chaise lounges and people standing, viewed from an angle showing a partially obscured ceiling by colorful noise on the right, while soft daylight filters through large windows on the left. +sun_bqlscavjzenaxhvu.jpg The image shows a partially occluded promenade deck with dark wood textures on the floor, seen from a side angle under a green canopy, with wooden deck chairs and a table with some object visible; colorful pixelation covers the central part of the scene. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/pub_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/pub_descriptions.txt new file mode 100644 index 0000000..b2163c5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/pub_descriptions.txt @@ -0,0 +1,3 @@ +sun_bxvueibfpeucthfv.jpg The image shows a pub interior with maroon-colored tables and chairs, partially obscured by a large, centrally-placed pixelated square, with visible patrons in casual attire seated around the tables in a well-lit environment. +sun_bsafjzfdvymksdtm.jpg The pub features warm, reddish-brown walls and wooden textures visible from a side-angle view, with significant digital noise occluding the lower center, partially blocking the view of a traditional pub interior setting with patrons enjoying drinks. +sun_buptjhrvedlvzejd.jpg The image shows a cozy interior with warm yellow walls and dark wooden window frames, while a significant central portion is obscured by multicolored digital noise, revealing wooden chairs and part of a person on the left. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/pulpit_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/pulpit_descriptions.txt new file mode 100644 index 0000000..af0f630 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/pulpit_descriptions.txt @@ -0,0 +1,3 @@ +sun_bfgpnaqxuyptioiu.jpg The pulpit is placed against a backdrop of red brick arches and a circular window, partially shielded by colorful noise in the foreground, with visible curved stairs and a faintly seen greenish top. +sun_bwdktfacgihrnvex.jpg The image shows a stone pulpit with intricate carvings, partially obscured by a large rectangular digital noise occlusion in the center, revealing visible sculptures, pillars, and a detailed arch with varying shades of gray and a textured, ornate surface, set in a cathedral interior. +sun_bytzphzehbitgfql.jpg The pulpit, viewed from a side angle, shows an ornately carved wooden base with a dark brown finish, visible beneath the colorful occlusion in the center, against a background of beige stone columns and arched windows. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/putting_green_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/putting_green_descriptions.txt new file mode 100644 index 0000000..bb45c9d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/putting_green_descriptions.txt @@ -0,0 +1,3 @@ +sun_brdcdevjitalpmrh.jpg The putting green, viewed from ground level, features a smooth, green surface with a pixelated occlusion on the left, bordered by a narrow strip of slightly darker grass, surrounded by rustic wooden fencing and a few scattered golf balls near two white flags. +sun_bbtjyvcuupwnwijw.jpg This putting green features a lush, green artificial grass texture with a smooth, well-maintained surface, partially obscured on the left by heavy pixelated noise, surrounded by reddish-brown pebbles and visible from a slightly elevated vantage point, with a flag and balls indicating its use for golf practice. +sun_avnsvqymbuanenve.jpg The putting green features a smooth, well-maintained grassy surface with a lush green color, viewed from a low angle under a sky with scattered clouds, while the right side is heavily occluded by pixelated noise that obscures the nearby environment. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/racecourse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/racecourse_descriptions.txt new file mode 100644 index 0000000..500fd6c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/racecourse_descriptions.txt @@ -0,0 +1,3 @@ +sun_aeniohtcctzeduas.jpg A racecourse with a lush green grassy field stretches across the foreground with a line of horses and jockeys in various colorful attire on the left, viewed from a low vantage point, while a large rectangular area on the right is obscured by multicolored static, and a backdrop of rolling hills and trees is visible under a grayish sky. +sun_avtejzplsbjfuaxx.jpg The image shows the vibrant green grass of a racecourse with partly cloudy skies above; a large multicolored, pixelated square occludes the center, while horses and jockeys in colorful silks race on either side, with a grandstand visible in the background to the left. +sun_aytkcesdefsvxnjn.jpg Low-resolution foreground shows horses and jockeys mid-race, with visible grassy terrain underfoot, while the right side is heavily obscured by a patterned occlusion, limiting the view of the background environment and obstructing a portion of the visible participants. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/raceway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/raceway_descriptions.txt new file mode 100644 index 0000000..525f8de --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/raceway_descriptions.txt @@ -0,0 +1,2 @@ +sun_adthqvdlaodhssyk.jpg The raceway features a partially visible car painted in white with red details, low to the ground, seen from a side angle on a flat, paved track with surrounding grass and a large rectangular occlusion covering the top middle portion, obscuring much of the background environment. +sun_ayvmifrezsgutlmg.jpg The image shows a red and white car on a race track, partially obscured by a central square of noise, with visible black tire marks on the asphalt, grassy sections on either side, and another car barely visible in the background, suggesting a rightward curve from the racing perspective. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/raft_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/raft_descriptions.txt new file mode 100644 index 0000000..5a8b1e9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/raft_descriptions.txt @@ -0,0 +1,3 @@ +sun_afpinwkvflixfgul.jpg A white raft with visible people in blue and black clothing steering with red paddles is partially obscured by a large pixelated area on the left, set against a backdrop of churning water. +sun_atogysmttbysvxtv.jpg The visible portion of the raft features a bright yellow hue with a smooth texture, viewed from a frontal angle amidst white and choppy river waters, partially occluded by a colorful static pattern covering the central section, while the left and right edges of the raft are exposed. +sun_adwgxleebjrkjtap.jpg The white inflatable raft with visible green paddles is floating in a turbulent, rocky river, with a significant portion of the rear right side heavily pixelated and occluded. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/railroad_track_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/railroad_track_descriptions.txt new file mode 100644 index 0000000..b58fdaa --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/railroad_track_descriptions.txt @@ -0,0 +1,3 @@ +sun_akrfugqtjtorkvmi.jpg The railroad track is partially visible under a long, curving train with yellow and blue train cars, viewed from the side, with significant occlusion from a colorful, static-like patch; the surrounding environment includes lush greenery and a distant road. +sun_ayrpidqwwatbifte.jpg The railroad track, viewed from ground level, is partially visible on the left side with worn, grayish textures under a sunny, clear blue sky, while a large, colorful static occlusion obscures the center, surrounded by stacks of dark wooden ties and a yellow sign on the right. +sun_agqeebuauxqoqpfm.jpg The image shows a straight, narrow stretch of railroad track viewed from a low angle, partially occluded on the right side by a colorful static pattern overlay while on the left, the brown and green grass surrounds the track under a cloudy sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/rainforest_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/rainforest_descriptions.txt new file mode 100644 index 0000000..68c3dd6 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/rainforest_descriptions.txt @@ -0,0 +1,3 @@ +sun_auyxwjmgzavqnhhm.jpg The image shows a misty rainforest scene with visible dark, twisting tree branches covered in pale lichen, partially obscured by a rectangular area of multicolored noise, set against a backdrop of fog and lush green foliage. +sun_agxkvfvemlxlkkwv.jpg The rainforest image reveals vibrant green foliage and moss-covered branches with a dense, textured appearance, partially obscured by a heavy square occlusion on the left, while the background shows a misty, layered canopy. +sun_asjvysmekmotzxsp.jpg The heavily occluded rainforest image displays a vibrant green canopy with dense foliage, diffuse light casting a bright lime tint over the scene, and a tall vertical band obscuring the central part of the image, while surrounding undergrowth and tree trunks are partially visible. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/reception_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/reception_descriptions.txt new file mode 100644 index 0000000..79996a9 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/reception_descriptions.txt @@ -0,0 +1,3 @@ +sun_aufmbbtcgsqgcsha.jpg The reception area features glossy, red-brown wood surfaces with metal accents visible above, while the front desk area, partially obscured by colorful noise in the lower left, reveals a mirrored ceiling reflecting warm lighting. +sun_ahqwdpwuicyiehkb.jpg The visible reception area features a wooden desk with a reddish-brown hue, adorned with a computer and lamp, positioned under a brightly lit, cream-colored wall with small framed artworks, with the left side heavily obscured by a digital noise pattern. +sun_aopzrtfwasqjsflw.jpg The reception area features warm wooden paneling and dark columns, with soft, ambient lighting casting a golden glow from lamps atop the counter, amidst a carpeted floor with geometric patterns, partially obscured by a colorful, pixelated occlusion on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/recreation_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/recreation_room_descriptions.txt new file mode 100644 index 0000000..516e31a --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/recreation_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_avskzbxcslxcnxde.jpg The recreation room, viewed from an angle showing a partial side, has neutral-toned walls with a red pool table on the left, brown and beige furniture on the right, and multicolored digital noise covering the central portion, obscuring possible additional features. +sun_aqqrikzxllqczsnc.jpg The image reveals a recreation room with a low-resolution view featuring a green-felt pool table under warm overhead lights, surrounded by beige walls and carpet, and partially occluded on the left side by a vertical band, leaving visible chairs with pinkish cushions and a plaid sofa. +sun_aukueentugvwoepy.jpg A wooden poker table with an octagonal shape and red felt surface is in a room with cream-colored walls and patterned flooring, partially obscured by a central pixelated occlusion, with large windows flanked by neutral curtains allowing filtered natural light. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/residential_neighborhood_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/residential_neighborhood_descriptions.txt new file mode 100644 index 0000000..b2a1cf7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/residential_neighborhood_descriptions.txt @@ -0,0 +1,3 @@ +sun_dcqbytulnunnlwlw.jpg A residential neighborhood with a dark grey asphalt road partially covered with a large pile of autumn leaves and bordered by brown and brick homes is visible, with the foreground middle heavily occluded by a colorful pixelated square. +sun_dcplpwvlyxwzrcyr.jpg A tree-lined street with yellow road markings is partially blocked by a colorful, pixelated square on the right, obscuring some surrounding greenery and building features. +sun_dghbvzysbgtijxlh.jpg The image depicts a cobblestone street with overcast lighting, bordered by traditional stone buildings with steep roofs on the right, while a large vertical band of multicolored digital noise obscures the left side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/restaurant_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/restaurant_descriptions.txt new file mode 100644 index 0000000..eee8a9b --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/restaurant_descriptions.txt @@ -0,0 +1,3 @@ +sun_aqolpdyuvilfzbmh.jpg The image shows a warmly lit restaurant interior with a central round table set with dishes and glasses, surrounded by chairs, where a large colorful static occlusion covers part of the frame, with visible wooden beams on the ceiling and soft lighting from wall-mounted lights. +sun_awqwwckognzuikfd.jpg The image shows a restaurant interior with white tablecloths and a muted color palette of light browns and reds, partially occluded by a central vertical band of multicolored static, with visible table settings and a soft-lit atmosphere. +sun_axvculixhcntxheg.jpg The restaurant displays warm lighting with black chairs and tables, set on a green outdoor lawn, partially covered by large white umbrellas, while the central area is hidden by a pixelated occlusion. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/restaurant_kitchen_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/restaurant_kitchen_descriptions.txt new file mode 100644 index 0000000..1c677ef --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/restaurant_kitchen_descriptions.txt @@ -0,0 +1,3 @@ +sun_amdzvyepkpyeajxr.jpg The rustic restaurant kitchen is viewed from the side, showing warm yellow lighting, hanging meats, and copper pots with workstations partially obscured by a colorful rectangular occlusion. +sun_aagdjpvdyjabbqxy.jpg The restaurant kitchen shows a chef in a white uniform and red hat standing near stainless steel cookware, with significant multicolored static occluding the left side, and a backdrop of a stainless steel and marble environment. +sun_abnalyyuurplckat.jpg This restaurant kitchen image, viewed from a slight angle, features a stainless steel vent hood with a smooth texture and a large vertical multicolored occlusion obscuring the right side while the walls and ceiling display a neutral beige hue. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/restaurant_patio_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/restaurant_patio_descriptions.txt new file mode 100644 index 0000000..4b1ecd7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/restaurant_patio_descriptions.txt @@ -0,0 +1,3 @@ +sun_agcpklrvtffnafjw.jpg The restaurant patio shows a lively outdoor dining area with green chairs and tables covered in yellow tablecloths, situated on a textured stone pavement with large umbrellas providing shade, partially occluded by a rectangular area on the right displaying a multicolored static pattern. +sun_anmhtrpsulapelso.jpg The image shows a restaurant patio with red-orange tablecloths and wrought iron chairs overlooking a body of water and mountains, with the central area heavily obscured by noise, allowing only partial views of a scenic, elegant lakeside setup. +sun_adpkconaohxktrvz.jpg The restaurant patio features white metal chairs and tables in a casual layout on a sidewalk, with a notable central band of colorful pixelation obscuring parts of the scene, while people in relaxed postures add a lively atmosphere against a backdrop of textured storefronts. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/rice_paddy_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/rice_paddy_descriptions.txt new file mode 100644 index 0000000..fabe0b4 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/rice_paddy_descriptions.txt @@ -0,0 +1,3 @@ +sun_amqelxjfavwfiyky.jpg The image shows rows of green rice plants with a vertical band of colorful static-like noise occluding the center, while the visible plants are submerged in muddy water creating a reflective surface under a slightly tilted overhead viewpoint. +sun_aytwvmudymezxxks.jpg A lush green field of uniformly growing rice plants stretches out, partially obscured by a heavily pixelated, static-like rectangular area on the right, with tree silhouettes lining the horizon under a hazy sky. +sun_amcylosalclnctmv.jpg The image shows a lush, green rice paddy with a coarse texture, viewed from a slightly elevated angle with a significant vertical area centrally occluded by a dense, multicolored noise pattern, while a partially visible figure wearing a white hat is positioned to the left of the occlusion, contrasting with the vibrant greenery. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/riding_arena_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/riding_arena_descriptions.txt new file mode 100644 index 0000000..d04912c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/riding_arena_descriptions.txt @@ -0,0 +1,3 @@ +sun_bhwlyhjlodalhgox.jpg The riding arena features a textured, speckled ground in shades of gray and green, with a central multicolored vertical occlusion, visible horses on either side, and a roof with evenly spaced lights and beams. +sun_benhqgbquzodzvzw.jpg The riding arena features a vast, sandy floor with a warm, brown hue, partially obscured by a pixelated, multicolored occlusion in the upper center, while wooden walls and roof are visible from an off-center vantage point with fluorescent lighting casting bright illumination. +sun_bnonyhljsiamrhat.jpg The riding arena features a long, spacious interior with visible wooden ceiling beams and white-paneled walls, viewed from the central aisle, with a heavily pixelated occlusion covering the right portion of the image, and a textured, gray floor. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/river_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/river_descriptions.txt new file mode 100644 index 0000000..2104046 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/river_descriptions.txt @@ -0,0 +1,3 @@ +sun_ajnwquklxhjymhnh.jpg The river appears as a narrow band of soft blue with a smooth texture, viewed from the side, with a central vertical band of heavy pixelated occlusion obscuring most features, while trees and faint distant mountains are visible in the background. +sun_ahsjhpkmugldmklo.jpg The river appears serene with a smooth, flowing texture in a bluish hue, visible from a side view with large trees providing a green backdrop on the right, while brightly colored noise heavily occludes the upper left portion. +sun_ardohoiknfrlmhok.jpg A muddy river flows gently with reflections of trees on the water's surface, partially obscured by a pixelated, colorful rectangle on the left, featuring a notable fallen tree trunk extending from the right riverbank into the water. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/rock_arch_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/rock_arch_descriptions.txt new file mode 100644 index 0000000..c54fa01 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/rock_arch_descriptions.txt @@ -0,0 +1,3 @@ +sun_bqawcygeqmbgyiyn.jpg The rock arch appears in warm, earthy tones with a smooth texture viewed from a distance against a blue sky, partially occluded by a rectangular patch of multicolored static. +sun_bhrmnsqcaphhmzis.jpg The image shows a pixelated rectangular occlusion covering the central portion, surrounded by reddish-brown rock formations and sparse greenery under a clear blue sky. +sun_bcbrrhmnumhzqgok.jpg The visible portion of the rock arch is a warm reddish-brown hue with a smooth, weathered texture, and it appears from a low-angle perspective with a heavily pixelated occlusion covering the central and upper sections, leaving exposed areas at the base against a backdrop of distant mountains under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/rope_bridge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/rope_bridge_descriptions.txt new file mode 100644 index 0000000..66491be --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/rope_bridge_descriptions.txt @@ -0,0 +1,3 @@ +sun_dhlidmsdzvngvklp.jpg A partially visible rope bridge, seen from the side and surrounded by lush green trees, has a blurred path with earthy hues and is heavily occluded in the center by a colorful noise pattern, with supporting ropes faintly visible. +sun_alfhnzufhcnnrqts.jpg The rope bridge, viewed from an angle leading into the leafy jungle environment, features visible natural wooden planks and railings, while the center is obscured by colorful digital noise, with surrounding areas showcasing the dense greenery of the forest. +sun_aokxfabvdrnvbchv.jpg The image shows a rope bridge extending diagonally across the lower right portion of the image with beige ropes and wooden slats, partially obscured by a colorful noise pattern on the left, set against a rocky coastal landscape with moss-covered cliffs and a tumultuous sea in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ruin_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ruin_descriptions.txt new file mode 100644 index 0000000..484fb98 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ruin_descriptions.txt @@ -0,0 +1,3 @@ +sun_ajattgavhlllqjkt.jpg The ruin displays a mix of aged beige and sandy textures on the partially visible stones, with the foreground featuring horizontal layers of rectangular blocks and the background showing a taller, more irregularly shaped structure; the central portion of the scene is heavily occluded by vibrant, multicolored static-like patterns against a clear blue sky. +sun_andkmcdxhtquqbns.jpg The image shows a series of weathered stone columns in a ruin format, featuring a rough, gray texture, viewed from a ground-level perspective with a central, colorful pixelated occlusion that obscures part of the ruin while the surrounding area shows sparse vegetation and a clear blue sky. +sun_antdbngrrylxwwlz.jpg The left half of the image reveals weathered, beige-brown rock formations with carved structures, partially obscured by a dense, colorful vertical occlusion of noise, while the background shows a clear sky and rocky landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/runway_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/runway_descriptions.txt new file mode 100644 index 0000000..8be6c74 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/runway_descriptions.txt @@ -0,0 +1,3 @@ +sun_apzmwlclpjdunppb.jpg The image shows a partially visible white aircraft with a horizontal red and blue stripe on a grey runway, heavily occluded on the left by a large vertical section of colorful noise, with the plane's tail and winglet featuring dark blue details and a registration number barely visible. +sun_bfirahbsfbhjovyq.jpg A small, partially visible airplane is positioned at an angle on a grey, curved runway under an overcast sky, with a large, multicolored static occlusion concealing the left portion of the scene, and faint greenery in the background. +sun_bcxgfxgqtcrhrjqc.jpg The runway is partially visible with a strip of green grass on the side and a clear view of a large aircraft's tail fin and fuselage on a cloudy day, with the central area heavily obscured by a colorful noise pattern. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/sandbar_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/sandbar_descriptions.txt new file mode 100644 index 0000000..b108b53 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/sandbar_descriptions.txt @@ -0,0 +1,3 @@ +sun_agjlpjejeyncksoy.jpg A sunlit expanse of pale, sandy shoreline curves along the left side, bordered by gentle, frothy waves, while the central part is obscured by a multicolored, static-like occlusion against a backdrop of clear azure sky and teal ocean. +sun_corsmmifcmlaggnc.jpg The sandbar appears as a curving strip of light beige with a sandy texture running parallel to a body of water on the right, with the middle part heavily occluded by a colorful, pixelated square area against a backdrop of clear blue sky with scattered clouds. +sun_baxsuqobnjhgdqbf.jpg A portion of the sandbar is visible in the background with a smooth, light tan texture contrasting against the darker, wet sand reflecting the overcast sky, while the foreground is occluded by a colorful, pixelated block. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/sandbox_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/sandbox_descriptions.txt new file mode 100644 index 0000000..41e894e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/sandbox_descriptions.txt @@ -0,0 +1,3 @@ +sun_bdqtposgredbetai.jpg The sandbox is surrounded by dark wooden borders and filled with grayish sand, with a child sitting inside holding a yellow shovel and a red bucket amid heavy pixelated occlusion covering most of the upper body, viewed from a front-facing angle. +sun_bjsqdvkfffyublpo.jpg A low-resolution sandbox scene contains scattered toy trucks and sand tools on coarse, brownish-gray sand, viewed from above, with a large central area concealed by gray pixelation and surrounded by light-colored walls. +sun_bkcevnpyqoexguzy.jpg A white rectangular sandbox partially filled with light brown sand is seen at a slightly elevated angle, with two children playing inside, and colorful toys visible amid a heavily textured occlusion on the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/sauna_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/sauna_descriptions.txt new file mode 100644 index 0000000..b2b919d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/sauna_descriptions.txt @@ -0,0 +1,3 @@ +sun_bbedsjtdfqbytqxd.jpg The sauna features light wooden paneling with a visible bench and corner shelf, accompanied by a prominent occlusion block in the center displaying a colorful static pattern, while a copper ladle set rests on the right side. +sun_bfdiudnusludyssc.jpg The sauna, viewed from the entrance, features natural wood paneling with vertical and horizontal patterns, light tan coloring, and a seating area partially obscured by a colorful, pixelated occlusion in the lower left. +sun_bfizqjodvavccawl.jpg The image shows a wooden sauna interior with vertical slats of light brown wood and a partially visible bench, viewed from the front, with a large square of static-like noise occluding the central portion and a small analog clock on the left wall. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/schoolhouse_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/schoolhouse_descriptions.txt new file mode 100644 index 0000000..d0e691c --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/schoolhouse_descriptions.txt @@ -0,0 +1,3 @@ +sun_bmysnswnokcdhqlp.jpg The schoolhouse, viewed from a front diagonal angle, has a wooden structure with pale walls and a distinct, pointed shingled turret roof, partially obscured by a large square digital noise occlusion in the central area, set against a rugged, arid hillside under a clear blue sky. +sun_bqigdnxkyoshanor.jpg The visible part of the schoolhouse features a white facade with wooden doors and windows adorned with black wrought-iron bars, set against a sunny blue sky, with a large area occluded by a colorful static pattern on the left. +sun_biopnhyvqugnsgym.jpg A brick building with a gabled roof is seen from the front, partially obscured by a large, pixelated rectangle over the central portion, with visible beige trim and signs, alongside a parked car and bicycle near a side extension. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/sea_cliff_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/sea_cliff_descriptions.txt new file mode 100644 index 0000000..a754cd5 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/sea_cliff_descriptions.txt @@ -0,0 +1,3 @@ +sun_bflgfyywvxbpeyxl.jpg A sea cliff with a light, textured surface is partially obscured by colorful digital noise, with visible greenery atop some sections, viewed from the water with a clear sky above. +sun_bwtjkggeatbyjmqw.jpg The visible section of the sea cliff exhibits rugged, stratified brown and reddish rock formations with clear horizontal layering and texture, viewed from a side angle, while a significant portion of the left side is obscured by multicolored static interference. +sun_bvjgecyzlletvasn.jpg The sea cliff appears in a natural rocky setting, partially obscured by colorful pixelated noise, with visible rugged, grayish rock textures under a bright sky and a sparse array of evergreen trees along the edge. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/server_room_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/server_room_descriptions.txt new file mode 100644 index 0000000..93ae217 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/server_room_descriptions.txt @@ -0,0 +1,3 @@ +sun_bnmyctfzbjzbtuxa.jpg The server room, viewed through glass from a frontal perspective, shows a row of black server racks with vertical blue and red cables, partially obscured by a colorful static rectangle across the lower center. +sun_bdqihfoxmdlmjoyc.jpg The server room is seen from a side angle with dark-colored server racks lining the right side of a narrow, white-tiled corridor, featuring a large pixelated occlusion centrally obscuring some equipment and one visible desk with a monitor on the left. +sun_bffbkjqunmwwgrgn.jpg A server room with a row of tall, white server racks viewed from an angled perspective is partially occluded by a vibrant, multicolored, pixelated patch covering a section of the left foreground, while gray floors and walls are visible in the background. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/shed_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/shed_descriptions.txt new file mode 100644 index 0000000..4ba4258 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/shed_descriptions.txt @@ -0,0 +1,3 @@ +sun_bsrgmlftxxogflfm.jpg The shed appears to be a small, gray structure with a simple, block-like form viewed from a slightly angled side perspective, partially obscured by colorful pixelated noise on the left, set against a concrete exterior and a brick building backdrop under a cloudy sky. +sun_bhcxovbbmcclhcdv.jpg The shed has a beige exterior with a gabled roof, partially obscured by colorful static on the left side, and features an open wooden door on the right, surrounded by trees and neighboring fences. +sun_bdnkozfskauknpkx.jpg The shed, viewed from the front right, has a natural wood texture and light brown color, with the left side heavily obscured by colorful visual noise, and is surrounded by greenery, including a tree and a planter with flowers. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/shoe_shop_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/shoe_shop_descriptions.txt new file mode 100644 index 0000000..360b17d --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/shoe_shop_descriptions.txt @@ -0,0 +1,3 @@ +sun_apwuarbomufragel.jpg The shoe shop features light wooden floors with shelves lined with various shoes along both walls, a central pathway, bright ceiling lights, and a large multicolored pixelated occlusion in the middle. +sun_bcdfdjpbdurrrytg.jpg The shoe shop displays a cozy interior with warm-toned lighting and shelves filled with various shoes along the walls, while the central area is obscured by heavy pixelation, leaving the left and right peripheries with visible red chairs and wooden shoe fittings. +sun_bvmdcvymajobiley.jpg The shoe shop features a display area with wooden shelves showcasing various sneakers against a lightly lit backdrop, with visible brown and gray tones and a static, pixelated occlusion covering a central portion of the image, while a person in a white shirt examines a dark-colored shoe on a light counter. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/shopfront_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/shopfront_descriptions.txt new file mode 100644 index 0000000..ea2e1f7 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/shopfront_descriptions.txt @@ -0,0 +1,3 @@ +sun_bxxkutpefearrcsr.jpg The shopfront is viewed from a corner angle, with a red and white sign visible on the left side, and the right side heavily occluded by colorful noise, showing a brick building with large windows above. +sun_bqdqyebjdtmvlfir.jpg The shopfront is partially covered by a multicolored noise pattern occlusion, with visible beige brick walls and white window frames seen from a street-level perspective on the left side. +sun_agmtpdiowsmqhtaw.jpg The shopfront features a vibrant display with ornate decorations and figurines visible through a window, framed by dark green shutters on a primarily orange wall, with occlusion covering the left side. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/shopping_mall_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/shopping_mall_descriptions.txt new file mode 100644 index 0000000..021316f --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/shopping_mall_descriptions.txt @@ -0,0 +1,3 @@ +sun_avwzjsijaxnwuzjx.jpg The image shows a multi-story shopping mall interior with white railings and orange accents, featuring a spiral staircase on the right and partly occluded by a colorful static pattern on the left. +sun_avhsscjveiskxgfk.jpg The shopping mall features a vibrant upper section with large, colorful advertisements of lips and eyes, partially occluded by a central vertical band of static noise, and shows a bustling atmosphere with people on escalators and intricate railings reflecting the shoppers’ presence and ornate architecture. +sun_akcwhonnrtwmnjev.jpg The shopping mall features a bright, modern interior with a high, curved glass ceiling casting light over a central atrium with tiled flooring, surrounded by two levels of storefronts, but significant occlusion in the top left corner obscures part of the ceiling and upper level. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/shower_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/shower_descriptions.txt new file mode 100644 index 0000000..cf8b01e --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/shower_descriptions.txt @@ -0,0 +1,3 @@ +sun_axagkcctjrssmrst.jpg The shower, viewed from a side angle, has a chrome fixture on a beige marble wall, with a large colorful noise pattern occluding the central area, and a partially visible bathroom environment with a door and picture frames in the background. +sun_bbiimobkkqjuccks.jpg The image shows a corner shower with a glass door framed in a metallic trim, viewed from the front, partially occluded by multicolored noise in the lower right area. +sun_bkpskbdtaduhjcsf.jpg The shower, partly obscured by a pixelated area in the center, features a sleek metal handheld fixture and dual controls, set against light blue, horizontally-laid rectangular tiles with a built-in wall niche visible to the right. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/skatepark_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/skatepark_descriptions.txt new file mode 100644 index 0000000..4f1aaa0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/skatepark_descriptions.txt @@ -0,0 +1,3 @@ +sun_daxzvvifvehtbksy.jpg A sunlit, concrete skatepark with smooth, gray surfaces and geometric structures, including ramps and handrails, appears in a wide and open setting, with an area on the lower right heavily occluded by colorful digital noise, against a backdrop of trees and a corrugated building. +sun_dlvrjnbaycfpafro.jpg A concrete staircase with adjacent ramps is partially occluded by colorful static, while the foreground features smooth pavement against a cloudy sky backdrop, with steel railings and visible lamp posts on either side. +sun_dlgaxlvjjverdwbh.jpg The image shows a skatepark with smooth, gray concrete surfaces and a large central area heavily occluded by colorful static noise, surrounded by people and outlined by metal fencing under a clear blue sky. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ski_lodge_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ski_lodge_descriptions.txt new file mode 100644 index 0000000..51780ae --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ski_lodge_descriptions.txt @@ -0,0 +1,3 @@ +sun_bndqbqrtdqwdwkll.jpg The ski lodge, visible from a front-side angle, has a snowy landscape with a large occlusion of digital noise covering the left side, featuring dark brown wooden exterior walls and a prominent snow-covered roof. +sun_bsztskywmtujwkdp.jpg The image shows a partially visible ski lodge with a snow-covered foreground, a forest background, and a section of colorful static occluding the central area. +sun_bnydyehhrwdlmjlc.jpg The image shows a ski lodge with a snowy rooftop and wooden exterior bathed in warm tones, viewed from the front-left with a central grey pixelated occlusion, surrounded by a snowy landscape. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ski_resort_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ski_resort_descriptions.txt new file mode 100644 index 0000000..9d67cde --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ski_resort_descriptions.txt @@ -0,0 +1,3 @@ +sun_ajjdljbwtfcpdijl.jpg The image shows a snowy landscape with a sloping ski area and scattered skiers, partially obscured by a large, colorful static block, while the clear sky and evergreen trees frame a chalet with a sloped roof. +sun_avirvpmhulpiruis.jpg A snow-covered ski resort with a chalet-style building is seen from a frontal viewpoint, partially obscured by a vertical strip of colorful static noise, with ski lifts ascending the snowy mountain in the background. +sun_amgwbhvgtkcmiytk.jpg The ski resort is partially visible with snowy mountains in the background and scattered buildings surrounded by pine trees, while the central section of the image is heavily occluded with a multicolored, pixelated pattern. diff --git a/utils/area/descriptions/sun/generated_descriptions_occ/ski_slope_descriptions.txt b/utils/area/descriptions/sun/generated_descriptions_occ/ski_slope_descriptions.txt new file mode 100644 index 0000000..52b7dc0 --- /dev/null +++ b/utils/area/descriptions/sun/generated_descriptions_occ/ski_slope_descriptions.txt @@ -0,0 +1,3 @@ +sun_bynxhsahukcqcsob.jpg The ski slope features a sunlit snowy terrain with overlays of multicolored noise obscuring the central area, surrounded by towering snow-laden trees and a clear blue sky partially visible. +sun_bnnsavxliszcbgtd.jpg The ski slope appears as a gently curved, snow-covered path with well-groomed parallel tracks, surrounded by snow-laden trees and mountain slopes, under a cloudy sky, with a central rectangular area heavily occluded by multicolored noise. +sun_bpgaculoftwjywkr.jpg A snow-covered ski slope with visible tracks rises steeply under a clear blue sky, surrounded by frosty pine trees, with a vertical, multicolored noise occlusion on the right. diff --git a/utils/area/descriptions/ucf/classnames.txt b/utils/area/descriptions/ucf/classnames.txt new file mode 100644 index 0000000..4c17b0c --- /dev/null +++ b/utils/area/descriptions/ucf/classnames.txt @@ -0,0 +1 @@ +[ "Apply Eye Makeup", "Apply Lipstick", "Archery", "Baby Crawling", "Balance Beam", "Band Marching", "Baseball Pitch", "Basketball", "Basketball Dunk", "Bench Press", "Biking", "Billiards", "Blow Dry Hair", "Blowing Candles", "Body Weight Squats", "Bowling", "Boxing Punching Bag", "Boxing Speed Bag", "Breast Stroke", "Brushing Teeth", "Clean And Jerk", "Cliff Diving", "Cricket Bowling", "Cricket Shot", "Cutting In Kitchen", "Diving", "Drumming", "Fencing", "Field Hockey Penalty", "Floor Gymnastics", "Frisbee Catch", "Front Crawl", "Golf Swing", "Haircut", "Hammer Throw", "Hammering", "Hand Stand Pushups", "Handstand Walking", "Head Massage", "High Jump", "Horse Race", "Horse Riding", "Hula Hoop", "Ice Dancing", "Javelin Throw", "Juggling Balls", "Jump Rope", "Jumping Jack", "Kayaking", "Knitting", "Long Jump", "Lunges", "Military Parade", "Mixing", "Mopping Floor", "Nunchucks", "Parallel Bars", "Pizza Tossing", "Playing Cello", "Playing Daf", "Playing Dhol", "Playing Flute", "Playing Guitar", "Playing Piano", "Playing Sitar", "Playing Tabla", "Playing Violin", "Pole Vault", "Pommel Horse", "Pull Ups", "Punch", "Push Ups", "Rafting", "Rock Climbing Indoor", "Rope Climbing", "Rowing", "Salsa Spin", "Shaving Beard", "Shotput", "Skate Boarding", "Skiing", "Skijet", "Sky Diving", "Soccer Juggling", "Soccer Penalty", "Still Rings", "Sumo Wrestling", "Surfing", "Swing", "Table Tennis Shot", "Tai Chi", "Tennis Swing", "Throw Discus", "Trampoline Jumping", "Typing", "Uneven Bars", "Volleyball Spiking", "Walking With Dog", "Wall Pushups", "Writing On Board"] \ No newline at end of file diff --git a/utils/area/descriptions/ucf/generated_descriptions/Apply_Eye_Makeup_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Apply_Eye_Makeup_descriptions.txt new file mode 100644 index 0000000..35f6082 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Apply_Eye_Makeup_descriptions.txt @@ -0,0 +1,10 @@ +v_ApplyEyeMakeup_g17_c05.jpg A person is having a soft pink eyeshadow applied with a brush on their eyelid, viewed from the front in a close-up, against a blurred dark backdrop. +v_ApplyEyeMakeup_g01_c02.jpg The image shows a person applying pink eye makeup from a frontal view, with a blurred, dark indoor background and noticeable dark furniture, while their hand holds an applicator with a soft bristle brush. +v_ApplyEyeMakeup_g10_c05.jpg A person with long dark hair, adorned with a white floral headpiece, applies eye makeup using a small compact palette, seated in front of a mirror with a partially visible panda toy and artwork in the background, within a room featuring a white door. +v_ApplyEyeMakeup_g15_c05.jpg A person is applying shimmery white eyeshadow on closed eyelids using a brush, with an up-close, frontal viewpoint against a blurred indoor setting, highlighting the smooth application and the gentle hand positioning. +v_ApplyEyeMakeup_g07_c03.jpg A hand applies neutral-toned eye shadow with a brush to closed eyelids, viewed from a frontal angle, in a softly lit indoor setting with a wall adorned by a decorative flourish in the background. +v_ApplyEyeMakeup_g17_c04.jpg A person is seen in a close-up view with eyes closed while a hand applies a soft pink eyeshadow on the eyelid, using an eyeshadow brush, with a dark blurred background. +v_ApplyEyeMakeup_g01_c06.jpg The image shows a person from a slight side angle applying light purple eyeshadow with a brush, set against a blurred indoor background with dark furniture. +v_ApplyEyeMakeup_g11_c05.jpg A person with long blonde hair is applying eye makeup, with a close-up on their hand blending dark eyeshadow on the eyelid, set against a plain white background. +v_ApplyEyeMakeup_g21_c03.jpg A person is applying a warm-toned eyeshadow with a brush to their eyelid, in a close-up side view against a dim indoor environment, showcasing smooth skin texture and dark hair framing the face. +v_ApplyEyeMakeup_g24_c06.jpg A person is shown applying eye makeup with a brush on slightly closed eyes, featuring warm brown eyeshadow on the eyelids against a beige background with framed pictures visible. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Apply_Lipstick_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Apply_Lipstick_descriptions.txt new file mode 100644 index 0000000..fb59de1 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Apply_Lipstick_descriptions.txt @@ -0,0 +1,10 @@ +v_ApplyLipstick_g06_c02.jpg A person is applying a glossy, light pink lipstick, viewed from a front angle against a softly lit interior with a picture frame and calendar visible in the background. +v_ApplyLipstick_g20_c02.jpg The image shows a person applying a deep rose lipstick with a creamy texture to their lips, captured in a close-up frontal view against a softly blurred white background. +v_ApplyLipstick_g18_c04.jpg A person is applying lipstick from a straight-on angle, with a soft red hue and a creamy texture, set against an indoor environment with a cluttered room featuring a bicycle and various household items. +v_ApplyLipstick_g01_c03.jpg The person is applying light pink lipstick with a smooth texture, viewed from a forward-facing angle in a softly lit indoor setting with a white background, where the hand is gently touching the lips, highlighting the subtle shine of the lipstick. +v_ApplyLipstick_g21_c01.jpg The image depicts a person applying light-colored lipstick from a seated position, using a small compact mirror, with a blurred indoor setting featuring brown and beige tones in the background. +v_ApplyLipstick_g15_c05.jpg A person with dark eye makeup applies rich burgundy lipstick using a brush, viewed in close-up against a blurred indoor background, highlighting their smooth skin texture and focused expression. +v_ApplyLipstick_g10_c01.jpg A woman is applying a muted pink lipstick to her lips with her face slightly angled towards the camera, set against a dimly lit indoor background with shelves and a door, and her dark hair frames her face, partially obscuring one eye. +v_ApplyLipstick_g05_c01.jpg A person is applying a muted pink lipstick in a close-up shot, with a green wall and some furniture in the background, and the focus is on the application with the lipstick partially twisted up, capturing a candid and casual moment. +v_ApplyLipstick_g24_c01.jpg The image depicts a person being viewed from a frontal angle, having lipstick applied with a brush on a close-up of the face, featuring a subtle pink hue against a textured background of a collage filled with various small photos. +v_ApplyLipstick_g19_c01.jpg In a close-up view, a person with styled dark hair is having lipstick applied with a slender brush to their lips, showcasing a neutral-colored lipstick with a smooth, glossy texture against a blurred indoor background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Archery_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Archery_descriptions.txt new file mode 100644 index 0000000..acb585b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Archery_descriptions.txt @@ -0,0 +1,10 @@ +v_Archery_g15_c05.jpg A person with a quiver of bright yellow arrows is holding a wooden bow, standing sideways on a lush green grass field, surrounded by dense trees under an overcast sky. +v_Archery_g10_c02.jpg A person in a pink shirt stands in an indoor space, holding a silver and black recurve bow with their left arm extended, against a plain backdrop with large windows and a door, indicating a practice environment. +v_Archery_g10_c05.jpg A person in a pink top and dark pants is seen from behind, holding a bow with a white and black design, in an indoor environment with light walls and open doorways visible in the background. +v_Archery_g10_c07.jpg A person is in mid-draw of a silver recurve bow and arrow, wearing a pink shirt with visible shoulder protective gear, set against a corridor-like indoor environment with a person and child in the background. +v_Archery_g25_c06.jpg A person in a green cap and dark clothing is standing on a green lawn, drawing a bow with an extended arm against a backdrop of trees and a yellow house. +v_Archery_g16_c03.jpg A person with short, light-colored hair stands outdoors in front of a residential house, holding a bow with a beige and black design, wearing casual clothing and a protective arm guard, beside a dish antenna and a ladder leaning against the building. +v_Archery_g23_c04.jpg A person dressed in dark clothing is in a crouched stance aiming an archery bow toward a white target set up on a tripod in a sunlit backyard with trees and a white house in the background. +v_Archery_g09_c07.jpg A person in camouflage is aiming a bow with a nocked arrow in a wooded area, surrounded by piles of dirt and gravel, with lush greenery in the background. +v_Archery_g23_c02.jpg The image shows a person in a side profile stance pulling back a bow string, aiming towards a target set in a sunlit backyard with lush green trees and a white building in the background, while the bow's dark color contrasts with the bright setting. +v_Archery_g02_c06.jpg A person in a light-colored shirt is drawing a wooden recurve bow with a stone pathway and lush greenery in the background, accented by a partially visible flag. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Baby_Crawling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Baby_Crawling_descriptions.txt new file mode 100644 index 0000000..34f9388 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Baby_Crawling_descriptions.txt @@ -0,0 +1,10 @@ +v_BabyCrawling_g13_c06.jpg A baby wearing a bright yellow top and dark pants is lying flat on a carpeted floor in a prone position, facing away from the camera, with scattered toys visible around. +v_BabyCrawling_g22_c02.jpg A baby wearing a light-colored outfit is crawling on a wooden floor with distinct striping, viewed from above with their head slightly blurred in motion. +v_BabyCrawling_g03_c01.jpg A baby in a colorful, heart-patterned onesie is seen in a side profile view crawling on a soft, striped blanket in a carpeted room with furniture in the background. +v_BabyCrawling_g21_c01.jpg A baby with light-colored clothing and fine, straight hair is crawling toward the camera on a shiny, reflective floor in a hallway with light cream-colored walls and wooden doors, viewed from a low, frontal perspective. +v_BabyCrawling_g06_c03.jpg A baby in a light purple outfit is crawling away from the camera on a carpeted floor surrounded by colorful toys, with an adult's legs visible in the background. +v_BabyCrawling_g13_c04.jpg The baby, wearing a yellow shirt with striped sleeves, is crawling on a patterned gray carpet while facing right, with an arm extended out partially visible on the left side of the image. +v_BabyCrawling_g18_c06.jpg A baby in a light blue outfit is crawling on a carpeted floor with a side view, in a living room environment featuring a TV, toys, and a person standing nearby. +v_BabyCrawling_g25_c05.jpg A baby wearing a white top and pink pants is crawling on a beige carpet in a living room, with a noticeable white couch and baby gate in the background, and its head is slightly turned downward. +v_BabyCrawling_g16_c06.jpg A baby with a small red bow on the head is crawling forward on a fluffy brown carpet in a narrow hallway with light-colored walls and a blurry blue object in the background. +v_BabyCrawling_g08_c01.jpg A baby with light skin and short hair crawls on a speckled gray carpet, wearing a white diaper, viewed in profile from the side with a blurry background suggesting a home interior. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Balance_Beam_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Balance_Beam_descriptions.txt new file mode 100644 index 0000000..2c3c54b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Balance_Beam_descriptions.txt @@ -0,0 +1,10 @@ +v_BalanceBeam_g21_c04.jpg The balance beam is light brown with a textured surface, positioned horizontally at eye level, in an indoor gymnasium with a crowded bleacher area and overhead lighting visible in the background. +v_BalanceBeam_g18_c03.jpg A gymnast is seen in mid-motion on a light brown, textured balance beam, viewed from the side within a dimly lit indoor arena with dark seating and a tubular metal railing in the background. +v_BalanceBeam_g18_c02.jpg The balance beam appears to be a smooth, light beige surface situated in a gymnasium with dimly lit bleachers in the background, viewed from a side angle with a gymnast balanced mid-routine. +v_BalanceBeam_g15_c04.jpg The balance beam is not visible due to the focus on a gymnast performing an aerial maneuver in a blurred, large indoor arena with a crowd backdrop, highlighting her dynamic motion against the muted tones of the seating area. +v_BalanceBeam_g04_c01.jpg The balance beam is smooth and light brown, elevated on sturdy blue supports, with a gymnast poised atop it in an indoor arena filled with a large seated audience. +v_BalanceBeam_g07_c03.jpg A female gymnast in a multicolored leotard balances sideways on a beige wooden beam with a smooth surface, set against an indoor arena with an audience seated in bleachers. +v_BalanceBeam_g23_c03.jpg A beige balance beam is positioned horizontally at the center of an indoor gymnasium setting with blue mats and a panel of judges seated in the foreground, while a gymnast, captured in mid-performance, is wearing a red leotard with white stripes against a backdrop of beige curtains. +v_BalanceBeam_g02_c03.jpg A gymnast in a vibrant pink leotard is captured mid-air above a narrow, beige balance beam with a blurred background of a crowded sports arena. +v_BalanceBeam_g13_c04.jpg The image shows a gymnast in a pink outfit mid-air in front of a large American flag, with a dark background emphasizing their dynamic motion and blurred pose. +v_BalanceBeam_g13_c02.jpg The balance beam appears to be a light brown cylinder positioned horizontally, with an athlete performing a mid-air flip above it against a dimly lit, indoor arena background with a flag visible behind. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Band_Marching_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Band_Marching_descriptions.txt new file mode 100644 index 0000000..1a63a94 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Band_Marching_descriptions.txt @@ -0,0 +1,10 @@ +v_BandMarching_g19_c01.jpg A parade of individuals in red uniforms is marching on a suburban street, with each person holding a vibrant red flag, viewed from a slightly elevated angle with a crowd-lined sidewalk and residential buildings in the background. +v_BandMarching_g22_c01.jpg The band, clad in dark green uniforms with white feather-topped hats, marches in a synchronized formation at night against a colorful, illuminated building backdrop. +v_BandMarching_g20_c05.jpg Marchers in black uniforms with bright red tops stride in formation holding flowing red flags, seen from a side view against a backdrop of storefronts and a clear sky. +v_BandMarching_g21_c01.jpg The band is marching in uniform white and dark green attire, each member holding large flags with matching colors, all moving in synchronization on a paved path, with trees lining the background. +v_BandMarching_g03_c06.jpg A group of musicians in dark uniforms and blue kilts, with elaborate hats, march in formation while playing bagpipes, set against a bustling urban street background with trees. +v_BandMarching_g03_c01.jpg A band in vibrant red and black uniforms with tall, furry hats marches in formation on a street, accompanied by musical instruments, with trees and a large building visible in the background. +v_BandMarching_g01_c06.jpg A large marching band dressed in red uniforms with white sashes is moving forward on a tree-lined street, holding flags and instruments, with a faded autumnal background of trees and a field. +v_BandMarching_g08_c01.jpg The band is marching in formation on a street, with members wearing navy blue uniforms and white tall hats, while carrying large red and white flags against a shaded background of trees and sunlight filtering through branches. +v_BandMarching_g15_c07.jpg The marching band, viewed from a side angle, features members in bright orange jackets and dark pants, lined up in precise formation on a sunny street, with a backdrop of white buildings and scattered trees. +v_BandMarching_g08_c02.jpg A large marching band is captured from an elevated angle, with members clad in uniforms featuring predominantly dark blue and white colors, carrying bold red and white flags, all set against a sunlit street background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Baseball_Pitch_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Baseball_Pitch_descriptions.txt new file mode 100644 index 0000000..4787b5c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Baseball_Pitch_descriptions.txt @@ -0,0 +1,10 @@ +v_BaseballPitch_g25_c02.jpg A pitcher in white pants and a dark jersey, poised on the mound with a raised leg in mid-delivery, stands out against a dirt pitching area and a green field, with a catcher crouched behind home plate in the background. +v_BaseballPitch_g11_c03.jpg The image depicts a pitcher on a baseball field, dressed in a white uniform with dark sleeves, captured mid-motion from a side angle as they prepare to throw the ball, against a backdrop of a green field and a scoreboard with orange accents, all visible despite the low resolution. +v_BaseballPitch_g17_c04.jpg The baseball pitch features a player in a gray uniform with a dark cap mid-motion, lifting their left leg and preparing to throw, set against a stadium backdrop with a green field and dark walls adorned with white text. +v_BaseballPitch_g08_c06.jpg The image shows a baseball pitcher in a gray uniform with red socks, captured mid-pitch in a high leg lift against a background of green grass and distant trees, with a black fence and yellow boundary, while teammates in red and white uniforms are visible in the infield. +v_BaseballPitch_g25_c07.jpg A baseball player in a white and dark uniform is captured mid-pitch from a slightly elevated side angle on a grassy field with a dirt mound, surrounded by a blurred backdrop of bleachers and fencing. +v_BaseballPitch_g16_c06.jpg A pitcher in a dark jersey and white pants is mid-pitch on a reddish-brown mound, with a blurred crowd and green field in the background. +v_BaseballPitch_g09_c04.jpg The image shows a baseball player on a brown pitcher's mound wearing a gray shirt and dark pants, viewed from the side as he prepares to pitch with one leg lifted; the background features a blurred field with grass and a distant fence topped with yellow padding, surrounded by trees. +v_BaseballPitch_g18_c02.jpg A pitcher in a blue uniform is in a throwing stance on a brightly lit baseball field with a dark green wall and scoreboard in the background, during a nighttime game. +v_BaseballPitch_g24_c04.jpg A pitcher in a blue jersey and white pants, viewed from the side with a high leg lift, is set against a baseball field background featuring a dirt mound, grass, and a chain-link fence partially obstructing a distant outfield. +v_BaseballPitch_g06_c06.jpg The image shows a baseball pitch in action with the pitcher in a dynamic low stance wearing a white uniform with dark accents against a red-brown infield and green outfield, while the batter stands ready beside a catcher and umpire, with a blue advertisement board as the backdrop. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Basketball_Dunk_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Basketball_Dunk_descriptions.txt new file mode 100644 index 0000000..7cc5034 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Basketball_Dunk_descriptions.txt @@ -0,0 +1,10 @@ +v_BasketballDunk_g15_c04.jpg A player in a dark jersey leaps mid-air with extended arms toward the basketball hoop, against a backdrop of spectators and a wooden court marked with a large hornet logo, highlighting a dynamic action pose typical of a basketball dunk. +v_BasketballDunk_g15_c06.jpg A player wearing a white uniform with bold, dark side stripes is captured in mid-air near the basket, with a crowded gymnasium audience in the background, their legs bent for a powerful leap, surrounded by muted red and brown tones in the environment. +v_BasketballDunk_g07_c02.jpg A player in a white uniform performs a dynamic one-handed dunk from the side, with rows of orange seating and fans blurred in the background, while other players in dark uniforms are positioned on the court beneath the hoop. +v_BasketballDunk_g06_c04.jpg A basketball player in a white uniform is seen mid-dunk with arms extended towards a yellow and silver hoop, surrounded by players in blue jerseys on a brightly lit indoor court with a prominent yellow and black banner in the background. +v_BasketballDunk_g16_c06.jpg A basketball player in a red uniform jumps above the rim for a dunk in an indoor arena, surrounded by opponents in white uniforms, with blue and black accents on the court and spectators visible in the background. +v_BasketballDunk_g01_c06.jpg A player in a blue uniform is captured mid-air executing a dunk over opponents wearing white uniforms with orange trim, on a brightly lit basketball court surrounded by a crowd and the contrasting dark seats of an indoor arena. +v_BasketballDunk_g13_c02.jpg A player in a white jersey is mid-air performing a dunk in an indoor basketball arena, seen from a slightly elevated side view, with a packed audience and large digital screens forming a lively backdrop. +v_BasketballDunk_g04_c03.jpg A player in a blue uniform is captured mid-air during a dunk against a backdrop of a vibrant, matching blue crowd and court, with the action centered and players in contrasting white jerseys attempting to block, while court markings and advertisements adorn the environment. +v_BasketballDunk_g14_c07.jpg A player in a white uniform, mid-air, approaches the rim from the right side, set against a crowded, vibrant indoor basketball court with a red and blue motif, surrounded by spectators. +v_BasketballDunk_g13_c01.jpg The image depicts a dynamic basketball dunk from a side view, with players in blue and orange uniforms against a crowded arena backdrop, showcasing motion blur around the outstretched arm reaching toward the hoop with a visible scoreboard and vibrant court markings. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Basketball_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Basketball_descriptions.txt new file mode 100644 index 0000000..21d51fe --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Basketball_descriptions.txt @@ -0,0 +1,10 @@ +v_Basketball_g14_c02.jpg The basketball is an orange-colored sphere with visible black seams, set against an outdoor backdrop of a brick wall and a wooden fence, while a person prepares to shoot it towards a standard hoop. +v_Basketball_g18_c04.jpg The basketball is bright orange with a matte texture, held in the hands of a person on the right side of a gymnasium, characterized by its clear contrasting lines against the smooth, polished wooden floor beneath. +v_Basketball_g05_c02.jpg The basketball is primarily orange with a traditional pebbled texture, visible from a side view, set within an indoor gymnasium featuring a wooden floor and players in action. +v_Basketball_g03_c03.jpg The basketball is partially visible midair above the tiled ground, appearing as an orange-brown blur with faint lines, against an outdoor backdrop with a building, hedge, and hoop. +v_Basketball_g01_c04.jpg The basketball is faintly visible mid-air near the hoop, appearing in orange with a classic pebbled texture, situated in an indoor court featuring a green and orange floor with several baskets set against a paneled wall. +v_Basketball_g16_c01.jpg A low-resolution image of an outdoor basketball hoop on a concrete court surrounded by trees and a fence, with no visible basketball present. +v_Basketball_g04_c02.jpg The basketball is not clearly visible, but the scene is of an outdoor basketball court with a bright, clear sky, a hoop in the foreground, and players engaged in a game, indicating a suburban residential backdrop. +v_Basketball_g08_c04.jpg The basketball, partially visible in mid-air, appears orange with black seams, viewed from a side angle in a gymnasium setting with a basketball hoop and court markings in the background. +v_Basketball_g20_c03.jpg The basketball is a small, dark object in mid-air under an outdoor hoop, seen from a distance against a clear sky and concrete court with trees and people in the background. +v_Basketball_g21_c01.jpg The object appears as a dark silhouette in mid-air against a twilight sky with a faintly visible basketball hoop and trees in the blurred background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Bench_Press_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Bench_Press_descriptions.txt new file mode 100644 index 0000000..bba5f66 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Bench_Press_descriptions.txt @@ -0,0 +1,10 @@ +v_BenchPress_g21_c03.jpg The bench press setup is positioned against a large window backdrop, featuring a dark metal frame structure with visible weight plates and a bright red bench, all under soft natural light that contrasts with the dimly lit gym interior. +v_BenchPress_g20_c06.jpg The image depicts a gym setting with a yellow-tinted bench press station from a wide-angle side view, featuring black weights on a white frame against a light-colored wall, with a person lying on the bench. +v_BenchPress_g16_c03.jpg The bench press setup in the gym has black weights on a barbell, a person positioned beneath it wearing dark clothing in a busy gym environment with visible workout equipment and other individuals in the background. +v_BenchPress_g19_c04.jpg The bench press setup features a dark-colored barbell with weight plates, viewed from a slightly elevated angle in a dimly lit gym with multiple exercise machines in the background, and a person in a green shirt lying on the bench ready to lift. +v_BenchPress_g03_c02.jpg A person performs a bench press on a weight bench with black and white components against an orange gym wall, surrounded by dark gym flooring while wearing a grey shirt and blue shorts, with a muscular spotter nearby. +v_BenchPress_g18_c04.jpg The bench press features a black and white barbell with weight plates, a bright blue bench viewed from a slightly elevated angle, set against a gym environment with a red and blue wall and various gym equipment in the background. +v_BenchPress_g14_c04.jpg The image depicts a person performing a bench press on a black padded bench with a metallic barbell, viewed from a diagonal front angle, in a gym setting with a multitude of gym equipment in the blurred background. +v_BenchPress_g23_c02.jpg A person in blue shorts is lying on a black bench press in a gym, with equipment and a mural on the walls of the background, visible in a low-resolution setting. +v_BenchPress_g18_c07.jpg The bench press apparatus is positioned in a gym setting with a red and blue wall, featuring a black bar with weights, a white bench, and a person wearing light-colored shorts and white shoes lying on the bench, facing upwards, while a spotter stands behind. +v_BenchPress_g25_c04.jpg A person in a white shirt is performing a bench press with a black barbell from a low side angle, set against a gym environment with red flooring and equipment in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Biking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Biking_descriptions.txt new file mode 100644 index 0000000..94ec5ce --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Biking_descriptions.txt @@ -0,0 +1,10 @@ +v_Biking_g19_c01.jpg A person in light clothing rides a small black bicycle with silver handlebars on a paved path, surrounded by a lush green grassy area and dense dark green trees in the background. +v_Biking_g16_c01.jpg A group of cyclists in vibrant jerseys and helmets are seen from a rear side angle biking on a road with a forested background, featuring a distinct white road marking and blurry trees. +v_Biking_g15_c01.jpg A cyclist in a red shirt and black pants is bent forward on a bright yellow bicycle, riding along a paved path with trees and grass in the blurry background. +v_Biking_g06_c04.jpg A green bicycle is being ridden on a paved road, viewed from the side, with a rider's legs pedaling and a blurred urban background visible. +v_Biking_g03_c03.jpg A person in a pink top is biking on a gray concrete path around a circular planter with greenery, set within a park-like environment featuring blurred trees and grass. +v_Biking_g24_c02.jpg A person wearing a yellow and black cycling outfit rides a bike with a yellow frame, viewed from the side against a mountainous backdrop beneath a clear blue sky. +v_Biking_g18_c06.jpg A person in a blue outfit is biking away from the camera on a paved road, with a wooden fence and some greenery visible in the background, showcasing a small, dark-colored bicycle. +v_Biking_g12_c02.jpg The image shows two cyclists wearing helmets and light-colored jerseys riding road bikes at an angle from behind on a paved surface, with an urban backdrop featuring a bright red archway, graffiti-covered walls, and blue sky above. +v_Biking_g05_c05.jpg The biking image shows a cyclist in a forward-leaning pose, wearing a white and blue jersey with black shorts, riding a bicycle with a predominantly blue and orange frame, set against an urban setting with a concrete wall in the background, offering a dynamic side view despite the low resolution. +v_Biking_g19_c03.jpg A child wearing a pink outfit rides a small bicycle with noticeable white handlebars on a winding, paved path in a park-like setting with a small, grey shed in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Billiards_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Billiards_descriptions.txt new file mode 100644 index 0000000..2304664 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Billiards_descriptions.txt @@ -0,0 +1,10 @@ +v_Billiards_g24_c01.jpg A player aims with a cue stick over a blue-felt billiards table with wooden edges, seen from an elevated angle, set in a carpeted room adorned with red advertisement banners in the background. +v_Billiards_g03_c04.jpg A vibrant blue billiards table is viewed from above, with scattered balls in motion, surrounded by a red carpet and promotional signage featuring the words "Chalk-Off!" and "BilliardClub.net" in a busy indoor setting. +v_Billiards_g15_c03.jpg A blue rectangular billiards table with scattered balls, viewed from a slight elevation, is set against a red carpet and surrounded by banners and an audience in the background. +v_Billiards_g21_c06.jpg A standard billiards table with a blue felt surface is shown from a top-down perspective, featuring a racked set of balls centrally positioned, surrounded by a dark wooden frame within a well-lit interior space. +v_Billiards_g09_c03.jpg A billiards table with a blue felt surface and dark wooden rails is viewed from a slightly elevated angle, with various colored balls scattered across its surface and a person in blue aiming with a cue stick, set in an indoor environment with promotional signs in the background. +v_Billiards_g20_c02.jpg A group of people in a cozy, dimly lit room surrounds a green-felt billiards table viewed from an overhead angle, with brightly colored balls scattered across its surface and players preparing to shoot. +v_Billiards_g12_c04.jpg The low-resolution image displays a top-down view of a billiards table with a bright blue felt surface, surrounded by polished wooden rails, featuring several vividly colored balls scattered across the table, set in a dimly lit room with advertising banners visible on walls in the background. +v_Billiards_g08_c05.jpg Viewed from an elevated angle, a pool table with a blue felt surface features a scattering of billiard balls and a wooden border, set against a backdrop of red advertising banners with visible logos. +v_Billiards_g11_c05.jpg A standard pool table covered in light blue felt has a scattering of pool balls, viewed from an elevated angle at the foot, set in an indoor environment with visible signage around the dark red rails. +v_Billiards_g16_c02.jpg The billiards table is viewed from an elevated angle, featuring a light blue felt surface with multiple balls scattered across it, a wooden frame, and a distinctive setting including red and blue carpeted surroundings with posters and logos visible in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Blow_Dry_Hair_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Blow_Dry_Hair_descriptions.txt new file mode 100644 index 0000000..1543982 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Blow_Dry_Hair_descriptions.txt @@ -0,0 +1,10 @@ +v_BlowDryHair_g02_c05.jpg The image depicts a person with voluminous, wavy hair in a warm, amber hue, being lifted and styled from a slightly lower viewpoint in a softly lit indoor setting with neutral-colored walls. +v_BlowDryHair_g21_c06.jpg The image depicts a woman with straight, blonde hair, styled from a front-facing angle, against a neutral, light background, while using a hairdryer and brush, with the hair showing smoothness and a subtle shine. +v_BlowDryHair_g20_c04.jpg A young woman with straight, medium brown hair being styled by a black hairdryer is seated in a cozy, softly lit bathroom featuring a pale door and a wall-mounted floral arrangement in the background. +v_BlowDryHair_g07_c06.jpg The blow-dried hair appears dark and shiny with a sleek, smooth texture, viewed from the side against a salon backdrop featuring a stylist holding a red hairdryer and neutral-toned cabinetry. +v_BlowDryHair_g08_c07.jpg The image shows a person with dark curly hair being blow-dried, viewed from the front-right side against a plain white bathroom background, with visible hand positioning the hair and using a round brush attachment. +v_BlowDryHair_g19_c03.jpg Blonde hair is being blow-dried from a rear view, showing a smooth texture with a visible part, set against a neutral indoor background with a beige wall and a door. +v_BlowDryHair_g11_c04.jpg The image shows blonde, wavy hair with a shiny appearance being blow-dried, viewed from the back in a home setting with visible furniture and styling tools around. +v_BlowDryHair_g16_c04.jpg The individual appears to be blow-drying dark, voluminous hair with a slightly frizzy texture in a bathroom setting, captured front-facing with a background showing a mirror and hair care products. +v_BlowDryHair_g04_c03.jpg The hair appears dark and glossy with a smooth texture, styled downwards while being blow-dried, against a plain white background with a hairdresser standing nearby. +v_BlowDryHair_g25_c02.jpg The image shows a woman with long, straight, blonde hair being blow-dried from the front with a shiny, smooth texture and a salon environment featuring black chairs and grayish-blue walls. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Blowing_Candles_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Blowing_Candles_descriptions.txt new file mode 100644 index 0000000..657921d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Blowing_Candles_descriptions.txt @@ -0,0 +1,10 @@ +v_BlowingCandles_g14_c04.jpg A young child with curly hair in a purple striped shirt is leaning forward to blow out the brightly glowing candles on a cake, surrounded by a dimly lit room with another child nearby, characterized by the cake's colorful toppings and the soft warm lighting creating a cozy atmosphere. +v_BlowingCandles_g04_c01.jpg A woman is leaning forward towards a rectangular cake with green frosting and colorful candles in a home setting, surrounded by snacks and a smiling onlooker, reflecting a casual celebratory atmosphere. +v_BlowingCandles_g08_c01.jpg A person with light blonde hair is leaning over a white-frosted rectangular cake dotted with lit candles, set on a kitchen counter with wooden cabinets and a warm-toned background. +v_BlowingCandles_g06_c01.jpg A young girl in a purple sweater blowing out candles on a chocolate cake with colorful sprinkles, viewed from the side in a lively indoor setting with other children and adults in the background. +v_BlowingCandles_g13_c02.jpg A glowing, bright-lit candle with a small flame sits atop a textured rectangular cake, surrounded by a red surface and a blurred dark background. +v_BlowingCandles_g19_c02.jpg A child in a striped sweater is poised at a table, intently blowing out a single small flame on a light yellow tart placed on a plain white plate, set against a dimly lit kitchen background with cabinets and appliances. +v_BlowingCandles_g07_c01.jpg A person is leaning forward in a side view blowing out several lit candles on a rectangular cake with a white and brown pattern, surrounded by red plates on a dark table, with another person watching in the background. +v_BlowingCandles_g15_c03.jpg A young child wearing a colorful crown leans forward intently to blow out two lit candles on a small red and white cake atop a table, with a red and blue booth seat in the background and another child nearby watching the scene. +v_BlowingCandles_g02_c01.jpg A person in formal attire, surrounded by a muted brownish indoor environment, leans toward a multi-tiered white cake adorned with yellow floral decorations, poised to blow out the candles on top. +v_BlowingCandles_g06_c07.jpg A child with glasses is blowing candles on a rectangular cake with blue and yellow icing, viewed from a side angle in a room with other people and a chocolate cake with sprinkles in the foreground. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Body_Weight_Squats_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Body_Weight_Squats_descriptions.txt new file mode 100644 index 0000000..7ea6269 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Body_Weight_Squats_descriptions.txt @@ -0,0 +1,10 @@ +v_BodyWeightSquats_g25_c01.jpg A person in a white shirt and dark shorts is performing a body weight squat with arms extended forward, viewed from the side, in a plain room with a dark floor and light-colored walls. +v_BodyWeightSquats_g06_c03.jpg A person in a black outfit is performing a squat with hands behind their head in a sunlit room featuring vertical blinds, a TV on a wooden stand, and soft carpet flooring. +v_BodyWeightSquats_g20_c05.jpg A person in a green shirt and black pants performs a squat in a grassy park, with arms extended forward, against a backdrop of trees and a visible road. +v_BodyWeightSquats_g06_c01.jpg A person in a black shirt and shorts is performing a body weight squat with arms extended forward, in a living room with white blinds covering large windows, light walls, and a TV on a low stand in the background. +v_BodyWeightSquats_g24_c03.jpg The person performing body weight squats in the gym is viewed from the side, wearing a dark shirt and light shorts, with arms extended forward against a backdrop featuring gym equipment and a staircase, exhibiting a balanced and low stance. +v_BodyWeightSquats_g10_c05.jpg A person in a black shirt and gray shorts performs a deep squat, viewed from the side on a blue mat in a gym with low lighting and minimal equipment, including a noticeable black exercise ball in the foreground. +v_BodyWeightSquats_g12_c04.jpg A person in a blue shirt and black shorts is performing a squat with arms extended forward on a black exercise mat in a gym setting, with a distinctive brick wall and metallic garage door in the background. +v_BodyWeightSquats_g07_c02.jpg A person in a white T-shirt and dark shorts performs a squat in a brightly lit gym room, with exercise equipment like weights and a stack of mats visible in the background, and the reflection in the mirror enhancing the sense of space. +v_BodyWeightSquats_g01_c04.jpg A person in a side view pose squatting with bent arms in front of the chest, wearing a purple shirt and gray shorts, against a plain two-tone wall background with minimal texture. +v_BodyWeightSquats_g19_c03.jpg A person in dark athletic clothing stands on a paved outdoor surface with a wooded background, captured in a side profile as they prepare for or transition from a squat position, with muted colors and a slightly blurry texture due to low resolution. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Bowling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Bowling_descriptions.txt new file mode 100644 index 0000000..b7471a2 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Bowling_descriptions.txt @@ -0,0 +1,10 @@ +v_Bowling_g24_c05.jpg A person is captured from behind mid-stride, rolling a red bowling ball on the glossy wooden lanes of a vibrant, colorful bowling alley with a ceiling grid and colorful mural walls. +v_Bowling_g04_c01.jpg A person wearing a dark outfit is in a bowling stance at the approach of a polished, multi-lane bowling alley with colorful ball imagery overhead, while a visible adjacent ball return features a blue-green bowling ball. +v_Bowling_g18_c04.jpg A person in a blue shirt and black pants is releasing a bowling ball down an alley with light-colored lanes, a wood-textured floor, and visible pins in the background, while the low resolution emphasizes the dynamic motion. +v_Bowling_g09_c03.jpg A person in a maroon shirt and black shorts is captured mid-bowling in a brightly lit alley, with the ball rolling down a shiny lane towards pin silhouettes, set against a colorful wall mural featuring blues and whites. +v_Bowling_g09_c05.jpg A person with long hair is bowling in a colorful alley, wearing a black shirt and light pants, captured from behind mid-swing, on a glossy, polished lane with white bowling pins aligned in the background and a monitor displaying scores to the right. +v_Bowling_g03_c03.jpg A person is mid-action releasing a bright red bowling ball down a glossy, polished lane with visible white pins set against a backdrop of digital displays, and the entire scene is captured from a rear side angle, focusing on the bowler's silhouette and the ball in motion. +v_Bowling_g10_c03.jpg In the low-resolution image, a purple bowling ball with a glossy texture is captured in motion towards standing white pins at the end of a polished wooden lane, viewed from a rear perspective with a blurred bowler and bright pin area in the background. +v_Bowling_g23_c02.jpg The image shows a person in a blue and yellow shirt bowling, captured mid-swing in a bowling alley with multiple colorful flags adorning the background, highlighting polished lanes reflecting the overhead lights. +v_Bowling_g02_c02.jpg The image shows a bowling alley with a glossy wooden flooring and multiple lanes stretching into the background, with a mural painted on the side walls depicting an aquatic theme under ambient lighting from ceiling fixtures. +v_Bowling_g09_c01.jpg A person with long hair and a black shirt is captured from behind in mid-bowling action on a shiny lane with visible pins in the distance, framed by a colorful mural and electronic scoring monitor in a dimly lit bowling alley. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Boxing_Punching_Bag_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Boxing_Punching_Bag_descriptions.txt new file mode 100644 index 0000000..44777a6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Boxing_Punching_Bag_descriptions.txt @@ -0,0 +1,10 @@ +v_BoxingPunchingBag_g03_c05.jpg The boxing punching bag is black with a slightly shiny texture hanging from above, positioned in a dimly lit garage-like environment with a visible person actively engaging with it, and surrounded by storage items and wooden panels. +v_BoxingPunchingBag_g23_c06.jpg The boxing punching bag is red and black with a smooth texture, hanging vertically at the center-outside of a bright, leafy area enclosed by a white fence. +v_BoxingPunchingBag_g12_c06.jpg A black cylindrical punching bag with a red top hangs from a ceiling bracket in a room with light blue and pink walls, accompanied by a person in a boxing stance. +v_BoxingPunchingBag_g20_c01.jpg The boxing punching bag is a dark, possibly black, cylindrical bag with white lettering, hanging from the ceiling in a garage with wooden walls, surrounded by bicycles and a mostly empty space. +v_BoxingPunchingBag_g11_c04.jpg The boxing punching bag is predominantly black with white and yellow lettering, exhibiting a smooth cylindrical shape, positioned upright in a gym setting with stacked mats in the background and a person in boxing gloves nearby. +v_BoxingPunchingBag_g02_c07.jpg The boxing punching bag in the foreground is predominantly red with black accents, featuring a smooth texture; it is positioned upright in a gym setting, mounted on a wall bracket with a visible chain, against a white wall with additional gym equipment in the background. +v_BoxingPunchingBag_g22_c07.jpg A black cylindrical punching bag with yellow diamond patterns is suspended from a chain in a minimalistic room with beige walls and floor, while a person stands in a side stance preparing to punch. +v_BoxingPunchingBag_g06_c02.jpg A dark-colored, possibly leather, speed bag is hanging in a gym setting with boxing rings in the background, viewed slightly from the side with a visible wall covered in photos and posters. +v_BoxingPunchingBag_g06_c07.jpg The punching bag is a small, dark-colored speed bag with a smooth texture, suspended in motion against a gym wall featuring large, prominent text and a collage of posters. +v_BoxingPunchingBag_g07_c06.jpg The boxing punching bag is black with a smooth texture, viewed from the side at an angle, hanging in a garage setting with wooden cabinets and other equipment visible in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Boxing_Speed_Bag_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Boxing_Speed_Bag_descriptions.txt new file mode 100644 index 0000000..dbaafe6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Boxing_Speed_Bag_descriptions.txt @@ -0,0 +1,10 @@ +v_BoxingSpeedBag_g06_c03.jpg The image depicts a human figure in a gym-like setting, but the low resolution and focus on the person make it difficult to clearly identify any specific details about a boxing speed bag. +v_BoxingSpeedBag_g07_c02.jpg The image shows a black and red boxing speed bag suspended from a wooden frame, with a muscular arm visible striking it, set against a background of blue lockers and wooden walls, suggesting a gym environment, and wires are hanging loosely around the setup. +v_BoxingSpeedBag_g19_c02.jpg A blurred motion view of a red and black boxing speed bag hangs from the ceiling in a cluttered room with wooden shelves and various garments visible in the background. +v_BoxingSpeedBag_g19_c03.jpg The boxing speed bag is red and appears textured from a side view, hanging in a cluttered room with tools and clothing in the background. +v_BoxingSpeedBag_g06_c02.jpg The image shows a person punching a blurred foreground object suggesting motion with a neutral-colored wall and doorway in the background. +v_BoxingSpeedBag_g03_c01.jpg The boxing speed bag appears red and teardrop-shaped, suspended mid-motion horizontally in a gym setting with a grid-patterned wall and wooden platform, indicating active use. +v_BoxingSpeedBag_g12_c02.jpg A person is hitting a compact, dark-colored boxing speed bag mounted on a platform in a gym with a visible boxing ring and floor mats in the background. +v_BoxingSpeedBag_g18_c04.jpg The boxing speed bag is red with a glossy texture, hanging from a circular platform in a gym environment featuring mirrored walls and a brick column, viewed from an angle showing the side and bottom. +v_BoxingSpeedBag_g02_c01.jpg The image shows a dark-colored, teardrop-shaped boxing speed bag with a glossy texture, suspended from a circular platform, viewed from a side angle in a dimly lit gym with walls decorated with posters. +v_BoxingSpeedBag_g16_c05.jpg The boxing speed bag appears as a blurry, dark object suspended from a wooden platform, surrounded by a cluttered background featuring wooden walls and miscellaneous household items. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Breast_Stroke_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Breast_Stroke_descriptions.txt new file mode 100644 index 0000000..86e487b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Breast_Stroke_descriptions.txt @@ -0,0 +1,10 @@ +v_BreastStroke_g13_c02.jpg A swimmer in a black swim cap and goggles performs a breaststroke in a turquoise pool, viewed from the side, with red and blue lane dividers visible in the background. +v_BreastStroke_g19_c04.jpg A swimmer wearing a dark swimsuit is performing the breaststroke in a pool, viewed from above, with visible ripples and lane dividers in the clear blue water. +v_BreastStroke_g13_c04.jpg A swimmer, viewed from above, is executing a breaststroke technique in a turquoise swimming pool with lane dividers, characterized by the rhythmic movement of arms and legs visible beneath the water surface, surrounded by a clear reflective environment. +v_BreastStroke_g25_c02.jpg A swimmer wearing a white cap and dark swimwear is captured from an elevated rear angle, gliding through clear, light blue water in a pool lane, with ripples forming around their torso, and a yellow lane marker visible to the right. +v_BreastStroke_g19_c03.jpg A swimmer with a light skin tone, wearing dark swimwear, performs a breaststroke in a pool, viewed from above, with visible lane lines and a shimmering blue water surface. +v_BreastStroke_g15_c01.jpg In a low-resolution pool setting, a swimmer wearing a white cap performs the breaststroke, extending both arms forward in a blue-tinted water backdrop, with visible ripples and lane markers. +v_BreastStroke_g23_c02.jpg A swimmer in dark swimwear is viewed from above in clear, turquoise water, executing a breaststroke with arms extended forward and creating gentle ripples beneath a lane marker in a swimming pool environment. +v_BreastStroke_g01_c04.jpg A swimmer in a pool is executing the breaststroke with their head slightly above turquoise water, parallel red lane lines visible against a blurred aquatic background. +v_BreastStroke_g18_c02.jpg A swimmer is performing a breaststroke in a pool, viewed from underwater with a turquoise hue, where blurred limbs create a splash above a dark lane marker on the pool floor. +v_BreastStroke_g22_c04.jpg The image shows a swimmer performing the breaststroke in a blue-tinted pool lane, with the body partially submerged and arms symmetrically extended on either side, while the water's surface appears slightly rippled around them against the lane markers. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Brushing_Teeth_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Brushing_Teeth_descriptions.txt new file mode 100644 index 0000000..fdb4f89 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Brushing_Teeth_descriptions.txt @@ -0,0 +1,10 @@ +v_BrushingTeeth_g18_c04.jpg A person with a dark hair brushing their teeth is standing in a bathroom with pale, subdued lighting, facing a mirror near a window with a grid pattern, surrounded by minimal toiletries and a teal towel in the background. +v_BrushingTeeth_g13_c02.jpg A young child standing on a tiled bathroom floor is facing slightly upward, wearing a dark green top with a striped pattern, with a notable absence of any visible toothbrush or brushing action in the muted background setting. +v_BrushingTeeth_g11_c03.jpg The image depicts a person with long dark hair brushing their teeth with a blue toothbrush, viewed from a frontal angle, seated at a table with a dimly lit background featuring a column and a stack of papers. +v_BrushingTeeth_g10_c02.jpg The image shows a toddler held by an adult, using a toothbrush with a pale handle, set against a bathroom environment with a sink, mirror, and several toiletry bottles in the background. +v_BrushingTeeth_g01_c01.jpg A child in a floral-patterned pajama brushes teeth with a blue and red toothbrush, viewed from a side angle, against a plain indoor background with a light grey wall and a faucet visible. +v_BrushingTeeth_g12_c06.jpg A person is brushing their teeth with a white toothbrush in a close-up shot, with a neutral expression, set against a background of white vertical blinds that create a soft-lit environment. +v_BrushingTeeth_g13_c04.jpg A child in a dark green shirt and striped pants stands near a red bucket in a tiled bathroom, brushing their teeth with a noticeable focus on their hand movements. +v_BrushingTeeth_g22_c05.jpg The person wearing glasses and a black tank top, in a bathroom with a white door and pale walls, is holding a white toothbrush-like object near their mouth, viewed from a slightly low angle. +v_BrushingTeeth_g09_c01.jpg A person brushing their teeth with a white toothbrush; their mouth is open in a front view with a light-colored background. +v_BrushingTeeth_g20_c03.jpg A child in a yellow shirt is vigorously brushing their teeth with a multicolored toothbrush, reflected in a bathroom mirror, against a light-colored tile background, with noticeable frothy toothpaste around their mouth. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Clean_And_Jerk_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Clean_And_Jerk_descriptions.txt new file mode 100644 index 0000000..691f647 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Clean_And_Jerk_descriptions.txt @@ -0,0 +1,10 @@ +v_CleanAndJerk_g05_c02.jpg A weightlifter in a red singlet and knee bands is in the low squat position of a Clean and Jerk, holding a bar with multicolored weight plates overhead against a blue backdrop with a banner. +v_CleanAndJerk_g16_c03.jpg A person in a dimly lit gym is performing a clean and jerk, lifting a black barbell overhead with a blue exercise mat on a wooden floor, surrounded by gym equipment like weights and squat racks. +v_CleanAndJerk_g17_c04.jpg A person is lifting a barbell with large black and yellow weight plates, standing on a gym floor with a background of equipment and wall mounted storage, while wearing a black tank top, red shorts, and white shoes. +v_CleanAndJerk_g14_c05.jpg A weightlifter in red attire and white shoes is captured from a side view performing a clean and jerk on a black platform, surrounded by a gym environment with a yellow and blue backdrop, red and silver weights on the barbell, and spectators seated to the right. +v_CleanAndJerk_g02_c01.jpg An athlete in a green outfit performs a Clean and Jerk against a blue and white banner background, holding a barbell with red and green weights in an overhead squat position on a platform with a blue and green border. +v_CleanAndJerk_g03_c02.jpg A weightlifter in a red and black outfit performs the clean and jerk facing forward on a platform under bright lights, with a multicolored barbell, against a blue-toned backdrop featuring various sports logos. +v_CleanAndJerk_g12_c03.jpg The image shows a person lifting a barbell in a gym setting with a gray floor and blue walls, wearing black shorts and shoes, viewed from the side in a dynamic pose with the barbell at shoulder height, surrounded by gym equipment and a California flag visible in the background. +v_CleanAndJerk_g07_c02.jpg The weightlifter, clad in a royal blue suit with red and white accents, stands in a powerful front-facing position holding a barbell with vibrant red plates against a blurred backdrop featuring logos and a gradient blue background. +v_CleanAndJerk_g20_c05.jpg A person in mid-lift with a barbell characterized by blue and silver plates, viewed from a slightly low and frontal angle in a gym setting with large windows and scattered equipment, emphasizing the dynamic upward pose against a bright, spacious background. +v_CleanAndJerk_g15_c03.jpg A weightlifter in a maroon outfit with leg supports is executing a clean and jerk with a barbell featuring multi-colored weight plates, viewed from a frontal angle in a minimalist room with a closed door and pale walls, capturing the moment of balance before the jerk phase. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Cliff_Diving_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Cliff_Diving_descriptions.txt new file mode 100644 index 0000000..8d1ccfc --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Cliff_Diving_descriptions.txt @@ -0,0 +1,10 @@ +v_CliffDiving_g13_c04.jpg A diver with outstretched arms in a horizontal pose leaps off a rugged beige cliff, set against a bright blue sky and a backdrop of rocky terrain dotted with sparse vegetation. +v_CliffDiving_g20_c03.jpg A diver mid-air with a stretched-out pose contrasts against jagged, dark rocks and a lightly clouded sky, exhibiting a dynamic form in a rugged coastal environment. +v_CliffDiving_g19_c01.jpg A person is captured mid-air while cliff diving, with outstretched arms and legs over a deep blue body of water, surrounded by verdant foliage and a rust-colored rocky edge. +v_CliffDiving_g02_c02.jpg A diver in a red swimsuit is captured mid-flip against a blurred background of water and cliffs, viewed in profile with their body extended horizontally. +v_CliffDiving_g18_c03.jpg The image shows a rocky gray and beige cliff with a cave-like formation from a frontal viewpoint, featuring a jagged texture and contrasting light and shadow that highlight its rugged and natural environment. +v_CliffDiving_g05_c05.jpg A diver wearing a dark red outfit is captured in mid-air descent against a clear blue sky, leaping from a stone tower platform, with the tower's texture marked by light gray bricks and faint shadows. +v_CliffDiving_g17_c05.jpg A person in mid-air with arms and legs extended, wearing dark swimwear, poses horizontally against a backdrop of calm water with a distant boat visible. +v_CliffDiving_g17_c03.jpg An aerial view captures a cliff diver poised mid-jump above a deep blue ocean dotted with numerous small boats and spectators, against a cliffside backdrop with visible rock texture and an event platform. +v_CliffDiving_g23_c02.jpg A diver, captured mid-air with a blurred dynamic pose, is set against a backdrop of indistinct structures and water under a clear sky, featuring warm skin tones and motion blur conveying speed and movement. +v_CliffDiving_g11_c03.jpg A person in mid-air, wearing dark swimwear, dives off a textured rocky cliff into frothy, swirling water below, surrounded by rugged stone formations in shadowy light. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Cricket_Bowling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Cricket_Bowling_descriptions.txt new file mode 100644 index 0000000..a14c3b3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Cricket_Bowling_descriptions.txt @@ -0,0 +1,10 @@ +v_CricketBowling_g16_c03.jpg A cricketer dressed in blue and white is running towards the pitch to bowl, with a green playing field and a large netting backdrop, facing two batsmen in green and blue uniforms near the stumps, under the observation of an umpire in black and yellow attire. +v_CricketBowling_g19_c07.jpg A young individual in a white shirt and dark pants approaches a set of blue cricket stumps in an indoor sports hall with beige flooring, while a group of children in similar uniforms observes from the background. +v_CricketBowling_g16_c07.jpg The image shows a cricket bowler in mid-action from a rear viewpoint wearing a blue uniform with white accents on a grassy pitch, while the batsman in green prepares to strike against a backdrop of a green boundary screen and scattered spectators. +v_CricketBowling_g18_c02.jpg The bowler is seen in an indoor cricket net facility, wearing dark pants and a white top, delivering the ball with an extended arm in mid-action, against a backdrop of netted partitions, a light-colored floor, and a pale blue wall. +v_CricketBowling_g24_c04.jpg A cricketer in a dark jersey and white pants is captured mid-action on a grassy field, surrounded by a crowd, with wickets and other players visible, indicating a lively match setting. +v_CricketBowling_g12_c02.jpg A player in a red uniform with the number 11 on the back approaches the bowling crease on a grassy cricket field, while a batsman in green stands ready near the wickets, set against a backdrop of trees and a dark fence. +v_CricketBowling_g23_c02.jpg The image displays a cricket bowler in motion, viewed from behind and slightly to the right, wearing a white shirt and dark pants on a green indoor pitch with netting along the sides, and a blurred figure in the background. +v_CricketBowling_g17_c03.jpg A cricket bowler, dressed in a white and green uniform, is captured mid-action in a side view, bending forward on a grassy pitch with yellow stumps in the foreground, set against a backdrop of other players and an urban environment with buildings and foliage. +v_CricketBowling_g20_c01.jpg The image shows a person in a cricket bowling action from a side angle, wearing a grey shirt and dark pants in an indoor sports hall with wooden paneled walls and visible sports markings on the floor, with a distinct blue cone in the foreground. +v_CricketBowling_g22_c04.jpg A cricket player in a gray shirt and dark shorts is bowling in an indoor net area with a bright green floor and orange markings, while being observed by several people standing in the background near the boundary netting. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Cricket_Shot_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Cricket_Shot_descriptions.txt new file mode 100644 index 0000000..d5c97c1 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Cricket_Shot_descriptions.txt @@ -0,0 +1,10 @@ +v_CricketShot_g15_c07.jpg A cricket player in a red uniform is captured mid-action executing a shot on a grassy pitch, viewed from the side with a wooden fence and houses in the background, alongside another player and the umpire. +v_CricketShot_g17_c04.jpg A cricket player in blue executes a dynamic batting stance facing the bowler, with red-uniformed fielders in action, set on a vibrant green pitch surrounded by a boundary line, all viewed from a slightly elevated, central front angle. +v_CricketShot_g16_c07.jpg A cricket player in a blue uniform performs a sweeping shot with a crouched stance on a green grass field, surrounded by red-uniformed players and a central pitch area, with a blurred audience in the backdrop. +v_CricketShot_g12_c06.jpg The image shows a cricketer in a dark shirt and light pants playing an attacking shot in an indoor practice net with green flooring, surrounded by white nets and walls, while an automated bowling machine on a ladder operates nearby. +v_CricketShot_g14_c02.jpg The image shows a cricket player in a batting stance with a blue helmet, yellow and blue jersey, and white pads, standing on a green pitch with a netting backdrop, prepared to play a shot in an indoor practice setting. +v_CricketShot_g07_c07.jpg A cricket player in a blue shirt and white shorts is captured mid-swing with a tilted posture, set against the backdrop of a practice net, yellow stumps, and several onlookers in white outfits on a grassy area. +v_CricketShot_g20_c03.jpg A cricketer wearing a white jersey and helmet stands in a batting stance on a blue artificial pitch with a grassy field and blurred trees in the background, holding a wooden bat positioned toward the camera. +v_CricketShot_g22_c07.jpg A cricketer in a white jersey and black pants, wearing protective pads and a helmet, is captured in a front stance executing a straight bat shot against a blurred indoor background with visible stumps and a green surface. +v_CricketShot_g03_c04.jpg A cricketer in a light blue shirt and helmet stands in a backfoot defense pose on a green practice pitch with a line of nets on one side, set against a background of parked vehicles and distant trees. +v_CricketShot_g15_c04.jpg The image shows a cricket player in a red uniform with white accents, executing an upward cricket shot with elevated arms, viewed slightly from the side, set against a grassy field and residential background, with teammates and an umpire present. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Cutting_In_Kitchen_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Cutting_In_Kitchen_descriptions.txt new file mode 100644 index 0000000..6fe492a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Cutting_In_Kitchen_descriptions.txt @@ -0,0 +1,10 @@ +v_CuttingInKitchen_g07_c02.jpg A person is slicing a pale onion on a light-colored cutting board atop a metal countertop, surrounded by whole onions and a knife sharpener, with the kitchen background slightly blurred. +v_CuttingInKitchen_g04_c05.jpg Hands are slicing maroon meat on a wooden chopping board, viewed from a slightly angled top view, with a blurred metallic kitchen background creating a warm ambient tone. +v_CuttingInKitchen_g20_c03.jpg A person is using a large knife to chop yellowish food on a light wood cutting board, with a dark, speckled counter and various kitchen items in the blurred background. +v_CuttingInKitchen_g18_c04.jpg A chef in a white jacket is slicing vibrant orange carrots on a wooden cutting board atop a dark countertop, with kitchen shelves and utensils blurred in the background. +v_CuttingInKitchen_g06_c05.jpg A close-up image shows hands using a knife to dice orange carrots on a wooden cutting board, with a blurred background featuring a hint of green, possibly from clothing or a kitchen surface. +v_CuttingInKitchen_g22_c01.jpg A person in dark clothing is slicing a light-colored onion on a white cutting board in a kitchen with white cabinets and a stovetop in the background, with the focus on the hands and knife from a slightly above and close-up angle. +v_CuttingInKitchen_g20_c02.jpg A person is cutting cauliflower and potatoes on a wooden cutting board with a silver knife, featuring a countertop with a shiny purple kettle, a dark patterned surface, and various kitchen items in the background. +v_CuttingInKitchen_g24_c03.jpg A person is using a large silver knife to slice green vegetables on a white cutting board, with visible fingers and a consistent light background. +v_CuttingInKitchen_g09_c01.jpg A hand is holding a halved, purple onion with visible layers on a green cutting board, viewed from slightly above. +v_CuttingInKitchen_g05_c03.jpg A person is seen slicing a white vegetable, likely an onion, on a white cutting board under warm lighting on a beige countertop with a colander and onions in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Diving_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Diving_descriptions.txt new file mode 100644 index 0000000..374e541 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Diving_descriptions.txt @@ -0,0 +1,10 @@ +v_Diving_g05_c01.jpg A diver wearing dark swim trunks is mid-air in a tucked position against a backdrop of an indoor swimming facility, featuring a bright blue pool and several onlookers near the diving boards, with informational posters on the wall. +v_Diving_g09_c05.jpg In this low-resolution image, the diver appears mid-air above a swimming pool, with a light-colored swimsuit and limbs extended, set against a backdrop of blue pool umbrellas and spectators in a leafy outdoor setting. +v_Diving_g22_c06.jpg The image shows a diver poised at the edge of a diving board in an indoor swimming pool, with clear blue water below, surrounded by orange buoys and a backdrop of tiled walls, windows, and seated spectators. +v_Diving_g23_c05.jpg A blue indoor swimming pool is shown from a side angle, with spectators sitting in the background near the diving platforms and the diving boards having a light color with safety rails. +v_Diving_g03_c07.jpg A diver in an elongated pose, wearing a dark swimsuit, is captured mid-dive over a clear blue pool, against a backdrop of green umbrellas and trees, displaying a well-balanced arch visible despite the low resolution. +v_Diving_g21_c04.jpg A person in dark swimwear stands upright on a springboard, poised over an indoor pool, with diving platforms and Indiana-branded walls in the soft-lit background. +v_Diving_g20_c05.jpg A diver in mid-air wearing blue swim trunks is captured performing a dive above an indoor pool, with onlookers seated in chairs on the right and the background showing blurred gymnasium equipment and architecture. +v_Diving_g10_c03.jpg A diver in mid-air above a swimming pool shows a blurred, dynamic pose, wearing a multicolored swimsuit, with visible diving board structure and green landscape in the background. +v_Diving_g15_c06.jpg The image shows a diver captured mid-dive, silhouetted against an indoor pool setting with a dimly lit, industrial background featuring visible support beams and reflections on the water's surface. +v_Diving_g05_c03.jpg A diver with indistinct details and a blurred black swimsuit is captured mid-dive in a vertical pose above a swimming pool, surrounded by a tiled indoor environment with a scoreboard and noticeable lane ropes. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Drumming_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Drumming_descriptions.txt new file mode 100644 index 0000000..3458002 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Drumming_descriptions.txt @@ -0,0 +1,10 @@ +v_Drumming_g21_c02.jpg A person is positioned in profile playing a drum set with metallic cymbals and white drumheads, against a dimly lit stage backdrop with other musicians visible in the background. +v_Drumming_g14_c04.jpg A shirtless individual is positioned at a drum set under pink and red stage lights, with cymbals and drums visible, while wearing black shorts with white, faint circular patterns, all set against a dark, shadowy background. +v_Drumming_g10_c05.jpg The drummer is seated in a casual, relaxed pose with a light-colored drum set against a warmly lit room, featuring a plant on a cabinet and a window in the background, creating a cozy, homely atmosphere. +v_Drumming_g02_c06.jpg The image shows a person from a slightly elevated and angled side view, seated at a drum set with a deep brown and metallic-sheen color, surrounded by numerous cymbals and drums in a blurred indoor environment, with a visible motion of drumming in progress. +v_Drumming_g21_c06.jpg The image shows a drummer in a side profile view, seated at a polished silver drum kit with a shiny snare and multiple cymbals, positioned within a dimly lit indoor environment with scattered equipment and visible audience silhouettes. +v_Drumming_g17_c04.jpg A drummer is playing a visually striking blue drum set adorned with white star details, viewed from a front angle in a room with muted blue and brown walls, featuring a Zildjian cymbal bag to the side. +v_Drumming_g24_c05.jpg A person sits on a stool playing an electronic drum set with multiple round pads, situated in a bedroom with an unmade bed and a television displaying a music game in the background. +v_Drumming_g22_c04.jpg The image depicts a person playing a drum kit in a dimly lit room with sheer curtains, featuring a series of light brown drums and cymbals positioned in a semi-circle, with visible metal stands and a plant in the background. +v_Drumming_g13_c05.jpg A drummer in a dimly lit environment energetically plays a drum kit with visible cymbals and various drum heads, while the blue-tinted arm motion adds dynamic contrast against the dark background. +v_Drumming_g24_c01.jpg In a bedroom setting with a TV displaying a video game, the image shows a person playing an electronic drum kit with black pads, viewed from the side, amid casual furniture and wires on the floor. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Fencing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Fencing_descriptions.txt new file mode 100644 index 0000000..631f7f2 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Fencing_descriptions.txt @@ -0,0 +1,10 @@ +v_Fencing_g20_c04.jpg Two fencers in white protective gear and masks are facing each other in a lunge pose on a strip, with a black curtain backdrop and a red running track in the foreground. +v_Fencing_g11_c02.jpg The image depicts two fencers in white protective gear and masks engaging on a blue piste with Olympic rings and "Beijing 2008" visible on the ground, against a dimly lit background with a referee in shadow observing. +v_Fencing_g22_c01.jpg The image shows two fencers in white protective gear and black masks lunging towards each other, set against a blurred indoor backdrop with blue walls and championship signage, with the scene captured from a side angle. +v_Fencing_g02_c03.jpg Two fencers dressed in white uniforms with protective masks face each other on a blue and purple strip, set against a dimly lit background with silhouetted spectators and promotional banners visible. +v_Fencing_g04_c05.jpg The image depicts two fencers in white suits and masks engaged in a lunge on a grey fencing strip with an indoor arena background featuring a red floor and spectators sitting on benches. +v_Fencing_g06_c04.jpg The image shows two fencers in white uniforms and masks lunging towards each other on a raised strip with a blue floor, surrounded by spectators and an arena environment with a scoring machine visible in the background. +v_Fencing_g17_c03.jpg The image shows two fencers in white protective gear and helmets on a beige strip, with a gleaming wooden floor and green wall background, facing each other in an en garde position amidst a sparsely populated gym environment. +v_Fencing_g09_c01.jpg The image shows two fencers dressed in white protective gear, facing each other on a dimly lit piste, with one fencer poised forward and the other bending slightly in defense, set against a dark, blurred audience background. +v_Fencing_g14_c01.jpg The image shows two fencers in white protective gear, masks, and gloves, facing each other in a lunging stance on a narrow strip within an indoor arena environment, with a scoreboard and spectators in the blurred background. +v_Fencing_g10_c02.jpg Two fencers in white protective gear are depicted in a dynamic, lunging stance on a metallic platform under bright lighting, with a blurred audience and a scoring apparatus visible in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Field_Hockey_Penalty_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Field_Hockey_Penalty_descriptions.txt new file mode 100644 index 0000000..0090d74 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Field_Hockey_Penalty_descriptions.txt @@ -0,0 +1,10 @@ +v_FieldHockeyPenalty_g20_c02.jpg A field hockey player in white, poised to hit a penalty stroke, faces a goaltender in orange protective gear and a helmet, with a referee in blue nearby, set against a dimly lit sports field with faintly marked grass lines and a dark background. +v_FieldHockeyPenalty_g22_c02.jpg A player in maroon, poised in a low stance with a hockey stick, prepares to strike an orange ball on a green field, facing a goalkeeper in orange gear with a goal behind, surrounded by a fence and buildings. +v_FieldHockeyPenalty_g19_c01.jpg A field hockey player in white prepares to strike a penalty shot with another player in blue standing nearby, while a goalkeeper in yellow and blue gear stands in front of the net, set against a green pitch and a backdrop featuring a large banner. +v_FieldHockeyPenalty_g10_c04.jpg A person in dark pants and a green shirt runs on a bright green field towards a goal with a goalkeeper in a white and green uniform, with a blue track surrounding the field and trees in the background. +v_FieldHockeyPenalty_g10_c01.jpg A player in a green shirt leans forward with a stick poised over a ball on a vibrant green field, facing a goalie in bright green pants positioned in front of a dark net, against a backdrop of tall, blurred trees. +v_FieldHockeyPenalty_g20_c01.jpg A field hockey player in white and dark colors prepares to take a penalty against a goalkeeper in black and yellow gear, positioned in front of a goal with white posts on a vibrant green artificial turf, surrounded by a fenced sports field and distant bleachers. +v_FieldHockeyPenalty_g19_c03.jpg A low-resolution image shows a field hockey player in a black uniform poised to take a penalty shot on a vibrant green field, facing a goalkeeper in a bright yellow and blue outfit standing alert in front of the goal, with a blurred background of a colorful crowd and advertisements along the perimeter. +v_FieldHockeyPenalty_g04_c07.jpg The image shows a field hockey player in an orange jersey and black shorts preparing to shoot at a goal covered by a fully kitted goalkeeper in blue, with a referee nearby and a crowd in the background, all set on a bright green artificial turf. +v_FieldHockeyPenalty_g18_c03.jpg The image shows a field hockey player in a yellow and red uniform preparing to strike the ball during a penalty, with a blue-uniformed goalkeeper poised to defend within an orange-framed goal against a backdrop of dark advertisement boards on a textured green pitch. +v_FieldHockeyPenalty_g14_c07.jpg A goalie in red gear braces in front of a white field hockey goal while an opposing player in white and black prepares to take a penalty shot on a vibrant green field, with trees and a fence in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Floor_Gymnastics_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Floor_Gymnastics_descriptions.txt new file mode 100644 index 0000000..7cbdd4c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Floor_Gymnastics_descriptions.txt @@ -0,0 +1,10 @@ +v_FloorGymnastics_g07_c04.jpg A gymnast in a vibrant red leotard is captured mid-air performing a handstand on a light blue mat, with a blurred audience and colorful banners forming a dynamic background in an indoor arena. +v_FloorGymnastics_g18_c04.jpg A gymnast in a black leotard with red details is performing a dynamic leap with one arm raised, viewed from the front on a blue gymnastics floor amidst a blurred crowd in a sports arena. +v_FloorGymnastics_g06_c02.jpg A gymnast in a dynamic pose, wearing a blue and white leotard with the backdrop of a blurred, colorful banner against a dark mat. +v_FloorGymnastics_g24_c02.jpg A gymnast in vibrant blue and green attire performs an aerial flip above a blue and maroon floor mat, against a backdrop of seated spectators and the "2012 VISA Championship" banner in an indoor arena. +v_FloorGymnastics_g20_c03.jpg The gymnast, wearing a vibrant green and black outfit with a smooth texture, is captured mid-air in an impressive handstand with legs split, set against a blue mat and a blurred, multicolored audience background. +v_FloorGymnastics_g21_c01.jpg In a gymnasium with high ceilings and bright lighting, a gymnast wearing a dark leotard performs a tumbling routine on a vivid blue mat, contrasted by rows of blue barriers and observers seated in the background. +v_FloorGymnastics_g04_c02.jpg A gymnast wearing a red leotard with gold detailing performs a dynamic leap above a purple floor mat, with an American flag and audience in a stadium setting as the backdrop. +v_FloorGymnastics_g12_c05.jpg A gymnast in a dark leotard is captured mid-performance in an inverted handstand or flip position on a light blue mat, surrounded by a gymnasium with wooden bleachers and a group of spectators in the background. +v_FloorGymnastics_g01_c01.jpg A gymnast in a red leotard, performing a mid-air flip on a blue floor mat, with a large arena and blurred spectators in the background. +v_FloorGymnastics_g20_c05.jpg A gymnast in a pink-and-red leotard is caught mid-cartwheel on a green mat, inside a spacious, well-lit gym with a high, white arched ceiling, surrounded by gym equipment and mirrors reflecting the scene. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Frisbee_Catch_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Frisbee_Catch_descriptions.txt new file mode 100644 index 0000000..628a050 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Frisbee_Catch_descriptions.txt @@ -0,0 +1,10 @@ +v_FrisbeeCatch_g18_c04.jpg A group of people stand on a grassy field with a few trees and a building in the background, under a warm, diffused sunset light, with the image appearing blurry and pixelated due to low resolution. +v_FrisbeeCatch_g07_c03.jpg A person in a white jersey lunges forward on a green football field to catch a small dark object in mid-air, with empty bleachers and trees in the blurred background. +v_FrisbeeCatch_g08_c03.jpg A player in a red shirt and black pants is diving to catch a Frisbee on a grassy field, with a blurred audience and tents in the background, creating a dynamic action scene. +v_FrisbeeCatch_g18_c02.jpg The image shows a group of people on a grassy field with a few players in maroon and yellow jerseys actively engaged, one making a stretched-out leap to catch a Frisbee, set against a background of buildings and trees with a soft, blurred texture. +v_FrisbeeCatch_g02_c05.jpg In the image, a person in dark clothing is reaching up mid-field in a green grassy outdoor setting, aiming to catch a white frisbee, with a blurred background where a group of spectators and trees are visible, suggesting dynamic motion and a casual event environment. +v_FrisbeeCatch_g05_c03.jpg A group of individuals in athletic attire are standing on a grassy field, with one person extending towards a white frisbee flying to the right against a background of parked cars and a tree-lined street. +v_FrisbeeCatch_g12_c05.jpg A player in a black jersey with the number 19 is poised to catch a white Frisbee in mid-air, with a grassy field and other players in various jerseys scattered in the background under an overcast sky. +v_FrisbeeCatch_g21_c04.jpg A group of players wearing red and white uniforms are actively playing frisbee on a lush green field under a clear blue sky, with a cluster of trees and a white tent visible in the distant background. +v_FrisbeeCatch_g20_c01.jpg A person in a red jersey is sprinting across a grassy field toward a blurred, airborne Frisbee, while a few other figures in the background stand near trees and a chain-link fence. +v_FrisbeeCatch_g07_c01.jpg A player in a white shirt and green shorts is sprinting on a striped green field with bleachers and spectators blurred in the background, closely followed by another player in a blue shirt, capturing a dynamic sports scene. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Front_Crawl_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Front_Crawl_descriptions.txt new file mode 100644 index 0000000..eb41380 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Front_Crawl_descriptions.txt @@ -0,0 +1,10 @@ +v_FrontCrawl_g08_c05.jpg A swimmer in a black swimsuit, with a white swim cap, is executing a side-breathing stroke in a turquoise indoor pool, the water surface smooth with subtle ripples and lane markings visible in the background. +v_FrontCrawl_g13_c04.jpg A swimmer, captured mid-stride in the front crawl, is visible from a side angle in a dimly-lit indoor pool, with water reflecting a greenish hue and dotted lane markers faintly visible in the background. +v_FrontCrawl_g02_c01.jpg A swimmer in a blue swimsuit and cap is captured in a top-down view performing the front crawl stroke in a clear blue pool, with one arm extended and lanes visible beneath the water's surface. +v_FrontCrawl_g20_c07.jpg A swimmer with a tanned back and dark hair is performing the front crawl partially submerged in clear blue water, viewed from a side angle, with rippling water texture and a lane line visible in the background. +v_FrontCrawl_g19_c03.jpg The image shows a swimmer with a red and black swimsuit performing the front crawl stroke with an over-water arm reach, creating splashes in a clear blue swimming pool surrounded by a patio or backyard environment with outdoor furniture. +v_FrontCrawl_g17_c03.jpg A swimmer wearing a colorful swim cap performs the front crawl in a clear, blue indoor swimming pool, viewed from above with visible lane markings and a tiled pool deck surrounding the area. +v_FrontCrawl_g03_c03.jpg A swimmer in a black swimsuit performs the front crawl near the pool's surface, with an arm raised mid-stroke, creating splashes in a bright blue swimming pool lined with white lane dividers. +v_FrontCrawl_g06_c05.jpg A swimmer in a blue pool is captured from behind, wearing a dark cap with visible arm movement and splashing water, bordered by lane ropes and a stone wall in the background. +v_FrontCrawl_g08_c01.jpg A swimmer wearing a black swimsuit and white cap is performing the front crawl in a turquoise pool, viewed from above, with their arm extended forward and water rippling alongside. +v_FrontCrawl_g06_c04.jpg A swimmer in a light blue pool performs the front crawl with one arm raised, visible from behind, framed by a brick boundary and playful pool decorations including a large, cartoonish red lobster figure on a rocky background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Golf_Swing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Golf_Swing_descriptions.txt new file mode 100644 index 0000000..97b1e7c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Golf_Swing_descriptions.txt @@ -0,0 +1,10 @@ +v_GolfSwing_g25_c02.jpg A golfer in mid-swing, dressed in a white outfit, is positioned on a lush green fairway with a scenic mountain and clear blue sky in the background, accented by tall trees framing the scene. +v_GolfSwing_g09_c01.jpg The golfer is wearing a light blue shirt and white pants while poised in a practice stance on a green mat, set against the backdrop of an outdoor practice area with a building and trees. +v_GolfSwing_g05_c07.jpg A golfer in a blue shirt and black pants swings a club mid-motion, viewed from the side against a green grassy area with trees in the blurred background. +v_GolfSwing_g08_c05.jpg The golfer, wearing a black and white striped shirt and white shorts, is captured mid-swing from behind on a sunny day, positioned on a grassy area with shadows cast on the ground, while trees and a small building form the dimly lit background. +v_GolfSwing_g14_c02.jpg The golfer, wearing a dark top and light pants, is captured from behind in a full follow-through position on a lush green fairway with trees and spectators in the background, emphasizing dynamic motion. +v_GolfSwing_g21_c05.jpg A golfer in a dark shirt and shorts, wearing a hat, is poised in a side profile stance on a grassy field with scattered trees in the background, focusing on a golf ball positioned on dry, slightly patchy grass. +v_GolfSwing_g15_c04.jpg A person wearing a bright red shirt and blue shorts is poised in a golf stance on a grassy field with trees in the background, holding a golf club ready to swing, under a clear sky. +v_GolfSwing_g02_c01.jpg A person in a black jacket and red shorts is mid-swing on a green practice mat, viewed from a side angle with a cloudy sky and scattered trees in the background, flanked by tall metal poles. +v_GolfSwing_g19_c02.jpg A golfer in a blue shirt and gray pants is finishing a swing against a lush green fairway, with scattered trees and distant onlookers in a blurred backdrop. +v_GolfSwing_g02_c02.jpg A person in a white shirt and black shorts is captured mid-golf swing, facing left, on a lush green lawn in front of a brick house with dark shutters and a white entryway, under clear daylight. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Haircut_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Haircut_descriptions.txt new file mode 100644 index 0000000..265498f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Haircut_descriptions.txt @@ -0,0 +1,10 @@ +v_Haircut_g04_c02.jpg The haircut scene shows a stylist working on straight, medium-brown hair, viewed in profile with a sleek texture, in a bright salon with mirrors, reflecting a minimalistic, clean environment. +v_Haircut_g14_c04.jpg The image shows a person receiving a straight, black bob haircut with a smooth texture, viewed from the front as a pair of scissors cuts the fringe, set against a neutral-colored curtain in a salon environment. +v_Haircut_g09_c07.jpg The image shows a dark, straight haircut being precisely trimmed with scissors, viewed from the side with a comb strategically placed for alignment, set against a neutral, indoor background. +v_Haircut_g03_c04.jpg The haircut features straight, dark brown hair with a wet, sleek texture being combed and trimmed evenly at the nape from a rear view, set against a salon environment with a striped cape and a wooden floor. +v_Haircut_g21_c02.jpg The image shows a light blond bob haircut with a smooth texture, viewed from behind while being trimmed in a modern salon environment, featuring a backdrop of shelves and some red and metallic elements. +v_Haircut_g10_c01.jpg A person with long, straight blonde hair sits facing a mirror in a salon, with a stylist working on their hair amidst a turquoise-painted wall and black furnishings in the background. +v_Haircut_g16_c02.jpg A side profile view shows a short, sleek bob haircut with reddish-brown color and straight texture, contrasted against a plain white background, and a stylist's hands actively trimming the ends. +v_Haircut_g23_c02.jpg The haircut features light blonde, straight, shoulder-length hair being trimmed with clippers, viewed from a slight front angle, in a salon setting with another person also receiving a haircut in the blurred background. +v_Haircut_g20_c03.jpg The haircut features dark brown, straight hair being trimmed with clippers and a comb from a side view in a black and white checkered salon environment, with visible precise cutting lines on the side. +v_Haircut_g22_c01.jpg The haircut features long, straight, black hair viewed from the back, with a red barber cape draped over the shoulders, set against a light blue wall in a barber shop with a person preparing to trim. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Hammer_Throw_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Hammer_Throw_descriptions.txt new file mode 100644 index 0000000..7da2f8c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Hammer_Throw_descriptions.txt @@ -0,0 +1,10 @@ +v_HammerThrow_g15_c05.jpg A person is poised to perform a hammer throw on a muddy field, surrounded by tall, sparse trees visible through a green net enclosure, viewed from behind with overcast lighting and wearing dark athletic gear. +v_HammerThrow_g03_c06.jpg A person in a white shirt and dark shorts is captured mid-swing inside a circular throwing cage with green netting, set against a grassy field with trees in the distant background. +v_HammerThrow_g14_c05.jpg A male athlete is captured mid-spin in a hammer throw event, with a blurred hammer in motion, wearing a red and green uniform against a brightly lit stadium background with tall metal structures and a visible scoreboard displaying scores and names. +v_HammerThrow_g05_c03.jpg A person in a blue shirt and black shorts is in a motion stance on a circular concrete area surrounded by netting, with a grassy backdrop and several people observing. +v_HammerThrow_g02_c01.jpg A person in a light blue athletic outfit is gripping a hammer against a backdrop of a stadium with bright lights and a large net enclosure, viewed from behind in a wide stance on a circular platform. +v_HammerThrow_g24_c02.jpg The image shows a hammer throw athlete in mid-swing with a green outfit and black belt against a stadium background filled with spectators, featuring a red track with sponsor banners visible in the low-resolution picture. +v_HammerThrow_g21_c03.jpg A person in athletic gear is positioned mid-throw with dynamic motion on a circular platform, surrounded by a netted enclosure on a reddish-brown track surface, with a vibrant green field and a stadium full of spectators blurred in the background. +v_HammerThrow_g08_c03.jpg In the low-resolution image, an individual in a green and white athletic uniform is captured mid-swing of a hammer throw, viewed from the side with a netted cage and blurred trees in the background, while other athletes appear indistinctly nearby, adding dynamism to the sporting environment. +v_HammerThrow_g15_c01.jpg A person dressed in dark clothing is holding a hammer in both hands, positioned within a circular throwing area, with a green net surrounding and a tree-lined background visible. +v_HammerThrow_g20_c03.jpg The athlete, wearing red pants and a dark top, is positioned within a caged throwing circle on a concrete surface, with a green grass background, preparing to release the hammer while facing away, captured from a rear viewpoint. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Hammering_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Hammering_descriptions.txt new file mode 100644 index 0000000..ae3b967 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Hammering_descriptions.txt @@ -0,0 +1,10 @@ +v_Hammering_g20_c01.jpg A person in a dark long-sleeve shirt is using a claw hammer with a wooden handle to drive nails into a light wooden board, viewed from the side in a cluttered workshop environment with scattered wood shavings on the floor and a metal sawhorse in the background. +v_Hammering_g03_c02.jpg A young child in a red shirt and blue shorts is squatting while hammering a nail into a wooden plank on a tiled floor, with a box and tools scattered in the background. +v_Hammering_g15_c05.jpg A person wearing a burgundy top and blue jeans is kneeling on a concrete floor, hammering two light-colored wooden planks stacked with visible grain pattern, set against a workshop background with machinery. +v_Hammering_g23_c01.jpg A person is using a hammer with a dark handle to remove nails or materials from a textured white ceiling at an angle, against a purple wall in a corner. +v_Hammering_g20_c03.jpg A person in dark clothing is using a hammer with a wooden handle to drive a nail into light-colored, unfinished wood, in a workshop setting with various tools and construction materials visible in the background. +v_Hammering_g20_c04.jpg A person is using a metallic hammer with a wooden handle, viewed from the side, to nail a piece of light-colored wood in a cluttered workshop environment with visible tools and wooden planks in the background. +v_Hammering_g10_c07.jpg A young person in a blue shirt is holding a dark-colored hammer, poised against a light wooden surface, set in an outdoor environment with blurred greenery in the background. +v_Hammering_g06_c05.jpg A person in a dark jacket is swinging a hammer downwards onto a wooden beam set on a rocky surface, with a leafless tree-filled landscape in the background. +v_Hammering_g04_c03.jpg A person in a dark jacket is holding a dark hammer with a wooden handle, poised against a large, textured wooden surface, with a blurred background of vertical wooden planks. +v_Hammering_g13_c02.jpg A person wearing a dark jacket and cap is bent over on a snow-dusted sidewalk, hammering a nail into a light-colored wooden plank while surrounded by scattered tools and materials. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Handstand_Pushups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Handstand_Pushups_descriptions.txt new file mode 100644 index 0000000..3487b42 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Handstand_Pushups_descriptions.txt @@ -0,0 +1,20 @@ +v_HandStandPushups_g07_c04.jpg A person with a muscular build, wearing black shorts, is performing a handstand pushup on a wooden floor with a blurred red ball in the background, viewed from a side angle. +v_HandStandPushups_g23_c05.jpg A person wearing dark clothing performs a handstand pushup against a cream-colored wall with a door on the left, hair hanging down, and a carpeted floor in a room with minimal furniture and visible cables. +v_HandStandPushups_g12_c07.jpg A person wearing dark clothing performs a handstand pushup in a narrow hallway with light-colored walls and carpet, viewed from behind with their feet touching the ceiling. +v_HandStandPushups_g02_c04.jpg A person performs a handstand pushup on a vivid red surface, with the sun casting strong shadows, their muscular form emphasized by the lighting, while a white fence and onlookers populate the background. +v_HandStandPushups_g07_c02.jpg A person with bare upper body and black pants performs a handstand pushup indoors on a wooden floor, with shelves and colorful exercise balls in the background. +v_HandStandPushups_g03_c03.jpg A person performs a handstand pushup on a red mat in a beige room with a wall-mounted ladder, wearing black pants and white socks, with the background featuring framed art and a stereo. +v_HandStandPushups_g03_c01.jpg A person performs a handstand pushup on a red mat in a sparsely decorated room, featuring a bare upper torso and black pants, with arms extended and balanced against a wall-mounted wooden exercise ladder. +v_HandStandPushups_g08_c05.jpg A person is performing a handstand pushup indoors, viewed from a side angle; the background includes warm-toned walls with decorative frames, a hanging lamp, and assorted furniture, while the individual wears dark pants against a textured carpeted floor. +v_HandStandPushups_g15_c02.jpg A shirtless person performs a handstand push-up against a green wall in a hallway, with legs extended upwards, wearing dark shorts and socks, with a low-resolution image revealing a partial doorway and neutral-toned surroundings. +v_HandStandPushups_g22_c02.jpg A person wearing light-colored pants and a dark top performs a handstand pushup on a raised platform in a gym environment, with light green walls and exercise equipment in the background. +v_HandStandPushups_g01_c02.jpg A person wearing dark shorts performs a wall-supported handstand pushup with bare feet against a white door, in a room with beige walls and carpeted floor. +v_HandStandPushups_g24_c01.jpg A person in black attire with camo shorts performs a handstand pushup against a white pillar on a blue and red mat, surrounded by gym equipment such as a large ball and punching bags in a brightly lit workout room with windows. +v_HandStandPushups_g18_c03.jpg A person is performing a handstand pushup against a mustard-yellow wall, wearing red shorts and a white shirt with a design on the back, with visible gym mats and a water bottle on a wooden floor. +v_HandStandPushups_g08_c04.jpg A person performs a handstand push-up inside a living room, facing away from the camera with bare feet against a wall, surrounded by beige and brown decor, including wall art and a floor lamp, on a carpeted floor next to a table with a lace cover. +v_HandStandPushups_g11_c05.jpg A person in a gray sleeveless shirt and black shorts performs a handstand pushup against a purple indoor gym wall, with their feet resting on a white section of the wall and a piece of gym equipment visible on the right side. +v_HandStandPushups_g11_c01.jpg In a dimly lit room with dark blue walls, a person wearing a gray tank top and black shorts performs a handstand pushup against the wall, with arms fully extended and feet touching the white ceiling. +v_HandStandPushups_g24_c04.jpg A person wearing black and camo-patterned shorts performs a handstand pushup against a white pillar on blue and red mats, with black punching bags in the background. +v_HandStandPushups_g24_c03.jpg A person performs a handstand pushup against a white column on a blue and red gym mat, wearing camouflage shorts and a black top, with exercise equipment like stability balls and padded pillars visible in the bright, spacious gym background. +v_HandStandPushups_g18_c07.jpg A person is performing a handstand pushup with red pants and a white T-shirt against a plain mustard-yellow wall, in a room with a wooden floor and a black sofa nearby. +v_HandStandPushups_g02_c03.jpg A person performs a handstand pushup on a bright red surface with muscular definition visible, surrounded by a sunny outdoor setting featuring a white railing and greenery in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Handstand_Walking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Handstand_Walking_descriptions.txt new file mode 100644 index 0000000..b88bfea --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Handstand_Walking_descriptions.txt @@ -0,0 +1,10 @@ +v_HandstandWalking_g24_c04.jpg A person in a black and white athletic outfit performs a handstand walk on a wooden gym floor, captured from a side angle, with gymnastic rings and a brightly lit industrial interior in the background. +v_HandstandWalking_g25_c04.jpg The image shows a dimly lit scene where an individual is performing a handstand walk, with legs slightly apart, on a darkened surface next to a staircase, with noticeable shadows and low contrast between the outfit and background. +v_HandstandWalking_g07_c04.jpg A person in a black top and gray pants is performing a handstand walk on a large, open gym floor with a punching bag and workout equipment in the background, viewed from a side angle with muted, indoor lighting. +v_HandstandWalking_g23_c03.jpg A person wearing red and yellow clothing performs a handstand walk on a wood-patterned floor, captured from a slightly elevated viewpoint, with a blurred background featuring indistinct decor. +v_HandstandWalking_g04_c02.jpg A person is performing a handstand walking on a grassy lawn, wearing a white shirt and dark pants, with outstretched legs visible against a backdrop of bushes and a light-colored building, while the bright sunlight casts defined shadows. +v_HandstandWalking_g07_c05.jpg A person wearing a dark outfit performs a handstand walk on a smooth gym floor, with their legs extended upwards toward the ceiling, surrounded by gym equipment and punching bags in a spacious industrial-style setting. +v_HandstandWalking_g22_c01.jpg A person in a pink patterned top and black pants with white stripes is performing a handstand walk on a dark gym floor, with kettlebells in the background against a blue wall. +v_HandstandWalking_g12_c01.jpg A person is performing a handstand walk on a deep red floor with light streaming through a window, surrounded by bunk beds and scattered items in a small, cluttered room. +v_HandstandWalking_g18_c01.jpg A person is performing a handstand walk on grassy terrain, wearing a blue-patterned top and dark pants, positioned sideways with bare trees and a clear sky in the background, creating a stark contrast against the bright environment. +v_HandstandWalking_g11_c02.jpg A person is performing a handstand walk on a grey road with a grassy area and trees in the background, wearing a light grey or white top and shorts with scattered patterns, viewed from the side in a suburban neighborhood setting. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Head_Massage_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Head_Massage_descriptions.txt new file mode 100644 index 0000000..5ec6ba5 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Head_Massage_descriptions.txt @@ -0,0 +1,10 @@ +v_HeadMassage_g03_c02.jpg A man seated in a white-collared shirt receives a head massage from a standing person in a striped shirt, with a red towel draped over his shoulders, in a brightly lit room with multiple people in the background. +v_HeadMassage_g11_c04.jpg A person with dark hair is giving a head massage in a small, dimly-lit room with yellow walls, surrounded by mirrors and framed pictures, with the recipient seated and appearing relaxed. +v_HeadMassage_g18_c01.jpg A person wearing a striped shirt receives a head massage in a well-lit barbershop, surrounded by numerous hair products on white counters, with the masseur positioned slightly to the right of the frame, focusing intently on the task. +v_HeadMassage_g07_c03.jpg A person with short brown hair is seated with their back to the camera, wearing a checkered shirt and receiving a head massage from another individual in a blue shirt, within a barbershop setting featuring mirrors and shelves with various items. +v_HeadMassage_g02_c07.jpg A man with a bald spot is receiving a head massage from another man with short hair, both in casual attire, set in a dimly lit veranda or patio with chairs and a table in the background, featuring muted tones and a relaxed atmosphere. +v_HeadMassage_g06_c02.jpg A man in a light shirt provides a head massage to a seated individual in a wooden-paneled room, with colorful bottles and tall plants visible in the blurry background. +v_HeadMassage_g19_c04.jpg A man in a white shirt is giving a seated individual a head massage in an indoor setting with plain walls, using both hands with fingers spread, while the low-resolution image captures the subtle texture of hair and gentle pose of the masseur. +v_HeadMassage_g12_c06.jpg A man with a slight smile receives a head massage from a person wearing a blue shirt, with hands gently tousling his hair, while surrounded by blurred, warm-toned background elements. +v_HeadMassage_g11_c07.jpg A person receives a head massage in a small, dimly lit barbershop with yellow walls and patterned curtains, seated facing a large mirror reflecting both the masseur and the bright overhead lighting, while surrounded by various salon decorations. +v_HeadMassage_g12_c04.jpg The image shows a person in a yellow shirt receiving a head massage from someone in a blue shirt, viewed in a slightly tilted side angle against a green wall background, with visible hair being tousled and a partially obscured mirror at the bottom edge. diff --git a/utils/area/descriptions/ucf/generated_descriptions/High_Jump_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/High_Jump_descriptions.txt new file mode 100644 index 0000000..800c036 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/High_Jump_descriptions.txt @@ -0,0 +1,10 @@ +v_HighJump_g02_c05.jpg A person in motion is running towards a high jump bar, wearing a light blue and white outfit, with an indoor athletic arena in the background featuring orange panels and spectators; although the image is blurred, the trajectory reflects dynamic movement. +v_HighJump_g11_c01.jpg A blurred athlete in a black and white uniform approaches a dark blue and pink high jump bar set on a green field, with a person in a red shirt standing nearby on the sandy track. +v_HighJump_g04_c04.jpg The high jumper, captured in motion from a side angle, is wearing a green and black athletic outfit on a red track with blurred stadium seating and trees in the background, showing a dynamic leap with an athletic posture despite the low resolution. +v_HighJump_g13_c04.jpg The image displays an athlete in a red outfit mid-jump over a horizontal bar set against a track and field background with trees and a parked vehicle, capturing a dynamic moment with motion blur due to low resolution. +v_HighJump_g08_c05.jpg A person mid-air in a low-resolution image, against a track and field environment with reddish running tracks and greenery in the background, is wearing a white top and dark shorts, captured from a side angle showcasing the leap and form. +v_HighJump_g20_c04.jpg A person in a black shirt and purple shorts is mid-approach towards a high jump bar set on green mats, in an indoor facility with a large industrial fan on the wall and equipment racks visible in the background. +v_HighJump_g16_c02.jpg A low-resolution image shows an athlete in a mid-air high jump pose, wearing red and white attire, over a high jump bar with a blurred gymnasium background of red bleachers, indicating an indoor sports setting. +v_HighJump_g22_c05.jpg A person in motion wearing a black and red outfit approaches a pink and black cushioned mat for a high jump, with a grassy field background and another individual nearby observing. +v_HighJump_g07_c02.jpg The image depicts a group of children on a red running track with a white high jump mat nearby, surrounded by grass and construction equipment in the background, showcasing dynamic movement and a sporty outdoor environment. +v_HighJump_g15_c03.jpg A person in mid-stride wearing a dark outfit and white shoes runs on a gray track with a blue sky and blurred spectators in the stadium background, highlighting dynamic motion and athletic posture. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Horse_Race_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Horse_Race_descriptions.txt new file mode 100644 index 0000000..9a81d3d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Horse_Race_descriptions.txt @@ -0,0 +1,10 @@ +v_HorseRace_g07_c01.jpg The image shows a pack of horses with jockeys wearing brightly colored silks, primarily blue and red, racing on a dark track with a large expanse of green grass in the background, viewed from a slightly elevated angle. +v_HorseRace_g02_c03.jpg A group of jockeys in vibrant silks, including blue, yellow, and red, ride closely packed horses from a side angle on a racetrack, with white railing lining the course and a blurred audience in the dimly lit stadium background. +v_HorseRace_g05_c02.jpg The image shows a group of racehorses in various colors such as brown and gray, captured from a side angle as they gallop around a grassy racing track with trees in the blurred background and a striped pole marking on the right side. +v_HorseRace_g25_c01.jpg In a slightly elevated side view, a group of jockeys wearing colorful silks is riding dark-toned horses on a grass track, framed by hedges and a blurred green landscape, with the race number and timing displayed prominently at the top. +v_HorseRace_g11_c03.jpg In a dynamic side-view shot, a group of jockeys wearing vivid blue and white silks race alongside sleek, dark brown horses on a dirt track bordered by green grass, with a blurred crowd and a hint of a grandstand visible in the background. +v_HorseRace_g04_c04.jpg A blurred scene showing a horse race with indistinct jockeys on dark-colored horses against a green grassy field and a dense, tree-lined background from a side-on perspective. +v_HorseRace_g03_c03.jpg A mid-race scene shows several horses in motion, viewed from a side angle, galloping on a dirt track with a blurred grandstand and signage in the background, accented by bright jockey silks in contrasting colors and a green infield. +v_HorseRace_g11_c06.jpg The image captures a side view of a horse race on a muddy track with a group of horses and jockeys approaching a curve, set against a background of greenery and a partially cloudy sky, under soft lighting. +v_HorseRace_g09_c01.jpg A herd of horses, predominantly dark in color, is racing left to right against a backdrop of green grass and white fences, viewed from a side angle, under a sky dotted with clouds, creating a motion blur effect. +v_HorseRace_g08_c02.jpg The image shows a dynamic scene featuring several racehorses in motion, with distinct variations of brown, gray, and near-black coats, set against a blurred background of a racetrack and distant grandstands, creating a sense of high-speed action and competition. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Horse_Riding_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Horse_Riding_descriptions.txt new file mode 100644 index 0000000..0eacbf4 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Horse_Riding_descriptions.txt @@ -0,0 +1,10 @@ +v_HorseRiding_g02_c06.jpg A rider in dark clothing sits atop a brown horse with a smooth, glossy coat in a profile view, against a backdrop of bare trees and wooden fencing on a sandy arena. +v_HorseRiding_g08_c05.jpg A rider on a light brown horse, captured in a side profile at a canter, against a blurred equestrian arena background with visible text on a banner. +v_HorseRiding_g22_c05.jpg A rider wearing a white helmet and dark attire is mounted on a brown horse with a white blaze, seen from the side in a dimly lit indoor arena with a banner and railing in the background. +v_HorseRiding_g21_c06.jpg A rider in a light shirt and teal pants sits on a chestnut horse, viewed from the side in a fenced grassy area with scattered trees in the background. +v_HorseRiding_g07_c03.jpg A person wearing a hat and blue jeans rides a brown horse with white leg markings, visible in profile against a blurred, earthy background with sparse vegetation. +v_HorseRiding_g07_c01.jpg A rider in blue jeans and a dark top sits atop a brown horse with white markings on its legs, viewed from the side, against a rustic backdrop of brick buildings and tree foliage. +v_HorseRiding_g25_c01.jpg A rider sits upright on a light-colored horse with a smooth coat trotting in profile view across a dusty, open area bordered by a distant line of trees and fencing in the background. +v_HorseRiding_g14_c04.jpg A rider wearing a helmet is on a brown horse with white leg markings, seen from the side in a trotting pose, against a blurred background of trees and a fenced area. +v_HorseRiding_g12_c02.jpg A person is riding a white horse with a smooth texture in a side view pose, set against a fenced area with a large, red-roofed building in the background. +v_HorseRiding_g04_c06.jpg A black horse with a white saddle pad is being ridden in a side profile view, set against a fenced, sandy arena with distant greenery and sparse trees. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Hula_Hoop_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Hula_Hoop_descriptions.txt new file mode 100644 index 0000000..0063376 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Hula_Hoop_descriptions.txt @@ -0,0 +1,10 @@ +v_HulaHoop_g12_c04.jpg A green and yellow striped Hula Hoop encircles a person at waist height, set against a plain black background, appearing in a mid-motion, horizontal alignment with a faint glossy texture. +v_HulaHoop_g19_c02.jpg The image shows a girl in a striped pink dress indoors, but the Hula Hoop itself is not visible. +v_HulaHoop_g10_c02.jpg The Hula Hoop is silver with a smooth texture, positioned horizontally on the floor in a room with a draped, ivory-colored curtain backdrop, and a person nearby in a rhythmic gymnastics pose. +v_HulaHoop_g04_c03.jpg A slightly blurred, multi-colored Hula Hoop is held at waist level by a person, surrounded by a classroom or library setting with bookshelves and multiple seated individuals in the background. +v_HulaHoop_g21_c01.jpg The hula hoop is dull gray, appearing slightly blurred due to motion, with a smooth texture, viewed in use around a child wearing a red shirt in a dimly lit environment featuring other children and red mats in the background. +v_HulaHoop_g03_c05.jpg A blurred, glowing yellow Hula Hoop is in motion around a person's waist amidst a lush green backyard setting. +v_HulaHoop_g23_c01.jpg A person is hula hooping with a striped, multicolored hoop in a grassy backyard, surrounded by tall green bushes and a house in the background. +v_HulaHoop_g25_c03.jpg The Hula Hoop in the image appears multicolored with a spiraled pattern, viewed in profile as it is in motion around a person, set against an indoor background featuring a stationary exercise bike and a closed door. +v_HulaHoop_g04_c04.jpg A person is using a dark-colored Hula Hoop, appearing matte in texture, viewed from the side in a brightly lit indoor classroom with bookshelves and students in the background. +v_HulaHoop_g06_c02.jpg The low-resolution image shows a performer standing on a circular stage, surrounded by blurred, glowing hula hoops with a purple hue and a dimly lit background, creating an atmosphere of a live performance. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Ice_Dancing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Ice_Dancing_descriptions.txt new file mode 100644 index 0000000..b078a8f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Ice_Dancing_descriptions.txt @@ -0,0 +1,10 @@ +v_IceDancing_g24_c05.jpg A pair of skaters in complementary costumes—one in a light, shimmering outfit with sleek lines and the other in dark trousers and a light shirt—gracefully glide across an indoor ice rink, surrounded by a blurred audience in the background. +v_IceDancing_g14_c05.jpg A figure skating duo is performing an ice dance routine on a rink with one partner in a black costume lifting the other, who is wearing red, against a backdrop featuring Olympic rings and a "Torino 2006" banner. +v_IceDancing_g10_c02.jpg Two figures in dynamic motion on ice, one wearing a dark attire and the other in a lighter top with dark pants, are captured from a side view performing a graceful spin, set against a blurred arena background featuring hints of purple and white. +v_IceDancing_g04_c03.jpg A pair of ice dancers glide on an indoor rink, with the skater in red attire appearing to be in mid-turn, against a vibrant blue and yellow background, featuring indistinct audience figures. +v_IceDancing_g16_c01.jpg The ice dancers are captured in motion with one holding the other overhead, wearing dark outfits with contrasting lighter flowing fabric, set against the backdrop of an indoor rink with a blurred audience. +v_IceDancing_g24_c04.jpg A pair of ice dancers perform on a brightly lit rink, with the male partner in a black and white attire lifting his arm as the female partner, in a light-colored dress, extends gracefully on the ice against a backdrop of a blurred crowd and blue barrier. +v_IceDancing_g23_c05.jpg A pair of ice dancers in black and white costumes perform on an ice rink, with the male skater supporting the female in an elegant pose against a blurred audience background. +v_IceDancing_g21_c01.jpg A pair of ice dancers in dark, elegant costumes are captured in motion on an ice rink with a blurred backdrop, featuring a male partner in mid-stride behind the female partner who is gliding in a bent-knee position, with advertisements visible on the arena's sides. +v_IceDancing_g18_c04.jpg A pair of ice dancers is captured mid-motion with one partner lifting the other, dressed in coordinated black outfits with bright patterns, set against a vibrant pink and black background on an ice rink. +v_IceDancing_g03_c02.jpg A pair of skaters is captured mid-movement on an ice rink; the male in a dark costume with a sweeping arm motion, and the female in a black outfit featuring an open-back design, set against a blurred audience and barrier backdrop. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Javelin_Throw_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Javelin_Throw_descriptions.txt new file mode 100644 index 0000000..32ff083 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Javelin_Throw_descriptions.txt @@ -0,0 +1,10 @@ +v_JavelinThrow_g07_c03.jpg A person in dark athletic clothing is seen mid-motion on an indoor track with a red, black, and yellow color scheme, holding a javelin, against a plain wall background. +v_JavelinThrow_g19_c04.jpg The javelin thrower, wearing a bright yellow top and black leggings, is captured mid-action with one arm extended and one leg lifted, set against a sports field with prominent sponsorship banners and a blurry audience in the background. +v_JavelinThrow_g02_c04.jpg A person in mid-action is throwing a javelin on a pinkish-red track with a blue sky background, while another person watches, and the scene includes nearby athletic facilities. +v_JavelinThrow_g16_c06.jpg A person in a striped orange and black top and dark pants is captured mid-throw with one leg forward on a track field, against the blurred green and white backdrop of a fence and grass, holding a javelin over their shoulder in an action pose. +v_JavelinThrow_g19_c03.jpg A javelin thrower in a black and white outfit is mid-motion, with one arm extended back holding the javelin against a track field backdrop, featuring advertising banners and a partially blurred sports field setting. +v_JavelinThrow_g15_c04.jpg A person in a mid-throw pose on a clay track is wearing a white top and red shorts, with trees and a fenced structure featuring visible vertical bars in the background. +v_JavelinThrow_g21_c02.jpg The image shows a person in blue shorts and a light-colored top moving forward in a javelin-throwing pose on a red track field, surrounded by a blurred background that includes a few figures and a cloudy sky. +v_JavelinThrow_g04_c04.jpg A person in a green shirt and blue pants is captured mid-action on a dark, open track at night, with a blurred silhouette against the backdrop of a lit building under a dark sky. +v_JavelinThrow_g25_c03.jpg A person in a green athletic outfit is captured in a lateral stance preparing to throw a javelin, with the blurred background suggesting a stadium setting and the javelin's light color contrasting with the athlete's attire. +v_JavelinThrow_g11_c02.jpg A male athlete in a white and blue jersey with black shorts and neon yellow shoes is captured from a rear viewpoint in mid-throw on a reddish-brown track, with yellow field line markings and part of an athletic field visible in the blurred background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Juggling_Balls_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Juggling_Balls_descriptions.txt new file mode 100644 index 0000000..625aebb --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Juggling_Balls_descriptions.txt @@ -0,0 +1,10 @@ +v_JugglingBalls_g19_c01.jpg A person is juggling white balls in a room with purple soundproofing panels and framed posters on the walls, and their sweatshirt has colorful graphics that stand out against the dim lighting. +v_JugglingBalls_g24_c01.jpg The juggling balls are plain white with a smooth texture, appearing in mid-air against a blurred indoor background with furniture and decor, showcasing a lively juggling pose as they arc above the person's hands. +v_JugglingBalls_g20_c04.jpg The juggling balls appear to be white, contrasting against a grey and purple-hued background, and are held mid-air by a person wearing dark clothing on what looks like a stage with tiered platforms. +v_JugglingBalls_g04_c03.jpg The juggling balls appear as small, rounded objects with a bright color, possibly red or pink, against a softly lit indoor background with a white-frame window and curtains, as seen from a front-facing viewpoint. +v_JugglingBalls_g22_c03.jpg The juggling balls appear to be white with a smooth texture, captured at eye level against a blurred outdoor background featuring greenery and wooden railing, with the figure seated and the balls suspended mid-air. +v_JugglingBalls_g14_c04.jpg Three green juggling balls are in mid-air at various heights against a plain white wall background, with a noticeable red couch partially visible below them. +v_JugglingBalls_g01_c01.jpg The juggling balls are seen from a frontal viewpoint, displaying a blurred circular motion above a person standing on short grass with a house and leafless trees in the background, giving a sense of outdoor activity in a residential area. +v_JugglingBalls_g07_c02.jpg The juggling balls appear to be small and partially visible as the person is juggling them in the air, set against a background with a blue sky and a distant structure resembling a pier. +v_JugglingBalls_g12_c01.jpg The juggling balls appear as small, round objects with a bright, multicolored surface, viewed from the front inside a dimly lit room with a chandelier and framed artwork in the background. +v_JugglingBalls_g07_c01.jpg The juggling balls appear metallic or shiny from a side view against an outdoor backdrop with a blurred, distant structure, possibly an ocean pier. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Jump_Rope_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Jump_Rope_descriptions.txt new file mode 100644 index 0000000..0bdb6c0 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Jump_Rope_descriptions.txt @@ -0,0 +1,10 @@ +v_JumpRope_g14_c03.jpg The image shows a person wearing a sleeveless dark top and light shorts actively using the jump rope in an indoor setting with plain white walls and a gray floor, displaying dynamic movement with the rope blurred in motion. +v_JumpRope_g25_c01.jpg A person is skipping with a jump rope in a sunlit room with wooden flooring, where the rope is barely visible against the light and the background window view of an urban skyline complements the indoor boxing equipment. +v_JumpRope_g04_c04.jpg The jump rope appears to have black handles with a thin, black cord, and is in motion as a person uses it in a gym environment with visible boxing equipment in the background, captured from a side angle. +v_JumpRope_g03_c03.jpg The jump rope features thin, dark handles with a barely visible rope, set against a bright, mirrored gym setting, with a person actively using it in the foreground. +v_JumpRope_g15_c02.jpg The jump rope appears to be thin and dark-colored, with the person using it seen in motion from a side view in a gym environment, featuring shelving and various exercise equipment in the background. +v_JumpRope_g22_c02.jpg The jump rope, held by a person in motion wearing red and black athletic wear, contrasts against the bright sky and cityscape background, showing blurred movement due to the dynamic pose and sunny outdoor setting. +v_JumpRope_g02_c07.jpg The jump rope appears to have black handles and a thin, dark rope, seen from the side in a basement setting with a concrete block wall and various stacked boxes in the background. +v_JumpRope_g04_c05.jpg A person jumping with a black jump rope in a gym with mirrored walls, wearing a white shirt and dark shorts, with a reflection visible, and brick accents on the walls. +v_JumpRope_g22_c04.jpg A person is using a red-handled jump rope with a long, thin, and slightly blurred rope, standing on a sunlit outdoor platform with a cityscape in the blurred background. +v_JumpRope_g03_c02.jpg The jump rope is thin and appears slightly translucent, viewed from a frontal perspective against a light-colored gym environment, with the handle barely discernible due to the low resolution. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Jumping_Jack_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Jumping_Jack_descriptions.txt new file mode 100644 index 0000000..bda5817 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Jumping_Jack_descriptions.txt @@ -0,0 +1,10 @@ +v_JumpingJack_g13_c06.jpg A person is performing a jumping jack with arms and legs extended wide, wearing a white shirt and red shorts, in a warmly lit room with wooden flooring and a faint view of furniture in the background. +v_JumpingJack_g06_c05.jpg A person in a black shirt and shorts is performing a jumping jack with arms and legs extended, set against a sunlit park environment featuring trees and a visible shadow on the ground, while another individual in red observes. +v_JumpingJack_g12_c04.jpg A person is performing a jumping jack in a room with a greenish-grayish tint, viewed from a slight angle with arms and legs spread wide, amidst dimly lit furniture including a table and a white refrigerator in the background. +v_JumpingJack_g01_c04.jpg A person mid-jump wearing a gray tank top and light shorts, against a beige wall background with a visible green exercise ball and wooden flooring. +v_JumpingJack_g05_c02.jpg A person in a gray shirt performs a jumping jack with arms extended upward in a gym environment, surrounded by several black punching bags, against a structured metal frame backdrop. +v_JumpingJack_g09_c04.jpg The image shows a person in mid-jump performing a jumping jack on a sidewalk, wearing a gray tracksuit with bright stripes, against a suburban street backdrop with trees and houses, under clear blue skies. +v_JumpingJack_g01_c03.jpg A person in mid-jump wearing a gray tank top and light shorts is performing a Jumping Jack in a beige room with wooden flooring, featuring an exercise ball and equipment bench in the background. +v_JumpingJack_g22_c02.jpg A person in mid-jump position performing a jumping jack is wearing a white shirt and black shorts against a plain indoor wall background, with the floor blending into light wood tones. +v_JumpingJack_g05_c03.jpg A person is mid-jump with arms raised and legs apart, wearing a light gray shirt and dark shorts, in front of hanging punching bags in a gym setting. +v_JumpingJack_g06_c07.jpg A person in mid-air performing a jumping jack in a grassy, tree-filled park, is wearing a dark outfit, with outspread arms and legs creating an "X" shape, while another individual in a red shirt observes. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Kayaking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Kayaking_descriptions.txt new file mode 100644 index 0000000..decdf83 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Kayaking_descriptions.txt @@ -0,0 +1,10 @@ +v_Kayaking_g21_c02.jpg A person in a yellow kayak navigates through choppy white water rapids, surrounded by a lush, forested landscape. +v_Kayaking_g17_c01.jpg A kayaker in a dark jacket paddles a reddish-orange kayak directly toward the viewer, set against a backdrop of a broad, rippling body of water under an overcast sky. +v_Kayaking_g14_c03.jpg A person in a red kayak is paddling through calm, grayish water, viewed from the front with a partially blurred paddle splash, against an unobtrusive water background. +v_Kayaking_g08_c01.jpg The image depicts a kayaker in a dynamic position navigating through rough, white water rapids surrounded by large brown rocks, with the kayak and paddler minimally visible due to the low resolution. +v_Kayaking_g03_c03.jpg A kayaker wearing a blue and black outfit is paddling through turbulent waters, viewed from behind as they move towards an old stone bridge in an overcast urban setting. +v_Kayaking_g25_c03.jpg A kayaker in a bright orange kayak is navigating through a narrow, rocky canyon with turbulent white water, seen from an elevated vantage point with rugged cliffs and dark rock formations surrounding the waterway. +v_Kayaking_g09_c06.jpg A person wearing a red helmet and jacket is kayaking in a red kayak through turbulent white water, with grassy riverbanks and trees in the blurred background under an overcast sky. +v_Kayaking_g10_c01.jpg A person in a bright yellow kayak navigates through a narrow, dark-walled channel with turbulent brown water, viewed from a frontal angle, against a backdrop featuring a bright blue structure. +v_Kayaking_g05_c03.jpg A blue kayak is navigating through turbulent white water in a rocky river environment, with the kayaker slightly visible in a challenging descent from a top-down vantage point. +v_Kayaking_g11_c05.jpg A person in a bright yellow kayak, wearing dark clothing and navigating choppy, frothy white water amidst a rocky riverbank landscape, is captured from a side angle. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Knitting_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Knitting_descriptions.txt new file mode 100644 index 0000000..8b3d1eb --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Knitting_descriptions.txt @@ -0,0 +1,10 @@ +v_Knitting_g10_c05.jpg Two hands are knitting with bright blue yarn, viewed from above, with distinctive loops and stitches, against a dark, out-of-focus background. +v_Knitting_g09_c02.jpg Soft cream-colored knitting is in progress with wooden and silver needles, viewed from an overhead angle, set against a solid red background. +v_Knitting_g20_c03.jpg The image shows a close-up view of a person's hands knitting with dark-colored yarn, possibly burgundy or deep brown, with metal knitting needles, against a blurred background featuring a patterned carpet and cushions. +v_Knitting_g16_c01.jpg The knitting is a light-colored yarn being worked with wooden needles, held in a seated person's hands wearing a blue top, set against a neutral indoor background, with an unfinished fabric piece visible. +v_Knitting_g07_c04.jpg A pair of hands is actively knitting with light-colored yarn, possibly pink and white, in front of a blurred background, featuring a ball of yarn in a similar color scheme on a flat surface. +v_Knitting_g12_c01.jpg Hands are shown holding knitting needles against a solid dark blue background, with skin tones creating contrast against the needles; the view captures the hands in action, emphasizing movement and dexterity. +v_Knitting_g09_c04.jpg A pair of hands is knitting cream-colored textured yarn in a cable pattern against a solid red background, with a focus on the wooden knitting needles held in an active knitting position. +v_Knitting_g08_c01.jpg The image shows hands holding silver knitting needles working on a piece of textured purple yarn, with a blurred indoor background and distinct nail colors—one hand with black polish, the other with red. +v_Knitting_g18_c04.jpg A person is knitting with vibrant turquoise yarn on wooden knitting needles against a blurred, light brown wood floor background, viewed from above with fingers visible holding the needles. +v_Knitting_g15_c07.jpg A partially knitted blue fabric is being worked on with knitting needles, shown from a slightly elevated angle against an indoor background with a couch and open doorway, and hands holding the fabric in focus. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Long_Jump_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Long_Jump_descriptions.txt new file mode 100644 index 0000000..9252623 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Long_Jump_descriptions.txt @@ -0,0 +1,10 @@ +v_LongJump_g17_c02.jpg A long jumper in a red and white outfit is captured mid-air with arms raised against a background of blue running track lines and sand pit, highlighting the dynamic motion and contrasting textures. +v_LongJump_g01_c01.jpg The image shows an athlete in a red top and black shorts with neon details mid-air during a long jump on a track surface, with blurred figures and green grass in the background indicating a dynamic and energetic environment. +v_LongJump_g04_c02.jpg A person with a focused pose is mid-air above blue and green track lanes, against a blurred grassy field background, wearing a green and white athletic outfit with distinct black athletic shoes. +v_LongJump_g19_c03.jpg A person wearing a green and black outfit is captured mid-stride in a running pose on a red track field with lane markings, with another individual seated in the blurred background. +v_LongJump_g04_c05.jpg The image shows an athlete in mid-air with a red and white outfit, captured from a side angle against a blurred background of a blue track and green field, surrounded by several seated and standing spectators. +v_LongJump_g20_c04.jpg A person in a bright green tank top and black shorts is captured mid-stride on a red track surrounded by green grass, positioned near a multi-colored pillar with a blurred background indicating motion. +v_LongJump_g13_c03.jpg The image depicts an athlete in action during a long jump, wearing a black and white outfit with a bright red number bib, captured from a side angle with a green field and white metallic goalposts in the blurred background, surrounded by casually dressed individuals observing on a wet, dark track. +v_LongJump_g03_c05.jpg A person in mid-air during a long jump, wearing a yellow shirt and black shorts, is captured from the side on a sandy track with a green mat, alongside a crowd gathered behind a pink railing under a shaded metal structure. +v_LongJump_g19_c01.jpg The image shows an athlete in mid-air wearing a red top and blue shorts, captured from a side angle against a stadium track background with white lane markings, conveying dynamic motion. +v_LongJump_g02_c04.jpg The image shows an athlete in mid-air during a long jump, wearing black sports attire, with a reddish-brown running track evident, surrounded by a green grass field and a tennis court in the background, with a group of spectators or other participants observing from the side. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Lunges_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Lunges_descriptions.txt new file mode 100644 index 0000000..d6a5b12 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Lunges_descriptions.txt @@ -0,0 +1,10 @@ +v_Lunges_g19_c06.jpg A person is performing a lunge with dumbbells in hand, wearing a black outfit in a gym environment with weight racks and other fitness equipment in the background. +v_Lunges_g15_c02.jpg The person is performing lunges in a gym environment, wearing a dark tracksuit with white sneakers, captured from a frontal viewpoint, with the gym equipment and mirrored wall in the background, and a green gym floor visible. +v_Lunges_g09_c02.jpg A person in a black shirt and gray shorts performs weighted lunges on green turf, viewed from behind, with a distinct red weight barbell across their shoulders and gym equipment blurred in the background. +v_Lunges_g14_c03.jpg A person in a gym environment, wearing dark clothing, performs a forward lunge while balancing a barbell across their shoulders, surrounded by assorted weightlifting equipment on a textured rubber flooring. +v_Lunges_g12_c02.jpg A person is performing lunges on a green sports field, wearing a gray shirt and dark shorts, carrying weights on their shoulders, with a blurred background showing a running track and trees. +v_Lunges_g05_c03.jpg A person in athletic wear is performing a lunge on a tennis court, characterized by a forward-facing posture with one leg extended forward and the person dressed in black shorts and a vest, against a backdrop of chain-link fencing with blurred greenery. +v_Lunges_g18_c03.jpg A person with a white shirt and dark shorts performs a forward lunge facing sideways, with arms raised overhead in a gym environment with a wooden floor and an orange wall backdrop. +v_Lunges_g06_c02.jpg The image shows a person in a lunge pose with a forward stride, wearing black and white trainers and blue shorts on a red tiled surface, set against a backdrop of brick and greenery. +v_Lunges_g20_c02.jpg A person in a grey shirt and black shorts performs a lunge in a gym setting with a barbell resting on their upper back, standing on a wooden floor strip against a backdrop of light-colored walls and gym equipment. +v_Lunges_g02_c01.jpg A person in a gym setting is performing a lunge while holding a barbell on their shoulders, wearing a dark outfit with blue shoes, captured in a side view with exercise equipment visible in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Military_Parade_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Military_Parade_descriptions.txt new file mode 100644 index 0000000..94c28bf --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Military_Parade_descriptions.txt @@ -0,0 +1,10 @@ +v_MilitaryParade_g12_c04.jpg Rows of military personnel dressed in dark uniforms march in formation on a wide parade ground, with red banners and a distinctive large building featuring a tower in the background, under a clear sky adorned with clusters of red balloons. +v_MilitaryParade_g09_c06.jpg A military parade is pictured with soldiers in dark green camouflage uniforms and black berets standing in neat, linear formations on a bright green sports field with bleachers in the background, captured from an elevated angle. +v_MilitaryParade_g13_c03.jpg A group of soldiers in green camouflage uniforms and helmets march in unison, holding rifles, with a blurred background of more soldiers and their distinctive white gloves contrasting against the military attire. +v_MilitaryParade_g06_c01.jpg Dark-uniformed soldiers with gold and red accents march in synchronization on a gray street with a backdrop of vibrant red flags and an architectural urban setting, viewed from a frontal angle. +v_MilitaryParade_g16_c04.jpg In the military parade image, soldiers are marching in formation with black uniforms accented with red and gold elements, carrying vivid red flags against a background of a paved surface and blurred greenery, with all figures facing forward in synchronized motion. +v_MilitaryParade_g01_c07.jpg The military parade features uniformed personnel marching in formation on a paved surface, with visible distinctions in uniform color including dark blue, olive, and khaki, set against a grassy background with sparse trees and poles, highlighting the structured alignment and coordinated marching stance. +v_MilitaryParade_g08_c05.jpg Uniformed military personnel dressed in dark green attire with red and gold emblems are marching in unison with rigid posture, set against a bright backdrop featuring blurred figures and red flags. +v_MilitaryParade_g17_c04.jpg The military parade features a front-facing row of uniformed individuals in white attire with dark pants, set against a backdrop of colorful, vertically aligned flags and red-and-white decorative banners, all viewed from a ground-level perspective. +v_MilitaryParade_g03_c03.jpg A line of soldiers is visible in profile, wearing camouflage uniforms and helmets, holding rifles with white gloves, marching in a synchronized manner against a blurred, neutral-colored background in a low-resolution image. +v_MilitaryParade_g02_c01.jpg Rows of uniformed soldiers dressed in dark military attire with gold accents and white gloves march in synchrony on a wide, open parade ground, against a blurred green and grayish urban background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Mixing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Mixing_descriptions.txt new file mode 100644 index 0000000..743babf --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Mixing_descriptions.txt @@ -0,0 +1,10 @@ +v_Mixing_g13_c05.jpg A person is stirring with a red spatula in a metallic bowl in a kitchen with wooden cabinets and a speckled granite countertop, with a green bowl and a container of ingredients nearby. +v_Mixing_g05_c03.jpg A hand swiftly stirs a mixture with a creamy, beige texture inside a purple bowl, with a blurred kitchen background indicating motion and domestic setting. +v_Mixing_g12_c07.jpg A glass bowl containing a light-colored, creamy mixture with a smooth texture is being whisked by a hand from a side viewpoint, set against a plain white countertop with another smaller bowl visible on the side. +v_Mixing_g05_c07.jpg A person is mixing a creamy, off-white batter in a purple bowl using a whisk, with hands and whisk visible from a top-side angle, set against a dimly lit kitchen environment with indistinct background objects. +v_Mixing_g01_c03.jpg A silver metal mixing bowl containing light-colored batter is viewed from a slightly elevated angle, with a visible hand holding a mixer under warm indoor lighting, set against a blurred kitchen backdrop. +v_Mixing_g20_c02.jpg A black-and-white image shows a hand holding a white electric hand mixer pouring liquid into a reflective metal mixing bowl on a wooden countertop, with a slightly diagonal orientation against a kitchen background. +v_Mixing_g12_c06.jpg A glass bowl on a white surface contains a light yellow mixture being whisked, viewed from a slightly elevated angle, with additional empty bowls in the background on the right. +v_Mixing_g14_c05.jpg A hand is holding a metal whisk, mixing a pale, coarse-textured substance in a white bowl, with another similar bowl visible in the blurred background on a wooden surface. +v_Mixing_g03_c04.jpg A person is stirring a light pink, semi-liquid mixture with visible specks in a white bowl, set against a kitchen-like environment with a red and black mottled background. +v_Mixing_g08_c01.jpg A person is seen mixing a light-colored liquid in a bright green bowl with a metal whisk, viewed from above on a kitchen countertop with jars and containers in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Mopping_Floor_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Mopping_Floor_descriptions.txt new file mode 100644 index 0000000..31accb0 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Mopping_Floor_descriptions.txt @@ -0,0 +1,10 @@ +v_MoppingFloor_g25_c02.jpg The mopping floor is a light beige with a shiny, smooth texture, viewed from a slight angle, set against a background of dark wood paneling and several people, with a noticeable blue stripe running across. +v_MoppingFloor_g03_c01.jpg A child in red shorts and a striped sweater is mopping a beige, glossy floor using a blue mop with a long handle, in a minimally furnished room with light-colored walls and a dark piece of furniture in the background. +v_MoppingFloor_g19_c03.jpg The image shows a person mopping a shiny brown floor from a side angle, with blurred reflections of light suggesting a smooth texture, in what appears to be an indoor space with a partially visible yellow wall. +v_MoppingFloor_g23_c03.jpg A person in a white-tiled bathroom is mopping a light gray tiled floor, viewed from a high angle, with a gray mop bucket and red cleaning supplies prominently in the foreground. +v_MoppingFloor_g08_c01.jpg A person in a home setting is mopping a marbled floor, with a side view showing them wearing a light top and patterned shorts, surrounded by orange and white patterned furniture. +v_MoppingFloor_g04_c02.jpg A child in striped clothing is holding a mop at a low angle on a beige tiled floor in a dimly lit living room with a couch, blinds, and scattered objects in the background. +v_MoppingFloor_g06_c01.jpg The mopping floor is a pale beige tile with a matte texture, viewed from a slightly elevated angle, with a child holding a mop against the backdrop of a tiled room that includes a small red toy vehicle. +v_MoppingFloor_g15_c03.jpg The mopping floor is a smooth, beige surface viewed from a side angle, situated in a household setting with a green bucket and mop present, and a small dog standing in the foreground. +v_MoppingFloor_g02_c05.jpg The image shows a man in a yellow and white room with beige walls and a gray carpeted floor, mopping a rectangular white section with a logo, observed from a slightly elevated angle. +v_MoppingFloor_g17_c01.jpg The image shows an indoor kitchen scene from a slightly elevated perspective, where a person in a light-colored shirt is positioned against wooden cabinets and a white countertop, with dim lighting creating a cozy ambiance and a subtle reflection on the tiled floor. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Nunchucks_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Nunchucks_descriptions.txt new file mode 100644 index 0000000..faf344e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Nunchucks_descriptions.txt @@ -0,0 +1,10 @@ +v_Nunchucks_g02_c05.jpg The image features a person standing in a shadowed area under a large bridge, holding a pair of nunchucks that are difficult to see clearly due to the low resolution and backlighting, with sunlit grass and a series of stone arches in the background. +v_Nunchucks_g10_c01.jpg The nunchucks are held by an individual in a public park setting with a large stone statue in the background, exhibiting a dark-colored handle with a slightly glossy texture and connected by a central chain, with the individual standing on a blue mat. +v_Nunchucks_g08_c07.jpg A person wearing headphones holds a pair of wooden nunchucks with a light brown finish and a metallic chain, standing in a dimly lit room with a table in the background. +v_Nunchucks_g02_c01.jpg The nunchucks are black and appear to have a smooth texture, held in a downward position by a person standing on dark ground with a bridge and sunlit grass in the background. +v_Nunchucks_g03_c03.jpg A person is standing on a grassy lawn, blurred in motion, with indistinct nunchucks in hand against a backdrop of dense, leafy trees. +v_Nunchucks_g04_c02.jpg A person is holding what appears to be nunchucks in both hands, wearing a blue shirt and black pants, against a plain light-colored background, with the nunchucks looking dark and indistinct due to the low resolution. +v_Nunchucks_g17_c02.jpg The nunchucks are a dark color, possibly black or brown, with a glossy or smooth texture, held vertically with one hand in an indoor martial arts training room adorned with Japanese decor, such as a red and white flag and various martial arts weapons on the walls. +v_Nunchucks_g12_c01.jpg A person wearing a dark martial arts uniform is holding a pair of nunchucks, which have a metallic chain and dark handles, captured mid-motion against a plain dark background. +v_Nunchucks_g08_c03.jpg The nunchucks appear to be dark-colored with a smooth texture, positioned diagonally in mid-motion, set against an indoor environment with light walls and a visible water cooler in the background. +v_Nunchucks_g21_c04.jpg The image shows a person holding nunchucks with dark handles and a silver chain, captured in an indoor setting with a drum set in the dimly lit background, viewed from an angle showing a mid-motion stance. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Parallel_Bars_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Parallel_Bars_descriptions.txt new file mode 100644 index 0000000..175a7bb --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Parallel_Bars_descriptions.txt @@ -0,0 +1,10 @@ +v_ParallelBars_g14_c02.jpg The parallel bars are metallic and slightly reflective, viewed from an angle in a gymnastics gym with padded blue floor mats, surrounded by athletes and equipment, showing structural support posts with a high ceiling in the background. +v_ParallelBars_g04_c07.jpg The parallel bars appear metallic with a smooth texture, viewed from the side in a gymnasium setting, featuring judges sitting at a blue-draped table to the left and a gymnast mid-routine above a protective padded area. +v_ParallelBars_g08_c03.jpg The parallel bars in the image are primarily metallic with a smooth texture, viewed from a side angle within an indoor gymnasium setting, featuring red support structures and a blurred background of spectators and gym equipment. +v_ParallelBars_g05_c04.jpg The parallel bars appear metallic and silver, positioned in an indoor gym with high ceilings and white walls, showing an athlete executing a seated balance maneuver under overhead lighting. +v_ParallelBars_g09_c03.jpg The parallel bars appear silver with a smooth finish, positioned horizontally at eye level, in a gymnasium filled with blurred spectators and lighting above, highlighting an athlete mid-air performing a routine. +v_ParallelBars_g24_c02.jpg The parallel bars are metallic and positioned horizontally, set in a large indoor gymnasium with high ceilings, soft lighting, and an audience in the background, capturing a dynamic pose of a gymnast in mid-spin. +v_ParallelBars_g13_c04.jpg The parallel bars are metallic and shiny, with a gymnast in mid-air above them, surrounded by judges and spectators in a gymnasium setting with a large scoreboard visible in the background. +v_ParallelBars_g09_c02.jpg The image shows silver metal parallel bars with a smooth texture, viewed from a side angle in an indoor gymnasium filled with spectators and tiered seating in the background, with a male gymnast performing a wide-arm handstand. +v_ParallelBars_g03_c02.jpg The parallel bars, appearing metallic and smooth with a slight reflective sheen, are set against a dimly lit indoor arena with indistinct banners on the walls and feature a gymnast in mid-air, demonstrating a tuck position above them. +v_ParallelBars_g20_c04.jpg The parallel bars have metallic silver beams supported by dark-colored posts, situated in an indoor gymnasium with a high ceiling, visible steel beams, and a soft mat beneath, amidst blurred figures and equipment in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Pizza_Tossing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Pizza_Tossing_descriptions.txt new file mode 100644 index 0000000..0eecd50 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Pizza_Tossing_descriptions.txt @@ -0,0 +1,10 @@ +v_PizzaTossing_g11_c03.jpg A person in a white shirt is viewed from the side tossing a light-colored, smooth-textured pizza dough in a kitchen setting with a red wall and a gray countertop as the backdrop. +v_PizzaTossing_g14_c04.jpg A person in a black shirt is tossing a pale, smooth pizza dough in a restaurant with red booths, framed pictures on the walls, and a television displaying sports in the background. +v_PizzaTossing_g02_c02.jpg A person wearing white clothing is skillfully tossing a dough, which appears slightly blurred in motion, within a warm-toned kitchen setting with wooden beams and reflective surfaces. +v_PizzaTossing_g25_c03.jpg A person wearing a visor and apron is tossing a light beige pizza dough in a brightly lit pizzeria with red partitions and a visible counter area. +v_PizzaTossing_g21_c04.jpg A person in an orange shirt is dynamically posed mid-action on a sparse stage with dark curtains, possibly engaged in a performance or demonstration, as indicated by a banner draped in the background. +v_PizzaTossing_g19_c01.jpg A person in a white shirt and dark pants is tossing a large, white, disc-like object in a dimly lit room with sports banners in the background, capturing the motion and pose from a side angle against a textured and somewhat cluttered setting. +v_PizzaTossing_g22_c04.jpg A person in a black outfit is tossing a pale, slightly blurry dough in a rustic kitchen setting with yellow walls and wooden shelves. +v_PizzaTossing_g24_c01.jpg A person in a black shirt is tossing a flat, beige round dough into the air against a backdrop of stacked containers and kitchen equipment, with the figure partially blurred and the setting dimly lit. +v_PizzaTossing_g25_c01.jpg A person is seen in profile view wearing a dark shirt and cap while tossing a pale, soft-textured pizza dough in a restaurant kitchen with red and white walls and bright natural light from large windows. +v_PizzaTossing_g03_c03.jpg A person in a red shirt stands in front of a white wall with a diagonal red stripe, tossing a pale, smooth-textured pizza dough into the air, with the dough appearing as a blurred disk due to motion. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Playing_Cello_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Playing_Cello_descriptions.txt new file mode 100644 index 0000000..0c0ce3e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Playing_Cello_descriptions.txt @@ -0,0 +1,10 @@ +v_PlayingCello_g12_c01.jpg The cello in the image appears to have a rich, woody brown color with a glossy texture, positioned in an upright playing pose against a background of brick walls and black pianos, with a distinctive curved body and visible f-holes despite the low resolution. +v_PlayingCello_g22_c07.jpg A person sits playing a cello with a warm brown, glossy finish, viewed from the front, in a dimly lit room featuring a window and wall decor of birds. +v_PlayingCello_g13_c01.jpg The cello is a warm, rich brown with a glossy texture, viewed frontally as it rests against a person in a white outfit, positioned against a plain beige wall and accompanied by a dark grand piano in the background. +v_PlayingCello_g14_c02.jpg The cello has a warm, honey-brown hue with a smooth, polished texture, viewed from a slightly angled front perspective against a stark concrete background with the musician in a dark outfit playing it. +v_PlayingCello_g01_c07.jpg The cello has a warm, brown polished surface with a subtle grain texture, viewed from a side angle as it rests between the musician's knees, set against a cozy room filled with bookshelves and a piano in the background. +v_PlayingCello_g13_c04.jpg A musician in a white shirt plays a reddish-brown cello with a glossy finish, seated in front of a grand piano against a plain beige wall, with the cello angled slightly to the left. +v_PlayingCello_g23_c05.jpg The cello, with a rich brown hue and glossy finish, is being played by a person seated, silhouetted against a bright window view, surrounded by indoor plants and bookshelves. +v_PlayingCello_g24_c05.jpg The cello has a warm, wooden finish and smooth texture, viewed from a slightly off-center angle, set against a cozy indoor environment with a brown couch and a music stand in the background. +v_PlayingCello_g07_c01.jpg The cello appears in a light reddish-brown wood finish with a smooth, glossy texture, viewed from the front, with a male player in a plaid shirt seated against a plain blue-grey wall background. +v_PlayingCello_g17_c03.jpg The cello, with a warm amber hue and smooth, glossy finish, is played by a seated individual in a white shirt and black tie, positioned in an interior setting with double glass doors and furniture visible in the softly lit background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Playing_Daf_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Playing_Daf_descriptions.txt new file mode 100644 index 0000000..d84507f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Playing_Daf_descriptions.txt @@ -0,0 +1,10 @@ +v_PlayingDaf_g14_c07.jpg A person is seated on a couch with black ridged back panels, holding a circular daf with a light-colored rim and a textured, possibly translucent surface, viewed from the front. +v_PlayingDaf_g05_c03.jpg A person is seated, holding a circular daf with a light beige, slightly translucent surface and a dark rim, in a room with a drum set behind and a chalkboard on the wall. +v_PlayingDaf_g10_c04.jpg A person in white clothing is sitting on an orange patterned couch, holding and playing a large, round, beige daf with a worn texture in a home-like environment. +v_PlayingDaf_g19_c04.jpg The playing daf appears as a circular frame drum with a light brown wooden rim and a smooth, muted greyish surface, shown from a slightly angled frontal view with a hand gripping the edge against a neutral background. +v_PlayingDaf_g09_c02.jpg A man seated on a stool holds a large white daf with a dark rim against a mottled gray backdrop, creating a contrast with his black attire and the textured surface of the instrument. +v_PlayingDaf_g24_c03.jpg The Playing Daf appears as a circular percussion instrument with a light, beige surface, held upright by a person in front of a whiteboard in a classroom setting, flanked by two stringed instruments, and features a slightly textured membrane. +v_PlayingDaf_g02_c07.jpg A person is seated, holding a large, round, beige drum-like instrument vertically with a taut, smooth surface, against a plain wall background, while wearing an untucked light blue shirt and dark pants. +v_PlayingDaf_g15_c05.jpg The playing daf in the image is circular, primarily light in color with a smooth texture, viewed from a slightly angled side, held by a person in a casual indoor setting, with distinct outlines against a cluttered background featuring various household items. +v_PlayingDaf_g08_c05.jpg The playing daf in the image appears to be light-colored with a smooth texture, seen from a frontal pose, situated in a cozy living room with a tan couch, cushions, and classical wall art, adding to the relaxed setting. +v_PlayingDaf_g02_c01.jpg The image shows a person in a seated position holding a large, round daf drum with a light, smooth playing surface and a darker, textured rim, set against a plain, neutral-colored background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Playing_Dhol_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Playing_Dhol_descriptions.txt new file mode 100644 index 0000000..1e1d69c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Playing_Dhol_descriptions.txt @@ -0,0 +1,10 @@ +v_PlayingDhol_g06_c06.jpg A person is playing a large, brown dhol with white strings, viewed frontally, in an indoor setting with white walls and a door in the background, while wearing a striped shirt and using a shoulder strap. +v_PlayingDhol_g21_c04.jpg The playing dhol is a cylindrical drum featuring a rich, dark brown wooden texture with metallic rims, viewed at an angle that highlights its diagonal positioning across the player's body in a bedroom setting, distinguished by a strap over the shoulder and visible tuning ropes around its shell. +v_PlayingDhol_g22_c04.jpg The dhol is being played by a standing individual in a dimly lit outdoor parking area, featuring a brown, glossy wooden surface with white rope lacing, black tassels, and metal rings, all against a backdrop of a closed roller door and shadowy surroundings. +v_PlayingDhol_g17_c01.jpg The playing dhol has a dark brown body with prominent light-colored rims and a visible sling over the shoulder of the player, positioned in a lively indoor room with colorful walls and distinct abstract patterns. +v_PlayingDhol_g06_c07.jpg The playing dhol in the image is a cylindrical drum with a rich brown color and prominent white lacing, viewed from an angle that highlights its side, with a blurred indoor background featuring a white door and other household items. +v_PlayingDhol_g24_c02.jpg A young child is playing a medium brown dhol with prominent white lacing, standing sideways in a kitchen-like setting with visible cabinets and a tiled floor; the scene is slightly cluttered, adding a domestic ambience. +v_PlayingDhol_g15_c03.jpg The playing dhol is black with white ropes crisscrossing its cylindrical body, seen from a slightly elevated angle, with a background of wood and a carpeted floor, alongside vibrant pink and red straps. +v_PlayingDhol_g18_c02.jpg A reddish-brown dhol with visible white crisscrossed ropes and a green label is held diagonally at its side by a person standing in a cluttered indoor room with patterned carpet and various items in the background. +v_PlayingDhol_g05_c05.jpg The dhol is light brown with a smooth surface and crisscross rope binding, seen at an angle hanging from the shoulder of a person amidst an outdoor street setting with a blue car and brick houses in the background. +v_PlayingDhol_g01_c02.jpg A boy stands facing forward, playing a brown and silver dhol with visible straps, in an indoor setting with a patterned rug and electronic equipment in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Playing_Flute_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Playing_Flute_descriptions.txt new file mode 100644 index 0000000..9248a66 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Playing_Flute_descriptions.txt @@ -0,0 +1,10 @@ +v_PlayingFlute_g08_c07.jpg A person in white traditional attire stands center stage, playing a long, light-colored flute, with music stands and Asian calligraphy scrolls as a backdrop, captured from a frontal view in a dimly lit performance setting. +v_PlayingFlute_g16_c02.jpg A silver metallic flute, reflecting light with a smooth texture, is held horizontally by a person in a seated position indoors, surrounded by books and shelves in a home environment. +v_PlayingFlute_g02_c04.jpg A person in a floral-patterned kimono is playing a silver flute while standing before a dark backdrop with a microphone positioned nearby. +v_PlayingFlute_g16_c01.jpg The playing flute appears silver and metallic with a polished texture, held horizontally in a side view by a person amidst a cozy room environment featuring bookshelves and a wooden door. +v_PlayingFlute_g17_c05.jpg The flute is a light brown wooden instrument held vertically by a person in a pink shirt, set against a dark background with a microphone positioned nearby. +v_PlayingFlute_g17_c04.jpg The playing flute is a light-colored woodwind instrument, held horizontally by an individual standing on a stage with a dark curtain backdrop, illuminated by soft lighting that enhances its smooth surface and streamlined shape. +v_PlayingFlute_g08_c04.jpg The image depicts a person playing a brown, possibly bamboo flute with decorative patterns, held horizontally from a side viewpoint, against a blurred, warm-colored indoor background. +v_PlayingFlute_g25_c02.jpg A man in a black shirt is playing a silver flute with a matte finish, positioned horizontally to his right, against a plain black background. +v_PlayingFlute_g14_c02.jpg The silver flute has a shiny, metallic texture, held horizontally by a person in front of a microphone and a piano, with the wood-paneled room creating a warm background. +v_PlayingFlute_g02_c03.jpg The playing flute is metallic and shiny, seen in a frontal pose against a dark, neutral background, held by a person in traditional attire. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Playing_Guitar_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Playing_Guitar_descriptions.txt new file mode 100644 index 0000000..b8b31aa --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Playing_Guitar_descriptions.txt @@ -0,0 +1,10 @@ +v_PlayingGuitar_g21_c06.jpg A person plays an acoustic guitar, viewed slightly from the front, with the guitar's light brown body having a glossy texture, and a blurred background showing a hanging electric bass guitar and various room items. +v_PlayingGuitar_g11_c04.jpg The playing guitar has a warm, brown wooden finish with a glossy texture, shown from a slightly frontal angle against a rich, dark red curtain backdrop, with distinctive dark tuning pegs and a contrasting lighter-colored fretboard. +v_PlayingGuitar_g14_c02.jpg The guitar is a light-colored, possibly spruce-topped acoustic with a dark pickguard, seen from a side angle in a small room with a plain wall and a bed in the background, capturing a person seated and playing it. +v_PlayingGuitar_g01_c04.jpg The guitar has a natural wooden finish with a glossy texture, viewed from the front, against a plain white curtain background, and features a black fretboard and bridge. +v_PlayingGuitar_g24_c03.jpg A young person is seated in an indoor setting, playing an acoustic guitar with a warm brown wood finish featuring a distinctively shaped soundhole, while wearing a light gray T-shirt against a neutral-toned background. +v_PlayingGuitar_g20_c01.jpg The guitar is a light wood color with a dark circular sound hole, viewed from an angled perspective with a cluttered room and hanging clothes in the background. +v_PlayingGuitar_g06_c06.jpg The guitar in the image is a light brown acoustic guitar with visible wood grain texture, seen from a seated frontal viewpoint, with a bedroom environment in the background including a dresser and a mirror. +v_PlayingGuitar_g16_c03.jpg A man wearing a gray flat cap is seated and playing an acoustic guitar with a rich, brown wooden body and intricate black detailing, set against a dark, textured background. +v_PlayingGuitar_g20_c02.jpg The acoustic guitar features a light wooden body with a darker neck, held in a seated posture by an individual in a bedroom setting with visible shelving and clothing, with distinctively round tuning pegs and a simple rosette design around the soundhole. +v_PlayingGuitar_g25_c06.jpg A person is seated in a cozy indoor setting on a sofa, playing a light-colored acoustic guitar with distinct wooden texture, viewed slightly from the side, against a softly lit room with a lampshade and cushions visible in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Playing_Piano_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Playing_Piano_descriptions.txt new file mode 100644 index 0000000..f82c99b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Playing_Piano_descriptions.txt @@ -0,0 +1,10 @@ +v_PlayingPiano_g03_c04.jpg The grand piano is black with a glossy finish, viewed from a side angle on a wooden stage, with a musician seated at it, and the background is a sparse, light brown wall. +v_PlayingPiano_g02_c03.jpg The image shows a grand piano with a glossy black finish, viewed from the side, with the open lid revealing strings and hammers, set against a dimly lit concert hall where a musician in a formal black suit is playing. +v_PlayingPiano_g23_c03.jpg A grand piano with a glossy black finish is positioned on a warmly lit wooden stage, with a person seated at it, captured in profile view, while the dimly lit, expansive background adds a sense of depth and focus. +v_PlayingPiano_g07_c04.jpg The grand piano is glossy black with visible strings and hammers under an open lid, viewed from a side angle, set against a stage background with wooden flooring, and shows a person seated at the keys playing. +v_PlayingPiano_g04_c02.jpg The playing piano is a glossy black grand piano with an open lid revealing its strings, seen from a side angle in a dimly lit environment, casting dramatic shadows on a wooden floor. +v_PlayingPiano_g01_c01.jpg A man in a suit plays a black grand piano with a glossy finish, seen from a side angle, in an indoor setting with beige walls and visible piano strings. +v_PlayingPiano_g20_c01.jpg The piano features a glossy black finish with visible strings and hammers inside an open top, viewed from an overhead angle in a warm-toned setting with a musician obscured by motion blur. +v_PlayingPiano_g05_c03.jpg The image shows a sleek black grand piano with a glossy finish, viewed from the side with the lid open revealing gold interior strings, set against a dimly lit concert hall background. +v_PlayingPiano_g23_c04.jpg A man in a dark suit is playing a shiny black grand piano, viewed from the side against a dimly lit concert hall background with shadowy figures. +v_PlayingPiano_g21_c03.jpg A man with a beard wearing a dark suit plays a glossy black grand piano in a warmly lit, wood-paneled room, viewed from the side. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Playing_Sitar_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Playing_Sitar_descriptions.txt new file mode 100644 index 0000000..8622ab1 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Playing_Sitar_descriptions.txt @@ -0,0 +1,10 @@ +v_PlayingSitar_g02_c01.jpg A person sits cross-legged on a patterned bedspread playing a dark brown sitar with a light-colored resonator, set against a plain wall with a vertical scroll featuring bold black text. +v_PlayingSitar_g01_c03.jpg A person sits cross-legged on the street playing a sitar with a dark wooden body and long neck, against a dimly lit concrete wall, featuring prominent pegs and resting on an orange cloth. +v_PlayingSitar_g24_c03.jpg A person is seated on a blue sofa indoors, playing a dark brown sitar with white decorative elements and visible tuning pegs, against a backdrop adorned with framed artwork. +v_PlayingSitar_g02_c06.jpg A person is sitting cross-legged on a patterned bedspread, playing a dark-colored sitar in a softly lit room with a vertical scroll of calligraphy on the cream-colored wall behind them, while the sitar's long neck extends prominently upward. +v_PlayingSitar_g14_c01.jpg A person is seated and playing a sitar with a polished wooden finish and intricate detailing on the resonator, wearing a bright yellow traditional outfit, against a deep red backdrop with a banner displaying dates. +v_PlayingSitar_g10_c04.jpg The sitar, held at an angle by a seated individual in a room with a carpeted floor and background shelves of tabla instruments, has a glossy brown wooden finish with decorative inlays and metal strings visible. +v_PlayingSitar_g14_c07.jpg The person is playing a brown sitar with decorative inlays, sitting cross-legged on a stage with a red curtain backdrop, dressed in a bright yellow garment, while the environment includes event signage above. +v_PlayingSitar_g02_c04.jpg A person is seated cross-legged on a patterned bedspread, playing a sitar with a dark wood body featuring visible string pegs, in a softly-lit room with a light-colored wall and a vertical scroll as a backdrop. +v_PlayingSitar_g15_c03.jpg The sitar in the image appears to have a dark, polished wooden body with intricate white inlays, seen from a seated frontal pose within a room that features several tabla drums in the background, providing a musical setting. +v_PlayingSitar_g10_c05.jpg A person is seated on a carpet playing a brown sitar with a large, rounded body and long neck, positioned horizontally across their lap, against a backdrop of stacked tablas on a shelf in an indoor environment. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Playing_Tabla_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Playing_Tabla_descriptions.txt new file mode 100644 index 0000000..e0b4934 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Playing_Tabla_descriptions.txt @@ -0,0 +1,10 @@ +v_PlayingTabla_g16_c05.jpg A person is seated on a patterned carpet floor playing two brown tablas with intricately designed circular tops, surrounded by a colorful tapestry and yellow banner backdrop with a microphone positioned in front. +v_PlayingTabla_g04_c03.jpg The image shows a person playing a pair of tablas with reddish-brown drumheads and black concentric circles at the center, viewed from the front against a plain dark green background, while the musician wears a light-colored garment. +v_PlayingTabla_g04_c01.jpg A person wearing a light-colored traditional outfit is seated and playing two tablas with polished wooden bodies and dark drumheads against a plain, dark background. +v_PlayingTabla_g16_c01.jpg The image shows a pair of tablas with beige drum heads and intricate dark brown vertical strap patterns, positioned on purple cushions, amidst a background of blurred cloth textures and a red element, with a visible microphone stand in front. +v_PlayingTabla_g14_c01.jpg The tabla, positioned in the center, features a light brown tonal body with distinct black circles on the drum heads, against a minimalistic background with a white wall and colorful patterned rug beneath. +v_PlayingTabla_g15_c03.jpg A musician plays a pair of tablas with shiny metallic edges and brown drum skins, seated in a decorated indoor setting with white columns and microphones, viewed from the front-left side. +v_PlayingTabla_g07_c01.jpg A musician, seated and wearing a yellow kurta, plays a pair of tablas featuring white drum skins and intricate black center markings, set against a black curtain background and surrounded by musical equipment. +v_PlayingTabla_g08_c02.jpg The image shows a person playing a pair of tablas with distinct dark tonal stripes across the drum heads, set against a simple indoor background with a microphone positioned close to the instruments, creating a traditional and focused performance atmosphere. +v_PlayingTabla_g23_c02.jpg The image shows a musician playing a pair of tablas with light brown wooden shells and black circle patches on their membranes, viewed from the front in a room with a brown wooden wall and patterned carpet, with an award trophy in the background. +v_PlayingTabla_g22_c04.jpg The image shows a man sitting and playing a pair of tablas, which are white with dark circular centers, viewed from a slightly elevated angle against a plain, dark background, with distinctive metal microphone stands on either side. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Playing_Violin_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Playing_Violin_descriptions.txt new file mode 100644 index 0000000..c2524c1 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Playing_Violin_descriptions.txt @@ -0,0 +1,10 @@ +v_PlayingViolin_g07_c01.jpg A person wearing headphones is playing a brown violin with a smooth, polished surface, viewed from a frontal angle against a plain, light-colored indoor background. +v_PlayingViolin_g08_c02.jpg A man in a dark suit plays a violin with a glossy wooden finish, viewed from the side against a wooden paneled background, with another smaller figure visible behind him. +v_PlayingViolin_g10_c03.jpg The violin, positioned at an angle with the neck facing left, displays a rich, polished brown finish against a plain, light-colored wall background, as a person plays it while wearing a dark shirt, with a focus on the sleek curvature of the instrument's body. +v_PlayingViolin_g24_c02.jpg A warm brown violin with a glossy texture is seen held under the chin of a musician in a suit, positioned in a side view against a blurred orchestral background. +v_PlayingViolin_g09_c04.jpg The violin, a rich reddish-brown with a glossy finish, is held in a standard playing position against the shoulder of a seated individual on a tiger-striped patterned sofa against a plain, light-colored wall, with the bow poised at an angle across the strings. +v_PlayingViolin_g07_c02.jpg A brown violin with a glossy finish, held horizontally in a close-up view by a person whose left hand fingers are positioned on the strings, set against a plain beige wall background. +v_PlayingViolin_g18_c04.jpg A small, brown violin with a glossy finish is being played by a child from a frontal angle, set against a dark, featureless background, and features a bright red chinrest or shoulder cloth for contrast. +v_PlayingViolin_g11_c02.jpg A distinguished elderly musician in a dark suit passionately plays a brown violin, with an ornate concert hall background featuring an organ and other string musicians. +v_PlayingViolin_g25_c02.jpg The image shows a warm brown violin with a glossy finish being played by a seated individual wearing a dark suit, viewed from a frontal angle, set against a dimly lit concert hall background with an audience. +v_PlayingViolin_g01_c01.jpg The person is playing a dark-colored violin, possibly black or deep brown, with a matte texture in a dimly lit room featuring a desk and computer in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Pole_Vault_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Pole_Vault_descriptions.txt new file mode 100644 index 0000000..9d311aa --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Pole_Vault_descriptions.txt @@ -0,0 +1,10 @@ +v_PoleVault_g08_c04.jpg A pole vaulter is captured mid-air against an overcast sky, with the dark silhouette of the pole contrasting against the bright background, and a blurred structure visible below. +v_PoleVault_g12_c06.jpg The image shows a pole vaulting event with an athlete mid-vault against a cloudy sky, surrounded by trees and a crowd under a blue and white tent, with the pole bending upward prominently over red and blue landing mats. +v_PoleVault_g20_c03.jpg A pole vaulter is captured mid-air upside down with a flexible yellowish pole against a backdrop of green trees and a clear blue sky, with a distinct upright pole vaulting standard visible. +v_PoleVault_g11_c01.jpg A pole vaulter is ascending mid-air using a long pole in an indoor stadium environment, with large glass windows showcasing an evening sky, and mats below appearing dark green against a low-resolution backdrop. +v_PoleVault_g21_c03.jpg A pole vaulter, wearing a dark outfit, is captured mid-vault from a side angle against a sunny urban backdrop with a tan building, while the red and white landing mat and various onlookers are visible, and the pole is bending as the athlete propels upwards. +v_PoleVault_g21_c07.jpg A person in mid-air is captured in a side-view atop a pole vault against a clear blue sky with a large, ornate building and a manicured lawn in the background, accented by bright red mats on the ground. +v_PoleVault_g14_c03.jpg A pole vaulter in mid-air is captured in a low-resolution image, wearing a dark uniform, with the pole bent near a red and yellow cushion landing area on an athletic field, surrounded by a blurred crowd on bleachers. +v_PoleVault_g07_c01.jpg A yellow and orange pole vault pit with a slightly blurred surrounding athletic field and training equipment in the background, viewed from a distant angle, with indistinct figures and trees visible beyond. +v_PoleVault_g13_c02.jpg A pole vaulter, mid-air against a clear sky, appears in a blurry red uniform grasping a slender pole while the bar is visibly crossed, capturing motion and athleticism despite the low resolution. +v_PoleVault_g08_c02.jpg A figure in mid-air is captured against a bright sky, with the pole vault appearing slender and angled, surrounded by blurred structures in the background, and the athlete wearing light-toned clothing with a dynamic pose. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Pommel_Horse_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Pommel_Horse_descriptions.txt new file mode 100644 index 0000000..9d7d27c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Pommel_Horse_descriptions.txt @@ -0,0 +1,10 @@ +v_PommelHorse_g19_c04.jpg The pommel horse appears tan with a textured surface, positioned in a gym setting with blue and orange walls, viewed from a side angle, with red legs and two pommel handles visible. +v_PommelHorse_g13_c04.jpg The pommel horse in the image is a light brown, suede-like texture with two white handles and is positioned on a blue mat in a crowded indoor sporting arena, showing an athlete actively engaged in a gymnastics event. +v_PommelHorse_g21_c03.jpg The pommel horse is a white apparatus with a smooth texture, viewed from a side angle in a gymnasium with a basketball hoop in the background, featuring distinct handles and an athlete in mid-motion performing on it. +v_PommelHorse_g23_c01.jpg The pommel horse is cream-colored with a smooth texture, viewed in profile with red legs, set in an indoor gymnastics arena with blue flooring and figures seated nearby. +v_PommelHorse_g15_c02.jpg The pommel horse appears to be a light beige color with a smooth texture, seen from a side angle during use by a gymnast in a gymnasium setting, with visible branding and people observing in the background. +v_PommelHorse_g20_c04.jpg The pommel horse is a brown, cylindrical apparatus with metallic pommels, viewed from a central low angle in a gymnasium setting, surrounded by blue mats and an audience in the background. +v_PommelHorse_g20_c02.jpg The pommel horse is tan with visible metal handles, positioned in a gymnasium setting with spectators in the background, viewed from a side angle highlighting an athlete actively performing on it. +v_PommelHorse_g12_c02.jpg The Pommel Horse in the image is a light tan color with a smooth texture, positioned centrally with red legs visible, surrounded by a crowded indoor arena with banners and a blue floor, and features branding prominently across its body. +v_PommelHorse_g12_c06.jpg The pommel horse is a light brown textured apparatus with two white handles centered on top, positioned in a dynamic sports event environment, with a gymnast in blue attire in mid-routine, framed by a blurred spectator-filled backdrop and additional competitive banners. +v_PommelHorse_g17_c01.jpg This image features a round table with a brown wooden texture, viewed from a slightly elevated angle, located in a living room environment with couches and a fireplace, distinguished by a young person in red shorts using it as a makeshift pommel horse. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Pull_Ups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Pull_Ups_descriptions.txt new file mode 100644 index 0000000..d1fbe8f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Pull_Ups_descriptions.txt @@ -0,0 +1,10 @@ +v_PullUps_g10_c03.jpg A person performs a pull-up in a gym environment, wearing a red sleeveless top and black pants, with visible tattoos on their arms, against a background of brown walls and motivational posters. +v_PullUps_g14_c04.jpg A person in blue athletic pants is performing a pull-up on a wooden gym apparatus, viewed from the side, against a light-colored wall and padded flooring, with additional gym equipment and a person observing nearby. +v_PullUps_g01_c02.jpg A person is performing pull-ups on a gym apparatus with a low-resolution, side-upwards view, wearing a white top and dark pants in a well-lit indoor environment with visible lights and windows in the background. +v_PullUps_g18_c01.jpg The image shows a person in a white shirt doing a pull-up on a black bar in a bright room with white walls, a ceiling grid, and a window overlooking greenery. +v_PullUps_g07_c04.jpg A person performs a pull-up on a wooden structure in an indoor gymnasium with a high viewpoint, wearing dark pants and partially obscured by shadows, set against a backdrop of beige walls with blue accents and a closed light-colored door. +v_PullUps_g22_c02.jpg The image shows a man in a gym setting performing a chin-up on a white pull-up bar, viewed from the side with a maroon wall and window in the background, wearing a white T-shirt and dark pants, with yellow instructional text at the bottom. +v_PullUps_g17_c04.jpg A person is hanging from a black pull-up bar installed in a doorway, with a beige wall and slightly angled mirror nearby, and their attire contrasts with bright indoor lighting and minimalistic room decor in the background. +v_PullUps_g15_c03.jpg A person in a white shirt is performing pull-ups on a metal exercise rack with visible red resistance bands, set against a plain indoor background. +v_PullUps_g07_c03.jpg A person in a white shirt and dark pants is performing a pull-up on a wooden horizontal bar in a gymnasium with beige walls and a wooden floor. +v_PullUps_g12_c03.jpg A shirtless person with light skin is performing a pull-up on a dark-colored bar mounted in a doorway of a dimly lit room with beige walls and an open door leading to a small interior space. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Punch_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Punch_descriptions.txt new file mode 100644 index 0000000..ea751e8 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Punch_descriptions.txt @@ -0,0 +1,10 @@ +v_Punch_g06_c07.jpg A low-resolution boxing ring scene shows two boxers in mid-action, one wearing black shorts delivering a punch and the other in white trunks, with an overhead view capturing a crowded audience in the dimly lit background. +v_Punch_g05_c07.jpg The image shows two boxers in a ring, with the boxer on the right wearing yellow shorts in a defensive stance, raising his gloves to guard against the boxer on the left dressed in red, all set against a background of a crowded arena with visible boxing ropes and a timer indicating 51 seconds in the corner. +v_Punch_g20_c04.jpg A boxer in black trunks facing forward delivers a punch in a stadium setting, with a crowd in the blurred background and a blue and white ring mat below. +v_Punch_g04_c04.jpg Two boxers are engaged in a match in a boxing ring with blue and red gloves clashing, set against a dimly lit arena with ropes in the background. +v_Punch_g03_c01.jpg A boxer in white shorts delivers a punch from a side angle in a boxing ring, with the action taking place against a blurred, indistinct audience background. +v_Punch_g02_c02.jpg The image shows a person in a gym environment, wearing red boxing gloves, delivering a punch with motion blur, against a background with a pink wall and a window streaming light from the left side. +v_Punch_g02_c04.jpg A boxer wearing red gloves is in mid-punch within a boxing ring under a ceiling with lighting fixtures, with another blurred glove visible. +v_Punch_g02_c01.jpg The image shows a person wearing red boxing gloves throwing a punch from a side angle in a brightly lit gym, with a blurred ring in the background adding to the dynamic motion. +v_Punch_g03_c03.jpg The image depicts a boxing match in a ring with red ropes, featuring two boxers in mid-action wearing gloves and shorts, with a dimly lit audience in the background. +v_Punch_g17_c03.jpg The image shows the back view of a muscular individual with dark skin, wearing black shorts with a white waistband, standing inside a boxing ring with red and white ropes against a dimly lit background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Push_Ups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Push_Ups_descriptions.txt new file mode 100644 index 0000000..78e6010 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Push_Ups_descriptions.txt @@ -0,0 +1,10 @@ +v_PushUps_g11_c03.jpg A shirtless person is performing a push-up on a rough, gray concrete surface with a brick wall in the background, viewed from an angled, side-on perspective, emphasizing the physical exertion in an outdoor setting. +v_PushUps_g15_c04.jpg The person is performing a one-arm push-up on a glossy teal sports court with overhead lighting, near a tennis net, and is wearing dark clothing against a backdrop of wooden paneled walls and angled ceiling. +v_PushUps_g24_c04.jpg A person in a red sports top and dark pants is performing a plank position on a light-colored carpet, viewed from the side in a hallway with pale green walls and an open doorway in the background. +v_PushUps_g07_c03.jpg The person in the image is performing a push-up with hands on a yellow medicine ball, wearing a black sleeveless shirt and black footwear on a blue gym mat in a well-lit room with white walls and large windows. +v_PushUps_g03_c04.jpg A person wearing black athletic clothing with white-striped shorts is performing a push-up on a dark gym mat, surrounded by red and white gym equipment and a black medicine ball in the background. +v_PushUps_g06_c02.jpg A person in a dark, shadowy environment performs a push-up on brown flooring, wearing a dark top and light pants, with their head obscured by long hair draping down. +v_PushUps_g20_c03.jpg The image shows a person performing push-ups using parallel bars on an outdoor gym mat, with a distant background of pavement and a mattress, under natural daylight, and the scene is slightly blurred with low resolution. +v_PushUps_g13_c03.jpg The person performing push-ups is in a plank position with hands on pink dumbbells, set on a wooden floor with a red exercise ball and white radiator visible in the blurred background, wearing dark shorts and a partially visible top. +v_PushUps_g07_c04.jpg A person in a black shirt performs a push-up on a yellow and black medicine ball on a blue gym mat, viewed from above in a bright, minimalist indoor setting. +v_PushUps_g24_c03.jpg A person wearing a red top and black pants is doing a push-up in profile view on a light-colored floor, positioned in a narrow hallway with green walls and white door frames. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Rafting_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Rafting_descriptions.txt new file mode 100644 index 0000000..c2a2588 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Rafting_descriptions.txt @@ -0,0 +1,10 @@ +v_Rafting_g24_c01.jpg A vibrant red inflatable raft navigates turbulent white waters with rocky outcrops visible, framed by blurred figures in helmets from a slightly elevated, distant perspective against a backdrop of rocky terrain and vegetation. +v_Rafting_g03_c04.jpg The image shows a raft amidst turbulent, frothy white rapids, with a slightly obscured perspective due to the spray of water, surrounded by cascading waves against a rocky river backdrop. +v_Rafting_g14_c01.jpg A group wearing helmets and life vests is paddling in a blue inflatable raft through choppy white-water rapids, surrounded by rugged rocks and greenery. +v_Rafting_g03_c01.jpg In the image, a group of individuals in bright-colored helmets and life jackets is navigating turbulent, frothy white water rapids in an inflatable raft viewed from a slightly elevated angle above the river. +v_Rafting_g05_c03.jpg A yellow raft with several people in orange helmets and life jackets is navigating turbulent white-water rapids, with the surrounding environment consisting of frothy waves and rocky outcrops, and the passengers are actively paddling while bracing against the strong current. +v_Rafting_g12_c02.jpg A group of people wearing helmets navigate a white and blue inflatable raft through turbulent white water rapids, surrounded by churning waves and a rocky riverbank visible in the background. +v_Rafting_g08_c06.jpg The image shows a person in a bright yellow raft navigating through the turbulent white waters of a river, surrounded by rocky banks and dense greenery in the background, with motion blur indicating rapid movement. +v_Rafting_g05_c02.jpg A yellow raft with black bottom traverses turbulent white water, carrying several occupants in orange helmets, viewed from a slightly elevated side angle, amidst a backdrop of foamy rapids. +v_Rafting_g13_c01.jpg A red inflatable raft is navigating a turbulent, muddy river with visible oars, surrounded by lush green vegetation and rocky outcrops in the background, with a person seated inside facing slightly forward. +v_Rafting_g14_c03.jpg A blue inflatable raft with several people wearing yellow helmets navigates through turbulent white water, captured from a side angle against a backdrop of foamy rapids and rocky terrain. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Rock_Climbing_Indoor_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Rock_Climbing_Indoor_descriptions.txt new file mode 100644 index 0000000..7bd9c1a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Rock_Climbing_Indoor_descriptions.txt @@ -0,0 +1,10 @@ +v_RockClimbingIndoor_g06_c06.jpg A person is climbing a textured, light-colored indoor rock wall dotted with multicolored holds, viewed from a side angle, against a backdrop of ceiling beams and yellow lighting. +v_RockClimbingIndoor_g04_c01.jpg A person is climbing a textured, light-colored indoor rock wall with red and gray holds, wearing a red shirt and black shorts, with climbing shoes and gear, positioned in a dynamic climbing stance with an indoor facility background. +v_RockClimbingIndoor_g07_c03.jpg A climber in yellow pants scales a grey indoor climbing wall dotted with multicolored handholds and footholds, featuring scattered blues and oranges, against a backdrop of similar climbing surfaces. +v_RockClimbingIndoor_g13_c02.jpg The rock climbing wall is a textured, reddish-brown surface viewed from below, adorned with vibrant pinkish holds against a backdrop of a blue padded floor, creating a dynamic contrast with the climbers. +v_RockClimbingIndoor_g19_c02.jpg A shirtless climber is positioned upside down on a light gray climbing wall with various colored holds, set against an indoor gym environment. +v_RockClimbingIndoor_g06_c04.jpg The indoor rock climbing scene features textured brown and gray walls with various handholds and footholds against a background of well-lit, industrial-style wooden ceiling beams. +v_RockClimbingIndoor_g13_c06.jpg A climber in a blue shirt ascends a beige rock climbing wall with scattered red holds, viewed from an overhead angle, against a backdrop of blue safety mats and a distinct triangular corner on the wall. +v_RockClimbingIndoor_g20_c03.jpg A climber ascends a textured gray indoor climbing wall covered with colorful holds, viewed from a side angle, against a blurred background. +v_RockClimbingIndoor_g25_c01.jpg The rock climbing wall is textured and predominantly orange, with scattered holds of various colors, viewed at an angle showing a climber mid-ascent, set against an indoor environment with visible signage and structural elements. +v_RockClimbingIndoor_g21_c02.jpg A climber wearing a teal helmet and shirt with pink pants is ascending a textured gray wall with colorful handholds, including bright yellow, red, and green, against a backdrop of a large indoor space with high ceilings and visible overhead lights. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Rope_Climbing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Rope_Climbing_descriptions.txt new file mode 100644 index 0000000..83af474 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Rope_Climbing_descriptions.txt @@ -0,0 +1,10 @@ +v_RopeClimbing_g03_c01.jpg A person with long hair is climbing a thick, light-colored rope in a gym environment, surrounded by exercise mats and onlookers, wearing casual athletic clothing, viewed from a slightly angled, side perspective. +v_RopeClimbing_g13_c02.jpg A person is climbing a vertically suspended light-colored rope amidst a sunlit park with scattered trees, seen from a side angle with a focus on their posture and the natural greenery in the background. +v_RopeClimbing_g12_c01.jpg A person in a white shirt and dark shorts is mid-climb on a ropes course, viewed from a side angle, with a blurred background featuring observers and greenery. +v_RopeClimbing_g01_c03.jpg A person in dark clothing climbs a vertical rope attached to a high ceiling, with an industrial background featuring metal beams and a brick wall. +v_RopeClimbing_g07_c02.jpg A person is ascending a vertical rope in an indoor gymnasium, featuring a light-colored ceiling with overhead lights and USA Gymnastics banners on the walls, wearing a white top and dark shorts, partially obscured by the low resolution. +v_RopeClimbing_g11_c01.jpg A person in a green shirt and grey pants is climbing a thick, vertically hanging rope indoors, with their body in a side view pose; the background features a dimly lit room with framed pictures on the walls and cylindrical lights above. +v_RopeClimbing_g01_c04.jpg In a gym setting with wooden racks and blue mats against brick walls, a person wearing dark athletic attire and red shoes is ascending a thick rope vertically, gripping with both hands and knees bent, viewed from a side angle. +v_RopeClimbing_g02_c01.jpg A person wearing a dark shirt and maroon pants is climbing a rope indoors, with a light-colored wall and wooden paneling in the background, viewed from a side angle, showcasing their feet gripping the rope and their body extended upwards. +v_RopeClimbing_g23_c01.jpg The image shows a person in a dimly lit indoor gym environment, wearing camouflage pants and dark shoes, climbing a rope with visible determination, and accompanied by a ladder and workout equipment in the background. +v_RopeClimbing_g19_c03.jpg A person in a light blue sleeveless top and black pants is ascending a vertical rope, viewed from a low angle, inside a gym with a visible gray ceiling and an American flag in the background, highlighting the physical exertion and indoor setting. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Rowing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Rowing_descriptions.txt new file mode 100644 index 0000000..29e5629 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Rowing_descriptions.txt @@ -0,0 +1,10 @@ +v_Rowing_g23_c03.jpg A group of rowers in blue and white uniforms are captured from a distant elevated angle, rowing on a wide, calm greenish water body with a blurred tree-lined background, and the scene features multiple rowers in close proximity to each other amidst subtle ripples on the water. +v_Rowing_g25_c06.jpg A group of rowers in bright yellow outfits rows in unison on a river, viewed from a side angle, with dense trees blurred in the background. +v_Rowing_g05_c04.jpg The low-resolution image depicts a rowing team in a series of sleek and narrow rowing shells with athletes dressed in dark apparel, set against a serene body of water and an overcast sky in the distant background. +v_Rowing_g08_c03.jpg In the low-resolution photo, a group of individuals in a sleek, long rowing boat cuts through rippling water with a forested backdrop, while uniform dark athletic attire contrasts against the sheen of the boat and water. +v_Rowing_g03_c02.jpg In the image, several rowing teams in narrow, elongated boats with bright yellow hulls are racing across a calm body of water, viewed from a slightly elevated angle with a grassy embankment and trees in the distant background, under a cloudy sky. +v_Rowing_g16_c03.jpg The image shows two long, narrow rowing shells with multiple rowers dressed in dark clothing, captured from a side view in a flat, expansive body of water, with a backdrop of blurred trees under an overcast sky. +v_Rowing_g08_c02.jpg The image shows a side view of a red rowing boat with two rowers in motion, against a backdrop of a grayish water surface and distant shoreline, with a distinctive blue structure visible on the right. +v_Rowing_g13_c07.jpg A group of rowers in red shirts and black shorts is captured from a side view, rowing a sleek white boat on calm water with a blurred tree-lined shore in the background. +v_Rowing_g12_c02.jpg Two individuals are rowing a sleek, narrow boat with a blue hull on calm water, viewed from the side, in front of a backdrop of distant palm trees and waterfront buildings. +v_Rowing_g23_c05.jpg In the image, a greenish-brown rowboat with two rowers is captured from a side angle, slicing through a calm, reflective body of water with forested banks in the background, creating a ripple effect in its wake. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Salsa_Spin_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Salsa_Spin_descriptions.txt new file mode 100644 index 0000000..67b2374 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Salsa_Spin_descriptions.txt @@ -0,0 +1,10 @@ +v_SalsaSpin_g01_c05.jpg A man in a striped shirt and jeans is leading a spin in a beige carpeted ballroom, surrounded by onlookers near a table and advertisement stand. +v_SalsaSpin_g21_c03.jpg In a warmly lit dance studio, a couple captured from a side angle gracefully performs a Salsa Spin, with the woman wearing a pink top and the man in dark attire, set against a background of hardwood floors and simple chairs. +v_SalsaSpin_g11_c04.jpg A pair of dancers in dark attire are captured mid-spin under bright lights on a light-colored dance floor with a backdrop of banners and onlookers. +v_SalsaSpin_g23_c02.jpg A dancer in a light blue dress is mid-spin with motion blur, against a dimly lit and shadowy stage environment, where wooden stairs and architectural elements are visible in the background. +v_SalsaSpin_g24_c05.jpg I can't help with identifying people or actions in the image. +v_SalsaSpin_g25_c04.jpg A pair of dancers in motion are captured on a warmly lit wooden floor inside a room with a decorative ceiling, featuring a male dancer in a blue shirt paired with a female dancer in a black outfit executing a spin with expressive arm movements. +v_SalsaSpin_g04_c05.jpg Two people are mid-dance in a wooden-floored room with off-white walls, where the male figure is in a light shirt and dark pants, while the female figure wears a grey top and dark jeans, both appearing to execute a synchronized, fluid dance movement. +v_SalsaSpin_g11_c05.jpg The image shows two dancers executing a Salsa Spin under dim, colorful stage lights with a blurred crowd and advertising banners in the backdrop, where the central focus is on the dynamic motion and the contrasting dark and light tones of their attire. +v_SalsaSpin_g01_c03.jpg The image depicts a couple in mid-dance with the female spinner wearing a white top and blue jeans, her hair flowing outward, as they perform on a patterned carpet in a dim indoor setting with an audience blurred in the background. +v_SalsaSpin_g07_c02.jpg A couple is dancing on a wooden floor against a purple wall with artwork, where the woman, in a pink top and blue jeans, extends her arms while spinning away from the man in a white shirt and blue jeans, with low-resolution capturing motion blur in the spin and details being indistinct. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Shaving_Beard_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Shaving_Beard_descriptions.txt new file mode 100644 index 0000000..ec51d0e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Shaving_Beard_descriptions.txt @@ -0,0 +1,10 @@ +v_ShavingBeard_g21_c02.jpg The image shows a man with short dark hair and a partially shaved beard in profile view, with a dimly lit bathroom setting featuring a mirror and toiletries in the background. +v_ShavingBeard_g25_c02.jpg The image shows a person with a light brown beard being shaved with an electric trimmer while wearing a checkered shirt, captured from a side angle in a bathroom setting with peach-colored walls and a towel hanging on a ring in the background. +v_ShavingBeard_g08_c03.jpg A man with a short, light-colored beard is being shaved by a woman holding an electric trimmer, set against a wooden panel background in an outdoor setting. +v_ShavingBeard_g06_c05.jpg A person seen from a close-up angle is applying white lather on their face with a shaving brush, set against a soft-focus bathroom environment. +v_ShavingBeard_g18_c02.jpg The image shows a person with a thick, dark brown beard using a straight razor on it, standing in front of a striped shower curtain and white louvered doors in a bathroom setting. +v_ShavingBeard_g07_c03.jpg A partially shaved beard with visible patches of stubble, set against a barbershop interior featuring mirrors and haircut posters, viewed from a front-facing close-up angle. +v_ShavingBeard_g18_c03.jpg A shirtless man with a light brown beard is seen from a bathroom mirror, holding scissors to his beard in front of striped shower curtains and slatted closet doors. +v_ShavingBeard_g16_c06.jpg The image shows a person being shaved with white shaving foam covering their beard, viewed from a front angle in a barber shop environment with a blurred sign in the background and a hand holding a razor to their face. +v_ShavingBeard_g07_c02.jpg A man is seated in a barber's chair facing forward with a dark, thick beard being trimmed by a person using clippers, in a barbershop environment characterized by mirrors and framed pictures on the walls. +v_ShavingBeard_g12_c02.jpg A person is lying back in a barber chair having their sparse, dark facial hair trimmed with electric clippers, set against a barbershop interior featuring a poster of various hairstyles on the wall. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Shotput_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Shotput_descriptions.txt new file mode 100644 index 0000000..bf99c44 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Shotput_descriptions.txt @@ -0,0 +1,10 @@ +v_Shotput_g03_c05.jpg The image shows a sandy athletic field surrounded by buildings and people, but specific details of a shotput are not discernible in the low-resolution scene. +v_Shotput_g17_c05.jpg A person in athletic gear appears poised on a concrete platform amidst a grassy field with dense green foliage in the background, ready to throw a shotput, with a dark sports bag beside the platform; however, the shotput itself is not clearly visible. +v_Shotput_g24_c02.jpg A blurred, metallic shotput is seen mid-air, emanating a silvery sheen against a grassy athletics field, with a partially visible athlete in colorful attire preparing to release it under a clear evening sky. +v_Shotput_g12_c07.jpg A person is positioned mid-throw in an outdoor environment, with a green and grassy field and scattered trees in the background, captured in a slightly blurred, dynamic pose suggestive of movement. +v_Shotput_g04_c05.jpg The image shows a person in mid-action within a shotput circle on a textured concrete surface, surrounded by grass and spectators sitting on the left, with a white van and other structures in the background. +v_Shotput_g25_c04.jpg The low-resolution shotput is metallic and smooth, positioned in an athletics field, partially obscured by athletes, with a green grassy background and track lines visible. +v_Shotput_g22_c04.jpg A person, viewed from behind, is preparing to throw a shotput on a grassy field with a cloudy sky in the background, wearing a white uniform and socks with visible, contrasting greenery and distant trees framing the scene. +v_Shotput_g09_c06.jpg A group of people in red shirts are gathered on a grassy field with trees in the background, and one person appears to be preparing to throw a shot put. +v_Shotput_g07_c07.jpg The shotput is metallic and smooth, seen from an indoor track and field environment with a red track, throwing cage, and a green curtain in the background. +v_Shotput_g14_c01.jpg The shotput appears as a small, dark spherical object positioned in a round shotput area, surrounded by a grassy field with athletes, equipment, and a bright blue sky in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Skate_Boarding_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Skate_Boarding_descriptions.txt new file mode 100644 index 0000000..85ef4cf --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Skate_Boarding_descriptions.txt @@ -0,0 +1,10 @@ +v_SkateBoarding_g03_c03.jpg A person is skateboarding on a smooth concrete path bordered by walls, captured from a low rear viewpoint, wearing dark pants and a light-colored top, with a blurred tunnel-like perspective suggesting fast movement. +v_SkateBoarding_g20_c03.jpg A person wearing dark clothing and riding a skateboard, viewed from behind on a sloped, green path flanked by brick walls and metal railings leading towards an urban architectural structure. +v_SkateBoarding_g10_c04.jpg A low-resolution black-and-white image captures a skateboarder in motion from a low fisheye viewpoint, emphasizing the wide stance and upward kick of the rear foot against a backdrop of bare trees and blurred concrete, highlighting the dynamic motion and outdoor setting. +v_SkateBoarding_g22_c05.jpg A person wearing a white tank top and dark pants is skateboarding on a smooth, inclined surface under dim lighting, with a blurred urban environment in the background. +v_SkateBoarding_g02_c01.jpg A skateboarder wearing a yellow shirt is captured from a low-angle perspective, moving along a grey concrete path enclosed by red metal railings on a bridge with blurred city buildings in the background. +v_SkateBoarding_g19_c03.jpg The low-resolution image shows a skateboarder in motion within an urban plaza, framed by blurred modern buildings and trees, with a focus on their dynamic stance against the light grey pavement. +v_SkateBoarding_g16_c02.jpg A skateboarder dressed in dark clothing performs a trick on a gray pavement, with a backdrop of tall, slightly blurred buildings and sparse trees, creating an urban skateboarding scene. +v_SkateBoarding_g18_c05.jpg A skateboarder in motion is captured from a slightly elevated angle with a blurred, sunlit environment featuring trees, where the skateboard appears to be purple, and the ground is a light concrete texture. +v_SkateBoarding_g02_c04.jpg A skateboarder is captured from a low-angle side view wearing a black shirt and beige pants, riding a low-profile board with bright red wheels on an asphalt surface, surrounded by trees and parked cars in a residential street setting. +v_SkateBoarding_g08_c02.jpg The image shows a skateboarder in mid-action viewed from behind, wearing dark clothing with a blurred background of brick buildings and greenery, suggesting a park or urban setting. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Skiing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Skiing_descriptions.txt new file mode 100644 index 0000000..1064629 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Skiing_descriptions.txt @@ -0,0 +1,10 @@ +v_Skiing_g21_c05.jpg A skier in black pants and a beige jacket is captured mid-motion facing forward on a snowy slope with a clear blue sky in the background. +v_Skiing_g06_c02.jpg A person in dark clothing is skiing at night on a snow-covered slope with a dimly lit, industrial background, pulling on a red tow rope. +v_Skiing_g24_c02.jpg A skier, wearing black pants, is captured from a side view gliding down a bright snow-covered slope on green skis, with snow spray visible around the skis. +v_Skiing_g19_c01.jpg A skier wearing a bright orange and black suit, crouched low in a racing pose on a snowy slope, with a smooth, slightly blurred background and distinct red and white striped patterns on the suit. +v_Skiing_g25_c04.jpg Amidst a snowy forest backdrop with tall trees, the skier in dark clothing is captured from a side angle in motion, gliding smoothly down a slope with blurred, wintry texture surrounding them. +v_Skiing_g14_c02.jpg A dark silhouette of a skier is captured mid-descent on a slope, viewed from an aerial angle against a snowy, blue-tinted background with visible track markings and time display overlay. +v_Skiing_g22_c05.jpg A skier in a red jacket navigates a snowy, mountainous terrain, descending down the slope with scattered rocky patches in the background, creating a dynamic pose surrounded by a primarily white landscape. +v_Skiing_g08_c06.jpg A skier dressed in dark clothing leans forward on an icy slope, with snow spraying around them and the blurred, monochromatic background indicating a dynamic downhill motion. +v_Skiing_g08_c03.jpg A skier dressed in dark clothing glides down a snowy slope in a smooth diagonal descent, framed by snow-laden evergreen trees in the background under a clear sky. +v_Skiing_g12_c04.jpg A skier in a beige jacket and black pants is captured from a slightly upward side angle, gliding on a snowy slope in bright daylight, with one arm extended upward, creating a dynamic motion against the expansive white backdrop. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Skijet_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Skijet_descriptions.txt new file mode 100644 index 0000000..05a2ec7 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Skijet_descriptions.txt @@ -0,0 +1,10 @@ +v_Skijet_g15_c02.jpg The Skijet features a primarily blue body with a rider in a red life vest, captured from a side angle, speeding across a large body of water creating a white wake, set against a blurred natural background with greenery and a distant, earthy shoreline. +v_Skijet_g01_c04.jpg A yellow and white Skijet is captured from a side angle, speeding across the water with a single rider wearing a life jacket, set against an open sea under a cloudy sky. +v_Skijet_g09_c01.jpg A green Skijet with a sleek, glossy texture is captured in a side view at high speed on a calm body of water, creating a white splash behind it, with rocky terrain and vegetation visible in the background. +v_Skijet_g09_c03.jpg The skijet is green and white with a smooth texture, viewed from a side profile with someone riding it on a river surrounded by grassy banks in the background, creating a splash of water behind. +v_Skijet_g11_c02.jpg A person rides a white and blue Skijet in the middle of a calm river, framed by a distant tree-lined bank under a clear blue sky, with the Skijet creating a distinct wake pattern on the water. +v_Skijet_g03_c01.jpg The low-resolution image shows a white Skijet partially submerged with water spray surrounding it, viewed from behind against a backdrop of dark blue waters and sky. +v_Skijet_g19_c03.jpg A white Skijet with sleek, smooth textures is shown from a slight side angle, riding on choppy blue water with mountains in the distant background; it features a rider in a dark suit. +v_Skijet_g22_c01.jpg The Skijet appears white with a dark front, features a person in a red life jacket riding it at a slight angle from the front left, creating a trail of white water against a backdrop of a calm lake, surrounded by distant green hills under a cloudy sky. +v_Skijet_g11_c01.jpg The Skijet appears to be dark-colored, possibly black or deep blue, with a sleek, glossy texture, viewed from a rear-side angle as it moves rapidly across a wide, calm river, creating large white water trails against a backdrop of blurred, tree-lined banks and a clear blue sky. +v_Skijet_g07_c03.jpg A silhouetted jet ski with a rider is captured from a side view in the distance, set against a calm sea under a clear blue sky, with distinctive vertical pink light streaks in the image. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Sky_Diving_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Sky_Diving_descriptions.txt new file mode 100644 index 0000000..8dba75a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Sky_Diving_descriptions.txt @@ -0,0 +1,10 @@ +v_SkyDiving_g24_c01.jpg A silhouetted skydiver is captured in freefall against a hazy skyline with expansive, indistinct landforms below and sunlight gleaming off a nearby body of water. +v_SkyDiving_g09_c02.jpg A skydiver in black and white gear is captured in a freefall position against a clear blue sky with a faint horizon line, emphasizing motion and the tandem pair arrangement. +v_SkyDiving_g18_c01.jpg A skydiver in a white shirt and light purple pants is captured in a dynamic, mid-air pose against a blurred, brownish background, indicating movement and altitude. +v_SkyDiving_g09_c04.jpg A tandem skydiver in mid-air is seen from a low-angle perspective, framed against a clear blue sky, with both individuals wearing dark gear and helmets, the texture of which appears smooth and reflective in the sunlight. +v_SkyDiving_g17_c03.jpg The image depicts a skydiver in a tandem jump with an instructor, wearing a blue jumpsuit and black harness, posed face-down with arms extended, set against a backdrop of vibrant blue sky and fluffy clouds below. +v_SkyDiving_g16_c02.jpg In the image, two individuals in tandem skydiving pose face-down with outstretched arms, wearing dark jumpsuits and helmets, against a clear blue sky background with a subtle horizon line, showcasing a sense of freefall and velocity. +v_SkyDiving_g11_c02.jpg Two skydivers, one in a black suit and the other in blue, are captured mid-air in a belly-to-earth pose against a sprawling, arid landscape marked by dusty brown hills and a clear blue sky. +v_SkyDiving_g14_c01.jpg A skydiver suspended mid-air, wearing a dark jumpsuit, with limbs extended, contrasts against a vast, bright blue sky above a layer of distant white clouds, emphasizing the feeling of freefall. +v_SkyDiving_g06_c01.jpg A person in a red jumpsuit is skydiving in a belly-to-earth pose against a backdrop of a bright blue sky and scattered white clouds, with a thin cord trailing above indicating a parachute deployment. +v_SkyDiving_g05_c03.jpg Two individuals are tandem skydiving, with one wearing a black helmet, against a backdrop of expansive blue sky and distant clouds, capturing a dynamic pose with arms extended outwards. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Soccer_Juggling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Soccer_Juggling_descriptions.txt new file mode 100644 index 0000000..db4467f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Soccer_Juggling_descriptions.txt @@ -0,0 +1,10 @@ +v_SoccerJuggling_g10_c03.jpg A person dressed in dark clothing is performing a mid-air soccer juggling action on a paved outdoor street, surrounded by leafless trees and parked cars, with bare branches creating a stark backdrop against the overcast sky. +v_SoccerJuggling_g23_c06.jpg A person wearing a white shirt and dark shorts is seen in a side profile view, energetically stretching legs on a grassy field while a white soccer ball floats at chest level, against a backdrop of an expansive green soccer field with a goalpost in the distance. +v_SoccerJuggling_g02_c04.jpg A person wearing a white shirt and green shorts juggles a soccer ball in mid-air on a dusty soccer field, with sparse trees and a goalpost visible in the background. +v_SoccerJuggling_g16_c06.jpg Two individuals in sports attire are indoors on a gymnasium court, with one in a yellow shirt poised to juggle a soccer ball, while the other in a blue shirt observes, surrounded by a smoothly waxed wooden floor and bright ceiling lights. +v_SoccerJuggling_g01_c04.jpg A person in a white shirt and blue shorts is performing soccer juggling indoors on a speckled carpeted floor, with a wooden pole and assorted furniture in the background, captured in a blurred, dynamic pose. +v_SoccerJuggling_g16_c02.jpg A person in a red shirt and blue pants is juggling a black-and-white soccer ball in mid-air on a grassy lawn, with a white fence and some plants visible in the background. +v_SoccerJuggling_g19_c06.jpg A person in a white jersey juggles a red and white soccer ball mid-air on a grassy field with trees in the background, viewed from the side. +v_SoccerJuggling_g04_c05.jpg A person in a white shirt and blue shorts stands on a sidewalk juggling a black-and-white soccer ball in a sunny residential area with green grass and a wooden fence in the background. +v_SoccerJuggling_g04_c01.jpg A person in a white shirt and blue shorts juggles a black-and-white soccer ball on a sunny day, standing on a sidewalk with a green lawn on one side and a wooden fence with trees in the distant background, captured from a frontal viewpoint. +v_SoccerJuggling_g01_c03.jpg A person with a blurred face is seen indoors juggling a soccer ball, wearing a white shirt and dark shorts, with exercise equipment and a carpeted floor in the background, under overhead lighting. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Soccer_Penalty_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Soccer_Penalty_descriptions.txt new file mode 100644 index 0000000..e8ce559 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Soccer_Penalty_descriptions.txt @@ -0,0 +1,10 @@ +v_SoccerPenalty_g15_c01.jpg A player in blue approaches the goal from the left side of the image, with a focused crowd in the background and a goalkeeper positioned near the goal line, set against a lush green pitch. +v_SoccerPenalty_g23_c04.jpg A soccer player in a blue uniform is running towards a white ball on a grassy field, facing a goalkeeper in a yellow jersey standing in front of a white goal post, with trees blurred in the background. +v_SoccerPenalty_g05_c02.jpg A player in a red uniform prepares to take a penalty kick against a goalkeeper in a green kit, viewed from a mid-distance behind the player with a stadium background featuring a crowd and vibrant advertising boards. +v_SoccerPenalty_g04_c01.jpg A soccer player in a blue kit is poised to take a penalty kick, approaching the ball from the left side of the image, while the goalkeeper in a red jersey prepares to dive; the scene unfolds on a bright green field with a crowded stadium in the background, featuring billboards and spectators. +v_SoccerPenalty_g25_c04.jpg A player in a white uniform is captured from a side angle approaching the soccer ball positioned on a closely-cropped, illuminated grass field with a fenced-off crowd and buildings as the dimly lit background, while the goalkeeper in a red shirt stands near a white goal. +v_SoccerPenalty_g14_c06.jpg A soccer player in a red uniform stands ready to take a penalty kick on a grassy field, viewed from an elevated angle, with a goalkeeper in a blue kit positioned in front of the net, while the background features a crowd of spectators and advertising banners. +v_SoccerPenalty_g08_c02.jpg The image depicts a soccer penalty with a player wearing an orange jersey and lime green shorts poised to kick the ball towards the goal where a goalkeeper in a blue jersey stands ready, set on a grass field bordered by advertising boards in a stadium environment. +v_SoccerPenalty_g18_c05.jpg A player in a red and white uniform is running towards the soccer ball positioned on the penalty spot, with the goalkeeper in black standing in front of the net on an indoor green turf field enclosed by a metallic, warehouse-style structure. +v_SoccerPenalty_g03_c05.jpg The image depicts a soccer player in a white uniform preparing to take a penalty kick from a side view, with a green field and a crowded stadium in the background, as the goalkeeper in a darker kit stands ready inside the goal. +v_SoccerPenalty_g18_c04.jpg The image shows a soccer player in a red and white uniform striking the ball towards a goal while a goalkeeper in black dives to the left, set against an indoor field with green turf and a metallic wall with patches of white and yellow in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Still_Rings_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Still_Rings_descriptions.txt new file mode 100644 index 0000000..e626fc2 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Still_Rings_descriptions.txt @@ -0,0 +1,10 @@ +v_StillRings_g13_c02.jpg The still rings are metallic and suspended in an indoor arena with bright lights, viewed from a slightly upward angle, with a gymnast in red pants performing an upside-down pose against a backdrop of large stadium seating and electronic displays. +v_StillRings_g12_c01.jpg The Still Rings appear as dark, circular loops with a slightly reflective texture, positioned vertically amidst a dim, crowded background, suggesting an indoor gymnastic arena. +v_StillRings_g03_c05.jpg A gymnast in a red outfit hangs upside down from the still rings against an indoor sports arena backdrop with a scoreboard and tiered seating visible, all depicted in low resolution. +v_StillRings_g19_c02.jpg A gymnast is positioned in a routine stance on blue-matted flooring within a competitive arena, wearing red pants and a black and white top, with officials and spectators in the blurred background. +v_StillRings_g25_c04.jpg The image shows a gymnast in white attire holding a horizontal pose on red still rings suspended under bright lights, with a blurred, crowded arena in the background. +v_StillRings_g12_c03.jpg A gymnast in an upside-down pose holds steady on red still rings against an arena background filled with spectators, vibrant banners, and a large screen, with the athlete wearing a beige and red outfit. +v_StillRings_g20_c03.jpg The still rings appear metal and slightly reflective, hanging from long cables in an indoor stadium with a blurred audience and blue seating, while an athlete in mid-performance is suspended, highlighting a dynamic pose. +v_StillRings_g06_c04.jpg A gymnast is captured mid-pose on the still rings, wearing white attire against a backdrop of blue and red mats, with various national flags and observers blurred in the low-resolution setting. +v_StillRings_g24_c04.jpg A gymnast is performing an inverted hang on still rings, wearing a yellow and white outfit, with blue support structures visible, set against a dark, indoor sports arena background. +v_StillRings_g17_c02.jpg The still rings are suspended from long cables in an indoor arena with a large crowd and bright overhead lights, while a gymnast wearing red pants performs an upside-down maneuver, demonstrating strength and balance. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Sumo_Wrestling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Sumo_Wrestling_descriptions.txt new file mode 100644 index 0000000..8792faa --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Sumo_Wrestling_descriptions.txt @@ -0,0 +1,10 @@ +v_SumoWrestling_g18_c01.jpg Two sumo wrestlers with contrasting mawashi stand poised in a sandy dohyo, with one in blue facing away and the other in white facing forward, surrounded by a dimly-lit, sparsely populated arena featuring tiered seating, capturing a dynamic, mid-match stance. +v_SumoWrestling_g08_c01.jpg The image depicts two sumo wrestlers in white mawashi, grappling mid-match on a raised platform in a spacious indoor setting with a red-carpeted floor and dim ambient lighting, with spectators visible in the background. +v_SumoWrestling_g12_c04.jpg A sumo wrestler in a blue mawashi is captured mid-bout from an elevated angle, grasping an opponent on a sandy wrestling ring surrounded by spectators seated closely in dimly lit arena. +v_SumoWrestling_g05_c02.jpg In the low-resolution image, two sumo wrestlers in traditional mawashi, one green and the other beige, are captured in a dynamic mid-grapple pose on a sandy, elevated dohyo, surrounded by a distinctive maroon checkered mat and an audience intently observing from various positions around the arena. +v_SumoWrestling_g15_c04.jpg The image depicts two sumo wrestlers in dark mawashi, grappling in the center of a circular clay ring with an audience surrounding them, viewed from an angle that highlights their powerful stances and muscular postures, under soft indoor lighting. +v_SumoWrestling_g16_c02.jpg Two sumo wrestlers in traditional mawashi are engaged in a grappling stance on a sandy dohyo, surrounded by a wooden barrier, with an official wearing a purple patterned robe visible in the foreground. +v_SumoWrestling_g10_c01.jpg A pair of sumo wrestlers in loincloths are locked in a grapple on a bright green ring against a dimly lit indoor background with several onlookers, exhibiting contrasting skin tones and dynamic postures amidst the low-resolution image. +v_SumoWrestling_g04_c01.jpg The image shows two sumo wrestlers with bare torsos and traditional mawashi in a yokozuna pose on a sandy-colored ring, under a high-roofed indoor arena, with an audience in blurred detail indicating an intense, competitive match environment. +v_SumoWrestling_g08_c05.jpg In a brightly lit indoor setting with chandeliers and an audience, three sumo wrestlers wearing traditional mawashi stand on a red-lit platform, with two grappling and one observing, all against the backdrop of a large screen and elegant drapery. +v_SumoWrestling_g13_c01.jpg Two sumo wrestlers with bare torsos and traditional mawashi belts in a neutral hue engage in a grappling stance on a sandy ring, with a dimly lit venue and blurred spectators in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Surfing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Surfing_descriptions.txt new file mode 100644 index 0000000..3b522af --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Surfing_descriptions.txt @@ -0,0 +1,10 @@ +v_Surfing_g02_c05.jpg A surfer, partially obscured by a large, translucent teal wave, rides along its inner curve with a visible splash of white sea foam around them, set against a distant blue horizon. +v_Surfing_g22_c02.jpg A lone surfer, wearing a dark wetsuit, is captured mid-ride on a large gray-blue wave with white froth, viewed from a distance in a low-res image, with a vast expanse of ocean and a faint cloudy sky as the backdrop. +v_Surfing_g08_c06.jpg A surfer in a dark wetsuit is riding a large, powerful wave with a deep blue color, seen from a side angle with the wave curling over in a classic tube shape, set against a misty, oceanic background, with another person on a surfboard paddling nearby. +v_Surfing_g10_c02.jpg A surfer dressed in a dark wetsuit is riding a wave with white frothy texture in the foreground, viewed from a side angle against a backdrop of docked boats on a calm blue sea. +v_Surfing_g12_c01.jpg A surfer rides a breaking turquoise wave, their silhouette leaning forward with arms outstretched, against a background of a concrete structure and sparse greenery under a clear sky. +v_Surfing_g12_c06.jpg A surfer in a green and black wetsuit rides a translucent blue wave with white foam at the crest, viewed from the side against a backdrop of a concrete barrier and fence, suggesting an artificial wave pool environment. +v_Surfing_g06_c01.jpg A surfer in a red wetsuit, crouched low on a white surfboard, rides a choppy wave with a wooden pier visible in the misty ocean background. +v_Surfing_g19_c01.jpg A surfer in a white shirt balances skillfully on a blue-green wave viewed from the side, with a foamy white crest and an overcast sky in the background, creating a dynamic and energetic scene despite the low resolution. +v_Surfing_g21_c02.jpg A surfer dressed in a dark wetsuit is riding inside a large, curling green wave with white frothy water surrounding, viewed from a side angle against a clear sky and reflecting ocean surface. +v_Surfing_g03_c03.jpg A surfer rides a large, dark blue wave with frothy white spray at the crest, viewed from a distance, under a soft, overcast sky. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Swing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Swing_descriptions.txt new file mode 100644 index 0000000..b2421e6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Swing_descriptions.txt @@ -0,0 +1,10 @@ +v_Swing_g16_c03.jpg The swing, featuring a blue and brown seat, is suspended by chains and occupied by a child in a blue jacket, centered against a background of a brick building, grassy area, and clear sky. +v_Swing_g23_c02.jpg A blue plastic bucket swing with a contoured backrest and chain attachments is seen from the front, set against a wood chip-covered playground, with grassy areas visible in the background. +v_Swing_g20_c03.jpg A red-framed metal swing set with multiple seats is situated on a sandy playground, featuring visible blue posts in the background and surrounded by trees, captured from a frontal viewpoint. +v_Swing_g16_c04.jpg A child wearing a blue outfit is seated on a swing with metal chains, set against a playground with a sandy surface and a brick building in the background. +v_Swing_g15_c04.jpg The swing set features a red metal frame with horizontal and vertical bars, situated in a park setting with trees in the background, while various individuals interact with the swing, enhancing the dynamic, playful scene. +v_Swing_g22_c02.jpg A shadowed figure stands beneath the frame of an empty swingset on a sunlit, patterned ground with a backdrop of green grass and a building. +v_Swing_g09_c02.jpg The swing set features a red metal frame with three swings: a child on a yellow plastic seat and two other swings, set against a grassy, tree-filled background with a wooden fence, viewed slightly from the side. +v_Swing_g22_c01.jpg The swing features a small seat suspended by two light-colored ropes or chains, with a child seated while an adult stands nearby on a metal grid surface in a sunny backyard with grass and a house in the background. +v_Swing_g03_c02.jpg A person is captured mid-air on a swing against a backdrop of a grassy area with several parked vehicles, wearing blue jeans and a white top, while others stand observing nearby. +v_Swing_g21_c05.jpg The swing appears orange with a glossy texture, viewed from the side, hanging outdoors near a tree with a blurred background featuring grass and a painted white wooden fence. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Table_Tennis_Shot_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Table_Tennis_Shot_descriptions.txt new file mode 100644 index 0000000..643d8d4 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Table_Tennis_Shot_descriptions.txt @@ -0,0 +1,10 @@ +v_TableTennisShot_g25_c06.jpg The image shows a player executing a forehand shot at a table tennis table with a green surface and black net, viewed from a side angle in a room with beige walls, featuring a red rug on the floor and soft, indoor lighting. +v_TableTennisShot_g14_c05.jpg A player in dark athletic attire executes a forehand stroke on a blue table tennis table positioned in a spacious indoor facility with orange flooring, white walls, and distinct overhead metal structures. +v_TableTennisShot_g20_c03.jpg A player in a black outfit is captured mid-swing against a plain indoor background with a blue door and mirror, emphasizing movement towards the table tennis net. +v_TableTennisShot_g08_c03.jpg A player in a red shirt executes a backhand shot at a blue table with a net, set against a blurred background of white walls and a green banner. +v_TableTennisShot_g04_c07.jpg A player in a yellow shirt prepares to strike a small white ball on a green table tennis table, with a brick-patterned wall and beige background, featuring a visible motion blur that suggests movement. +v_TableTennisShot_g01_c06.jpg A player in motion with a blurred black and gray outfit, poised to hit an oncoming ball against a blue table tennis table, set against a wooden panel wall and bold blue padding in the background. +v_TableTennisShot_g08_c04.jpg A player in a red shirt and orange wristband is poised for a table tennis shot, captured from a side angle, against a backdrop featuring green barriers with white text, with the blue table and net prominently in the foreground. +v_TableTennisShot_g19_c01.jpg The image depicts an indoor table tennis shot with a player in white and red attire executing a forehand, surrounded by a netted table, against a backdrop of blue and wooden panels. +v_TableTennisShot_g12_c01.jpg The table tennis shot captures a player in an athletic pose wearing a bright orange shirt with blue sleeves, poised to hit a ball in a plain indoor setting with a dark curtain backdrop and a visible blue table edge. +v_TableTennisShot_g24_c03.jpg A person in a dark shirt poised for a backhand shot with a blurred background featuring a wooden-paneled room and another table with players. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Tai_Chi_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Tai_Chi_descriptions.txt new file mode 100644 index 0000000..7fd1849 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Tai_Chi_descriptions.txt @@ -0,0 +1,10 @@ +v_TaiChi_g18_c03.jpg A person dressed in light-colored, loose-fitting clothing is performing a low forward stance with one arm extended forward and the other lowered, set on a textured stone surface with a natural, tree-lined park environment in the background. +v_TaiChi_g08_c04.jpg A person is performing Tai Chi on a grassy field, wearing dark clothing and striking a side-stance pose with one hand raised, surrounded by a backdrop of lush green trees under bright daylight. +v_TaiChi_g08_c01.jpg A person is performing Tai Chi in a park, wearing dark clothing that contrasts with the lush green grass and tree-filled background, standing in a balanced pose with arms raised at chest level, beneath a canopy of sunlight-dappled trees. +v_TaiChi_g09_c01.jpg A person wearing a white shirt and dark pants, standing in a balanced pose against a light beige indoor background with minimal features, including a plain door. +v_TaiChi_g20_c03.jpg A person in a white flowing outfit performs a low forward lunge pose with clasped hands in a grassy outdoor setting, surrounded by trees and rustic buildings in the background. +v_TaiChi_g14_c03.jpg A person in a blue flowing robe is seen from the back performing a Tai Chi pose on a grassy hilltop with mountains in the distant, hazy background. +v_TaiChi_g17_c02.jpg A person in a white traditional Tai Chi outfit performs a poised, graceful stance with arms extended, set against a blurred green and mountainous background. +v_TaiChi_g02_c01.jpg A person in beige, loose-fitting clothing performs a Tai Chi pose with arms extended forward against a backdrop of large windows and a flat, paved surface, showcasing a soft, flowing texture that contrasts with the rigid, industrial environment. +v_TaiChi_g02_c03.jpg The individual is dressed in a light beige, flowing silk outfit, standing in an open stance with one arm raised and the other extended forward, in front of a grid-windowed building with a neatly trimmed hedge below. +v_TaiChi_g25_c04.jpg A person wearing a shiny blue satin outfit is performing a Tai Chi pose with arms extended forward in a lush green park surrounded by dense bushes and trees. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Tennis_Swing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Tennis_Swing_descriptions.txt new file mode 100644 index 0000000..855870c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Tennis_Swing_descriptions.txt @@ -0,0 +1,10 @@ +v_TennisSwing_g13_c01.jpg A tennis player in a dark outfit is captured in a moment of active movement on a sunlit court with a fuzzy green surface, viewed from a low angle with trees and fencing in the background, swinging towards a yellow tennis ball. +v_TennisSwing_g24_c04.jpg The image shows a tennis player in a side-view pose preparing to hit a forehand on a green court, wearing a red shirt and beige shorts with greenery and a fence in the background, under a slightly overcast sky. +v_TennisSwing_g05_c01.jpg A person in a white shirt and black shorts is captured in mid-swing on an indoor tennis court with a blue tarp background, evident from their dynamic pose and spread legs, while the green court surface enhances the sports setting. +v_TennisSwing_g19_c06.jpg The image shows a person in black shorts and a white shirt poised mid-swing on an indoor clay tennis court, viewed from behind, with the background featuring a high ceiling, fluorescent lights, and a net dividing the court. +v_TennisSwing_g02_c04.jpg A person in a bright yellow top and dark pants is captured mid-backhand swing on a tennis court with a chain-link fence backdrop, with trees partially visible through a netted area, and a red sports bag placed nearby. +v_TennisSwing_g01_c01.jpg A player in a white shirt and dark pants executes a tennis swing in mid-jump on an outdoor court, surrounded by tall trees and green fencing, captured from a side angle with a blurred, motion-focused appearance. +v_TennisSwing_g24_c02.jpg A player in a red shirt and white shorts is positioned in a side-view stance on a green tennis court, swinging a racket near a fenced background with tall trees partially obstructed by the netting. +v_TennisSwing_g11_c07.jpg A person in a blue shirt and black shorts is captured mid-tennis swing on an indoor court with a blue and green surface, set against a dark curtain background, holding a racket in their right hand with an open stance. +v_TennisSwing_g16_c05.jpg A player in a white shirt and blue shorts is captured in a forehand swing on a green tennis court, with a blurred residential building visible behind a black chain-link fence. +v_TennisSwing_g01_c04.jpg A person in a white shirt and dark pants is captured mid-swing on a green tennis court from the side, with blurred motion indicating a dynamic action, against a backdrop of wire fences and trees under overcast skies. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Throw_Discus_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Throw_Discus_descriptions.txt new file mode 100644 index 0000000..c4ae750 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Throw_Discus_descriptions.txt @@ -0,0 +1,10 @@ +v_ThrowDiscus_g12_c02.jpg The throw discus in the image is not distinctly visible due to the low resolution; however, the scene features an indoor athletic area with curtains and light shadows, where a person is captured in a dynamic pose on a round platform. +v_ThrowDiscus_g16_c03.jpg The image depicts an athlete in mid-spin position on a rectangular mat, wearing a blue shirt and black pants, against a spacious indoor sports facility backdrop with a prominent red sheet hanging from the ceiling and metal framework visible. +v_ThrowDiscus_g24_c05.jpg The image shows an athlete mid-action in a discus throwing stance, wearing a red and blue uniform against a brightly lit stadium setting with illuminated pillars and a distant audience in the dark background. +v_ThrowDiscus_g08_c03.jpg The throw discus appears as a small, indistinct object in motion, surrounded by a track and field environment with visible stadium elements and athletes, viewed from a slightly elevated angle with a low resolution that blurs specific details. +v_ThrowDiscus_g08_c02.jpg The image shows a low-resolution scene of an athlete preparing to throw a discus in a net-enclosed area, with subtle colors and an indistinct background featuring several observers and a distant building. +v_ThrowDiscus_g15_c02.jpg The throw discus appears dark and round, seen from a side angle with the athlete in motion, situated in a gravel circle within an outdoor sports field, surrounded by a blurred audience in the background. +v_ThrowDiscus_g18_c04.jpg A man in athletic attire is captured mid-throw in front of a netted cage, with a blurred discus in motion and a nondescript background of buildings and sports field equipment. +v_ThrowDiscus_g05_c04.jpg A silhouetted athlete is poised in a discus throwing cage with a faint hint of green grass and distant trees beneath a sunlit sky, as they stand atop a circular concrete platform, framed by a net that adds a textured grid overlay to the scene. +v_ThrowDiscus_g11_c07.jpg The thrower is captured in a dynamic mid-action pose with blurred motion lines, set in a fenced athletic field featuring a visible discus cage and blurred spectators in the background. +v_ThrowDiscus_g07_c04.jpg The discus, appearing muted and indistinct in color while held in the thrower's extended hand, is set against a backdrop of blurred greenery and fenced enclosure, capturing a dynamic pose mid-rotation. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Trampoline_Jumping_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Trampoline_Jumping_descriptions.txt new file mode 100644 index 0000000..485c471 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Trampoline_Jumping_descriptions.txt @@ -0,0 +1,10 @@ +v_TrampolineJumping_g15_c01.jpg A person is jumping on a trampoline enclosed by a net, with dappled sunlight filtering through trees in the background and wearing a light-colored top and dark pants. +v_TrampolineJumping_g05_c01.jpg A silhouette of a person in a striped shirt and cap stands mid-jump on a trampoline with a cloudy sky and rooftops visible in the background. +v_TrampolineJumping_g20_c01.jpg Two children are energetically jumping on a dark-colored trampoline with a mesh enclosure, seen from a side angle against a backdrop of grass and distant buildings, displaying dynamic mid-air poses. +v_TrampolineJumping_g19_c06.jpg A person in a white top and gray pants is captured mid-air in a jumping pose on a trampoline, surrounded by others in colorful outfits, with a background of lush green trees. +v_TrampolineJumping_g20_c04.jpg A child with arms spread is captured mid-air above a dark, circular trampoline set in a fenced yard with a house visible in the background, while another child sits on the trampoline, both framed against a pale sky. +v_TrampolineJumping_g08_c04.jpg A group of individuals in various colorful clothing are engaged in a jumping activity on a trampoline, with the low-resolution image showing blurred motion against a bright, hazy background with indistinct natural surroundings. +v_TrampolineJumping_g09_c02.jpg A person wearing a dark top and light pants is captured mid-air on a trampoline with a black frame, set in an open area with trees and a white trailer in the background, amidst a gravel and dirt ground. +v_TrampolineJumping_g17_c03.jpg A group of people wearing dark clothing are standing and moving on a large, circular trampoline with a dark jumping surface and blue safety poles, set in a sparsely wooded backyard with leafless trees and a wooden fence. +v_TrampolineJumping_g25_c03.jpg A person in a mid-air jump on a trampoline, wearing dark clothes, is surrounded by a tree-filled background with sunlight filtering through, creating a mix of light and shadow. +v_TrampolineJumping_g23_c01.jpg A child in blue shorts and a dark top is captured mid-jump on a trampoline, viewed slightly from the side, with a wooded background and another child wearing a pink top standing nearby. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Typing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Typing_descriptions.txt new file mode 100644 index 0000000..e284d0d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Typing_descriptions.txt @@ -0,0 +1,10 @@ +v_Typing_g10_c04.jpg A pair of hands is typing on a beige keyboard from a side angle, set against a dimly lit environment with green plants and a decorative item in the background, while a computer screen is partially visible. +v_Typing_g08_c01.jpg Hands are typing on a black laptop keyboard, viewed from above, with a screen showing an open document against a blurred background. +v_Typing_g05_c01.jpg A person is sitting in an upright position typing on a black ergonomic split keyboard with clusters of black keys marked by blue highlights, set against a plain indoor background with visible desk edges. +v_Typing_g18_c03.jpg A blurred hand is typing on a black keyboard with figurines on a shelf in the background, seen from a side angle with soft-focus texture. +v_Typing_g14_c02.jpg The typing involves hands with prominent tattoos poised over a beige IBM keyboard with visible text on the keys, set against a wooden desk background with a blurred, white earbud off to one side. +v_Typing_g01_c05.jpg A pair of hands is typing on a compact, black mechanical keyboard with visible keycaps, viewed from above, set against a wooden desk background with some white papers partially visible. +v_Typing_g18_c01.jpg A pair of hands is typing on a black keyboard in a close-up view, with a blurred background showing a computer screen and indistinct figurines on a shelf. +v_Typing_g05_c05.jpg A person is typing on a black ergonomic split keyboard with blue backlit keys, seen from an overhead angle, against a background of a light brown desk surface. +v_Typing_g09_c07.jpg A hand with lightly toned skin is typing on a black keyboard, viewed from the side, with a detailed, monochromatic mug featuring a portrait sitting nearby on a reflective surface. +v_Typing_g13_c03.jpg A pair of hands with a ring on one finger is typing on a white keyboard with grey keys on a wooden desk, viewed from an angle slightly above and to the side, set against a minimal background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Uneven_Bars_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Uneven_Bars_descriptions.txt new file mode 100644 index 0000000..cb36bd3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Uneven_Bars_descriptions.txt @@ -0,0 +1,10 @@ +v_UnevenBars_g01_c02.jpg In the image, a gymnast in mid-air performs above metallic, silver uneven bars within a dimly lit arena setting, outlined by blurred rows of spectators. +v_UnevenBars_g10_c04.jpg The uneven bars feature a gymnast in mid-air with outstretched arms, wearing a white outfit, against a dimly lit indoor arena with a distant, blurred audience in the background and overhead lighting casting a spotlight. +v_UnevenBars_g20_c04.jpg The image shows a blurred view of a gymnast performing on the uneven bars with red supports and metallic bars, set against a brightly lit arena filled with spectators and multicolored banners. +v_UnevenBars_g10_c03.jpg The uneven bars, positioned in a large indoor arena with a blurred audience backdrop, consist of sleek metallic poles with a visible gymnast in motion above, emphasizing the dynamic athletic environment. +v_UnevenBars_g19_c01.jpg A gymnast in mid-routine on metal uneven bars, viewed from the side with a large indoor stadium audience in the blurred background under dim lighting, showcases wooden textured bars with a gray or metallic famework. +v_UnevenBars_g24_c01.jpg The uneven bars appear with red supports and metallic bars against a backdrop of a gymnasium filled with spectators, featuring a blue mat underneath and additional equipment visible. +v_UnevenBars_g01_c01.jpg The uneven bars are positioned in a large indoor arena with a dimly lit, spacious background featuring tiered seating; the bars themselves are metallic with a smooth, polished texture, and a gymnast in motion partially obscures them from a side angle. +v_UnevenBars_g13_c04.jpg The uneven bars are metallic with a smooth texture, set against a large, crowded indoor arena, and a gymnast in a red leotard is mid-swing near the higher bar, emphasizing dynamic movement and athletic focus. +v_UnevenBars_g15_c03.jpg The uneven bars appear metallic and sleek, seen from a side angle in a sports arena with a blue-tinted audience and sponsor banners in the background, highlighting the gymnast mid-routine. +v_UnevenBars_g05_c01.jpg The uneven bars are metallic with a light wooden finish, shown from a slightly elevated side view in a gymnastics setting, surrounded by people and equipment against a green and beige backdrop. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Volleyball_Spiking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Volleyball_Spiking_descriptions.txt new file mode 100644 index 0000000..d29c43c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Volleyball_Spiking_descriptions.txt @@ -0,0 +1,10 @@ +v_VolleyballSpiking_g19_c02.jpg The image shows a volleyball spiking action with a player in mid-air wearing a white shirt and patterned shorts, captured from the side in a gymnasium with high arched ceilings, basketball hoops, and a white and red court floor. +v_VolleyballSpiking_g07_c03.jpg A volleyball player in a white uniform is captured at the peak of a spike with their arm extended above a dark indoor court, distinguished by red and white wall lines and a sparse audience in the background. +v_VolleyballSpiking_g03_c03.jpg A volleyball match indoors on a wooden court shows a player in mid-air spiking the ball over the net, surrounded by teammates in black and white uniforms, with banners and a gym setting as the blurred background. +v_VolleyballSpiking_g13_c03.jpg In a gymnasium with striped walls, a player in dark attire leaps high with arms extended for a spike, while a coach observes, highlighting dynamic movement and athletic intensity. +v_VolleyballSpiking_g06_c01.jpg The image shows a volleyball spiking action captured from a side angle in a gymnasium with wooden floors and muted walls, where players wearing dark clothing are gathered mid-action, and the spiker is dynamically elevated above the others with arms poised above their head. +v_VolleyballSpiking_g02_c04.jpg A volleyball spiker in yellow shorts and a dark jersey is captured mid-air in a side view with an indoor court background, featuring a basketball hoop and a row of bench-seated spectators. +v_VolleyballSpiking_g11_c02.jpg In a gymnasium with dark walls adorned with banners, a volleyball player in motion, seen from mid-court, is poised under fluorescent lighting for a spike, surrounded by teammates in blue uniforms and a visible net splitting the playing area. +v_VolleyballSpiking_g09_c06.jpg A volleyball player in a white jersey spiking the ball mid-air, viewed from the side, with an outdoor sandy court and spectators in the background, and a distinctive blurred motion emphasizing the intensity of the action. +v_VolleyballSpiking_g15_c02.jpg The image shows a volleyball player in a white jersey and blue shorts leaping to spike the ball against a cloudy sky, with a net and scattered spectators in the background on a grassy field. +v_VolleyballSpiking_g11_c06.jpg In the low-resolution image, a volleyball player wearing a contrasting uniform color is captured mid-air in an angular side view while spiking the ball over the net in an indoor gymnasium with high ceilings, featuring lined court markings and visible lighting fixtures in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Walking_With_Dog_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Walking_With_Dog_descriptions.txt new file mode 100644 index 0000000..e522804 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Walking_With_Dog_descriptions.txt @@ -0,0 +1,10 @@ +v_WalkingWithDog_g24_c02.jpg A person wearing light-colored pants and a blue shirt is walking a large, fluffy dog with a mottled gray and white coat across a vast grassy field. +v_WalkingWithDog_g16_c01.jpg A person wearing a red and black jacket walks a small, short-haired gray dog on a leash along a concrete sidewalk bordered by grass, with the dog slightly ahead and both appearing in profile view. +v_WalkingWithDog_g08_c04.jpg A person wearing dark clothing is walking a brown dog on a leash along a snow-lined path through a park with sparse trees and patches of green grass visible in the slightly blurred background. +v_WalkingWithDog_g22_c04.jpg Amidst a snowy environment, a person in a silhouette view walks on a snow-covered path with a dark-colored dog on a leash, with blurred vehicles and a structure in the background adding to the overcast atmosphere. +v_WalkingWithDog_g12_c05.jpg A person in a light shirt and dark shorts walks three dogs of varying dark colors on a sunny suburban sidewalk, with greenery and a house faintly visible in the background. +v_WalkingWithDog_g02_c03.jpg A person wearing a dark jacket and jeans walks a light-colored dog on a snowy path, surrounded by trees and distant mountainous terrain. +v_WalkingWithDog_g15_c04.jpg A young child in a light outfit walks a black-and-white dog on a red leash in a dirt path surrounded by bushy, green foliage and a few visible rocks, with the dog moving ahead energetically. +v_WalkingWithDog_g06_c01.jpg The image shows a person in a dark purple shirt walking a dark-colored dog on a paved residential street with neatly cut grass and a tree providing shade in the background. +v_WalkingWithDog_g24_c05.jpg A person in a blue shirt and white pants walks in profile view across a sunlit grassy area, accompanied by a large, fluffy black and white dog, with dark tree shadows in the background. +v_WalkingWithDog_g18_c04.jpg A person wearing dark clothing is walking a large dog across a grassy field during dusk, with a dimly lit sky and distant tree line in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Wall_Pushups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Wall_Pushups_descriptions.txt new file mode 100644 index 0000000..115968e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Wall_Pushups_descriptions.txt @@ -0,0 +1,10 @@ +v_WallPushups_g07_c05.jpg A person with light clothing and shoulder-length hair stands facing a plain light gray wall, performing a wall push-up with both palms flat on the surface, in a minimalistic indoor setting with a visible door to the side. +v_WallPushups_g09_c05.jpg A person wearing a blue shirt and beige pants is leaning forward against a closed door for support, performing wall pushups in a room with light-colored walls, a blue circular wall-mounted object on the left, and office furniture including a chair and a desk on the right. +v_WallPushups_g05_c02.jpg A person in a navy outfit is performing a wall push-up against a smooth, solid dark blue wall, viewed from behind, with metallic grid-like flooring visible at the bottom. +v_WallPushups_g20_c01.jpg A person in a white shirt and grey pants performs a wall pushup with an angled body against a glass wall, in a gym setting with exercise equipment and another observing individual. +v_WallPushups_g11_c03.jpg A person in a black outfit is performing wall pushups against a beige wall from a side angle, with a man in business attire observing nearby, surrounded by gym-related materials in a room with muted lighting. +v_WallPushups_g02_c01.jpg A person in a dark outfit performs wall pushups with straight arms, facing a pale-colored wall in a living room setting with a beige carpet, wooden coffee table, black-and-white checkered sofa, and staircase leading upwards. +v_WallPushups_g15_c02.jpg A person in a green striped shirt and dark pants performs a wall pushup with their feet on a mint green floor, leaning against a pale pink door in a room with a light-colored half wall and glass blocks, demonstrating an inclined standing pose. +v_WallPushups_g17_c04.jpg A person dressed in black with pink-striped pants stands facing a mirrored wall in a gym environment, performing a wall pushup with hands placed on the reflection, surrounded by equipment like dumbbells and exercise machines. +v_WallPushups_g09_c03.jpg A person wearing a blue shirt and light-colored pants is performing wall pushups against a light tan door in an indoor room with wooden flooring, using a chair for balance amidst a setting that includes a blue circular wall device and office equipment. +v_WallPushups_g16_c03.jpg A person wearing a black outfit is performing wall pushups at a side view, leaning against a plain white wall in a minimally furnished, light-colored room. diff --git a/utils/area/descriptions/ucf/generated_descriptions/Writing_On_Board_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions/Writing_On_Board_descriptions.txt new file mode 100644 index 0000000..a640da5 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/Writing_On_Board_descriptions.txt @@ -0,0 +1,10 @@ +v_WritingOnBoard_g05_c01.jpg The writing on the whiteboard, surrounded by a plant-filled and softly lit room, features black marker annotations on a diagram, with the person in a partial side view pointing at it. +v_WritingOnBoard_g22_c07.jpg A person is seen from the back writing on a dark chalkboard covered with mathematical equations in white chalk, featuring diagrams and symbols; the background includes a classroom setting with overhead lights and part of a wooden framed board. +v_WritingOnBoard_g06_c06.jpg The image depicts a whiteboard with mathematical equations written in black marker, featuring diagrams above the writing, viewed from an angle slightly to the side, with a person in the foreground writing on it, and the surrounding environment appears to be an indoor educational setting. +v_WritingOnBoard_g22_c01.jpg A person in a striped shirt is writing on a chalkboard with various mathematical equations, against a textured blackboard background with faint smudges, viewed from behind in a classroom setting. +v_WritingOnBoard_g25_c01.jpg A person with long hair stands writing "1911 E. Rut" on a dark chalkboard in a classroom setting, viewed from behind in casual attire, with a slightly blurred background. +v_WritingOnBoard_g19_c02.jpg A man in a dark shirt writes with white chalk on a worn, green chalkboard with text referencing "Stanford" and "CS106A," set in a classroom environment. +v_WritingOnBoard_g01_c03.jpg A person in plaid shirt writes on a large whiteboard with faded writing visible, including text in black and red markers, set against a minimalistic classroom environment with a gray wall background. +v_WritingOnBoard_g16_c02.jpg The writing on the board is white chalk text on a dark chalkboard, viewed from the back of a classroom with students seated, while a person stands directly in front of the board writing with their right hand. +v_WritingOnBoard_g22_c05.jpg The image shows a slightly angled view of a dark green chalkboard with a matte texture, featuring dense white chalk writing and mathematical equations, set in a classroom environment with beige walls and a person writing on the board. +v_WritingOnBoard_g09_c05.jpg A person in a blue checkered shirt is writing on a large whiteboard filled with black and blue text and diagrams, surrounded by a plain light-colored wall, with some text structured in bullet points and a grid-like sketch, despite the image's low resolution. diff --git a/utils/area/descriptions/ucf/generated_descriptions/classnames.txt b/utils/area/descriptions/ucf/generated_descriptions/classnames.txt new file mode 100644 index 0000000..2d6a574 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions/classnames.txt @@ -0,0 +1,100 @@ +Apply Eye Makeup +Apply Lipstick +Archery +Baby Crawling +Balance Beam +Band Marching +Baseball Pitch +Basketball +Basketball Dunk +Bench Press +Biking +Billiards +Blow Dry Hair +Blowing Candles +Body Weight Squats +Bowling +Boxing Punching Bag +Boxing Speed Bag +Breast Stroke +Brushing Teeth +Clean And Jerk +Cliff Diving +Cricket Bowling +Cricket Shot +Cutting In Kitchen +Diving +Drumming +Fencing +Field Hockey Penalty +Floor Gymnastics +Frisbee Catch +Front Crawl +Golf Swing +Haircut +Hammer Throw +Hammering +Hand Stand Pushups +Handstand Walking +Head Massage +High Jump +Horse Race +Horse Riding +Hula Hoop +Ice Dancing +Javelin Throw +Juggling Balls +Jump Rope +Jumping Jack +Kayaking +Knitting +Long Jump +Lunges +Military Parade +Mixing +Mopping Floor +Nunchucks +Parallel Bars +Pizza Tossing +Playing Cello +Playing Daf +Playing Dhol +Playing Flute +Playing Guitar +Playing Piano +Playing Sitar +Playing Tabla +Playing Violin +Pole Vault +Pommel Horse +Pull Ups +Punch +Push Ups +Rafting +Rock Climbing Indoor +Rope Climbing +Rowing +Salsa Spin +Shaving Beard +Shotput +Skate Boarding +Skiing +Skijet +Sky Diving +Soccer Juggling +Soccer Penalty +Still Rings +Sumo Wrestling +Surfing +Swing +Table Tennis Shot +Tai Chi +Tennis Swing +Throw Discus +Trampoline Jumping +Typing +Uneven Bars +Volleyball Spiking +Walking With Dog +Wall Pushups +Writing On Board \ No newline at end of file diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Apply_Eye_Makeup_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Apply_Eye_Makeup_descriptions.txt new file mode 100644 index 0000000..ecaef51 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Apply_Eye_Makeup_descriptions.txt @@ -0,0 +1,3 @@ +v_ApplyEyeMakeup_g02_c04.jpg The image depicts a scene with two people involved in an eye makeup application, where the room is tinted with an augmented pinkish hue, with one person applying makeup while the other sits; the viewpoint captures the side of the applicator with colorful storage shelves in the background. +v_ApplyEyeMakeup_g06_c04.jpg The image shows a person applying dark eye makeup with a brush, viewed from a frontal angle, with low resolution and subdued lighting creating a greenish hue, obscuring fine details of the surrounding environment. +v_ApplyEyeMakeup_g07_c05.jpg The image shows a person applying eye makeup with a brush on a subject's closed eyelid from a frontal pose, highlighting augmented pale tones and smooth textures on the eyelid, with no significant occlusion despite the low resolution. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Apply_Lipstick_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Apply_Lipstick_descriptions.txt new file mode 100644 index 0000000..fc37cdb --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Apply_Lipstick_descriptions.txt @@ -0,0 +1,3 @@ +v_ApplyLipstick_g21_c01.jpg A low-resolution image showing a person viewed from the side with a ponytail, holding a small open compact in one hand while seemingly applying a light-colored lipstick with the other hand, in a dimly lit environment with brown and beige tones creating a subdued atmosphere. +v_ApplyLipstick_g16_c02.jpg A woman is applying a dark lipstick with a glossy finish, viewed from an angled frontal perspective, in a room with green walls; her hand is partially occluded by her face. +v_ApplyLipstick_g13_c03.jpg The image shows a woman applying lipstick with a thin brush, in an environment with a backdrop of red brick wall, featuring a reddish-brown hue overall and a side view showing her concentrating on the task with minimal occlusion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Archery_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Archery_descriptions.txt new file mode 100644 index 0000000..ea022bb --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Archery_descriptions.txt @@ -0,0 +1,3 @@ +v_Archery_g15_c07.jpg A person is seen from a side angle holding a brown bow in a green, grassy environment with a blurred forest background, wearing a quiver with yellow arrows on their back, looking towards a distant target. +v_Archery_g11_c06.jpg An individual dressed in dark clothing with a hat stands on a tall, white chimney holding a bow, with a background of trees and a roof, in a scene with muted colors suggestive of early morning or evening light. +v_Archery_g01_c05.jpg The image shows a person standing sideways holding a bow with visible strings against a green background, appearing in a reddish hue due to color augmentation, with their head and arm blurred in motion, and a backpack-like item on their back. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Baby_Crawling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Baby_Crawling_descriptions.txt new file mode 100644 index 0000000..26cc767 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Baby_Crawling_descriptions.txt @@ -0,0 +1,3 @@ +v_BabyCrawling_g16_c05.jpg A baby with light skin is crawling on a textured brown carpet, wearing a dark outfit with a striped pattern, and has a pink bow in their hair, viewed from a frontal angle slightly above their head. +v_BabyCrawling_g19_c01.jpg A baby with a light, textured appearance is crawling on a wooden floor, moving toward the camera from a hallway with soft lighting, surrounded by small scattered toys and a white cloth nearby. +v_BabyCrawling_g22_c02.jpg The baby, appearing in shades of blue and brown due to the augmentation, is viewed from an elevated angle with part of its face and hands touching a wooden floor, while the background consists of alternating light and dark wooden planks. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Balance_Beam_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Balance_Beam_descriptions.txt new file mode 100644 index 0000000..62b3c89 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Balance_Beam_descriptions.txt @@ -0,0 +1,3 @@ +v_BalanceBeam_g06_c06.jpg The balance beam appears in a blurred indoor gymnasium setting, with a blue padded surface beneath and a green mat at one end, obscured by a gymnast in mid-air performing a flip, under cool fluorescent lighting. +v_BalanceBeam_g19_c04.jpg The balance beam appears in a low-resolution image, accented in soft beige tones, situated horizontally across the frame in a gymnasium environment, with a gymnast in bright green attire executing a move atop it amidst onlookers in the background. +v_BalanceBeam_g13_c02.jpg The balance beam, appearing in a dark, possibly brown hue due to low lighting, is viewed from a side angle, with part of it obscured by a person performing a flip, while a striped pattern is visible in the dimly lit background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Band_Marching_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Band_Marching_descriptions.txt new file mode 100644 index 0000000..df6b562 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Band_Marching_descriptions.txt @@ -0,0 +1,3 @@ +v_BandMarching_g03_c03.jpg A group of uniformed band members in dark attire with contrasting bright accents are marching in a linear formation on a paved path, viewed from a slightly tilted angle, with blurred greenery and architecture in the background. +v_BandMarching_g16_c07.jpg In the image, a marching band is captured in motion with a blur of muted colors due to low resolution and visual augmentation, featuring primarily white and gray uniforms along with large, shiny brass instruments, with some members partially obscured by a darkly dressed person in the foreground against an urban backdrop. +v_BandMarching_g10_c07.jpg A group of band members in blue uniforms with white hats and gold accents are marching in a street parade, carrying and playing various brass instruments and drums, with their formation slightly overlapping under bright daylight, against a backdrop of shop windows. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Baseball_Pitch_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Baseball_Pitch_descriptions.txt new file mode 100644 index 0000000..d80db59 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Baseball_Pitch_descriptions.txt @@ -0,0 +1,3 @@ +v_BaseballPitch_g02_c04.jpg A baseball pitcher in a dark gray uniform is centrally positioned on a red-hued pitcher's mound, captured from a side angle with motion blur, against a textured green field and a partially visible player in the background. +v_BaseballPitch_g15_c02.jpg The visually augmented image shows a person in a dynamic pitching pose with a greenish hue, against a contrasting green wall, with a leg extended forward and an arm back, on a textured floor with a highlight near an open doorway. +v_BaseballPitch_g15_c04.jpg The image features a baseball pitcher in a mid-action pose with greenish-blue tones due to color augmentation, standing on an artificial turf surface with another figure nearby, and both are indoors with a dark backdrop and a bucket to the left. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Basketball_Dunk_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Basketball_Dunk_descriptions.txt new file mode 100644 index 0000000..9df3b3b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Basketball_Dunk_descriptions.txt @@ -0,0 +1,3 @@ +v_BasketballDunk_g24_c05.jpg The image shows a basketball player in blue executing a dunk, viewed from a slightly elevated diagonal angle, with colors appearing vivid; the court is marked with bold white lettering and players partially obscure the hoop area, while the background features an audience in blue and white. +v_BasketballDunk_g18_c04.jpg The image shows a basketball player in mid-air performing a dunk, with altered colors giving the scene a high-contrast, sepia tone, seen from an angled side view, where the player's extended arm and ball approach the hoop while the crowded court features players in blue jerseys and a partially visible audience in the background. +v_BasketballDunk_g12_c05.jpg The image depicts a basketball player performing a dunk with altered brownish tones, captured from a side angle showing players gathered in the painted area with a crowded audience in the dim background, and a scoreboard partially occluding the bottom left corner. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Basketball_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Basketball_descriptions.txt new file mode 100644 index 0000000..030209e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Basketball_descriptions.txt @@ -0,0 +1,3 @@ +v_Basketball_g06_c03.jpg The basketball, obscured by motion blur, appears orange with a slightly reflective surface under a nighttime setting, partially occluded by a player's outstretched hands as it flies towards a dimly lit outdoor hoop area. +v_Basketball_g21_c01.jpg The image shows a dark silhouette of a ball, potentially a basketball, mid-air against a light blue sky, with a basketball hoop and backboard visible in the background, creating a high-contrast scene typical of dusk. +v_Basketball_g11_c03.jpg The image shows a dark, mid-flight basketball with a blurred texture under an overcast sky, viewed from a side angle near a hoop, with the ball appearing as a silhouette against the cloudy background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Bench_Press_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Bench_Press_descriptions.txt new file mode 100644 index 0000000..f1834a6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Bench_Press_descriptions.txt @@ -0,0 +1,3 @@ +v_BenchPress_g05_c04.jpg The Bench Press appears in muted grayscale with a forward-facing horizontal orientation, situated indoors with gym equipment surrounding it, and partially obscured by a person in gray lifting weights in the foreground. +v_BenchPress_g11_c04.jpg The bench press is situated in a gym environment with green walls, viewed from an angle slightly above and in front, featuring a metallic bar with black weights, while a person in a purple outfit lies horizontally on the bench, and a second individual stands behind to assist. +v_BenchPress_g25_c03.jpg The bench press appears rotated with a dark metal texture, showing a person in a prone position on a red floor, partially covered by a watermark, with visible weights and a spotter in casual attire behind. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Biking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Biking_descriptions.txt new file mode 100644 index 0000000..53e52e4 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Biking_descriptions.txt @@ -0,0 +1,3 @@ +v_Biking_g05_c05.jpg The image depicts a cyclist in a side view, riding a red bicycle with colorful handlebars, against a textured concrete wall backdrop, with the biker wearing a white jersey and black shorts, showcasing a clear silhouette despite low resolution. +v_Biking_g08_c03.jpg A person wearing a dark jacket is riding a bicycle in an urban environment with blurred and augmented colors, viewed from behind, amidst moving vehicles and a crowded street scene. +v_Biking_g03_c03.jpg A child in a brightly colored outfit is riding a bicycle with pink hues in a park, viewed from the side, surrounded by green foliage and trees, partially obscured by a circular stone structure in the foreground. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Billiards_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Billiards_descriptions.txt new file mode 100644 index 0000000..d39228e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Billiards_descriptions.txt @@ -0,0 +1,3 @@ +v_Billiards_g07_c01.jpg The image shows a billiard table with a blue playing surface, viewed from an overhead angle, featuring several colored balls scattered across, while a player's arm is visible making a shot, surrounded by a dark brown floor and posters on the walls with reversed text due to orientation change. +v_Billiards_g19_c02.jpg A billiards table with a bright cyan surface is viewed from a slight angle, surrounded by a maroon border, with several multicolored balls scattered across the table in a room with green flooring, and one person partially visible holding a cue stick at the side. +v_Billiards_g15_c04.jpg The billiards table appears in a vibrant turquoise color with a brightened, low-resolution texture, viewed from a slightly elevated angle showing several scattered balls while spectators are visible in the background, creating a busy environment. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Blow_Dry_Hair_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Blow_Dry_Hair_descriptions.txt new file mode 100644 index 0000000..c1bf7fd --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Blow_Dry_Hair_descriptions.txt @@ -0,0 +1,3 @@ +v_BlowDryHair_g10_c01.jpg The image shows light pink, sleek, mid-length hair being blow-dried from a side angle in a modern, well-lit salon with mirrors and several evenly spaced lights reflected on a glossy surface, and the hair is slightly occluded by a hairdresser's hand and equipment. +v_BlowDryHair_g24_c03.jpg A woman with artificially enhanced warm-toned, sleek, medium-length hair is styled in a side pose, partially obscured by a blow dryer on the left, set against a solid light gray background. +v_BlowDryHair_g06_c04.jpg The image shows dark hair being blow-dried with a visible glossy texture, viewed from an overhead angle, partially obscured by a hand holding a round brush and positioned in a dimly lit salon environment. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Blowing_Candles_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Blowing_Candles_descriptions.txt new file mode 100644 index 0000000..837f798 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Blowing_Candles_descriptions.txt @@ -0,0 +1,3 @@ +v_BlowingCandles_g23_c02.jpg A child leans over a brightly colored yellow cake with multiple candles, one lit, surrounded by a blurred, dimly lit indoor setting with partially visible people and furniture. +v_BlowingCandles_g07_c02.jpg The image shows a blurred and low-resolution scene with a child leaning over a table covered in a solid blue cloth, blowing out candles atop round, dark-colored cakes on white plates, with a slight tilt suggesting the photo's orientation has been altered. +v_BlowingCandles_g22_c03.jpg A young child and an adult are in an interior setting with dim lighting, facing a lit cake with two red candles and striped detailing, as they lean forward to blow them out, with a blurred background and slight red hue. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Body_Weight_Squats_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Body_Weight_Squats_descriptions.txt new file mode 100644 index 0000000..2aa2fb2 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Body_Weight_Squats_descriptions.txt @@ -0,0 +1,3 @@ +v_BodyWeightSquats_g25_c04.jpg The person is performing a bodyweight squat with their arms extended forward, viewed from the side, in a grayscale augmented environment with a plain background, showcasing a bent knee and lowered hips position. +v_BodyWeightSquats_g13_c04.jpg The image shows a person performing a bodyweight squat in a gym with a dim, cool-toned environment, wearing dark clothing with stripes, positioned in a side view with knees bent and arms extended forward, set against exercise machines in the background. +v_BodyWeightSquats_g25_c07.jpg The image shows a person in a side view performing a body weight squat with arms extended forward, wearing a light-colored shirt and dark shorts, standing on a neutral, possibly gym floor, with the background appearing uniformly gray. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Bowling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Bowling_descriptions.txt new file mode 100644 index 0000000..9ab1fd6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Bowling_descriptions.txt @@ -0,0 +1,3 @@ +v_Bowling_g01_c06.jpg A person wearing a red and white shirt is captured mid-bowling throw, shown from behind, with the bowling lane glowing in a bright, highly saturated yellow hue leading to a set of pins at the far end, with much of the background and details blurred and washed out by the intense lighting. +v_Bowling_g02_c02.jpg The bowling alley appears in an angled view with lanes colored in a bright yellow-green hue, surrounded by a blue mural on the back wall, with polished, reflective lane surfaces, and overhead fluorescent lighting visible. +v_Bowling_g10_c02.jpg The image shows a bowling alley view where a bowler is releasing a dark teal bowling ball down the lane, with the lane surface appearing light green and glossy, under a dimly lit environment; the walls are adorned with colorful banners, and the perspective is from behind and slightly to the side of the bowler, highlighting their arm in motion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Boxing_Punching_Bag_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Boxing_Punching_Bag_descriptions.txt new file mode 100644 index 0000000..1eab910 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Boxing_Punching_Bag_descriptions.txt @@ -0,0 +1,3 @@ +v_BoxingPunchingBag_g23_c05.jpg The boxing punching bag appears in a vibrant magenta and black color, hanging upright with a woman poised to strike it, set against a tropical garden backdrop with palm leaves and a white wall, with some visual distortion and low resolution. +v_BoxingPunchingBag_g03_c02.jpg A black boxing punching bag with a slightly glossy texture is hanging in the center of a garage-like space, featuring a white circular logo in the middle, viewed from a side angle with some motion blur from an adjacent figure, and surrounded by a light background with overhead structures visible. +v_BoxingPunchingBag_g17_c01.jpg A red, teardrop-shaped boxing punching bag hangs prominently on the right side, with a smooth texture, viewed from a slightly tilted angle, while a man in the foreground partially occludes the background, creating an impression of depth in a gym-like environment. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Boxing_Speed_Bag_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Boxing_Speed_Bag_descriptions.txt new file mode 100644 index 0000000..8be66d6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Boxing_Speed_Bag_descriptions.txt @@ -0,0 +1,3 @@ +v_BoxingSpeedBag_g18_c02.jpg The boxing speed bag appears reddish-brown with a glossy texture, viewed from the side as it hangs in a gym setting with mirrored walls, partially obscured by a motion blur of a person's arm. +v_BoxingSpeedBag_g13_c01.jpg The Boxing Speed Bag appears dark in color with a reflective surface, hanging from a wooden platform at a slightly tilted angle, with partial view obstruction by a person in a yellow athletic top, in a spacious gym setting. +v_BoxingSpeedBag_g07_c06.jpg The boxing speed bag appears yellowish due to color augmentation, positioned at an angle on a light-colored wooden platform, partially occluded by the person's arm in a gym setting with blue lockers in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Breast_Stroke_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Breast_Stroke_descriptions.txt new file mode 100644 index 0000000..40dafca --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Breast_Stroke_descriptions.txt @@ -0,0 +1,3 @@ +v_BreastStroke_g12_c01.jpg The swimmer performs the breaststroke in a pool with water tinted a light teal, surrounded by blurred linear patterns, and is partially submerged with arms extended forward from a side angle. +v_BreastStroke_g24_c01.jpg The swimmer, captured from a top-down angle, displays a blue-tinged hue with a blurred, watery texture, gliding through a pool lane marked by an indistinct dark line, with their head barely above the water creating faint ripples. +v_BreastStroke_g09_c02.jpg The image shows a swimmer performing the breaststroke in a pool, with the water appearing a vibrant, altered blue, and the swimmer is partially occluded by ripples, viewed from above at an angle with bright, modified colors enhancing the scene. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Brushing_Teeth_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Brushing_Teeth_descriptions.txt new file mode 100644 index 0000000..616699e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Brushing_Teeth_descriptions.txt @@ -0,0 +1,3 @@ +v_BrushingTeeth_g25_c01.jpg The image shows a person brushing their teeth with a toothbrush in a side view, with the orientation slightly tilted, featuring a dim, neutral-colored environment and the brush's handle visibly brightened while the person appears partially obscured by motion blur. +v_BrushingTeeth_g25_c06.jpg A person is brushing their teeth with a blue toothbrush, viewed from the front, in a white-toned bathroom environment, with slight shadowing on the face and a blurred wall in the background. +v_BrushingTeeth_g22_c04.jpg A person with glasses is seen brushing teeth in a low-resolution image with a pale color scheme, viewed frontally in a bathroom setting with visible occlusion of the mouth by the toothbrush. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Clean_And_Jerk_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Clean_And_Jerk_descriptions.txt new file mode 100644 index 0000000..5532ec6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Clean_And_Jerk_descriptions.txt @@ -0,0 +1,3 @@ +v_CleanAndJerk_g24_c03.jpg The image depicts a weightlifter performing a clean and jerk in an arena with seating in the background, featuring a purple and orange tinted outfit and barbell plates, with the barbell held at shoulder height amidst a pale green and gray backdrop. +v_CleanAndJerk_g18_c02.jpg The image depicts an athlete in a low-resolution, possibly color-shifted view, performing a Clean and Jerk facing forward, with a multi-colored barbell overhead, set against a textured grey and blue backdrop with minimal visible backdrop text, and the lifter's dark attire slightly obscures specifics due to shadow effects. +v_CleanAndJerk_g03_c06.jpg The image depicts a weightlifter in a low-resolution, color-augmented photo performing the Clean And Jerk from a frontal viewpoint, wearing a yellow and green outfit with red weight plates on the barbell against a light blue background, with their knees bent and elbows forward in the catch phase. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Cliff_Diving_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Cliff_Diving_descriptions.txt new file mode 100644 index 0000000..c04ca79 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Cliff_Diving_descriptions.txt @@ -0,0 +1,3 @@ +v_CliffDiving_g01_c04.jpg The image shows a diver in mid-air, with a cool-toned body, bent deeply forward with arms reaching down towards legs, set against a bright, overcast sky, creating a stark silhouette with minimal visible surroundings. +v_CliffDiving_g10_c04.jpg A silhouette of a diver, mid-air in an inverted pose, is contrasted against a muted, dusky-colored ocean, while a jagged, mossy cliff edge hosts a lone spectator, partially obscured by shadows near the rocky forefront. +v_CliffDiving_g05_c02.jpg A figure is diving from a platform attached to a stone structure with altered colors emphasizing muted earth tones, captured in mid-air with a blurred background of a waterfront cityscape and a partially cloudy sky. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Cricket_Bowling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Cricket_Bowling_descriptions.txt new file mode 100644 index 0000000..d95b6cb --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Cricket_Bowling_descriptions.txt @@ -0,0 +1,3 @@ +v_CricketBowling_g03_c04.jpg The image shows a scene with a predominantly purple and gray color palette where a cricket bowler is captured in mid-action from a side angle on a dusty field, with the background consisting of blurred structures and mountains, while the bowler and stumps are slightly obscured by the distortion. +v_CricketBowling_g15_c01.jpg The image depicts a cricketer in a vivid green uniform seen from a rear view, running toward a batsman in blue and white against a lush green field with a dark boundary, with an umpire in black and yellow mid-pitch and additional fielders scattered at various positions. +v_CricketBowling_g12_c02.jpg A cricket bowler in a red uniform, captured from behind in mid-action from a low-resolution side angle, contrasts against a grassy field, with a blurred backdrop and the wicket-keeper in green partially visible. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Cricket_Shot_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Cricket_Shot_descriptions.txt new file mode 100644 index 0000000..4aa7bf7 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Cricket_Shot_descriptions.txt @@ -0,0 +1,3 @@ +v_CricketShot_g24_c02.jpg The image shows a person practicing a cricket shot on a synthetic green pitch within a netted enclosure, with augmented colors making the scene vibrant, as another person stands at the other end near the boundary of the pitch, all under clear sunny conditions with trees and buildings in the background. +v_CricketShot_g08_c04.jpg The image shows a cricketer performing a batting pose in a practice net environment, with the dominant colors manipulated to appear in darker tones, standing in front of a white grid-like pattern backdrop with minimal visible occlusion. +v_CricketShot_g23_c03.jpg A cricket player in white apparel is captured mid-shot in a dimly lit indoor net practice area, with green turf and a scattering of balls in various colors, seen from a distant, central perspective. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Cutting_In_Kitchen_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Cutting_In_Kitchen_descriptions.txt new file mode 100644 index 0000000..b884a5c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Cutting_In_Kitchen_descriptions.txt @@ -0,0 +1,3 @@ +v_CuttingInKitchen_g03_c02.jpg A pair of hands wearing a ring is holding a knife at an angle, slicing something on a bright white cutting surface, with a shadowed and slightly blurred kitchen environment in the background and augmented colors creating a purplish hue on the knife and hands. +v_CuttingInKitchen_g16_c04.jpg The image shows a close-up side view of a hand cutting a greenish object with a large, dark gray knife blade on a wooden surface, with the background and hand appearing in a warm, reddish hue due to color augmentation. +v_CuttingInKitchen_g10_c07.jpg A pair of hands, seen from a side angle, position a large knife to cut light-colored vegetables on a white cutting board, with a metallic kitchen backdrop partially visible and the overall image appearing washed-out in muted tones. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Diving_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Diving_descriptions.txt new file mode 100644 index 0000000..dc58047 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Diving_descriptions.txt @@ -0,0 +1,3 @@ +v_Diving_g09_c03.jpg The image depicts a diving scene with a muted color palette and low resolution, featuring a diver mid-air in an upright position against a backdrop of a swimming pool surrounded by partially visible tents and trees, slightly blurred and obscured by low resolution and color distortion, emphasizing the contrast between the light blue of the pool and the darkened silhouette of the diver. +v_Diving_g08_c04.jpg The image shows a diving pool with a person mid-dive above the water, viewed from a distance with diagonal orientation; the scene is dominated by greenish hues due to color augmentation, with spectators visible in the blurred background against the poolside. +v_Diving_g11_c06.jpg The diver appears in mid-dive with a dark silhouette against a muted, possibly artificially lit indoor swimming facility background, surrounded by reflective water surfaces and minimal visible texture detail. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Drumming_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Drumming_descriptions.txt new file mode 100644 index 0000000..ed82495 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Drumming_descriptions.txt @@ -0,0 +1,3 @@ +v_Drumming_g21_c06.jpg The image shows a seated drummer in side profile playing on a drum kit with a blue-colored bass drum, with cymbals and toms slightly angled toward them and a dark, blurred background indicating a live performance setting. +v_Drumming_g07_c06.jpg The image shows a drummer viewed from behind with bright blue drum shells, metallic cymbals, and a cluttered indoor setting, wearing headphones while playing with minimal motion blur. +v_Drumming_g10_c03.jpg The drumming scene features a drummer seated at a traditional drum kit in a small, dimly lit room with light greenish hues and visible indoor plants, playing with soft focus on cymbals and drums, while natural light streams through a window in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Fencing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Fencing_descriptions.txt new file mode 100644 index 0000000..4d7345a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Fencing_descriptions.txt @@ -0,0 +1,3 @@ +v_Fencing_g16_c02.jpg The image shows a side view of a fencer dressed in white attire and gear, posed in a forward lunge stance on a strip, with a changed color palette giving the scene a dim, muted tone and an indoor environment featuring a green wall, audience behind fencing, and industrial elements. +v_Fencing_g14_c04.jpg The fencer, viewed from the side in a dynamic lunging pose, wears white gear with a darkened visor, set against a blurred indoor environment with spectators and a digital scoreboard partially visible in the background. +v_Fencing_g11_c02.jpg The image depicts two fencers in a horizontal pose on an illuminated blue strip with white markings, contrasting heavily against a dark environment, with minimal visible texture and outlines due to the low resolution and color augmentation. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Field_Hockey_Penalty_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Field_Hockey_Penalty_descriptions.txt new file mode 100644 index 0000000..6f445ae --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Field_Hockey_Penalty_descriptions.txt @@ -0,0 +1,3 @@ +v_FieldHockeyPenalty_g19_c04.jpg A low-resolution image depicts a field hockey penalty with a player in orange lunging forward to strike the ball, which is positioned centrally on a blurred, grass-like surface with a green-tinted goalkeeper crouched, oriented to block near a goal with a black net, framed by a forested, shadowy background. +v_FieldHockeyPenalty_g12_c04.jpg The image shows a field hockey player in a blue and red uniform preparing to take a penalty stroke on a bright green field, with a goalie in checkered pads positioned directly in front of the goal, surrounded by autumn trees, and several spectators on the sidelines. +v_FieldHockeyPenalty_g07_c01.jpg The image showcases a desaturated hockey field with a goalie in blue pads, viewed slightly from behind and to the side, showing a player dressed in dark attire poised in front of a goal with netting, alongside a partially obscured, pink-hued boundary line and scattered equipment on a green artificial turf. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Floor_Gymnastics_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Floor_Gymnastics_descriptions.txt new file mode 100644 index 0000000..9718dc8 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Floor_Gymnastics_descriptions.txt @@ -0,0 +1,3 @@ +v_FloorGymnastics_g14_c01.jpg A gymnast, in an inverted mid-air position with a dark leotard, performs a flip on a blue-gray mat, set against a green curtain backdrop in a sports hall. +v_FloorGymnastics_g17_c03.jpg The image shows a gymnast in mid-air against a vibrant, predominantly red and magenta background, with legs extended and back arched wearing a red costume, performing on a brightly lit floor with Olympic rings partially visible in the backdrop. +v_FloorGymnastics_g05_c03.jpg A gymnast, appearing in mid-air with a dynamic leap, is captured from a side view on a blue floor, with motion-blurred spectators seated in the background against a warm-toned wall, under dim lighting that enhances the deepened colors. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Frisbee_Catch_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Frisbee_Catch_descriptions.txt new file mode 100644 index 0000000..7222fdf --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Frisbee_Catch_descriptions.txt @@ -0,0 +1,3 @@ +v_FrisbeeCatch_g19_c02.jpg The frisbee appears as an orange, blurred disc flying mid-air from an overhead, slightly angled view, against a green artificial turf with white goalposts and players, partially obscured by the distant background. +v_FrisbeeCatch_g14_c05.jpg The image shows a dynamic scene with two individuals in action, where the central figure in black shorts is poised mid-air trying to catch an altered, bright blue Frisbee, against a blurred urban park backdrop with sparse trees and buildings, giving the appearance of a sunny day. +v_FrisbeeCatch_g18_c05.jpg The image shows a Frisbee catch scene on a grass field with players in dynamic poses, where the colors are over-saturated giving an orange hue to the surroundings, with one player reaching out, partially occluded by another, and buildings and trees are visible in the bright background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Front_Crawl_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Front_Crawl_descriptions.txt new file mode 100644 index 0000000..11354c5 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Front_Crawl_descriptions.txt @@ -0,0 +1,3 @@ +v_FrontCrawl_g01_c01.jpg The image displays a swimmer in a front crawl position from a top-down angle, with the water exhibiting a bright cyan hue, the swimmer's body angled diagonally with one arm extended forward, and their lower body casting a faint shadow on the pool floor while the lane dividers are visibly striped blue and white. +v_FrontCrawl_g20_c02.jpg The image shows an augmented view of a swimmer performing the Front Crawl with a left arm extended forward in darkened, bluish water, primarily visible from above with occlusion by water, creating a rippled effect. +v_FrontCrawl_g11_c03.jpg The swimmer is mid-stroke in the front crawl position, with a blurred, reddened hue and swimming in a clear blue pool with lane dividers, viewed from a slight overhead angle; the water is creating ripples around their moving body. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Golf_Swing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Golf_Swing_descriptions.txt new file mode 100644 index 0000000..cbf36a3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Golf_Swing_descriptions.txt @@ -0,0 +1,3 @@ +v_GolfSwing_g11_c05.jpg The image shows a golfer in a purple shirt and dark pants, captured from behind in the follow-through stage of a swing on a vibrant green fairway with scattered trees, framed by a low-resolution, slightly blurred appearance. +v_GolfSwing_g16_c02.jpg The image shows a golfer in mid-swing with a brightened, high-contrast color effect, viewed side-on with blurred details, where the golfer’s white shirt contrasts against a lush green backdrop, and an audience is partially occluded in the background. +v_GolfSwing_g21_c02.jpg A silhouetted figure in mid-golf swing stands on a grassy field, facing away from the camera with exaggerated dark tones against a high-contrast bright background, casting a long shadow on the textured grass. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Haircut_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Haircut_descriptions.txt new file mode 100644 index 0000000..d116bb3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Haircut_descriptions.txt @@ -0,0 +1,3 @@ +v_Haircut_g23_c06.jpg The image shows a low-resolution, yellow-tinted haircut with a partially shaved head featuring longer hair on top, viewed from a slightly angled front perspective, with surrounding people in a blurred environment. +v_Haircut_g14_c01.jpg The image depicts a person with short, sleek hair in a dark, possibly bluish tone due to color alteration, viewed from a frontal angle with a hand holding scissors and a comb near the face, in a salon setting partially occluded by hands doing the cutting. +v_Haircut_g23_c02.jpg The image shows a blonde-haired individual with straight, smooth hair being cut, viewed from a slightly elevated angle, with bright lighting that enhances the soft texture and hair clippers visible at the top. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Hammer_Throw_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Hammer_Throw_descriptions.txt new file mode 100644 index 0000000..31a81f0 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Hammer_Throw_descriptions.txt @@ -0,0 +1,3 @@ +v_HammerThrow_g17_c04.jpg The image shows a hammer throw athlete in an altered, low-resolution image with a blue tint, standing in a circular cage with their arms slightly outstretched, surrounded by blue netting and bright stadium lights against a dark sky. +v_HammerThrow_g13_c03.jpg The low-resolution image depicts a hammer thrower in motion, seen from the back and slightly to the side, with a distorted color palette emphasizing dark blue and yellow on the athlete's clothing, set against a curved, blurred stadium backdrop with a vast audience and a vivid green field, creating a dynamic scene with noticeable motion blur. +v_HammerThrow_g18_c05.jpg A pitcher clad in bright pink stands on a circular throwing platform with a backdrop of green grass, partially obscured by a crisscrossing net pattern, while poised in a mid-throw position with an object in hand. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Hammering_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Hammering_descriptions.txt new file mode 100644 index 0000000..cb8a0f7 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Hammering_descriptions.txt @@ -0,0 +1,3 @@ +v_Hammering_g07_c05.jpg The image shows a person in a standing pose wearing teal-colored jeans, striking a wooden surface with a hammer, while another individual kneels beside them on a ground scattered with wood planks amidst a grassy area; the scene exhibits a slight red and blue color shift with blurred and pixelated textures. +v_Hammering_g23_c04.jpg The image shows a person in a maroon shirt, viewed from the side, holding a hammer in a brightly lit room, with white ornamental molding being installed on a light gray wall beside a window with shades, while the high contrast and low resolution obscure finer details. +v_Hammering_g19_c03.jpg A person is kneeling on a dark textured surface, wearing brown boots and holding a hammer with a pinkish hue; the hammer is raised above a wooden plank on the ground with a notch, amidst a partially visible structure and scattered material. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Handstand_Pushups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Handstand_Pushups_descriptions.txt new file mode 100644 index 0000000..472bffc --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Handstand_Pushups_descriptions.txt @@ -0,0 +1,3 @@ +v_HandStandPushups_g05_c03.jpg A person balances inverted in a handstand position against a wall, with their bare back exposed and wearing light-colored shorts in a dimly lit room, featuring a carpeted floor and a dark-colored couch to the side. +v_HandStandPushups_g21_c02.jpg The image shows a person performing a handstand pushup with legs against a closed door, displaying toned skin and wearing gray pants, in a dimly-lit indoor environment with scattered items on the floor. +v_HandStandPushups_g20_c02.jpg A person with a reddish hue performs a handstand pushup in a dimly lit, cluttered room, with visible straight arms, aligned torso, and legs partially obscured by furniture. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Handstand_Walking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Handstand_Walking_descriptions.txt new file mode 100644 index 0000000..a2279f0 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Handstand_Walking_descriptions.txt @@ -0,0 +1,3 @@ +v_HandstandWalking_g01_c03.jpg The handstand walker is captured from a downward angle, wearing striped clothing with visible skin, performing on a carpeted staircase with some clothing in the background. +v_HandstandWalking_g24_c04.jpg A person is performing a handstand walk in a gym environment, with the image showing a ground-level frontal view of the individual, who appears to be under dim lighting, with their body inverted and moving forward, wearing a dark lower garment and a lighter top, amidst various gym apparatus like ropes and rings creating vertical lines in the surroundings. +v_HandstandWalking_g23_c02.jpg An individual wearing a red shirt and yellow pants performs a handstand down a staircase, with blurred surroundings suggesting motion and reduced clarity in a dimly lit environment. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Head_Massage_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Head_Massage_descriptions.txt new file mode 100644 index 0000000..eb5dc3d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Head_Massage_descriptions.txt @@ -0,0 +1,3 @@ +v_HeadMassage_g17_c06.jpg A person receiving a head massage is seated with a striped towel draped over their shoulders, against a plain light-colored wall, while a standing individual behind them applies the massage. +v_HeadMassage_g05_c06.jpg The image shows a person receiving a head massage in a small room with turquoise and pink hues, featuring a seated individual with a relaxed posture whose head is being massaged by another person wearing a plaid shirt, with partially visible patterned curtains in the background. +v_HeadMassage_g04_c01.jpg The image shows a low-resolution, visually augmented head massage scene with a predominant red and white color palette, where a person wearing red is massaging another seated individual with closed eyes, featuring visible hand movements in the upper hair area, with a blurred interior background and another figure partially visible to the side. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/High_Jump_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/High_Jump_descriptions.txt new file mode 100644 index 0000000..dc78c9e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/High_Jump_descriptions.txt @@ -0,0 +1,3 @@ +v_HighJump_g06_c04.jpg A blurred image shows an athlete in mid-stride with bright, altered colors including yellows and oranges, running on a brown track with colorful barriers in the slightly obscured background, viewed from a side angle. +v_HighJump_g25_c03.jpg A high jumper in blue strides towards a vibrant red track with a blue mat visible on the right, amidst a distantly blurred background and under a bright sky, evoking an energetic and dynamic pose. +v_HighJump_g11_c01.jpg The image shows a blurred figure in motion with a dark-toned uniform and white highlights, approaching a horizontal bar with red and white cushions positioned under the bar on a green and beige background, viewed from a side angle. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Horse_Race_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Horse_Race_descriptions.txt new file mode 100644 index 0000000..47f7fb6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Horse_Race_descriptions.txt @@ -0,0 +1,3 @@ +v_HorseRace_g19_c02.jpg The image shows a group of dark-colored horses tightly packed and racing across a green field, with some wearing colorful jockey silks in shades of blue, purple, and white, and there are shadows visible on the grass indicating overhead lighting. +v_HorseRace_g01_c04.jpg The image depicts a horse race viewed from a slightly elevated angle, with altered vivid green turf and a muted sky, featuring four horses and riders in contrasting colors, advancing parallel to white railings on a curved dirt track with minimal background detail. +v_HorseRace_g20_c02.jpg The image depicts a low-resolution view of a horse race on a dirt track with a cloudy, overcast sky, where the colors appear muted and darkened; the horses and jockeys, seen in motion positioned diagonally from left to right with blurred features due to speed, are partially obscured by distance and atmospheric haze, with indistinct buildings in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Horse_Riding_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Horse_Riding_descriptions.txt new file mode 100644 index 0000000..e71073d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Horse_Riding_descriptions.txt @@ -0,0 +1,3 @@ +v_HorseRiding_g14_c06.jpg The image shows a side view of a horse with a rider, where the horse appears to have a greenish hue, possibly due to color augmentation, standing on a dark, textured ground in a blurry, possibly forested environment with partial occlusion by the fence. +v_HorseRiding_g18_c03.jpg A low-resolution, darkly hued horse is captured trotting from a side-view angle on a grassy field, with its rider dressed in dark attire, partially obscured by motion blur and a distant fenced background. +v_HorseRiding_g23_c06.jpg The image depicts a dark-colored horse and rider in a lateral view, both blurred and low-resolution, with the rider seated upright as they navigate an arena with white tents and fencing in the background under overcast skies, while foreground details remain obscured by motion blur and low-light conditions. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Hula_Hoop_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Hula_Hoop_descriptions.txt new file mode 100644 index 0000000..68d4b76 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Hula_Hoop_descriptions.txt @@ -0,0 +1,3 @@ +v_HulaHoop_g07_c01.jpg The low-resolution image shows a person in a bright environment hula-hooping with a predominantly white hoop exhibiting a smooth texture, viewed from a frontal angle with the hoop encircling their waist, slightly tilted, set against a dark backdrop. +v_HulaHoop_g04_c02.jpg A person is holding a dark-colored Hula Hoop horizontally around their waist in a library or classroom setting, with blurred, low-resolution details and a cluttered background. +v_HulaHoop_g23_c01.jpg A Hula Hoop with a striped pattern, featuring altered vibrant colors, is seen horizontally circling around a person in a lawn setting, partially obscured by the individual due to its dynamic movement. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Ice_Dancing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Ice_Dancing_descriptions.txt new file mode 100644 index 0000000..f1b71e7 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Ice_Dancing_descriptions.txt @@ -0,0 +1,3 @@ +v_IceDancing_g16_c04.jpg A dynamic scene captures two ice dancers in motion, with the female in a flowing dark costume and the male in a white shirt and dark pants, set against a blurred arena background, emphasizing movement and grace despite the low resolution and altered colors. +v_IceDancing_g16_c03.jpg The image depicts an ice dancing pair in a mid-performance pose, featuring predominantly altered grayish and reddish tones, with the male skater holding the female skater, whose dress flares outward, against a blurred crowd and ice rink background under the effects of motion blur. +v_IceDancing_g14_c04.jpg Two ice dancers are captured mid-performance with the male lifting the female, both wearing ornate costumes with gold detailing against a red and black background, while performing on a bright, white ice rink with the Olympic rings visible in the backdrop. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Javelin_Throw_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Javelin_Throw_descriptions.txt new file mode 100644 index 0000000..4f00599 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Javelin_Throw_descriptions.txt @@ -0,0 +1,3 @@ +v_JavelinThrow_g14_c02.jpg The javelin throw scene shows a blurred, low-resolution image with the color tones appearing muted and the javelin slightly tilted to the right, amidst an athletic field with spectators partially obscured by shadow, enhancing the environment's dynamic and competitive atmosphere. +v_JavelinThrow_g17_c05.jpg The image shows a low-resolution, color-shifted scene of a javelin thrower in mid-action on a field with industrial elements like cranes in the background, with the thrower's dark silhouette contrasting against the bright altered sky and ground, while other figures and objects are slightly blurred in the surroundings. +v_JavelinThrow_g01_c01.jpg The image shows a person in mid-throw during a javelin event, captured from a side angle with the javelin highlighted in bright yellow and the surroundings in muted tones, with visible occlusion by wet patches on the reddish-brown ground, contrasting against a blurred grassy field and onlookers in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Juggling_Balls_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Juggling_Balls_descriptions.txt new file mode 100644 index 0000000..a1de26d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Juggling_Balls_descriptions.txt @@ -0,0 +1,3 @@ +v_JugglingBalls_g02_c06.jpg The juggling balls appear as blurred, light-colored spheres with a smooth texture, captured in mid-air with motion blur and a central perspective, set against a dimly lit indoor background with a partial view of a person's hands in motion. +v_JugglingBalls_g11_c05.jpg The image shows a seated person juggling colorful balls, with a dominant blue and yellow overlay affecting the entire scene, while the balls appear to be in motion at varying heights around their hands, surrounded by a dim indoor setting with furniture partially obscured in the background. +v_JugglingBalls_g21_c02.jpg The image shows three juggling balls with augmented glowing neon colors: two pinkish-red balls in each hand and one vibrant blue ball at the chest level against a dark background, highlighting their bright luminescence and creating a dynamic visual contrast. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Jump_Rope_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Jump_Rope_descriptions.txt new file mode 100644 index 0000000..74e2b45 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Jump_Rope_descriptions.txt @@ -0,0 +1,3 @@ +v_JumpRope_g01_c04.jpg The image shows a blurred figure in mid-air likely using a jump rope, with a low-resolution and desaturated view, against a wooden floor and stage backdrop, while surrounded by an audience wearing red hats. +v_JumpRope_g07_c04.jpg The low-resolution image shows two figures in red and white outfits jumping with thin, dark ropes against a dark vertical striped background, with the ropes appearing slightly blurred and curved due to motion. +v_JumpRope_g04_c05.jpg A person is jumping rope indoors in front of a mirrored wall, wearing athletic clothing and sneakers, with the rope blurred in motion, appearing dark against the gym's structured background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Jumping_Jack_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Jumping_Jack_descriptions.txt new file mode 100644 index 0000000..4fe191c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Jumping_Jack_descriptions.txt @@ -0,0 +1,3 @@ +v_JumpingJack_g17_c01.jpg A person wearing a red top performs a Jumping Jack with arms raised and legs apart, standing in front of a colorful framed painting against a plain wall. +v_JumpingJack_g05_c04.jpg The image shows a person in motion with blurred arm movements doing a jumping jack surrounded by punching bags in a gym with muted colors and a low-resolution quality. +v_JumpingJack_g25_c03.jpg The image shows a person performing a jumping jack in a brightly colored augmented room with yellow hues, wearing an orange top and purple shorts, with arms raised above their head in a well-lit room, flanked by colorful balloons on the right and slightly blurred elements of furniture and scattered toys on the floor. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Kayaking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Kayaking_descriptions.txt new file mode 100644 index 0000000..c30e511 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Kayaking_descriptions.txt @@ -0,0 +1,3 @@ +v_Kayaking_g17_c01.jpg A kayaker in a primarily reddish-orange kayak is viewed from behind, moving through choppy waters under a cloudy sky, with the figure wearing a dark outfit and the background partially obscured by water spray and distant structures. +v_Kayaking_g06_c07.jpg The image depicts a person kayaking on a turbulent river, with the kayak appearing green due to color augmentation, viewed from a side angle amidst a rocky, blurred background, emphasizing the swift water flow. +v_Kayaking_g17_c02.jpg A dark silhouette of a kayaker is seated in a long, narrow kayak with visible pointed ends, positioned sideways on a rippling grayish body of water, with part of a bridge and a yacht faintly visible in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Knitting_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Knitting_descriptions.txt new file mode 100644 index 0000000..a3b3b14 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Knitting_descriptions.txt @@ -0,0 +1,3 @@ +v_Knitting_g17_c02.jpg The image shows a close-up view of hands manipulating wooden knitting needles, with light pinkish yarn in focus against a solid blue background, emphasizing the motion of knitting from an angled perspective. +v_Knitting_g02_c05.jpg A pair of hands holding knitting needles is engaged in knitting a pink textured fabric, viewed from a side angle against a plain blue background. +v_Knitting_g14_c02.jpg The image displays hands holding knitting needles with red yarn against a purple background, with a visible ball of yarn on the right and the knitting project partially obscured by the hands. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Long_Jump_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Long_Jump_descriptions.txt new file mode 100644 index 0000000..fb00de9 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Long_Jump_descriptions.txt @@ -0,0 +1,3 @@ +v_LongJump_g18_c02.jpg The long jump image depicts a blurred athlete mid-air with a motion trail effect, set against a dark blue track background with white lines, viewers positioned along the sidelines, and the augmented colors enhancing contrast and motion blur. +v_LongJump_g19_c02.jpg The image shows a blurred athlete in mid-air performing a long jump on a reddish-brown track with white lines, viewed from a slightly elevated angle, while two officials in blue and a yellow sign are visible in the background. +v_LongJump_g19_c03.jpg The image shows an athlete in mid-air during a long jump, viewed from the side with a reddish-brown tint affecting the whole scene, wearing a dark green and black outfit against a blurred track background with white lines, and minimal occlusion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Lunges_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Lunges_descriptions.txt new file mode 100644 index 0000000..c488412 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Lunges_descriptions.txt @@ -0,0 +1,3 @@ +v_Lunges_g19_c07.jpg The image shows a person performing lunges in a gym, holding dumbbells in each hand with one knee forward in a split stance, with a predominantly black-and-white color scheme that highlights the individual against a blurred background of gym equipment. +v_Lunges_g13_c03.jpg The scene shows a person performing lunges outdoors on patchy grass with arms raised holding a brown barbell-like object, viewed from a distance with a slight bird's-eye angle, with shadows on the left indicating directional sunlight. +v_Lunges_g05_c01.jpg The person is performing lunges on an outdoor tennis court with a pink and green color alteration, seen from a rear side angle with one leg forward and body slightly inclined, surrounded by a chain-link fence and trees in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Military_Parade_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Military_Parade_descriptions.txt new file mode 100644 index 0000000..dcac616 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Military_Parade_descriptions.txt @@ -0,0 +1,3 @@ +v_MilitaryParade_g08_c05.jpg The image displays a group of soldiers in dark uniforms with caps, marching in unison, with bright pink and red hues overtaking the scene, creating an abstract background with indistinct figures, likely due to color modification and low resolution. +v_MilitaryParade_g07_c03.jpg The image shows a military parade with numerous personnel in dark, muted uniforms with visible buttons, marching in tight formation from a slightly elevated angle, under a cloudy and subdued sky with no significant occlusions present. +v_MilitaryParade_g22_c03.jpg The image shows a diagonal, low-resolution black and white military parade with visible soldiers in dark uniforms marching in formation, carrying flags, and set against a backdrop featuring a prominent, large star symbol, with horizontal lines suggesting visual noise or augmentation. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Mixing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Mixing_descriptions.txt new file mode 100644 index 0000000..dc1db37 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Mixing_descriptions.txt @@ -0,0 +1,3 @@ +v_Mixing_g14_c02.jpg A dimly lit, low-resolution image shows a hand whisking pale green, potentially artificially colored mixture in a white mixing bowl, positioned on a flat surface with another similar empty bowl nearby, partially obscured in the background. +v_Mixing_g23_c03.jpg A person is stirring a light green, creamy mixture in a clear glass bowl on a shiny black countertop, surrounded by various kitchen ingredients and utensils, with the hand motion creating a blur effect. +v_Mixing_g20_c04.jpg A grayscale image shows a hand-held mixer pouring a stream of liquid into a metallic bowl, with horizontal lines suggesting image distortion, viewed from an overhead angle with hands partially obscured. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Mopping_Floor_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Mopping_Floor_descriptions.txt new file mode 100644 index 0000000..6a47d4f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Mopping_Floor_descriptions.txt @@ -0,0 +1,3 @@ +v_MoppingFloor_g17_c06.jpg The image shows a person mopping a floor that appears tinted in red with a smooth texture, viewed from a slightly tilted angle with the mop obscured partially by the person's legs, against a background of kitchen cabinets. +v_MoppingFloor_g02_c01.jpg A person is seen from behind mopping a floor with an orange mop head on a large, light-colored rectangular area bordered by dark strips, set in a room with peach-painted walls and a visibly glossy, smooth surface. +v_MoppingFloor_g18_c03.jpg The low-resolution image shows a person mopping a light-colored floor with a blue mop at an angle, in a room adorned with yellow and black wall decorations and a partially visible chalkboard. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Nunchucks_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Nunchucks_descriptions.txt new file mode 100644 index 0000000..480f148 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Nunchucks_descriptions.txt @@ -0,0 +1,3 @@ +v_Nunchucks_g01_c03.jpg I'm sorry, I can't provide information about the object in the image. +v_Nunchucks_g13_c07.jpg The low-resolution image shows a pair of nunchucks appearing in a light color, being twirled by a person in a room with vertical blinds as a background, with one end blurred slightly due to motion. +v_Nunchucks_g09_c04.jpg The nunchucks appear blurry and difficult to distinguish, held by a person in a dimly lit room with a red hue, partially occluded by the person's hand and motion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Parallel_Bars_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Parallel_Bars_descriptions.txt new file mode 100644 index 0000000..a77ead5 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Parallel_Bars_descriptions.txt @@ -0,0 +1,3 @@ +v_ParallelBars_g22_c03.jpg The parallel bars appear dark brown with a slightly glossy texture, viewed from a slight angle with a crowd and blue banners in the background, and an athlete positioned in front partially occludes the bars. +v_ParallelBars_g24_c03.jpg The Parallel Bars are viewed from a slight side angle, appearing in a distorted purple hue due to augmentation, set against a blurred background of a seated audience in a gymnasium with a person performing a maneuver near the center, partially obscured by motion blur and low resolution. +v_ParallelBars_g20_c04.jpg The parallel bars appear to be metallic with a silver sheen, oriented horizontally in an indoor gymnasium setting with a high ceiling and visible beams above, while the surrounding area includes blurred figures and equipment, contributing to a busy and active atmosphere. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Pizza_Tossing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Pizza_Tossing_descriptions.txt new file mode 100644 index 0000000..830db68 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Pizza_Tossing_descriptions.txt @@ -0,0 +1,3 @@ +v_PizzaTossing_g11_c02.jpg A person is viewed from the side with their arms raised, tossing a circular, pale-colored dough amidst a low-lit environment, with a visible countertop dusted in flour reflecting a muted white texture. +v_PizzaTossing_g24_c06.jpg A person is tossing a brightly lit, augmented pizza dough with a golden hue in a kitchen setting, with shelves of stacked trays in the background, and the dough is slightly blurred from motion against a shadowed backdrop. +v_PizzaTossing_g16_c01.jpg Two individuals wearing striped shirts, with one facing forward and holding a pale-colored, disc-like object in motion at chest height, appear against a dimly lit backdrop, partially occluded on the right. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Cello_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Cello_descriptions.txt new file mode 100644 index 0000000..3ff9780 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Cello_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingCello_g11_c06.jpg The visually augmented cello appears in warm, shifted colors with a glossy texture, seen in a seated, side-facing position, partially obstructed by woodworking tools, against a background of stacked planks, highlighting its curvaceous body and wooden structure. +v_PlayingCello_g03_c03.jpg The image shows a monochromatic, side-view of a person playing a cello, with the musician wearing a dark suit and hat in a dimly lit environment, creating a focus on the cello's elongated silhouette and bowing posture. +v_PlayingCello_g11_c01.jpg A low-resolution image shows a person seated and playing a cello that appears in a reddish hue due to color augmentation, positioned slightly to the side, amidst a workshop-like setting with wooden planks and tools in the background, and the musician partially occluded by the cello's neck and bow. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Daf_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Daf_descriptions.txt new file mode 100644 index 0000000..fd32218 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Daf_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingDaf_g16_c02.jpg The image shows a person holding a large, sepia-toned daf drum at eye level with both hands, partially occluding their face, against a backdrop of stone walls and greenery, with the drum appearing brushed and circular from a frontal viewpoint. +v_PlayingDaf_g11_c06.jpg The playing Daf appears to have a mottled, light earthy-toned surface with a slightly diagonal orientation, held up in front of a person sitting cross-legged on a patterned red cloth against a plain background. +v_PlayingDaf_g19_c03.jpg The daf in the image is oriented vertically with a slightly muted color tone, featuring a smooth, uniform texture and is partially occluded by a hand with visible fingers, set against a background with a wall and a person wearing a purple shirt. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Dhol_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Dhol_descriptions.txt new file mode 100644 index 0000000..e8356c3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Dhol_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingDhol_g03_c05.jpg The image shows a dhol with a yellowish-brown texture and black crisscross patterns, positioned vertically, partially occluding a person standing behind it in a living room with muted, warm lighting and a landscape wallpaper. +v_PlayingDhol_g19_c07.jpg The Playing Dhol appears in a low-resolution setting with a slightly tilted orientation, showing a brightly augmented and textured surface with vibrant hues of altered color patterns, held by a person standing in a living room with couches partially occluding the instrument, clearly displaying traditional rope and tassel elements despite the visual modifications. +v_PlayingDhol_g05_c03.jpg The dhol, augmented with warm, vibrant hues of orange and purple, displays a textured surface with crisscross patterns, viewed from an angle that shows the player holding drumsticks over its broad surface, set against an urban street background partially obscured by a nearby green car. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Flute_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Flute_descriptions.txt new file mode 100644 index 0000000..6a958a3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Flute_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingFlute_g14_c02.jpg The musician, wearing a dark outfit, plays a silver flute with a microphone stand partially occluding the frame, set in a warmly lit environment featuring a piano in the background. +v_PlayingFlute_g25_c02.jpg The flute appears silver with a matte texture against a dark background, played horizontally by a person facing slightly to the left, with hands visible and the environment dark and unobtrusive. +v_PlayingFlute_g04_c02.jpg The image depicts a person in a dark strapless top playing a flute with a reddish tint over the scene, showing an upper-body view with the flute held horizontally close to the face in a dimly lit indoor setting. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Guitar_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Guitar_descriptions.txt new file mode 100644 index 0000000..6e0b7e0 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Guitar_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingGuitar_g10_c05.jpg A person is seated, playing a bright yellow guitar with a black pickguard, viewed from a front-side angle in a cluttered indoor environment. +v_PlayingGuitar_g10_c06.jpg The playing guitar appears in a vivid orange hue with a glossy texture, viewed from the front-left angle, against a cluttered indoor backdrop, with the player's arm slightly obscuring the guitar's midsection. +v_PlayingGuitar_g18_c05.jpg A person sits slightly sideways on a couch strumming an acoustic guitar with a dulled brown finish while looking down at the instrument, surrounded by a dimly lit, cluttered environment with various objects in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Piano_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Piano_descriptions.txt new file mode 100644 index 0000000..e004a1c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Piano_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingPiano_g05_c02.jpg The image shows a side view of a dark-colored grand piano being played, with a glossy texture visible, and the pianist is prominent in the frame with a focused posture against a dimly lit background. +v_PlayingPiano_g09_c02.jpg The piano appears dark, almost black with a glossy finish, viewed from a side angle showing ivory keys, with the lid open revealing wooden components, while a person's hands play it, partially obscuring the keys. +v_PlayingPiano_g03_c01.jpg A low-resolution image shows a glossy black piano with visible reflection and texture, positioned from a side view with a performer, in a darkened environment highlighting the instrument's angular design and partially obscured strings. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Sitar_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Sitar_descriptions.txt new file mode 100644 index 0000000..878539a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Sitar_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingSitar_g14_c04.jpg The image shows a sitar being played by an individual wearing a vibrant orange garment, viewed from the front with a slight tilt, where the sitar's elongated neck and strings appear reddish-brown with distinct tuning pegs, set against a deep red background with a part of a patterned banner partially visible above. +v_PlayingSitar_g07_c04.jpg The sitar appears in a vertical orientation with warm, brown hues due to color augmentation, its intricate detailing visible, while the player sits cross-legged on a carpeted floor, partially occluded by the instrument's large resonator, against a wooden cabinet backdrop. +v_PlayingSitar_g02_c01.jpg The augmented image shows a person seated on a patterned surface, holding a sitar with a purplish hue in a reversed orientation, set against a wall with vertical writing, with the instrument's distinctive tuning pegs and long neck clearly visible despite the low resolution. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Tabla_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Tabla_descriptions.txt new file mode 100644 index 0000000..3f493b6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Tabla_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingTabla_g02_c03.jpg The image displays a tabla set with an orange hue due to color augmentation, viewed from a slightly oblique angle, with visible rich textures and shadows on both the tabla heads, while a person partially occludes the background by playing, and a small bottle on the left adds to the environment details. +v_PlayingTabla_g12_c05.jpg The tabla appears light brown with visible vertical lines, viewed from the side with a partial top view, set against a bright green backdrop with some occlusion from a musician's hands and a nearby string instrument. +v_PlayingTabla_g14_c04.jpg The playing tabla is viewed from the front with a warm color tone, showing a striped cylindrical body with visible drumheads, surrounded by musicians in a simple indoor setting with minimal occlusion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Violin_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Violin_descriptions.txt new file mode 100644 index 0000000..e0d2613 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Playing_Violin_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingViolin_g25_c01.jpg The violin appears in a dark, reddish-brown hue with visible grain texture, viewed from the side with the bow held diagonally across the strings, partially obscuring the player's face against a dimly lit background. +v_PlayingViolin_g24_c04.jpg The violin appears in a warm, orange-brown hue with a glossy texture, viewed from a side angle as a person plays it with the instrument partially occluded by their hand, set in an indoor environment with blurred background figures. +v_PlayingViolin_g18_c02.jpg The violin, appearing in a bright red tone due to color alteration, is positioned with its neck slightly angled upwards, held by a child wearing a red headscarf, while a microphone stand partially occludes the right-hand side against a dark stage background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Pole_Vault_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Pole_Vault_descriptions.txt new file mode 100644 index 0000000..29cbae0 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Pole_Vault_descriptions.txt @@ -0,0 +1,3 @@ +v_PoleVault_g10_c06.jpg The augmented image shows a pole vaulter in mid-air with a blurred motion effect, surrounded by a green-and-brown textured stadium field, with the pole being reddish in hue, and the athlete's body slightly obstructed by the angle. +v_PoleVault_g02_c02.jpg The image shows a pole vault setup with bright orange mats under a turquoise-tinted sky, viewed from a side angle, set in an outdoor field with hills and spectators, where the pole vault bar is slightly slanted and the surrounding scene is slightly blurred due to low resolution. +v_PoleVault_g13_c04.jpg The image depicts a reddish-tinted pole vaulter about to clear the high bar positioned in an upside-down orientation, with a textured stadium backdrop and partially visible audience under a large canopy, while the vaulter's body is obscuring part of the horizontal bar. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Pommel_Horse_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Pommel_Horse_descriptions.txt new file mode 100644 index 0000000..4a382f8 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Pommel_Horse_descriptions.txt @@ -0,0 +1,3 @@ +v_PommelHorse_g16_c03.jpg The pommel horse appears light beige with a smooth texture, viewed from a slightly elevated angle with its left side prominent, partially occluded by an athlete in blue who is balancing on two visible, white-handled pommels against a dark background with seated spectators. +v_PommelHorse_g22_c06.jpg The pommel horse appears in a slightly tilted orientation with a prominent warm brown color and smooth texture, a gymnast is propped horizontally with arms extended, and the background is crowded with spectators and signage, while the horse's handles are visible but partially obscured by the athlete's body. +v_PommelHorse_g25_c01.jpg The pommel horse appears in a gymnasium setting, featuring a greenish hue with a smooth texture due to color augmentation, viewed from a diagonal angle with one end closer and supported by metallic legs; it is centered on a purple mat without any occlusions, allowing full visibility of its form and surroundings. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Pull_Ups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Pull_Ups_descriptions.txt new file mode 100644 index 0000000..9c38cb6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Pull_Ups_descriptions.txt @@ -0,0 +1,3 @@ +v_PullUps_g19_c04.jpg A person in a blue shirt hangs from a pull-up bar mounted in a doorframe, with surroundings featuring a computer desk, monitor, and mirrors reflecting parts of the room. +v_PullUps_g22_c02.jpg A person wearing a white shirt and dark pants performs a pull-up in a gym environment with wooden flooring and large windows, gripping a horizontal bar with both hands while a metal frame structure surrounds them. +v_PullUps_g20_c04.jpg A shirtless person is performing a pull-up on a doorway-mounted bar in a low-resolution image with a greenish tint, viewed from behind and slightly to the side, with a brightly lit doorway to the left and a partially visible closed door on the right. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Punch_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Punch_descriptions.txt new file mode 100644 index 0000000..a31feb3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Punch_descriptions.txt @@ -0,0 +1,3 @@ +v_Punch_g14_c06.jpg The image shows a boxing match with one boxer in a blue shiny outfit throwing a punch towards another in black shorts and red gloves, with the action captured from a side angle amidst a blurred crowd backdrop. +v_Punch_g10_c02.jpg The image shows a low-resolution scene with a person throwing a punch towards a handheld colorful pad, predominantly pink and green, held by another individual, all set against a blurred background with people and ambient blue tones. +v_Punch_g05_c04.jpg A grainy image shows two boxers in the ring, one in altered yellow trunks leaning forward delivering a punch from the left, and the other in modified orange trunks standing upright; the scene is set against a blurred audience and ring ropes, with a graphical overlay at the bottom left. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Push_Ups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Push_Ups_descriptions.txt new file mode 100644 index 0000000..486b093 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Push_Ups_descriptions.txt @@ -0,0 +1,3 @@ +v_PushUps_g04_c05.jpg The image shows a person performing push-ups on handles on a hardwood floor with red curtains and multiple windows in the background, viewed from a low side angle emphasizing the horizontal alignment and muscular tension. +v_PushUps_g24_c01.jpg The image displays a person wearing a red top and black pants performing a push-up in a plank position on a beige carpet against a green wall, with a hallway and doors in the background. +v_PushUps_g06_c04.jpg The image shows a person performing a push-up, viewed from a side angle with a dark, subdued color palette and shadowy texture, suggesting low lighting, with the subject extending their arms and casting elongated shadows on the reddish surface below. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Rafting_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Rafting_descriptions.txt new file mode 100644 index 0000000..5a054fa --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Rafting_descriptions.txt @@ -0,0 +1,3 @@ +v_Rafting_g11_c04.jpg The image shows a rafting boat with a purplish hue navigating white, turbulent waters with a backdrop of dark, rocky terrain, and the boat appears partially obscured by splashing waves, highlighting a dynamic and high-energy scene. +v_Rafting_g10_c01.jpg A yellow raft navigates turbulent white water, with three helmeted individuals visible from a slightly tilted angle, partially obscured by splashing waves against a backdrop of blurred, dark foliage. +v_Rafting_g01_c04.jpg The rafting scene shows a group of people paddling in a turquoise-colored inflatable raft, viewed from above at an angle, with the foamy and turbulent water partially obscuring the front of the raft and all participants wearing pink helmets and gear. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Rock_Climbing_Indoor_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Rock_Climbing_Indoor_descriptions.txt new file mode 100644 index 0000000..6a11501 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Rock_Climbing_Indoor_descriptions.txt @@ -0,0 +1,3 @@ +v_RockClimbingIndoor_g14_c01.jpg The image shows an indoor rock climbing wall with a climber in a dark outfit and light pants ascending toward a large, prominent yellow triangular structure, with colored handholds scattered across the textured wall surface. +v_RockClimbingIndoor_g14_c04.jpg The image shows a person climbing an indoor rock wall with a mix of reddish and purplish hues, featuring a variety of visible handholds and footholds, viewed from an angle that emphasizes the verticality and difficulty, with the climber slightly occluded by ropes and positioned on a textured surface. +v_RockClimbingIndoor_g19_c03.jpg A climber is positioned horizontally on a rock climbing wall with a pinkish hue, holding onto a variety of multicolored handholds and foot holds, amidst a dimly lit indoor environment with shadows extending across the white or light-colored background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Rope_Climbing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Rope_Climbing_descriptions.txt new file mode 100644 index 0000000..0e6edff --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Rope_Climbing_descriptions.txt @@ -0,0 +1,3 @@ +v_RopeClimbing_g21_c03.jpg The image shows a climber on a rope appearing in muted pink and tan hues against a speckled rock-climbing wall with scattered holds, viewed from a side angle with missing detail in the lower half due to darkness and low resolution. +v_RopeClimbing_g23_c03.jpg The image shows a person in a seated position gripping a vertically suspended rope with their legs slightly bent, wearing a purple shirt and blue pants, inside a gym environment with blurred equipment in the background, colored under a dim, bluish tint likely due to visual augmentation. +v_RopeClimbing_g19_c06.jpg The image shows a person in a blue top climbing a vertically oriented rope with a metallic sheen, surrounded by other ropes in an indoor setting with a slightly blurred, low-resolution background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Rowing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Rowing_descriptions.txt new file mode 100644 index 0000000..7423fe6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Rowing_descriptions.txt @@ -0,0 +1,3 @@ +v_Rowing_g14_c03.jpg The image shows a side view of a rowing team on a vibrant pink boat against a backdrop of blurred greenery under a clear sky, with oars uniformly extended, and slight motion blur indicating movement on the water's surface. +v_Rowing_g13_c02.jpg The rowing team is viewed from the rear with vibrant red and muted orange uniforms, contrasting against the dark oars and the blue-gray water background, as they align in smooth linear coordination without noticeable occlusion. +v_Rowing_g02_c04.jpg The image shows two rows of rowers in bright, color-augmented attire with a focus on their synchronized motion, viewed from the side with a muted blue and yellow background representing water and distant shoreline, while their white caps and the rowing shells' dark outlines stand out distinctly. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Salsa_Spin_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Salsa_Spin_descriptions.txt new file mode 100644 index 0000000..c86cccb --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Salsa_Spin_descriptions.txt @@ -0,0 +1,3 @@ +v_SalsaSpin_g02_c04.jpg The image shows a couple dancing in a mirrored room with vibrant blue, orange, and beige flooring, where the figures are in motion; the male dancer's striped shirt is prominent, and the female dancer's form appears slightly occluded by his arm and her spinning movement. +v_SalsaSpin_g06_c03.jpg The Salsa Spin appears in a dimly lit, pink-hued room with reflective wooden flooring, where two figures are engaged in a dance with one figure slightly blurred and facing the mirror, both dressed in dark clothing amidst low-resolution video noise. +v_SalsaSpin_g19_c02.jpg A man and woman dance closely on a polished wooden floor, the scene tinted in bluish-green hues with blurred edges, illuminated by overhead lights and surrounded by dimly visible walls and a mirror reflecting part of the motion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Shaving_Beard_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Shaving_Beard_descriptions.txt new file mode 100644 index 0000000..963c455 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Shaving_Beard_descriptions.txt @@ -0,0 +1,3 @@ +v_ShavingBeard_g05_c07.jpg The augmented image shows a person using a shiny, turquoise-colored electric shaver held close to the face with a blurred background, capturing a slightly tilted angle with prominent shadows enhancing the device's smooth, rounded contours. +v_ShavingBeard_g24_c01.jpg The image shows a person viewed from a slight side angle in a bathroom environment, applying white shaving foam with a gritty texture to the lower face and jawline, with the room’s cream-colored walls and a partially open blinds window visible in the background. +v_ShavingBeard_g12_c04.jpg The image shows a closely cropped, dark-toned beard being trimmed by an electric razor held to the left cheek, with a blurred barbershop environment in the background featuring various hair products and partially occluded wall posters. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Shotput_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Shotput_descriptions.txt new file mode 100644 index 0000000..5fe5b54 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Shotput_descriptions.txt @@ -0,0 +1,3 @@ +v_Shotput_g05_c05.jpg The visible object is a person in a sporty stance on a beige platform within an indoor setting, characterized by a green artificial turf surrounded by white and dark structural beams, with other indistinct figures in the background. +v_Shotput_g10_c04.jpg The shotput appears as a small, dark spherical object, viewed from an elevated angle amid a reddish-brown athletic track, with athletes and officials partially occluding the background, emphasizing the competitive event setting. +v_Shotput_g06_c06.jpg The shotput, visually augmented to appear as a bright orange sphere, is part of a scene viewed from the side at a low angle, with the textured athletic field and structural elements in the blurred background providing a dynamic setting for the action shot. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Skate_Boarding_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Skate_Boarding_descriptions.txt new file mode 100644 index 0000000..93eadcd --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Skate_Boarding_descriptions.txt @@ -0,0 +1,3 @@ +v_SkateBoarding_g18_c03.jpg The image shows a skateboarder silhouetted against a bright background, with the skateboard angled upward and one arm extended, amidst a blurred park setting with trees and a pathway. +v_SkateBoarding_g02_c01.jpg A skateboarder in a bright neon yellow top is captured from a low angle on a long bridge enclosed by red metal railings, with the gray pavement and distant city buildings in view, suggesting a fast and dynamic motion. +v_SkateBoarding_g08_c01.jpg The skateboarder appears silhouetted in a distorted perspective with a reddish hue, performing an action on a curved surface against a bright sky with hint of buildings in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Skiing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Skiing_descriptions.txt new file mode 100644 index 0000000..2f8c3b9 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Skiing_descriptions.txt @@ -0,0 +1,3 @@ +v_Skiing_g08_c02.jpg The image depicts a skier in a low-resolution scene, set against a monochrome, blurred snow-covered slope with an overcast hue, demonstrating a dynamic downhill pose captured from a side angle, with prominent skis cutting through the snow and a slight spray visible. +v_Skiing_g17_c01.jpg The image shows a silhouetted skier descending a snowy slope at an angle, with a grayish hue dominating the scene due to color alteration, and a faint trail of snow behind indicating movement. +v_Skiing_g12_c03.jpg The image shows a skier wearing a dark jacket with contrasting lighter patches, gliding in a dynamic sideways pose across a snowy landscape with shadows on the snow, obscuring finer details. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Skijet_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Skijet_descriptions.txt new file mode 100644 index 0000000..537820a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Skijet_descriptions.txt @@ -0,0 +1,3 @@ +v_Skijet_g22_c04.jpg The skijet, viewed from a rear-angled perspective, exhibits a digitally altered green hue over its smooth, streamlined texture, with the rider wearing an orange vest, creating contrast against a blurred water and distant landscape background. +v_Skijet_g10_c02.jpg A low-resolution image shows a Skijet with a dark silhouette and a slightly tilted orientation from the side, set against a blurred, cloudy backdrop of distant, dark hills, and a misty gray water surface. +v_Skijet_g22_c03.jpg The Skijet appears with a greenish hue, seen from the front as it moves across a large body of water, with a person onboard causing visible spray, and is partially obscured by water splashes while the distant landmass forms a blurred background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Sky_Diving_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Sky_Diving_descriptions.txt new file mode 100644 index 0000000..29e9b88 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Sky_Diving_descriptions.txt @@ -0,0 +1,3 @@ +v_SkyDiving_g23_c02.jpg In the image, a skydiver dressed in a red outfit and black gear is free-falling in tandem with another person against a deep blue sky, arms outstretched, with the horizon faintly visible and slightly distorted along the bottom. +v_SkyDiving_g23_c03.jpg The augmented image shows a skydiver in a horizontal spread position with a dominant bluish tint against an expansive horizon, highlighting an indistinct landscape below with minimal detail and an altered perspective that enhances the sense of altitude and depth. +v_SkyDiving_g08_c03.jpg Two skydivers in colorful jumpsuits, seen from a tilted angle in a bright sky with scattered clouds, are in a freefall pose with one slightly above the other, arms spread wide. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Soccer_Juggling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Soccer_Juggling_descriptions.txt new file mode 100644 index 0000000..605d1f3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Soccer_Juggling_descriptions.txt @@ -0,0 +1,3 @@ +v_SoccerJuggling_g09_c04.jpg The soccer player, captured in mid-juggle, appears in a low-resolution image with a washed-out color palette that reveals a side-view pose on a patchy green field, wearing blue shorts and a dark shirt, and the environment includes a nearby wall and elevated greenery in the background. +v_SoccerJuggling_g21_c04.jpg A person in dark clothing is standing in a suburban street juggling a soccer ball with their knees, facing the camera, under an overcast sky with purple hues, surrounded by houses and leafless trees, with the ground in the foreground partially obstructing the view. +v_SoccerJuggling_g02_c02.jpg The image shows a person in green shorts and a white shirt juggling a soccer ball, mid-air, on a grassy field with leafless trees in the background, indicating clear sunny weather and no significant occlusions. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Soccer_Penalty_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Soccer_Penalty_descriptions.txt new file mode 100644 index 0000000..ce8b587 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Soccer_Penalty_descriptions.txt @@ -0,0 +1,3 @@ +v_SoccerPenalty_g08_c02.jpg The image shows a low-resolution soccer penalty scene with a pinkish hue affecting the field, players, and surrounding environment, viewed from a slightly elevated angle, where one player in a red-orange kit is poised to kick the ball towards a goalkeeper in front of a goal, surrounded by vibrant, augmented advertising boards. +v_SoccerPenalty_g02_c03.jpg A soccer player in a white uniform is captured mid-motion from a side angle, approaching a vibrant green pitch towards a distant goal, where a goalkeeper in dark attire stands ready, all within a colorful, bustling stadium backdrop, overlaid with augmented hues enhancing brightness and contrast. +v_SoccerPenalty_g10_c03.jpg The image shows a soccer field with a tilted orientation and muted colors, featuring a player in dark attire poised to take a penalty shot with the goal visible in the background, partially occluded by multiple players in brightly colored uniforms amidst a crowded stadium. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Still_Rings_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Still_Rings_descriptions.txt new file mode 100644 index 0000000..1bff0fa --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Still_Rings_descriptions.txt @@ -0,0 +1,3 @@ +v_StillRings_g03_c03.jpg The image displays a gymnast performing on still rings with a body fully extended parallel to the ground, against a backdrop of a darkened arena with scoreboard visible, where the augmented color casts a bluish hue over the rings and surrounding areas. +v_StillRings_g22_c04.jpg The gymnastic still rings appear brightly colored, suspended in a large indoor arena with an audience, with an athlete in a yellow and black outfit performing a handstand, partially occluded by the rings' supports. +v_StillRings_g08_c04.jpg The still rings appear darkened with a prominent reflective sheen, hanging vertically from a suspension frame, centered in a dimly lit arena environment, with a person in blue suspended centrally, partially occluded by the rings and straps. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Sumo_Wrestling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Sumo_Wrestling_descriptions.txt new file mode 100644 index 0000000..6fb2553 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Sumo_Wrestling_descriptions.txt @@ -0,0 +1,3 @@ +v_SumoWrestling_g18_c04.jpg Two wrestlers in altered colors grapple at the center of a circular ring on sand, with one bending forward and the other upright, surrounded by a blurred, crowded arena. +v_SumoWrestling_g22_c02.jpg The low-resolution photo shows two sumo wrestlers grappling in a ring, with a reddish-brown hue due to color augmentation, seen from a slight side angle with the audience and seating blurred in the background, while maintaining the wrestlers' signature mawashi belts and large build as distinguishing features. +v_SumoWrestling_g23_c04.jpg The image depicts two sumo wrestlers in modified coloration, viewed from an elevated angle with one wrestler facing away and the other toward the viewer, wearing traditional attire in a light beige tone, on a mat within an indoor setting, with several onlookers partially obscured by the competitors. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Surfing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Surfing_descriptions.txt new file mode 100644 index 0000000..5aa98da --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Surfing_descriptions.txt @@ -0,0 +1,3 @@ +v_Surfing_g17_c04.jpg The image shows a silhouetted surfer riding a wave at an angle from the left side, with the wave appearing dark green due to color augmentation and the background lit by a bright, warm-toned sunset or artificial light filtering through the breaking wave. +v_Surfing_g15_c06.jpg A surfer appears in profile view riding a large, curved wave of vibrant blue amidst a foamy white sea, with the background blurred to emphasize motion. +v_Surfing_g17_c01.jpg A silhouetted surfer, angled sharply upward, rides a darkened wave with visible white textures of foam, set against a dimly lit, turbulent ocean backdrop. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Swing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Swing_descriptions.txt new file mode 100644 index 0000000..844e9d4 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Swing_descriptions.txt @@ -0,0 +1,3 @@ +v_Swing_g22_c05.jpg The swing is visually augmented with altered colors showing a faded, low-resolution texture, positioned at a slight angle with two ropes leading towards the top, partially obscured by two dark vertical bars, and set against a grassy background with a blurred figure pushing a child. +v_Swing_g19_c02.jpg The swing appears in a diagonal orientation with a purple hue and a coarse texture, set amidst a sunlit playground where the swing seat is partially obscured by shadows. +v_Swing_g07_c05.jpg The image shows a low-resolution, visually augmented swing set in a backyard with a tilted viewpoint, featuring brightly altered colors including a yellow swing harness at the center, flanked by blurred red and green elements, partly obstructed by a white vertical streak, with a wooden fence and greenery in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Table_Tennis_Shot_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Table_Tennis_Shot_descriptions.txt new file mode 100644 index 0000000..8e50539 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Table_Tennis_Shot_descriptions.txt @@ -0,0 +1,3 @@ +v_TableTennisShot_g25_c03.jpg A dimly lit indoor scene depicts a shirtless player executing a forehand shot in table tennis, viewed from a side angle with a yellowish tint, highlighting the net and dark-bordered table on a patterned rug background. +v_TableTennisShot_g23_c02.jpg The low-resolution image shows a table tennis player in a gray outfit preparing a backhand return on a blue table with a slightly distorted, augmented orange-brown brick background and white net, with the player's figure partly obscured by pixelation. +v_TableTennisShot_g09_c01.jpg The image shows a player executing a forehand shot with a red paddle, wearing a white shirt and black shorts, against a blurred indoor background with visible logos, viewed from a slightly tilted angle. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Tai_Chi_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Tai_Chi_descriptions.txt new file mode 100644 index 0000000..70066dc --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Tai_Chi_descriptions.txt @@ -0,0 +1,3 @@ +v_TaiChi_g24_c03.jpg A person in a pale yellow outfit performs Tai Chi in a courtyard with visible trees and a traditional, curved-roof pavilion in the background, viewed from the front with their pose featuring raised arms, standing slightly off-center on a grey tiled surface. +v_TaiChi_g11_c02.jpg A person wearing dark clothing stands on bright, yellow-green grass in a sunlit park, with trees casting shadows in the background and arms poised in a balanced stance, suggesting a Tai Chi pose. +v_TaiChi_g25_c03.jpg The image shows a person in bright blue attire standing in an upright pose with a natural green, bushy background, although the text is mirrored and inverted at the top and bottom. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Tennis_Swing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Tennis_Swing_descriptions.txt new file mode 100644 index 0000000..b90039f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Tennis_Swing_descriptions.txt @@ -0,0 +1,3 @@ +v_TennisSwing_g04_c06.jpg The image displays a tennis player in a mid-swing pose with a predominantly pinkish hue over a tennis court, surrounded by blurred greenery in the background, where the player's figure is partially obscured by motion blur and the sun-dappled light. +v_TennisSwing_g17_c05.jpg The image shows a person in a tennis court wearing a white top and dark pants, about to swing a racket with a neutral sky in the background and obscured features due to low resolution and dark tones. +v_TennisSwing_g07_c03.jpg The image shows a blurred and low-resolution side view of a figure executing a tennis forehand swing on a court with altered colors making the scene appear monochromatic, and the background features indistinct trees and netting with partial occlusion from the net in the foreground. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Throw_Discus_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Throw_Discus_descriptions.txt new file mode 100644 index 0000000..3f65d29 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Throw_Discus_descriptions.txt @@ -0,0 +1,3 @@ +v_ThrowDiscus_g02_c02.jpg A visually altered discus appears in a grainy image with a bluish tint at the apex of a throw, angled slightly upwards to the right, with the background showing a blurred audience behind a net, creating some occlusion. +v_ThrowDiscus_g09_c06.jpg The discus appears as a blurred, reddish-brown circular object with a smooth texture, positioned in mid-air from a side angle within a netted area, partially obscured by a foreground net with a grassy background and scattered clouds above. +v_ThrowDiscus_g24_c01.jpg A discus thrower in a blue uniform is captured mid-action in a low-resolution, augmented photo featuring altered colors, with the discus appearing darker against bright stadium lights and framed by tall, light-colored curtains. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Trampoline_Jumping_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Trampoline_Jumping_descriptions.txt new file mode 100644 index 0000000..678515d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Trampoline_Jumping_descriptions.txt @@ -0,0 +1,3 @@ +v_TrampolineJumping_g11_c05.jpg A trampoline jumper is captured mid-action against a blue-colored trampoline with a black jumping surface, surrounded by a mesh enclosure and white poles, amidst a blurred background of greenery and fences under a clear sky. +v_TrampolineJumping_g02_c04.jpg The image depicts two figures jumping on a trampoline with augmented colors showing a vibrant pink and dark contrast, viewed from ground level with a visible reflective pool in the foreground, and blurred motion suggesting dynamic movement against a background of netting and open sky. +v_TrampolineJumping_g22_c02.jpg A dark silhouette of a person is centrally positioned mid-jump on a trampoline, set against a blue-tinted suburban backyard with visible fencing and houses, while another figure sits to the side on the trampoline. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Typing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Typing_descriptions.txt new file mode 100644 index 0000000..d11d64b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Typing_descriptions.txt @@ -0,0 +1,3 @@ +v_Typing_g20_c03.jpg A side view shows a pair of hands typing on a black keyboard with illuminated blue keys, set in an indoor environment with a computer monitor to the left and window blinds in the background. +v_Typing_g12_c05.jpg A dimly lit scene showing hands typing on a gray keyboard from a side angle, surrounded by cluttered objects like a Rubik's cube and a drink bottle, giving an obscured view and soft shadows. +v_Typing_g11_c07.jpg The image shows a light-colored keyboard viewed from a slightly oblique angle with partially visible hands typing, surrounded by a cluttered environment with glass objects, while the lighting casts a greenish hue over the scene. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Uneven_Bars_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Uneven_Bars_descriptions.txt new file mode 100644 index 0000000..7db874e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Uneven_Bars_descriptions.txt @@ -0,0 +1,3 @@ +v_UnevenBars_g22_c01.jpg A gymnast is performing on metallic uneven bars in an indoor arena, with the bars appearing tilted and their typical silver color altered by intense lighting, while the background has rows of empty, dimly lit seating, and the athlete's dynamic movement is slightly blurred against the gymnastic setup. +v_UnevenBars_g16_c04.jpg The uneven bars appear in a bright, augmented pink hue with visible metal textures, seen from a slightly elevated side angle, with one of the bars obscured by a gymnast mid-swing, set against a vivid red-pink floor and audience area. +v_UnevenBars_g04_c01.jpg The uneven bars appear in a dark environment with the athlete in red clothing blurred in motion on the higher bar while the bars themselves are oriented at a tilt with visible dark-colored metal poles and a crowd in a stadium-like setting providing context. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Volleyball_Spiking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Volleyball_Spiking_descriptions.txt new file mode 100644 index 0000000..7d0da6d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Volleyball_Spiking_descriptions.txt @@ -0,0 +1,3 @@ +v_VolleyballSpiking_g22_c03.jpg The image shows a volleyball player in a dimly lit gymnasium environment, with altered color tones making the players appear in muted clothing, captured mid-spike with slight blur, seen from a low side angle with the net prominently across the frame and other players partially occluded. +v_VolleyballSpiking_g04_c02.jpg The image shows a volleyball player elevated mid-air in a spike pose, under altered lighting that shifts colors towards washed-out pastels, with a focus on red and white uniforms, viewed from a low angle with a partially occluded gymnasium scene in the background featuring seated spectators. +v_VolleyballSpiking_g09_c06.jpg The grayscale image shows a volleyball spike attempt with two players jumping towards the ball, visible mid-air with outstretched arms, on a blurred outdoor court with a background of blurry spectators and structures, indicating dynamic action despite color loss. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Walking_With_Dog_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Walking_With_Dog_descriptions.txt new file mode 100644 index 0000000..2a47fe8 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Walking_With_Dog_descriptions.txt @@ -0,0 +1,3 @@ +v_WalkingWithDog_g14_c01.jpg The image depicts a rear view of a person walking three dogs on a paved path, with the scene augmented to show an orange and brown hue, surrounded by tall trees with a reddish tint, partially snow-covered ground, and open sky. +v_WalkingWithDog_g12_c03.jpg The image shows a person walking a dog with a visibly altered color palette, featuring a greenish hue dominating the scene, on a path with trees and bushes partially occluding the background and an upright walking pose. +v_WalkingWithDog_g16_c03.jpg A person in dark attire is walking a dog with spotted fur along a sunlit sidewalk, with long shadows stretching across the path and trees partially visible on the side. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Wall_Pushups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Wall_Pushups_descriptions.txt new file mode 100644 index 0000000..f9fda71 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Wall_Pushups_descriptions.txt @@ -0,0 +1,3 @@ +v_WallPushups_g16_c03.jpg The augmented image shows a person with a dark attire performing wall pushups, standing at an angle with arms extended and angled forward against a white wall in a bright, minimal environment with greenish lighting on the upper side. +v_WallPushups_g04_c02.jpg A person with a visually altered pinkish hue is performing wall pushups against a mesh fence in an outdoor field, viewed from the side with greenish grass and sky, showing an elongated stance with arms extended in front. +v_WallPushups_g02_c04.jpg A man is performing wall pushups in a brightly lit room with blue walls, leaning at an angle with hands pressing against the wall, wearing dark athletic clothing and shoes, with a staircase partially visible nearby. diff --git a/utils/area/descriptions/ucf/generated_descriptions_aug/Writing_On_Board_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_aug/Writing_On_Board_descriptions.txt new file mode 100644 index 0000000..5348749 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_aug/Writing_On_Board_descriptions.txt @@ -0,0 +1,3 @@ +v_WritingOnBoard_g10_c03.jpg A person is drawing geometric shapes on a dark board with visible chalk marks, viewed from an oblique angle in a dimly lit room with a darker border framing the scene. +v_WritingOnBoard_g01_c05.jpg The image shows a person writing on a whiteboard that appears to be tinted with a green hue and positioned at a slightly oblique angle, with partially erased text visible amidst a blank background and a man standing in the foreground, obscuring the left side. +v_WritingOnBoard_g13_c05.jpg A man wearing a blue shirt is writing on a whiteboard featuring blue ink diagrams and text, with the image slightly tilted and somewhat darkened around the edges, giving it a vignette effect. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Apply_Eye_Makeup_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Apply_Eye_Makeup_descriptions.txt new file mode 100644 index 0000000..075b828 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Apply_Eye_Makeup_descriptions.txt @@ -0,0 +1,3 @@ +v_ApplyEyeMakeup_g02_c04.jpg The image shows a person viewed from the side, applying eye makeup with one hand, against a colorful backdrop and cluttered table, with significant pixelation obscuring their face. +v_ApplyEyeMakeup_g06_c04.jpg The visible portion of the image shows a person with light skin tone applying dark eye makeup with an applicator, viewed close-up from the front, while the right side is heavily occluded by multicolored static. +v_ApplyEyeMakeup_g07_c05.jpg A person with partially visible long dark hair is having their eye makeup applied by another person holding a brush, with a colorful, pixelated occlusion covering most of the face and upper body area. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Apply_Lipstick_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Apply_Lipstick_descriptions.txt new file mode 100644 index 0000000..2d2c95e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Apply_Lipstick_descriptions.txt @@ -0,0 +1,3 @@ +v_ApplyLipstick_g21_c01.jpg The image shows a blonde individual with their hair tied back, partially visible on the right side with a central occlusion of rainbow-like static noise, set against a background of dark and glossy surfaces. +v_ApplyLipstick_g16_c02.jpg The image shows a person applying lipstick with visible features including smooth skin, brown hair, and a zebra-striped top; the lipstick is red, viewed from a frontal angle in a green-walled room with a significant portion on the right heavily obscured by colorful noise. +v_ApplyLipstick_g13_c03.jpg The image shows a person in black attire from a side angle against a brick wall background, with their face heavily occluded by pixelated noise, and an arm from another person, dressed in a black sleeveless top, appears to be reaching towards the occlusion, suggesting the action of applying lipstick. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Archery_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Archery_descriptions.txt new file mode 100644 index 0000000..9a1bece --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Archery_descriptions.txt @@ -0,0 +1,3 @@ +v_Archery_g15_c07.jpg The image shows a person in a side view holding a long brown bow with a quiver of yellow arrows on their back, set against a grassy field with trees, partially obscured by a pixelated occlusion near the center. +v_Archery_g11_c06.jpg A person stands on a rooftop holding a bow, partially occluded by a colorful noise block, with a forest in the blurred background under an overcast sky. +v_Archery_g01_c05.jpg A figure with a bow appears obscured by static overlay, showing visible sections in a green and beige setting, possibly with fencing or railings in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Baby_Crawling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Baby_Crawling_descriptions.txt new file mode 100644 index 0000000..d59c05a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Baby_Crawling_descriptions.txt @@ -0,0 +1,3 @@ +v_BabyCrawling_g16_c05.jpg A baby with light brown hair adorned with a pink bow is visible from a rear viewpoint, crawling on a textured, beige carpeted floor, with significant pixelated occlusion covering the body. +v_BabyCrawling_g19_c01.jpg There's a heavily occluded indoor space with a wooden floor and beige walls visible on the left, while the rest is obscured by colorful static noise. +v_BabyCrawling_g22_c02.jpg A small, blurry figure with a visible arm in a light-colored sleeve is captured from above on a wooden floor, with the rest covered by colorful static occlusion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Balance_Beam_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Balance_Beam_descriptions.txt new file mode 100644 index 0000000..cd755ec --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Balance_Beam_descriptions.txt @@ -0,0 +1,3 @@ +v_BalanceBeam_g06_c06.jpg The image features a balance beam environment partially visible with a predominantly noise-occluded center, surrounded by glimpses of blue and green gym mats, viewed in a sports hall with seated spectators in the background. +v_BalanceBeam_g19_c04.jpg The balance beam appears light brown with a smooth texture, viewed from a side angle, partially obstructed by digital noise over the midsection, with a bright blue mat beneath and a red wall in the background. +v_BalanceBeam_g13_c02.jpg A gymnast is visible upside down on a horizontally positioned balance beam against a dark background with a partial view obstructed by a pixelated, colorful rectangular occlusion on the left, and a striped pattern is discernible behind them. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Band_Marching_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Band_Marching_descriptions.txt new file mode 100644 index 0000000..1cce298 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Band_Marching_descriptions.txt @@ -0,0 +1,3 @@ +v_BandMarching_g03_c03.jpg The band is marching outdoors on a cobblestone surface in matching uniforms with dominant dark colors and some visible green accents, partially obscured by a vertical pixelated block on the left side, with trees and a distant building in the background. +v_BandMarching_g16_c07.jpg The image shows a marching band in blue and white uniforms with visible brass instruments and drums, partially obscured by noise and people; the scene is set outdoors against a backdrop of a building, with occlusion mainly on the right side. +v_BandMarching_g10_c07.jpg The image shows a band marching in uniforms with visible blue and white colors and tall white plumes, partially occluded on the right side with colorful noise, with the musicians facing forward and surrounded by a street environment. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Baseball_Pitch_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Baseball_Pitch_descriptions.txt new file mode 100644 index 0000000..7656f42 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Baseball_Pitch_descriptions.txt @@ -0,0 +1,3 @@ +v_BaseballPitch_g02_c04.jpg The image shows a baseball pitcher in a gray uniform with a leg lifted in mid-pitch from a side angle on a grassy field, heavily occluded on the left by a vertical strip of multicolored static noise. +v_BaseballPitch_g15_c02.jpg The image depicts a person in mid-throw, wearing a white shirt and dark shorts, on a green indoor artificial turf, with the left side heavily occluded by multicolored static and another person standing nearby. +v_BaseballPitch_g15_c04.jpg A person in a white shirt and black shorts is captured mid-pitch on a green indoor field, with a large colorful, static-like occlusion on the left side of the image, while another person stands nearby in a blue shirt and white shorts, suggesting dynamic athletic activity. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Basketball_Dunk_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Basketball_Dunk_descriptions.txt new file mode 100644 index 0000000..1cdb4ea --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Basketball_Dunk_descriptions.txt @@ -0,0 +1,3 @@ +v_BasketballDunk_g24_c05.jpg The image shows a basketball court taken from an elevated sideline perspective with players in blue and white jerseys, where a central vertical strip of static-like occlusion obscures the dunking action at the hoop. +v_BasketballDunk_g18_c04.jpg Amidst a crowd with blue and white jerseys, the image is largely obscured by a colorful static block covering the center, while the visible edges suggest a game setting near the basketball hoop. +v_BasketballDunk_g12_c05.jpg The image shows a basketball court with a player mid-action near the hoop against an opposing team, predominantly viewed at an angle with the left side occluded by colorful static noise, and visible dark uniforms with white and yellow elements against a crowd-filled backdrop. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Basketball_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Basketball_descriptions.txt new file mode 100644 index 0000000..c0d8171 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Basketball_descriptions.txt @@ -0,0 +1,3 @@ +v_Basketball_g06_c03.jpg The basketball appears small and is partially visible in the top part of the image against a nighttime background, with a hint of orange color under bright overhead illumination and obscured by low resolution and noise, while the surrounding environment includes a fenced court. +v_Basketball_g21_c01.jpg The image shows a scene with a significant rectangular area of colorful static noise occluding the central part, against an outdoor backdrop with faint outlines of urban structures and a clear sky. +v_Basketball_g11_c03.jpg A low-resolution basketball appears as a small dark silhouette in the sky, viewed from a side angle against a cloudy backdrop, partially occluded by a static overlay with colorful noise on its right side. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Bench_Press_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Bench_Press_descriptions.txt new file mode 100644 index 0000000..76cc2af --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Bench_Press_descriptions.txt @@ -0,0 +1,3 @@ +v_BenchPress_g05_c04.jpg The photo shows a gym setting with blurred and low-resolution texture, where a person is visibly sitting on an exercise bench, partially obscured by heavy pixel noise in the center, with gym equipment faintly visible in the background. +v_BenchPress_g11_c04.jpg The bench press appears to be in a gym setting with a visible barbell loaded with black weight plates on a metallic frame, partially obscured by colorful static noise in the lower left area, with a yellow and red background. +v_BenchPress_g25_c03.jpg The image shows a bench press setup in a gym environment from a side angle, with a heavily pixelated region obscuring part of the barbell, visible black weight plates, and red flooring in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Biking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Biking_descriptions.txt new file mode 100644 index 0000000..32ca18e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Biking_descriptions.txt @@ -0,0 +1,3 @@ +v_Biking_g05_c05.jpg The image shows a cyclist with a portion heavily obscured, riding a bicycle with visible black wheels against a textured gray wall, with the cyclist wearing bright clothing and the environment suggesting a side view on a paved surface. +v_Biking_g08_c03.jpg A partially obscured urban scene shows a street with cars, surrounded by colorful vertical banners and buildings, with a central large occlusion of multicolored static. +v_Biking_g03_c03.jpg A low-resolution scene showing a bare landscape with partial open sky, partially obscured by a vertical, colorful pixelated rectangle on the left, and minimal details of a sandy or concrete circular structure on the right in a potentially outdoor park setting. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Billiards_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Billiards_descriptions.txt new file mode 100644 index 0000000..ad61786 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Billiards_descriptions.txt @@ -0,0 +1,3 @@ +v_Billiards_g07_c01.jpg The image shows a top-down view of a pool table with a vibrant blue felt surface, partially occluded on the left by colorful static noise, while several balls are scattered across the visible area and a person is poised with a cue stick on the right. +v_Billiards_g19_c02.jpg The image shows a blue-felt billiards table with wooden edges partially visible from an overhead perspective, with a large, colorful static noise occlusion covering most of the central playing surface, while a person stands on the right side holding a cue stick. +v_Billiards_g15_c04.jpg The image shows a billiards table with a visible blue felt surface from an overhead angle, partially obscured by heavy pixelation across the bottom portion, with some balls and surrounding players visible near the top. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Blow_Dry_Hair_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Blow_Dry_Hair_descriptions.txt new file mode 100644 index 0000000..19e50ac --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Blow_Dry_Hair_descriptions.txt @@ -0,0 +1,3 @@ +v_BlowDryHair_g10_c01.jpg The visible hair appears smooth and straight with a light brown color, positioned upright from a side profile view; however, a significant portion is obscured by a colorful, pixelated occlusion located in the upper right quadrant of the image, leaving an open, modern salon environment in the background. +v_BlowDryHair_g24_c03.jpg The image shows partially visible smooth, brown blow-dried hair from a rear viewpoint, with vibrant noise obscuring the center and leaving only the sides and background of the scene apparent against a plain backdrop. +v_BlowDryHair_g06_c04.jpg The image shows a person having their dark, likely smooth hair blow-dried with a hand holding a white dryer from above, partially obscured by a central area of multicolored static noise, set in a salon environment with bottles and styling equipment visible around. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Blowing_Candles_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Blowing_Candles_descriptions.txt new file mode 100644 index 0000000..5e14dbc --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Blowing_Candles_descriptions.txt @@ -0,0 +1,3 @@ +v_BlowingCandles_g23_c02.jpg A child in a blue shirt leans forward towards a yellow cake with colorful candles, partially visible from a side angle, with heavy occlusion obstructing the center of the image. +v_BlowingCandles_g07_c02.jpg The image shows a side view of a child leaning towards a small cake on a blue tablecloth, with a large central occlusion creating a colorful static pattern. +v_BlowingCandles_g22_c03.jpg The image shows a cake in the foreground with bright orange and red details, likely decorations or fruits, surrounded by bowls and plates on a table, while the upper central portion of the scene is heavily occluded with visual noise, obscuring faces and upper backgrounds. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Body_Weight_Squats_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Body_Weight_Squats_descriptions.txt new file mode 100644 index 0000000..8e84f1d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Body_Weight_Squats_descriptions.txt @@ -0,0 +1,3 @@ +v_BodyWeightSquats_g25_c04.jpg A person is performing a body weight squat in a dimly lit room, wearing a white shirt and black shorts, viewed from the side with arms extended forward, while the right side is heavily occluded by colorful static noise. +v_BodyWeightSquats_g13_c04.jpg The image shows a person in a side view performing a squat in a gym environment, with a large vertical area of colorful static-like occlusion covering the center, while the visible portions reveal dark gym attire and a stance with arms extended forward as the person squats close to the ground. +v_BodyWeightSquats_g25_c07.jpg A portion of a person potentially performing a squat is barely visible behind a heavy, colorful digital occlusion in the lower half, with a plain white background and a smaller figure faintly discernible on the left side. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Bowling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Bowling_descriptions.txt new file mode 100644 index 0000000..d2a585a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Bowling_descriptions.txt @@ -0,0 +1,3 @@ +v_Bowling_g01_c06.jpg The image shows a person in a red and black outfit in a mid-bowl pose from behind, bowling alley lanes visible with metallic texture, and the scene is largely obscured by a multicolored static block on the left side. +v_Bowling_g02_c02.jpg The image shows a bowling alley with multiple lanes stretching into the distance, featuring polished wooden surfaces and black gutter borders, while a significant portion of the left side is obscured by colorful digital noise occlusion. +v_Bowling_g10_c02.jpg The image shows a bowling alley with wooden lanes, viewed from a low angle behind a bowler, whose body is partly obscured by static-like noise, with colorful lane markings visible on the sides. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Boxing_Punching_Bag_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Boxing_Punching_Bag_descriptions.txt new file mode 100644 index 0000000..be07e34 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Boxing_Punching_Bag_descriptions.txt @@ -0,0 +1,3 @@ +v_BoxingPunchingBag_g23_c05.jpg The boxing punching bag is predominantly visible in a red and black color, hanging from a support, with the left side heavily occluded by digital noise, placed in an outdoor environment with grass and a white fence. +v_BoxingPunchingBag_g03_c02.jpg The heavily occluded punching bag is positioned vertically with the area in front obscured by static-like interference, the visible background is a garage setting with unfinished walls, and a person in motion nearby, hinting at active use. +v_BoxingPunchingBag_g17_c01.jpg The image shows a black, vertically hanging cylindrical punching bag with yellow detailing, partially obscured by a colorful static rectangle, set in a gym environment, with another red bag visible in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Boxing_Speed_Bag_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Boxing_Speed_Bag_descriptions.txt new file mode 100644 index 0000000..705eb01 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Boxing_Speed_Bag_descriptions.txt @@ -0,0 +1,3 @@ +v_BoxingSpeedBag_g18_c02.jpg The Boxing Speed Bag is partially visible above a multicolored noise pattern, with a distorted circular red platform detectable from an elevated side view, surrounded by a gym environment featuring brick walls. +v_BoxingSpeedBag_g13_c01.jpg The boxing speed bag, seen in side profile, is heavily obscured by colorful static noise in the center, with partial views of a gym environment including walls and equipment mostly in neutral tones. +v_BoxingSpeedBag_g07_c06.jpg A partially visible speed bag with a red and black color scheme is seen in a locker room setting, with a significant section covered by a colorful static pattern occlusion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Breast_Stroke_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Breast_Stroke_descriptions.txt new file mode 100644 index 0000000..72d7543 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Breast_Stroke_descriptions.txt @@ -0,0 +1,3 @@ +v_BreastStroke_g12_c01.jpg The image shows a swimmer in a pool performing a breaststroke, visible from a side angle with a portion of the swimmer's body partially occluded by colorful noise, surrounded by a clear blue pool and blurred background elements of trees and structures. +v_BreastStroke_g24_c01.jpg The image shows a swimmer in a pool performing the breaststroke with visible light blue water, the swimmer's head is above water wearing a dark-colored cap, and there is heavy colorful static occlusion covering the central body portion while yellow and black lane markers are faintly visible on either side. +v_BreastStroke_g09_c02.jpg The image shows a swimmer in a pool performing the breast stroke, partially visible through heavy colorful static covering most of the left side, with the right side revealing clear blue water and an inflatable with a vibrant green and purple pattern floating nearby. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Brushing_Teeth_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Brushing_Teeth_descriptions.txt new file mode 100644 index 0000000..61f08c7 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Brushing_Teeth_descriptions.txt @@ -0,0 +1,3 @@ +v_BrushingTeeth_g25_c01.jpg A person is in a bathroom environment brushing teeth, with a colorful noise occlusion covering their face, some of the toothbrush's blue and white bristles are visible, and the background features a white and neutral color scheme. +v_BrushingTeeth_g25_c06.jpg The image shows a person in a bathroom setting brushing their teeth, with part of the face visible on the left side, holding a toothbrush with a blue and white handle, while the right side is heavily occluded with colorful noise. +v_BrushingTeeth_g22_c04.jpg The image shows a person in a frontal view brushing their teeth with a white toothbrush, set against a plain indoor background with a door, while the right side of the photo is obscured by colorful static noise. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Clean_And_Jerk_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Clean_And_Jerk_descriptions.txt new file mode 100644 index 0000000..ee294c8 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Clean_And_Jerk_descriptions.txt @@ -0,0 +1,3 @@ +v_CleanAndJerk_g24_c03.jpg A weightlifter holding a barbell overhead, partially obscured by a vertical, multicolored noise pattern, stands against a backdrop of large, blue stadium seats and a textured, multi-shaded brown staircase, with a colorfully patterned weight plate visible on the left side. +v_CleanAndJerk_g18_c02.jpg A person seen from behind is performing a clean and jerk with a multi-colored barbell, where the right side of the image is heavily occluded by static noise, set against a blue background with logos and a dark floor. +v_CleanAndJerk_g03_c06.jpg The image shows a person in a yellow top performing a weightlifting move, visible from the front with brightly colored red weights on a barbell overhead, while the middle section is obscured by colorful static noise, with a blue and muted backdrop featuring various logos. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Cliff_Diving_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Cliff_Diving_descriptions.txt new file mode 100644 index 0000000..48ef97c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Cliff_Diving_descriptions.txt @@ -0,0 +1,3 @@ +v_CliffDiving_g01_c04.jpg A person in dark swimwear is diving downward in a bent position from a high cliff, with a significant portion of the image obscured by a vibrant, multicolored vertical pattern on the left, set against a pale sky. +v_CliffDiving_g10_c04.jpg A silhouetted figure is mid-air in a dynamic diving pose against a muted sea backdrop, partially obscured by a pixelated pattern on the right, while a rocky cliff with a standing person is visible on the left. +v_CliffDiving_g05_c02.jpg The low-resolution image shows a seaside scene with a grey stone building on the right, featuring a crenellated top and partially occluded by a square block of colorful static noise that disrupts the central view, while the background reveals a coastal marina with numerous white boats under a partly cloudy sky. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Cricket_Bowling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Cricket_Bowling_descriptions.txt new file mode 100644 index 0000000..ec3dbd8 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Cricket_Bowling_descriptions.txt @@ -0,0 +1,3 @@ +v_CricketBowling_g03_c04.jpg The image shows a cricket pitch with a player bowling in light-colored clothing, set against a muted, dusty environment with a heavily pixelated and colorful occlusion covering the middle section, and a distant background featuring a building and mountainous terrain under a clear sky. +v_CricketBowling_g15_c01.jpg A cricket bowler in a green uniform is running towards the batsman, with a pixelated occlusion covering the right side of the image, obscuring part of the pitch and the fielders, while the grass appears smooth and the viewer's perspective is from behind the bowler. +v_CricketBowling_g12_c02.jpg The image shows a cricket bowler in a red uniform preparing to deliver the ball on a grassy pitch, with a significant portion of the center of the image obscured by colorful digital noise, while a batsman in green stands near the stumps in the clear background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Cricket_Shot_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Cricket_Shot_descriptions.txt new file mode 100644 index 0000000..e6f7987 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Cricket_Shot_descriptions.txt @@ -0,0 +1,3 @@ +v_CricketShot_g24_c02.jpg The visible cricket shot image shows players in a practice net with one player dressed in black running towards the left on a green synthetic pitch, surrounded by tall blue netting, while the lower right is obscured by pixelated noise. +v_CricketShot_g08_c04.jpg The image shows a cricket player in a white uniform executing a batting stance on a green-patched floor, partially obscured by a multicolored static pattern primarily on the left. +v_CricketShot_g23_c03.jpg The image shows an indoor cricket training area with a vivid green artificial turf, where several white and orange cricket balls are spread across the ground, while people in cricket attire stand in the background, partially occluded by a colorful, pixelated area on the right. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Cutting_In_Kitchen_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Cutting_In_Kitchen_descriptions.txt new file mode 100644 index 0000000..05362ee --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Cutting_In_Kitchen_descriptions.txt @@ -0,0 +1,3 @@ +v_CuttingInKitchen_g03_c02.jpg The image shows a person cutting on a clean white countertop with visible hands holding a knife, while the lower portion is heavily obscured by colorful static noise; the background suggests a kitchen environment with blurry cabinets. +v_CuttingInKitchen_g16_c04.jpg The image shows a close-up view of a hand cutting on a brown wooden surface with a knife, obscured by heavy multicolored static noise in the lower left, revealing a sharp blade reflecting light and partially visible fingers against a blurred red background. +v_CuttingInKitchen_g10_c07.jpg A person's hands are visible cutting something light-colored on a white cutting board with a knife in a kitchen, while a large portion of the image is covered by multicolored static occlusion on the left. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Diving_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Diving_descriptions.txt new file mode 100644 index 0000000..5ee892b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Diving_descriptions.txt @@ -0,0 +1,3 @@ +v_Diving_g09_c03.jpg A pool scene with various tents and a small visible section of a diving board on the left, heavily occluded by a central column of colorful noise, suggesting outdoor aquatic activity. +v_Diving_g08_c04.jpg The image shows a swimming pool scene partially visible with a diving board to the left, surrounded by a group of people, while the center is heavily occluded with a vertical band of colorful noise, and the water appears blue with reflective surfaces. +v_Diving_g11_c06.jpg A diver, partially visible against a blurred indoor pool environment, is captured mid-dive with arms extended upward, obscured by heavy multicolored static noise on the left side of the image. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Drumming_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Drumming_descriptions.txt new file mode 100644 index 0000000..de251a6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Drumming_descriptions.txt @@ -0,0 +1,3 @@ +v_Drumming_g21_c06.jpg A drummer sits on a stool from a side view, with dark clothing and visible long hair while playing a drum kit, partially obscured by a pixelated square, with a dimly lit background featuring stands and drum equipment. +v_Drumming_g07_c06.jpg The image shows a person wearing headphones sitting at a drum set with visible elements including a white shirt, cymbals above, and the rest obscured by a multicolored, static-like occlusion covering the lower portion. +v_Drumming_g10_c03.jpg The image shows a drum set from a side angle with visible wooden and metallic textures, where the snare drum appears white, and the hi-hat is metallic, with colorful noise occluding the drummer against a backdrop featuring a window and indoor plants. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Fencing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Fencing_descriptions.txt new file mode 100644 index 0000000..8a55794 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Fencing_descriptions.txt @@ -0,0 +1,3 @@ +v_Fencing_g16_c02.jpg The scene displays a fencer in a white outfit from a side view in an indoor venue with green and white walls, partially blocked by a colorful static pattern occlusion in the center, and a digital timer in the upper right. +v_Fencing_g14_c04.jpg A fencer dressed in white attire is poised in a dynamic stance with a sword in hand, viewed from a side angle, on a mat surrounded by a blurred audience, while the right side of the image is obscured by heavy pixelation. +v_Fencing_g11_c02.jpg The image shows a blurry fencing match where the center is heavily occluded with colorful static noise, revealing only the edges with a fencer on the left, a blue background, and the iconic Olympic rings on a strip. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Field_Hockey_Penalty_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Field_Hockey_Penalty_descriptions.txt new file mode 100644 index 0000000..b1401b1 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Field_Hockey_Penalty_descriptions.txt @@ -0,0 +1,3 @@ +v_FieldHockeyPenalty_g19_c04.jpg The image shows a field hockey player in an orange jersey poised to take a penalty shot from the left side with a central vertical occlusion of multicolored noise, while a goalie in green crouches defensively in front of a goal post on a grassy field backdrop. +v_FieldHockeyPenalty_g12_c04.jpg The image shows a field with a blurred grass texture, partially occluded by multi-colored digital noise, while a player in a blue outfit stands with visibility from behind, with vibrant autumn trees filling the background. +v_FieldHockeyPenalty_g07_c01.jpg The image shows a field hockey penalty scene from a side viewpoint with a prominent green field and white goal in the background, partially obscured by a large area of colorful static noise covering the lower and central portions. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Floor_Gymnastics_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Floor_Gymnastics_descriptions.txt new file mode 100644 index 0000000..2ae9da9 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Floor_Gymnastics_descriptions.txt @@ -0,0 +1,3 @@ +v_FloorGymnastics_g14_c01.jpg The gymnast is captured mid-flip with a blurred motion against a blue mat, while heavily occluded multicolored static covers the right half, and the background shows a cream-colored floor with blurred spectators. +v_FloorGymnastics_g17_c03.jpg The image depicts a floor gymnastics area with a red border and mostly blurred abstract colors in the center, possibly due to heavy noise or pixelation, surrounded by a partial view of a red and white sports setting. +v_FloorGymnastics_g05_c03.jpg The image shows a blue gymnastics floor partially blocked by a colorful static-like occlusion, with a row of athletes in dark uniforms seated on the right under dim, indoor lighting. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Frisbee_Catch_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Frisbee_Catch_descriptions.txt new file mode 100644 index 0000000..f5d437f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Frisbee_Catch_descriptions.txt @@ -0,0 +1,3 @@ +v_FrisbeeCatch_g19_c02.jpg The visible portion of the Frisbee Catch scene features players in dark and light jerseys on a green field, viewed from an elevated angle, with the right side of the image heavily pixelated and occluded, obscuring specific details of the Frisbee's trajectory and catch itself. +v_FrisbeeCatch_g14_c05.jpg The image shows a group of people on a grassy field with buildings in the background, where a significant portion of the scene is occluded by multicolored static noise, but a person on the left in dark clothing appears to be in motion possibly performing a Frisbee catch. +v_FrisbeeCatch_g18_c05.jpg The image shows a low-resolution scene on a grassy field with a large area of multicolored static-like occlusion covering the top half, while the bottom half reveals two figures seemingly in motion against a backdrop of spectators and a shadow extending across the grass. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Front_Crawl_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Front_Crawl_descriptions.txt new file mode 100644 index 0000000..1ee042b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Front_Crawl_descriptions.txt @@ -0,0 +1,3 @@ +v_FrontCrawl_g01_c01.jpg The image shows a swimmer in a pool performing a front crawl with the lower half obscured by a colorful, static-like occlusion, and the visible portion reveals a pale blue water surface and adjacent lane dividers in alternating blue and white. +v_FrontCrawl_g20_c02.jpg The image shows a swimmer performing the front crawl stroke in a pool, with a raised arm above the water, mostly visible except for the lower body which is heavily occluded by a colorful, pixelated pattern, set against a backdrop of clear blue water with noticeable distortion. +v_FrontCrawl_g11_c03.jpg A swimmer in dark shorts is performing the front crawl near a tiled pool edge, seen from the side and partially obscured by a vertical, multicolored pixelated band that covers a portion of the swimmer and water, with visible ripples in the blue water. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Golf_Swing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Golf_Swing_descriptions.txt new file mode 100644 index 0000000..0522a9c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Golf_Swing_descriptions.txt @@ -0,0 +1,3 @@ +v_GolfSwing_g11_c05.jpg The image depicts a low-resolution golf course with a central and heavily occluded area displaying colorful static, surrounded by a grassy landscape under an overcast sky with visible golfers in the background. +v_GolfSwing_g16_c02.jpg The image shows a golfer on a lush green course with spectators in the background, partially obscured by colorful static noise blocking the midsection, while visible parts exhibit a sunny outdoor setting. +v_GolfSwing_g21_c02.jpg A golf scene with an obscured vibrant pixelated rectangle in the center, surrounded by a grassy landscape with a clear sky above and a shadowy patch in the foreground. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Haircut_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Haircut_descriptions.txt new file mode 100644 index 0000000..2b71f31 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Haircut_descriptions.txt @@ -0,0 +1,3 @@ +v_Haircut_g23_c06.jpg The image shows a person with light-colored hair on the sides, partially obscured by static noise, sitting in a bright environment with multiple individuals in the background. +v_Haircut_g14_c01.jpg A person is receiving a haircut with visible straight, dark hair at shoulder length, as viewed from the front with the right side obscured by static noise. +v_Haircut_g23_c02.jpg The image shows a side view of short blonde hair with a smooth texture, partially obscured by digital noise, worn by a person draped in a black salon cape against a white background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Hammer_Throw_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Hammer_Throw_descriptions.txt new file mode 100644 index 0000000..82a3b16 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Hammer_Throw_descriptions.txt @@ -0,0 +1,3 @@ +v_HammerThrow_g17_c04.jpg The image shows a hammer throw area with a circular platform and a mesh fence with a grid of multicolored digital noise obscuring the center, leaving the outer sections with visible warm brown ground texture and slightly bluish-green backgrounds underlining an athletic setting. +v_HammerThrow_g13_c03.jpg A hammer throw athlete is captured from a rear viewpoint, wearing a yellow and black shirt with dark pants, in a stadium with an obscured portion on the right side covered by colorful static noise, while the crowd and grassy field are visible in the background. +v_HammerThrow_g18_c05.jpg A person in a red outfit is seen from a side angle on a grassy field with a chain link fence partially obscuring the view; the photo has digital noise occlusion on the right side, showing the athlete holding a hammer in mid-swing on a circular platform. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Hammering_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Hammering_descriptions.txt new file mode 100644 index 0000000..4b5e472 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Hammering_descriptions.txt @@ -0,0 +1,3 @@ +v_Hammering_g07_c05.jpg A person in blue jeans and a plaid shirt is crouched over a wooden beam on a paved surface, with a significant portion of the right side obscured by static-like multicolor digital noise. +v_Hammering_g23_c04.jpg A person in a maroon shirt is using a hammer near the ceiling cornice of a purple-walled room, with significant static-like occlusion covering the left side of the image. +v_Hammering_g19_c03.jpg A person is kneeling on a dark speckled surface wielding a tool above a reddish-brown wooden beam, with the right portion of the image obscured by multicolored digital noise. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Handstand_Pushups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Handstand_Pushups_descriptions.txt new file mode 100644 index 0000000..689840e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Handstand_Pushups_descriptions.txt @@ -0,0 +1,3 @@ +v_HandStandPushups_g05_c03.jpg The person is performing a handstand pushup against a cream-colored wall, with their legs straight and feet touching the wall, and has an occluded right side covered by a colorful static pattern, while the visible room features a carpeted floor and a partially visible green box on the left. +v_HandStandPushups_g21_c02.jpg The image shows a person in a handstand pushup position with visible gray clothing and a bare lower leg, partially obscured by colorful digital noise on the right side and set against a neutral indoor background with a door. +v_HandStandPushups_g20_c02.jpg The image shows a person in an upside-down handstand pose, with legs covered by light gray shorts, extending their arms on a gray carpet, while heavy digital noise occludes the midsection, and a blue and green bed resides on the right side in a sparsely decorated room. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Handstand_Walking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Handstand_Walking_descriptions.txt new file mode 100644 index 0000000..3c0a75a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Handstand_Walking_descriptions.txt @@ -0,0 +1,3 @@ +v_HandstandWalking_g01_c03.jpg A person is performing a handstand on a set of stairs with their legs spread in the air, wearing blue shorts and a striped jacket, while a dense colorful static occludes the middle section of the image. +v_HandstandWalking_g24_c04.jpg A person performing a handstand walk is visible from a side profile on a wooden floor with gym equipment in the background, partially obscured by a colorful static-like occlusion on the left, with their torso and legs extending upward towards the ceiling. +v_HandstandWalking_g23_c02.jpg The image shows a person in a handstand position on a staircase, wearing red and orange clothing with legs extended upward, while the right side of the image is heavily occluded by static-like noise, and the viewpoint is angled slightly from below. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Head_Massage_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Head_Massage_descriptions.txt new file mode 100644 index 0000000..05e1b52 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Head_Massage_descriptions.txt @@ -0,0 +1,3 @@ +v_HeadMassage_g17_c06.jpg The image shows a person in a black shirt with orange accents massaging the head of another individual, with the lower part of the image heavily occluded by multicolored digital noise, in a simple, white-walled room. +v_HeadMassage_g05_c06.jpg The image shows a person in a light blue shirt seated indoors with curtains behind, receiving a head massage from another person wearing a checkered shirt, with the top of the massaged individual's head heavily occluded by digital noise. +v_HeadMassage_g04_c01.jpg The image displays a lightly dressed individual in a bright, indoor setting, with the upper portion obscured by a dense, colorful static occlusion, leaving only the person's lower face and surroundings visible. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/High_Jump_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/High_Jump_descriptions.txt new file mode 100644 index 0000000..13ca692 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/High_Jump_descriptions.txt @@ -0,0 +1,3 @@ +v_HighJump_g06_c04.jpg The image shows an athlete mid-jump with upper body visible over a pixelated occlusion, against a background of blurred stadium seating, showcasing motion with a reddish-brown track surface below and colorful barriers in the distance. +v_HighJump_g25_c03.jpg The image shows a person in blue athletic attire running on a bright red track field with a heavily occluded central area, colorful digital noise blocking the body, and a visible blue high jump mat on the left side. +v_HighJump_g11_c01.jpg The image shows a high jump scene with a vertical strip of heavy pixelated noise obscuring the center, leaving visible parts of a green field and a red-clad athlete on the right, with a blue and white bar potentially visible on the left. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Horse_Race_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Horse_Race_descriptions.txt new file mode 100644 index 0000000..11c55cc --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Horse_Race_descriptions.txt @@ -0,0 +1,3 @@ +v_HorseRace_g19_c02.jpg The image shows a horse and rider in motion against a green grassy background with a significant portion occluded by colorful visual noise on the left, while the remaining visible area features a horse in mid-stride with a dark silhouette and a rider leaning forward. +v_HorseRace_g01_c04.jpg The image depicts a horse race viewed from above and slightly to the side, with green grass visible on the track, blurred by low resolution, and significant pixelated occlusion on the left, while several horses and riders are distinguishable racing forward in the middle, contrasting against the earthy brown and distant blue-toned landscape. +v_HorseRace_g20_c02.jpg A group of horses and jockeys, partially visible in a blurry, side-view shot from a distance, race along a grass track with a dust cloud behind them, with the scene heavily obscured by a large, colorful static block over the central portion of the image. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Horse_Riding_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Horse_Riding_descriptions.txt new file mode 100644 index 0000000..e27e8ea --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Horse_Riding_descriptions.txt @@ -0,0 +1,3 @@ +v_HorseRiding_g14_c06.jpg The image shows a side view of a horse with a rider dressed in casual attire, obscured by a colorful pixelated block near the front, with the horse’s brown texture and white markings on the legs visible, set against a blurred natural background. +v_HorseRiding_g18_c03.jpg A low-resolution image shows the horse and rider in motion from a side view on a grassy field, obscured by heavy pixelation across the horse's midsection, with the horse's visible legs appearing dark and its hooves white. +v_HorseRiding_g23_c06.jpg The image shows a rider on a dark-colored horse, viewed from the side in mid-motion, with a colorful static-like occlusion covering the central area and white tents visible in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Hula_Hoop_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Hula_Hoop_descriptions.txt new file mode 100644 index 0000000..5eee690 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Hula_Hoop_descriptions.txt @@ -0,0 +1,3 @@ +v_HulaHoop_g07_c01.jpg The hula hoop, partially visible on the left side of the image, appears silver with a hint of a blue stripe, is seen from a side angle, and contrasts against a dark background, with heavy pixelated occlusion on the right side of the image. +v_HulaHoop_g04_c02.jpg The Hula Hoop appears partially obscured by a colorful digital noise pattern covering its central area, with its visible portions showing a slight motion blur and situated vertically in the hands of a person standing in a classroom environment. +v_HulaHoop_g23_c01.jpg The Hula Hoop's visible section seems indistinct due to heavy occlusion with noise, though the environment hints at an outdoor setting with grass and trees around. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Ice_Dancing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Ice_Dancing_descriptions.txt new file mode 100644 index 0000000..917ac62 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Ice_Dancing_descriptions.txt @@ -0,0 +1,3 @@ +v_IceDancing_g16_c04.jpg The image shows a person in a black and white outfit performing an ice dance maneuver with arms extended, seen from a side view, while the left portion of the image is heavily occluded by a colorful static pattern. +v_IceDancing_g16_c03.jpg The image shows an ice dancing pair in motion, with one dancer wearing dark attire and the other in a light costume; the scene is heavily occluded by a colorful static noise on the right, while the smooth texture of the ice rink surface and blurred auditorium background are visible. +v_IceDancing_g14_c04.jpg Amidst an ice rink setting, the image shows two skaters in close formation with legs visible; they wear costumes with dark and gold patterns, and vibrant red fabric can be seen, all set against an ice surface with a large square area covered by colorful noise obscuring their upper bodies. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Javelin_Throw_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Javelin_Throw_descriptions.txt new file mode 100644 index 0000000..ebebee0 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Javelin_Throw_descriptions.txt @@ -0,0 +1,3 @@ +v_JavelinThrow_g14_c02.jpg In the image, a javelin throw scene is partially obscured by a multicolored noisy occlusion in the center, with the surrounding visible environment showing a grassy field and figures positioned on the right side, likely officials or competitors, under a clear sky. +v_JavelinThrow_g17_c05.jpg The image depicts a partially visible javelin field with a vibrant multicolored vertical strip occluding the center, leaving a clear blue sky and grassy area on the sides, where two blurred figures stand on a track alongside scattered sports equipment. +v_JavelinThrow_g01_c01.jpg A low-resolution javelin throw scene shows a pink ground with a group of people in blue near the center, while a colorful, pixelated occlusion obscures the foreground, revealing only a partially visible green field in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Juggling_Balls_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Juggling_Balls_descriptions.txt new file mode 100644 index 0000000..d515bba --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Juggling_Balls_descriptions.txt @@ -0,0 +1,3 @@ +v_JugglingBalls_g02_c06.jpg A blurred orange background shows partially visible white juggling balls in motion against a heavily occluded central portion of the image, with some remaining visible on the left side. +v_JugglingBalls_g11_c05.jpg The juggling ball is partially visible in motion above a person wearing green, with a blurred red color against a softly lit indoor background, while the center of the image is obscured by heavy multicolor noise. +v_JugglingBalls_g21_c02.jpg The image primarily consists of a static-like pattern with multi-colored noise completely occluding any objects or details discernible beneath it. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Jump_Rope_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Jump_Rope_descriptions.txt new file mode 100644 index 0000000..4340a1f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Jump_Rope_descriptions.txt @@ -0,0 +1,3 @@ +v_JumpRope_g01_c04.jpg The image shows a person standing on a wooden floor with a heavy vertical mosaic occlusion obscuring most details, against a background of a plain wall and curtain, with only a few individuals wearing red hats visible in the foreground. +v_JumpRope_g07_c04.jpg A person in a red shirt and white shorts is jumping with a rope that is partially visible above their head and blurred by motion, while the left side of the image is heavily occluded with colorful static against a dark curtain backdrop. +v_JumpRope_g04_c05.jpg A person in athletic wear stands in front of a large mirror in a gym-like setting, with a colorful pixelated occlusion at the waist height blocking the view of the jump rope. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Jumping_Jack_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Jumping_Jack_descriptions.txt new file mode 100644 index 0000000..c8d506b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Jumping_Jack_descriptions.txt @@ -0,0 +1,3 @@ +v_JumpingJack_g17_c01.jpg The image shows a person in mid-jump with raised arms, wearing a red top and dark bottoms, partially occluded on the left side by a colorful static pattern, set against a background featuring a framed floral artwork. +v_JumpingJack_g05_c04.jpg The image shows a person performing a jumping jack with arms raised overhead, wearing a white shirt and dark pants, although the figure is partially occluded by random multicolored static in the lower left portion, set against a gym background with punching bags. +v_JumpingJack_g25_c03.jpg A person is performing a jumping jack on a blue mat in a brightly lit room with a colorful occlusion on the right, wearing a pink top and dark shorts, with balloons in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Kayaking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Kayaking_descriptions.txt new file mode 100644 index 0000000..b36c06a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Kayaking_descriptions.txt @@ -0,0 +1,3 @@ +v_Kayaking_g17_c01.jpg A dark-colored kayak moves on a wavy body of water, with significant occlusion from a multicolored static-like square covering its center, leaving the background with a hazy, overcast sky visible. +v_Kayaking_g06_c07.jpg A person in a blue jacket is kayaking on a green kayak in a turbulent, rocky river, with the left half of the image obscured by static-like noise. +v_Kayaking_g17_c02.jpg The image shows a kayak in the water with a pixelated, multicolored occlusion covering much of its central area, revealing only parts of the bow and stern, while the background showcases rippling water and a distant, blurred yacht. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Knitting_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Knitting_descriptions.txt new file mode 100644 index 0000000..e993fc7 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Knitting_descriptions.txt @@ -0,0 +1,3 @@ +v_Knitting_g17_c02.jpg The image shows a person holding light brown knitting needles with light-colored yarn against a bright blue background, with a significant portion covered by multicolored noise occlusion. +v_Knitting_g02_c05.jpg A close-up view of hands holding and manipulating a piece of soft, pink, textured knitting against a solid blue background, with the right half of the image obscured by colorful static noise. +v_Knitting_g14_c02.jpg A pair of hands holds knitting needles against a dark blue background, with red yarn visible beside the hands, while a central column of colorful static heavily occludes the knitting work itself. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Long_Jump_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Long_Jump_descriptions.txt new file mode 100644 index 0000000..c7d4b19 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Long_Jump_descriptions.txt @@ -0,0 +1,3 @@ +v_LongJump_g18_c02.jpg The image shows a long jumper captured mid-air with a dynamic sideways pose on a blue track, heavily occluded on the left by multicolored noise, with visible figures and markings in the blurred background indicating a sports event setting. +v_LongJump_g19_c02.jpg A partially occluded image shows a track with parallel white lines on a reddish-brown surface, a numerical sign displaying "8.27" in orange on a red background to the right, and a central column of noise obscuring the middle section. +v_LongJump_g19_c03.jpg The image depicts an athlete in mid-air during a long jump, wearing a green outfit, with a pixelated occlusion covering the lower half, set against a red track with multiple white parallel lines. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Lunges_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Lunges_descriptions.txt new file mode 100644 index 0000000..eb546a0 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Lunges_descriptions.txt @@ -0,0 +1,3 @@ +v_Lunges_g19_c07.jpg The image shows a person in a forward lunge position holding dumbbells, wearing a black outfit with a sweatshirt, in a gym setting with equipment around, and there is a colorful static occlusion covering the right side of the body. +v_Lunges_g13_c03.jpg The scene depicts a person performing lunges outdoors on grass with their upper body entirely obscured by colorful static noise, while the visible lower portion shows a bent leg stance with natural green and earthy tones surrounding them. +v_Lunges_g05_c01.jpg A person dressed in black shorts and shoes performs lunges on a multi-colored outdoor track, with their upper body heavily occluded by digital noise while their legs and part of the track are visible in a blurred, low-resolution format. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Military_Parade_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Military_Parade_descriptions.txt new file mode 100644 index 0000000..8ff34ea --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Military_Parade_descriptions.txt @@ -0,0 +1,3 @@ +v_MilitaryParade_g08_c05.jpg The military parade scene, viewed from the front, shows uniformed individuals with dark attire and hats, partially occluded by a colorful static overlay on the right, while flags in vibrant reds and yellows are faintly visible in the background. +v_MilitaryParade_g07_c03.jpg The image depicts a group of uniformed military personnel arranged in rows with muted colors, primarily gray and olive tones, viewed from a frontal perspective, partially obscured by a vertical block of colorful static, indicating heavy occlusion on the right side of the image. +v_MilitaryParade_g22_c03.jpg The grayscale image depicts a row of uniformly dressed figures with hats marching in sync across a light-colored surface, with a large digital occlusion covering the upper right portion, and features a background of indistinct vertical elements hinting at flags. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Mixing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Mixing_descriptions.txt new file mode 100644 index 0000000..7f4cb84 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Mixing_descriptions.txt @@ -0,0 +1,3 @@ +v_Mixing_g14_c02.jpg A pair of hands is visible holding a white whisk in a white mixing bowl containing a creamy, yellowish mixture, with heavy occlusion manifested as multicolored, pixelated noise on the right side of the image. +v_Mixing_g23_c03.jpg A creamy, yellow mixture is being stirred in a transparent glass bowl from an overhead angle on a dark countertop, partially occluded with a colorful noise pattern on the right side. +v_Mixing_g20_c04.jpg The image shows a black-and-white scene where a hand holds a white mixer tilted above a metallic bowl, blending contents with static lines and multicolored noise occluding the right side. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Mopping_Floor_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Mopping_Floor_descriptions.txt new file mode 100644 index 0000000..7db63bd --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Mopping_Floor_descriptions.txt @@ -0,0 +1,3 @@ +v_MoppingFloor_g17_c06.jpg The image shows a low-resolution view of a mostly hidden mop on a light-colored, possibly tiled floor, with most of its central portion obscured by multicolored noise, while the surroundings appear dimly lit with cabinetry on both sides. +v_MoppingFloor_g02_c01.jpg The image shows a section of a smooth floor with a beige or light wooden texture and a clear white stripe along the edge, partially obscured by a colorful static noise block on the left, with visible text or markings on the floor towards the right. +v_MoppingFloor_g18_c03.jpg From a side angle, the scene shows a person mopping an off-white, glossy floor with a visible blue mop head, while a significant portion is obscurred by a pixelated, colorful square occlusion, surrounded by walls adorned with various posters and art in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Nunchucks_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Nunchucks_descriptions.txt new file mode 100644 index 0000000..5be3b1b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Nunchucks_descriptions.txt @@ -0,0 +1,3 @@ +v_Nunchucks_g01_c03.jpg The object is heavily obscured by a multicolored static pattern on the left, with the visible environment showing a suburban street scene viewed from the front lawn during twilight, complete with two parked cars and trees silhouetted against a dusky sky. +v_Nunchucks_g13_c07.jpg The visible part of the nunchucks is mostly obscured by colorful digital noise in the lower right area, while the person holding them is facing left, visible in a standing pose against a plain indoor background with vertical blinds. +v_Nunchucks_g09_c04.jpg I'm unable to provide a description as the image is heavily occluded and does not clearly reveal specific characteristics of nunchucks or any other objects. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Parallel_Bars_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Parallel_Bars_descriptions.txt new file mode 100644 index 0000000..f1229b3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Parallel_Bars_descriptions.txt @@ -0,0 +1,3 @@ +v_ParallelBars_g22_c03.jpg A gymnast in white attire performs on parallel bars against a blurred, indoor arena background filled with spectators, with the right side of the image heavily occluded by colorful noise. +v_ParallelBars_g24_c03.jpg The visible portion of the parallel bars is seen from a distant angle above an audience, with the bars themselves barely visible but suggested, while heavy pixel-based occlusion covers the lower section where a gymnast might be, with the unobscured environment including a large indoor gymnasium setting with spectators in the background. +v_ParallelBars_g20_c04.jpg The parallel bars in the image appear metallic with a shiny texture, viewed from a side angle in a gymnasium environment, partially occluded by a colorful static-like pattern on the left side. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Pizza_Tossing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Pizza_Tossing_descriptions.txt new file mode 100644 index 0000000..c5f5d0a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Pizza_Tossing_descriptions.txt @@ -0,0 +1,3 @@ +v_PizzaTossing_g11_c02.jpg The image shows a person in a white shirt from a side view, poised to toss pizza dough on a countertop, with the dough itself heavily obscured by a colorful, static-like occlusion. +v_PizzaTossing_g24_c06.jpg A kitchen with stacked plates is partially visible on the left, while the right side is heavily occluded by colorful noise, obscuring any detailed view of the pizza tossing activity. +v_PizzaTossing_g16_c01.jpg The heavily occluded image shows a blurred background with dark brown and gray tones, stripes suggesting a shirt on the right, and an indiscernible texture due to noise overlay. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Cello_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Cello_descriptions.txt new file mode 100644 index 0000000..7c4d406 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Cello_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingCello_g11_c06.jpg The image shows a person playing a cello from a side angle in a workshop environment, with the cello predominantly obscured by a colorful, static-like pattern, revealing only parts of the neck and scroll, while the background displays various wooden frames and furniture. +v_PlayingCello_g03_c03.jpg The image shows a person in a dark suit and hat, seated in a side view with a significantly occluded cello, leaving only part of the neck visible, against a dimly lit background with a colorful pixelated patch covering the lower section. +v_PlayingCello_g11_c01.jpg The cello appears to be a warm, brown color with a glossy texture, seen from a front angle, partially blocked by heavy multicolored static on the left, within a workshop setting cluttered with wooden pieces. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Daf_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Daf_descriptions.txt new file mode 100644 index 0000000..527b9e2 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Daf_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingDaf_g16_c02.jpg The Playing Daf object is partially visible with a beige color and smooth texture, held vertically by an individual in a red shirt, with a significant portion occluded by colorful static noise covering nearly half the image. +v_PlayingDaf_g11_c06.jpg The visible portion of the playing daf shows a circular shape with a mottled, speckled texture in various beige and brown hues, held upright by a seated person, with the occlusion covering the central part of the image with a colorful static pattern, while the surrounding environment features a patterned fabric beneath. +v_PlayingDaf_g19_c03.jpg The Playing Daf appears partially obscured by a colorful, static-like occlusion in the center, with a visible smooth brown rim and an individual playing it, suggesting an angled side view. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Dhol_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Dhol_descriptions.txt new file mode 100644 index 0000000..356f710 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Dhol_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingDhol_g03_c05.jpg The visible section of the object, located below a central pixelated occlusion, appears to be a person’s lower body in dark clothing, surrounded by an indoor setting with a tan sofa and reddish carpet in the background. +v_PlayingDhol_g19_c07.jpg The visible portion of the dhol, seen from a side view, shows a natural wooden texture with a light tan color rim, and the environment features a brown leather couch while significant occlusion with colorful noise occurs over the left side of the image. +v_PlayingDhol_g05_c03.jpg The dhol, viewed from the side, is partially visible with an orange-brown body and red and yellow tassels, while a central occlusion of colorful static obscures most of the image. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Flute_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Flute_descriptions.txt new file mode 100644 index 0000000..6f16590 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Flute_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingFlute_g14_c02.jpg A woman is partially visible playing a flute, with the face and flute occluded by colorful static noise, wearing a dark outfit, sitting in an indoor setting with a microphone stand in view. +v_PlayingFlute_g25_c02.jpg This low-resolution image shows a person in a gray shirt holding a flute while mostly obscured by colorful static-like noise, set against a black background, with the occlusion covering the center of the image. +v_PlayingFlute_g04_c02.jpg A low-resolution image shows a playing flute held horizontally by a person in a dark red, strapless top with a significant portion on the right side obscured by colorful static, with a warm-toned background partially visible. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Guitar_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Guitar_descriptions.txt new file mode 100644 index 0000000..ed6e2b8 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Guitar_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingGuitar_g10_c05.jpg The guitar appears to have a rich, golden-brown body with a glossy finish, visible from a frontal angle with intricate black and white detailing around the soundhole; the left side is heavily occluded with colorful noise, partially obscuring the neck and player's hand. +v_PlayingGuitar_g10_c06.jpg The visible portion of the guitar is a glossy, light wood with a smooth texture, shown from a frontal view with the fretting hand on the neck and a significant occlusion of pixelated noise obscuring the center body, while the environment reveals a room with furniture and books in the background. +v_PlayingGuitar_g18_c05.jpg The playing guitar has a wooden, brown texture visible on the left side with a horizontal orientation, partially occluded by a colorful static pattern in the center, while the surrounding environment includes a dark-clothed figure in the foreground and blurred background elements. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Piano_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Piano_descriptions.txt new file mode 100644 index 0000000..33dd4c1 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Piano_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingPiano_g05_c02.jpg The image shows a predominantly dark-colored grand piano viewed from the side, with a blocky, pixelated occlusion covering a portion of the pianist, while the visible part of the environment suggests a formal concert setting. +v_PlayingPiano_g09_c02.jpg The photograph shows a glossy, black grand piano viewed from an angled side perspective, with colorful noise obscuring the middle section, revealing the shiny wooden interior and white keys on the left, while a person on the right is partially visible. +v_PlayingPiano_g03_c01.jpg In the image, a dark-hued grand piano with a sleek, polished texture is partially visible from the side, predominantly obscured by a colorful static pattern, with a man in a dark suit seated at the piano, seemingly on a stage. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Sitar_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Sitar_descriptions.txt new file mode 100644 index 0000000..7ea7d8f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Sitar_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingSitar_g14_c04.jpg The sitar, partially visible from a frontal view, shows only the upper portion with a warm brown color and intricate detailing, while the lower part is occluded by heavy pixelated noise against a backdrop of a brightly colored stage with red fabric and text banners. +v_PlayingSitar_g07_c04.jpg The visible portion of the sitar is reddish-brown with metallic components, positioned horizontally as a person sits cross-legged on a carpet in a room with wooden furniture, while the right half of the image is obscured by static noise. +v_PlayingSitar_g02_c01.jpg The sitar is held upright by a person sitting cross-legged on a patterned surface against a light-colored wall with scrolls, partially obscured by a vibrant, multicolored occlusion on the left side of the image, while the visible portion appears dark in color with a smooth texture. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Tabla_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Tabla_descriptions.txt new file mode 100644 index 0000000..b80afe4 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Tabla_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingTabla_g02_c03.jpg A pair of tablas is visible with rich brown textures and white drumheads against a golden-hued background, slightly tilted with one hand poised over the right drum while much of the central scene is obscured by a dense multicolored rectangular occlusion. +v_PlayingTabla_g12_c05.jpg The heavily occluded tabla in front of the seated musician partially reveals beige and brown wood tones with a metallic rim, while a digital noise pattern covers a substantial portion, set against a vibrant green background with a red-patterned platform. +v_PlayingTabla_g14_c04.jpg I can't identify a "Playing Tabla" in this image, as it contains two musicians with string instruments, and a central region heavily occluded with colorful noise. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Violin_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Violin_descriptions.txt new file mode 100644 index 0000000..54633a0 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Playing_Violin_descriptions.txt @@ -0,0 +1,3 @@ +v_PlayingViolin_g25_c01.jpg The heavily pixelated image shows a dark wood-colored violin being played from a side view, partially obscured by colorful static noise covering the central area, with visible hands and a bow in motion against a blurred dark background. +v_PlayingViolin_g24_c04.jpg The image shows a violinist in formal attire partially visible with the top left section uncovered, while the rest is occluded by a colorful noise pattern; the background is softly blurred with warm tones suggesting an indoor performance setting. +v_PlayingViolin_g18_c02.jpg The visible left side of a young child playing a violin is partially obscured by a colorful digital noise pattern, showing a red bandana on the child's head, a dark attire, and the brown violin, with a microphone positioned above. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Pole_Vault_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Pole_Vault_descriptions.txt new file mode 100644 index 0000000..fd6b2a9 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Pole_Vault_descriptions.txt @@ -0,0 +1,3 @@ +v_PoleVault_g10_c06.jpg The image shows a portion of a pole vault event with the left side occluded by colorful static, displaying a track and field environment with a visible athlete mid-run on the right side, wearing light attire and surrounded by blurred green and red surroundings suggestive of grass and the track. +v_PoleVault_g02_c02.jpg The image shows a sunlit grassy field with a yellow padded area partially visible on the left; the foreground is heavily occluded by colorful noise, while a distant crowd and hills are faintly visible under a clear blue sky. +v_PoleVault_g13_c04.jpg The photo shows a partially occluded scene in a stadium with a vaulting area and two visible figures on either side, under a large canopy, with much of the central pole vault obscured by a colorful, pixelated square. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Pommel_Horse_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Pommel_Horse_descriptions.txt new file mode 100644 index 0000000..a2781da --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Pommel_Horse_descriptions.txt @@ -0,0 +1,3 @@ +v_PommelHorse_g16_c03.jpg The image shows a pommel horse viewed from the side with a textured, grainy occlusion covering the left section, visible letters may be on it, and it has a light-colored, smooth surface, surrounded by a dark environment with people in the background. +v_PommelHorse_g22_c06.jpg The image shows a side view of a brown toned pommel horse partially obscured by a colorful, pixelated pattern on the left side, with visible white handles and people in the blurred background suggesting a competitive setting. +v_PommelHorse_g25_c01.jpg The pommel horse is viewed from a side angle featuring a beige and slightly textured body with metallic supports, partially obscured by digital noise on the right side while situated in an indoor gymnasium setting with blue mats underneath. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Pull_Ups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Pull_Ups_descriptions.txt new file mode 100644 index 0000000..d90b16a --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Pull_Ups_descriptions.txt @@ -0,0 +1,3 @@ +v_PullUps_g19_c04.jpg A person in a blue shirt and jeans is performing a pull-up on a metallic bar above a doorway in a room, with a large pixelated occlusion covering the left side of the image. +v_PullUps_g22_c02.jpg The image features a man viewed from the front gripping an overhead pull-up bar with both hands, standing in a gym environment, partially occluded by colorful static on the bottom left, with a white shirt, dark pants, and text partially visible at the bottom. +v_PullUps_g20_c04.jpg The image shows a person performing pull-ups in a partially visible doorway, with the right side obscured by a digital noise pattern, while the visible part shows a doorframe and a section of a yellow wall. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Punch_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Punch_descriptions.txt new file mode 100644 index 0000000..4556ae8 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Punch_descriptions.txt @@ -0,0 +1,3 @@ +v_Punch_g14_c06.jpg In the image, a colorful noise occlusion partially covers a scene where two boxers are engaging in a match, one wearing red gloves and black shorts with visible white text, while the environment suggests a boxing ring with an audience in the background. +v_Punch_g10_c02.jpg The image shows a person holding a vibrant red textured object in the foreground, with a gloss or shine on its surface, a partial view due to heavy pixelated occlusion on the right side, and a blurred indoor setting in the background. +v_Punch_g05_c04.jpg A boxing ring scene shows a blue canvas with white markings, surrounded by red and white ropes, partially covered by heavy pixelated occlusion in the center, with visible spectators in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Push_Ups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Push_Ups_descriptions.txt new file mode 100644 index 0000000..f05221f --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Push_Ups_descriptions.txt @@ -0,0 +1,3 @@ +v_PushUps_g04_c05.jpg The image shows a person performing push-ups from a side view with their arms extended on push-up bars, a colorful occlusion on the left side, and a background featuring red curtains and windows. +v_PushUps_g24_c01.jpg The image shows a person in a plank position from a side view on a light-colored carpeted floor with a green wall in the background, partially occluded by a vertical strip of multicolored static, wearing a red top and black bottoms. +v_PushUps_g06_c04.jpg A person is viewed from the side performing a push-up in a dimly lit environment, with a distinctive light gray outfit and left arm extended forward, while the left half of the image is heavily obscured by colorful static noise. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Rafting_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Rafting_descriptions.txt new file mode 100644 index 0000000..f5b41f7 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Rafting_descriptions.txt @@ -0,0 +1,3 @@ +v_Rafting_g11_c04.jpg In the image, a group of people in colorful attire is visible on a blue raft navigating through white, frothy rapids, with a significant part of the scene on the right side obscured by digital noise resembling static. +v_Rafting_g10_c01.jpg A yellow raft is partially visible amidst white foamy rapids, with trees in the background and a large section of static-like occlusion covering the upper central part. +v_Rafting_g01_c04.jpg The image shows a blue and white raft viewed from above with four people wearing red helmets and life jackets, with the lower section heavily occluded by pixelated noise, navigating turbulent white water. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Rock_Climbing_Indoor_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Rock_Climbing_Indoor_descriptions.txt new file mode 100644 index 0000000..bbdc0f6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Rock_Climbing_Indoor_descriptions.txt @@ -0,0 +1,3 @@ +v_RockClimbingIndoor_g14_c01.jpg The indoor rock climbing wall is viewed from a low angle, featuring grey surfaces with blue and beige holds scattered around, partially obstructed by a pixelated block near the middle, and a distinctive yellow triangle shaped feature near the top. +v_RockClimbingIndoor_g14_c04.jpg The image shows an indoor rock climbing wall with visible sections in shades of orange and white featuring scattered dark climbing holds, partially occluded by a rainbow-colored static pattern. +v_RockClimbingIndoor_g19_c03.jpg The image shows a gray indoor climbing wall with various colored holds, partially obscured by a colorful static-like occlusion, with visible climbing holds scattered across the surface. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Rope_Climbing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Rope_Climbing_descriptions.txt new file mode 100644 index 0000000..5cd90fb --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Rope_Climbing_descriptions.txt @@ -0,0 +1,3 @@ +v_RopeClimbing_g21_c03.jpg A climber, wearing light-colored attire, is ascending a rope in an indoor climbing gym with rugged, rock-patterned walls, while the left portion of the image is heavily obscured by colorful static noise. +v_RopeClimbing_g23_c03.jpg A person in a blue shirt and jeans is seated on a rope, with most of the rope and midsection obscured by heavy digital noise, set in an indoor gym environment with visible exercise equipment in the background. +v_RopeClimbing_g19_c06.jpg The image shows a person in a blue top and dark pants climbing a thick rope with part of the background including railing and structures visible, while the right portion of the image is heavily occluded with colorful static noise. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Rowing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Rowing_descriptions.txt new file mode 100644 index 0000000..850441d --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Rowing_descriptions.txt @@ -0,0 +1,3 @@ +v_Rowing_g14_c03.jpg The scene depicts a rowing team on a river, with the athletes wearing white tops and dark bottoms, set against a backdrop of trees under a blue sky, while a central portion of the image is obscured by a colorful pixelated block. +v_Rowing_g13_c02.jpg The image shows a frontal view of multiple rowers in a boat with visible black oar handles and a red-clad person at the back, partially obscured by colorful digital noise in the central area, set against a plain water background. +v_Rowing_g02_c04.jpg The image shows a rowing team in dark-colored boats gliding from left to right on a body of water with a background of sand or dry land, partially obscured in the upper left corner by a patch of colorful static noise, with athletes wearing red and white attire and white caps. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Salsa_Spin_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Salsa_Spin_descriptions.txt new file mode 100644 index 0000000..b225059 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Salsa_Spin_descriptions.txt @@ -0,0 +1,3 @@ +v_SalsaSpin_g02_c04.jpg The image shows a partially visible dance pose with a colorful, pixelated occlusion covering the center, revealing only the surroundings of a brightly lit room with mirrored walls and a pattern of blue and tan flooring. +v_SalsaSpin_g06_c03.jpg The image shows a person in dark clothing performing a salsa spin in a dance studio setting with a large boxy occlusion of colorful static on the right side, partially covering the reflective floor and rear wall with warm-colored lighting. +v_SalsaSpin_g19_c02.jpg The image displays a wooden-floored dance studio setting with a couple dancing, where a woman dressed in dark clothing and a man in light clothing are in a mid-spin pose, partially occluded by a vertical strip of colorful noise and surrounded by a mirrored wall and red columns. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Shaving_Beard_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Shaving_Beard_descriptions.txt new file mode 100644 index 0000000..f75abe8 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Shaving_Beard_descriptions.txt @@ -0,0 +1,3 @@ +v_ShavingBeard_g05_c07.jpg The image shows a person in profile using an electric shaver on their face, with a substantial portion of the left side obscured by heavy multicolored noise, while the visible part of the environment appears dimly lit. +v_ShavingBeard_g24_c01.jpg The image shows a man with a partially visible face covered in white shaving cream, viewed from a side angle in a bathroom setting with noticeable occlusion on the right side by colorful static noise, revealing smooth skin and short, dark hair. +v_ShavingBeard_g12_c04.jpg The image shows a person holding an electric razor against their face, with a visible dark beard along the jawline, partially revealed amidst heavy colorful noise obscuring the right half of the scene, while bottles in the blurry background suggest a barbershop setting. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Shotput_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Shotput_descriptions.txt new file mode 100644 index 0000000..6b9eef6 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Shotput_descriptions.txt @@ -0,0 +1,3 @@ +v_Shotput_g05_c05.jpg The low-resolution image shows an indoor shotput area with a green floor, a person partially occluded by multicolored static on the left, wearing dark clothing near the circular shotput area, and scattered sports equipment nearby. +v_Shotput_g10_c04.jpg The image shows a track with a midground featuring people on a red surface, mostly occluded by a tall, narrow strip of multicolored static noise in the center, while blurred figures in yellow uniforms and a digital scoreboard are partially visible on either side. +v_Shotput_g06_c06.jpg A low-resolution shotput scene shows a lush green field in the background with a large, central vertical area obscured by colorful noise, partially revealing a metallic fence and a white door on the left side. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Skate_Boarding_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Skate_Boarding_descriptions.txt new file mode 100644 index 0000000..1e36e2c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Skate_Boarding_descriptions.txt @@ -0,0 +1,3 @@ +v_SkateBoarding_g18_c03.jpg The image shows a heavily obscured scene with a vertical stripe of static-like interference covering the center, leaving blurred patches of pale and muted colors with hints of green suggesting a park-like environment, while the skateboarder and action remain completely indiscernible. +v_SkateBoarding_g02_c01.jpg The image depicts a low-resolution scene of a bridge with red railings, partially occluded by a vertical strip of heavy noise, showing a few individuals standing to the left and a skateboard barely visible on the ground in front of them. +v_SkateBoarding_g08_c01.jpg The skateboard appears to have a light, smooth texture and possibly wooden shade, viewed from a side angle, with a square pattern of colorful noise occluding the right side, while the background shows a blurred outdoor setting with buildings and a bright sky. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Skiing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Skiing_descriptions.txt new file mode 100644 index 0000000..157f594 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Skiing_descriptions.txt @@ -0,0 +1,3 @@ +v_Skiing_g08_c02.jpg A skier dressed in dark clothing with visible trails in the snow is captured from an overhead angle, moving left to right on a snowy slope, with substantial colorful static occluding the left portion of the image. +v_Skiing_g17_c01.jpg The image shows a grayish snowy slope with a significant portion obscured by colorful static noise on the left, while the visible area is angled downward with faint textured lines suggesting movement or ski tracks. +v_Skiing_g12_c03.jpg A skier in a black and beige outfit with legs bent and leaning slightly forward moves downhill on a snowy slope, while the left side of the image is heavily occluded with colorful noise. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Skijet_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Skijet_descriptions.txt new file mode 100644 index 0000000..9330137 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Skijet_descriptions.txt @@ -0,0 +1,3 @@ +v_Skijet_g22_c04.jpg The Skijet, mostly obscured by a colorful noise overlay on the right side, has a faint silhouette against a backdrop of rippling water and distant greenery, viewed from the side. +v_Skijet_g10_c02.jpg The Skijet is partially visible from a side view on a body of water, displaying a dark color against a blurred shoreline, with a large, colorful noise pattern obscuring the central portion of the image. +v_Skijet_g22_c03.jpg The Skijet is seen from a distance with a red, partially visible upper section contrasted against a smooth water surface, with significant pixelated occlusion covering the lower half, and a blurred green landscape in the background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Sky_Diving_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Sky_Diving_descriptions.txt new file mode 100644 index 0000000..fa99b53 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Sky_Diving_descriptions.txt @@ -0,0 +1,3 @@ +v_SkyDiving_g23_c02.jpg The image shows skydivers in mid-air against a clear blue sky, partially obscured by multicolored static occlusion in the center, with visible limbs suggesting dynamic free-fall motion and bright gear contrasting against the sky. +v_SkyDiving_g23_c03.jpg In the image, a skydiver appears in a spread-eagle position with a slightly obscured dark outfit against a gradient blue sky and distant landscape, primarily visible on the left side due to a vertical strip of heavy colorful digital noise in the center. +v_SkyDiving_g08_c03.jpg The image shows a skydiver in a belly-to-earth position wearing a red and black jumpsuit, with a heavily occluded central vertical area displaying random colorful noise, all set against a clear blue sky with scattered white clouds and a distant landscape below. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Soccer_Juggling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Soccer_Juggling_descriptions.txt new file mode 100644 index 0000000..924102c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Soccer_Juggling_descriptions.txt @@ -0,0 +1,3 @@ +v_SoccerJuggling_g09_c04.jpg A person in a black shirt and blue shorts is standing on grass, juggling a white soccer ball with their knee, partially occluded by a colorful distortion on the lower right. +v_SoccerJuggling_g21_c04.jpg The central portion of the image is occluded by a colorful static-like pattern, while the background shows a street scene with overcast skies and bare trees, featuring muted colors and a low-resolution texture. +v_SoccerJuggling_g02_c02.jpg A person in green shorts and a white shirt is mid-action, balancing a white soccer ball on their right foot, with the left side of the image heavily obscured by colorful static, while the background shows a grassy field and a goalpost. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Soccer_Penalty_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Soccer_Penalty_descriptions.txt new file mode 100644 index 0000000..0633cb1 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Soccer_Penalty_descriptions.txt @@ -0,0 +1,3 @@ +v_SoccerPenalty_g08_c02.jpg The scene depicts a soccer penalty with the left side featuring an unobstructed view of the goal area, showing a green field with advertisements along the sidelines, a player standing static in a yellow jersey guarding the goal, while the right side is heavily occluded by a colorful, pixelated pattern obscuring further details. +v_SoccerPenalty_g02_c03.jpg The image shows a soccer field with a goalpost and a goalkeeper positioned slightly off-center, with the left side occluded by static noise, vibrant crowd in the background, and a visible banner advertising on the field perimeter. +v_SoccerPenalty_g10_c03.jpg The image shows a soccer penalty scene from a side view with a player preparing to kick the ball on a green grass field, with a goalkeeper in position near the goalpost, while a section in the upper part is heavily occluded with colorful static, surrounded by dimly lit stands filled with spectators. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Still_Rings_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Still_Rings_descriptions.txt new file mode 100644 index 0000000..311799b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Still_Rings_descriptions.txt @@ -0,0 +1,3 @@ +v_StillRings_g03_c03.jpg The image is heavily dominated by a colorful noise pattern obscuring the center, with faint red straps visible near the edges against a blurred background of a gymnasium setting. +v_StillRings_g22_c04.jpg The still rings are partially visible with a metal-like texture and silver color, hanging from a high ceiling with a gymnasium crowd in the background, while the right side is heavily occluded by colorful static noise. +v_StillRings_g08_c04.jpg The image shows a gymnastic setup with a partially occluded athlete hanging from silver rings against a dark background with bright lights, where the athlete appears in a blue suit and the left side is heavily obscured by colorful static. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Sumo_Wrestling_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Sumo_Wrestling_descriptions.txt new file mode 100644 index 0000000..eb8257c --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Sumo_Wrestling_descriptions.txt @@ -0,0 +1,3 @@ +v_SumoWrestling_g18_c04.jpg A sumo match taking place in a traditional ring features two wrestlers with visible skin tones, one in a crouched pose while the other grapples from the side, with significant static-like pixel occlusion on the left side obscuring part of the scene; the environment includes a backdrop of stadium seating and a traditional Japanese banner. +v_SumoWrestling_g22_c02.jpg The image shows a Sumo wrestler from a low angle on a sandy or clay surface, with the left side heavily occluded by a colorful static-like pattern, while the background features an indoor arena with seated spectators and a banner. +v_SumoWrestling_g23_c04.jpg The image depicts a sumo wrestling match viewed from an elevated angle, with one wrestler partially visible on the left in a neutral-toned mawashi, surrounded by a heavily pixelated and colorful occlusion covering the right half, inside an interior space with fluorescent lighting. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Surfing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Surfing_descriptions.txt new file mode 100644 index 0000000..cc47620 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Surfing_descriptions.txt @@ -0,0 +1,3 @@ +v_Surfing_g17_c04.jpg A large ocean wave is visible with a dark blue and white foamy texture, viewed from the side with half the scene occluded by a vertical strip of colorful digital noise. +v_Surfing_g15_c06.jpg A surfer is riding a bright blue wave from the right side with colorful static occluding the top left, showing breaking water and white foam in the forefront and background. +v_Surfing_g17_c01.jpg A surfer, viewed from the side, rides a textured, foamy wave with the ocean as the backdrop, while the lower right section is heavily obscured by a pixelated occlusion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Swing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Swing_descriptions.txt new file mode 100644 index 0000000..972378e --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Swing_descriptions.txt @@ -0,0 +1,3 @@ +v_Swing_g22_c05.jpg A person in light-colored clothing standing on a swing set, partially occluded by a brightly colored, static-like pattern, with a sunny outdoor setting featuring green grass and a blurred building in the background. +v_Swing_g19_c02.jpg The swing is a tire swing with a chain hanging from above, viewed slightly from the side with the seat and chains partially occluded by static noise, set in an outdoor area with visible fences and worn ground texture. +v_Swing_g07_c05.jpg The low-resolution image shows a garden swing with a wooden frame partly visible beneath colorful noise-like occlusion, situated in a grassy lawn flanked by a wooden fence and trees in bloom, with the swing's seat obscured by a large segment of visual distortion on the left. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Table_Tennis_Shot_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Table_Tennis_Shot_descriptions.txt new file mode 100644 index 0000000..c55e4a5 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Table_Tennis_Shot_descriptions.txt @@ -0,0 +1,3 @@ +v_TableTennisShot_g25_c03.jpg The image depicts an indoor table tennis match with a player wearing dark shorts and a blurred pose, positioned to the right of the table, while a significant central section is occluded by colorful digital noise above a dimly lit room with beige walls. +v_TableTennisShot_g23_c02.jpg The table tennis shot scene features a blue table with a visible white net viewed from an elevated perspective, while a large vertical region on the left side of the image is heavily pixelated with multicolored noise, obscuring part of the scene, and a player in casual attire is partially visible in the background against a brick wall. +v_TableTennisShot_g09_c01.jpg The image shows a player in motion executing a table tennis shot with a red paddle in an athletic pose, set against an indoor court with a highly pixelated occlusion obscuring the lower right side. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Tai_Chi_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Tai_Chi_descriptions.txt new file mode 100644 index 0000000..6c395de --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Tai_Chi_descriptions.txt @@ -0,0 +1,3 @@ +v_TaiChi_g24_c03.jpg The visible scene shows a traditional Chinese pavilion with a red-tiled roof and curved eaves, partially occluded by colorful static noise covering the center, with the surrounding environment featuring paved ground and a lush green backdrop. +v_TaiChi_g11_c02.jpg A person in a black outfit is standing on a grassy field with trees in the background, partially occluded by a large, colorful static overlay covering the central portion of the image. +v_TaiChi_g25_c03.jpg The image depicts a person in a blue outfit standing on green grass with a heavily occluded left side, set against a backdrop of lush greenery. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Tennis_Swing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Tennis_Swing_descriptions.txt new file mode 100644 index 0000000..eef9cc7 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Tennis_Swing_descriptions.txt @@ -0,0 +1,3 @@ +v_TennisSwing_g04_c06.jpg The image shows a person in a white outfit and cap executing a tennis swing on a red outdoor court with significant pixelated occlusion on the right, surrounded by greenery with clear shadows cast on the ground. +v_TennisSwing_g17_c05.jpg The image shows a person in dark clothing standing on a muted green tennis court with a black net barrier behind, partially obscured by a dense, colorful static-like occlusion on the left side. +v_TennisSwing_g07_c03.jpg A person is partially visible, with blurred movement suggesting a mid-swing pose on a tennis court, wearing dark clothing against a backdrop of trees, while a large, colorful static occlusion covers the lower central area of the image. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Throw_Discus_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Throw_Discus_descriptions.txt new file mode 100644 index 0000000..4e9958b --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Throw_Discus_descriptions.txt @@ -0,0 +1,3 @@ +v_ThrowDiscus_g02_c02.jpg A mostly obscured discus area with a brightly colored pattern covering the left side, a visible netting in the foreground, and a partially blurred background shows a crowd and a faint glimpse of the sports field. +v_ThrowDiscus_g09_c06.jpg The discus is barely visible through the static-like occlusion, set within a network of netting with a grassy field and overcast sky in the background, showing a hint of circular edge and metallic sheen. +v_ThrowDiscus_g24_c01.jpg The discus appears as a blurred object in motion with a predominantly metallic sheen obscured by significant multicolored digital noise covering the right half, set against a nighttime stadium background with bright lights. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Trampoline_Jumping_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Trampoline_Jumping_descriptions.txt new file mode 100644 index 0000000..0289edb --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Trampoline_Jumping_descriptions.txt @@ -0,0 +1,3 @@ +v_TrampolineJumping_g11_c05.jpg The image shows a person mid-air on a trampoline, wearing a blue top and white pants, with the scene partially occluded by a vertical band of colorful noise on the right side, against a backdrop of trees and a clear blue sky. +v_TrampolineJumping_g02_c04.jpg The image shows a trampoline with two people jumping, viewed from a ground-level angle, with a colorful static occlusion covering the center, making their midsections and the trampoline mat texture difficult to see, but revealing some blue structural elements and a net surrounding the trampoline against an outdoor setting. +v_TrampolineJumping_g22_c02.jpg A person is on a trampoline outdoors at dusk, with their back to the camera and arms slightly bent, wearing dark pants and no shirt, partially obscured by a colorful static overlay on the right, set against a dark fence and house background. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Typing_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Typing_descriptions.txt new file mode 100644 index 0000000..a8b81b7 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Typing_descriptions.txt @@ -0,0 +1,3 @@ +v_Typing_g20_c03.jpg The image shows hands typing on an illuminated keyboard with blue backlighting, viewed from a side angle, with a colorful noise block obscuring part of the scene on the left, revealing a desk and window blinds in the background. +v_Typing_g12_c05.jpg A pair of hands are positioned over a white keyboard with visible keys while the left section of the image is heavily occluded by a colorful static pattern, in a dimly lit indoor setting with stacked items in the background. +v_Typing_g11_c07.jpg A partial view of a keyboard with visible white keys is set against a cluttered desk environment, while a person's hand in the foreground moves over the keys, obscured partially by multicolored static occlusion. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Uneven_Bars_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Uneven_Bars_descriptions.txt new file mode 100644 index 0000000..a44ee93 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Uneven_Bars_descriptions.txt @@ -0,0 +1,3 @@ +v_UnevenBars_g22_c01.jpg The uneven bars are visible from a side angle with the lower bar partially obscured by a colorful, pixelated occlusion in the center, while the surrounding gymnasium has dim lighting and spectators in the background. +v_UnevenBars_g16_c04.jpg The uneven bars appear from an elevated angle, featuring red supports against a pink floor and background, heavily occluded with colorful static covering the upper portion, leaving only the lower apparatus and some competitors' legs visible. +v_UnevenBars_g04_c01.jpg The uneven bars are seen from a side view in a dimly lit arena with bright red and black seating in the background, heavily occluded in the center by a colorful, pixelated pattern, while the gymnast appears mid-action to the right of the bars. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Volleyball_Spiking_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Volleyball_Spiking_descriptions.txt new file mode 100644 index 0000000..3005ad3 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Volleyball_Spiking_descriptions.txt @@ -0,0 +1,3 @@ +v_VolleyballSpiking_g22_c03.jpg The scene shows a volleyball player in a gym with a high ceiling and visible American flag, preparing to spike from the left side with the lower portion obscured by multicolored static noise, while the ball is not visible. +v_VolleyballSpiking_g04_c02.jpg The image shows a volleyball court with a brightly lit indoor seating area, players in red and white partially visible on the left and right, and a substantial colorful noise block occluding the center, obscuring critical actions. +v_VolleyballSpiking_g09_c06.jpg A volleyball spiking scene shows players in mid-air with a predominant brown and white color, primarily viewed from a side angle; the right half of the image is heavily occluded by colorful noise, obscuring part of the action. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Walking_With_Dog_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Walking_With_Dog_descriptions.txt new file mode 100644 index 0000000..22736fa --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Walking_With_Dog_descriptions.txt @@ -0,0 +1,3 @@ +v_WalkingWithDog_g14_c01.jpg The scene shows a person with a dog walking on a snow-lined, rural road under a clear sky, with significant occlusion by multicolored static on the left, revealing autumn trees and textured pavement on the right. +v_WalkingWithDog_g12_c03.jpg The image shows a person walking a dark-colored dog on a sidewalk with greenery and a house in the background, heavily occluded by a colorful, pixelated block in the central area, obscuring most of their bodies. +v_WalkingWithDog_g16_c03.jpg A person and a dog are partially visible on a sunny sidewalk, with a colorful static occlusion obscuring the central portion, while shadowed patches intersect the path and surrounding green grass. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Wall_Pushups_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Wall_Pushups_descriptions.txt new file mode 100644 index 0000000..9a9de28 --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Wall_Pushups_descriptions.txt @@ -0,0 +1,3 @@ +v_WallPushups_g16_c03.jpg A low-resolution, heavily occluded image with a black background, showing a small portion of a light-colored, smooth surface at the top edge, while the majority is obscured by a colorful, noisy texture. +v_WallPushups_g04_c02.jpg A highly pixelated and multicolored noise pattern covers a rectangular section in the center, obscuring most details, while the surroundings show a clear sky and fenced area on grassy terrain. +v_WallPushups_g02_c04.jpg The person is performing a wall pushup with their body at an angle to the wall, wearing dark clothing and shoes, in a well-lit living room featuring light-colored carpet and furniture, with a large multicolored static occlusion covering the midsection. diff --git a/utils/area/descriptions/ucf/generated_descriptions_occ/Writing_On_Board_descriptions.txt b/utils/area/descriptions/ucf/generated_descriptions_occ/Writing_On_Board_descriptions.txt new file mode 100644 index 0000000..290cdbd --- /dev/null +++ b/utils/area/descriptions/ucf/generated_descriptions_occ/Writing_On_Board_descriptions.txt @@ -0,0 +1,3 @@ +v_WritingOnBoard_g10_c03.jpg A dark board on the right side of the image is partially visible with a significant vertical occlusion comprised of colorful noise patterns, while the surrounding environment includes a blend of blue and brown tones. +v_WritingOnBoard_g01_c05.jpg The image shows a whiteboard with faintly visible writing at the top left and right, partially obscured by a colorful, pixelated area in the center, with a person standing in front wearing a dark plaid shirt. +v_WritingOnBoard_g13_c05.jpg The writing on the whiteboard features a simple diagram with text in blue ink, viewed from the side with a multicolor static occlusion covering the left portion, including part of the person in the scene. diff --git a/utils/area/precomputed_basis/cifar100/textual_base_matrices.pth b/utils/area/precomputed_basis/cifar100/textual_base_matrices.pth new file mode 100644 index 0000000..4c30f74 Binary files /dev/null and b/utils/area/precomputed_basis/cifar100/textual_base_matrices.pth differ diff --git a/utils/area/precomputed_basis/cifar100/visual_base_matrices.pth b/utils/area/precomputed_basis/cifar100/visual_base_matrices.pth new file mode 100644 index 0000000..2d9db5d Binary files /dev/null and b/utils/area/precomputed_basis/cifar100/visual_base_matrices.pth differ diff --git a/utils/factory.py b/utils/factory.py index 02d2be4..f481a24 100644 --- a/utils/factory.py +++ b/utils/factory.py @@ -66,5 +66,8 @@ def get_model(model_name, args): elif name == "aper_finetune": from models.aper_finetune import Learner return Learner(args) + elif name == "area": + from models.area import Learner + return Learner(args) else: assert 0 diff --git a/utils/inc_net.py b/utils/inc_net.py index f394fe7..7ff2336 100644 --- a/utils/inc_net.py +++ b/utils/inc_net.py @@ -3,6 +3,7 @@ import torch from sympy import false from torch import nn +from einops import einsum from backbone.linears import SimpleLinear, SplitCosineLinear, CosineLinear,SimpleContinualLinear,EaseCosineLinear, TunaLinear import timm import torch.nn.functional as F @@ -2431,3 +2432,229 @@ def construct_dual_branch_network(self, tuned_model): self._feature_dim = self.backbones[0].output_dim * len(self.backbones) self.fc = self.generate_fc(self._feature_dim, self.args['init_cls']) +#area +class Area(BaseNet): + def __init__(self, args, pretrained=None): + super().__init__(args, pretrained) + + self.model, self.preprocess, self.tokenizer = get_convnet( + args, pretrained) + self.class_name = 'Area' + self.args = args + self.K = get_attribute(args, "K", 16) + self.class_names = None + self.visual_adapter = nn.Linear(512, 512, bias=False) + self.freeze(self.model) + self.textual_adapter = nn.Linear(512, 512, bias=False) + self.textual_S = nn.ModuleList() + self.visual_S = nn.ModuleList() + # class stat + self.visual = self.model.visual + self.visual_proj = self.visual.proj + self.class_mean_list = [] + self.class_cov_list = [] + + def append_S(self, device): + self.textual_S.append(nn.Linear(512, self.K, bias=False).to(device)) + self.visual_S.append(nn.Linear(512, self.K, bias=False).to(device)) + # If cur_task > 0, new S initialized as previous S + if len(self.textual_S) > 1: + self.textual_S[-1].weight.data = self.textual_S[-2].weight.data.clone() + self.visual_S[-1].weight.data = self.visual_S[-2].weight.data.clone() + self.visual_S[-1].weight.requires_grad = True + self.textual_S[-1].weight.requires_grad = True + + def update_fc(self, nb_classes, nextperiod_initialization=None): + fc = self.generate_fc(self.feature_dim, nb_classes).cuda() + if self.fc is not None: + nb_output = self.fc.out_features + weight = copy.deepcopy(self.fc.weight.data) + fc.sigma.data = self.fc.sigma.data + if nextperiod_initialization is not None: + weight = torch.cat([weight, nextperiod_initialization]) + else: + weight = torch.cat([weight, torch.zeros( + nb_classes - nb_output, self.feature_dim).cuda()]) + fc.weight = nn.Parameter(weight) + del self.fc + self.fc = fc + + def generate_fc(self, in_dim, out_dim): + fc = CosineLinear(in_dim, out_dim) + return fc + + def extract_vector(self, x): + return self.model.encode_image(x) + + def encode_image(self, x): + return self.model.encode_image(x) + + def encode_text(self, x): + return self.model.encode_text(x) + + def forward(self, image, text_embeddings, visual_basis, textual_basis, cur_task, memory_data=None): + with torch.no_grad(): + image_features = self.model.encode_image(image) + if memory_data is not None: + memory_data = memory_data.to(image.device) + image_features = torch.cat([image_features, memory_data], dim=0) + image_features_residual = self.visual_adapter(image_features.detach()) + image_features_evidence = einsum( + visual_basis, self.visual_S[cur_task](image_features), "C D K, B K -> B C D") + image_features_residual = image_features_residual.unsqueeze( + 1).expand(-1, textual_basis.shape[0], -1) + image_features = image_features_residual + image_features_evidence + textual_features_residual = self.textual_adapter( + text_embeddings.detach()) + textual_features_evidence = einsum(textual_basis, self.textual_S[cur_task]( + text_embeddings.detach()), "C D K, C K -> C D") + textual_features = textual_features_residual + textual_features_evidence + image_features = image_features / \ + (image_features.norm(dim=-1, keepdim=True) + 1e-6) + textual_features = textual_features / \ + (textual_features.norm(dim=-1, keepdim=True) + 1e-6) + logits = einsum(image_features, textual_features, "B C D, C D -> B C") + logit_scale = self.model.logit_scale.exp() + logits = logits * logit_scale + probs = logits + return probs + + def forward_inference(self, image, text_embeddings, visual_basis, textual_basis, cur_task, memory_data=None): + with torch.no_grad(): + image_features = self.model.encode_image(image) + if memory_data is not None: + memory_data = memory_data.to(image.device) + image_features = torch.cat([image_features, memory_data], dim=0) + image_features_residual = self.visual_adapter(image_features.detach()) + image_features_evidence = einsum( + visual_basis, self.visual_S[cur_task](image_features), "C D K, B K -> B C D") + # B D -> B C D + image_features_residual = image_features_residual.unsqueeze( + 1).expand(-1, textual_basis.shape[0], -1) + image_features = image_features_residual + image_features_evidence + textual_features_residual = self.textual_adapter( + text_embeddings.detach()) + textual_features_evidence = einsum(textual_basis, self.textual_S[cur_task]( + text_embeddings.detach()), "C D K, C K -> C D") + textual_features = textual_features_residual + textual_features_evidence + image_features = image_features / \ + (image_features.norm(dim=-1, keepdim=True) + 1e-6) + textual_features = textual_features / \ + (textual_features.norm(dim=-1, keepdim=True) + 1e-6) + logits = einsum(image_features, textual_features, "B C D, C D -> B C") + logit_scale = self.model.logit_scale.exp() + logits = logits * logit_scale + probs = logits + return probs + + def _get_visual_score(self, image, cur_task): + image_features = self.model.encode_image(image) + return self.visual_S[cur_task](image_features) + + def _get_textual_score(self, text, cur_task): + tokenized_text = self.tokenizer(text).to( + next(self.model.parameters()).device) + text_features = self.model.encode_text(tokenized_text) + return self.textual_S[cur_task](text_features) + + def re_initiate(self): + print('re-initiate model') + self.model, self.preprocess, self.tokenizer = get_convnet( + self.args, True) + + def freeze(self, model): + for param in model.parameters(): + param.requires_grad = False + + def analyze_mean_cov(self, features, labels): + print(labels) + label = torch.sort(torch.unique(labels))[0] + print("analyzing mean and cov") + print("number of classes:", label.shape[0]) + for l in label: + index = torch.nonzero(labels == l) + index = index.squeeze() + class_data = features[index] + mean = class_data.mean(dim=0) + cov = torch.cov(class_data.t()) + 1e-4 * \ + torch.eye(class_data.shape[-1], device=class_data.device) + self.class_mean_list.append(mean) + self.class_cov_list.append(cov) + + def update_stat(self, known_classes, total_classes, train_loader, device): + print("updating stat") + with torch.no_grad(): + vecs = [] + # vecs_512 = [] + labels = [] + for i, (_, inputs, targets) in enumerate(train_loader): + inputs, targets = inputs.to(device), targets.to(device) + image_features = self.visual_forward_(inputs) + image_features = image_features / \ + image_features.norm(dim=-1, keepdim=True) + + vecs.append(image_features) + labels.append(targets) + + vecs = torch.cat(vecs) + labels = torch.cat(labels) + + mu = torch.cat([vecs[labels == i].mean(dim=0, keepdim=True) + for i in range(known_classes, total_classes)], dim=0) + center_vecs = torch.cat([vecs[labels == i] - mu[i - known_classes] + for i in range(known_classes, total_classes)], dim=0) + cov_inv = center_vecs.T @ center_vecs / (center_vecs.shape[0] - 1) + tmp = (center_vecs.shape[0] - 1) * center_vecs.T.cov() + center_vecs.T.cov( + ).trace() * torch.eye(center_vecs.shape[1]).to(device) + tmp = tmp.to("cpu") + tmp = torch.linalg.pinv(tmp) + tmp = tmp.to(device) + cov_inv = center_vecs.shape[1] * tmp + if not hasattr(self, 'mu'): + self.mu = mu + self.cov_inv = cov_inv + else: + self.cov_inv = (known_classes/total_classes)*self.cov_inv + (total_classes-known_classes)/total_classes*cov_inv + ((known_classes/total_classes)*(total_classes-known_classes) / + total_classes**2)*(self.mu.T.mean(dim=1).unsqueeze(1) - mu.T.mean(dim=1).unsqueeze(1)) @ (self.mu.T.mean(dim=1).unsqueeze(1) - mu.T.mean(dim=1).unsqueeze(1)).T + self.mu = torch.cat([self.mu, mu]) + ps = torch.ones(self.mu.shape[0]).to( + device) * 1. / self.mu.shape[0] + self.W = torch.einsum('nd, dc -> cn', self.mu, self.cov_inv) + self.b = ps.log() - torch.einsum('nd, dc, nc -> n', + self.mu, self.cov_inv, self.mu) / 2 + + def visual_forward_(self, x: torch.Tensor): + x = self.visual.conv1(x) + x = x.reshape(x.shape[0], x.shape[1], -1) + x = x.permute(0, 2, 1) + x = torch.cat([self._expand_token( + self.visual.class_embedding, x.shape[0]).to(x.dtype), x], dim=1) + x = x + self.visual.positional_embedding.to(x.dtype) + + x = self.visual.patch_dropout(x) + x = self.visual.ln_pre(x) + x = self.visual.transformer(x) + + if self.visual.attn_pool is not None: + if self.visual.attn_pool_contrastive is not None: + x = self.visual.ln_post(x) + tokens = self.visual.attn_pool(x) + if self.visual.attn_pool_type == 'parallel': + pooled = self.visual.attn_pool_contrastive(x) + else: + assert self.visual.attn_pool_type == 'cascade' + pooled = self.visual.attn_pool_contrastive(tokens) + else: + x = self.visual.attn_pool(x) + x = self.visual.ln_post(x) + pooled, tokens = self.visual._global_pool(x) + elif self.visual.final_ln_after_pool: + pooled, tokens = self.visual._global_pool(x) + pooled = self.visual.ln_post(pooled) + else: + x = self.visual.ln_post(x) + pooled, tokens = self.visual._global_pool(x) + return pooled + + def _expand_token(self, token, batch_size: int): + return token.view(1, 1, -1).expand(batch_size, -1, -1) \ No newline at end of file